@charset "UTF-8";
body.open {
  overflow: hidden;
}

.root_hernia {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  min-width: auto;
  box-sizing: border-box;
  padding-top: 0;
  letter-spacing: 0.12em;
  color: #1b2e40;
}
.root_hernia a {
  text-decoration: none;
  cursor: pointer;
}
.root_hernia .blue_text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #377bb5;
}
.root_hernia h2 {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.root_hernia h2 .en {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  color: #1e74ba;
}
.root_hernia h2 .ja {
  font-weight: 400;
  font-size: 30px;
  color: #1b2e40;
}
@media screen and (max-width: 999px) {
  .root_hernia h2 .ja {
    font-size: clamp(22px, 2.8vw, 30px);
  }
}
.root_hernia img {
  display: block;
  outline: none;
  border: none;
}
.root_hernia .hernia_container {
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .root_hernia .hernia_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .root_hernia .hernia_container._sm {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.root_hernia .btn {
  background-color: #ffffff;
  border-radius: 25px;
  max-width: 180px;
  width: 100%;
  min-height: 50px;
  display: inline-block;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 18px;
  column-gap: 18px;
  color: #1b2e40;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .root_hernia .btn {
    min-height: 40px;
  }
}
.root_hernia .btn::before {
  content: "";
  display: inline-block;
  background: url("/hernia/img/icon/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 10px;
}
.root_hernia .btn:hover {
  opacity: 0.7;
}
.root_hernia .annotation {
  padding-left: 1.1rem;
  position: relative;
}
.root_hernia .annotation::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.header {
  position: fixed;
  z-index: 5000;
  top: 20px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: transparent;
  transition: top 0.2s;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 1159px) {
  .header {
    top: 15px;
    position: fixed;
    transition: none;
  }
}
@media screen and (max-width: 899px) {
  .header {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .header {
    top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 40px;
  box-sizing: border-box;
  transition: background-color 0.2s;
  background-color: #f9fafb;
  position: relative;
}
@media screen and (max-width: 1159px) {
  .header__inner {
    background-color: transparent;
  }
}
.header__inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 8px 0 0 8px;
  border-radius: 40px;
  mix-blend-mode: multiply;
  filter: blur(10px);
  background-color: rgba(229, 238, 242, 0.8);
  z-index: -1;
}
.header .logo_wrap {
  padding-left: clamp(20px, 2.8vw, 37px);
  box-sizing: border-box;
  width: 30.5%;
  max-width: 380px;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
@media screen and (max-width: 1249px) {
  .header .logo_wrap {
    max-width: 350px;
  }
  .header .logo_wrap .logo img {
    width: 289px;
    height: auto;
  }
}
@media screen and (min-width: 1060px) and (max-width: 1199px) {
  .header .logo_wrap {
    max-width: 330px;
  }
  .header .logo_wrap .logo img {
    width: 272px;
    height: auto;
  }
}
@media screen and (max-width: 1159px) {
  .header .logo_wrap {
    padding-left: 0;
    background-color: transparent;
  }
}
@media screen and (max-width: 575px) {
  .header .logo_wrap .logo img {
    width: 294px;
    height: auto;
  }
}
.header .menu_wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(20px, 2.5vw, 30px);
  column-gap: clamp(20px, 2.5vw, 30px);
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-right: clamp(20px, 2.8vw, 40px);
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .header .menu_wrap {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (max-width: 1159px) {
  .header .menu_wrap._pc {
    display: none;
  }
}
.header .menu_wrap .pagelink_list {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(15px, 1.6vw, 20px);
  column-gap: clamp(15px, 1.6vw, 20px);
}
@media screen and (max-width: 1199px) {
  .header .menu_wrap .pagelink_list {
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
}
.header .menu_wrap .pagelink_list > li a {
  letter-spacing: 0.1em;
  color: #283b50;
  font-size: 15px;
  transition: opacity 0.2s;
}
@media screen and (max-width: 1399px) {
  .header .menu_wrap .pagelink_list > li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1059px) {
  .header .menu_wrap .pagelink_list > li a {
    font-size: 14px;
  }
}
.header .menu_wrap .pagelink_list > li a:hover {
  opacity: 0.8;
}
.header .sp_menu_btn {
  cursor: pointer;
  width: 22px;
  height: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1160px) {
  .header .sp_menu_btn {
    display: none;
  }
}
.header .sp_menu_btn .line {
  width: 100%;
  height: 1px;
  background-color: #1e74ba;
  position: relative;
}
.header .sp_menu_btn .line::before {
  display: block;
  content: "";
  width: 22px;
  height: 1px;
  background-color: #1e74ba;
  position: absolute;
  top: -7px;
  left: 0;
}
.header .sp_menu_btn .line::after {
  display: block;
  content: "";
  width: 22px;
  height: 1px;
  background-color: #1e74ba;
  position: absolute;
  left: 0;
  bottom: -7px;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9990;
  display: none;
  cursor: pointer;
}
.header .overlay._show {
  display: block;
}
.header .sp_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: rgba(7, 54, 93, 0.9);
  color: #fff;
  z-index: 9999;
  transition: right 0.2s ease;
  padding: 38px clamp(20px, 5vw, 30px);
  box-sizing: border-box;
  overflow-y: auto;
}
.header .sp_menu .close_btn {
  width: 32px;
  height: 17px;
  margin: 0 -8px 25px auto;
  cursor: pointer;
  position: relative;
}
.header .sp_menu .line::before, .header .sp_menu .line::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  background-color: #dae7ee;
}
.header .sp_menu .line::before {
  transform: rotate(35deg);
  inset: 0;
  top: 0;
  margin: auto;
  width: 28px;
}
.header .sp_menu .line::after {
  width: 28px;
  transform: rotate(-35deg);
  inset: 0;
  top: 0;
  margin: auto;
}
.header .sp_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .sp_menu ul > li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.header .sp_menu ul > li a {
  color: #dae7ee;
  width: 100%;
  font-size: 17px;
  text-decoration: none;
  min-height: 62px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  box-sizing: border-box;
  padding: 0.8rem 15px 0.8rem 3px;
  border-bottom: 1px solid rgba(218, 231, 238, 0.3);
  position: relative;
  transition: opacity 0.2s;
}
.header .sp_menu ul > li a::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow_3.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 11px;
  height: 8px;
}
.header .sp_menu ul > li a:hover {
  opacity: 0.8;
}
.header .sp_menu._show {
  right: 0;
}

.header-fixed {
  border-bottom: none !important;
}

.container {
  height: 200px;
  width: 100%;
}

.hero_area {
  position: relative;
  padding-bottom: 170px;
}
@media screen and (max-width: 1159px) {
  .hero_area {
    padding-top: 170px;
  }
}
@media screen and (max-width: 599px) {
  .hero_area {
    padding-top: 300px;
    padding-bottom: 70px;
    background-color: #f3f6f8;
    background: linear-gradient(180deg, #f9fafb 0%, #f2f7fd 100%);
  }
}
@media screen and (max-width: 475px) {
  .hero_area {
    padding-bottom: 20px;
  }
}
.hero_area .bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
  min-height: 1100px;
}
@media screen and (max-width: 999px) {
  .hero_area .bg {
    min-height: 900px;
    -o-object-position: 55% center;
    object-position: 55% center;
  }
}
@media screen and (max-width: 599px) {
  .hero_area .bg {
    min-height: 750px;
    max-height: 900px;
    -o-object-position: 60% -40px;
    object-position: 60% -40px;
  }
}
@media screen and (max-width: 475px) {
  .hero_area .bg {
    -o-object-position: 65% -60px;
    object-position: 65% -60px;
  }
}
.hero_area__content {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 999px) {
  .hero_area__content {
    justify-content: flex-start;
    min-height: 250px;
  }
}
.hero_area__content .title_box {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin-bottom: 45px;
}
@media screen and (max-width: 999px) {
  .hero_area__content .title_box {
    row-gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .hero_area__content .title_box {
    row-gap: 2px;
  }
}
@media screen and (max-width: 475px) {
  .hero_area__content .title_box {
    margin-bottom: 35px;
  }
}
.hero_area__content .title_box .title > .inner,
.hero_area__content .title_box .title .blue_text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  height: 60px;
  display: inline-block;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0.16em;
  color: #283b50;
}
@media screen and (max-width: 999px) {
  .hero_area__content .title_box .title > .inner,
  .hero_area__content .title_box .title .blue_text {
    height: 50px;
    font-size: 38px;
    line-height: 38px;
  }
}
@media screen and (max-width: 599px) {
  .hero_area__content .title_box .title > .inner,
  .hero_area__content .title_box .title .blue_text {
    height: 43px;
    font-size: 30px;
    line-height: 30px;
  }
}
.hero_area__content .title_box .title > .inner {
  background-color: #fff;
  padding: 5px 10px 0;
}
.hero_area__content .title_box .title .blue_text {
  color: #377bb5;
  letter-spacing: 0.08em;
}
.hero_area__content .text {
  position: relative;
  padding-left: 19px;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: #283b50;
}
@media screen and (max-width: 999px) {
  .hero_area__content .text {
    margin-bottom: 80px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .hero_area__content .text {
    margin-bottom: 38px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
  }
}
@media screen and (max-width: 475px) {
  .hero_area__content .text {
    margin-bottom: 20px;
  }
}
.hero_area__content .text:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: calc(100% - 10px);
  background-color: #126ab1;
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .hero_area__content .text:before {
    width: 1px;
  }
}
@media screen and (min-width: 1000px) {
  .hero_area .menu_wrap._sp {
    display: none;
  }
}
.hero_area .menu_wrap .pagelink_list {
  display: flex;
  flex-direction: column;
  -moz-column-gap: clamp(20px, 1.8vw, 35px);
  column-gap: clamp(20px, 1.8vw, 35px);
  max-width: 450px;
}
@media screen and (max-width: 599px) {
  .hero_area .menu_wrap .pagelink_list {
    max-width: 280px;
  }
}
.hero_area .menu_wrap .pagelink_list > li a {
  display: flex;
  align-items: center;
  color: #283b50;
  font-size: 18px;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  box-sizing: border-box;
  border-bottom: 1px solid #d1dfe9;
  min-height: 60px;
}
.hero_area .menu_wrap .pagelink_list > li a::before {
  content: "";
  display: inline-block;
  background: url("/hernia/img/icon/arrow_2.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 10px;
  height: 14px;
  transform: rotate(90deg);
  margin-right: 10px;
  margin-bottom: -5px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(14%) saturate(1699%) hue-rotate(171deg) brightness(89%) contrast(86%);
  position: relative;
  top: 0;
  transition: 0.2s top;
}
.hero_area .menu_wrap .pagelink_list > li a:hover {
  opacity: 0.8;
}
.hero_area .menu_wrap .pagelink_list > li a:hover::before {
  top: 5px;
}
@media screen and (max-width: 599px) {
  .hero_area .menu_wrap .pagelink_list > li a {
    font-size: 16px;
  }
}

/**************************
各セクジョン
*/
.sec_01 {
  position: relative;
  width: 100%;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_01 {
    padding-bottom: 3.2rem;
  }
}
.sec_01:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #f2f6f9;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.sec_01 .about_area_01 {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
  background-color: #f9fafb;
  box-shadow: 1px 5px 10px 8px rgba(229, 238, 242, 0.8);
  border-radius: 10px;
  min-height: 400px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .sec_01 .about_area_01 {
    grid-template-columns: 1fr 220px 1fr;
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
  }
}
.sec_01 .about_area_01::before {
  content: "";
  display: inline-block;
  width: 50%;
  height: 100%;
  background-color: #f3f6f8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01::before {
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 575px) {
  .sec_01 .about_area_01::before {
    height: 46%;
  }
}
.sec_01 .about_area_01__left, .sec_01 .about_area_01__right {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__left, .sec_01 .about_area_01__right {
    padding-left: 30px;
    padding-right: 30px;
    min-height: 160px;
  }
}
.sec_01 .about_area_01__left {
  padding-top: 15px;
  padding-left: clamp(50px, 7vw, 100px);
}
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .sec_01 .about_area_01__left {
    padding-top: 0;
    padding-left: clamp(20px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__left {
    padding-top: 0;
    padding-left: 30px;
  }
}
@media screen and (max-width: 475px) {
  .sec_01 .about_area_01__left {
    margin-bottom: 10px;
  }
}
.sec_01 .about_area_01__left h2 {
  margin-bottom: 24px;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__left h2 {
    margin-bottom: 15px;
  }
}
.sec_01 .about_area_01__left h2 .en {
  margin-bottom: 0.2rem;
}
.sec_01 .about_area_01__left .text {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.75;
  color: #06224b;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__left .text br._sp_none {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .sec_01 .about_area_01__left .text br._xs_none {
    display: none;
  }
}
.sec_01 .about_area_01__right {
  padding-right: clamp(30px, 4vw, 60px);
  padding-left: clamp(25px, 2vw, 32px);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (min-width: 1000px) {
  .sec_01 .about_area_01__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__right {
    padding-top: 20px;
  }
}
.sec_01 .about_area_01__right .text {
  color: #06224b;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_01__right .text {
    font-size: 15px;
  }
  .sec_01 .about_area_01__right .text br._sp_none {
    display: none;
  }
}
.sec_01 .about_area_01__center {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .sec_01 .about_area_01__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.sec_01 .about_area_01__center .img_wrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  box-shadow: 4px 4px 8px #e5eef2;
}
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .sec_01 .about_area_01__center .img_wrap {
    width: 200px;
    height: 200px;
  }
}
.sec_01 .about_area_01__center .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .sec_01 .about_area_01__center .img_wrap img {
    width: 175px;
    height: auto;
  }
}
.sec_01 .about_area_02 {
  display: grid;
  grid-template-columns: clamp(290px, 35vw, 450px) 1fr 1fr;
  margin-bottom: 90px;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_02 {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_02 {
    margin-bottom: 5rem;
  }
}
.sec_01 .about_area_02__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 28px;
  column-gap: 28px;
  padding-right: 10px;
  box-sizing: border-box;
}
.sec_01 .about_area_02__head .text {
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_02__head {
    width: 100%;
    margin-bottom: 30px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-left: -2px;
  }
  .sec_01 .about_area_02__head .icon {
    width: 34px;
    height: 34px;
  }
  .sec_01 .about_area_02__head .text {
    font-size: 20px;
  }
}
.sec_01 .about_area_02__item {
  position: relative;
  padding-left: 29px;
  padding-right: clamp(30px, 4.5vw, 55px);
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_02__item {
    width: 50%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 475px) {
  .sec_01 .about_area_02__item {
    width: 100%;
  }
  .sec_01 .about_area_02__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.sec_01 .about_area_02__item::before, .sec_01 .about_area_02__item::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: calc(100% - 2px);
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #c5daeb;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_02__item::before, .sec_01 .about_area_02__item::after {
    width: 1px;
  }
}
.sec_01 .about_area_02__item:after {
  height: 30px;
  background-color: #126ab1;
  z-index: 5;
}
.sec_01 .about_area_02__item .title {
  color: #1b74b8;
  font-size: 24px;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 1199px) {
  .sec_01 .about_area_02__item .title {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_02__item .title {
    font-size: 19px;
  }
}
.sec_01 .about_area_02__item .text {
  color: #06224b;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_02__item .text {
    font-size: 15px;
  }
}
.sec_01 .about_area_03 {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.sec_01 .about_area_03 .bg_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03 .bg_text {
    width: 1012px;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_01 .about_area_03 .bg_text {
    width: 807px;
  }
}
@media screen and (max-width: 420px) {
  .sec_01 .about_area_03 .bg_text {
    width: 679px;
  }
}
.sec_01 .about_area_03__left, .sec_01 .about_area_03__center, .sec_01 .about_area_03__right {
  position: relative;
}
.sec_01 .about_area_03__left {
  margin-top: -1.5rem;
  width: 34.5%;
  max-width: 415px;
  padding-right: clamp(30px, 3vw, 50px);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__left {
    width: 100%;
    max-width: none;
    margin-bottom: 15px;
  }
}
.sec_01 .about_area_03__left .title {
  color: #1b74b8;
  font-size: 20px;
  line-height: 1.4;
  margin-left: -7px;
  margin-bottom: 2.1rem;
  display: inline-block;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_03__left .title {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__left .title {
    margin-bottom: 1rem;
  }
}
.sec_01 .about_area_03__left .dr_wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  row-gap: 4px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__left .dr_wrap {
    margin-bottom: 0.5rem;
  }
}
.sec_01 .about_area_03__left .dr_wrap .position {
  font-size: 18px;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_03__left .dr_wrap .position {
    font-size: 16px;
    margin-bottom: 3px;
  }
}
.sec_01 .about_area_03__left .dr_wrap .name {
  font-size: 40px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_03__left .dr_wrap .name {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .sec_01 .about_area_03__left .dr_wrap .name {
    font-size: 26px;
  }
}
.sec_01 .about_area_03__left .specialty {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.sec_01 .about_area_03__left .specialty .label {
  color: #ffffff;
  font-size: 15px;
  background-color: #1b74b8;
  border-radius: 3px;
  display: inline-block;
  width: 40px;
  height: 20px;
  align-content: center;
  padding: 1px;
  box-sizing: border-box;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__left .specialty .label {
    line-height: 1.2;
  }
}
@media screen and (max-width: 999px) {
  .sec_01 .about_area_03__left .specialty .text {
    font-size: 15px;
  }
}
.sec_01 .about_area_03__center {
  flex-shrink: 0;
  width: 380px;
}
@media screen and (max-width: 1199px) {
  .sec_01 .about_area_03__center {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__center {
    margin-bottom: 15px;
  }
}
.sec_01 .about_area_03__center .img_wrap img {
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .sec_01 .about_area_03__center .img_wrap img {
    width: 280px;
    height: auto;
  }
}
.sec_01 .about_area_03__right {
  width: 33.75%;
  max-width: 415px;
  padding-left: clamp(30px, 3.5vw, 50px);
  box-sizing: border-box;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__right {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-left: 0;
  }
}
.sec_01 .about_area_03__right .text {
  font-size: 27px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
@media screen and (max-width: 1259px) {
  .sec_01 .about_area_03__right .text {
    font-size: 26px;
  }
}
@media screen and (max-width: 1159px) {
  .sec_01 .about_area_03__right .text {
    font-size: 24px;
    line-height: 1.7;
  }
  .sec_01 .about_area_03__right .text ._sp_none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__right .text {
    margin-bottom: 1.5rem;
    font-size: 20px;
  }
}
.sec_01 .about_area_03__right .btn_wrap {
  min-height: 50px;
}
@media screen and (max-width: 767px) {
  .sec_01 .about_area_03__right .btn_wrap {
    min-height: auto;
  }
}
.sec_01 .about_area_03__right .btn_wrap .btn {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
  .sec_02 {
    background-color: #e2eaf0;
    padding-bottom: 3.2rem;
  }
}
.sec_02 .disease_area {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area {
    display: block;
  }
}
.sec_02 .disease_area__left {
  padding-top: 40px;
  padding-bottom: 70px;
  background-color: #e2eaf0;
  position: relative;
  border-right: 1px solid #c2d1de;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area__left {
    padding-top: 3.2rem;
    padding-bottom: 40px;
  }
}
.sec_02 .disease_area__left::before {
  content: "";
  display: inline-block;
  margin: 0 calc(50% - 50vw);
  width: 50vw;
  height: 100%;
  background-color: #e2eaf0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area__left {
    border-right: none;
  }
  .sec_02 .disease_area__left::before {
    content: none;
    display: none;
  }
}
.sec_02 .disease_area__left h2 {
  position: relative;
  margin-bottom: 20px;
}
.sec_02 .disease_area__right {
  background-color: #ebf0f5;
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area__right {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.sec_02 .disease_area__right::before {
  content: "";
  display: inline-block;
  margin: 0 calc(50% - 50vw);
  width: 50vw;
  height: 100%;
  background-color: #ebf0f5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sec_02 .disease_area .tab_button {
  position: relative;
}
.sec_02 .disease_area .tab_button button {
  outline: none;
  background-color: transparent;
  border: none;
}
.sec_02 .disease_area .tab_list {
  position: relative;
}
.sec_02 .disease_area .tab_list .tab_item {
  min-height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-right: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .sec_02 .disease_area .tab_list .tab_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_list .tab_item {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_list .tab_item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sec_02 .disease_area .tab_list .tab_item::before, .sec_02 .disease_area .tab_list .tab_item::after {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.1s;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_list .tab_item::before, .sec_02 .disease_area .tab_list .tab_item::after {
    content: none;
    display: none;
  }
}
.sec_02 .disease_area .tab_list .tab_item::before {
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 27px solid #c2d1de;
  border-left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec_02 .disease_area .tab_list .tab_item::after {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 26px solid #ebf0f5;
  border-left: 0;
  z-index: 2;
}
.sec_02 .disease_area .tab_list .tab_item:not(:last-of-type) {
  border-bottom: 1px solid #d0d8df;
}
.sec_02 .disease_area .tab_list .tab_item:hover {
  opacity: 0.8;
}
.sec_02 .disease_area .tab_list .tab_item:hover .type:after {
  transform: scaleX(1) translateX(-50%);
  opacity: 1;
}
.sec_02 .disease_area .tab_list .tab_item.active::before, .sec_02 .disease_area .tab_list .tab_item.active::after {
  content: "";
  display: inline-block;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_list .tab_item.active::before, .sec_02 .disease_area .tab_list .tab_item.active::after {
    content: none;
    display: none;
  }
}
.sec_02 .disease_area .tab_list .tab_item.active::before {
  right: -61px;
}
.sec_02 .disease_area .tab_list .tab_item.active::after {
  right: -62px;
}
.sec_02 .disease_area .tab_list .tab_item.active .shape {
  background-image: conic-gradient(#1e74ba 360deg, #e2eaf0 90deg);
  clip-path: circle();
  display: grid;
  place-items: center;
}
.sec_02 .disease_area .tab_list .tab_item.active .shape::before {
  content: "";
  width: 48px;
  height: 48px;
  background-color: #e2eaf0;
  clip-path: circle();
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_list .tab_item.active .shape::before {
    width: 33px;
    height: 33px;
  }
}
.sec_02 .disease_area .tab_list .tab_item:not(.active) .shape {
  background-image: none !important;
}
.sec_02 .disease_area .tab_list .tab_item .head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 9px;
  column-gap: 9px;
  width: 270px;
}
@media screen and (max-width: 1099px) {
  .sec_02 .disease_area .tab_list .tab_item .head {
    margin-bottom: 5px;
  }
}
.sec_02 .disease_area .tab_list .tab_item .shape {
  width: 50px;
  height: 50px;
  position: relative;
  background-color: transparent;
}
@media screen and (max-width: 475px) {
  .sec_02 .disease_area .tab_list .tab_item .shape {
    transform: translateY(3px);
  }
}
.sec_02 .disease_area .tab_list .tab_item .shape::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_list .tab_item .shape {
    width: 36px;
    height: 36px;
  }
}
.sec_02 .disease_area .tab_list .tab_item .type {
  font-size: 20px;
}
.sec_02 .disease_area .tab_list .tab_item .num {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  z-index: 20;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1e74ba;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_list .tab_item .num {
    font-size: 14px;
    top: 52%;
  }
}
.sec_02 .disease_area .tab_list .tab_item .type {
  margin-bottom: 2px;
  position: relative;
}
.sec_02 .disease_area .tab_list .tab_item .type:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #126ab1;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: scaleX(0) translateX(-50%);
  transition: transform 0.2s ease-in-out;
  transform-origin: left center;
  opacity: 0.5;
}
.sec_02 .disease_area .tab_list .tab_item .body {
  font-size: 15px;
  color: #06224b;
  letter-spacing: 0.08em;
  line-height: 1.7;
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_list .tab_item .body {
    padding-left: 2.9rem;
  }
}
.sec_02 .disease_area .tab_contents {
  position: relative;
}
.sec_02 .disease_area .tab_contents .tab_content {
  padding-left: clamp(40px, 5.5vw, 80px);
  padding-right: clamp(20px, 3.5vw, 60px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content {
    height: 0;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .close_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .sp_overlay > .inner {
    opacity: 0;
    transition: opacity 0.2s 0.1s;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .sp_overlay > .inner {
    transition: opacity 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open {
    height: auto;
  }
  .sec_02 .disease_area .tab_contents .tab_content.is-open .sp_overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .sec_02 .disease_area .tab_contents .tab_content.is-open .sp_overlay > .inner {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ebf0f5;
    width: calc(100% - 120px);
    max-height: calc(100% - 130px);
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px 2px rgba(27, 46, 64, 0.15);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .sp_overlay > .inner {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    pointer-events: all;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn {
    top: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::before, .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: #06224b;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::before, .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::after {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sec_02 .disease_area .tab_contents .tab_content.is-open .close_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.sec_02 .disease_area .tab_contents .tab_content .img_wrap {
  margin-bottom: 20px;
}
.sec_02 .disease_area .tab_contents .tab_content .img_wrap img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .img_wrap img {
    width: 260px;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .img_wrap img {
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .img_wrap {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .img_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap {
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head {
  font-size: 30px;
  color: #126ab1;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head rt {
  font-size: 11px;
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head:after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: #126ab1;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head:after {
    height: 2px;
  }
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_head:after {
    height: 1px;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_body > .text {
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_body > .text {
    margin-bottom: 2rem;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_body p:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .type_body p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 12px;
  column-gap: 12px;
  background-color: #e3ebf1;
  border-radius: 25px;
  min-height: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: clamp(15px, 2vw, 30px);
  padding-right: clamp(15px, 3vw, 40px);
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box {
    padding-top: 8px;
    padding-bottom: 10px;
    flex-direction: column;
    row-gap: 5px;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 9px;
  column-gap: 9px;
  line-height: 1.2;
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_head .icon {
  flex-shrink: 0;
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_head .text {
  display: inline-block;
  color: #126ab1;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_head .text {
    font-size: 15px;
  }
}
.sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_body {
  line-height: 1.2;
}
@media screen and (max-width: 575px) {
  .sec_02 .disease_area .tab_contents .tab_content .type_wrap .info_box .info_body {
    font-size: 15px;
  }
}

.sec_03 {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #e8eff4;
  background: linear-gradient(180deg, #e3e8ec 30%, #e8eff4 50%, #e8eff4 100%);
}
@media screen and (max-width: 767px) {
  .sec_03 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
@media screen and (max-width: 475px) {
  .sec_03 {
    padding-bottom: 0;
  }
}
.sec_03 .bg {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-height: 900px;
  max-height: 1600px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
@media screen and (max-width: 767px) {
  .sec_03 .bg {
    min-height: 600px;
    -o-object-position: center;
    object-position: center;
  }
}
.sec_03 .inguinal_area {
  position: relative;
}
.sec_03 .inguinal_area__01 {
  margin-bottom: 130px;
}
@media screen and (min-width: 1800px) {
  .sec_03 .inguinal_area__01 {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__01 {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__01 {
    margin-bottom: 3.2rem;
  }
}
.sec_03 .inguinal_area__01 h2 {
  margin-bottom: 2.3rem;
}
.sec_03 .inguinal_area__01 > .inner {
  display: grid;
  grid-template-columns: 1fr clamp(280px, 28vw, 385px) 1fr;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__01 > .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 830px;
    margin: 0 auto;
  }
}
.sec_03 .inguinal_area__01 .left .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__01 .left .title {
    font-size: 20px;
  }
}
.sec_03 .inguinal_area__01 .left .text {
  line-height: 1.75;
  font-size: 20px;
}
.sec_03 .inguinal_area__01 .left .text .blue_text {
  color: #1b74b8;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__01 .left .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__01 .left {
    margin-bottom: 20px;
  }
  .sec_03 .inguinal_area__01 .left ._sp_none {
    display: none;
  }
}
.sec_03 .inguinal_area__01 .center .img_wrap img {
  width: clamp(280px, 28vw, 385px);
  height: auto;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__01 .center {
    margin-bottom: 20px;
  }
}
.sec_03 .inguinal_area__01 .right {
  padding-left: clamp(20px, 5vw, 65px);
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (min-width: 1000px) and (max-width: 1059px) {
  .sec_03 .inguinal_area__01 .right {
    font-size: 15px;
  }
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__01 .right {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__01 .right {
    font-size: 15px;
  }
}
.sec_03 .inguinal_area__02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(40px, 5vw, 80px);
  column-gap: clamp(40px, 5vw, 80px);
  margin-bottom: 65px;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 {
    display: block;
  }
}
.sec_03 .inguinal_area__02 .inguinal_box:first-of-type .box_body {
  padding-left: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 .inguinal_box:first-of-type {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .inguinal_box:first-of-type .box_body {
    padding-left: 25px;
  }
}
.sec_03 .inguinal_area__02 .inguinal_box:nth-of-type(2) .box_head {
  margin-left: -20px;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 .inguinal_box:nth-of-type(2) .box_head {
    margin-left: 0;
  }
}
.sec_03 .inguinal_area__02 .box_head {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
  column-gap: 6px;
  margin-bottom: 8px;
}
.sec_03 .inguinal_area__02 .box_head .icon {
  flex-shrink: 0;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__02 .box_head .icon {
    width: 22px;
    height: auto;
  }
}
.sec_03 .inguinal_area__02 .box_head .title {
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__02 .box_head .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 .box_body {
    padding-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .box_body {
    padding-left: 25px;
  }
}
.sec_03 .inguinal_area__02 .box_body .row {
  display: flex;
  align-items: center;
  min-height: 120px;
  box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 .box_body .row {
    min-height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .box_body .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sec_03 .inguinal_area__02 .box_body .row:not(:last-of-type)::before, .sec_03 .inguinal_area__02 .box_body .row:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec_03 .inguinal_area__02 .box_body .row:not(:last-of-type)::before {
  width: clamp(160px, 17vw, 180px);
  background-color: #1b74b8;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .box_body .row:not(:last-of-type)::before {
    width: 220px;
  }
}
.sec_03 .inguinal_area__02 .box_body .row:not(:last-of-type)::after {
  width: 100%;
  background-color: #d3dbe2;
}
.sec_03 .inguinal_area__02 .box_body .row .title {
  flex-shrink: 0;
  font-weight: 500;
  flex-shrink: 0;
  color: #1b74b8;
  font-size: 18px;
  padding-left: 20px;
  box-sizing: border-box;
  width: clamp(160px, 17vw, 180px);
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__02 .box_body .row .title {
    padding-left: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .box_body .row .title {
    font-size: 17px;
    width: auto;
    margin-bottom: 0.3rem;
    padding-left: 0.5rem;
  }
  .sec_03 .inguinal_area__02 .box_body .row .title br {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__02 .box_body .row .title {
    font-size: 16px;
    padding-left: 0.5rem;
  }
}
.sec_03 .inguinal_area__02 .box_body .row .text {
  padding-left: clamp(20px, 4.5vw, 60px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__02 .box_body .row .text {
    padding-left: 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__02 .box_body .row .text {
    font-size: 15px;
    padding-left: 0.5rem;
  }
}
.sec_03 .inguinal_area__03 {
  margin-bottom: 50px;
}
.sec_03 .inguinal_area__03 .head {
  display: flex;
  align-items: center;
  -moz-column-gap: 17px;
  column-gap: 17px;
  margin-bottom: 28px;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__03 .head {
    margin-bottom: 20px;
  }
}
.sec_03 .inguinal_area__03 .head .icon {
  flex-shrink: 0;
}
.sec_03 .inguinal_area__03 .head .title {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__03 .head .title {
    font-size: 20px;
  }
}
.sec_03 .inguinal_area__03 .body {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #e0eaf0;
  min-height: 420px;
}
@media screen and (max-width: 699px) {
  .sec_03 .inguinal_area__03 .body {
    grid-template-columns: 1fr;
  }
}
.sec_03 .inguinal_area__03 .body .box {
  position: relative;
  padding: clamp(10px, 2vw, 30px) clamp(25px, 4vw, 50px);
}
@media screen and (max-width: 699px) {
  .sec_03 .inguinal_area__03 .body .box {
    padding: 20px;
  }
}
.sec_03 .inguinal_area__03 .body .box:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #d6dfe5;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 699px) {
  .sec_03 .inguinal_area__03 .body .box:not(:last-of-type):after {
    width: calc(100% - 20px);
    height: 1px;
    position: absolute;
    position: absolute;
    right: auto;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec_03 .inguinal_area__03 .body .box .icon_wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__03 .body .box .icon_wrap {
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 699px) {
  .sec_03 .inguinal_area__03 .body .box .icon_wrap {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__03 .body .box .icon_wrap {
    margin-bottom: -30px;
  }
}
.sec_03 .inguinal_area__03 .body .box .icon_wrap img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__03 .body .box .icon_wrap img {
    font-size: 15px;
    width: 80px;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__03 .body .box .icon_wrap img {
    width: 60px;
  }
}
.sec_03 .inguinal_area__03 .body .box .title {
  font-size: 24px;
  letter-spacing: 0.12em;
  color: #1b74b8;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__03 .body .box .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__03 .body .box .title {
    font-size: 19px;
  }
}
.sec_03 .inguinal_area__03 .body .box .text {
  line-height: 1.75;
  letter-spacing: 0.12em;
  color: rgba(27, 46, 64, 0.8);
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__03 .body .box .text {
    font-size: 15px;
  }
}
@media screen and (max-width: 475px) {
  .sec_03 .inguinal_area__04 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    position: relative;
  }
  .sec_03 .inguinal_area__04::before {
    content: "";
    display: inline-block;
    background-color: #e2eaef;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100;
    position: absolute;
    inset: 0;
  }
}
.sec_03 .inguinal_area__04 .head {
  display: flex;
  align-items: center;
  -moz-column-gap: 17px;
  column-gap: 17px;
  margin-bottom: 28px;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__04 .head {
    margin-bottom: 20px;
    position: relative;
  }
}
.sec_03 .inguinal_area__04 .head .icon {
  flex-shrink: 0;
}
.sec_03 .inguinal_area__04 .head .title {
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__04 .head .title {
    font-size: 20px;
  }
}
.sec_03 .inguinal_area__04 .body {
  width: 100%;
  max-width: 1120px;
  background-color: #e2eaef;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px);
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body {
    padding: 50px 15px;
  }
}
@media screen and (max-width: 475px) {
  .sec_03 .inguinal_area__04 .body {
    padding: 0 20px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.sec_03 .inguinal_area__04 .body .top,
.sec_03 .inguinal_area__04 .body .bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .top,
  .sec_03 .inguinal_area__04 .body .bottom {
    grid-template-columns: 1fr;
  }
}
.sec_03 .inguinal_area__04 .body .top {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #d1dfe9;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .top .left {
    min-height: 350px;
  }
}
.sec_03 .inguinal_area__04 .body .top .right .info {
  margin-top: 10px;
  margin-bottom: 30px;
}
.sec_03 .inguinal_area__04 .body .bottom .left {
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .bottom .left {
    min-height: 250px;
  }
}
.sec_03 .inguinal_area__04 .body .bottom .right > .text {
  letter-spacing: 0.08em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .bottom .right > .text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .left {
    margin-bottom: 20px;
  }
}
.sec_03 .inguinal_area__04 .body .left .img_wrap {
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap {
    max-width: 550px;
    margin: 0 auto;
  }
}
.sec_03 .inguinal_area__04 .body .left .img_wrap._01 {
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 5px 10px 8px rgba(229, 238, 242, 0.9);
}
.sec_03 .inguinal_area__04 .body .left .img_wrap._01 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sec_03 .inguinal_area__04 .body .left .img_wrap._02 {
  height: 100%;
}
.sec_03 .inguinal_area__04 .body .left .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sec_03 .inguinal_area__04 .body .left .img_wrap .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1d3b63;
  background-color: #fff;
  min-height: 40px;
  display: inline-block;
  box-sizing: border-box;
  font-size: 30px;
  line-height: 1.2;
  padding-left: 9px;
  padding-right: 9px;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap .title {
    min-height: 36px;
    min-width: 190px;
    font-size: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap .title {
    min-height: 26px;
    font-size: 20px;
    min-width: 150px;
    text-align: center;
  }
}
.sec_03 .inguinal_area__04 .body .left .img_wrap .text {
  position: absolute;
  bottom: clamp(15px, 3vw, 50px);
  left: 50%;
  max-width: 340px;
  width: 100%;
  transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
  z-index: 10;
  color: #1d3b63;
  letter-spacing: 0.08em;
  max-height: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap .text {
    font-size: 15px;
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap .text {
    max-width: 450px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__04 .body .left .img_wrap .text {
    font-size: 14px;
  }
}
.sec_03 .inguinal_area__04 .body .right {
  padding-left: clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .right {
    padding-left: 0;
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
  }
}
.sec_03 .inguinal_area__04 .body .right .img_wrap {
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 23/20;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .right .img_wrap {
    max-width: 550px;
  }
}
.sec_03 .inguinal_area__04 .body .right .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sec_03 .inguinal_area__04 .body .right .text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .right .text {
    font-size: 15px;
  }
}
.sec_03 .inguinal_area__04 .body .info {
  position: relative;
  padding-left: 20px;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .sec_03 .inguinal_area__04 .body .info {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__04 .body .info {
    padding-left: 15px;
  }
}
.sec_03 .inguinal_area__04 .body .info::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #1b74b8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sec_03 .inguinal_area__04 .body .info .row {
  display: flex;
  line-height: 1.5;
}
.sec_03 .inguinal_area__04 .body .info .row:not(:last-of-type) {
  margin-bottom: 9px;
}
.sec_03 .inguinal_area__04 .body .info .row .label {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
  color: #126ab1;
  width: 90px;
  padding-right: 10px;
  box-sizing: border-box;
  letter-spacing: -1px;
}
.sec_03 .inguinal_area__04 .body .info .row .text {
  transform: translateY(-0.2rem);
  color: #1b2e40;
}
@media screen and (max-width: 575px) {
  .sec_03 .inguinal_area__04 .body .info .row .text {
    font-size: 15px;
    transform: translateY(-0.1ex);
  }
}

.sec_04 {
  padding-top: 4.4rem;
  padding-bottom: calc(140px + 5.6rem);
  background-color: #f2f6f9;
}
@media screen and (max-width: 767px) {
  .sec_04 {
    padding-top: 3.2rem;
  }
}
@media screen and (max-width: 699px) {
  .sec_04 {
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 999px) {
  .sec_04 .flow_area__head {
    margin-bottom: 40px;
  }
}
.sec_04 .flow_area__head h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 899px) {
  .sec_04 .flow_area__head h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .sec_04 .flow_area__head h2 {
    margin-bottom: 15px;
  }
}
.sec_04 .flow_area__head .ja {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.sec_04 .flow_area__head .ja .rear_text {
  color: #1e74ba;
  font-size: 24px;
  border: 1px solid #126ab1;
  border-radius: 3px;
  min-width: 90px;
  display: inline-block;
  height: 40px;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  padding: 6px 5px 5px 5px;
}
@media screen and (max-width: 899px) {
  .sec_04 .flow_area__head .ja .rear_text {
    font-size: 22px;
    height: 30px;
    padding: 2px 3px;
  }
}
.sec_04 .flow_area__head .text_wrap {
  max-width: 490px;
  width: 55%;
}
@media screen and (max-width: 1099px) {
  .sec_04 .flow_area__head .text_wrap {
    width: 45%;
  }
  .sec_04 .flow_area__head .text_wrap br {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .sec_04 .flow_area__head .text_wrap {
    max-width: 750px;
    width: 100%;
  }
}
@media screen and (min-width: 576px) and (max-width: 899px) {
  .sec_04 .flow_area__head .text_wrap br {
    display: block;
  }
}
.sec_04 .flow_area__head .text_wrap .label {
  background-color: #ffffff;
  color: #1e74ba;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  padding: 1px 8px;
  box-sizing: border-box;
  margin-bottom: 7px;
  letter-spacing: 0.08em;
  display: inline-block;
}
@media screen and (max-width: 575px) {
  .sec_04 .flow_area__head .text_wrap .label {
    font-size: 17px;
  }
}
.sec_04 .flow_area__head .text_wrap .text {
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 575px) {
  .sec_04 .flow_area__head .text_wrap .text {
    font-size: 15px;
  }
}
.sec_04 .flow_area__head .text_wrap .annotation {
  margin-top: 5px;
}
.sec_04 .flow_area__body {
  margin-top: -105px;
}
@media screen and (max-width: 999px) {
  .sec_04 .flow_area__body {
    margin-top: 0;
  }
}
.sec_04 .flow_box {
  display: flex;
  -moz-column-gap: clamp(30px, 6vw, 80px);
  column-gap: clamp(30px, 6vw, 80px);
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 699px) {
  .sec_04 .flow_box {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.sec_04 .flow_box:not(:last-of-type) {
  margin-bottom: 3px;
}
.sec_04 .flow_box._height_02 {
  height: 160px;
}
@media screen and (max-width: 699px) {
  .sec_04 .flow_box._height_02 {
    height: 340px;
  }
  .sec_04 .flow_box._height_02 .num_box .line_box .line {
    height: 140px;
  }
}
.sec_04 .flow_box._height_03 {
  height: 220px;
}
@media screen and (max-width: 699px) {
  .sec_04 .flow_box._height_03 {
    height: 400px;
  }
}
.sec_04 .flow_box._opposite {
  flex-direction: row-reverse;
}
.sec_04 .flow_box._opposite .info_box,
.sec_04 .flow_box._opposite .title {
  text-align: left;
}
.sec_04 .flow_box._opposite .info_box::before,
.sec_04 .flow_box._opposite .title::before {
  left: auto;
  right: calc(100% + 1vw);
}
@media screen and (max-width: 699px) {
  .sec_04 .flow_box._opposite .info_box::before,
  .sec_04 .flow_box._opposite .title::before {
    left: -27px;
    right: auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_04 .flow_box._opposite .info_box::before,
  .sec_04 .flow_box._opposite .title::before {
    left: -21px;
  }
}
.sec_04 .num_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3px;
  width: 40px;
  flex-shrink: 0;
}
.sec_04 .num_box .num {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  display: inline-block;
  font-size: 18px;
  color: #ffffff;
  background-color: #1b74b8;
  line-height: 1;
  text-align: center;
  align-content: center;
  padding: 5px;
  box-sizing: border-box;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  letter-spacing: 0;
  flex-shrink: 0;
}
.sec_04 .num_box .line_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 11px;
  position: relative;
}
.sec_04 .num_box .line_box .line {
  display: block;
  width: 1px;
  height: 50px;
  background-color: #0d2150;
  position: relative;
}
@media screen and (max-width: 699px) {
  .sec_04 .num_box .line_box .line {
    height: 110px;
  }
}
.sec_04 .num_box .line_box .line:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #2077ba;
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  box-sizing: border-box;
}
.sec_04 .empty,
.sec_04 .info_box {
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 699px) {
  .sec_04 .empty {
    display: none;
  }
}
.sec_04 .info_box {
  padding-top: 0.2rem;
  max-width: 360px;
}
@media screen and (max-width: 1259px) {
  .sec_04 .info_box {
    max-width: none;
  }
}
.sec_04 .info_box .title {
  font-size: 24px;
  color: #1b74b8;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sec_04 .info_box .title {
    font-size: 20px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 699px) {
  .sec_04 .info_box .title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.sec_04 .info_box .title::before {
  content: "";
  display: inline-block;
  width: clamp(20px, 3.2vw, 40px);
  height: 2px;
  background-image: linear-gradient(to right, #c1d0da 2px, transparent 2px);
  background-size: 6px 2px;
  position: absolute;
  top: 50%;
  left: calc(100% + 1.2vw);
  transform: translateY(-50%);
}
@media screen and (max-width: 699px) {
  .sec_04 .info_box .title::before {
    left: -27px;
    right: auto;
  }
}
@media screen and (max-width: 575px) {
  .sec_04 .info_box .title::before {
    width: 17px;
    left: -21px;
  }
}
.sec_04 .info_box .img_wrap {
  max-width: 360px;
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 699px) {
  .sec_04 .info_box .img_wrap {
    margin-bottom: 10px;
  }
}
.sec_04 .info_box .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.sec_04 .info_box .text {
  letter-spacing: 0.08em;
  color: #06224b;
  line-height: 1.8;
}
@media screen and (max-width: 999px) {
  .sec_04 .info_box .text {
    font-size: 15px;
  }
}
@media screen and (max-width: 699px) {
  .sec_04 .info_box .text {
    max-width: 370px;
    line-height: 1.6;
  }
}

.sec_05 {
  background-color: #ecf1f5;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .sec_05 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.sec_05 .faq_area {
  display: flex;
  -moz-column-gap: clamp(40px, 8vw, 120px);
  column-gap: clamp(40px, 8vw, 120px);
}
@media screen and (max-width: 999px) {
  .sec_05 .faq_area {
    display: block;
  }
}
.sec_05 .faq_area__head {
  flex-shrink: 0;
  width: 220px;
}
@media screen and (max-width: 999px) {
  .sec_05 .faq_area__head {
    margin-bottom: 20px;
  }
}
.sec_05 .faq_area__head .ja {
  margin-left: -5px;
}
.sec_05 .faq_area__body {
  margin-top: -18px;
}
@media screen and (max-width: 999px) {
  .sec_05 .faq_area__body {
    margin-top: 0;
  }
}
.sec_05 .accordion_area {
  box-sizing: border-box;
  border-bottom: 1px solid #d9e4ec;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec_05 .accordion_area {
    min-height: none;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.sec_05 .accordion_area .accordion_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 14px;
  min-height: 80px;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sec_05 .accordion_area .accordion_btn {
    padding-right: 10px;
    padding-top: 12px;
    padding-bottom: 11px;
  }
}
.sec_05 .accordion_area .accordion_title {
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  -moz-column-gap: 7px;
  column-gap: 7px;
}
@media screen and (max-width: 767px) {
  .sec_05 .accordion_area .accordion_title {
    font-size: 16px;
    line-height: 1.5;
  }
}
.sec_05 .accordion_area .accordion_title .title_q {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: block;
  color: #4f76bd;
  line-height: 1;
  font-size: 20px;
  letter-spacing: 0.02em;
  transform: translateY(0.1ex);
}
@media screen and (max-width: 767px) {
  .sec_05 .accordion_area .accordion_title .title_q {
    font-size: 18px;
  }
}
.sec_05 .accordion_area .accordion_toggle_btn {
  width: 16px;
  min-width: 16px;
  height: 16px;
  position: relative;
}
.sec_05 .accordion_area .accordion_toggle_btn::before, .sec_05 .accordion_area .accordion_toggle_btn::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #1b74b8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: opacity 0.2s, transform 0.2s;
}
@media screen and (max-width: 575px) {
  .sec_05 .accordion_area .accordion_toggle_btn::before, .sec_05 .accordion_area .accordion_toggle_btn::after {
    width: 14px;
    background-color: rgba(27, 116, 184, 0.7);
  }
}
.sec_05 .accordion_area .accordion_toggle_btn::after {
  transform: rotate(-90deg);
}
.sec_05 .accordion_area .accordion_content {
  padding-right: 52px;
  padding-left: 52px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
}
.sec_05 .accordion_area .accordion_content__inner {
  position: relative;
  box-sizing: border-box;
}
.sec_05 .accordion_area .accordion_content__inner p {
  line-height: 2;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 575px) {
  .sec_05 .accordion_area .accordion_content__inner p {
    font-size: 15px;
    line-height: 1.7;
  }
}
.sec_05 .accordion_area.open .accordion_content {
  padding-top: 5px;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .sec_05 .accordion_area.open .accordion_content {
    padding-top: 0;
    margin-top: -5px;
    padding-bottom: 18px;
  }
}
.sec_05 .accordion_area.open .accordion_toggle_btn::before {
  opacity: 0;
}
.sec_05 .accordion_area.open .accordion_toggle_btn::after {
  transform: rotate(0);
}
.sec_05 .toggle_btn {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  box-sizing: border-box;
  cursor: pointer;
}
.sec_05 .toggle_btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.2s ease-out;
}
.sec_05 .toggle_btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: transform 0.2s ease-out;
}
.sec_05 .toggle_btn._opened::before {
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}
.sec_05 .toggle_btn._opened::after {
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.sec_06 {
  background-color: #f2f6f9;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .sec_06 {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.sec_06 .surgery_area__head {
  margin-bottom: 3.2rem;
}
.sec_06 .surgery_area__body {
  margin-top: -18px;
  overflow: auto;
}
.sec_06 .surgery_table_wrap.fixed_table {
  position: relative;
  overflow: auto !important;
  box-sizing: border-box;
}
.sec_06 .surgery_table {
  min-width: 1000px;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table {
    min-width: 750px;
  }
}
.sec_06 .surgery_table__thead, .sec_06 .surgery_table__tbody .tr {
  display: grid;
  grid-template-columns: clamp(110px, 15vw, 175px) 1fr 1fr 1fr;
  -moz-column-gap: 35px;
  column-gap: 35px;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__thead, .sec_06 .surgery_table__tbody .tr {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.sec_06 .surgery_table__thead .space {
  margin-right: clamp(10px, 1.2vw, 25px);
}
.sec_06 .surgery_table__thead .th {
  color: #06224b;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1e74ba;
}
.sec_06 .surgery_table__thead .th .blue_text {
  color: #1e74ba;
  letter-spacing: 0.08em;
  font-size: 16px;
  padding-left: 1px;
}
@media screen and (min-width: 1000px) {
  .sec_06 .surgery_table__thead .th .blue_text br {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__thead .th .blue_text {
    font-size: 15px;
  }
}
@media screen and (max-width: 1279px) {
  .sec_06 .surgery_table__thead .th {
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__thead .th {
    font-size: 15px;
  }
}
.sec_06 .surgery_table__tbody .tr {
  align-items: center;
  min-height: 80px;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__tbody .tr {
    min-height: 60px;
  }
}
.sec_06 .surgery_table__tbody .th,
.sec_06 .surgery_table__tbody .td {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80px;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__tbody .th,
  .sec_06 .surgery_table__tbody .td {
    min-height: 60px;
  }
}
.sec_06 .surgery_table__tbody .th {
  margin-right: clamp(10px, 2vw, 25px);
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #1e74ba;
  border-bottom: 1px solid #1e74ba;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__tbody .th {
    font-size: 17px;
    padding-bottom: 4spx;
    margin-right: clamp(10px, 1.2vw, 25px);
  }
}
.sec_06 .surgery_table__tbody .td {
  color: #06224b;
  font-size: 18px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__tbody .td {
    font-size: 16px;
  }
}
.sec_06 .surgery_table__tbody .td::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #06224b 1px, transparent 1px);
  background-size: 4px 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 999px) {
  .sec_06 .surgery_table__tbody .td::after {
    width: 85%;
  }
}
.sec_06 ._yubi {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  z-index: 10;
}
.sec_06 ._yubi img {
  width: 85px;
  display: block;
}
@media screen and (min-width: 1000px) {
  .sec_06 ._yubi {
    display: none;
  }
}

.sec_07 {
  background-color: #dbe6ed;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  box-sizing: border-box;
}
.sec_07 .feautures_area__head {
  margin-bottom: 45px;
}
.sec_07 .feautures_area__head h2 {
  text-align: center;
}
.sec_07 .feautures_area__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 0;
}
@media screen and (max-width: 699px) {
  .sec_07 .feautures_area__body {
    padding: 0 20px;
  }
}
.sec_07 .feautures_area__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 699px) {
  .sec_07 .feautures_area__list {
    grid-template-columns: 1fr;
  }
}
.sec_07 .feautures_area__list > li {
  padding: 20px;
  box-sizing: border-box;
}
.sec_07 .feautures_area__list > li:not(:last-of-type) {
  border-right: 1px solid #9bb3d4;
}
@media screen and (max-width: 699px) {
  .sec_07 .feautures_area__list > li {
    padding: clamp(30px, 5.8vw, 40px) clamp(15px, 3vw, 20px);
  }
  .sec_07 .feautures_area__list > li:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #9bb3d4;
  }
}
.sec_07 .feautures_area__list .title_wrap {
  text-align: center;
}
.sec_07 .feautures_area__list .title_wrap .num {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 30px;
  letter-spacing: 0;
  color: #1b74b8;
  line-height: 1;
  width: 100px;
  height: 100px;
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .sec_07 .feautures_area__list .title_wrap .num {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
}
.sec_07 .feautures_area__list .title_wrap .num::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 50px;
  border: solid 1px #b6c8e0;
  border-radius: 50px 50px 0 0; /* 下側を丸める */
  border-bottom: 0; /* 直線部分を消す */
  position: absolute;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 575px) {
  .sec_07 .feautures_area__list .title_wrap .num::before {
    width: 80px;
    height: 40px;
  }
}
.sec_07 .feautures_area__list .title_wrap .title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: -5px;
  margin-bottom: 1.8rem;
  line-height: 1.5;
  color: #06224b;
  font-size: clamp(18px, 2.2vw, 24px);
}
@media screen and (max-width: 575px) {
  .sec_07 .feautures_area__list .title_wrap .title {
    margin-bottom: 1.2rem;
    margin-top: -10px;
  }
}
.sec_07 .feautures_area__list .text_wrap {
  margin: 0 auto;
  max-width: 260px;
}
@media screen and (max-width: 699px) {
  .sec_07 .feautures_area__list .text_wrap {
    max-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  .sec_07 .feautures_area__list .text_wrap {
    font-size: 15px;
  }
}

.footer {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 75px;
  box-sizing: border-box;
}
@media screen and (max-width: 899px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.footer.footer-scroll_to_top_stop .scroll_to_top {
  position: absolute;
  bottom: auto !important;
  top: -80px;
}
@media screen and (max-width: 767px) {
  .footer.footer-scroll_to_top_stop .scroll_to_top {
    top: -55px;
  }
}
.footer .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
}
@media screen and (max-width: 899px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
.footer .text_wrap {
  padding-left: clamp(50px, 7.5vw, 100px);
  padding-right: clamp(20px, 4vw, 60px);
  box-sizing: border-box;
}
@media screen and (max-width: 1169px) {
  .footer .text_wrap {
    padding-left: 0;
    padding-right: 15px;
  }
}
@media screen and (max-width: 899px) {
  .footer .text_wrap {
    margin-bottom: 40px;
  }
}
.footer .text_wrap .head {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ffffff;
}
.footer .text_wrap .head .logo {
  transform: translateX(-10px);
}
@media screen and (max-width: 999px) {
  .footer .text_wrap .head {
    padding-top: 10px;
    padding-bottom: 17px;
    margin-bottom: 30px;
  }
  .footer .text_wrap .head .logo {
    width: 322px;
    height: auto;
    transform: translateX(-5px);
  }
}
.footer .text_wrap .body .info_wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .footer .text_wrap .body .info_wrap {
    margin-bottom: 30px;
  }
}
.footer .text_wrap .body .row {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
  letter-spacing: 0.12em;
  font-size: 18px;
  color: #ffffff;
}
.footer .text_wrap .body .row:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer .text_wrap .body .row:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer .text_wrap .body .row .icon {
    width: 15px;
    height: auto;
  }
}
.footer .text_wrap .body .row .text {
  line-height: 1.2;
}
.footer .text_wrap .body .row .text.tel {
  font-family: "Lexend Exa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .footer .text_wrap .body .row .text.tel {
    font-size: 22px;
  }
}
.footer .text_wrap .body .row .text.tel > * {
  color: #ffffff;
}
.footer .map_wrap {
  padding-left: clamp(20px, 4vw, 60px);
  box-sizing: border-box;
}
@media screen and (max-width: 1169px) {
  .footer .map_wrap {
    padding-left: 15px;
  }
}
@media screen and (max-width: 899px) {
  .footer .map_wrap {
    padding-left: 0;
  }
}
.footer .map_wrap .map_inner {
  height: 365px;
  margin-bottom: 26px;
}
.footer .map_wrap .map_inner iframe {
  max-width: 545px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 899px) {
  .footer .map_wrap .map_inner {
    margin-bottom: 10px;
  }
  .footer .map_wrap .map_inner iframe {
    max-width: none;
  }
}
.footer .map_wrap .link_wrap {
  text-align: right;
}
.footer .map_wrap .link_wrap a {
  color: #ffffff;
  letter-spacing: 0.12em;
  font-size: 20px;
  font-weight: 300;
}
.footer .map_wrap .link_wrap a.ext::before {
  content: "";
  display: inline-block;
  background: url("/hernia/img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 19px;
  height: 15px;
  margin-right: 9px;
}
.footer .foot_btn {
  min-height: 60px;
  max-width: 280px;
  position: relative;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 9px;
  column-gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  font-size: 18px;
  transition: 0.3s;
}
@media screen and (max-width: 899px) {
  .footer .foot_btn {
    margin: 0 auto;
    min-height: 50px;
    max-width: 260px;
  }
}
.footer .foot_btn::before {
  content: "";
  display: inline-block;
  background: url("/hernia/img/icon/arrow_2.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 8px;
  height: 12px;
  transform: translateY(1px);
}
.footer .foot_btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #126ab1;
}
.footer .foot_btn:hover::before {
  filter: brightness(0) saturate(100%) invert(28%) sepia(66%) saturate(1637%) hue-rotate(185deg) brightness(97%) contrast(89%);
}
.footer .copyright {
  position: relative;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  letter-spacing: 0.12em;
}

/*
.scroll_to_top
*/
.scroll_to_top {
  position: fixed;
  right: 20px;
  z-index: 999;
  line-height: 0;
  width: 64px;
  height: 64px;
  transition: 0.2s opacity, 0.2s bottom;
}
@media screen and (max-width: 767px) {
  .scroll_to_top {
    width: 50px;
    height: 50px;
  }
}
.scroll_to_top:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s opacity;
}
.scroll_to_top a {
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .scroll_to_top a {
    width: 50px;
    height: 50px;
  }
}
.scroll_to_top img {
  display: block;
}
@media screen and (max-width: 767px) {
  .scroll_to_top img {
    width: 50px;
    height: 50px;
  }
}
/*# sourceMappingURL=hernia.css.map */
