@charset "UTF-8";
/* breakpoint ------------------------------*/
/* common ------------------------------------*/
.main-wrap {
  padding: 0;
}

.header:after {
  display: none;
}

/* keyvisual ---------------------------------*/
.kv {
  width: 100%;
  height: calc(100vh - 100px - 50px);
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 992px) {
  .kv {
    padding: 0 6vw;
  }
}

@media screen and (max-width: 768px) {
  .kv {
    height: calc(100vh - 80px - 50px);
    max-height: 600px;
  }
}

@media screen and (max-width: 576px) {
  .kv {
    height: calc(100vh - 60px - 50px);
    max-height: 400px;
    padding: 0;
  }
}

.kv__logo {
  max-width: 230px;
  position: relative;
  z-index: 1;
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

@media screen and (max-width: 768px) {
  .kv__logo {
    max-width: 180px;
  }
}

@media screen and (max-width: 576px) {
  .kv__logo {
    max-width: 140px;
  }
}

.kv__image {
  width: calc(100% - 100px);
  height: 100%;
  overflow: hidden;
  border-radius: 100px 0 100px 0;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .kv__image {
    width: calc(100% - 12vw);
    border-radius: 50px 0 50px 0;
    left: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__image {
    width: 100%;
    border-radius: 0;
    left: 0;
  }
}

.kv__image__item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}

.kv__image__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 12000ms linear;
  transition: -webkit-transform 12000ms linear;
  transition: transform 12000ms linear;
  transition: transform 12000ms linear, -webkit-transform 12000ms linear;
}

.kv__image__item.current {
  opacity: 1;
}

.kv__image__item.current img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
}

/* about -------------------------------------*/
.home-about {
  margin: 100px 50px;
  margin-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  border-radius: 100px 100px 100px 0;
  position: relative;
}

@media screen and (max-width: 992px) {
  .home-about {
    margin: 80px 6vw;
    border-radius: 50px 50px 50px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .home-about {
    margin: 40px 6vw;
    border-radius: 25px 25px 25px 0;
  }
}

.home-about:before, .home-about:after {
  content: "";
  width: 50px;
  display: block;
  position: absolute;
  left: -50px;
  bottom: 0;
}

@media screen and (max-width: 992px) {
  .home-about:before, .home-about:after {
    width: 6vw;
    left: -6vw;
  }
}

.home-about:before {
  height: 50px;
  background-color: #edece5;
  border-radius: 0 0 50% 50%;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .home-about:before {
    height: 6vw;
    bottom: 3vw;
  }
}

.home-about:after {
  height: 25px;
  background-color: white;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .home-about:after {
    height: 9vw;
  }
}

.home-about__wrap {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 100px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 992px) {
  .home-about__wrap {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 80px 6vw;
  }
}

@media screen and (max-width: 576px) {
  .home-about__wrap {
    padding: 60px 6vw;
  }
}

.home-about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: black;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .home-about__title {
    font-size: 2rem;
  }
}

.home-about__title:before, .home-about__title:after {
  content: "";
  width: 90px;
  height: 22px;
  display: block;
  background-image: url(../images/home/img_about_catch_h.png);
  background-size: 100% auto;
}

.home-about__title:before {
  margin-bottom: 20px;
}

.home-about__title:after {
  margin-top: 20px;
}

.home-about__text {
  max-width: 400px;
  margin: 80px 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2;
  color: black;
}

@media screen and (max-width: 992px) {
  .home-about__text {
    margin: 40px 0;
  }
}

.home-about__logo {
  width: 210px;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1200px) {
  .home-about__logo {
    width: 150px;
  }
}

@media screen and (max-width: 992px) {
  .home-about__logo {
    display: none;
  }
}

.home-about__image {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 992px) {
  .home-about__image {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.home-about__image figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 100px 100px 0;
}

@media screen and (max-width: 992px) {
  .home-about__image figure {
    height: 500px;
    border-radius: 50px 50px 0 0;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .home-about__image figure {
    border-radius: 25px 25px 0 0;
  }
}

@media screen and (max-width: 576px) {
  .home-about__image figure {
    height: 300px;
  }
}

.home-about__image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/* endoscope ---------------------------------*/
.endoscope {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 992px) {
  .endoscope {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .endoscope {
    padding: 40px 0;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}

.endoscope:before {
  content: "";
  width: 75%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .endoscope:before {
    width: calc(100% - 6vw);
  }
}

.endoscope.gastroendoscopy {
  padding-left: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .endoscope.gastroendoscopy {
    padding-right: 6vw;
    padding-left: 12vw;
  }
}

.endoscope.gastroendoscopy:before {
  background-color: #edece5;
  border-radius: 100px 0 0 100px;
  right: 0;
}

@media screen and (max-width: 992px) {
  .endoscope.gastroendoscopy:before {
    border-radius: 50px 0 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .endoscope.gastroendoscopy:before {
    border-radius: 25px 0 0 25px;
  }
}

.endoscope.colonoscopy {
  padding-right: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #edece5;
}

@media screen and (max-width: 768px) {
  .endoscope.colonoscopy {
    padding-right: 12vw;
    padding-left: 6vw;
  }
}

.endoscope.colonoscopy:before {
  background-color: white;
  border-radius: 0 100px 100px 0;
  left: 0;
}

@media screen and (max-width: 992px) {
  .endoscope.colonoscopy:before {
    border-radius: 0 50px 50px 0;
  }
}

@media screen and (max-width: 768px) {
  .endoscope.colonoscopy:before {
    border-radius: 0 25px 25px 0;
  }
}

.endoscope__logo {
  width: 210px;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.gastroendoscopy .endoscope__logo {
  left: -105px;
}

.colonoscopy .endoscope__logo {
  right: -105px;
}

@media screen and (max-width: 1200px) {
  .endoscope__logo {
    width: 150px;
  }
  .gastroendoscopy .endoscope__logo {
    left: -75px;
  }
  .colonoscopy .endoscope__logo {
    right: -75px;
  }
}

@media screen and (max-width: 992px) {
  .endoscope__logo {
    display: none;
  }
}

.endoscope__image {
  max-width: calc(50% - 25px);
  -ms-flex-preferred-size: calc(50% - 25px);
      flex-basis: calc(50% - 25px);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .endoscope__image {
    max-width: none;
  }
}

.endoscope__image a {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.endoscope__image a:hover {
  opacity: 0.8;
}

.endoscope__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.endoscope__wrap {
  max-width: calc(50% + 25px);
  -ms-flex-preferred-size: calc(50% + 25px);
      flex-basis: calc(50% + 25px);
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .endoscope__wrap {
    max-width: none;
    margin-top: -40px;
    padding: 0;
  }
}

.endoscope__title {
  margin-bottom: 10px;
  font-size: 2.5rem;
  line-height: 1.4;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .endoscope__title {
    margin-bottom: 5px;
    font-size: 2rem;
  }
}

.endoscope__title:before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .endoscope__title:before {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}

.gastroendoscopy .endoscope__title:before {
  background-color: #8fc43d;
  background-image: url(../images/common/icon_gastroendoscopy.png);
}

.colonoscopy .endoscope__title:before {
  background-color: #0ba95f;
  background-image: url(../images/common/icon_colonoscopy.png);
}

.endoscope__en {
  margin-bottom: 40px;
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .endoscope__en {
    margin-bottom: 30px;
  }
}

.endoscope__catch {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  line-height: 2.5;
  line-height: 1.6;
  text-align: center;
  text-decoration: underline;
  color: black;
}

@media screen and (max-width: 768px) {
  .endoscope__catch {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.endoscope__text {
  max-width: 360px;
  margin: 30px auto;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .endoscope__text {
    max-width: 400px;
    margin: 20px auto;
  }
}

.endoscope-list {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  margin-top: 60px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .endoscope-list {
    max-width: 400px;
    margin-top: 40px;
  }
}

.endoscope-list li {
  border-top: 1px dotted rgba(0, 0, 0, 0.5);
}

.endoscope-list li a {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 576px) {
  .endoscope-list li a {
    height: 40px;
    font-size: 1.3rem;
  }
}

.endoscope-list li a:after {
  content: "";
  width: 18px;
  height: 4px;
  display: block;
  background-image: url(../images/common/icon_arrow_r.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
}

/* ultrasonography ---------------------------*/
.ultrasonography {
  max-width: 1600px;
  margin: 100px auto;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .ultrasonography {
    margin: 80px auto;
    padding: 0 6vw;
  }
}

.ultrasonography__image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .ultrasonography__image {
    height: 400px;
  }
}

@media screen and (max-width: 576px) {
  .ultrasonography__image {
    height: 300px;
  }
}

.ultrasonography__image a {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.ultrasonography__image a:hover {
  opacity: 0.8;
}

.ultrasonography__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ultrasonography__wrap {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .ultrasonography__wrap {
    display: block;
    margin-top: -50px;
  }
}

@media screen and (max-width: 768px) {
  .ultrasonography__wrap {
    margin-top: -40px;
  }
}

.ultrasonography-name {
  max-width: 320px;
  -ms-flex-preferred-size: 320px;
      flex-basis: 320px;
  padding-left: 120px;
  margin-right: 60px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .ultrasonography-name {
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
  }
}

.ultrasonography-name:before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  background-image: url(../images/common/icon_ultrasonography.png);
  background-color: white;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: calc(50% - 50px);
}

@media screen and (max-width: 992px) {
  .ultrasonography-name:before {
    margin: 0 auto;
    margin-bottom: 30px;
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .ultrasonography-name:before {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}

.ultrasonography-name__title {
  font-size: 2.4rem;
  line-height: 1.6;
  color: black;
}

@media screen and (max-width: 768px) {
  .ultrasonography-name__title {
    font-size: 2rem;
  }
}

.ultrasonography-name__en {
  font-size: 1.2rem;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .ultrasonography-name__en {
    font-size: 1.1rem;
    line-height: 2;
  }
}

.ultrasonography__text {
  max-width: calc(100% - 320px - 140px - 120px);
  -ms-flex-preferred-size: calc(100% - 320px - 140px - 120px);
      flex-basis: calc(100% - 320px - 140px - 120px);
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 992px) {
  .ultrasonography__text {
    max-width: 500px;
    margin: 30px auto;
  }
}

@media screen and (max-width: 768px) {
  .ultrasonography__text {
    margin: 20px auto;
  }
}

.ultrasonography__btn {
  max-width: 140px;
  -ms-flex-preferred-size: 140px;
      flex-basis: 140px;
  margin-left: 60px;
}

@media screen and (max-width: 992px) {
  .ultrasonography__btn {
    margin: 0 auto;
  }
}

/* information -------------------------------*/
.info {
  margin: 100px 50px;
}

@media screen and (max-width: 992px) {
  .info {
    margin: 80px 6vw;
  }
}

@media screen and (max-width: 768px) {
  .info {
    margin: 60px 6vw;
  }
}

.info__title {
  margin-bottom: 10px;
  font-size: 3rem;
  line-height: 1.4;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .info__title {
    margin-bottom: 5px;
    font-size: 2.5rem;
  }
}

.info__en {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

.info-list {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .info-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .info-list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  .info-list {
    display: block;
  }
}

.info-list__item {
  max-width: calc((100% - (30px * 3)) / 4);
  -ms-flex-preferred-size: calc((100% - (30px * 3)) / 4);
      flex-basis: calc((100% - (30px * 3)) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1200px) {
  .info-list__item {
    max-width: calc((100% - 30px) / 2);
    -ms-flex-preferred-size: calc((100% - 30px) / 2);
        flex-basis: calc((100% - 30px) / 2);
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 576px) {
  .info-list__item {
    margin-bottom: 20px;
    max-width: none;
  }
}

.info-list__item a {
  width: 100%;
  padding: 60px 30px;
  background-color: white;
  border-radius: 10px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media screen and (max-width: 768px) {
  .info-list__item a {
    padding: 40px 6vw;
  }
}

.info-list__item a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.info-list__title {
  margin-bottom: 5px;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  color: black;
}

.info-list__title:before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .info-list__title:before {
    width: 80px;
    height: 80px;
  }
}

.outpatient .info-list__title:before {
  background-image: url(../images/common/icon_outpatient.png);
}

.disease .info-list__title:before {
  background-image: url(../images/common/icon_disease.png);
}

.examination .info-list__title:before {
  background-image: url(../images/common/icon_examination.png);
}

.comment .info-list__title:before {
  background-image: url(../images/common/icon_comment_bk.png);
}

.clock .info-list__title:before {
  background-image: url(../images/common/icon_clock.png);
}

.info-list__en {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.info-list__text {
  max-width: 160px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 1200px) {
  .info-list__text {
    max-width: 260px;
  }
}

.info-list__btn {
  max-width: 120px;
  min-width: 120px;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .info-list__btn {
    margin-top: 20px;
  }
}

/* checkup -----------------------------------*/
.checkup {
  padding: 100px 50px;
  background-color: white;
}

@media screen and (max-width: 992px) {
  .checkup {
    padding: 80px 6vw;
  }
}

@media screen and (max-width: 768px) {
  .checkup {
    padding: 60px 6vw;
  }
}

.checkup__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .checkup__wrap {
    display: block;
  }
}

.checkup__image {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .checkup__image {
    max-width: none;
  }
}

.checkup__image a {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checkup__image a:hover {
  opacity: 0.8;
}

.checkup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.checkup__contents {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .checkup__contents {
    max-width: none;
    margin-top: -40px;
    padding: 0;
  }
}

.checkup__title {
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .checkup__title {
    margin-bottom: 5px;
    font-size: 2rem;
  }
}

.checkup__title:before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  background-image: url(../images/common/icon_checkup.png);
  background-color: rgba(0, 0, 0, 0.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .checkup__title:before {
    width: 80px;
    height: 80px;
  }
}

.checkup__en {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

.checkup__text {
  max-width: 360px;
  margin: 40px auto;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .checkup__text {
    margin: 30px auto;
  }
}

/* other -------------------------------------*/
.home-logo {
  width: 210px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}




/*----------------------------------*/
.home-greeting {
    display: flex;
	flex-direction: row-reverse;
    align-items: center;
    margin: 100px 50px;
    background: #fff;
	border-radius: 0 100px 100px 0;
    position: relative;
}
.home-greeting:before {
    content: '';
    width: 50vw;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
}
.home-greeting__wrap {
    width: 50%;
    padding: 0 50px;
    box-sizing: border-box;
}
.home-greeting__wrap h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    text-align: center;
    color: black;
    margin-bottom: 10px;
}
.home-greeting__text {
    line-height: 2;
    margin-top: 30px;
}
.home-agreeting__image {
    width: 50%;
    border-radius: 0 100px 100px 0;
    overflow: hidden;
}


@media screen and (max-width: 768px) {

	.home-greeting {
		margin: 100px 20px;
		border-radius: 25px;
		display: block;
	}
	.home-greeting:before {
		display: none;
	}
    .home-agreeting__image {
        width: 100%;
        padding: 20px;
        border-radius: 25px;
        box-sizing: border-box;
    }
	.home-agreeting__image img {
		border-radius: 25px;
	}
	.home-greeting__wrap {
		width: 100%;
		padding: 30px 30px 50px;
		box-sizing: border-box;
	}

}





.home-news {
    max-width: 500px;
    padding: 20px 50px;
    margin-top: -30px;
    background: #fff;
    border-radius: 0 10px 10px 0;
    position: relative;
    box-shadow: 0 0 11px -4px #ccc;
}

.news__list >li a {
    display: flex;
    text-decoration: none;
    align-items: center;
}
.news-date {
    width: 80px;
}
.news-category {
    color: #fff;
    background: #0ba95f;
    width: 80px;
    text-align: center;
    padding: 2px 0 1px;
    margin-right: 20px;
}
.news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 180px);
}


@media screen and (max-width: 768px) {

	.news__list >li a {
		display: block;
	}
	.news-title {
		display: block;
		white-space: normal;
		width: auto;
		margin-top: 10px;
		line-height: 1.6;
	}

}



.home-column {
	padding: 100px 50px;
}
.column__title {
    margin-bottom: 10px;
    font-size: 2.4rem;
    line-height: 1.4;
    text-align: center;
    color: black;
}
.column__en {
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}
.home-column__list {
    display: flex;
    flex-wrap: wrap;
	margin-top: 80px;
}
.home-column__list >li {
    width: 32%;
    margin-left: 2%;
}
.home-column__list >li:nth-child(3n+1) {
    margin-left: 0;
}
.home-column__list >li a {
    display: block;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}
.column-info {
    padding: 20px 10px 30px;
}
.column-info-title {
    font-size: 1.5rem;
    line-height: 2.5;
}
.column-info-category {
    display: inline-block;
    color: #fff;
    background: #7e8277;
    padding: 3px 10px 2px;
}
.column__btn {
    max-width: 200px;
    margin: 50px auto 0;
}


@media screen and (max-width: 768px) {

	.home-column {
		padding: 100px 20px;
	}
	.home-column__list {
		display: block;
		margin-top: 50px;
	}
	.home-column__list >li {
		width: auto;
		margin: 0 0 20px;
	}


}

