@charset "UTF-8";
*,
::after,
::before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
a,
a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

.flex-full-width {
  width: 100%;
  flex-shrink: 0;
  display: flex;
}

.text-bold {
  font-weight: bold;
}
.flex-center {
  justify-content: center;
}
.flex-end {
  justify-content: flex-end;
}
.space-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
  margin-bottom:20px;
}
.align-item-base {
  align-items: baseline;
}

body {
  font-family: "Noto Sans JP";
  margin: 0;
  position: relative;
}
button:hover {
  cursor: pointer;
  transition: all 0.5s;
}
.btn {
  width: fit-content;
  min-width: 216px;
  min-height: 60px;
  border: 2px solid #0b768d;
  border-radius: 30px;
  background-color: unset;
  font: normal normal bold 16px/30px Noto Sans JP;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-primary:hover {
  background: #ffffff;
  color: #0b768d;
  border: 2px solid #0b768d;
  transition: unset;
  opacity: 1;
}
.btn.btn-primary:hover::after {
  background: url(/_images/icon_btn_cadetblue.svg) no-repeat;
  top: calc(50% - 5px);
}

.btn:after {
  width: 10px;
  height: 12px;
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 18px;
}

.btn.btn-primary {
  background-color: #0b768d;
  color: #fff;
}

.btn.btn-primary.arrow-down:after {
  width: 11px;
  height: 8px;
  top: calc(50% - 3px);
  background: url(/_images/icon_btn_arrow_down.svg) no-repeat;
}
.btn.btn-primary.arrow-down:hover:after {
  background: url(/_images/icon_btn_arrow_down_hover.svg) no-repeat;
}

.btn.btn-primary:after {
  background: url(/_images/icon_btn_white.svg) no-repeat;
}

.btn.btn-secondary {
  background-color: #fff;
  color: #0b768d;
}

.btn.btn-secondary:after {
  background: url(/_images/icon_btn_cadetblue.svg) no-repeat;
}

.btn.btn-secondary:hover {
  background: #0b768d;
  color: #ffffff;
  border: 2px solid #0b768d;
  transition: unset;
  opacity: 1;
}

.btn.btn-secondary:hover::after {
  background: url(/_images/icon_btn_white.svg) no-repeat;
}

.lnk-with-arrow {
  color: #0b768d;
  text-decoration: none;
  font: normal normal bold 15px Noto Sans JP;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
}
.lnk-with-arrow::after {
  width: 9px;
  height: 10px;
  content: "";
  display: inline-block;
  margin-left: 6px;
  background: url(/_images/icon_btn_cadetblue.svg) no-repeat;
  position: absolute;
  top: calc(50% - 5px);
}
.b-arrow-at-end::after {
  width: 9px;
  height: 10px;
  content: "";
  display: inline-block;
  background: url(/_images/small_right_arrow_black.svg) no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  stroke: #333;
}
.c-arrow-at-end {
  color: #0b768d;
  text-decoration: none;
  font: normal normal bold 15px Noto Sans JP;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
}
.c-arrow-at-end::after {
  width: 30px;
  height: 30px;
  content: "";
  display: inline-block;
  margin-left: 8px;
  background: url(/_images/arrow_circle.svg) no-repeat;
  position: absolute;
  top: -3px;
  background-size: 30px;
}
.text-with-divider {
  position: relative;
  padding-left: 6px;
}
.text-with-divider::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #2faecb;
  border-radius: 6px;
}
.pre-footer__white {
  background-color: #ffffff;
  max-height: 159px;
  min-height: 159px;
}
h1.top-title {
  margin: 40px 0 56px;
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 27px;
  font: normal normal bold 32px/42px Noto Sans JP;
}

h1.top-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 28px;
  border-bottom: 7px solid #2faecb;
  border-radius: 4px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

h1.top-title-normal-white {
  color: white;
  text-align: center;
  width: 100%;
  position: relative;
  margin: 48px 0 40px;
}

h1.top-title-normal-white > br {
  display: none;
}

.d-flex {
  display: flex;
}
.d-pc-none {
  display: none;
}
.d-pc-block {
  display: block;
}

.intro_info {
    width: 900px;
    border: 5px solid #FF9E00;
    margin: -30px auto 50px;
    padding: 15px 25px;
    line-height: 1.8;
    background-color: #fff;
}

.intro_info a {
    color: #0B768D;
    border-bottom: none;
    text-decoration: none;
}
 
.intro_info a:hover {
    border-bottom: #0B768D 1px solid;
}

@media only screen and (max-width: 576px) {
  .d-sp-none {
    display: none;
  }
  .d-sp-block {
    display: block;
  }
}

@media only screen and (max-width: 425px) {
  .btn {
    min-width: 184px !important;
    min-height: 48px !important;
    font: normal normal bold 15px/30px Noto Sans JP !important;
  }

  .btn:after {
    right: 14px !important;
    transform: scale(0.9) !important;
  }

  h1.top-title {
    margin: 48px 0 41px;
    font: normal normal bold 32px/42px Noto Sans JP;
  }

  h1.top-title-normal-white {
    margin: 40px 0 24px;
    padding: 0 47px;
    font-size: 28px;
  }

  h1.top-title-normal-white > br {
    display: inline-block;
  }

  .lnk-with-arrow {
    font-size: 13px;
  }
  
.intro_info {
    width: 90%;
 }
}

.wellhuman_baner_box{
  text-align: center;
  margin-bottom: 28px;
  margin-top: 0px;
}
.wellhuman_baner_box.-bgWhite{
  background-color: #fff;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 576px) {
  .wellhuman_baner_box.-bgWhite{
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.wellhuman_baner:hover{
  border: #2FAECB solid 2px;
  border-radius: 12px;
}

.wellhuman_baner{
width: 604px;
height: auto;
border: #2FAECB00 solid 2px;
}
.w-150{
width:150px
}
@media only screen and (max-width: 576px) {
  .wellhuman_baner{
    width: 90%;
    }
}