@charset "UTF-8";
/*=============================================================================
# mixins
==============================================================================*/
/*=============================================================================
# company-page main-visual
==============================================================================*/
.main-visual-company_content {
  background: url(../image/company/company_top.png) no-repeat center center/cover;
  width: 100%;
  height: 400px;
  text-align: center;
  padding-top: 175px;
}
@media screen and (max-width: 767px) {
  .main-visual-company_content {
    background: url(../image/company/company_top_sp.png) no-repeat center center/cover;
    padding-top: 90px;
    height: 250px;
  }
}

.page-title-company {
  font-size: 45px;
  color: #002A5B;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .page-title-company {
    font-size: 30px;
    padding: 10px 20px;
  }
}

.company-info_contents {
  max-width: 900px;
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .company-info_contents {
    margin-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.company-info {
  color: #002A5B;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .company-info {
    font-size: 16px;
  }
}

.company-info_row {
  display: flex;
  margin-top: 80px;
  position: relative;
}
.company-info_row:not(:last-child)::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #002A5B;
}
.company-info_row dt {
  max-width: 250px;
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .company-info_row dt {
    max-width: 80px;
  }
}
.company-info_row dd {
  text-align: left;
  max-width: calc(100% - 250px);
  padding-left: 150px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company-info_row dd {
    max-width: calc(100% - 80px);
    padding-left: 40px;
    line-height: 1.3em;
  }
}

/*=============================================================================
# mixins
==============================================================================*/
/*=============================================================================
# contact-page main-visual
==============================================================================*/
.main-visual-contact_content {
  background: url(../image/contact/contact_top.png) no-repeat center center/cover;
  width: 100%;
  height: 400px;
  text-align: center;
  padding-top: 175px;
}
@media screen and (max-width: 767px) {
  .main-visual-contact_content {
    background: url(../image/contact/contact_top_sp.png) no-repeat center center/cover;
    padding-top: 90px;
    height: 250px;
  }
}

.page-title-contact {
  font-size: 45px;
  color: #13AE67;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .page-title-contact {
    font-size: 30px;
    padding: 10px 20px;
  }
}

.contact_text {
  text-align: center;
  color: #13AE67;
  font-size: 21px;
  line-height: 1.5em;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .contact_text {
    font-size: 16px;
  }
}

.contact-form_area {
  padding-left: 10px;
  padding-right: 10px;
}

.contact_form {
  max-width: 990px;
  width: 100%;
  background: #E5E5E5;
  border-radius: 20px;
  margin: 40px auto 0;
  padding: 40px 50px 80px;
}
@media screen and (max-width: 767px) {
  .contact_form {
    padding: 10px 10px 40px;
  }
}

.contact-form_row {
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .contact-form_row {
    display: block;
    margin-top: 40px;
  }
}

.contact-form_label {
  width: calc(100% - 590px);
  font-size: 20px;
  padding-top: 20px;
  width: 100%;
}
.contact-form_label label {
  position: relative;
}
.contact-form_label label::after {
  position: absolute;
  content: "*";
  width: 20px;
  height: 20px;
  right: -30px;
  top: -5px;
  color: #FC0707;
  font-size: 30px;
}

.contact-form_input {
  max-width: 590px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-form_input {
    margin-top: 20px;
  }
}
.contact-form_input [type=text] {
  box-shadow: none;
  border: 1px solid #002A5B;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  font-size: 16px;
}
.contact-form_input [type=email] {
  box-shadow: none;
  border: 1px solid #002A5B;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  font-size: 16px;
}
.contact-form_input [type=tel] {
  box-shadow: none;
  border: 1px solid #002A5B;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  font-size: 16px;
}
.contact-form_input textarea {
  height: 240px;
  box-shadow: none;
  border: 1px solid #002A5B;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  resize: none;
  font-size: 16px;
}

.contact-form_button {
  margin-top: 90px;
  text-align: center;
}

.contact-form_submit {
  color: #13AE67;
  background: #fff;
  padding: 15px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  border: 1px solid #13AE67;
  letter-spacing: 1em;
  text-indent: 1em;
  font-size: 25px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  transition: background-color 0.4s, color 0.4s;
  text-align: center;
  display: inline-block;
}
.contact-form_submit._active {
  color: #fff;
  background: #13AE67;
}

/*=============================================================================
# mixins
==============================================================================*/
/*=============================================================================
# common - 全体に共通するスタイル
==============================================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .is-sp,
  .is-pc {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #002A5B;
  font-family: "M PLUS 2", sans-serif;
}

img {
  width: 100%;
}

.inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: inherit;
}

.all-wrap {
  overflow: hidden;
}

/*=============================================================================
# top-page top-image
==============================================================================*/
.drawer-icon {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 300;
  background: rgba(255, 255, 255, 0.5);
  width: 100px;
  height: 100px;
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    width: 70px;
    height: 70px;
    padding: 12px 8px;
    top: 20px;
    right: 20px;
  }
}
.drawer-icon.is-active {
  transform: translateX(-500px);
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .drawer-icon.is-active {
    transform: translateX(-250px);
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 20px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  transform: rotate(45deg);
  top: 20px;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  display: none;
}

.drawer-icon-bars {
  width: 60px;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-icon-bars {
    width: 54px;
  }
}

.drawer-icon-bar1,
.drawer-icon-bar2 {
  position: absolute;
  width: 60px;
  height: 8px;
  background: #050096;
  top: 0;
  left: 0;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .drawer-icon-bar1,
  .drawer-icon-bar2 {
    height: 7px;
    width: 54px;
  }
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .drawer-icon-bar2 {
    top: 15px;
  }
}

.drawer-icon-bar3 {
  position: absolute;
  top: 38px;
  font-size: 20px;
  font-weight: 700;
  color: #050096;
}
@media screen and (max-width: 767px) {
  .drawer-icon-bar3 {
    top: 28px;
    font-size: 18px;
  }
}

.drawer-content {
  width: 500px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .drawer-content {
    width: 250px;
  }
}

.drawer-content-items {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .drawer-content-items {
    padding: 20px 0;
  }
}

.drawer-content-item {
  border-bottom: 1px dotted #333;
}
.drawer-content-item a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 20px 30px;
  font-size: 28px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-content-item a {
    font-size: 20px;
  }
}
.drawer-content-item a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 22px;
  background: url(../image/arrow-b.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .drawer-content-item a::after {
    right: 20px;
  }
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 298;
  opacity: 0;
  pointer-events: none;
}
.drawer-background.is-active {
  opacity: 1;
}

.top-visual-area {
  width: 100%;
  height: 650px;
}
@media screen and (max-width: 767px) {
  .top-visual-area {
    height: 600px;
  }
}

.main-visual {
  background: url(../image/top-image.jpg) no-repeat center center/cover;
}

.main-visual-contents {
  width: 100%;
  height: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-visual-contents {
    height: 600px;
  }
}

.main-visual_move {
  height: 650px;
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-visual_move {
    height: 600px;
    width: 90%;
  }
}

.main-visual_move-right {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo-image {
  position: absolute;
  top: 50px;
  left: 80px;
  max-width: 300px;
  width: 100%;
  z-index: 10;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .logo-image {
    max-width: 180px;
    top: 10px;
    left: 10px;
  }
}
.logo-image img {
  position: relative;
  z-index: 1;
}
.logo-image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -26px;
  width: calc(100% + 60px);
  height: calc(100% + 80px);
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .logo-image::before {
    background-color: transparent;
  }
}

.company-name {
  font-size: 30px;
  color: #050096;
  font-weight: 700;
  position: absolute;
  top: 150px;
  left: 80px;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .company-name {
    font-size: 22px;
    left: 10px;
    top: 70px;
  }
}

.main-visual-text {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 950px;
  width: 100%;
  background-color: rgba(0, 51, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .main-visual-text {
    top: 350px;
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .main-visual-text {
    width: 90%;
  }
}

.main-visual-text-span {
  color: transparent;
  display: block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 0.5s;
  width: 100%;
  font-size: 35px;
  padding: 15px 15px 20px;
}
@media screen and (max-width: 767px) {
  .main-visual-text-span {
    font-size: 22px;
    line-height: 1.3em;
    padding: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .main-visual-text-span {
    line-height: 1.3em;
  }
}
.main-visual-text-span::after {
  content: "";
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.main-visual-text-span.active {
  color: #fff;
}
.main-visual-text-span.active::after {
  animation: lineAnime 1s;
}

@keyframes lineAnime {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
/*=============================================================================
# main
==============================================================================*/
.service {
  background-color: #D9F8FF;
}

.service-inner {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .service-inner {
    padding: 0 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service-inner {
    padding: 0 5px;
  }
}

.doctor-banner {
  background: url(../image/doctor-banner.png) no-repeat center center/contain;
  max-width: 1100px;
  height: 300px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .doctor-banner {
    height: 150px;
  }
}

.doctor-banner_title {
  color: #050096;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 0.15em;
  position: absolute;
  top: 100px;
  right: 120px;
}
@media screen and (max-width: 767px) {
  .doctor-banner_title {
    font-size: 30px;
    top: 50px;
    right: 10px;
  }
}

.doctor-banner_text {
  background-color: #fff;
  color: #1f1f1f;
  display: inline-block;
  padding: 15px 30px;
  font-size: 25px;
  position: absolute;
  right: 105px;
  top: 190px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .doctor-banner_text {
    font-size: 14px;
    padding: 5px;
    top: 95px;
    right: 10px;
  }
}

.service-contents {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .service-contents {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service-contents {
    margin-top: 80px;
  }
}

.service_title {
  color: #050096;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_title {
    font-size: 30px;
  }
}

.service_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
  max-width: 1200px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .service_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_items {
    gap: 30px 20px;
  }
}

.service_item {
  border: 2px solid #050096;
  background-color: #fff;
  padding: 10px;
  text-align: center;
  position: relative;
}

.service_item_image {
  width: 100%;
  height: 150px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .service_item_image {
    margin-top: 0;
    height: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_item_image {
    height: 100px;
  }
}
.service_item_image._01 {
  background: url(../image/estate/estate10.png) no-repeat bottom center/50%;
}
.service_item_image._02 {
  background: url(../image/estate/estate06_1.png) no-repeat bottom center/65%;
  margin-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_item_image._02 {
    margin-top: 10px;
  }
}
.service_item_image._03 {
  background: url(../image/estate/estate09.png) no-repeat bottom center/50%;
  margin-top: 10px;
}
.service_item_image._04 {
  background: url(../image/estate/estate05_1.png) no-repeat bottom center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_item_image._04 {
    margin-top: 30px;
  }
}
.service_item_image._05 {
  background: url(../image/estate/estate04_1.png) no-repeat bottom center/contain;
}
.service_item_image._06 {
  background: url(../image/estate/estate07_1.png) no-repeat bottom center/contain;
}

.service_item_title {
  margin-top: 20px;
  font-size: 26px;
  color: #050096;
}
@media screen and (max-width: 767px) {
  .service_item_title {
    font-size: 16px;
    line-height: 1.3em;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_item_title {
    margin-top: 10px;
    line-height: 1.3em;
  }
}

.service_item_title-sub {
  position: absolute;
  top: -50px;
  font-size: 25px;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service_item_title-sub {
    font-size: 16px;
    top: -35px;
  }
}
.service_item_title-sub::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -20px;
  width: 250px;
  height: 150px;
  background-image: url(../image/hukidasi.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service_item_title-sub::before {
    width: 160px;
    top: -55px;
  }
}

.title-rotated {
  transform: rotate(-9deg);
  display: inline-block;
}

.service_area_move_area {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .service_area_move_area {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service_area_move_area {
    margin-top: 80px;
  }
}

.service_area_move_text {
  color: #fff;
  font-size: 120px;
  font-weight: 700;
  white-space: nowrap;
  animation: flowing 10s linear infinite; /*アニメーション*/
  transform: translateX(100%);
}
@media screen and (max-width: 767px) {
  .service_area_move_text {
    font-size: 60px;
    animation: flowingSp 5s linear infinite;
  }
}
.service_area_move_text span {
  color: #fc9fa5;
}

@keyframes flowing {
  100% {
    transform: translateX(-200%); /*終了の位置*/
  }
}
@keyframes flowingSp {
  100% {
    transform: translateX(-350%); /*終了の位置*/
  }
}
/*=============================================================================
# security-area
==============================================================================*/
.security {
  margin-bottom: 80px;
}

.security_inner {
  text-align: center;
}

.security-image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .security-image {
    height: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-image {
    height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .security-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.security-image-title {
  position: absolute;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .security-image-title {
    top: 50px;
    font-size: 22px;
    line-height: 1.5em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-image-title {
    top: 50px;
    line-height: 1.5em;
  }
}

.security-top_text {
  margin-top: -20px;
  background-color: #010319;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .security-top_text {
    margin-top: 0;
  }
}
.security-top_text::after {
  content: "";
  width: 800px;
  height: 200px;
  background-color: #010319;
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .security-top_text::after {
    width: 350px;
    top: -8%;
  }
}

.security-title {
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .security-title {
    font-size: 20px;
    padding-top: 30px;
  }
}

.security-text {
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .security-text {
    padding: 0 10px;
    line-height: 1.3em;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-text {
    line-height: 1.5em;
  }
}

.security_contact-button {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .security_contact-button {
    margin-top: 40px;
  }
}
.security_contact-button a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 30px 50px;
  font-size: 25px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  /* 擬似要素で光のエフェクト */
}
.security_contact-button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 初期位置を左端外に */
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.9) 55%, rgba(255, 255, 255, 0) 70%);
  transform: skewX(-25deg); /* 斜めに傾ける */
  animation: shine 3s infinite; /* 光のアニメーション */
}
.security_contact-button p {
  margin-top: 50px;
  color: #fff;
  padding-bottom: 60px;
}

@keyframes shine {
  0% {
    left: -100%; /* 左端からスタート */
  }
  100% {
    left: 110%; /* 右端に抜ける */
  }
}
.security_sleep-image {
  max-width: 300px;
  width: 100%;
  height: 300px;
  position: absolute;
  top: -50%;
  right: 5%;
}
@media screen and (max-width: 767px) {
  .security_sleep-image {
    max-width: 100px;
    height: 100px;
    top: -25%;
    left: 2%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security_sleep-image {
    max-width: 200px;
    height: 200px;
    top: -30%;
  }
}
.security_sleep-image img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.security_sleep-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 56, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.security_sleep-text {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .security_sleep-text {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security_sleep-text {
    line-height: 1.5em;
  }
}

.security-item_introduction {
  height: 1000px;
}
@media screen and (max-width: 767px) {
  .security-item_introduction {
    height: 1200px;
  }
}

.security-items {
  position: relative;
}

.security-item_image-main {
  max-width: 400px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(10deg);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .security-item_image-main {
    max-width: 300px;
    top: -20px;
    left: 60%;
  }
}

.security-item {
  text-align: left;
  z-index: 10;
  position: absolute;
}
.security-item::before {
  content: "";
  position: absolute; /* 擬似要素自身にabsoluteを指定 */
  top: 10%;
  left: -5%;
  width: 110%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.security-item._01 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .security-item._01 {
    left: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._01 {
    left: 2%;
  }
}
.security-item._02 {
  top: 320px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .security-item._02 {
    top: 260px;
    left: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._02 {
    left: 2%;
  }
}
.security-item._03 {
  top: 640px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .security-item._03 {
    top: 550px;
    left: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._03 {
    left: 2%;
  }
}
.security-item._04 {
  top: 640px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .security-item._04 {
    top: 880px;
    left: 4%;
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._04 {
    top: 800px;
    z-index: 100;
  }
}
.security-item._05 {
  top: 640px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .security-item._05 {
    top: 720px;
    right: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._05 {
    right: 2%;
  }
}
.security-item._06 {
  top: 320px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .security-item._06 {
    top: 420px;
    right: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._06 {
    right: 2%;
  }
}
.security-item._07 {
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .security-item._07 {
    top: 100px;
    right: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-item._07 {
    right: 2%;
  }
}

.security-item_title {
  border: 1px solid #000;
  display: inline-block;
  padding: 15px 30px;
  color: #000;
  background-color: #D9D9D9;
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .security-item_title {
    font-size: 16px;
    padding: 10px 15px;
  }
}

.security-item_lead {
  color: #000;
  margin-top: 15px;
  max-width: 350px;
  width: 100%;
  line-height: 1.3em;
}
@media screen and (max-width: 767px) {
  .security-item_lead {
    font-size: 14px;
    max-width: 160px;
  }
}

.security-item_image {
  max-width: 250px;
  width: 100%;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .security-item_image {
    max-width: 160px;
  }
}

.security-last-text {
  margin-top: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .security-last-text {
    margin-top: 200px;
  }
}

.security-last-text_up {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .security-last-text_up {
    font-size: 18px;
  }
}

.security-last-text_down {
  margin-top: 40px;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .security-last-text_down {
    font-size: 22px;
  }
}

/*=============================================================================
共通のスタイル
==============================================================================*/
.util_title {
  font-size: 32px;
  color: #002A5B;
  display: inline-block;
  padding: 20px 30px;
  border: 1px solid #002A5B;
  position: relative;
}
.util_title::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #39BCDD;
  top: 8px;
  left: 8px;
}

.contact_area-wrap {
  padding-left: 10px;
  padding-right: 10px;
}

.contact_area {
  margin: 40px auto 0;
  background-color: #226ED2;
  max-width: 800px;
  width: 100%;
  padding-bottom: 50px;
  position: relative;
  text-align: center;
}
.contact_area::after {
  position: absolute;
  content: "";
  top: 10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background-color: #A7CDFF;
  z-index: -1;
}

.contact_title {
  padding-top: 40px;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contact_title {
    font-size: 22px;
  }
}

.contact_lead {
  margin-top: 30px;
  color: #fff;
}

.contact_link-items {
  margin-top: 30px;
}

.contact_link {
  max-width: 220px;
  width: 100%;
  background-color: #fff;
  display: inline-block;
  height: 100px;
  vertical-align: top;
  text-decoration: none;
  color: #002A5B;
  position: relative;
}
.contact_link:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .contact_link:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}
.contact_link._mail::after {
  position: absolute;
  content: "";
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: url(../image/contact_mail.png) no-repeat center center/contain;
}
.contact_link._line::after {
  position: absolute;
  content: "";
  top: 30px;
  left: 15%;
  width: 70px;
  height: 70px;
  background: url(../image/contact_line.png) no-repeat center center/80%;
}
.contact_link._line::before {
  position: absolute;
  content: "";
  top: 28px;
  right: 15%;
  width: 70px;
  height: 70px;
  background: url(../image/line_qr.png) no-repeat center center/80%;
}
.contact_link span {
  margin-top: 10px;
  display: inline-block;
}

.contact_link-tel {
  padding-top: 20px;
  display: inline-block;
  font-size: 20px;
}

/*=============================================================================
# architecture-doctor
==============================================================================*/
.architecture-doctor {
  background: url(../image/doctor-back-large.png) no-repeat center center/cover;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .architecture-doctor {
    margin-top: 80px;
  }
}

.architecture-doctor_contents {
  max-width: 1200px;
  width: 100%;
  height: 900px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .architecture-doctor_contents {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    height: 750px;
  }
}

.architecture-doctor_title {
  margin-top: 60px;
  color: #050096;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.15em;
  padding: 20px 30px;
  border: 3px solid #050096;
  display: inline-block;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .architecture-doctor_title {
    font-size: 35px;
    padding: 10px 15px 15px 15px;
  }
}

.architecture-doctor_text-area {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .architecture-doctor_text-area {
    padding: 10px;
  }
}

.architecture-doctor_text-title {
  font-size: 35px;
  color: #1f1f1f;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .architecture-doctor_text-title {
    font-size: 18px;
    margin-top: 20px;
  }
}

.architecture-doctor_text {
  font-size: 30px;
  color: #1f1f1f;
  margin-top: 25px;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .architecture-doctor_text {
    font-size: 18px;
    text-align: left;
  }
}

.doctor-merit_contents {
  max-width: 600px;
  width: 100%;
  margin: 100px auto 0;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  border: 3px solid #050096;
}
@media screen and (max-width: 767px) {
  .doctor-merit_contents {
    margin-top: 60px;
  }
}

.doctor-merit_title {
  font-size: 38px;
  background-color: #050096;
  color: #fff;
  display: inline-block;
  padding: 20px;
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .doctor-merit_title {
    font-size: 25px;
  }
}

.doctor-merit_items {
  text-align: left;
  padding: 5px 25px 35px;
}
@media screen and (max-width: 767px) {
  .doctor-merit_items {
    padding: 5px 5px 20px;
  }
}

.doctor-merit_item {
  font-size: 30px;
  color: #1F1D6B;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .doctor-merit_item {
    font-size: 18px;
  }
}

.to-doctor_contact {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .to-doctor_contact {
    margin-top: 30px;
  }
}

.to-doctor_contact-text {
  font-size: 30px;
  color: #1F1D6B;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .to-doctor_contact-text {
    font-size: 20px;
    line-height: 1.3em;
    padding-bottom: 50px;
  }
}
.to-doctor_contact-text::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background: url(../image/Polygon2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .to-doctor_contact-text::after {
    width: 40%;
  }
}

/*=============================================================================
# footer
==============================================================================*/
footer {
  min-height: 380px;
  background: url(../image/footer_image.png) no-repeat bottom center/contain;
}
@media screen and (max-width: 767px) {
  footer {
    min-height: 300px;
    background-position: bottom 20px center;
  }
}

.footer_b_image {
  position: relative;
  z-index: -2;
}
.footer_b_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 440px;
  background: linear-gradient(180deg, #fff, #13AE67);
}
@media screen and (max-width: 767px) {
  .footer_b_image::after {
    height: 360px;
  }
}

.footer_contents {
  text-align: center;
  margin-top: 80px;
  height: 380px;
}
@media screen and (max-width: 767px) {
  .footer_contents {
    height: 300px;
  }
}

.footer_logo_image {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}

.footer_logo_text {
  font-size: 26px;
  margin-top: 10px;
  color: #040159;
}

.footer_logo_address {
  font-size: 20px;
  margin-top: 20px;
  color: #040159;
}
@media screen and (max-width: 767px) {
  .footer_logo_address {
    font-size: 16px;
  }
}

.copy-right {
  font-size: 16px;
  text-align: center;
  margin-top: auto;
  color: #040159;
  margin-bottom: 5px;
}

.to-top {
  display: none;
}/*# sourceMappingURL=style.css.map */