@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap";
@import "https://fonts.googleapis.com/earlyaccess/hannari.css";
@import "https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&display=swap";
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pagetop {
  display: none;
}

/* ------------------------------
	MV
------------------------------ */
.mv {
  padding: 0 4%;
  position: relative;
  width: 100%;
}
.mv .firstview {
  position: relative;
  border: 1px solid #eb6153;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv .firstview {
    container-type: inline-size;
    height: calc(100vh - 150px);
    border-radius: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview {
    aspect-ratio: 345/530;
    border-radius: 8vw;
  }
}
.mv .firstview p,
.mv .firstview a {
  font-weight: 700;
}
.mv .firstview a {
  display: block;
  cursor: pointer;
}
.mv .firstview img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .firstview_text {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .mv .firstview_text {
    bottom: 10cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_text {
    bottom: 24vw;
    width: 100%;
  }
}
.mv .firstview_text p {
  background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0.28) 100%);
  color: #333;
  font-family: "Hannari", "Noto Serif JP", serif;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .mv .firstview_text p {
    padding-top: 1.5cqh;
    padding-bottom: 1.5cqh;
    padding-left: 4cqw;
    padding-right: 4cqw;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_text p {
    padding: 2vw 3vw;
  }
}
@media screen and (min-width: 768px) {
  .mv .firstview_title {
    margin-bottom: 1cqh;
    font-size: 4cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_title {
    margin-bottom: 2vw;
    font-size: 6.5vw;
  }
}
@media screen and (min-width: 768px) {
  .mv .firstview_title span {
    font-size: 150%;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_title span {
    font-size: 120%;
  }
}
@media screen and (min-width: 768px) {
  .mv .firstview_sub-title {
    font-size: 2.5cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_sub-title {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 768px) {
  .mv .firstview_sub-title span {
    font-size: 200%;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview_sub-title span {
    font-size: 150%;
  }
}
.mv .firstview .comment {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #e96052;
}
@media screen and (min-width: 768px) {
  .mv .firstview .comment {
    top: 2cqh;
    left: 4cqw;
    padding: 1cqh 1cqw;
    border-radius: 1cqh 0 1cqh 0;
    font-size: 3cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview .comment {
    top: 3vw;
    left: 3vw;
    padding: 2vw 4vw;
    border-radius: 2.5vw 0 2.5vw 0;
    font-size: 4vw;
  }
}
.mv .firstview .reserve {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .mv .firstview .reserve {
    right: 5cqw;
    bottom: 5cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview .reserve {
    bottom: 2vw;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}
.mv .firstview .reserve_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #2972b0;
  transition: transform 0.2s ease;
  transform-origin: bottom center;
}
@media screen and (min-width: 768px) {
  .mv .firstview .reserve_btn {
    padding: 1cqh 3cqw;
    border-radius: 1cqh;
    font-size: 2cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview .reserve_btn {
    padding: 2vw 3vw;
    border-radius: 2.5vw;
    font-size: 4vw;
  }
}
.mv .firstview .reserve_btn::after {
  content: "▶";
  margin-left: 1.5em;
  font-size: 80%;
}
.mv .firstview .reserve_btn.is-animated {
  animation: bounce 1.2s 1 ease-in-out;
}
.mv .firstview .reserve_assist {
  margin-top: 0.5em;
  background-repeat: repeat;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .mv .firstview .reserve_assist {
    padding: 0.75cqh 2.25cqw;
    background-image: url("../images/bg_stripe.png");
    border-radius: 1cqh;
    font-size: 1.5cqh;
  }
}
@media screen and (max-width: 767px) {
  .mv .firstview .reserve_assist {
    padding: 1.5vw 2.25vw;
    background-image: url("../images/bg_stripe_sp.png");
    border-radius: 2.5vw;
    font-size: 3vw;
  }
}

@keyframes bounce {
  0% {
    transform: scaleY(1) translateY(0);
  }
  15% {
    transform: scaleY(0.96) translateY(0);
  }
  30% {
    transform: scaleY(1.06) translateY(-16px);
  }
  45% {
    transform: scaleY(1) translateY(0);
  }
  53% {
    transform: scaleY(0.96) translateY(0);
  }
  65% {
    transform: scaleY(1) translateY(0);
  }
  100% {
    transform: scaleY(1) translateY(0);
  }
}
.sdTxt {
  top: calc(50% - 85px);
}

/* ------------------------------
	診療時間（SPのみ）
------------------------------ */
@media screen and (max-width: 767px) {
  .openingHour {
    border: none;
    padding: 0 3%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourHead {
    padding: 20px 3% 20px 0;
    min-width: 30px;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourHead .headline span {
    font-size: 3.5vw;
    padding-top: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourHead .headline span:before {
    height: 4vw;
    width: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody {
    padding: 0 3% 0 3%;
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody table th {
    padding: 3px 0;
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody table td {
    padding: 3px 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody table td img {
    width: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody table th:first-of-type {
    width: 16vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .hourBody table th.openingHour__th2--type02 {
    padding-left: 3.78vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .note {
    padding-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .note p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .flex {
    display: flex;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .holiday {
    flex: 1;
    margin: 8px 0 0 2vw;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .openingHour .holiday p {
    font-size: 3vw;
    padding: 4px;
  }
}

/* ------------------------------
	お知らせ
------------------------------ */
@media screen and (min-width: 768px) {
  .news {
    padding: 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding: 18vw 0 0;
  }
}
.news .inner {
  max-width: 900px;
}
.news .corona {
  background: url("../images/bg_stripe.png");
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .news .corona {
    background: url("../images/bg_stripe_sp.png");
    padding: 30px 3%;
  }
}
.news .corona .headline {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news .corona .headline {
    font-size: 4.5vw;
    margin-bottom: 10px;
  }
}
.news .corona p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news .corona p {
    font-size: 4vw;
  }
}
.news .btnblk {
  font-size: 0;
  text-align: center;
}
.news .btnblk li {
  display: inline-block;
  width: 200px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .news .btnblk li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .news .btnblk li {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.news .btnblk li .btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news .btnblk li .btn {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px) {
  .news .btnblk li .btn {
    font-size: 3.3vw;
  }
}
.news .btnblk li:last-child {
  margin-right: 0;
}

/* 	newsList ---------------- */
.newsList {
  width: min(100%, 500px);
  margin: 1em auto 2em;
}
.newsList li {
  width: 100%;
  padding: 1em 0;
}
.newsList li:not(:last-of-type) {
  border-bottom: 1px solid #ddd;
}
.newsList a {
  display: flex;
}
.newsList .date {
  flex: 0 0 8em;
}
.newsList .ttl {
  float: 1 1 auto;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------------------------------
	symptoms
------------------------------ */
@media screen and (min-width: 768px) {
  .symptoms {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .symptoms {
    padding: 18vw 0;
  }
}
.symptoms .inner {
  max-width: 1000px;
}
.symptoms .secTtl {
  margin-bottom: 40px;
}
.symptoms .circleIconList {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .circleIconList li {
    margin: 0 2.5% 15px;
    width: 28%;
  }
}

/* ------------------------------
	services
------------------------------ */
.services {
  background: linear-gradient(to bottom, #e9f1f7 0%, #c9ddf1 100%);
  border-radius: 100px 0;
}
@media screen and (min-width: 768px) {
  .services {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .services {
    padding: 18vw 0;
    border-radius: 0;
  }
}
.services .secTtl {
  margin-bottom: 25px;
}
.services .lead {
  margin-bottom: 70px;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services .lead {
    margin-bottom: 50px;
    font-size: 4vw;
  }
}
.services .serviceUnit {
  position: relative;
}
.services .serviceUnit:not(:first-of-type) {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit + .serviceUnit {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .services .serviceUnit .inner {
    display: flex;
    justify-content: space-between;
  }
}
.services .serviceUnit .img {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .img {
    position: static;
    width: 100%;
  }
}
.services .serviceUnit .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .img.imgpc {
    display: none;
  }
}
.services .serviceUnit .img.imgsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .img.imgsp {
    display: block;
    margin-bottom: 30px;
  }
}
.services .serviceUnit .txt {
  width: 42%;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .txt {
    width: 100%;
    margin: 0 auto;
  }
}
.services .serviceUnit .item + .item {
  margin-top: 50px;
}
.services .serviceUnit .item .head {
  display: flex;
  margin-bottom: 15px;
}
.services .serviceUnit .item .head .num {
  min-height: 50px;
  padding-right: 25px;
  border-right: 1px solid #595757;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .head .num {
    padding-right: 5%;
    font-size: 11.5vw;
  }
}
.services .serviceUnit .item .head .num span {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .head .num span {
    font-size: 3.5vw;
  }
}
.services .serviceUnit .item .head .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 22px;
  color: #2972b0;
  font-size: 2.7rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .head .name {
    padding: 0 5%;
    font-size: 6vw;
  }
}
.services .serviceUnit .item .head .name__sml {
  display: block;
  width: auto;
  margin: 0 auto 0 40px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .head .name__sml {
    margin: 0 auto 0 46px;
    font-size: 4.5vw;
  }
}
.services .serviceUnit .item .head .name .ico {
  width: 45px;
  margin-right: 12px;
}
.services .serviceUnit .item .body p {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .body p {
    font-size: 4vw;
    line-height: 1.8;
  }
}
.services .serviceUnit .item .body .btn {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .body .btn {
    margin-left: auto;
  }
}
.services .serviceUnit .item .box {
  overflow: hidden;
  background: #fff;
  border: 1px solid #0098cf;
  border-bottom-width: 6px;
  border-radius: 12px;
}
.services .serviceUnit .item .box .heading {
  position: relative;
  padding: 7px 10px 9px;
  background: #2972b0;
  color: #fff;
  font-size: 1.9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .heading {
    font-size: 4.5vw;
  }
}
.services .serviceUnit .item .box .heading::before, .services .serviceUnit .item .box .heading::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  display: none;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 10px;
}
.services .serviceUnit .item .box .heading::before {
  left: 15px;
}
.services .serviceUnit .item .box .heading::after {
  right: 15px;
}
.services .serviceUnit .item .box .detail {
  padding: 20px 25px 22px;
}
.services .serviceUnit .item .box .detail p {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail p {
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .btnWrap .btn {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
.services .serviceUnit .item .box .detail .btnWrap .btn:nth-child(1) {
  width: 182px;
  padding: 8px 20px 8px 6px;
  letter-spacing: -0.3px;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .btnWrap .btn:nth-child(1) {
    width: 61vw;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .btnWrap .btn:nth-child(1) br {
    display: none;
  }
}
.services .serviceUnit .item .box .detail .btnWrap .btn:nth-child(2) {
  width: 155px;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .btnWrap .btn:nth-child(2) {
    width: 33vw;
  }
}
.services .serviceUnit .item .box .detail .achievements-text {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .achievements-text {
    font-size: 4vw;
  }
}
.services .serviceUnit .item .box .detail .achievements-text__weight {
  margin-bottom: 0;
  font-size: 1.7rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .item .box .detail .achievements-text__weight {
    font-size: 4vw;
  }
}
.services .serviceUnit .item .box .achievements__heading {
  position: relative;
  background: #0098cf;
  font-weight: bold;
}
.services .serviceUnit .item .box .achievements__heading::before, .services .serviceUnit .item .box .achievements__heading::after {
  display: block;
}
.services .serviceUnit .achievements__item {
  margin-bottom: 28px;
}
.services .serviceUnit .achievements__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .achievements__flex {
    width: 73.189vw;
  }
}
.services .serviceUnit .heading__sml {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit .heading__sml {
    font-size: 3.2vw;
  }
}
.services .serviceUnit.for0102 .inner {
  flex-direction: row-reverse;
}
.services .serviceUnit.for0102 .img {
  left: 0;
  border-radius: 0 36px 36px 0;
}
.services .serviceUnit.for0102 .txt {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for0102 .txt {
    margin-top: 30px;
  }
}
.services .serviceUnit.for03 .img {
  right: 0;
  border-radius: 36px 0 0 36px;
}
.services .serviceUnit.for03 .txt {
  margin: 0 auto 0 0;
}
.services .serviceUnit.for03 .head .ico {
  width: 63px;
}
.services .serviceUnit.for03 .item + .item {
  margin-top: 35px;
}
.services .serviceUnit.for04 .inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for04 .inner {
    display: block;
  }
}
.services .serviceUnit.for04 .img {
  position: static;
  width: 53%;
  border-radius: 36px;
  aspect-ratio: 520/255;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for04 .img {
    width: 100%;
    margin: 5vw 0;
  }
}
.services .serviceUnit.for04 .txt {
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .services .serviceUnit.for04 .txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for04 .txt {
    padding: 5vw 0 0;
  }
}
.services .serviceUnit.for04 .head .ico {
  width: 42px;
}
.services .serviceUnit.for05 .inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for05 .inner {
    display: block;
  }
}
.services .serviceUnit.for05 .img {
  position: static;
  width: 53%;
  border-radius: 36px;
  aspect-ratio: 520/255;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for05 .img {
    width: 100%;
    margin: 5vw 0;
  }
}
.services .serviceUnit.for05 .txt {
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .services .serviceUnit.for05 .txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for05 .txt {
    padding: 5vw 0 0;
  }
}
.services .serviceUnit.for05 .head .ico {
  width: 39px;
}
.services .serviceUnit.for06 .inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for06 .inner {
    display: block;
  }
}
.services .serviceUnit.for06 .img {
  position: static;
  width: 53%;
  border-radius: 36px;
  aspect-ratio: 520/255;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for06 .img {
    width: 100%;
    margin: 5vw 0;
  }
}
.services .serviceUnit.for06 .txt {
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .services .serviceUnit.for06 .txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for06 .txt {
    padding: 5vw 0 0;
  }
}
.services .serviceUnit.for06 .head .ico {
  width: 46px;
}
.services .serviceUnit.for07 .inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for07 .inner {
    display: block;
  }
}
.services .serviceUnit.for07 .img {
  position: static;
  width: 53%;
  border-radius: 36px;
  aspect-ratio: 520/255;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for07 .img {
    width: 100%;
    margin: 5vw 0;
  }
}
.services .serviceUnit.for07 .txt {
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .services .serviceUnit.for07 .txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.for07 .txt {
    padding: 5vw 0 0;
  }
}
.services .serviceUnit.for07 .head .ico {
  width: 50px;
}
.services .serviceUnit.for07 .head .ico.flora {
  width: 57px;
}
.services .serviceUnit.sas .inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.sas .inner {
    display: block;
  }
}
.services .serviceUnit.sas .img {
  position: static;
  width: 53%;
  border-radius: 36px;
  aspect-ratio: 520/255;
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.sas .img {
    width: 100%;
    margin: 5vw 0;
  }
}
.services .serviceUnit.sas .txt {
  margin: 0 0 0 0;
}
@media screen and (min-width: 768px) {
  .services .serviceUnit.sas .txt {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .services .serviceUnit.sas .txt {
    padding: 5vw 0 0;
  }
}
.services .serviceUnit.sas .head .ico {
  width: 50px;
}
.services .serviceUnit.sas .head .ico.flora {
  width: 57px;
}

/*
.services1 {
	background: linear-gradient(to bottom, #e9f1f7 0%, #c9ddf1 100%);
	padding: 80px 0;
	border-radius: 100px 0 100px 0;

	@include config.sp {
		border-radius: 0;
		padding: 70px 0 100px;
	}

	.secTtl {
		margin-bottom: 25px;
	}

	.lead {
		font-size: 1.5rem;
		line-height: 1.8;
		margin-bottom: 70px;
		text-align: center;

		@include config.sp {
			font-size: 4vw;
			margin-bottom: 50px;
		}
	}

	.serviceUnit {
		position: relative;

		.img {
			position: absolute;
			top: 0;
			height: 100%;
			width: 50%;
			overflow: hidden;

			@include config.sp {
				position: static;
				width: 100%;
			}

			img {
				height: 100%;
				width: 100%;
				object-fit: cover;
			}
		}

		.txt {
			padding: 15px 0;
			width: 42%;

			@include config.sp {
				width: 100%;
				margin: 0 auto;
			}
		}

		.item {
			.head {
				display: flex;
				margin-bottom: 15px;

				.num {
					border-right: 1px solid #595757;
					font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
					font-size: 4.2rem;
					font-weight: bold;
					line-height: 1.1;
					min-height: 50px;
					padding-right: 25px;

					@include config.sp {
						font-size: 11.5vw;
						padding-right: 5%;
					}

					span {
						display: block;
						font-size: 1.4rem;
						text-align: center;

						@include config.sp {
							font-size: 3.5vw;
						}
					}
				}

				.name {
					align-items: center;
					color: #2972b0;
					font-size: 2.7rem;
					display: flex;
					flex-wrap: wrap;
					letter-spacing: 1px;
					padding: 0 22px;

					@include config.sp {
						font-size: 6vw;
						padding: 0 5%;
					}

					&__sml {
						font-size: 2.2rem;
						display: block;
						width: auto;
						margin: 0 auto 0 40px;

						@include config.sp {
							font-size: 4.5vw;
							margin: 0 auto 0 46px;
						}
					}

					.ico {
						margin-right: 12px;
						width: 45px;
					}
				}
			}

			.body {
				p {
					font-size: 1.4rem;
					line-height: 2;
					margin-bottom: 20px;

					@include config.sp {
						font-size: 4vw;
						line-height: 1.8;
					}
				}

				.btn {
					margin-left: 0;

					@include config.sp {
						margin-left: auto;
					}
				}
			}

			.box {
				background: #fff;
				border: 1px solid #2972b0;
				border-bottom: 6px solid #2972b0;
				border-radius: 12px;
				overflow: hidden;
				border: 1px solid #0098cf;
				border-bottom: 6px solid #0098cf;

				.heading {
					background: #2972b0;
					color: #fff;
					font-size: 1.9rem;
					padding: 7px 10px 9px;
					position: relative;
					text-align: center;

					@include config.sp {
						font-size: 4.5vw;
					}
				}

				.heading:before {
					background: #fff;
					border-radius: 10px;
					content: "";
					display: none;
					position: absolute;
					height: 8px;
					width: 8px;
					top: calc(50% - 4px);
					left: 15px;
				}

				.heading:after {
					background: #fff;
					border-radius: 10px;
					content: "";
					display: none;
					position: absolute;
					height: 8px;
					width: 8px;
					top: calc(50% - 4px);
					right: 15px;
				}

				.detail {
					padding: 20px 25px 22px 25px;

					p {
						font-size: 1.4rem;
						line-height: 1.8;
						margin-bottom: 20px;

						@include config.sp {
							font-size: 4vw;
						}
					}

					.btnWrap {
						.btn:nth-child(1) {
							letter-spacing: -0.3px;
							padding: 8px 20px 8px 6px;
							width: 182px;

							@include config.sp {
								margin-bottom: 10px;
								width: 61vw;
							}

							br {
								@include config.sp {
									display: none;
								}
							}
						}

						.btn:nth-child(2) {
							width: 155px;

							@include config.sp {
								width: 33vw;
							}
						}

						.btn {
							@include config.sp {
								padding-top: 4px !important;
								padding-bottom: 4px !important;
							}
						}
					}

					.achievements-text {
						font-size: 1.5rem;
						font-weight: 500;
						margin-bottom: 0;

						@include config.sp {
							font-size: 4vw;
						}
					}

					.achievements-text__weight {
						font-size: 1.7rem;
						font-weight: 900;
						margin-bottom: 0;

						@include config.sp {
							font-size: 4vw;
						}
					}
				}

				.achievements__heading {
					font-weight: bold;
					position: relative;
					background: #0098cf;
				}

				.achievements__heading:before {
					display: block;
				}

				.achievements__heading:after {
					display: block;
				}
			}

			+ {
				.item {
					margin-top: 50px;
				}
			}
		}

		.achievements__item {
			margin-bottom: 28px;
		}

		.heading__sml {
			font-size: 1.4rem;
			font-weight: bold;

			@include config.sp {
				font-size: 3.2vw;
			}
		}

		.achievements__flex {
			width: 280px;
			margin: 0 auto;
			align-items: center;
			justify-content: space-between;

			@include config.sp {
				width: 73.189vw;
				display: flex;
			}
		}

		.img.imgsp {
			display: none;

			@include config.sp {
				display: block;
				margin-bottom: 30px;
			}
		}

		+ {
			.serviceUnit {
				@include config.sp {
					margin-top: 30px;
				}
			}
		}

		.img.imgpc {
			@include config.sp {
				display: none;
			}
		}
	}

	.serviceUnit:not(:first-of-type) {
		margin-top: 65px;
	}

	.serviceUnit.for0102 {
		.img {
			left: 0;
			border-radius: 0 36px 36px 0;
		}

		.txt {
			margin: 0 0 0 auto;

			@include config.sp {
				margin-top: 30px;
			}
		}
	}

	.serviceUnit.for03 {
		.img {
			right: 0;
			border-radius: 36px 0 0 36px;
		}

		.txt {
			margin: 0 auto 0 0;

			.head {
				.ico {
					width: 63px;
				}
			}
		}

		.item {
			+ {
				.item {
					margin-top: 35px;
				}
			}
		}
	}

	.serviceUnit.for04 {
		.inner {
			display: flex;
			align-items: stretch;

			@include config.sp {
				display: block;
			}
		}

		.img {
			border-radius: 36px;
			position: static;
			width: 53%;

			@include config.sp {
				width: 100%;
			}
		}

		.txt {
			margin: 0 0 0 auto;
			padding: 30px 0 0;

			.head {
				.ico {
					width: 42px;
				}
			}
		}
	}

	.serviceUnit.for05 {
		.inner {
			display: flex;
			align-items: stretch;

			@include config.sp {
				display: block;
			}
		}

		.img {
			border-radius: 36px;
			position: static;
			width: 53%;

			@include config.sp {
				width: 100%;
			}
		}

		.txt {
			margin: 0 auto 0 0;
			padding: 30px 0;

			.head {
				.ico {
					width: 39px;
				}
			}
		}
	}

	.serviceUnit.for06 {
		.inner {
			display: flex;
			align-items: stretch;

			@include config.sp {
				display: block;
			}
		}

		.img {
			border-radius: 36px;
			position: static;
			width: 53%;

			@include config.sp {
				width: 100%;
			}
		}

		.txt {
			margin: 0 0 0 auto;
			padding: 30px 0;

			.head {
				.ico {
					width: 46px;
				}
			}
		}
	}

	.serviceUnit.for07 {
		.inner {
			display: flex;
			align-items: stretch;

			@include config.sp {
				display: block;
			}
		}

		.img {
			border-radius: 36px;
			position: static;
			width: 53%;

			@include config.sp {
				width: 100%;
			}
		}

		.txt {
			margin: 0 auto 0 0;
			padding: 30px 0;

			.head {
				.ico {
					width: 50px;
				}

				.ico.flora {
					width: 57px;
				}
			}
		}
	}
}*/
/* ------------------------------
	about
------------------------------ */
.about {
  position: relative;
  z-index: 0;
}
.about .box {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: min(94%, 405px);
  padding: 43px 20px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .about .box {
    top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .about .box {
    border-radius: 12px;
    padding: 53px 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
  .about .box {
    top: 7vw;
  }
}
.about .box .secTtl {
  margin-bottom: 18px;
}
.about .box p {
  font-size: 1.5rem;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about .box p {
    font-size: 4vw;
  }
}
@media screen and (orientation: landscape) and (max-width: 767px) {
  .about .box p {
    font-size: 1.9rem;
  }
}
.about .photoSlide div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about .photoSlide div {
    height: 489px;
  }
}
@media screen and (max-width: 767px) {
  .about .photoSlide div {
    height: 550px;
  }
}
.about .photoSlide div img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=index.css.map */