@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://use.typekit.net/lnf3pib.css");
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body{
	overflow-x: hidden;
}

.platelet {
  font-family: "platelet", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.d-flex {
  display: flex;
}
.d-flex.justify-content-center {
  justify-content: center;
}
.d-flex.align-items-center {
  align-items: center;
}
.d-flex.justify-content-space-between {
  justify-content: space-between;
}
.d-flex.gap {
  gap: 15px;
}

img {
  width: 100%;
  vertical-align: baseline;
  height: auto;
}

li {
  list-style: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.fade_in {
  opacity: 0;
  transition-duration: 1500ms;
  transition-property: opacity, transform;
}
.fade_in.fade_in_up {
  transform: translate(0, 50px);
}
.fade_in.scroll_in {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 639px) {
  .fade_in {
    transition-duration: 1000ms;
  }
}
body {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  color: #312d2b;
  opacity: 0;
  transition-duration: 1000ms;
}
@media screen and (max-width: 1024px) {
  body .pc {
    display: none;
  }
}
body header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 3;
  transition: all 1s;
}
body header.active {
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  body header {
    height: 92px;
  }
}
body header .padding {
  padding: 25px 15px;
}
@media screen and (max-width: 1024px) {
  body header .padding {
    padding: 0;
  }
}
body header .box .logo {
  margin-right: 30px;
  z-index: 2;
}
body header .box .logo img {
  max-width: 95px;
}
@media screen and (max-width: 1024px) {
  body header .box .logo img {
    max-width: 80px;
    position: relative;
    top: 5px;
    left: 5px;
  }
}
body header .box .info.left p {
  line-height: 30px;
  letter-spacing: 0.1em;
}
body header .box .info.left p:first-child {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-left: 20px;
}
@media screen and (max-width: 1380px) {
  body header .box .info.left p:first-child {
    font-size: 13px;
  }
}
@media screen and (max-width: 1170px) {
  body header .box .info.left p:first-child {
    font-size: 12px;
  }
}
body header .box .info.left p:first-child span {
  margin-left: 5px;
}
body header .box .info.left p:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/pc/svg.svg);
  width: 15px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
body header .box .info.left p:last-child {
  font-size: 13px;
  color: #7d7d7d;
}
@media screen and (max-width: 1170px) {
  body header .box .info.left p:last-child {
    font-size: 12px;
  }
}
body header .box .info.right p {
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #333333;
}
body header .box .info.right p:first-child {
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 500;
}
body header .box .info.right p:last-child {
  color: #7d7d7d;
  font-size: 25px;
}
@media screen and (max-width: 1380px) {
  body header .box .info.right p:last-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 1170px) {
  body header .box .info.right p:last-child {
    font-size: 18px;
  }
}
body header .box .info.right p:last-child span {
  font-size: 13px;
  margin-right: 3px;
}
body header .box .web img, body header .box .sns img {
  transition: all 0.4s;
  max-width: 220px;
}
body header .box .web img:hover, body header .box .sns img:hover {
  opacity: 0.4;
  transition: all 0.4s;
}
@media screen and (max-width: 1380px) {
  body header .box .web img, body header .box .sns img {
    max-width: 190px;
  }
}
@media screen and (max-width: 1170px) {
  body header .box .web img, body header .box .sns img {
    max-width: 130px;
  }
}
@media screen and (max-width: 1024px) {
  body header #nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    transition: all 0.6s;
  }
}
body header #nav.active {
  width: 80%;
}
body header #nav .hamburger_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 92px;
  height: 92px;
  cursor: pointer;
  background-color: #2e61ad;
  position: absolute;
  right: 0;
  z-index: 2;
  transition: all 0.7s ease-in-out;
  padding-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  body header #nav .hamburger_menu {
    display: none;
  }
}
body header #nav .hamburger_menu span {
  position: relative;
  background-color: #fff;
  height: 1px;
  width: 50px;
  border-radius: 1px;
  transition: all 0.4s ease-in-out;
}
body header #nav .hamburger_menu p {
  position: absolute;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  body header #nav .hamburger_menu.active {
    transition: all 0.4s ease-in-out;
  }
}
body header #nav .hamburger_menu.active span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
body header #nav .hamburger_menu.active span:nth-of-type(2) {
  transform: translateY(-2px) rotate(45deg);
}
body header #nav nav.navigation {
  transition: all 0.6s;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation {
    transform: translateX(100%);
    transition: all 0.6s;
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation.active {
    transform: translateX(0);
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    height: 100%;
  }
}
body header #nav nav.navigation.active ul li {
  border-bottom: #4c4947 1px dashed;
}
body header #nav nav.navigation.active ul li a {
  position: relative;
}
body header #nav nav.navigation.active ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid #f59797;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
}
body header #nav nav.navigation ul {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #333333;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation ul {
    border-bottom: none;
    flex-direction: column;
    margin: 0 auto;
    width: 80%;
    padding-top: 130px;
    padding-bottom: 70px;
  }
}
body header #nav nav.navigation ul li:last-child a::before {
  content: none;
}
body header #nav nav.navigation ul li a {
  font-size: 20px;
  color: #4c4947;
  padding: 30px;
  display: block;
  position: relative;
}
body header #nav nav.navigation ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1px;
  height: 25px;
  background-size: contain;
  background-color: #d6d6d6;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation ul li a::before {
    content: none;
  }
}
body header #nav nav.navigation ul li a:hover::after {
  content: "";
  background-image: url(../img/pc/hover.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
body header #nav nav.navigation ul li.has_child {
  position: relative;
}
body header #nav nav.navigation ul li.has_child:hover ul.menu_child {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation ul li.has_child a {
    border-bottom: #4c4947 1px dashed;
  }
}
body header #nav nav.navigation ul li.has_child a:hover::after {
  content: none;
}
body header #nav nav.navigation ul li.has_child ul.menu_child {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  top: 60px;
  border-right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation ul li.has_child ul.menu_child {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    top: unset;
    visibility: unset;
    opacity: 1;
    justify-content: flex-start;
    margin: 10px 0;
    padding-left: 20px;
  }
}
body header #nav nav.navigation ul li.has_child ul.menu_child li {
  padding: 0 15px;
  border-right: 0;
  line-height: 2;
}
body header #nav nav.navigation ul li.has_child ul.menu_child li:last-child {
  border-bottom: none;
}
body header #nav nav.navigation ul li.has_child ul.menu_child li a {
  padding: 8px 8px;
  font-size: 14px;
  border-bottom: 1px dashed #CCCCCC;
}
@media screen and (max-width: 1024px) {
  body header #nav nav.navigation ul li.has_child ul.menu_child li a {
    border-bottom: none;
  }
}
body header #nav nav.navigation ul li.has_child ul.menu_child li a:hover {
  opacity: 0.4;
}
body header #nav nav.navigation ul li.has_child ul.menu_child li a:hover::after {
  content: none;
}
body section#fv .bg {
  background-image: url(../img/pc/main01@2x.webp);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  width: 100vw;
  height: calc(100vh - 232px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body section#fv .bg {
    height: 600px!important;
	background-image: url(../img/pc/main01@2xsp.webp);
  }
}
body section#fv .bg .chach {
  text-align: center;
}
body section#fv .bg .chach img {
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  body section#fv .bg .chach img {
    display: block;
    position: absolute;
    right: 0;
    top: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  body section#fv .bg .chach img {
    max-width: 400px;
  }
}
@media screen and (max-width: 584px) {
  body section#fv .bg .chach img {
    max-width: 300px;
  }
}
body section#fv .bg .chach p {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 25px 0;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  body section#fv .bg .chach p {
    text-shadow: 1px 1px 1px #fff;
  }
}
body section#fv .bg .chach h2 {
  color: #26c0bf;
  font-size: 45px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body section#fv .bg .chach h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 584px) {
  body section#fv .bg .chach h2 {
    font-size: 25px;
  }
}
body section#fv .bg .chach h2 span {
  color: #2d61ad;
}
body .container {
  max-width: 1000px;
  margin: auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media screen and (max-width: 585px) {
  body .container {
    padding: 0 30px;
  }
}
body .container.large {
  max-width: 1435px;
}
body .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body .row.margin-bottom {
  margin-bottom: 80px;
}
@media screen and (max-width: 585px) {
  body .row.sm-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  body .row.md-column-reverse {
    flex-direction: column-reverse;
  }
}
body .row .col-sm-6 {
  width: 100%;
}
@media screen and (min-width: 586px) {
  body .row .col-sm-6 {
    width: 46%;
  }
}
body .row .col-md-6 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .col-md-6 {
    width: 46%;
  }
}
body .text-center {
  text-align: center;
}
body .position-relative {
  position: relative;
}
body section#news {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  body section#news {
    padding-top: 25%;
  }
}
body section#news .box {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 585px) {
  body section#news .box {
    display: block;
  }
}
body section#news .box h2 {
  color: #144290;
  font-size: 64px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 585px) {
  body section#news .box h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }
}
body section#news .box ul {
  margin-bottom: 50px;
}
body section#news .box ul li {
  border-bottom: 1px solid #144290;
  padding: 30px 0;
}
body section#news .box ul li article {
  font-size: 16px;
}
body section#news .box ul li article .time {
  margin-right: 30px;
}
body section#news .box ul li article .time time {
  color: #22a7d6;
  display: block;
}
body section#news .box ul li article .text {
  max-width: 650px;
}
body section#news .box ul li article .text p {
  line-height: 1.8;
  margin: -0.5em 0;
  text-align: justify;
}
body section#news .box ul li article .text a {
  line-height: 1.8;
  margin: -0.5em 0;
  text-align: justify;
  color: #333;
}
body section#news .see-more {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  background-color: #25c0bf;
  border-radius: 35px;
  display: block;
  max-width: 300px;
  width: 100%;
  margin: auto;
  transition: all 0.5s;
}
body section#news .see-more:hover {
  color: #144290;
  background-color: #ffd95a;
  transition: all 0.5s;
}
body section#greeting .box {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  background-color: #f4f9fc;
  border-radius: 100px;
  position: relative;
}
@media screen and (max-width: 991px) {
  body section#greeting .box {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  body section#greeting .box {
    flex-wrap: wrap;
    padding: 50px 20px;
  }
}
body section#greeting .box h3.head-img {
  max-width: 80px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  body section#greeting .box h3.head-img {
    max-width: 60px;
    margin-right: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
body section#greeting .box .left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  max-width: 495px;
}
body section#greeting .box .left h2 {
  color: #144290;
  font-size: 64px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 585px) {
  body section#greeting .box .left h2 {
    font-size: 50px;
  }
}
body section#greeting .box .left p {
  line-height: 2;
}
body section#greeting .box .right {
  width: 50%;
  margin-top: -15%;
  left: -20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body section#greeting .box .right {
    width: 50%;
    margin-top: 120px;
    left: auto;
  }
}
body section#greeting .box .right img {
  display: block;
}
body section#greeting .box .right img.teacher {
  max-width: 520px;
  margin: auto;
  border-radius: 50%;
}
body section#greeting .box .right img.deco01 {
  max-width: 220px;
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media screen and (max-width: 1199px) {
  body section#greeting .box .right img.deco01 {
    max-width: 160px;
    bottom: -70px;
  }
}
body section#greeting .box .right .circle {
  position: absolute;
  right: 10px;
  top: -10px;
  width: 200px;
  height: 200px;
  border: #4271b5 1px dashed;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  body section#greeting .box .right .circle {
    right: 0px;
    top: -120px;
    width: 150px;
    height: 150px;
  }
}
body section#greeting .doctor-intro {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  background-color: #25c0bf;
  border-radius: 35px;
  display: block;
  max-width: 300px;
  width: 100%;
  margin: auto;
  transition: all 0.5s;
}
body section#greeting .doctor-intro:hover {
  color: #144290;
  background-color: #ffd95a;
  transition: all 0.5s;
}
body h2.img-title {
  max-width: 700px;
  text-align: center;
  font-size: 35px;
  margin: auto;
  font-weight: 500;
  margin-bottom: 60px;
}
body h2.img-title img {
  margin-bottom: 30px;
}
@media screen and (max-width: 585px) {
  body .sm-mb {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 586px) {
  body br.sm {
    display: none;
  }
}
body .bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body section#skit .bg {
  color: #fff;
  background-image: url(../img/pc/bg_img@2x.jpg);
  height: 460px;
  margin-top: -10%;
}
@media screen and (max-width: 1024px) {
  body section#skit .bg {
    padding-top: 26.0416666667%;
    height: 0;
  }
}
body section#concept {
  background: linear-gradient(to right, #12a1d3, #25c0bf);
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  body section#concept {
    padding-top: 25%;
  }
}
body section#concept .bdr {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
body section#concept .wrap {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
body section#concept .wrap h2 {
  background-color: #144290;
  padding: 5px 0;
  max-width: 600px;
  margin: auto;
  font-size: 60px;
  width: 100%;
  border-radius: 40px;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
  z-index: 2;
}
@media screen and (max-width: 585px) {
  body section#concept .wrap h2 {
    font-size: 50px;
  }
}
body section#concept .wrap p {
  font-size: 18px;
  line-height: 2.5;
  font-weight: 300;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  body section#concept .wrap p {
    text-shadow: 1px 1px 1px #333;
  }
}
body section#concept .wrap img {
  display: block;
  position: absolute;
  max-width: 390px;
}
@media screen and (max-width: 1400px) {
  body section#concept .wrap img {
    max-width: 245px;
  }
}
body section#concept .wrap img.concept01 {
  left: -7%;
  bottom: -30%;
}
@media screen and (max-width: 1400px) {
  body section#concept .wrap img.concept01 {
    left: 0;
  }
}
body section#concept .wrap img.concept02 {
  right: -5%;
  top: -13%;
}
@media screen and (max-width: 1400px) {
  body section#concept .wrap img.concept02 {
    right: 0;
  }
}
body .bg_img {
  background-position: bottom;
  background-size: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
}
body section#feature {
  position: relative;
  padding-top: 75px;
  padding-bottom: 75px;
}
body section#feature::after {
  content: "";
  background-image: url(../img/pc/featureーbg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 100%;
}
body section#feature .position-relative {
  z-index: 2;
}
@media screen and (max-width: 767px) {
  body section#feature .row {
    flex-wrap: wrap;
  }
}
body section#feature .bg-before {
  margin-bottom: 120px;
}
body section#feature .bg-before::after {
  content: "";
  background-image: url(../img/pc/reason-bg.webp);
  position: absolute;
  background-size: contain;
  left: 0;
  top: 68px;
  width: 60%;
  height: 100%;
  background-repeat: no-repeat;
}
body section#feature .bg-before.right::after {
  right: 0;
  left: auto;
  background-image: url(../img/pc/reason-bg02.webp);
}
body section#feature .bg-before .column {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body section#feature .bg-before .column {
    width: 100%;
  }
}
body section#feature .bg-before .column .reason {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  body section#feature .bg-before .column .reason {
    justify-content: end;
  }
}
body section#feature .bg-before .column .reason .head {
  text-align: center;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  body section#feature .bg-before .column .reason .head {
    position: relative;
    margin-bottom: 20px;
  }
}
body section#feature .bg-before .column .reason .head p {
  font-size: 40px;
  line-height: 1;
  color: #144290;
}
body section#feature .bg-before .column .reason .head .num {
  font-size: 45px;
  color: #2e61ad;
  font-weight: 500;
  margin-top: 7px;
}
body section#feature .bg-before .column .reason .head .num span {
  font-size: 75px;
  color: #ee827d;
  line-height: 0;
  margin-left: 5px;
}
body section#feature .bg-before .column .reason .head .num span.turquoise {
  color: #50cdcc;
}
body section#feature .bg-before .column .reason .head .num span.sky-blue {
  color: #12a1d3;
}
body section#feature .bg-before .column .reason .head .num span.yellow-gold {
  color: #f1c638;
}
body section#feature .bg-before .column .reason .box {
  max-width: 370px;
}
@media screen and (max-width: 767px) {
  body section#feature .bg-before .column .reason .box {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  body section#feature .bg-before .column .reason .box {
    margin-top: 100px;
  }
}
body section#feature .bg-before .column .reason .box h3 {
  font-size: 20px;
  font-weight: 400;
  color: #ee827d;
}
body section#feature .bg-before .column .reason .box h3.turquoise {
  color: #50cdcc;
}
body section#feature .bg-before .column .reason .box h3.sky-blue {
  color: #12a1d3;
}
body section#feature .bg-before .column .reason .box img {
  display: block;
  margin: 20px 0;
}
body section#feature .bg-before .column .reason .box p {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.02em;
  font-weight: 500;
}
body section#feature .bg-before .img {
  width: 50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  body section#feature .bg-before .img {
    width: 100%;
  }
}
body section#feature .about {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  background-color: #25c0bf;
  border-radius: 35px;
  display: block;
  max-width: 300px;
  width: 100%;
  margin: auto;
  transition: all 0.5s;
}
body section#feature .about:hover {
  color: #144290;
  background-color: #ffd95a;
  transition: all 0.5s;
}
body a.common {
  max-width: 400px;
  width: 100%;
  height: 90px;
  text-align: center;
  display: block;
  border: 1px solid #312d2b;
  font-size: 20px;
  color: #312d2b;
  margin: auto;
  line-height: 90px;
  position: relative;
}
body a.common .before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 5px;
}
body a.common .before span {
  border: 1px solid #312d2b;
  width: 100%;
  height: 100%;
  display: block;
}
body a.common::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-right: 25px solid #f59797;
}
body section#medical {
  position: relative;
  padding-top: 75px;
  padding-bottom: 75px;
}
body section#medical .head {
  background-image: url(../img/pc/medical-head.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body section#medical .head h2 {
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
body section#medical .head h2 img {
  max-width: 390px;
}
body section#medical .head h2 span {
  display: block;
  font-style: normal;
  color: #144290;
  font-size: 32px;
  margin-top: 15px;
  padding-bottom: 30px;
}
body section#medical .medical-box {
  max-width: 1200px;
  margin: auto;
  position: relative;
  margin-top: -16%;
}
body section#medical .medical-box img.top {
  position: relative;
  top: 1px;
}
body section#medical .medical-box .wrap {
  background-color: #f5fafd;
  padding: 0 80px;
}
@media screen and (max-width: 1024px) {
  body section#medical .medical-box .wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap {
    padding: 0 20px;
  }
}
body section#medical .medical-box .wrap .box {
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
body section#medical .medical-box .wrap .box:first-child {
  margin-top: -10%;
}
body section#medical .medical-box .wrap .box .text {
  background-color: #fff;
  box-shadow: #d9d7d7 1px 1px 10px;
  text-align: center;
  padding: 40px;
  max-width: 740px;
  width: 100%;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  min-height: 250px;
}
body section#medical .medical-box .wrap .box .text.right {
  margin-left: auto;
}
body section#medical .medical-box .wrap .box .text h3 {
  color: #25c0bf;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap .box .text h3 {
    padding-top: 10px;
    font-size: 26px;
  }
}
body section#medical .medical-box .wrap .box .text p {
  text-align: left;
  line-height: 1.6;
}
body section#medical .medical-box .wrap .box .text .medical01-shape {
  position: absolute;
  left: 50px;
  top: -55px;
  width: 180px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap .box .text .medical01-shape {
    top: -15px;
    width: 80px;
  }
}
body section#medical .medical-box .wrap .box .text .medical02-deco {
  position: absolute;
  right: 50px;
  top: -55px;
  width: 180px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap .box .text .medical02-deco {
    top: -15px;
    width: 80px;
  }
}
body section#medical .medical-box .wrap .box .text .medical03-deco {
  position: absolute;
  left: 50px;
  top: -55px;
  width: 180px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap .box .text .medical03-deco {
    top: -15px;
    width: 80px;
  }
}
body section#medical .medical-box .wrap .box .text .medical04-deco {
  position: absolute;
  right: 50px;
  top: -55px;
  width: 180px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-box .wrap .box .text .medical04-deco {
    top: -15px;
    width: 80px;
  }
}
body section#medical .medical-box .wrap .box .text .see-more {
  text-align: center;
  padding: 20px 0;
  color: #144290;
  background-color: #ffd95a;
  border-radius: 35px;
  display: block;
  max-width: 300px;
  width: 100%;
  margin: auto;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 30px;
  transition: all 0.5s;
}
body section#medical .medical-box .wrap .box .text .see-more:hover {
  color: #FFF;
  background-color: rgb(238, 130, 125);
  transition: all 0.5s;
}
body section#medical .medical-box .wrap .box .img {
  max-width: 350px;
  position: absolute;
  top: -50px;
}
@media screen and (max-width: 1024px) {
  body section#medical .medical-box .wrap .box .img {
    max-width: 140px;
    top: -100px;
    z-index: 2;
  }
}
body section#medical .medical-box .wrap .box .img.right {
  right: 0;
}
body section#medical .medical-box .wrap .box .img.left {
  left: 0;
}
body section#medical .medical-box .wrap .outro100vw {
  height: 450px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: linear-gradient(to right, #12a1d3, #25c0bf);
  margin-top: -370px;
  position: relative;
}
body section#medical .medical-box .wrap .outro100vw .box {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 0;
}
body section#medical .medical-box .wrap .outro100vw .box img.bector {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
}
body section#medical .medical-box .wrap .outro100vw .box img.bector02 {
  position: absolute;
  right: 0;
  top: 0;
  width: 275px;
}
body section#medical .medical-box .wrap .outro100vw img.bdr {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
body section#medical .skit {
  background-image: url(../img/pc/skit-bg.jpg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 640px;
}
body section#medical .band {
  position: relative;
  color: #fff;
  font-weight: 400;
  text-align: center;
  padding: 50px 0;
  background-color: #144290;
  margin-top: -1%;
}
body section#medical .band.sky-blue {
  background-color: #12a1d3;
}
body section#medical .band h2 {
  font-size: 40px;
  letter-spacing: 0.18em;
  font-weight: 400;
}
@media screen and (max-width: 585px) {
  body section#medical .band h2 {
    font-size: 30px;
  }
}
body section#medical .band img.ellipse {
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 200px;
}
body section#medical .band img.shape {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 50px;
  z-index: 2;
}
body section#medical .medical-list {
  background-image: url(../img/pc/medical-list-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 200px;
}
body section#medical .medical-list .medical-menu {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  body section#medical .medical-list .medical-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 430px) {
  body section#medical .medical-list .medical-menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
body section#medical .medical-list .medical-menu .item {
  background-color: #ee827d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-radius: 30px;
  color: #fff;
  transition: all 0.5s;
}
body section#medical .medical-list .medical-menu .item.turquoise {
  background-color: #50cdcc;
}
body section#medical .medical-list .medical-menu .item.turquoise h3 {
  background-color: #21acac;
}
body section#medical .medical-list .medical-menu .item.sky-blue {
  background-color: #12a1d3;
}
body section#medical .medical-list .medical-menu .item.sky-blue h3 {
  background-color: #1091bd;
}
body section#medical .medical-list .medical-menu .item.yellow-gold {
  background-color: #f1c638;
}
body section#medical .medical-list .medical-menu .item.yellow-gold h3 {
  background-color: #d1a42b;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-list .medical-menu .item {
    gap: 15px;
  }
}
body section#medical .medical-list .medical-menu .item:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
body section#medical .medical-list .medical-menu .item h3 {
  font-size: 26px;
  padding: 15px 0px;
  background: #d67570;
  width: 100%;
  text-align: center;
  border-radius: 30px 30px 0px 0px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-list .medical-menu .item h3 {
    font-size: 20px;
  }
}
body section#medical .medical-list .medical-menu .item .icon {
  max-width: 50px;
}
body section#medical .medical-list .medical-menu .item .flex {
  padding-left: 20px;
  padding-bottom: 25px;
  max-width: 215px;
  margin-right: auto;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-list .medical-menu .item .flex {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body section#medical .medical-list .medical-menu .item .flex .arw {
  width: 40px;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
@media screen and (max-width: 767px) {
  body section#medical .medical-list .medical-menu .item .flex .arw {
    width: 20px;
  }
}
body section#medical .medical-list .medical-menu .item .flex p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  width: 185px;
}
@media screen and (max-width: 585px) {
  body section#medical .medical-list .medical-menu .item .flex p {
    width: auto;
  }
}
body section#medical .slider-area {
  padding: 50px 0 80px;
  background-color: #f9f4eb;
  position: relative;
}
body section#medical .slider-area::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../img/pc/slider-area-deco.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 50%;
  background-position: bottom;
}
body section#medical .slider-area .swiper {
  width: 100%;
  height: 100%;
  max-width: 1170px;
}
body section#medical .slider-area .swiper .swiper-slide {
  text-align: center;
  position: relative;
}
body section#medical .slider-area .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/pc/swiper-slider-deco.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 200px;
  background-position: bottom;
  z-index: -1;
}
body section#medical .slider-area .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 950px;
  border-radius: 150px 20px 20px 20px;
  margin: auto;
}
body section#medical .slider-area .swiper .swiper-slide .text {
  background: #fff;
  max-width: 500px;
  margin-left: auto;
  padding: 50px 30px;
  margin-top: -5%;
  z-index: 2;
  border-radius: 50px;
  position: relative;
  box-shadow: #d9d7d7 1px 1px 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}
body section#medical .slider-area .swiper .swiper-slide .text h2 {
  text-align: center;
  color: #50cdcc;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
body section#medical .slider-area .swiper .swiper-slide .text p {
  line-height: 1.6;
  text-align: left;
}
body section#medical .slider-area .swiper .swiper-button-next, body section#medical .slider-area .swiper .swiper-button-prev {
  color: #144290;
}
body section#medical .slider-area .swiper .swiper-button-next:after, body section#medical .slider-area .swiper .swiper-button-prev:after {
  font-size: 60px;
}
body section#info .logo {
  max-width: 95px;
  margin: auto;
}
body section#info .address p {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin: 30px 0;
  line-height: 30px;
  letter-spacing: 0.1em;
}
body section#info .address p span {
  margin-left: 5px;
}
body section#info .address p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  background-image: url(../img/pc/svg.svg);
  width: 15px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
body section#info .tel p {
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.1em;
}
body section#info .tel p span {
  font-size: 16px;
  margin-right: 3px;
}
body section#info .grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
}
body section#info .grid .web img, body section#info .grid .sns img {
  transition: all 0.4s;
}
body section#info .grid .web img:hover, body section#info .grid .sns img:hover {
  opacity: 0.4;
  transition: all 0.4s;
}
body section#info .medical-day {
  border-bottom: #312d2b 1px solid;
  border-top: #312d2b 1px solid;
  margin-bottom: 20px;
}
body section#info .medical-day table {
  width: 90%;
  margin: auto;
}
body section#info .medical-day table tr:nth-of-type(1) td {
  padding-top: 20px;
}
body section#info .medical-day table tr:nth-of-type(2) td {
  padding-bottom: 20px;
}
body section#info .medical-day table th, body section#info .medical-day table td {
  text-align: center;
}
body section#info .medical-day table th {
  border-bottom: 1px solid #4c4947;
  padding: 20px 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
body section#info .medical-day table td {
  padding: 8px;
  font-size: 12px;
}
body section#info .medical-day table td.available {
  color: #f59797;
}
body section#info .medical-day table td.partial {
  color: #f59797;
}
body section#info .medical-day table td.unavailable {
  color: gray;
}
body section#info .text {
  text-align: center;
}
body section#info .text p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
body section#info .text p span {
  color: #f59797;
  margin-right: 5px;
}
body section#info .gmap {
  height: 100%;
}
@media screen and (max-width: 767px) {
  body section#info .gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
    margin-top: 40px;
  }
}
body section#info .gmap iframe {
  height: 100%;
}
@media screen and (max-width: 767px) {
  body section#info .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
body section#floating {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  transition: all 1s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  body section#floating {
    display: none;
  }
}
body section#floating.floating.active {
  z-index: 1;
  transition: all 0.1s;
}
body section#floating .d-flex {
  align-items: end;
}
body section#floating a {
  display: block;
}
body section#floating a.left, body section#floating a.right {
  padding: 20px 0;
  width: 40%;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 20px;
}
@media screen and (max-width: 585px) {
  body section#floating a.left, body section#floating a.right {
    font-size: 12px;
  }
}
body section#floating a.left {
  background-color: #f59797;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body section#floating a.left span:first-child {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 585px) {
  body section#floating a.left span:first-child {
    font-size: 10px;
  }
}
body section#floating a.right {
  background-color: #f5fafd;
  color: #4271b5;
}
body section#floating a.right span:first-child {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 585px) {
  body section#floating a.right span:first-child {
    font-size: 10px;
  }
}
body section#floating a.right span:last-child {
  font-size: 10px;
}
body section#floating .box {
  width: 20%;
}
body section#floating .box a.to-top {
  display: block;
  width: 77px;
  height: 77px;
  background-color: #2d61ad;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-top: 10px;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 585px) {
  body section#floating .box a.to-top {
    width: 67px;
    height: 67px;
  }
}
body section#floating .box a.to-top:before {
  content: "";
  position: absolute;
  top: 7px;
  margin: auto 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #fff;
  border-right: 7px solid transparent;
}
body footer {
  background-color: #144290;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  body footer {
    padding: 40px;
    padding-bottom: 100px;
  }
}
body footer nav {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body footer nav {
    margin-bottom: 0px;
  }
}
body footer nav ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body footer nav ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  body footer nav ul li {
    width: 50%;
    margin-bottom: 40px;
  }
  body footer nav ul li:nth-child(1) {
    order: 1;
  }
  body footer nav ul li:nth-child(2) {
    order: 3;
  }
  body footer nav ul li:nth-child(3) {
    order: 5;
  }
  body footer nav ul li:nth-child(4) {
    order: 2;
  }
  body footer nav ul li:nth-child(5) {
    order: 4;
  }
  body footer nav ul li:nth-child(6) {
    order: 6;
  }
}
body footer nav ul li:last-child a::before {
  content: none;
}
body footer nav ul li a {
  font-size: 14px;
  color: #fff;
  padding: 0 30px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  body footer nav ul li a {
    padding: 0;
  }
}
body footer nav ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1px;
  background-size: contain;
  background-color: #d6d6d6;
}
@media screen and (max-width: 768px) {
  body footer nav ul li a::before {
    content: none;
  }
}
body footer small {
  display: block;
  text-align: center;
  color: white;
}
/*# sourceMappingURL=style.css.map */





.sub_ol {
line-height: 2;
margin-top: 50px;
margin-bottom: 100px;
}
.sub_ol li{
list-style:auto;
list-style-position: inside;
}
.sub_ul{
line-height: 2;
margin-top: 50px;
margin-bottom: 100px;
}
.sub_ul li{
list-style:auto;
list-style-position: inside;
}
.subbtn{
text-align: center;
    padding: 20px 0;
    color: #fff;
    background-color: #25c0bf;
    border-radius: 35px;
    display: block;
    max-width: 300px;
    width: 100%;
    margin: auto;
    transition: all 0.5s;
}
.subbtn:hover {
    color: #144290;
    background-color: #ffd95a;
    transition: all 0.5s;
}
.table_sheet {
    border-collapse: collapse;
    border-spacing: 0px;
    border-bottom: none;
	margin: auto;
    margin-bottom: 25px;
    width: 100%;
    background: #fff;
    border-top: solid 1px #ddd;
    border-right: solid 1px #ddd;
}
.table_sheet th, .table_sheet td {
    padding: 10px 20px;
    text-align: left;
    line-height: 1.5em;
    vertical-align: middle;
    background: #fff;
    border-bottom: solid 1px #ddd;
    line-height: 200%;
    border-left: 1px solid #ddd;
}
.table_sheet th {
    background: #f5fafd;
    font-weight: 500;
    text-align: center;
    border-bottom: solid 1px #ddd;
}
.menupage_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.menupage_box {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 250px;
    margin: 10px;
    margin-bottom: 40px;
    border-bottom: 2px #fff solid;
}
.menupage_box a {
    text-decoration: none;
}
.menupage_box_img {
    border: 1px #eee solid;
    padding: 6px;
}
.menupage_box span {
	display:inline-block;
    padding-top: 20px;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
	color: #4c4947;
}
.menupage_box a:hover {
    opacity: 0.6;
    transition: 0.2s;
}
.menupage_box:hover {
    border-bottom: 2px #2d61ad solid;
}
.sub_newsbox {
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.sub_newsbox a {
    text-decoration: none;
    padding: 20px;
    display: block;
	transition:0.4s;
}
.sub_newsbox a .date {
    font-size: 13px;
}
.sub_newsbox .category {
    display: inline-block;
    text-align: center;
    color: #666;
    padding: 5px 20px;
    margin: 0 30px 0 20px;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    vertical-align: middle;
    background: #fff;
    border: solid 1px #666;
}
.sub_newsbox .post-title {
    margin: 20px 0;
}
.subpage_contentarea p {
    margin-bottom: 40px;
}
.news_content_txt {
    font-size: 13px;
    color: #888;
}
.sub_newsbox .post-title {
    font-size: 18px;
    text-align: left;
}
.sub_newsbox .post-title:before{
	display:none;
}
.sub_newsbox a:hover{
	opacity:0.6;
	transition:0.4s;
}
@media screen and (max-width: 768px) {
	body section#medical .medical-list .medical-menu .item .flex.top_medtxtsp{
		padding-left: 0;
		margin:auto;
	}
	body section#greeting .box .right.doc_img_sp{
		width:70%;
	}
	body section#greeting .box .right.doc_img_sp .teacher{
		position: relative;
    	z-index: 2;
	}
	body section#greeting .box .right.doc_img_sp .circle{
		top: -100px;
        width: 120px;
        height: 120px;
	}
	.feture_title_sp{
		position: relative;
    	z-index: 2;
	}
	body section#concept{
		padding-bottom: 130px;
	}
}

body section#news .box ul {
    width: 100%;
}

.root_video{
	text-align:center;
	margin-bottom:20px;
}
.root_video video{
	max-width:500px;
	width:100%;
	margin:auto;
}
@media screen and (max-width: 1024px) {
body header #nav.sp_nav nav.navigation ul li a:hover::after{
	right: 10px!important;
	left:auto!important;
    top: 0!important;
    bottom: 0!important;
    margin: auto 0!important;
    width: 0!important;
    height: 0!important;
	}
}
.w-100_h-auto{
	width:100%;
	height:auto;
}
ul.list {
    padding-left: 30px;
    margin: 0 0 25px;
}
ul.list li {
    padding-left: 5px;
    margin: 5px 0;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom:20px;
    list-style:disc;
}
ol.list {
    padding-left: 30px;
    margin: 0 0 25px;
}
ol.list li {
    padding-left: 5px;
    margin: 5px 0;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom:20px;
    list-style:auto;
}

.banner-area{
  background-color: #d7d7d7;
  padding: 40px 0;
}
.banner-area-image{
  width: 40%;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .banner-area-image{
    width: 90%;
    max-width: none;
    margin: 0 auto 20px;
  }
}
.banner-area-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .banner-area-list{
    flex-wrap: wrap;
    gap: 10px;
  }
}
.banner-area-list li{
  list-style: none;
}
.banner-area-list li a{
  text-decoration: none;
}