@charset "UTF-8";

.message {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.message__image {
  width: 50%;
  overflow: hidden;
}
.message__image:first-child {
  border-radius: 0 90px 90px 0;
}
.message__image:last-child {
  border-radius: 90px 0 0 90px;
}
.message__center {
  width: 100%;
  text-align: center;
}
.message__title {
  margin-bottom: 20px;
  color: #82c8c8;
  font-size: 20px;
  font-size: 5.3333333333vw;
  line-height: 1.6;
}
.message__text {
  margin-bottom: 40px;
  font-size: 14px;
  font-size: 3.7333333333vw;
  line-height: 2;
}

.treatment__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
}
.treatment__body li {
  width: 45%;
  margin-bottom: 30px;
}
.treatment__body li:nth-child(7),
.treatment__body li:nth-child(8) {
  margin-bottom: 0;
}
.treatment__body a {
  display: block;
  padding: 25px 10px;
  border-radius: 30px;
  background-color: #e3e3e3;
  text-align: center;
}
.treatment__body a:hover {
  opacity: 1;
}
.treatment__body a:hover img {
  -webkit-animation-name: swing;
  animation-name: swing;
}
.treatment__body a.comingsoon {
  position: relative;
}
.treatment__body a.comingsoon::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: url(../img/comingsoon1.svg) no-repeat center / 52% rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.treatment__image {
  width: 80%;
  margin: 0 auto 10px;
}
.treatment__title {
  font-size: 11px;
  font-size: 2.9333333333vw;
  letter-spacing: 0.08em;
}

.information li {
  margin-bottom: 40px;
  overflow: hidden;
}
.information li:last-child {
  margin-bottom: 0;
}
.information li:last-child a {
  background: url("../img/top_about_2-min.jpg") no-repeat center;
  background-size: cover;
}
.information li:last-child a,
.information li:last-child .information__inner {
  border-radius: 30px;
}
.information li:first-child a,
.information li:first-child .information__inner {
  border-radius: 30px;
}
.information a {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  background: url("../img/top_about_1-min.jpg") no-repeat center;
  background-size: cover;
}
.information a:hover {
  opacity: 1;
}
.information__inner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.information__title {
  margin-bottom: 15px;
  color: #00768b;
  font-weight: bold;
  font-size: 16px;
  font-size: 4.2666666667vw;
  letter-spacing: 0.1em;
  text-align: center;
}
.information__text {
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3em;
  text-align: center;
}
.information__link {
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 1000px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
}
.information .icon-turtle {
  position: absolute;
  left: 20px;
  color: #fff;
  font-size: 50px;
  opacity: 0.3;
}

.greeting a {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 30px;
  background: url("../img/greeting_mv_1-min.jpg") no-repeat center;
  background-size: cover;
}
.greeting a:hover {
  opacity: 1;
}
.greeting__inner {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.greeting__title {
  margin-bottom: 15px;
  color: #00768b;
  font-weight: bold;
  font-size: 16px;
  font-size: 4.2666666667vw;
  letter-spacing: 0.1em;
  text-align: center;
}
.greeting__text {
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3em;
  text-align: center;
}
.greeting__link {
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 1000px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
}
.greeting .icon-turtle {
  position: absolute;
  left: 20px;
  color: #fff;
  font-size: 50px;
  opacity: 0.3;
}

@media screen and (min-width: 768px) {
  .message__image {
    width: 25%;
  }
  .message__center {
    width: 40%;
  }
  .message__title {
    margin-bottom: 30px;
    font-size: 1.8vw;
  }
  .message__text {
    margin-bottom: 0;
    font-size: 1.2vw;
    line-height: 2.5;
  }
  .treatment__body li {
    width: 21%;
  }
  .treatment__body a {
    padding: 44px 20px;
  }
  .treatment__image {
    width: 70%;
    margin: 0 auto 20px;
  }
  .treatment__title {
    font-size: 16px;
  }
  .information__body {
    display: flex;
    justify-content: space-between;
  }
  .information li {
    width: 49%;
    margin-bottom: 0;
  }
  .information li:last-child a,
  .information li:last-child .information__inner {
    border-radius: 0 90px 90px 0;
  }
  .information li:first-child a,
  .information li:first-child .information__inner {
    border-radius: 90px 0 0 90px;
  }
  .information a {
    height: 500px;
  }
  .information__inner {
    opacity: 0;
    transition: 0.5s;
  }
  .information__inner:hover {
    opacity: 1;
    transition: 0.5s;
  }
  .information__title {
    font-size: 18px;
  }
  .information__text {
    font-size: 28px;
  }
  .information .icon-turtle {
    bottom: 40px;
    left: 40px;
    font-size: 100px;
    opacity: 1;
  }
  .greeting a {
    height: 500px;
    border-radius: 90px;
  }
  .greeting__inner {
    border-radius: 90px;
    opacity: 0;
    transition: 0.5s;
  }
  .greeting__inner:hover {
    opacity: 1;
    transition: 0.5s;
  }
  .greeting__title {
    font-size: 18px;
  }
  .greeting__text {
    font-size: 28px;
  }
  .greeting .icon-turtle {
    bottom: 40px;
    left: 40px;
    font-size: 100px;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .message__image:first-child {
    order: 1;
    border-radius: 0;
  }
  .message__image:last-child {
    order: 2;
    border-radius: 0;
  }
  .information .icon-turtle {
    top: 20px;
  }
  .greeting .icon-turtle {
    top: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .treatment__body li {
    width: 200px;
  }
}

/* news */
.news {
  position: relative;
}
.news_sec {
  width: 424px;
  background-color: #82c8c8;
  color: #fff;
  border-radius: 55px;
  padding: 35px 60px;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  top: -300px;
  left: 9%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.news_inner {
  position: relative;
}
.news_tit {
  position: relative;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 24px;
}
.news_tit::after {
  content: "";
  width: 61.14px;
  height: 49.2px;
  background: url(../img/logo1_w.svg) no-repeat center / contain;
  position: absolute;
  top: -22px;
  left: 85px;
}
.news_list .li1:nth-of-type(n + 2) {
  margin-top: 10px;
}
.news_list_link {
  color: #fff;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  padding-right: 20px;
}
.news_list_link .arrow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
  width: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_list_link .arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  animation: arrow_move 1.5s linear infinite;
}
@keyframes arrow_move {
  0%,
  100% {
    margin-left: 5px;
  }
  50% {
    margin-left: -5px;
  }
}
.news_mode {
  display: block;
  width: 50px;
  padding-bottom: 5px;
  padding-left: 0.1em;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.2em;
  position: absolute;
  top: 2px;
  right: 0;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0 0 60px;
  }
  .news_sec {
    width: 100%;
    border-radius: 0;
    padding: 35px 40px 30px;
    position: static;
    box-shadow: none;
  }
}
