@charset "UTF-8";
:root {
  --color-001: #67C15B;
  --color-002: #EA8B39;
  --color-003: #69C2D0;
  --color-004: #F4BB3E;
  --color-005: #B18FDD;
  --color-006: #4082C4;
  --dark-001: #377E89;
  --dark-002: #377E89;
  --dark-003: #377E89;
  --dark-004: #377E89;
  --dark-005: #377E89;
  --dark-006: #377E89;
  --bg-gradient-001: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(153,207,149,1) 0%, rgba(101,183,94,1) 70%);
  --bg-gradient-002: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(240,170,109,1) 0%, rgba(234,139,57,1) 75%);
  --bg-gradient-003: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(151,218,228,1) 0%, rgba(105,194,208,1) 85%);
  --bg-gradient-004: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(245,206,115,1) 0%, rgba(244,187,62,1) 75%);
  --bg-gradient-005: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(208,188,235,1) 0%, rgba(177,143,221,1) 90%);
  --bg-gradient-006: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(140,178,216,1) 0%, rgba(67,130,192,1) 70%);
}

[data-color="001"] {
  --sub-color: var(--color-001);
  --dark-color: var(--dark-001);
  --gradient-color: var(--bg-gradient-001);
}

[data-color="002"] {
  --sub-color: var(--color-002);
  --dark-color: var(--dark-002);
  --gradient-color: var(--bg-gradient-002);
}

[data-color="003"] {
  --sub-color: var(--color-003);
  --dark-color: var(--dark-003);
  --gradient-color: var(--bg-gradient-003);
}

[data-color="004"] {
  --sub-color: var(--color-004);
  --dark-color: var(--dark-004);
  --gradient-color: var(--bg-gradient-004);
}

[data-color="005"] {
  --sub-color: var(--color-005);
  --dark-color: var(--dark-005);
  --gradient-color: var(--bg-gradient-005);
}

[data-color="006"] {
  --sub-color: var(--color-006);
  --dark-color: var(--dark-006);
  --gradient-color: var(--bg-gradient-006);
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
#header {
  background: #fff;
  width: 100%;
  height: 120px;
  padding: 0 60px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1400px) {
  #header {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1200px) {
  #header {
    padding: 0 20px;
    height: 80px;
  }
}
#header ._logo {
  width: 265px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  #header ._logo {
    width: 175px;
  }
}
#header ._logo a {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
#header ._logo svg {
  width: 100%;
  fill: #fff;
}
#header._open {
  z-index: 101;
}
#header._open::after {
  content: "";
  background: #ffffff;
  width: 100%;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
#header._open ._logo svg {
  fill: #fff;
}
#header._open .header_content {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0s ease;
  transition: opacity 0.4s ease, -webkit-transform 0s ease;
  transition: opacity 0.4s ease, transform 0s ease;
  transition: opacity 0.4s ease, transform 0s ease, -webkit-transform 0s ease;
}
#header._open .header_ham ._img div {
  background: #797979;
}
#header._open .header_ham ._img div:nth-child(1) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
          transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
#header._open .header_ham ._img div:nth-child(2) {
  opacity: 0;
}
#header._open .header_ham ._img div:nth-child(3) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
#header._open .header_content.header_content.header_content ._sub_list li a ._head {
  color: #fff;
}

.all_sub #header {
  -webkit-box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.16);
          box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.16);
}

@media screen and (max-width: 1200px) {
  .header_content {
    background: #fff;
    width: 100%;
    height: 100vh;
    padding: 120px 6.5% 100px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    overflow: auto;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0s 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0s 0.4s ease;
    transition: opacity 0.4s ease, transform 0s 0.4s ease;
    transition: opacity 0.4s ease, transform 0s 0.4s ease, -webkit-transform 0s 0.4s ease;
    overflow-x: hidden;
  }
}
.header_content ._top_sec {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_content ._top_sec ._link_text a {
  font-size: 17px;
  letter-spacing: 0.03em;
  color: inherit;
}
.header_content ._top_sec ._link_text + ._link_text {
  margin-left: 28px;
}
.header_content ._top_sec ._link_text + ._button {
  margin-left: 38px;
}
@media screen and (max-width: 1200px) {
  .header_content ._top_sec {
    width: 100%;
    margin-bottom: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header_content ._top_sec ._link_text {
    display: none;
  }
  .header_content ._top_sec ._button._button {
    width: 50%;
    margin-left: 0;
    text-align: center;
  }
  .header_content ._top_sec ._button._button a {
    border-radius: 0;
    height: 72px;
  }
  .header_content ._top_sec ._button._button ._text {
    position: relative;
    padding-right: 24px;
    font-size: 17px;
    font-weight: bold;
  }
  .header_content ._top_sec ._button._button ._text::before {
    content: "";
    display: block;
    background: url("../images/header_arrow_white.png") no-repeat center top/cover;
    width: 13px;
    height: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
  }
}
.header_content ._button {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .header_content ._button {
    width: 49.2%;
  }
}
.header_content ._button + ._button {
  margin-left: 16px;
}
.header_content ._button a {
  background: #0057B0;
  height: 26px;
  padding: 0 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header_content ._button a._red {
  background: #D30000;
}
@media screen and (max-width: 1200px) {
  .header_content ._button a {
    min-width: auto;
    padding: 0 8px;
  }
}
.header_content ._list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .header_content ._list {
    display: block;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header_content ._list > li:nth-child(n+2) {
  margin-left: 40px;
}
@media screen and (max-width: 1400px) {
  .header_content ._list > li:nth-child(n+2) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header_content ._list > li:nth-child(n+2) {
    margin: 0;
    border-top: 1px #fff dashed;
  }
}
@media screen and (max-width: 1200px) {
  .header_content ._list > li {
    padding-left: 15px;
    border-bottom: 1px solid #E6E6E6;
  }
}
.header_content ._main_text a {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  color: inherit;
}
@media screen and (max-width: 1200px) {
  .header_content ._main_text a {
    display: block;
    padding: 24px 0;
  }
  .header_content ._main_text a:not(._hus_sub a)::before {
    content: "";
    display: block;
    background: url("../images/header_sp_arrow.png") no-repeat center top/cover;
    width: 13px;
    height: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 16px;
  }
}
.header_content ._main_text a.hover {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header_content ._hus_sub {
  position: relative;
}
@media (min-width: 1200px) {
  .header_content ._hus_sub.hover ._sub_sec {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0s ease;
    transition: opacity 0.4s ease, -webkit-transform 0s ease;
    transition: opacity 0.4s ease, transform 0s ease;
    transition: opacity 0.4s ease, transform 0s ease, -webkit-transform 0s ease;
    pointer-events: auto;
  }
}
.header_content ._hus_sub ._main_text {
  position: relative;
}
.header_content ._hus_sub ._main_text a:after {
  display: none;
}
.header_content ._hus_sub ._main_text a.hover {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header_content ._hus_sub ._plus {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header_content ._hus_sub ._plus {
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
  .header_content ._hus_sub ._plus:before, .header_content ._hus_sub ._plus:after {
    content: "";
    background: #4082C4;
    width: 14px;
    height: 3px;
    border-radius: 999px;
    position: absolute;
    right: 16px;
    top: calc(50% - 1px);
    display: block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header_content ._hus_sub ._plus:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header_content ._hus_sub ._plus._sub_open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.header_content ._sub_sec {
  width: 360px;
  padding: 45px 0 0;
  position: absolute;
  top: 100%;
  left: calc(50% - 20px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0s 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0s 0.4s ease;
  transition: opacity 0.4s ease, transform 0s 0.4s ease;
  transition: opacity 0.4s ease, transform 0s 0.4s ease, -webkit-transform 0s 0.4s ease;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_sec {
    width: 100%;
    padding: 0 0 30px;
    position: static;
    pointer-events: auto;
    opacity: 1;
    left: auto;
    display: none;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .header_content ._sub_sec.mega_menu_about.mega_menu_about.mega_menu_about {
    display: none;
    margin-top: 0;
    width: 100%;
  }
  .header_content ._sub_sec.mega_menu_about.mega_menu_about.mega_menu_about ._sub_list {
    padding: 0;
    width: 100%;
  }
  .header_content ._sub_sec.mega_menu_about.mega_menu_about.mega_menu_about ._sub_list + ._sub_list {
    margin-top: 10px;
  }
  .header_content ._sub_sec.mega_menu_department.mega_menu_department.mega_menu_department {
    display: none;
    margin-top: 0;
    width: 100%;
  }
  .header_content ._sub_sec.mega_menu_department.mega_menu_department.mega_menu_department ._sub_list {
    padding: 0;
    width: 100%;
  }
  .header_content ._sub_sec.mega_menu_department.mega_menu_department.mega_menu_department ._sub_list + ._sub_list {
    margin-top: 10px;
  }
}
.header_content ._sub_sec::after {
  content: "";
  background: white;
  width: 33px;
  height: 19px;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  display: inline-block;
  position: absolute;
  top: 36px;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header_content ._sub_sec.mega_menu_about {
  background: #fff;
  width: 720px;
  margin-top: 45px;
  padding-top: 0;
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: 100%;
  left: -250px;
  -webkit-box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
          box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
}
.header_content ._sub_sec.mega_menu_about ._sub_list {
  width: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header_content ._sub_sec.mega_menu_about ._sub_list:nth-child(1) {
  padding-right: 25px;
}
.header_content ._sub_sec.mega_menu_about ._sub_list:nth-child(2) {
  padding-left: 25px;
}
.header_content ._sub_sec.mega_menu_about ._sub_list:nth-child(2) li {
  border-top: 1px rgba(86, 83, 79, 0.15) solid;
}
.header_content ._sub_sec.mega_menu_about::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 90%;
}
.header_content ._sub_sec.mega_menu_about::before {
  content: "";
  display: inline-block;
  background: transparent;
  width: 720px;
  height: 45px;
  position: absolute;
  top: -45px;
  left: 0;
}
.header_content ._sub_sec.mega_menu_department {
  background: #fff;
  width: 1396px;
  max-width: 85vw;
  margin-top: 45px;
  padding-top: 0;
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: 100%;
  left: -50%;
  -webkit-box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
          box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
}
.header_content ._sub_sec.mega_menu_department ._sub_list {
  width: 25%;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 25px;
  padding-right: 25px;
}
.header_content ._sub_sec.mega_menu_department ._sub_list li {
  border-top: 1px rgba(86, 83, 79, 0.15) solid;
}
.header_content ._sub_sec.mega_menu_department ._sub_list:first-of-type {
  padding-right: 25px;
  padding-left: 40px;
}
.header_content ._sub_sec.mega_menu_department ._sub_list:first-of-type li:first-of-type {
  border-top: none;
}
.header_content ._sub_sec.mega_menu_department ._sub_list:last-of-type {
  padding-left: 25px;
  padding-right: 40px;
}
.header_content ._sub_sec.mega_menu_department ._sub_list:last-of-type li {
  border-top: 1px rgba(86, 83, 79, 0.15) solid;
}
.header_content ._sub_sec.mega_menu_department::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 58%;
}
.header_content ._sub_sec.mega_menu_department::before {
  content: "";
  display: inline-block;
  background: transparent;
  width: 1050px;
  height: 45px;
  position: absolute;
  top: -45px;
  left: 0;
}
.header_content ._sub_list {
  background: #fff;
  padding: 32px 40px 42px;
  padding-top: 25px;
  -webkit-box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
          box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
  border-radius: 12px;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list {
    background: none;
    margin-top: -10px;
    padding: 0;
    display: block;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header_content ._sub_list.pc {
    display: none;
  }
  .header_content ._sub_list.sp {
    display: block;
  }
}
.header_content ._sub_list li {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li {
    width: 100%;
    padding: 0 25px;
    border: none !important;
  }
  .header_content ._sub_list li ._sub_list_title {
    display: none;
  }
}
.header_content ._sub_list li:nth-child(n+2) {
  border-top: 1px rgba(86, 83, 79, 0.15) solid;
}
.header_content ._sub_list li:nth-last-child(1) {
  border-bottom: 1px rgba(86, 83, 79, 0.15) solid;
}
.header_content ._sub_list li ._sub_list_title {
  min-width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.header_content ._sub_list li ._sub_list_title ._sub_list_title_icon {
  width: auto;
  height: 50px;
}
.header_content ._sub_list li ._sub_list_title ._text {
  width: calc(100% - 50px);
  padding-left: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 2.5;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li ._sub_list_title {
    display: none;
  }
}
.header_content ._sub_list li a {
  padding: 12px 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_content ._sub_list li a.hover {
  opacity: 0.6;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_content ._sub_list li a.hover ._arrow {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_content ._sub_list li a.hover ._arrow svg {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li a {
    padding: 0;
  }
  .header_content ._sub_list li a::before {
    content: "";
    display: block;
    background: url("../images/header_sp_arrow.png") no-repeat center top/cover;
    width: 13px;
    height: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 16px;
  }
}
.header_content ._sub_list li a ._head {
  display: block;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  font-size: 26px;
  color: #719C8B;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li a ._head {
    display: none;
  }
}
.header_content ._sub_list li a ._text {
  margin-left: 10px;
  display: block;
  font-weight: bold;
  font-size: 17px;
  color: #3C3C3C;
  line-height: 2.3;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li a ._text {
    margin-left: 0;
    text-align: left;
    font-weight: 400;
    font-size: 15px;
    font-weight: bold;
  }
}
.header_content ._sub_list li a ._arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header_content ._sub_list li a ._arrow svg {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li a ._arrow {
    display: none;
  }
}
.header_content ._sub_list li a ._arrow svg {
  width: 13.35px;
}
@media screen and (max-width: 1200px) {
  .header_content ._sub_list li:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header_content .header_sp_bottom_sec {
    display: block;
  }
  .header_content .header_sp_bottom_sec ._sp_list {
    padding-top: 40px;
    padding-bottom: 35px;
    padding-left: 14px;
  }
  .header_content .header_sp_bottom_sec ._sp_list a {
    font-size: 16px;
    color: #4F4F4F;
  }
  .header_content .header_sp_bottom_sec ._sp_list li + li {
    margin-top: 14px;
  }
  .header_content .header_sp_bottom_sec ._sp_list + ._sp_list {
    border-top: 1px solid #E6E6E6;
  }
  .header_content .header_sp_bottom_sec ._copyright {
    padding-top: 30px;
    text-align: center;
    color: #767676;
    font-size: 12px;
  }
}

.top #header {
  border-bottom: none;
}
.header_sp_nav {
  position: absolute;
  top: 20px;
  right: 18px;
  display: none;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .header_sp_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 200;
  }
}
.header_sp_nav ._img {
  width: 28px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
}
.header_sp_nav ._text {
  font-size: 10px;
  color: #56534F;
}

.header_ham {
  width: 40px;
  text-align: center;
}
.header_ham ._img {
  position: relative;
}
.header_ham ._img div {
  background: #2E2E2E;
  width: 28px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header_ham ._img div:nth-child(2) {
  top: calc(50% - 7px);
}
.header_ham ._img div:nth-child(3) {
  top: calc(50% + 7px);
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
#footer {
  background: #fff;
  padding-bottom: 60px;
}

.footer_link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.footer_link li {
  position: relative;
}
.footer_link li:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 2px;
  height: 77.7777777778%;
  border-left: 2px dashed #E6E6E6;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .footer_link li:nth-of-type(n+2)::before {
    display: none;
  }
}
.footer_link li:nth-of-type(n+2) a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_link li:nth-of-type(n+2) img {
  width: 94%;
}
@media screen and (max-width: 768px) {
  .footer_link li:nth-of-type(n+2) img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer_link {
    grid-template-columns: 1fr 1fr;
  }
  .footer_link li:nth-of-type(2n-1)::before {
    content: "";
    display: block !important;
    width: 2px;
    height: 77.7777777778%;
    border-left: 2px dashed #E6E6E6;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer_link li:nth-of-type(2n-1)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer_link li:nth-of-type(2n+1)::after {
    content: "";
    display: block;
    width: 86%;
    height: 1px;
    border-top: 1px solid #E6E6E6;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
  }
  .footer_link li:nth-of-type(2n)::after {
    content: "";
    display: block;
    width: 86%;
    height: 1px;
    border-top: 1px solid #E6E6E6;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .footer_link li:last-of-type::after {
    display: none;
  }
}

.footer_content {
  padding: 0 60px;
}
@media screen and (max-width: 600px) {
  .footer_content {
    padding: 0 20px;
  }
}
.footer_content ._content {
  padding-top: 70px;
  padding-bottom: 115px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_content ._content ._right {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .footer_content ._content {
    display: block;
  }
  .footer_content ._content ._right {
    margin-top: 34px;
  }
}
@media screen and (max-width: 600px) {
  .footer_content ._content {
    padding-bottom: 60px;
  }
}
.footer_content ._content ._logo {
  width: 240px;
}
.footer_content ._content ._info {
  width: 490px;
  margin-top: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 2.25;
  font-size: 16px;
  color: #4F4F4F;
}
.footer_content ._content ._info dt {
  width: 24%;
}
.footer_content ._content ._info dd {
  width: 76%;
  font-weight: bold;
}
.footer_content ._content ._info a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer_content ._content ._info {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .footer_content ._content ._info {
    display: block;
    line-height: 2;
  }
  .footer_content ._content ._info dd + dt {
    margin-top: 20px;
  }
  .footer_content ._content ._info dd,
  .footer_content ._content ._info dt {
    width: 100%;
  }
}
.footer_content ._right ._list li + li {
  margin-top: 14px;
}
.footer_content ._right ._list a {
  font-size: 16px;
  color: #4F4F4F;
}
.footer_content ._copyright {
  padding-bottom: 30px;
  text-align: center;
  color: #767676;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .footer_content ._copyright {
    font-size: 12px;
  }
}
.footer_content ._permit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-top: 56px;
  overflow: hidden;
  min-width: 552px;
}
@media screen and (max-width: 1024px) {
  .footer_content ._permit {
    width: 79.4029850746%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    row-gap: 20px;
    padding-top: 40px;
    font-size: 12px;
    min-width: auto;
  }
}
.footer_content ._smoking, .footer_content ._camera {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border: 1px solid #E6E6E6;
  padding: 14px 0 14px 17px;
  border-radius: 4px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .footer_content ._smoking, .footer_content ._camera {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 14px 0 14px 17.4px;
  }
}
.footer_content ._figure {
  width: 52px;
  margin: auto 0;
}
.footer_content ._text {
  font-size: 16px;
  font-weight: 700;
  color: #4F4F4F;
  line-height: 1.625;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_bold {
  font-weight: bold;
}

.all_button {
  width: 100%;
}
.all_button._blank ._arrow {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.all_button a, .all_button button {
  background: #fff;
  width: 100%;
  max-width: 318px;
  height: 72px;
  position: relative;
  display: inline-block;
  border: 2px solid #EDEDED;
  border-radius: 9999px;
  padding-left: 27px;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_button a ._text, .all_button button ._text {
  line-height: 1.25;
  font-size: 17px;
  color: #2e2e2e;
}
.all_button a ._arrow, .all_button button ._arrow {
  line-height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
.all_button a ._arrow svg, .all_button button ._arrow svg {
  fill: var(--sub-color);
}
.all_button a:hover, .all_button button:hover {
  background: var(--sub-color);
  border: 2px solid var(--sub-color);
}
.all_button a:hover ._text, .all_button button:hover ._text {
  color: #fff;
}
.all_button a:hover ._arrow svg, .all_button button:hover ._arrow svg {
  fill: #fff;
}
.all_button a[disabled], .all_button button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.all_more_button > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
}
.all_more_button ._button_text {
  font-size: 17px;
  font-weight: bold;
  color: #2e2e2e;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_more_button ._circle {
  background: #fff;
  width: 64px;
  height: 64px;
  border: 2px solid #EDEDED;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  line-height: 0;
}
.all_more_button ._circle * {
  fill: #4082C4;
}
.all_more_button > *:hover ._circle {
  background: #4082C4;
  border: 2px solid #4082C4;
}
.all_more_button > *:hover ._circle * {
  fill: #fff;
}

.all_2col_section .all_more_button ._circle * {
  fill: var(--sub-color);
}
.all_2col_section .all_more_button > *:hover ._circle {
  background: var(--sub-color);
  border: 2px solid var(--sub-color);
}
.all_2col_section .all_more_button > *:hover ._circle * {
  fill: #fff;
}

.all_bdrs_item {
  border-radius: 20px;
  overflow: initial;
}

.all_fixed_nav {
  background: #fff;
  width: 380px;
  position: fixed;
  overflow: hidden;
  right: 60px;
  bottom: 0;
  border-radius: 20px 20px 0px 0px;
  -webkit-box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
          box-shadow: 0px 0px 16px rgba(173, 173, 173, 0.22);
  z-index: 10;
  -webkit-transform: translateY(calc(100% - 60px));
          transform: translateY(calc(100% - 60px));
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_fixed_nav.on {
  -webkit-transform: none;
          transform: none;
  z-index: 100;
}
.all_fixed_nav.on ._top_tab ._arrow img {
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 600px) {
  .all_fixed_nav {
    max-width: 350px;
    width: 93.3333333333%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(calc(100% - 60px));
            transform: translateX(-50%) translateY(calc(100% - 60px));
    right: auto;
  }
  .all_fixed_nav.on {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.all_fixed_nav ._top_tab {
  background: #fff;
  width: 100%;
  padding: 22px 28px 18px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.all_fixed_nav ._top_tab > * {
  pointer-events: none;
}
.all_fixed_nav ._top_tab::before {
  content: "";
  display: block;
  background: #EDEDED;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
}
.all_fixed_nav ._top_tab ._title {
  position: relative;
  padding-left: 26px;
  line-height: 1;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.all_fixed_nav ._top_tab ._title::before {
  content: "";
  display: block;
  background: url("../images/all_icon_info.svg") no-repeat center top/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.all_fixed_nav ._top_tab ._arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all_fixed_nav ._top_tab ._arrow img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_fixed_nav ._content {
  width: 314px;
  height: calc(100dvh - 284px);
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 105px;
}
.all_fixed_nav ._button_sec {
  margin-top: 20px;
}
.all_fixed_nav ._button_sec .all_button + .all_button {
  margin-top: 16px;
}
.all_fixed_nav .all_button a ._arrow svg, .all_fixed_nav .all_button button ._arrow svg {
  fill: #4082C4;
}
.all_fixed_nav .all_button a:hover, .all_fixed_nav .all_button button:hover {
  background: #4082C4;
  border: 2px solid #4082C4;
}
.all_fixed_nav .all_button a:hover ._arrow svg, .all_fixed_nav .all_button button:hover ._arrow svg {
  fill: #fff;
}

.all_fixed_nav_bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.4s 0.4s ease;
  transition: 0.4s 0.4s ease;
}

.all_fixed_nav.on + .all_fixed_nav_bg {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1025px) {
  .top .all_fixed_nav.top_scroll.top_scroll {
    height: calc(100vh - 118px);
    -webkit-transform: none;
            transform: none;
  }
  .top .all_fixed_nav.top_scroll.top_scroll ._top_tab {
    pointer-events: none;
  }
  .top .all_fixed_nav.top_scroll.top_scroll ._top_tab ._arrow img {
    display: none;
  }
}
@media (max-width: 1200px) {
  .top .all_fixed_nav.top_scroll.top_scroll {
    height: calc(100vh - 80px);
  }
}
@media screen and (max-width: 768px) {
  .top .all_fixed_nav.top_scroll.top_scroll {
    height: auto;
  }
}

.all_fixed_nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
}
.all_fixed_nav_list a {
  background: var(--sub-color);
  width: 148px;
  height: 109px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
  padding-right: 14px;
  padding-top: 17px;
  padding-bottom: 17px;
  border-radius: 16px;
}
.all_fixed_nav_list a ._icon {
  height: 79px;
  opacity: 0.2;
  position: absolute;
  top: 36px;
  right: 7px;
}
.all_fixed_nav_list a ._text {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.all_fixed_nav_list a ._text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.all_fixed_nav_list a ._text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
.all_fixed_nav_list a ._arrow {
  width: 15px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 0;
}
.all_fixed_nav_list a ._arrow svg {
  width: 100%;
  fill: #FFF;
}
.all_fixed_nav_list ._sub a {
  background: transparent;
  height: 78px;
  border: 2px solid #EDEDED;
}
.all_fixed_nav_list ._sub a ._text {
  color: #2E2E2E;
  font-size: 16px;
}
.all_fixed_nav_list ._sub a ._arrow svg {
  fill: #4382C0;
}

.all_fixed_bottom_sec {
  padding-top: 20px;
}
.all_fixed_bottom_sec._top {
  background: transparent;
  padding-top: 0;
  margin-bottom: 28px;
  position: relative;
  bottom: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
}
.all_fixed_bottom_sec._top ._list {
  height: 85px;
}
.all_fixed_bottom_sec._top ._list li a, .all_fixed_bottom_sec._top button {
  padding-bottom: 40px;
}
.all_fixed_bottom_sec._top ._list li ._text {
  height: 22px;
  line-height: 1.2857142857;
  font-size: 14px;
  font-weight: bold;
}
.all_fixed_bottom_sec._top::before {
  display: none;
}
.all_fixed_bottom_sec ._list {
  width: 290px;
  height: 88px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.all_fixed_bottom_sec ._list li {
  width: 44px;
  position: relative;
}
.all_fixed_bottom_sec ._list li a, .all_fixed_bottom_sec ._list li button {
  width: 100%;
  height: 76px;
  position: relative;
  display: block;
  padding-bottom: 24px;
}
.all_fixed_bottom_sec ._list li ._text {
  height: 30px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  white-space: nowrap;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 11px;
  line-height: 1.2;
  font-weight: bold;
  color: #56534F;
}
.all_fixed_bottom_sec ._list ._icon {
  display: block;
}
.all_fixed_bottom_sec ._list ._bar {
  background: #EDEDED;
  width: 2px;
  height: 100%;
}

.all_sub {
  padding-top: 120px;
}
@media screen and (max-width: 1200px) {
  .all_sub {
    padding-top: 80px;
  }
}
.all_sub[data-color="006"] .all_sub_mv._left_parts::after {
  background-image: url(../images/all_sub_mv_left_parts_006.webp);
}

.all_2col_container {
  background: #fff;
  padding-top: 196px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .all_2col_container {
    padding-top: 145px;
  }
}
.all_2col_container .all_breadcrumb {
  position: absolute;
  top: 80px;
  right: 65px;
}
@media screen and (max-width: 768px) {
  .all_2col_container .all_breadcrumb {
    top: 35px;
    right: 20px;
  }
}
.all_2col_container .all_breadcrumb_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .all_2col_container .all_breadcrumb_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.all_2col_container .all_breadcrumb_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 16px;
  gap: 16px;
  color: #2E2E2E;
  font-weight: bold;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .all_2col_container .all_breadcrumb_list li {
    font-size: 14px;
  }
}
.all_2col_container .all_breadcrumb_list li::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: url("../images/all_breadcrumb_arrow.svg") no-repeat center top/cover;
}
.all_2col_container .all_breadcrumb_list li:last-of-type {
  padding-right: 0;
}
.all_2col_container .all_breadcrumb_list li:last-of-type::after {
  display: none;
}
.all_2col_container .all_breadcrumb_list a {
  text-decoration: underline;
  opacity: 0.25;
  color: inherit;
}

.all_2col_side_nav_wrap {
  position: absolute;
  height: 100%;
  padding-top: 193px;
  padding-bottom: 110px;
  border-right: 2px solid #EFF1F3;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .all_2col_side_nav_wrap {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .all_2col_side_nav_wrap {
    background-color: #ffffff;
  }
}

.all_2col_side_nav {
  width: 280px;
  position: -webkit-sticky;
  position: sticky;
  top: 15%;
  pointer-events: auto;
}
.all_2col_side_nav ._list > li {
  border-top: 2px solid #EFF1F3;
  padding: 14px 0;
  padding-right: 7px;
}
.all_2col_side_nav ._list > li:last-of-type {
  border-bottom: 2px solid #EFF1F3;
}
@media screen and (max-width: 1024px) {
  .all_2col_side_nav ._list > li {
    padding: 8px 0;
    border-top: 1px solid rgba(239, 241, 243, 0.6);
  }
  .all_2col_side_nav ._list > li:last-of-type {
    border-bottom: 1px solid rgba(239, 241, 243, 0.6);
  }
}
.all_2col_side_nav ._list > li > a {
  width: 100%;
  border-radius: 0 8px 8px 0;
  padding: 18px 0;
  line-height: 1.4736842105;
  position: relative;
  padding-left: 40px;
  padding-right: 50px;
  display: block;
  letter-spacing: 0.03em;
  font-size: 19px;
  font-weight: bold;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #2E2E2E;
}
.all_2col_side_nav ._list > li > a::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4736842105) * 0.5em);
  content: "";
}
.all_2col_side_nav ._list > li > a::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4736842105) * 0.5em);
  content: "";
}
.all_2col_side_nav ._list > li > a ._arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}
.all_2col_side_nav ._list > li > a ._arrow svg {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.all_2col_side_nav ._list > li > a ._arrow svg * {
  fill: var(--sub-color);
}
.all_2col_side_nav ._list > li > a:hover {
  opacity: 1;
}
.all_2col_side_nav ._list > li > a.current {
  background: var(--sub-color);
  color: #fff;
}
.all_2col_side_nav ._list > li > a.current ._arrow {
  border: 1px solid #fff;
}
.all_2col_side_nav ._list > li > a.current ._arrow svg * {
  fill: #fff;
}
@media screen and (max-width: 1024px) {
  .all_2col_side_nav ._list > li > a {
    border-radius: 4px;
    font-size: 17px;
    padding-left: 17px;
  }
  .all_2col_side_nav ._list > li > a ._arrow svg * {
    fill: #fff;
  }
  .all_2col_side_nav ._list > li > a.current {
    background: #fff;
    color: var(--sub-color);
  }
  .all_2col_side_nav ._list > li > a.current ._arrow {
    border: 1px solid var(--sub-color);
  }
  .all_2col_side_nav ._list > li > a.current ._arrow svg * {
    fill: var(--sub-color);
  }
}
.all_2col_side_nav ._list > li ._sub_list {
  margin-top: 15px;
  padding-bottom: 20px;
  padding-left: 40px;
  display: none;
}
.all_2col_side_nav ._list > li ._sub_list li + li {
  margin-top: 22px;
}
.all_2col_side_nav ._list > li ._sub_list a {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  font-size: 17px;
  font-weight: bold;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #2E2E2E;
}
.all_2col_side_nav ._list > li.white a {
  color: #fff;
}
.all_2col_side_nav ._list > li.white a.current {
  opacity: 1;
  color: #fff;
}
.all_2col_side_nav ._list > li.white a.current::after {
  background: #fff;
}
.all_2col_side_nav ._back_button {
  margin-top: 34px;
  text-align: center;
}
.all_2col_side_nav ._back_button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 18px;
  font-size: 17px;
  font-weight: bold;
  color: #2E2E2E;
}
.all_2col_side_nav ._back_button a ._arrow {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.all_2col_side_nav ._back_button a ._arrow svg * {
  fill: var(--sub-color);
}
@media screen and (max-width: 1024px) {
  .all_2col_side_nav ._back_button {
    margin-top: 24px;
    text-align: right;
  }
  .all_2col_side_nav ._back_button a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    color: #fff;
  }
  .all_2col_side_nav ._back_button a ._arrow svg * {
    fill: #fff;
  }
}

.all_2col_section {
  padding-left: 280px;
}
@media screen and (max-width: 1024px) {
  .all_2col_section {
    padding-left: 0;
  }
}
.all_2col_section .content {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .all_2col_section .content {
    padding-left: 0;
  }
}
.all_2col_section + .all_2col_section {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .all_2col_section + .all_2col_section {
    margin-top: 88px;
  }
}

@media screen and (max-width: 1024px) {
  .all_2col_side_nav_wrap.all_sp_menu {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .all_2col_side_nav_wrap.all_sp_menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    pointer-events: none;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    z-index: 11;
  }
}

@media screen and (max-width: 768px) {
  .all_sp_menu {
    border-right: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_bg {
    background: #969696;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
}
.all_sp_menu_btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_btn {
    display: block;
    width: 72px;
    height: 72px;
    position: absolute;
    bottom: 77px;
    right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_btn ._circle {
    background: var(--sub-color);
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_btn ._btn {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_btn ._img {
    font-size: 0;
    letter-spacing: 0;
    width: 28px;
    position: absolute;
    top: 18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.all_sp_menu_btn ._close_img {
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 17px;
  width: 17px;
}
.all_sp_menu_btn ._close_img svg {
  width: 100%;
  height: 100%;
  stroke: var(--sub-color);
}
.all_sp_menu_btn ._text {
  margin-top: 2px;
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_btn ._text {
    position: absolute;
    top: 42px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
  }
  .all_sp_menu_btn ._text::before {
    white-space: nowrap;
    content: "目次";
    font-size: 14px;
    display: inline;
  }
}
@media screen and (max-width: 1024px) {
  .all_sp_menu_list {
    width: 240px;
    pointer-events: auto;
    position: absolute;
    top: inherit;
    right: 20px;
    bottom: 173px;
    opacity: 0;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .all_sp_menu_list._list {
    background: transparent;
    max-height: none;
    padding: 20px 0;
    border: none;
    border-radius: 0;
    border-left-color: #fff;
  }
  .all_sp_menu_list._list a {
    color: #fff;
  }
  .all_sp_menu_list._list a.current::before {
    background: #fff;
  }
}

@media screen and (max-width: 1024px) {
  .all_2col_side_nav.all_sp_menu_list ._list {
    border-left-color: #fff;
  }
  .all_2col_side_nav.all_sp_menu_list ._list a {
    color: #fff;
  }
  .all_2col_side_nav.all_sp_menu_list ._list a._current {
    opacity: 1;
  }
  .all_2col_side_nav.all_sp_menu_list ._list a.current::before {
    background: #fff;
  }
}

.sp_menu_active #header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.sp_menu_active .all_fixed_nav {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 600px) {
  .sp_menu_active .all_fixed_nav {
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
  }
}
.sp_menu_active .all_sp_menu_bg {
  -webkit-transform: none;
          transform: none;
  opacity: 0.95;
}
.sp_menu_active .all_sp_menu ._img {
  background: url(../images/all_sp_menu_close_icon.svg) no-repeat center center/contain;
}
.sp_menu_active .all_sp_menu ._img img {
  opacity: 0;
}
.sp_menu_active .all_sp_menu ._close_img {
  opacity: 1;
}
.sp_menu_active .all_sp_menu ._circle {
  background: #fff;
}
.sp_menu_active .all_sp_menu ._text {
  color: var(--sub-color);
}
.sp_menu_active .all_sp_menu ._text::before {
  content: "閉じる";
}
.sp_menu_active .all_2col_side_nav.all_sp_menu_list {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.on_footer .all_fixed_nav {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 600px) {
  .on_footer .all_fixed_nav {
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
  }
}

.all_sub_title {
  margin-top: 20px;
  margin-bottom: 165px;
}
.all_sub_title ._upper_title {
  font-weight: bold;
  font-size: 20px;
  color: var(--sub-color);
}
.all_sub_title ._upper_title ._icon {
  width: 22px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.all_sub_title ._upper_title_h1 {
  font-weight: bold;
  font-size: 20px;
  color: var(--sub-color);
  padding-left: 38px;
  position: relative;
}
.all_sub_title ._upper_title_h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 29px;
  height: 29px;
}
.all_sub_title ._upper_title_h1._icon_hospitalization::before {
  background-image: url(../images/icon_hospitalization.svg);
}
.all_sub_title ._upper_title_h1._icon_about::before {
  background-image: url(../images/icon_about.svg);
}
.all_sub_title ._title {
  margin-top: 30px;
  font-size: 48px;
  font-weight: bold;
}
.all_sub_title ._title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.all_sub_title ._title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media screen and (max-width: 768px) {
  .all_sub_title {
    margin-bottom: 95px;
  }
  .all_sub_title ._upper_title {
    font-size: 16px;
  }
  .all_sub_title ._upper_title ._icon {
    width: 20px;
  }
  .all_sub_title ._upper_title_h1 {
    padding-left: 32px;
  }
  .all_sub_title ._upper_title_h1::before {
    width: 20px;
    height: 20px;
  }
  .all_sub_title ._title {
    margin-top: 16px;
    font-size: 28px;
  }
}

.all_sub_time_title {
  position: relative;
  padding-left: 46px;
  font-size: 28px;
  letter-spacing: 0.03em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .all_sub_time_title {
    font-size: 20px;
    padding-left: 30px;
  }
}
.all_sub_time_title::before {
  content: "";
  display: block;
  background: url("../images/all_icon_time.svg") no-repeat center top/cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .all_sub_time_title::before {
    width: 21px;
    height: 21px;
  }
}

.all_sub_icon_title {
  position: relative;
  padding-left: 46px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .all_sub_icon_title {
    font-size: 24px;
    padding-left: 30px;
  }
}
.all_sub_icon_title::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 26px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .all_sub_icon_title::before {
    width: 21px;
    height: 21px;
  }
}
.all_sub_icon_title._icon_email::before {
  background-image: url("../images/all_icon_email.svg");
}

.all_sub_title_02 {
  position: relative;
  margin-bottom: 70px;
  padding-top: 36px;
  letter-spacing: 0.03em;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .all_sub_title_02 {
    margin-bottom: 36px;
    padding-top: 32px;
    font-size: 24px;
  }
}
.all_sub_title_02::before {
  content: "";
  display: block;
  background: #E6E6E6;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.all_sub_title_02::after {
  content: "";
  display: block;
  background: var(--sub-color);
  width: 88px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .all_sub_title_02::after {
    width: 40px;
  }
}

.all_sub_title_03 {
  margin-top: 72px;
  margin-bottom: 40px;
  position: relative;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.all_sub_title_03 ._icon {
  margin-right: 10px;
  fill: var(--sub-color);
  width: 22px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.all_sub_title_03 ._icon svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .all_sub_title_03 {
    font-size: 20px;
  }
  .all_sub_title_03 ._icon {
    width: 17px;
    margin-right: 8px;
  }
}

.all_sub_title_04 {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .all_sub_title_04 {
    font-size: 19px;
  }
}

.all_text {
  font-size: 17px;
  line-height: 2;
}
.all_text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
.all_text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
.all_text + .all_text {
  margin-top: 30px;
}
.all_text a {
  color: #0057B0;
  text-decoration: underline;
}

.all_red {
  color: #D30000;
}

.all_gray_sec {
  background: #F5F5F5;
  padding: 60px;
  border-radius: 8px;
}
.all_gray_sec .all_text {
  line-height: 1.76;
}
@media screen and (max-width: 768px) {
  .all_gray_sec {
    padding: 40px 20px;
  }
}

.all_gray_order_list {
  position: relative;
  counter-reset: listNum;
}
.all_gray_order_list > li {
  padding-left: 57px;
  padding-bottom: 60px;
  position: relative;
  counter-increment: listNum;
}
@media screen and (max-width: 768px) {
  .all_gray_order_list > li {
    padding-left: 42px;
  }
}
.all_gray_order_list > li .all_text {
  line-height: 1.76;
}
.all_gray_order_list > li .all_text + .all_text {
  margin-top: 15px;
}
.all_gray_order_list > li:last-of-type {
  padding-bottom: 0;
}
.all_gray_order_list > li::before {
  background: #fff;
  content: counter(listNum);
  width: 26px;
  height: 26px;
  border: 1px solid #DFDFDF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: var(--sub-color);
  z-index: 1;
}
.all_gray_order_list > li::after {
  content: "";
  display: block;
  background: #E0E0E0;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 13px;
}
.all_gray_order_list > li:last-of-type::after {
  display: none;
}
.all_gray_order_list > li ._num {
  font-size: 18px;
}
.all_gray_order_list > li dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all_gray_order_list > li dt {
  width: 90px;
  font-weight: bold;
  font-size: 17px;
  color: var(--sub-color);
}
.all_gray_order_list > li dd {
  font-size: 17px;
}
.all_gray_order_list + .all_text {
  margin-top: 30px;
}

.all_grid_sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media screen and (max-width: 600px) {
  .all_grid_sec {
    grid-template-columns: 1fr;
    gap: 40px 3.75rem;
  }
}
.all_grid_sec._big {
  gap: 2.5rem;
}
.all_grid_sec ._item._comingsoon ._img {
  position: relative;
}
.all_grid_sec ._item._comingsoon ._img::before {
  content: "";
  display: block;
  background: rgba(114, 114, 114, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.all_grid_sec ._item._comingsoon ._img::after {
  content: "COMING SOON";
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 42px;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .all_grid_sec ._item._comingsoon ._img::after {
    font-size: 24px;
  }
}
.all_grid_sec ._item._comingsoon .all_more_button a {
  pointer-events: none;
  opacity: 0.5;
}
.all_grid_sec ._img {
  aspect-ratio: 470/327;
  overflow: hidden;
  border-radius: 12px;
}
.all_grid_sec ._item_title {
  margin-top: 40px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.all_grid_sec ._item_title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.all_grid_sec ._item_title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media screen and (max-width: 600px) {
  .all_grid_sec ._item_title {
    font-size: 20px;
  }
  .all_grid_sec ._item_title:first-child {
    margin-top: 0;
  }
}
.all_grid_sec .all_text {
  margin-top: 20px;
}
.all_grid_sec .all_more_button {
  margin-top: 24px;
  text-align: right;
}
.all_grid_sec .all_more_button > * {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.all_grid_sec .all_more_button ._circle * {
  fill: var(--sub-color);
}
.all_grid_sec .all_more_button > *:hover ._circle {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}
.all_grid_sec .all_more_button > *:hover ._circle * {
  fill: #fff;
}

.all_border_item {
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  padding: 1.875rem 2.5rem;
}

.all_list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  font-size: 17px;
}
.all_list li::before {
  content: "";
  display: block;
  top: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--sub-color);
  border-radius: 50%;
}
.all_list li + li {
  margin-top: 15px;
}
.all_list ._small {
  font-size: 15px;
  color: #909090;
}
.all_list .li_ttl {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}

.all_list_num li {
  counter-increment: numberA;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 25px;
  line-height: 2;
}
.all_list_num li::before {
  position: absolute;
  content: counter(numberA) ".";
  min-width: 17px;
  margin-right: 8px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sub-color);
  left: 0;
  top: 8px;
}
.all_list_num li .li_ttl {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
.all_list_num li p + p {
  margin-top: 19px;
}
.all_list_num li + li {
  margin-top: 35px;
}

.all_greeting {
  display: grid;
  grid-template-columns: 3.6fr 5.8fr;
  gap: 3.75rem;
}
.all_greeting ._img {
  -webkit-align-self: baseline;
      -ms-flex-item-align: baseline;
          align-self: baseline;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .all_greeting ._img {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .all_greeting ._img._wide {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .all_greeting {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.all_greeting_copy {
  padding-bottom: 40px;
  padding-left: 8px;
  position: relative;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_greeting_copy {
    font-size: 20px;
  }
}
.all_greeting_copy svg {
  width: 33px;
  position: absolute;
  left: 0;
  top: -4px;
}
@media screen and (max-width: 600px) {
  .all_greeting_copy svg {
    width: 29px;
  }
}
.all_greeting_copy svg * {
  fill: var(--sub-color);
}
.all_greeting_copy .all_greeting_copy_text {
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.all_greeting_name {
  margin-top: 60px;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}
.all_greeting_name ._big {
  margin-left: 20px;
  display: inline-block;
  font-size: 28px;
}

.all_3col_button_sec {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 1.5rem;
}
@media screen and (max-width: 768px) {
  .all_3col_button_sec {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .all_3col_button_sec {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.all_3col_button_sec + .all_3col_button_sec {
  margin-top: 65px;
  padding-top: 55px;
  border-top: 2px dashed #E6E6E6;
}
.all_3col_button_sec ._text {
  font-weight: bold;
}
.all_3col_button_sec.all_3col_button_sec_pdf .all_button a {
  height: 68px;
}

.all_sub_contact {
  margin-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 600px) {
  .all_sub_contact {
    padding-bottom: 56px;
  }
}
.all_sub_contact + .all_2col_section {
  margin-top: 0;
}
.all_sub_contact .all_sub_contact_item {
  border-radius: 12px;
  border: 2px solid #E6E6E6;
  padding: 70px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.all_sub_contact .all_sub_contact_item ._inner {
  position: relative;
  z-index: 1;
}
.all_sub_contact .all_sub_contact_item ._icon {
  width: 321px;
  position: absolute;
  right: 17px;
  bottom: -23px;
  opacity: 0.08;
}
.all_sub_contact .all_sub_contact_item ._icon svg {
  width: 100%;
  height: 100%;
}
.all_sub_contact .all_sub_contact_item ._icon svg * {
  fill: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .all_sub_contact .all_sub_contact_item ._icon {
    opacity: 0.15;
  }
}
.all_sub_contact .all_sub_contact_item .all_more_button {
  position: absolute;
  right: 2.5rem;
  bottom: 20px;
}
@media screen and (max-width: 600px) {
  .all_sub_contact .all_sub_contact_item .all_more_button {
    right: 20px;
    bottom: 5px;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_contact .all_sub_contact_item {
    padding-bottom: 84px;
  }
  .all_sub_contact .all_sub_contact_item ._icon {
    width: 292px;
    right: -34px;
  }
}
.all_sub_contact ._title {
  padding-left: 25px;
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_sub_contact ._title {
    padding-left: 22px;
    font-size: 20px;
  }
}
.all_sub_contact ._tel ._title::before {
  content: "";
  display: block;
  background: url("../images/all_sub_contact_tel.png") no-repeat center top/cover;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .all_sub_contact ._tel ._title::before {
    width: 21px;
    height: 21px;
  }
}
.all_sub_contact ._text_mid {
  margin-top: 40px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_sub_contact ._text_mid {
    margin-top: 30px;
  }
}
.all_sub_contact ._tel_number {
  margin-top: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
  font-size: 36px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--sub-color);
}
.all_sub_contact ._tel_number a {
  font-family: inherit;
  text-decoration: underline;
  color: inherit;
}
.all_sub_contact ._tel_number ._small {
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .all_sub_contact ._tel_number {
    font-size: 32px;
  }
  .all_sub_contact ._tel_number ._small {
    font-size: 16px;
  }
}
.all_sub_contact .all_text {
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 600px) {
  .all_sub_contact .all_text {
    font-size: 14px;
  }
}
.all_sub_contact .all_text ._tel {
  color: var(--sub-color);
  font-weight: bold;
}

.all_2col_bottom_link {
  background: #F5F5F5;
  padding: 90px 0 75px;
}
@media screen and (max-width: 600px) {
  .all_2col_bottom_link {
    padding: 78px 0 50px;
  }
}
.all_2col_bottom_link ._title {
  font-weight: bold;
  font-size: 28px;
}
.all_2col_bottom_link ._title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.all_2col_bottom_link ._title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media screen and (max-width: 600px) {
  .all_2col_bottom_link ._title {
    font-size: 24px;
  }
}
.all_2col_bottom_link .all_3col_button_sec {
  margin-top: 38px;
}
@media screen and (max-width: 600px) {
  .all_2col_bottom_link .all_3col_button_sec {
    margin-top: 24px;
  }
}

.all_sub_table {
  width: 100%;
  margin-top: 70px;
  border: 2px solid #E6E6E6;
}
.all_sub_table thead {
  background: #EFEFF0;
}
.all_sub_table thead th:first-of-type + th {
  border-left: 2px solid #DADADA;
}
.all_sub_table thead th + th {
  border-left: 2px solid #DADADA;
}
.all_sub_table thead th {
  padding: 10px 0;
}
.all_sub_table ._border_solid._border_solid {
  border-left: 2px solid #DADADA;
}
.all_sub_table th, .all_sub_table td {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.all_sub_table th ._small, .all_sub_table td ._small {
  font-size: 17px;
  font-weight: normal;
}
.all_sub_table tbody tr + tr {
  border-top: 2px solid #EDEDED;
}
.all_sub_table tbody td, .all_sub_table tbody th {
  min-height: 70px;
  padding: 20px 0;
}
.all_sub_table tbody th {
  background: #F9F9F9;
}
.all_sub_table tbody th + td {
  border-left: 2px solid #EDEDED;
}
.all_sub_table tbody td + td {
  border-left: 2px dashed #E6E6E6;
}
.all_sub_table .open {
  font-size: 14px;
}
.all_sub_table .open::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 4px auto;
  border: 3px solid var(--sub-color);
  border-radius: 50%;
}
.all_sub_table .recess {
  font-size: 0;
}
.all_sub_table .recess::before {
  content: "";
  background: #2E2E2E;
  display: inline-block;
  width: 16px;
  height: 1px;
}
.all_sub_table ._border_left._border_solid._border_solid._border_solid {
  border-left: 2px solid #E6E6E6;
}

.all_swipe_item.swipe_active {
  width: 100%;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.all_swipe_item.swipe_active > * {
  min-width: 1000px;
}

.all_swipe_item.swipe_active.on::before {
  content: "";
  display: block;
  background: url("../images/all_swipe_icon.png") no-repeat center right/100%;
  width: 183px;
  height: 124px;
  position: absolute;
  top: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: swipeScroll 3s infinite;
          animation: swipeScroll 3s infinite;
  z-index: 5;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  pointer-events: none;
}

@-webkit-keyframes swipeScroll {
  0%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes swipeScroll {
  0%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.all_swipe_item.swipe_active.on.none::before {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}

.all_swipe_item.swipe_active > * {
  position: relative;
}

.all_swipe_item.on.none > *::before {
  opacity: 0;
}

.all_pagination {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_pagination ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_pagination ul.page-numbers .page-numbers {
  height: 52px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  margin: 0 13px;
  font-size: 17px;
  font-family: "roboto", sans-serif;
  font-weight: bold;
  color: #2E2E2E;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_pagination ul.page-numbers .page-numbers.current {
  opacity: 0.4;
}
.all_pagination ul.page-numbers .page-numbers.dots {
  background: url("../images/all_pagination_dots.svg") no-repeat center/contain;
  width: 13px;
  margin: 0 12px;
  font-size: 0;
  border: none;
}
.all_pagination ul.page-numbers .prev, .all_pagination ul.page-numbers .next {
  width: 0;
  margin: 0 !important;
  min-width: auto;
  text-indent: -9999px;
}
.all_pagination ._button a {
  width: 52px;
  height: 52px;
  position: relative;
  border: 1px solid #D6D7D9;
  border-radius: 50%;
  display: block;
  pointer-events: none;
  opacity: 0.2;
}
.all_pagination ._button a.active {
  opacity: 1;
  pointer-events: auto;
}
.all_pagination ._button a ._arrow {
  width: 10px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  line-height: 0;
}
.all_pagination ._button a ._arrow svg {
  width: 100%;
  height: 100%;
}
.all_pagination ._button a ._arrow svg * {
  fill: var(--sub-color);
}
.all_pagination ._button._prev a ._arrow {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
          transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.all_pagination ._button._next a ._arrow {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
          transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.all_sub_mv {
  background: var(--gradient-color);
  width: 100%;
  height: 410px;
  position: relative;
  overflow: hidden;
}
.all_sub_mv ._text {
  width: 80%;
  color: white;
  letter-spacing: 0.03em;
  font-size: 44px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  line-height: 1.5;
  -webkit-animation: fadein 1s ease both;
          animation: fadein 1s ease both;
}
@media screen and (max-width: 600px) {
  .all_sub_mv ._text {
    width: 100%;
    top: 40%;
    left: 20px;
  }
}
.all_sub_mv ._text .all_sub_mv_icon {
  width: auto;
  height: 46px;
  margin-right: 40px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 600px) {
  .all_sub_mv ._text .all_sub_mv_icon {
    margin-right: 10px;
  }
}
.all_sub_mv .all_text {
  -webkit-animation: fadein 1s 0.4s ease both;
          animation: fadein 1s 0.4s ease both;
}
.all_sub_mv .all_suv_mv_object {
  width: 422px;
  position: absolute;
  bottom: -12%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  .all_sub_mv {
    height: 237px;
  }
  .all_sub_mv ._text {
    font-size: 28px;
  }
  .all_sub_mv .all_suv_mv_object {
    width: 274px;
    bottom: -29%;
    right: -8%;
  }
  .all_sub_mv._has_sub_text {
    height: auto;
    padding: 80px 0;
  }
}
.all_sub_mv._left_parts {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 560px;
  position: relative;
}
.all_sub_mv._left_parts._medicine {
  background-image: url(../images/all_sub_mv_medicine.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._medicine {
    background-image: url(../images/all_sub_mv_medicine_sp.jpg);
  }
}
.all_sub_mv._left_parts._kidney_center {
  background-image: url(../images/all_sub_mv_kidney_center.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._kidney_center {
    background-image: url(../images/all_sub_mv_kidney_center_sp.jpg);
  }
}
.all_sub_mv._left_parts._nurse {
  background-image: url(../images/all_sub_mv_nurse.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._nurse {
    background-image: url(../images/all_sub_mv_nurse_sp.jpg);
  }
}
.all_sub_mv._left_parts.left_recruit {
  background-image: url(../images/all_sub_mv_recruit.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts.left_recruit {
    background-image: url(../images/all_sub_mv_recruit_sp.jpg);
  }
}
.all_sub_mv._left_parts .all_text {
  max-width: 450px;
  padding: 0 20px 0 0;
  position: absolute;
  top: 68%;
  left: 10%;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts .all_text {
    top: 55%;
    left: 20px;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .all_sub_mv._left_parts._nurse {
    background-position: 77% center;
  }
}
.all_sub_mv._left_parts._outpatient {
  background-image: url(../images/all_sub_mv_outpatient.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._outpatient {
    background-image: url(../images/all_sub_mv_outpatient_sp.jpg);
  }
}
.all_sub_mv._left_parts._outpatient::after {
  background-image: url(../images/all_sub_mv_left_parts_outpatient.png);
}
.all_sub_mv._left_parts._hospitalization {
  background-image: url(../images/all_sub_mv_hospitalization.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._hospitalization {
    background-image: url(../images/all_sub_mv_hospitalization_sp.jpg);
  }
}
.all_sub_mv._left_parts._hospitalization::after {
  background-image: url(../images/all_sub_mv_left_parts_hospitalization.png);
}
.all_sub_mv._left_parts._checkup {
  background-image: url(../images/all_sub_mv_checkup.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._checkup {
    background-image: url(../images/all_sub_mv_checkup_sp.jpg);
  }
}
.all_sub_mv._left_parts._checkup::after {
  background-image: url(../images/all_sub_mv_left_parts_checkup.png);
}
.all_sub_mv._left_parts._medical_departments {
  background-image: url(../images/all_sub_mv_medical_departments.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._medical_departments {
    background-image: url(../images/all_sub_mv_medical_departments_sp.jpg);
  }
}
.all_sub_mv._left_parts._medical_departments::after {
  background-image: url(../images/all_sub_mv_left_parts_medical_departments.png);
}
.all_sub_mv._left_parts._about {
  background-image: url(../images/all_sub_mv_about.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._about {
    background-image: url(../images/all_sub_mv_about_sp.jpg);
  }
}
.all_sub_mv._left_parts._about::after {
  background-image: url(../images/all_sub_mv_left_parts_blue.png);
}
.all_sub_mv._left_parts._department {
  background-image: url(../images/all_sub_mv_department.jpg);
}
@media screen and (max-width: 600px) {
  .all_sub_mv._left_parts._department {
    background-image: url(../images/all_sub_mv_department_sp.jpg);
  }
}
.all_sub_mv._left_parts p {
  z-index: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.department .all_sub_mv ._text {
  top: 50%;
}
.department .department_main .all_grid_sec {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .department .department_main .all_grid_sec {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 600px) {
  .department .department_main .all_grid_sec ._item_title {
    margin-top: 0;
  }
}
.department .department_main .all_grid_sec .all_text {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .department .department_main .all_grid_sec .all_text {
    margin-top: 20px;
  }
}
.department .department_main .all_grid_sec .all_more_button {
  margin-top: 45px;
}
@media screen and (max-width: 600px) {
  .department .department_main .all_grid_sec .all_more_button {
    margin-top: 25px;
  }
}

.hospitalization .hospitalization_main1 .all_grid_sec {
  margin-bottom: 70px;
}
@media screen and (max-width: 600px) {
  .hospitalization .hospitalization_main1 .all_grid_sec {
    margin-bottom: 35px;
  }
}
.hospitalization .hospitalization_main2 .all_text {
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .hospitalization .hospitalization_main2 .all_text {
    margin-top: 20px;
  }
}
.hospitalization .hospitalization_main2 .all_more_button {
  margin-top: 85px;
}
@media screen and (max-width: 600px) {
  .hospitalization .hospitalization_main2 .all_more_button {
    margin-top: 25px;
  }
}

.all_2col_section.department_footer .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .all_2col_section.department_footer .content {
    display: block;
  }
}
.all_2col_section.department_footer .all_sub_contact_item {
  width: 48%;
  padding: 70px 20px 75px;
}
@media (max-width: 1300px) {
  .all_2col_section.department_footer .all_sub_contact_item {
    padding: 50px 20px 95px;
  }
}
@media screen and (max-width: 600px) {
  .all_2col_section.department_footer .all_sub_contact_item {
    width: 100%;
    margin-bottom: 24px;
  }
}
.all_2col_section.department_footer .all_sub_contact_item ._icon {
  width: 270px;
  right: -30px;
}
.all_2col_section.department_footer .all_sub_contact_item:hover .all_more_button ._circle {
  background-color: var(--sub-color);
  border: 2px solid var(--sub-color);
}
.all_2col_section.department_footer .all_sub_contact_item:hover .all_more_button ._circle * {
  fill: #fff;
}
.all_2col_section.department_footer ._title {
  padding-left: 30px;
  margin-bottom: 5px;
}
.all_2col_section.department_footer ._title._recruit::before {
  background: url(../images/all_sub_contact_recruit.png) no-repeat center top/contain;
}
.all_2col_section.department_footer ._text_mid {
  margin-top: 20px;
}
.all_2col_section.department_footer ._tel_number {
  line-height: 1.5;
}
.all_2col_section.department_footer ._tel_number span {
  font-size: 21px;
}
.all_2col_section.department_footer ._tel_number a {
  text-decoration: none;
  border-bottom: 1px solid var(--sub-color);
}
.all_2col_section.department_footer .all_text {
  font-size: 14px;
}
.all_2col_section.department_footer .all_text._recruit {
  max-width: 330px;
  margin: 36px auto 0;
  line-height: 2;
}
.all_2col_section.department_footer .all_sub_button {
  max-width: 300px;
  width: 100%;
  margin: 28px auto 0;
  border-radius: 34px;
  border: 2px solid #E6E6E6;
}
.all_2col_section.department_footer .all_sub_button a {
  width: 100%;
  padding: 20px 25px 20px 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  color: #2E2E2E;
}
.all_2col_section.department_footer .all_more_button {
  right: 30px;
}
@media (max-width: 1300px) {
  .all_2col_section.department_footer .all_more_button {
    right: 20px;
    bottom: 10px;
  }
}
.all_2col_section.department_footer .all_more_button ._circle * {
  fill: var(--sub-color);
}

.all_sub_department .all_greeting {
  grid-template-columns: 5fr 5fr;
}
@media screen and (max-width: 600px) {
  .all_sub_department .all_greeting {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_department .all_greeting ._text_sec {
    margin-top: 36px;
  }
}
.all_sub_department .all_greeting .all_greeting_copy {
  font-size: 22px;
  line-height: 1.9;
}
@media screen and (max-width: 600px) {
  .all_sub_department .all_greeting .all_greeting_copy {
    font-size: 19px;
  }
}
.all_sub_department .all_greeting .all_button {
  max-width: 278px;
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .all_sub_department .all_greeting .all_button {
    margin-top: 36px;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_department .all_greeting .all_button {
    max-width: 318px;
    margin: 36px auto 0;
  }
}
.all_sub_department .all_greeting .all_button a span {
  font-weight: bold;
}
.all_sub_department .all_3col_button_sec .all_button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_sub_department .all_3col_button_sec .all_button a span {
  font-weight: bold;
}

.thanks .thanks_title {
  position: relative;
  margin-bottom: 70px;
  padding-top: 36px;
  font-size: 32px;
  font-weight: bold;
  color: var(--sub-color);
}
@media screen and (max-width: 768px) {
  .thanks .thanks_title {
    margin-bottom: 36px;
    padding-top: 32px;
    font-size: 24px;
  }
}
.thanks .all_button {
  margin-top: 70px;
  width: 315px;
}
@media screen and (max-width: 600px) {
  .thanks .all_button {
    width: 100%;
  }
}
.thanks .mw_wp_form {
  display: none;
}

.all_slider_control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_slider_control ._scrollbar {
  background: #ebebea;
  width: calc(100% - 176px);
  height: 4px;
  border-right: 2px;
}
@media screen and (max-width: 768px) {
  .all_slider_control ._scrollbar {
    width: calc(100% - 146px);
    height: 3px;
  }
}
.all_slider_control ._scrollbar .swiper-scrollbar-drag {
  background: #a8a8a8;
}
.all_slider_control ._nav {
  width: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .all_slider_control ._nav {
    width: 120px;
  }
}
.all_slider_control ._nav button {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_slider_control ._nav ._prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.all_slider_control ._nav .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}
.all_slider_control .all_arrow_circle {
  width: 64px;
  height: 64px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .all_slider_control .all_arrow_circle:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .all_slider_control .all_arrow_circle {
    width: 56px;
    height: 56px;
  }
}
.all_slider_control .all_arrow_circle::before {
  content: "";
  display: block;
  background: transparent;
  border: 1px solid #ebebea;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_slider_control .all_arrow_circle ._arrow {
  width: 15px;
  height: 15px;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.all_slider_control .all_arrow_circle ._arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--sub-color);
}
.all_slider_control ._bold {
  font-weight: bold;
}

.all_data-graph {
  background-color: #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}

.all_data-graph__bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  padding-right: 15px;
  background-color: var(--sub-color);
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  width: attr(data-percent);
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar {
    padding: 9px 0;
  }
}

.all_data-graph__bar .num {
  padding: 0 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar .num {
    padding: 0 5px;
    font-size: 17px;
  }
}

.all_data-graph__bar .txt {
  padding: 0 10px;
  white-space: nowrap;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar .txt {
    padding: 0 5px;
    font-size: 17px;
  }
}

.all_data-graph__bar .num:empty,
.all_data-graph__bar .txt:empty {
  padding: 0;
}

.all_data-graph__bar.none {
  width: 100% !important;
  opacity: 0.75;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.all_data-graph__bar.none .num {
  display: none;
}

.all_data-graph__bar.none .txt {
  width: 100%;
  text-align: center;
}

.all_data-graph__bar.txt-only {
  width: 100% !important;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  font-weight: bolder;
}

.all_data-graph__bar.txt-only .txt {
  font-weight: bolder;
}

@media screen and (max-width: 768px) {
  .hide-tab2 {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hide-sp {
    display: none;
  }
}

.hide-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .hide-pc {
    display: inherit;
  }
}

.all_table_limit {
  position: relative;
}
.all_table_limit .all_table_limit_text {
  background: #D30000;
  max-width: 314px;
  width: 90%;
  padding: 18px 10px;
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 17px;
  line-height: 1.6470588235;
  font-weight: bold;
  z-index: 10;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .all_table_limit .all_table_limit_text {
    font-size: 18px;
  }
}
.all_table_limit .all_table_limit_text a {
  color: inherit;
  pointer-events: auto;
  text-decoration: underline;
}
.all_table_limit .all_table {
  opacity: 0.5;
}

.all_table {
  width: 100%;
  border: 2px solid #e6e6e6;
  font-size: 17px;
  table-layout: fixed;
}
.all_table th,
.all_table td {
  padding: 16px 30px;
  border: 2px solid #e6e6e6;
  line-height: 2;
}
.all_table th {
  background: #f9f9f9;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  border-right-style: dashed;
}
.all_table th + td {
  border-left: 0;
}
@media screen and (max-width: 600px) {
  .all_table th, .all_table td {
    padding: 12px 20px;
  }
}

.all_table_top_note {
  text-align: right;
  margin-bottom: 5px;
}

.all_top_news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.all_top_news ._img {
  width: 56%;
  border-radius: 12px;
  overflow: hidden;
}
.all_top_news ._text {
  width: 44%;
  padding-left: 3.75rem;
}
.all_top_news ._text ._text_ttl {
  padding-bottom: 40px;
  padding-left: 8px;
  position: relative;
  font-size: 22px;
  font-weight: bold;
}
.all_top_news ._text ._text_ttl svg {
  width: 33px;
  position: absolute;
  left: 0;
  top: -4px;
}
.all_top_news ._text ._text_ttl svg * {
  fill: var(--sub-color);
}
@media screen and (max-width: 768px) {
  .all_top_news {
    gap: 40px;
  }
  .all_top_news ._img,
  .all_top_news ._text {
    width: 100%;
  }
  .all_top_news ._text {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .all_sub_nobc .all_2col_container {
    padding-top: 65px;
  }
  .all_sub_nobc .all_2col_container .all_breadcrumb {
    display: none;
  }
}

.all_quote {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.9090909091;
  position: relative;
  padding-left: 8px;
}
.all_quote svg {
  width: 33px;
  position: absolute;
  left: 0;
  top: -4px;
  fill: var(--sub-color);
}
.all_quote_copy {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .all_quote {
    font-size: 20px;
  }
}

.all_link {
  color: #0062FF;
  text-decoration: underline;
}

.caution_sec {
  margin-top: 52px;
  padding: 36px 60px 40px 60px;
}
@media screen and (max-width: 600px) {
  .caution_sec {
    margin-top: 65px;
    padding: 37px 23px 33px 23px;
  }
}
.caution_sec .all_gray_order_list li {
  padding-left: 32px;
  padding-bottom: 30px;
}
.caution_sec .all_gray_order_list li::before {
  content: counter(listNum) ".";
  background: none;
  border: none;
}
.caution_sec .all_gray_order_list li::after {
  content: none;
}
.caution_sec .all_gray_order_list li .all_text {
  line-height: 1.76;
}

.title-caution {
  font-size: 24px;
  color: var(--sub-color);
  font-weight: bold;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
}
@media screen and (max-width: 600px) {
  .title-caution {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.03em;
    gap: 8px;
  }
}
.title-caution ._icon {
  width: 29px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.title-caution ._icon svg {
  fill: var(--sub-color);
}

.ref {
  font-weight: 500;
  margin-left: 5px;
}

.all_slider_control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.all_slider_control ._scrollbar {
  background: #ebebea;
  width: calc(100% - 176px);
  height: 4px;
  border-right: 2px;
}
@media screen and (max-width: 768px) {
  .all_slider_control ._scrollbar {
    width: calc(100% - 146px);
    height: 3px;
  }
}

.all_slider_control ._nav {
  width: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .all_slider_control ._nav {
    width: 120px;
  }
}

.all_slider_control ._nav button {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.all_slider_control ._nav ._prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.all_slider_control ._nav .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.all_arrow_circle {
  width: 64px;
  height: 64px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .all_arrow_circle:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .all_arrow_circle {
    width: 56px;
    height: 56px;
  }
}

.all_arrow_circle::before {
  content: "";
  display: block;
  background: #f9f9f9;
  border: 1px solid #ebebea;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.all_arrow_circle ._arrow {
  width: 34.1538461538%;
  height: 33%;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.all_arrow_circle ._arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--sub-color);
}

._bold {
  font-weight: bold;
}

.all_data-graph {
  background-color: #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}

.all_data-graph__bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  padding-right: 15px;
  background-color: var(--sub-color);
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px 0 0 8px;
  width: attr(data-percent);
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar {
    padding: 9px 0;
  }
}

.all_data-graph__bar .num {
  padding: 0 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar .num {
    padding: 0 5px;
    font-size: 17px;
  }
}

.all_data-graph__bar .txt {
  padding: 0 10px;
  white-space: nowrap;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_data-graph__bar .txt {
    padding: 0 5px;
    font-size: 17px;
  }
}

.all_data-graph__bar .num:empty,
.all_data-graph__bar .txt:empty {
  padding: 0;
}

.all_data-graph__bar.none {
  width: 100% !important;
  opacity: 0.75;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
}

.all_data-graph__bar.none .num {
  display: none;
}

.all_data-graph__bar.none .txt {
  width: 100%;
  text-align: center;
}

.all_data-graph__bar.txt-only {
  width: 100% !important;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #fff;
  font-weight: bolder;
}

.all_data-graph__bar.txt-only .txt {
  font-weight: bolder;
}

@media screen and (max-width: 768px) {
  .hide-tab2 {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hide-sp {
    display: none;
  }
}

.hide-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .hide-pc {
    display: inherit;
  }
}

.all_table {
  width: 100%;
  border: 2px solid #e6e6e6;
  table-layout: fixed;
}
.all_table th,
.all_table td {
  padding: 16px 30px;
  border: 2px solid #e6e6e6;
  font-size: 17px;
  line-height: 2;
}
.all_table th {
  background: #f9f9f9;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}
.all_table th + td {
  border-left: 0;
}
.all_table th._gray:not(:last-child) {
  border-right-color: #dadada;
}
.all_table ._gray {
  background-color: #ebebeb;
}
.all_table .td_dashed_r {
  border-right-style: dashed;
}
.all_table .td_dashed_l {
  border-left-style: dashed;
}
.all_table .td_solid_r {
  border-right-style: solid;
}
.all_table th:not(:last-child),
.all_table td:not(:last-child) {
  border-right-style: dashed;
}
.all_table th:not(:first-child),
.all_table td:not(:first-child) {
  border-left-style: dashed;
}
.all_table thead {
  background: #efeff0;
}
.all_table thead th:first-of-type + th {
  border-left: 2px solid #dadada;
}
.all_table thead th + th {
  border-left: 2px dashed #dadada;
}
.all_table thead th {
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .all_table th,
  .all_table td {
    padding: 12px 20px;
  }
}

.all_table_top_note {
  text-align: right;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 2;
}

.all_top_news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.all_top_news ._img {
  width: 56%;
  border-radius: 12px;
  overflow: hidden;
}
.all_top_news ._text {
  width: 44%;
  padding-left: 3.75rem;
}
.all_top_news ._text ._text_ttl {
  padding-bottom: 40px;
  padding-left: 8px;
  position: relative;
  font-size: 22px;
  font-weight: bold;
}
.all_top_news ._text ._text_ttl svg {
  width: 33px;
  position: absolute;
  left: 0;
  top: -4px;
}
.all_top_news ._text ._text_ttl svg * {
  fill: var(--sub-color);
}
@media screen and (max-width: 768px) {
  .all_top_news {
    gap: 40px;
  }
  .all_top_news ._img,
  .all_top_news ._text {
    width: 100%;
  }
  .all_top_news ._text {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .all_sub_nobc .all_2col_container {
    padding-top: 65px;
  }
  .all_sub_nobc .all_2col_container .all_breadcrumb {
    display: none;
  }
}

.all_quote {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.9090909091;
  position: relative;
  padding-left: 8px;
}
.all_quote svg {
  width: 33px;
  position: absolute;
  left: 0;
  top: -4px;
  fill: var(--sub-color);
}
.all_quote_copy {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .all_quote {
    font-size: 20px;
  }
}

.all_link {
  color: #0062ff;
  text-decoration: underline;
}

.title-caution {
  font-size: 24px;
  color: var(--sub-color);
  font-weight: bold;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
}
@media screen and (max-width: 600px) {
  .title-caution {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.03em;
    gap: 8px;
  }
}
.title-caution ._icon {
  width: 29px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 2px;
}
.title-caution ._icon svg {
  fill: var(--sub-color);
}

.ref {
  font-weight: 500;
  margin-left: 5px;
}

.all_more_button > * {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.all_more_button ._circle {
  position: relative;
}
.all_more_button ._arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.all_more_button ._arrow_blank {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.all_sub_title ._upper_title_h1 {
  font-weight: bold;
  font-size: 20px;
  color: var(--sub-color);
  padding-left: 38px;
  position: relative;
}
.all_sub_title ._upper_title_h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 29px;
  height: 29px;
}
.all_sub_title ._upper_title_h1._icon_hospitalization::before {
  background-image: url(../images/icon_hospitalization.svg);
}
.all_sub_title ._upper_title_h1._icon_about::before {
  background-image: url(../images/icon_about.svg);
}
.all_sub_title ._upper_title_h1._icon_checkup::before {
  background-image: url(../images/icon_checkup.svg);
  width: 33px;
  height: 38px;
}
.all_sub_title ._upper_title_h1._icon_department::before {
  background-image: url(../images/icon_department.svg);
}
@media screen and (max-width: 768px) {
  .all_sub_title ._upper_title_h1 {
    padding-left: 32px;
    font-size: 16px;
  }
  .all_sub_title ._upper_title_h1::before {
    width: 20px;
    height: 20px;
  }
  .all_sub_title ._upper_title_h1._icon_checkup::before {
    width: 25px;
    height: 29px;
  }
  .all_sub_title ._upper_title_h1._icon_department {
    padding-left: 28px;
  }
  .all_sub_title ._upper_title_h1._icon_department::before {
    width: 16px;
    height: 22px;
  }
}

.all_sub_time_title {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .all_sub_time_title {
    margin-bottom: 36px;
  }
}

.all_sub_icon_title {
  position: relative;
  padding-left: 46px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .all_sub_icon_title {
    font-size: 24px;
    padding-left: 30px;
  }
}
.all_sub_icon_title::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 26px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .all_sub_icon_title::before {
    width: 21px;
    height: 21px;
  }
}
.all_sub_icon_title._icon_email::before {
  background-image: url("../images/all_icon_email.svg");
}
.all_sub_icon_title._icon_call::before {
  background-image: url("../images/all_icon_tel.svg");
  width: 32px;
  height: 32px;
}

.all_list_num li {
  counter-increment: numberA;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 25px;
  line-height: 2;
  font-size: 17px;
  line-height: 2;
}
.all_list_num li::before {
  position: absolute;
  content: counter(numberA) ".";
  min-width: 17px;
  margin-right: 8px;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sub-color);
  left: 0;
  top: 5px;
}
.all_list_num li .li_ttl {
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
}
.all_list_num li p + p {
  margin-top: 19px;
}
.all_list_num li + li {
  margin-top: 35px;
}

.all_list_note li {
  font-size: 17px;
  line-height: 1.7647058824;
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.all_list_note li::before {
  content: "※";
  margin-right: 4px;
}
.all_list_note li + li {
  margin-top: 15px;
}

.all_3col_button_sec.all_3col_button_sec_pdf .all_button a {
  height: 68px;
}
.all_3col_button_sec.all_3col_button_sec_pdf .all_button a ._text {
  font-weight: bold;
}

.department .all_sub_mv ._text .all_sub_mv_icon {
  height: 50px;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 600px) {
  .department .all_sub_mv ._text .all_sub_mv_icon {
    height: 38px;
  }
}

.all_sub_mv ._text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_sub_mv._sub_txt .all_sub_txt {
  max-width: 500px;
  position: absolute;
  top: 45%;
  right: 10%;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_sub_mv._sub_txt .all_sub_txt {
    top: 55%;
    left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .all_sub_mv._sub_txt {
    height: 400px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .all_sub_mv._sub_txt .all_sub_mv__in {
    width: 80%;
    padding: 0 20px;
    margin: auto;
  }
  .all_sub_mv._sub_txt .all_sub_mv__in ._text {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
  .all_sub_mv._sub_txt .all_sub_mv__in .all_sub_txt {
    position: static;
    margin-top: 60px;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_mv._sub_txt .all_sub_mv__in {
    width: 100%;
  }
}
.all_sub_mv ._text .all_sub_mv_icon_title {
  width: 54px;
  height: 62px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 30px;
}
@media screen and (max-width: 600px) {
  .all_sub_mv ._text .all_sub_mv_icon_title {
    width: 36px;
    height: 38px;
    margin-right: 10px;
  }
}

.all_button a ._text,
button ._text {
  font-weight: bold;
}

.all_accordion_list ._item {
  border-bottom: 2px dashed #e6e6e6;
}
.all_accordion_list ._item:first-child {
  border-top: 2px dashed #e6e6e6;
}
.all_accordion_list ._item ._item_head {
  padding: 20px 20px;
  position: relative;
  cursor: pointer;
}
.all_accordion_list ._item ._item_head ._text {
  font-weight: bold;
  font-size: 19px;
}
.all_accordion_list ._item ._item_head ._arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
}
.all_accordion_list ._item ._item_head ._arrow svg {
  display: block;
  fill: var(--sub-color);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.all_accordion_list ._item ._item_head.is-active ._arrow svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.all_accordion_list ._item ._item_body {
  padding: 20px 0;
  display: none;
}

.all_tel {
  font-weight: bold;
  color: #0057b0;
  text-decoration: underline;
}

.transfusion .all_text + .all_text {
  margin-top: 20px;
}

.transfusion .all_text strong {
  font-weight: 700;
}

.transfusion .about_safetycolumn {
  margin-top: 80px;
}

.transfusion .about_safetynumlist_li + .about_safetynumlist_li {
  margin-top: 40px;
}

.transfusion .all_2col_section + .all_2col_section {
  margin-top: 120px;
}

.transfusion .all_sub_title_02.-second {
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .transfusion .all_2col_section + .all_2col_section {
    margin-top: 68px;
  }
}
.all_sub_department .all_sub_table .recess::before {
  display: none;
}

.all_text .default_color {
  color: rgb(46, 46, 46);
  text-decoration: none;
}

.p-contact__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}

.p-contact__flex ._item {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-contact__flex ._item {
    width: 100%;
  }
}

.p-contact__flex ._item ._tel_sm {
  font-size: 24px;
}

.all_sub_contact ._tel_number.mt-18 {
  margin-top: 18px;
}

.all_sub_contact .-sm.all_text {
  font-size: 15px;
}

.all_sub_contact .all_sub_contact_item ._icon {
  right: -40px;
  bottom: -29px;
}

.all_sub_contact .all_sub_contact_item {
  padding: 70px 14px 80px;
}

.all_sub_contact ._tel ._title._cancer::before {
  top: 27%;
}

.all_sub_contact ._title.-right {
  margin-right: 12px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
}
.all_modal.active {
  display: block;
}
.all_modal ._bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.all_modal_item {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  height: 90svh;
  height: 90vh;
  width: 80%;
  max-width: 1120px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .all_modal_item {
    width: 90%;
  }
}
.all_modal_item ._inner {
  height: 100%;
  padding: 130px 120px 80px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .all_modal_item ._inner {
    padding: 110px 20px 50px;
  }
}
.all_modal_item ._close_btn {
  background: var(--sub-color);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: absolute;
  right: -90px;
  top: 8px;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .all_modal_item ._close_btn {
    width: 60px;
    height: 60px;
    top: 26px;
    right: 18px;
  }
}
.all_modal_item ._close_btn ._icon {
  width: 29.1666666667%;
  height: 29.1666666667%;
  margin-top: 25%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.all_modal_item ._close_btn ._icon div {
  background: #fff;
  width: 141%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-radius: 999px;
}
.all_modal_item ._close_btn ._icon div:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
          transform: rotate(45deg) translateX(-50%) translateY(-50%);
}
.all_modal_item ._close_btn ._icon div:nth-of-type(2) {
  -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
          transform: rotate(-45deg) translateX(-50%) translateY(-50%);
}
.all_modal_item ._close_btn ._close_text {
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .all_modal_item ._close_btn ._close_text {
    font-size: 11px;
  }
}

.all_modal._search .all_modal_item {
  height: auto;
  max-width: 840px;
}
.all_modal._search .all_modal_item ._inner {
  padding: 70px;
}
@media screen and (max-width: 600px) {
  .all_modal._search .all_modal_item ._inner {
    padding: 85px 20px 70px;
  }
}
.all_modal._search .all_modal_item ._close_btn {
  background: var(--color-006);
}
@media screen and (max-width: 600px) {
  .all_modal._search .all_modal_item ._close_btn {
    background: transparent;
  }
  .all_modal._search .all_modal_item ._close_btn ._icon div {
    background: #797979;
  }
  .all_modal._search .all_modal_item ._close_btn ._close_text {
    color: #2E2E2E;
  }
}
.all_modal._search ._title {
  padding-left: 60px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_modal._search ._title {
    font-size: 20px;
  }
}
.all_modal._search ._title::before {
  content: "";
  display: block;
  background: url(../images/top_search_icon_search.svg) no-repeat center top/cover;
  width: 49px;
  height: 49px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.all_modal._search ._form {
  width: 100%;
  margin-top: 28px;
  font-size: 0;
  letter-spacing: 0;
  white-space: nowrap;
}
.all_modal._search ._form input {
  height: 60px;
}
.all_modal._search ._form input[type=text] {
  width: calc(100% - 100px);
  border-radius: 12px 0 0 12px;
  border: 1px solid #E8E8E8;
  border-right: none;
  padding: 0 30px;
  font-size: 17px;
}
.all_modal._search ._form input[type=text]::-webkit-input-placeholder {
  color: #B4B4B4;
}
.all_modal._search ._form input[type=text]::-moz-placeholder {
  color: #B4B4B4;
}
.all_modal._search ._form input[type=text]:-ms-input-placeholder {
  color: #B4B4B4;
}
.all_modal._search ._form input[type=text]::-ms-input-placeholder {
  color: #B4B4B4;
}
.all_modal._search ._form input[type=text]::placeholder {
  color: #B4B4B4;
}
@media screen and (max-width: 600px) {
  .all_modal._search ._form input[type=text] {
    width: calc(100% - 60px);
  }
}
.all_modal._search ._form input[type=submit] {
  background-color: #4382C0;
  width: 100px;
  border-radius: 0 12px 12px 0;
  border: none;
  font-size: 19px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .all_modal._search ._form input[type=submit] {
    background: url("../images/all_icon_search_white.svg") no-repeat center/21px 21px;
    width: 60px;
    font-size: 0;
    background-color: #4382C0;
  }
}
.all_modal._search ._keyword {
  margin-top: 30px;
}
.all_modal._search ._keyword ._top_text {
  font-size: 14px;
}
.all_modal._search ._keyword ._text_wrap {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 24px;
}
.all_modal._search ._keyword ._text_wrap > * {
  font-size: 17px;
  font-weight: bold;
  color: inherit;
}
.all_modal._search ._keyword ._text_wrap a {
  color: #3C3C3C;
}

.all_modal_item._doctor {
  width: 474px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  left: auto;
}
@media screen and (max-width: 600px) {
  .all_modal_item._doctor {
    width: 355px;
    right: 0;
    border-radius: 12px 0 0 12px;
  }
}
.all_modal_item._doctor ._inner {
  position: relative;
  padding: 45px;
  padding-top: 56px;
}
@media screen and (max-width: 600px) {
  .all_modal_item._doctor ._inner {
    padding: 30px;
  }
}
.all_modal_item._doctor ._head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_modal_item._doctor ._head ._img {
  width: 122px;
  min-width: 122px;
  aspect-ratio: 122/158;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .all_modal_item._doctor ._head ._img {
    width: 100px;
    margin-right: 20px;
  }
}
.all_modal_item._doctor ._head ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.all_modal_item._doctor ._head ._name_sec {
  margin-right: 24px;
}
.all_modal_item._doctor ._head ._role {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_modal_item._doctor ._head ._role {
    font-size: 14px;
  }
}
.all_modal_item._doctor ._head ._name {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_modal_item._doctor ._head ._name {
    font-size: 22px;
  }
}
.all_modal_item._doctor ._head ._ruby {
  font-size: 14px;
}
.all_modal_item._doctor ._content {
  margin-top: 20px;
  height: calc(100% - 300px);
  overflow: auto;
}
.all_modal_item._doctor ._content ._title {
  font-size: 14px;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid #CBCBCB;
}
.all_modal_item._doctor ._content ._textarea {
  margin: 8px 0;
  line-height: 1.8666666667;
  font-size: 15px;
  font-weight: bold;
}
.all_modal_item._doctor ._content ._textarea + ._title {
  margin-top: 30px;
}
.all_modal_item._doctor ._close_btn {
  background: transparent;
  width: 187px;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #DDDDDD;
  border-radius: 9999px;
  position: absolute;
  bottom: 46px;
  top: auto;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all_modal_item._doctor ._close_btn ._icon {
  width: 14px;
  height: 14px;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
}
.all_modal_item._doctor ._close_btn ._icon div {
  background: var(--sub-color);
}
.all_modal_item._doctor ._close_btn ._close_text {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  color: #2E2E2E;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.top {
  background: #F5F8FA;
  padding-top: 120px;
}
@media (max-width: 1200px) {
  .top {
    padding-top: 80px;
  }
}
.top #header {
  background: transparent;
  padding-top: 13px;
  padding-bottom: 13px;
}
.top #header._scroll {
  background: #F5F8FA;
}
.top #container {
  padding: 0 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top #container {
    padding: 0 20px 60px;
  }
}

.top_mv {
  height: calc(100vh - 120px);
  padding-bottom: 25px;
  padding-right: 422px;
}
@media screen and (max-width: 1024px) {
  .top_mv {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top_mv {
    height: auto;
  }
}
.top_mv ._inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_mv ._inner {
    aspect-ratio: 1/1;
  }
}
.top_mv ._copy {
  position: absolute;
  left: 52px;
  bottom: 57px;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  -webkit-transition: opacity 2s 0.8s ease, -webkit-transform 2s 0.8s ease;
  transition: opacity 2s 0.8s ease, -webkit-transform 2s 0.8s ease;
  transition: opacity 2s 0.8s ease, transform 2s 0.8s ease;
  transition: opacity 2s 0.8s ease, transform 2s 0.8s ease, -webkit-transform 2s 0.8s ease;
  font-size: 52px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
}
.top_mv ._copy::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.top_mv ._copy::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media (max-width: 1400px) {
  .top_mv ._copy {
    left: 3.7142857143vw;
    font-size: 3.7142857143vw;
  }
}
@media screen and (max-width: 768px) {
  .top_mv ._copy {
    left: 20px;
    bottom: 30px;
    font-size: 7.4666666667vw;
  }
}

.top_mv_slider {
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s 0.4s ease;
  transition: opacity 1s 0.4s ease;
}
.top_mv_slider.active {
  opacity: 1;
}
.top_mv_slider.active + ._copy {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}
.top_mv_slider .splide__track {
  height: 100%;
}
.top_mv_slider .splide__slide {
  border-radius: 20px;
  overflow: hidden;
}
.top_mv_slider .splide__slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_mv_slider .splide__slide.is-active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: topMvAnim 5s linear both;
          animation: topMvAnim 5s linear both;
}

@-webkit-keyframes topMvAnim {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes topMvAnim {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.top_sp_button_sec {
  margin-top: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_sp_button_sec ._button {
  width: 47.3053892216%;
}
.top_sp_button_sec ._button a {
  background: #0057B0;
  height: 66px;
  padding: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  border-radius: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.top_sp_button_sec ._button a._red {
  background: #D30000;
}
.top_sp_button_sec ._button a ._text {
  position: relative;
  padding-right: 24px;
}
.top_sp_button_sec ._button a ._text::before {
  content: "";
  display: block;
  background: url("../images/header_arrow_white.png") no-repeat center top/cover;
  width: 13px;
  height: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.top_important_news ._inner {
  height: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 32px;
  position: relative;
  border: 1px solid #d30000;
  color: #d30000;
}
.top_important_news ._title {
  position: relative;
  padding-left: 52px;
  margin-right: 80px;
  font-size: 20px;
  font-weight: bold;
  color: #d30000;
}
.top_important_news ._title::before {
  content: "";
  display: block;
  background: url("../images/all_icon_important.svg") no-repeat center top/cover;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.top_important_news ._time {
  margin-right: 32px;
  font-size: 16px;
}
.top_important_news ._news_title {
  font-size: 16px;
  font-weight: bold;
}
.top_important_news ._arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
}
.top_important_news ._arrow * {
  fill: #d30000;
}
@media screen and (max-width: 768px) {
  .top_important_news ._inner {
    height: auto;
    display: block;
    padding: 20px;
  }
  .top_important_news ._time {
    margin-top: 14px;
  }
  .top_important_news ._news_title {
    margin-top: 8px;
  }
  .top_important_news ._arrow {
    display: none;
  }
}

.top_important_news_blue {
  margin-top: 30px;
}
.top_important_news_blue ._inner {
  height: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 32px;
  position: relative;
  border: 1px solid #0057B0;
  color: #0057B0;
}
.top_important_news_blue ._title {
  width: 192px;
  position: relative;
  padding-left: 52px;
  margin-right: 80px;
  font-size: 20px;
  font-weight: bold;
  color: #0057B0;
}
.top_important_news_blue ._title::before {
  content: "";
  display: block;
  background: url("../images/all_icon_top_news.svg") no-repeat center top/contain;
  width: 23px;
  height: 23.5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.top_important_news_blue ._time {
  margin-right: 32px;
  font-size: 16px;
}
.top_important_news_blue ._news_title {
  font-size: 16px;
  font-weight: bold;
}
.top_important_news_blue ._arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
}
.top_important_news_blue ._arrow * {
  fill: #0057B0;
}
@media screen and (max-width: 768px) {
  .top_important_news_blue ._inner {
    height: auto;
    display: block;
    padding: 20px;
  }
  .top_important_news_blue ._time {
    margin-top: 14px;
  }
  .top_important_news_blue ._news_title {
    margin-top: 8px;
  }
  .top_important_news_blue ._arrow {
    display: none;
  }
}

.top_grid_sec {
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .top_grid_sec {
    margin-top: 42px;
  }
}
.top_grid_sec ._grid_sec {
  display: block;
  gap: 2.5rem;
}
.top_grid_sec ._top_sec {
  display: grid;
  grid-template-columns: 5.4fr 9fr;
  gap: 60px 2.5rem;
}
@media screen and (max-width: 1024px) {
  .top_grid_sec ._top_sec {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.top_grid_sec ._top_sec ._left_item {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 3.0625rem;
}
.top_grid_sec ._top_sec ._left_item > *:nth-of-type(1) {
  grid-area: 1/1/2/2;
}
.top_grid_sec ._top_sec ._left_item > *:nth-of-type(2) {
  grid-area: 2/1/2/2;
}
@media screen and (max-width: 1024px) {
  .top_grid_sec ._top_sec ._left_item {
    display: block;
  }
  .top_grid_sec ._top_sec ._left_item .top_search_item {
    display: none;
  }
}
.top_grid_sec ._bottom_sec {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 2.5rem;
}
@media screen and (max-width: 1024px) {
  .top_grid_sec ._bottom_sec {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .top_grid_sec ._bottom_sec {
    margin-top: 28px;
    gap: 28px 2.5rem;
  }
}

.top_pickup {
  background: url("../images/top_pickup_bg.png") no-repeat left top/cover;
  padding: 0.875rem 3.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .top_pickup {
    padding: 25px;
  }
}
.top_pickup ._title_sec {
  position: relative;
  padding-left: 4.75rem;
}
@media screen and (max-width: 600px) {
  .top_pickup ._title_sec {
    padding-left: 60px;
  }
}
.top_pickup ._title_sec::before {
  content: "";
  display: block;
  background: url("../images/top_pickup_icon.png") no-repeat center top/cover;
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 600px) {
  .top_pickup ._title_sec::before {
    width: 48px;
    height: 48px;
  }
}
.top_pickup ._title {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding-right: 4rem;
}
.top_pickup ._title::before {
  content: "";
  display: block;
  background: url("../images/top_pickup_arrow.png") no-repeat center top/cover;
  width: 2.875rem;
  height: 1.0625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 600px) {
  .top_pickup ._title::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .top_pickup ._title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .top_pickup ._title {
    margin-bottom: 3px;
  }
}
.top_pickup ._copy {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .top_pickup ._copy {
    font-size: 15px;
  }
}

.top_news .top_news_slide,
.top_news .splide__track {
  height: 100%;
}
.top_news .splide__track {
  width: 100vw;
  overflow: hidden;
}
.top_news .splide__slide {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
.top_news .splide__slide a {
  background: #fff;
  height: 100%;
  position: relative;
  display: block;
}
.top_news .splide__slide a::before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 32, 65, 0)), to(#012));
  background: -webkit-linear-gradient(rgba(0, 32, 65, 0) 0%, #012 100%);
  background: linear-gradient(rgba(0, 32, 65, 0) 0%, #012 100%);
  opacity: 0.3;
  width: 100%;
  height: 62.2222222222%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}
.top_news .splide__slide a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  aspect-ratio: 90/54;
}
.top_news .splide__slide a ._text_sec {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  z-index: 2;
}
.top_news .splide__slide a ._text_sec ._time {
  font-size: 16px;
}
.top_news .splide__slide a ._text_sec ._title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top_news .splide__slide a ._text_sec {
    width: calc(100% - 86px);
    left: 22px;
    bottom: 27px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .top_news .splide__slide a ._text_sec ._title {
    font-size: 17px;
  }
}
.top_news .splide__slide a ._arrow {
  position: absolute;
  right: 36px;
  bottom: 30px;
  z-index: 2;
}
.top_news .splide__slide a ._arrow * {
  fill: #fff;
}
.top_news .splide__slide a.hover {
  opacity: 1;
}
.top_news .splide__slide a.hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.top_news .splide__pagination {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: auto;
  top: calc(100% + 12px);
  gap: 0 8px;
}
.top_news .splide__pagination .splide__pagination__page {
  background: transparent;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
}
.top_news .splide__pagination .splide__pagination__page.is-active {
  background: #0057B0;
  border: 1px solid #0057B0;
}

.top_title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top_title {
    font-size: 22px;
  }
}

.top_link_item {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top_link_item ._img {
  width: 52%;
}
.top_link_item ._img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_link_item ._right_sec {
  width: 48%;
  position: relative;
}
.top_link_item ._text_sec {
  width: 76.5909090909%;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.top_link_item .top_title {
  color: #0057B0;
}
.top_link_item ._text {
  margin-top: 1.875rem;
  line-height: 1.7333333333;
  font-size: 15px;
}
.top_link_item ._text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7333333333) * 0.5em);
  content: "";
}
.top_link_item ._text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7333333333) * 0.5em);
  content: "";
}
@media screen and (max-width: 768px) {
  .top_link_item ._text {
    margin-top: 20px;
  }
}
.top_link_item .all_more_button {
  position: absolute;
  right: 36px;
  bottom: 23px;
}
@media screen and (max-width: 768px) {
  .top_link_item {
    display: block;
  }
  .top_link_item ._img, .top_link_item ._right_sec {
    width: 100%;
  }
  .top_link_item ._img {
    aspect-ratio: 335/240;
  }
  .top_link_item ._right_sec {
    padding: 32px 24px 24px;
  }
  .top_link_item ._text_sec {
    width: 100%;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .top_link_item .all_more_button {
    margin-top: 16px;
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .top_link_item .all_more_button a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.top_search_item {
  background: #fff;
  padding: 3.125rem 3.75rem 0;
  position: relative;
}
.top_search_item ._search_title {
  position: relative;
  padding-left: 4.75rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.top_search_item ._search_title::before {
  content: "";
  display: block;
  background: url("../images/top_search_icon_search.svg") no-repeat center top/cover;
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top_search_item ._search_title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    white-space: nowrap;
    padding-left: 8.8rem;
    font-size: 6.9333333333rem;
  }
  .top_search_item ._search_title::before {
    width: 6.6666666667rem;
    height: 6.6666666667rem;
  }
}
.top_search_item ._input_wrap {
  width: 100%;
  margin-top: 2.1875rem;
  font-size: 0;
  letter-spacing: 0;
  line-height: 1;
}
.top_search_item ._input_wrap * {
  line-height: 1;
  margin: 0;
}
.top_search_item ._input_wrap input[type=text] {
  width: calc(100% - 6.25rem);
  height: 3.75rem;
  border-radius: 12px 0 0 12px;
  border: 2px solid #E8E8E8;
  border-right: none;
  padding: 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1;
}
.top_search_item ._input_wrap input[type=text]::-webkit-input-placeholder {
  line-height: 1;
}
.top_search_item ._input_wrap input[type=text]::-moz-placeholder {
  line-height: 1;
}
.top_search_item ._input_wrap input[type=text]:-ms-input-placeholder {
  line-height: 1;
}
.top_search_item ._input_wrap input[type=text]::-ms-input-placeholder {
  line-height: 1;
}
.top_search_item ._input_wrap input[type=text]::placeholder {
  line-height: 1;
}
.top_search_item ._input_wrap input[type=submit] {
  background: #0057B0;
  height: 3.75rem;
  width: 6.25rem;
  border-radius: 0 12px 12px 0;
  border: none;
  padding: 0 1.875rem;
  font-size: 1.1875rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.top_search_item ._tag_sec {
  margin-top: 26px;
}
.top_search_item ._tag_sec ._title {
  font-size: 0.875rem;
}
.top_search_item ._tag_sec ._tag_list {
  margin-top: 0.875rem;
}
.top_search_item ._tag_sec ._tag_list li {
  display: inline-block;
  margin-right: 1.25rem;
  margin-bottom: 0.25rem;
}
.top_search_item ._tag_sec ._tag_list a {
  font-size: 1.0625rem;
  font-weight: bold;
  color: #56534F;
}
@media screen and (max-width: 1024px) {
  .top_search_item {
    position: relative;
  }
  .top_search_item .pc {
    display: none;
  }
  .top_search_item ._sp_search {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
}

.top_grid_sec ._center_sec {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 4.4fr 3.44fr;
}
@media screen and (max-width: 1024px) {
  .top_grid_sec ._center_sec {
    gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  .top_grid_sec ._center_sec ._item_03._item_03._item_03._item_03._item_03._item_03._item_03 {
    grid-area: 2/2/3/3;
  }
  .top_grid_sec ._center_sec ._item_04._item_04._item_04._item_04._item_04._item_04._item_04 {
    grid-area: 2/1/3/2;
  }
  .top_grid_sec ._center_sec ._item._item._item,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover {
    grid-area: auto;
    aspect-ratio: 158/117;
  }
  .top_grid_sec ._center_sec ._item._item._item > img,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover > img {
    display: none;
  }
  .top_grid_sec ._center_sec ._item._item._item ._inner ._title_sec,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._inner ._title_sec {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  .top_grid_sec ._center_sec ._item._item._item ._inner ._title_sec ._title,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._inner ._title_sec ._title {
    margin-left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
    left: 9.4936708861%;
    font-size: 5.0666666667rem;
  }
  .top_grid_sec ._center_sec ._item._item._item ._inner ._title_sec ._title br.sp,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._inner ._title_sec ._title br.sp {
    display: block;
  }
  .top_grid_sec ._center_sec ._item._item._item ._icon,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._icon {
    position: absolute;
    height: 72.4137931034%;
    opacity: 0.2;
    top: 32%;
    right: 7%;
  }
  .top_grid_sec ._center_sec ._item._item._item ._menu,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._menu {
    display: none;
  }
  .top_grid_sec ._center_sec ._item._item._item .all_button,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover .all_button {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    z-index: 5;
  }
  .top_grid_sec ._center_sec ._item._item._item .all_button a,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover .all_button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: none;
    max-height: none;
    border-radius: 0;
    position: relative;
    z-index: 10;
  }
  .top_grid_sec ._center_sec ._item._item._item ._arrow.sp,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._arrow.sp {
    width: 9.4936708861%;
    position: absolute;
    right: 8.8607594937%;
    bottom: 15.5172413793%;
    display: block;
  }
  .top_grid_sec ._center_sec ._item._item._item ._arrow.sp svg,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._arrow.sp svg {
    width: 100%;
    height: 100%;
  }
  .top_grid_sec ._center_sec ._item._item._item ._arrow.sp svg *,
  .top_grid_sec ._center_sec ._item._item._item._item._item:hover ._arrow.sp svg * {
    fill: #fff;
  }
}
@media screen and (max-width: 768px) {
  .top_grid_sec ._center_sec {
    margin-top: 50px;
  }
}
.top_grid_sec ._center_sec ._item {
  background: var(--sub-color);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px rgba(173, 173, 173, 0.1);
          box-shadow: 0px 0px 12px rgba(173, 173, 173, 0.1);
}
.top_grid_sec ._center_sec ._item > img {
  opacity: 0.2;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.top_grid_sec ._center_sec ._item .all_button {
  opacity: 1;
}
.top_grid_sec ._center_sec ._item._menu_active ._menu, .top_grid_sec ._center_sec ._item:hover ._menu {
  opacity: 1;
}
.top_grid_sec ._center_sec ._item._has_menu._menu_active ._title_sec ._icon, .top_grid_sec ._center_sec ._item._has_menu:hover ._title_sec ._icon {
  display: inline-block;
}
.top_grid_sec ._center_sec ._item._has_menu._menu_active ._title_sec ._title, .top_grid_sec ._center_sec ._item._has_menu:hover ._title_sec ._title {
  margin-left: 0.6875rem;
  margin-top: 0;
  display: inline-block;
}
.top_grid_sec ._center_sec ._item_01 {
  grid-area: 1/1/2/2;
  aspect-ratio: 34/44;
}
.top_grid_sec ._center_sec ._item_02 {
  grid-area: 1/2/2/4;
  aspect-ratio: 72/44;
}
.top_grid_sec ._center_sec ._item_03 {
  grid-area: 1/4/2/5;
  aspect-ratio: 34/44;
}
.top_grid_sec ._center_sec ._item_04 {
  grid-area: 2/1/3/3;
  aspect-ratio: 72/34;
}
.top_grid_sec ._center_sec ._item_05 {
  grid-area: 2/3/3/4;
  aspect-ratio: 1/1;
}
.top_grid_sec ._center_sec ._item_06 {
  grid-area: 2/4/3/5;
  aspect-ratio: 1/1;
}
.top_grid_sec ._inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top_grid_sec ._inner ._title_sec {
  position: absolute;
  top: 2.5rem;
  left: 2.1875rem;
}
.top_grid_sec ._inner ._icon {
  height: 3.125rem;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.top_grid_sec ._inner ._icon img {
  height: 100%;
  width: auto;
}
.top_grid_sec ._inner ._title {
  margin-top: 1.25rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
}
.top_grid_sec ._inner .all_button {
  width: 180px;
  position: absolute;
  left: 2.1875rem;
  bottom: 2rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.top_grid_sec ._inner .all_button a {
  background: transparent;
  max-height: 52px;
  height: 3.25rem;
  border: 1px solid #fff;
}
.top_grid_sec ._inner .all_button a ._text {
  font-weight: bold;
  font-size: 1.0625rem;
  font-size: 17px;
  color: #fff;
}
.top_grid_sec ._inner .all_button a svg * {
  fill: #fff;
}
.top_grid_sec ._inner .all_button a.hover {
  opacity: 1;
  background: #fff;
  border: 1px solid transparent;
}
.top_grid_sec ._inner .all_button a.hover ._text {
  color: #56534F;
}
.top_grid_sec ._inner .all_button a.hover svg * {
  fill: #4382C0;
}
.top_grid_sec ._inner ._menu {
  margin-top: 0.625rem;
  font-size: 0;
  letter-spacing: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.top_grid_sec ._inner ._menu li {
  width: 16.25rem;
}
.top_grid_sec ._inner ._menu a {
  padding-top: 1.375rem;
  padding-bottom: 0.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
}
.top_grid_sec ._inner ._menu a ._menu_text {
  line-height: 1;
  color: #fff;
  font-weight: bold;
  font-size: 1.0625rem;
}
.top_grid_sec ._inner ._menu a svg * {
  fill: #fff;
}
.top_grid_sec ._inner ._menu.hover a {
  opacity: 0.4;
}
.top_grid_sec ._inner ._menu.hover a.hover {
  opacity: 1;
}
.top_grid_sec ._item_04 ._menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0px 2.1875rem;
}
.top_grid_sec ._item_04 ._menu li {
  width: 18.125rem;
}

.top_bottom_news {
  background: #fff;
  margin-top: 5rem;
  padding: 4.6875rem 3.75rem 3.75rem;
}
@media screen and (max-width: 600px) {
  .top_bottom_news {
    margin-top: 28px;
    padding: 48px 24px 32px;
  }
}
.top_bottom_news .all_more_button {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top_bottom_news .all_more_button a {
  max-width: 180px;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .top_bottom_news .all_more_button a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top_bottom_news_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px 2.5rem;
}
@media screen and (max-width: 1024px) {
  .top_bottom_news_wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap {
    grid-template-columns: 1fr;
  }
}
.top_bottom_news_wrap ._title {
  padding-left: 48px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}
.top_bottom_news_wrap ._title::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.top_bottom_news_wrap ._title._info::before {
  background: url("../images/top_news_icon_info.svg") no-repeat center top/cover;
}
.top_bottom_news_wrap ._title._event::before {
  background: url("../images/top_news_icon_event.svg") no-repeat center top/cover;
}
.top_bottom_news_wrap ._title._recruit::before {
  background: url("../images/top_news_icon_recruit.svg") no-repeat center top/cover;
}
.top_bottom_news_wrap ._news_list {
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list {
    margin-top: 28px;
  }
  .top_bottom_news_wrap ._news_list::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #EDEDED;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .top_bottom_news_wrap ._news_list::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    border-top: 2px solid #EDEDED;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list li {
    position: relative;
  }
  .top_bottom_news_wrap ._news_list li::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #EDEDED;
    position: absolute;
    top: 0;
    left: 0;
  }
  .top_bottom_news_wrap ._news_list li::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    border-top: 2px solid #EDEDED;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top_bottom_news_wrap ._news_list a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list a {
    padding: 20px 0;
    display: block;
  }
}
.top_bottom_news_wrap ._news_list ._date {
  width: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 2px solid #EDEDED;
  font-size: 16px;
  color: #B4B4B4;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list ._date {
    border: none;
  }
}
.top_bottom_news_wrap ._news_list ._list_title {
  width: calc(100% - 90px);
  padding: 25px;
  padding-right: 40px;
  display: inline-block;
  position: relative;
  border-top: 2px dashed #EDEDED;
  color: #2E2E2E;
  /* .new {
  content: "NEW!";
  display: block;
  line-height: 2em;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #BA0013;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  top: 50%;
  	@include mq(sp) {
  		padding-right: 60px;
  	}
  } */
}
.top_bottom_news_wrap ._news_list ._list_title ._text {
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list ._list_title {
    width: 100%;
    padding: 0;
    margin-top: 4px;
    border: none;
  }
}
.top_bottom_news_wrap ._news_list li:last-of-type ._date {
  border-bottom: 2px solid #EDEDED;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list li:last-of-type ._date {
    border: none;
  }
}
.top_bottom_news_wrap ._news_list li:last-of-type ._list_title {
  border-bottom: 2px dashed #EDEDED;
}
@media screen and (max-width: 600px) {
  .top_bottom_news_wrap ._news_list li:last-of-type ._list_title {
    border: none;
  }
}

.top_bottom_info_sec {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 9.4fr 5fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 600px) {
  .top_bottom_info_sec {
    margin-top: 28px;
    display: block;
  }
}
.top_bottom_info_sec > *:nth-child(1) {
  grid-area: 1/1/3/2;
}
.top_bottom_info_sec > *:nth-child(2) {
  grid-area: 1/2/2/3;
}
.top_bottom_info_sec > *:nth-child(3) {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 600px) {
  .top_bottom_info_sec ._link_item {
    aspect-ratio: 335/196;
    margin-top: 28px;
  }
}
.top_bottom_info_sec ._link_item a {
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.top_bottom_info_sec ._link_item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top_bottom_info_sec ._link_item a._access::before {
  background: url("../images/top_access.jpg") no-repeat center top/cover;
}
.top_bottom_info_sec ._link_item a._publication::before {
  background: url("../images/top_publication.jpg") no-repeat center top/cover;
}
@media screen and (max-width: 600px) {
  .top_bottom_info_sec ._link_item a._access::before {
    background: url("../images/top_access_sp.jpg") no-repeat center top/cover;
  }
  .top_bottom_info_sec ._link_item a._publication::before {
    background: url("../images/top_publication_sp.jpg") no-repeat center top/cover;
  }
}
.top_bottom_info_sec ._link_item a ._title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .top_bottom_info_sec ._link_item a ._title {
    font-size: 20px;
  }
}
.top_bottom_info_sec ._link_item a ._title::before {
  content: "";
  display: block;
  width: 52px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .top_bottom_info_sec ._link_item a ._title::before {
    width: 40px;
    height: 38px;
    margin-bottom: 5px;
  }
}
.top_bottom_info_sec ._link_item a._access ._title::before {
  background: url("../images/all_icon_access_white.svg") no-repeat center top/cover;
}
.top_bottom_info_sec ._link_item a._publication ._title::before {
  background: url("../images/all_icon_publication.svg") no-repeat center top/cover;
}

.top_hours {
  background: #fff;
  padding: 4.375rem;
}
.top_hours ._title {
  padding-left: 2.875rem;
  position: relative;
  font-size: 1.75rem;
  font-weight: bold;
  white-space: nowrap;
}
.top_hours ._title::before {
  content: "";
  display: block;
  background: url("../images/all_icon_time.svg") no-repeat center top/cover;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.top_hours ._notice_sec {
  margin-top: 2.25rem;
}
.top_hours ._notice_sec ._text {
  font-size: 17px;
}
.top_hours ._notice_sec ._text._red {
  color: #D30000;
}
.top_hours ._notice_sec ._text + ._text {
  margin-top: 4px;
}
@media screen and (max-width: 600px) {
  .top_hours ._notice_sec {
    margin-top: 30px;
  }
  .top_hours ._notice_sec ._text {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .top_hours {
    padding: 50px 24px;
  }
  .top_hours ._title {
    font-size: 22px;
    padding-left: 30px;
  }
  .top_hours ._title::before {
    width: 20px;
    height: 20px;
  }
  .top_hours .all_more_button {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .top_hours .all_more_button.pc {
    display: none;
  }
  .top_hours .all_more_button a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top_hours_top_sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_hours_table {
  width: 100%;
  margin-top: 40px;
  border: 2px solid #E6E6E6;
}
@media screen and (max-width: 600px) {
  .top_hours_table {
    margin-top: 30px;
  }
}
.top_hours_table thead {
  background: #EBEBEB;
}
.top_hours_table tr > * {
  text-align: center;
}
.top_hours_table tr > *:first-child {
  width: 19.25%;
}
@media screen and (max-width: 600px) {
  .top_hours_table tr > *:first-child {
    width: 78px;
  }
}
.top_hours_table thead tr > *:nth-child(n+2) {
  border-left: 2px solid #D4D4D4;
}
.top_hours_table tbody tr {
  border-top: 2px solid #EDEDED;
}
.top_hours_table tbody tr > *:nth-child(n+2) {
  border-left: 2px dashed #E6E6E6;
}
.top_hours_table th {
  padding: 26px 0;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .top_hours_table th {
    padding: 15px 0;
  }
}
.top_hours_table td {
  font-size: 26px;
  font-weight: bold;
}

.top_important_news_blue ._inner {
  height: auto;
  padding: 20px 0 20px 32px;
}
.top_important_news_blue ._listWrapper a {
  color: #0057B0;
  display: block;
}
@media screen and (max-width: 768px) {
  .top_important_news_blue ._inner {
    display: block;
    padding: 20px;
  }
}

.top_important_news_blue ._inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_important_news_blue ._inner ._listWrapper {
  color: #0057B0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .top_important_news_blue ._inner ._listWrapper {
    display: block;
  }
}

.top_important_news_blue ._inner ._listWrapper a + a {
  margin-top: 10px;
}

.top_grid_sec_wrapper {
  margin: 0 calc(50% - 50vw);
  width: 99.6vw;
}

.top_news .all_bdrs_item {
  border-radius: 0;
}

@media screen and (max-width: 600px) {
  ._bottom_sec .all_bdrs_item ._img {
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
/* mixin  ----------------------- */
/* color  ----------------------- */
.about_button01 {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .about_button01 {
    margin-top: 35px;
  }
}

.about_button01_anchor {
  max-width: 300px;
  min-height: 70px;
  padding: 5px 25px 5px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: #E6E6E6 solid 2px;
  border-radius: 200px;
}
@media screen and (max-width: 600px) {
  .about_button01_anchor {
    max-width: 320px;
    min-height: 60px;
  }
}

.about_button01_txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  color: #2E2E2E;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.412;
}

.about_button01_ico {
  display: block;
  line-height: 0;
}

@media screen and (max-width: 600px) {
  .about_sub_mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
  }
}
.about_sub_mv .about_sub__inner ._text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .about_sub_mv .about_sub__inner ._text {
    margin: 0 auto;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.about_sub_mv .about_sub__inner ._text ._icon {
  margin-right: 20px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .about_sub_mv .about_sub__inner ._text ._icon {
    margin-right: 15px;
  }
}
.about_sub_mv .about_sub__inner ._text ._icon img {
  position: static;
  width: 58px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .about_sub_mv .about_sub__inner ._text ._icon img {
    width: 28px;
  }
}
.about_sub_mv .about_sub__inner ._lead {
  width: 80%;
  color: white;
  font-size: 17px;
  line-height: 1.8;
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
@media screen and (max-width: 600px) {
  .about_sub_mv .about_sub__inner ._lead {
    width: auto;
    margin-top: 40px;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.about_sub_mv .about_sub__inner ._lead ._inner {
  width: 40%;
  max-width: 500px;
  margin-left: auto;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .about_sub_mv .about_sub__inner ._lead ._inner {
    width: 80%;
    max-width: none;
    margin: 0 auto;
  }
}

.about_sub_title ._upper_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about_sub_title ._upper_title ._icon {
  line-height: 0;
}

.about_indexcolumn01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 3rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 600px) {
  .about_indexcolumn01 {
    display: block;
  }
}
.about_indexcolumn01 .all_more_button {
  margin-top: 35px;
}
.about_indexcolumn01 .all_more_button > * {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.about_indexcolumn01_image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .about_indexcolumn01_image {
    margin-bottom: 35px;
  }
}
.about_indexcolumn01_image img {
  width: 100%;
}

.about_indexcolumn01_texts .all_greeting_copy_text {
  display: block;
  line-height: 1.818em;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .about_indexcolumn01_texts .all_greeting_copy_text {
    font-size: 19px;
  }
}

.about_policybox01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .about_policybox01 {
    display: block;
  }
}
.about_policybox01 .all_greeting_copy_text {
  display: block;
  line-height: 1.818em;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .about_policybox01 .all_greeting_copy_text {
    font-size: 19px;
  }
}

.about_policybox01_texts {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .about_policybox01_texts {
    width: auto;
    margin-bottom: 20px;
  }
}

.about_policybox01_image {
  width: 49.7%;
  margin: 0;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .about_policybox01_image {
    width: auto;
  }
}

.about_policynumlist_li {
  padding-top: 25px;
  display: table;
  width: 100%;
  border-top: #E6E6E6 dashed 2px;
}
.about_policynumlist_li + .about_policynumlist_li {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .about_policynumlist_li + .about_policynumlist_li {
    margin-top: 25px;
  }
}
@media screen and (max-width: 600px) {
  .about_policynumlist_li {
    display: block;
  }
}
.about_policynumlist_li > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .about_policynumlist_li > * {
    display: block;
  }
}

.about_policynumlist_num {
  width: 70px;
  color: #4082C4;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .about_policynumlist_num {
    width: auto;
    font-size: 20px;
  }
}

.about_policynumlist_ttl {
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .about_policynumlist_ttl {
    width: auto;
    margin-top: 10px;
  }
}

.about_policynumlist_txt {
  padding-left: 40px;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .about_policynumlist_txt {
    width: auto;
    margin-top: 10px;
    padding-left: 0;
  }
}

.about_safetycolumn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .about_safetycolumn {
    display: block;
  }
}

.about_safetycolumn_li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 50px 30px 30px;
  border: #E6E6E6 solid 1px;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .about_safetycolumn_li {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 600px) {
  .about_safetycolumn_li + .about_safetycolumn_li {
    margin-top: 20px;
  }
}

.about_safetycolumn_li_ttl {
  margin-bottom: 20px;
  color: #4082C4;
  font-size: 24px;
  font-weight: 700;
}

.about_safetynumlist_li {
  padding-left: 45px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .about_safetynumlist_li {
    padding-left: 0;
  }
}
.about_safetynumlist_li + .about_safetynumlist_li {
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .about_safetynumlist_li + .about_safetynumlist_li {
    margin-top: 40px;
  }
}

.about_safetynumlist_num {
  color: #4082C4;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  top: 4px;
  left: 0;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .about_safetynumlist_num {
    position: static;
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.about_safetynumlist_ttl {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 17px;
  line-height: 2;
}

.about_safetydots {
  margin-top: 20px;
}

.about_safetydots_li {
  padding-left: 1.5em;
  position: relative;
  font-size: 17px;
  line-height: 2;
}
.about_safetydots_li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.7em;
  left: 0;
  background-color: #4082C4;
  border-radius: 50%;
}

.about_floor_guide_map {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  line-height: 0;
}

.about_floor_guide_map_btn {
  display: none;
  padding: 0;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 600px) {
  .about_floor_guide_map_btn {
    display: block;
    margin: 16px auto 0;
    color: #4082C4;
    font-size: 17px;
    text-decoration: underline;
    text-align: center;
    line-height: 1;
  }
}

.about_floor_guide_colortitle {
  margin: 55px 0 20px;
  color: #4082C4;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .about_floor_guide_colortitle {
    margin-bottom: 15px;
    font-size: 17px;
  }
}

.about_floor_guide_red {
  color: #D30000;
}

.about_floor_guide_swipe_item .all_sub_table {
  margin-top: 0;
}
.about_floor_guide_swipe_item.swipe_active.on::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about_floor_guide_icons {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 60px;
  border: #E6E6E6 solid 2px;
  background-image: -webkit-repeating-linear-gradient(left, #E6E6E6, #E6E6E6 1px, #fff 1px, #fff 20%);
  background-image: repeating-linear-gradient(90deg, #E6E6E6, #E6E6E6 1px, #fff 1px, #fff 20%);
}
@media screen and (max-width: 600px) {
  .about_floor_guide_icons {
    margin-top: 40px;
    background-image: -webkit-repeating-linear-gradient(left, #E6E6E6, #E6E6E6 1px, #fff 1px, #fff 50%);
    background-image: repeating-linear-gradient(90deg, #E6E6E6, #E6E6E6 1px, #fff 1px, #fff 50%);
  }
}

.about_floor_guide_icons_li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20%;
  padding: 30px 10px;
  position: relative;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .about_floor_guide_icons_li {
    width: 50%;
    padding: 20px 5px;
  }
}
.about_floor_guide_icons_li:nth-child(1)::before, .about_floor_guide_icons_li:nth-child(4n+1)::before {
  display: block;
  content: "";
  width: 200vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #E6E6E6;
}
@media screen and (max-width: 600px) {
  .about_floor_guide_icons_li:nth-child(2n+1)::before {
    display: block;
    content: "";
    width: 200vw;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #E6E6E6;
  }
}
.about_floor_guide_icons_li figure {
  margin: 0 0 13px;
  line-height: 0;
}
.about_floor_guide_icons_li figure img {
  width: 60px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .about_floor_guide_icons_li figure img {
    width: 40px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_news_list {
  position: relative;
  /* ._info_inner{
  display: flex;
  gap: 24px;
  } */
}
.all_news_list::before {
  content: "";
  display: block;
  border-top: 2px solid #EDEDED;
  position: absolute;
  width: 88px;
  bottom: 0;
  left: 0;
}
.all_news_list::after {
  content: "";
  display: block;
  border-top: 2px dashed #EDEDED;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.all_news_list li {
  position: relative;
}
.all_news_list li::before {
  content: "";
  display: block;
  border-top: 2px solid #EDEDED;
  position: absolute;
  width: 88px;
  top: 0;
  left: 0;
}
.all_news_list li::after {
  content: "";
  display: block;
  border-top: 2px dashed #EDEDED;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.all_news_list a {
  padding: 27px 0;
  padding-right: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 18px 40px;
}
.all_news_list ._info_sec {
  width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .all_news_list ._info_sec {
    width: 100%;
  }
}
.all_news_list .img {
  width: 100%;
}
.all_news_list .img img {
  width: 100%;
}
.all_news_list ._time {
  letter-spacing: 0.02em;
  font-size: 16px;
  color: #B4B4B4;
}
.all_news_list ._cat {
  font-size: 14px;
  font-weight: bold;
  color: var(--sub-color);
}
.all_news_list ._title_sec {
  width: calc(100% - 300px);
  /* ._excerpt{
  color: #2E2E2E;
  font-size: 15px;
  } */
}
@media screen and (max-width: 768px) {
  .all_news_list ._title_sec {
    width: 100%;
  }
}
.all_news_list ._title_sec ._title {
  position: relative;
  padding-right: 60px;
  display: inline-block;
  font-size: 17px;
  color: #2E2E2E;
  margin-bottom: 16px;
}
.all_news_list ._title_sec ._title .new {
  content: "NEW!";
  display: block;
  line-height: 2em;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #BA0013;
  position: absolute;
  top: 0.85em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.all_news_list ._title_sec ._tag_sec {
  margin-top: 4px;
  font-size: 14px;
  color: #BABABA;
}
.all_news_list ._arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.all_news_list ._arrow * {
  fill: var(--sub-color);
}

.inner_side_nav_tag {
  margin-top: 56px;
}
.inner_side_nav_tag ._title {
  font-size: 17px;
  font-weight: bold;
}
.inner_side_nav_tag ul {
  margin-top: 20px;
}
.inner_side_nav_tag ul li {
  display: inline-block;
  margin-right: 24px;
}
.inner_side_nav_tag ul li a {
  line-height: 2;
  font-size: 16px;
  color: #2E2E2E;
}
.inner_side_nav_tag ul li a::before {
  content: "#";
  display: inline;
  font-size: 16px;
}

.single .all_2col_side_nav_wrap {
  display: none;
}
.single .all_2col_section {
  padding-left: 0;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_single_tilte {
  margin-bottom: 110px;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_single_tilte {
    font-size: 28px;
  }
}

.nurse_blog .date_category_wrapper {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.nurse_blog .date {
  margin-right: 24px;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  color: #B4B4B4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 600px) {
  .nurse_blog .date {
    font-size: 16px;
  }
}
.nurse_blog .category {
  font-weight: bold;
  font-size: 18px;
  color: var(--sub-color);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .nurse_blog .category {
    font-size: 16px;
  }
}

.all_single_content h2 {
  position: relative;
  margin-bottom: 70px;
  padding-top: 36px;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .all_single_content h2 {
    margin-bottom: 36px;
    padding-top: 32px;
    font-size: 24px;
  }
}
.all_single_content h2::before {
  content: "";
  display: block;
  background: #E6E6E6;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.all_single_content h2::after {
  content: "";
  display: block;
  background: var(--sub-color);
  width: 88px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.all_single_content h2 strong {
  font-weight: bold;
}
.all_single_content * + h2 {
  margin-top: 60px;
}
.all_single_content h3 {
  margin-top: 72px;
  margin-bottom: 40px;
  position: relative;
  font-size: 28px;
  font-weight: bold;
}
.all_single_content h3 ._icon {
  margin-right: 10px;
  fill: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .all_single_content h3 {
    font-size: 20px;
  }
  .all_single_content h3 ._icon {
    width: 13px;
    margin-right: 2px;
  }
}
.all_single_content h4 {
  margin-bottom: 48px;
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .all_single_content h4 {
    font-size: 19px;
  }
}
.all_single_content p {
  font-size: 17px;
  line-height: 2;
}
.all_single_content p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
.all_single_content p::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
.all_single_content p + .all_text {
  margin-top: 30px;
}
.all_single_content p a {
  color: #0057B0;
  text-decoration: underline;
}
.all_single_content p strong {
  font-weight: bold;
}
.all_single_content * + p {
  margin-top: 20px;
}
.all_single_content * + .wp-block-group,
.all_single_content * + .wp-block-gallery.wp-block-gallery.wp-block-gallery {
  margin-top: 40px;
}
.all_single_content .date_category_wrapper {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all_single_content .wp-block-group {
  gap: 0 40px;
}
.all_single_content .wp-block-group img {
  border-radius: 12px;
}
.all_single_content .date {
  margin-right: 24px;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  color: #B4B4B4;
  letter-spacing: 0.02em;
}
.all_single_content .category {
  font-weight: bold;
  font-size: 18px;
  color: var(--sub-color);
  letter-spacing: 0.03em;
}
.all_single_content .wp-block-video {
  background-color: #eee;
  margin: 65px 0;
  border-radius: 12px;
}
.all_single_content .wp-block-video video {
  display: block;
  width: 100%;
}
.all_single_content ul, .all_single_content ol {
  padding: 5px 0;
}
.all_single_content ul li, .all_single_content ol li {
  margin-bottom: 12px;
  position: relative;
  font-size: 17px;
}
.all_single_content ul {
  margin: 32px 0;
}
.all_single_content ul li {
  padding-left: 24px;
}
.all_single_content ul li::before {
  content: "";
  background-color: var(--sub-color);
  margin-right: 14px;
  min-width: 10px;
  height: 10px;
  border-radius: 100%;
  display: block;
  margin-top: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .all_single_content ul li {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.all_single_content ol {
  margin: 32px 0;
}
.all_single_content ol li {
  padding-left: 14px;
  counter-increment: numberA;
}
.all_single_content ol li::before {
  content: counter(numberA) ".";
  height: 1em;
  min-width: 17px;
  margin-right: 8px;
  margin-top: 13px;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  font-size: 20px;
  font-family: maple-web, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sub-color);
  position: absolute;
  top: 0;
  left: 0;
}
.all_single_content .wp-block-gallery {
  margin-top: 0;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .all_single_content .wp-block-gallery {
    display: block;
  }
}
.all_single_content .wp-block-gallery .blocks-gallery-item {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .all_single_content .wp-block-gallery .blocks-gallery-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.all_single_content .wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
}
.all_single_content .wp-block-gallery .blocks-gallery-item figure img {
  border-radius: 12px;
}
.all_single_content .wp-block-gallery .blocks-gallery-item figcaption {
  margin-top: 12px;
  font-size: 15px;
}
.all_single_content .wp-block-gallery .blocks-gallery-item::before {
  content: none;
}
.all_single_content .button_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .all_single_content .button_container {
    display: block;
  }
}
.all_single_content .wp-block-buttons {
  width: 100%;
  margin-top: 30px;
}
.all_single_content .wp-block-button,
.all_single_content .wp-block-file {
  margin-right: 24px;
  max-width: 318px;
  width: 100%;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .all_single_content .wp-block-button,
  .all_single_content .wp-block-file {
    max-width: 318px;
    margin-bottom: 20px;
  }
}
.all_single_content .wp-block-button .wp-block-button__link,
.all_single_content .wp-block-button .wp-block-file__button,
.all_single_content .wp-block-file .wp-block-button__link,
.all_single_content .wp-block-file .wp-block-file__button {
  width: 100%;
  height: 68px;
  padding: 0 30px;
  background: #fff;
  max-width: 318px;
  height: 72px;
  position: relative;
  display: inline-block;
  border: 2px solid #EDEDED;
  border-radius: 9999px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  line-height: 1.25;
  font-size: 17px;
  color: #2e2e2e;
}
.all_single_content .wp-block-button .wp-block-button__link svg,
.all_single_content .wp-block-button .wp-block-file__button svg,
.all_single_content .wp-block-file .wp-block-button__link svg,
.all_single_content .wp-block-file .wp-block-file__button svg {
  fill: var(--sub-color);
}
.all_single_content .wp-block-button .wp-block-button__link ._pdf,
.all_single_content .wp-block-button .wp-block-file__button ._pdf,
.all_single_content .wp-block-file .wp-block-button__link ._pdf,
.all_single_content .wp-block-file .wp-block-file__button ._pdf {
  background-image: url(../images/all_icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.all_single_content .wp-block-button .wp-block-button__link[href$=".pdf"],
.all_single_content .wp-block-button .wp-block-file__button[href$=".pdf"],
.all_single_content .wp-block-file .wp-block-button__link[href$=".pdf"],
.all_single_content .wp-block-file .wp-block-file__button[href$=".pdf"] {
  padding-right: 50px;
}
.all_single_content .wp-block-button .wp-block-button__link[href$=".pdf"]::after,
.all_single_content .wp-block-button .wp-block-file__button[href$=".pdf"]::after,
.all_single_content .wp-block-file .wp-block-button__link[href$=".pdf"]::after,
.all_single_content .wp-block-file .wp-block-file__button[href$=".pdf"]::after {
  content: "";
  display: block;
  background-image: url(../images/all_icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
}
.all_single_content .wp-block-button .wp-block-button__link.hover,
.all_single_content .wp-block-button .wp-block-file__button.hover,
.all_single_content .wp-block-file .wp-block-button__link.hover,
.all_single_content .wp-block-file .wp-block-file__button.hover {
  background-color: var(--sub-color);
  color: #fff;
  opacity: 1;
  border: 2px solid var(--sub-color);
}
.all_single_content .wp-block-button .wp-block-button__link.hover svg,
.all_single_content .wp-block-button .wp-block-file__button.hover svg,
.all_single_content .wp-block-file .wp-block-button__link.hover svg,
.all_single_content .wp-block-file .wp-block-file__button.hover svg {
  fill: #fff;
}
.all_single_content .wp-block-button .wp-block-button__link.hover ._pdf,
.all_single_content .wp-block-button .wp-block-file__button.hover ._pdf,
.all_single_content .wp-block-file .wp-block-button__link.hover ._pdf,
.all_single_content .wp-block-file .wp-block-file__button.hover ._pdf {
  background-image: url(../images/all_icon_pdf_white.svg);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.postLinks {
  margin-top: 120px;
  border-top: 1px solid #D6D7D9;
  border-bottom: 1px solid #D6D7D9;
  font-weight: bold;
}
.postLinks * {
  color: #2E2E2E;
}
.postLinks ._inner {
  height: 82px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.postLinks .postLink {
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.postLinks .postLink a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
}
.postLinks .postLink ._arrow {
  min-width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #D6D7D9;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.postLinks .postLink ._arrow svg {
  fill: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .postLinks .postLink ._arrow {
    min-width: 40px;
    height: 40px;
  }
}
.postLinks .postLink:hover ._arrow {
  background-color: var(--sub-color);
  border: 1px solid var(--sub-color);
}
.postLinks .postLink:hover ._arrow svg {
  fill: #fff;
}
.postLinks .postLink_prev {
  padding-right: 10px;
  border-right: 2px dashed #E6E6E6;
}
@media (max-width: 1140px) {
  .postLinks .postLink_prev {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .postLinks .postLink_prev p {
    display: none;
  }
}
.postLinks .postLink_prev ._arrow {
  margin-right: 20px;
}
@media (max-width: 1140px) {
  .postLinks .postLink_prev ._arrow {
    margin-right: 0;
  }
}
.postLinks .postLink_prev ._arrow svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.postLinks .postLink_next {
  padding-left: 10px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-left: 2px dashed #E6E6E6;
}
@media (max-width: 1140px) {
  .postLinks .postLink_next {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .postLinks .postLink_next p {
    display: none;
  }
}
.postLinks .postLink_next ._arrow {
  margin-left: 20px;
}
@media (max-width: 1140px) {
  .postLinks .postLink_next ._arrow {
    margin-left: 0;
  }
}
.postLinks .postLink_next ._arrow svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.postLinks .backToList {
  width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.postLinks .backToList a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
}

.all_sub_nurse .all_more_button ._circle * {
  fill: var(--sub-color);
}
.all_sub_nurse .all_more_button > *:hover ._circle {
  background: var(--sub-color);
  border: 2px solid var(--sub-color);
}
.all_sub_nurse .all_more_button > *:hover ._circle * {
  fill: #fff;
}
.all_sub_nurse .all_greeting {
  grid-template-columns: 1fr 1fr;
}
.all_sub_nurse .all_greeting .all_button {
  margin-top: 31px;
}
.all_sub_nurse .all_greeting_copy {
  font-size: 22px;
  padding-bottom: 33px;
}
@media screen and (max-width: 600px) {
  .all_sub_nurse .all_greeting {
    grid-template-columns: 1fr;
  }
  .all_sub_nurse .all_greeting_copy {
    font-size: 19px;
  }
}
@media screen and (min-width: 1025px) {
  .all_sub_nurse .all_greeting .all_button {
    width: 300px;
  }
}

.nurse_imgs {
  overflow: hidden;
  padding-bottom: 20px;
}

.nurse_slider_content {
  margin-top: 60px;
}

.nurse_slider {
  overflow: visible;
}

.nurse_slider ._slide {
  width: 470px;
}

@media screen and (max-width: 768px) {
  .nurse_slider ._slide {
    width: 300px;
  }
}
.nurse_slider ._img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 470/327;
}

.nurse_slider ._img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.nurse_slider_bottom_sec {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .nurse_slider_bottom_sec {
    margin-top: 30px;
  }
}

._nurse_list_blog {
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._nurse_list_blog {
    margin-top: 28px;
  }
  ._nurse_list_blog::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ededed;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  ._nurse_list_blog::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    border-top: 2px solid #ededed;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
._nurse_list_blog ._info_sec {
  width: 270px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  ._nurse_list_blog ._info_sec {
    width: 100%;
  }
}
._nurse_list_blog ._time {
  letter-spacing: 0.02em;
  font-size: 16px;
  color: #B4B4B4;
}
._nurse_list_blog ._cat {
  font-size: 14px;
  font-weight: bold;
  color: var(--sub-color);
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog li {
    position: relative;
  }
  ._nurse_list_blog li::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ededed;
    position: absolute;
    top: 0;
    left: 0;
  }
  ._nurse_list_blog li::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    border-top: 2px solid #ededed;
    position: absolute;
    top: 0;
    left: 0;
  }
}
._nurse_list_blog a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog a {
    padding: 20px 0;
    display: block;
  }
}
._nurse_list_blog a.new ._list_title ._text::after {
  content: "NEW!";
  display: inline;
  margin-left: 4px;
  font-size: 14px;
  color: #d30000;
}
._nurse_list_blog ._date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 2px solid #ededed;
  font-size: 16px;
  color: #b4b4b4;
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog ._date {
    border: none;
  }
}
._nurse_list_blog ._list_title {
  width: calc(100% - 90px);
  padding: 25px;
  padding-right: 40px;
  display: inline-block;
  position: relative;
  border-top: 2px dashed #ededed;
  color: #2e2e2e;
}
._nurse_list_blog ._list_title ._text {
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog ._list_title {
    width: 100%;
    padding: 0;
    margin-top: 4px;
    border: none;
  }
}
._nurse_list_blog li:last-of-type ._date {
  border-bottom: 2px solid #ededed;
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog li:last-of-type ._date {
    border: none;
  }
}
._nurse_list_blog li:last-of-type ._list_title {
  border-bottom: 2px dashed #ededed;
}
@media screen and (max-width: 600px) {
  ._nurse_list_blog li:last-of-type ._list_title {
    border: none;
  }
}

._nurse_blog_news .all_more_button {
  margin-top: 50px;
  text-align: right;
}
._nurse_blog_news .all_more_button a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (min-width: 1025px) {
  ._nurse_blog_news ._nurse_blog_news_main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
@media screen and (min-width: 1025px) {
  ._nurse_blog_news ._nurse_blog_news_main .right {
    width: calc(100% - 283px);
  }
}
._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title {
  font-size: 17px;
  padding-bottom: 18px;
  padding-top: 18px;
  padding-left: 16px;
  padding-right: 46px;
  border: 2px solid #ededed;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title {
    display: none;
  }
}
._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title ._arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title ._arrow svg {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title ._arrow svg * {
  fill: var(--sub-color);
}
._nurse_blog_news ._nurse_blog_news_main .blog_tag_list_title ._bold {
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  ._nurse_blog_news ._nurse_blog_news_main .drawer_sp.drawer_sp {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 45px;
    padding: 12px 20px;
  }
  ._nurse_blog_news ._nurse_blog_news_main .drawer_sp.drawer_sp li {
    margin-top: 0;
    width: auto;
  }
}
._nurse_blog_news ._nurse_blog_news_main .inner_side_nav_category {
  overflow: auto;
}
._nurse_blog_news ._nurse_blog_news_main .inner_side_sec .inner_side_nav_category ul li.active ._text {
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}
._nurse_blog_news ._nurse_blog_news_main .inner_side_sec .inner_side_nav_category ul li.active ._text::after {
  content: "";
  background: var(--sub-color);
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-radius: 50%;
}
._nurse_blog_news ._nurse_blog_news_main .inner_side_sec .inner_side_nav_category ul li ._text {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  ._nurse_blog_news .all_more_button {
    margin-top: 32px;
  }
}

.top_information_item {
  display: none;
}
.top_information_item.active {
  display: block;
}

.nurse_home .pl_0 {
  padding-left: 0;
}
.nurse_home .all_news_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nurse_home .all_news_list::before, .nurse_home .all_news_list::after {
  content: none;
}
.nurse_home .all_news_list li {
  width: 48%;
  margin-bottom: 35px;
}
.nurse_home .all_news_list li::before, .nurse_home .all_news_list li::after {
  content: none;
  display: block;
  position: absolute;
  top: inherit;
  bottom: 0;
  left: 0;
}
.nurse_home .all_news_list li::before {
  content: "";
  border-top: 2px solid #EDEDED;
  width: 54px;
}
.nurse_home .all_news_list li::after {
  content: "";
  border-top: 2px dashed #EDEDED;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .nurse_home .all_news_list li {
    width: 100%;
  }
}
.nurse_home .all_news_list a {
  padding: 0;
  padding-bottom: 24px;
  display: block;
  position: static;
}
.nurse_home .all_news_list ._img {
  aspect-ratio: 342/233;
  border-radius: 4px;
  overflow: hidden;
}
.nurse_home .all_news_list ._img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nurse_home .all_news_list ._info_sec {
  width: 100%;
  display: block;
}
.nurse_home .all_news_list ._arrow {
  top: inherit;
  bottom: 0;
}
.nurse_home .all_news_list ._date_category {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.nurse_home .all_news_list ._cat {
  margin-left: 10px;
}
.nurse_home .all_news_list ._title_sec {
  margin-top: 12px;
  width: 100%;
}
.nurse_home .all_news_list ._title.new::before {
  font-size: 14px;
}

.nurse_sub_title ._upper_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.nurse_sub_title ._upper_title ._icon {
  line-height: 0;
}

.nurse_message_box {
  overflow: hidden;
  margin-bottom: 60px;
  padding: 50px 44px;
  border: #E6E6E6 solid 1px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .nurse_message_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
    padding: 40px 24px;
  }
}

.nurse_message_box_photo {
  overflow: hidden;
  float: left;
  aspect-ratio: 40/53;
  width: 17.5824175824%;
  margin: 0;
  border-radius: 8px;
  background-color: #ddd;
}
@media screen and (max-width: 600px) {
  .nurse_message_box_photo {
    float: none;
    width: 27.8745644599%;
  }
}
.nurse_message_box_photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.nurse_message_box_info {
  width: 76.9230769231%;
  float: right;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .nurse_message_box_info {
    float: none;
    width: 62.7177700348%;
  }
}

.nurse_message_box_info_pos {
  display: inline-block;
  margin-right: 17px;
  color: #F4BB3E;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .nurse_message_box_info_pos {
    display: block;
    font-size: 16px;
  }
}

.nurse_message_box_info_name {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .nurse_message_box_info_name {
    display: block;
  }
}

.nurse_message_box_text {
  width: 76.9230769231%;
  float: right;
}
@media screen and (max-width: 600px) {
  .nurse_message_box_text {
    float: none;
    width: 100%;
    margin-top: 25px;
  }
}

.nurse_message_box_text {
  font-size: 17px;
  line-height: 2;
}

/* mixin  ----------------------- */
/*mixin*/
.all_sub_certified_nurse .all_greeting {
  grid-template-columns: 2.2fr 5.8fr;
}
@media screen and (max-width: 600px) {
  .all_sub_certified_nurse .all_greeting {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.inner_side_sec {
  width: 233px;
}
@media (max-width: 1200px) {
  .inner_side_sec {
    width: 100%;
  }
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title {
  line-height: 1;
  font-size: 17px;
  padding: 18px 14px;
  padding-right: 45px;
  border: 1px solid #EDEDED;
  cursor: pointer;
  position: relative;
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title ._arrow {
  width: 28px;
  height: 28px;
  border: 1px solid #D6D7D9;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title ._arrow svg {
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title ._arrow svg * {
  fill: var(--sub-color);
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title.active ._arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.inner_side_sec .inner_side_nav_item .inner_side_nav_title ._bold {
  font-weight: bold;
}
.inner_side_sec .inner_side_nav_item ul {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  border-top: none;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .inner_side_sec .inner_side_nav_item ul {
    border: none;
  }
}
.inner_side_sec .inner_side_nav_item ul.drawer_sp {
  display: none;
}
.inner_side_sec .inner_side_nav_item ul li {
  width: 100%;
}
.inner_side_sec .inner_side_nav_item ul li:nth-of-type(n+2) {
  margin-top: 20px;
}
.inner_side_sec .inner_side_nav_item ul li a, .inner_side_sec .inner_side_nav_item ul li button {
  width: 100%;
  display: inline-block;
  color: #2E2E2E;
  font-size: 17px;
  font-weight: bold;
  position: relative;
  opacity: 0.2;
  -moz-text-align-last: left;
       text-align-last: left;
}
.inner_side_sec .inner_side_nav_item ul li a.current, .inner_side_sec .inner_side_nav_item ul li button.current {
  padding-left: 19px;
  opacity: 1;
}
.inner_side_sec .inner_side_nav_item ul li a.current::before, .inner_side_sec .inner_side_nav_item ul li button.current::before {
  content: "";
  display: block;
  background: var(--sub-color);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
}
.inner_side_sec .inner_side_nav_item + .inner_side_nav_item {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .inner_side_sec .inner_side_nav_item + .inner_side_nav_item {
    margin-top: 20px;
  }
}

.all_archive_wrap {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 50px;
}
.all_archive_wrap .right {
  width: calc(100% - 283px);
}
@media screen and (max-width: 1200px) {
  .all_archive_wrap .right {
    width: 100%;
  }
}
.all_archive_wrap .right .pamphlet_all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list {
  width: 50%;
  padding: 30px 0;
  padding-right: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  border-right: 2px dashed #EDEDED;
}
@media screen and (max-width: 600px) {
  .all_archive_wrap .right .pamphlet_all .pamphlet_list {
    width: 100%;
    padding: 30px 0;
    border-right: none;
  }
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list:nth-child(2n) {
  padding-right: 0;
  padding-left: 30px;
  border-right: none;
}
@media screen and (max-width: 600px) {
  .all_archive_wrap .right .pamphlet_all .pamphlet_list:nth-child(2n) {
    width: 100%;
    padding: 30px 0;
  }
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list ._img {
  width: 130px;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list ._img img {
  width: 100%;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container {
  width: calc(100% - 150px);
  margin-top: 10px;
  position: relative;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .date {
  color: #B4B4B4;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .date ._new {
  padding-left: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #BA0013;
  display: inline-block;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .pamphlet_title {
  margin-top: 5px;
  padding-bottom: 60px;
  font-size: 20px;
  font-weight: 600;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .pamphlet_title .blue {
  font-size: 14px;
  color: #4082C4;
  font-weight: bold;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .pamphlet_view {
  width: 52px;
  height: 52px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.all_archive_wrap .right .pamphlet_all .pamphlet_list .text_container .pamphlet_view img {
  width: 100%;
}

/**
 * Swiper 9.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 10, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

.swiper, swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide, swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet, :host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

.swiper .swiper-notification, swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.all_sub_md .all_sub_time_title {
  margin-bottom: 0;
}
.all_sub_md .all_sub_time_title + .all_swipe_item .all_sub_table {
  margin-top: 30px;
}
.all_sub_md .all_sub_title_02 + .all_sub_time_title {
  margin-top: 100px;
}
@media screen and (max-width: 600px) {
  .all_sub_md .all_sub_title_02 + .all_sub_time_title {
    margin-top: 40px;
  }
}
.all_sub_md .all_sub_md_hours + .all_sub_time_title {
  margin-top: 70px;
}
.all_sub_md .all_sub_table {
  table-layout: fixed;
}
@media screen and (max-width: 600px) {
  .all_sub_md .all_sub_table._no_margin_top {
    margin-top: 0;
  }
}
.all_sub_md .all_table {
  table-layout: auto;
}
.all_sub_md .all_table th {
  width: 17%;
  border-right-style: solid;
}
.all_sub_md .all_table th + td {
  width: 33%;
  padding-top: 18px;
}
.all_sub_md .all_list li + li {
  margin-top: 10px;
}
.all_sub_md .all_sub_md_hours {
  margin-top: 30px;
}
.all_sub_md .all_sub_md_hours .all_table .th_30 {
  width: 30%;
}
.all_sub_md .all_sub_md_hours .all_table .th_sm {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}
.all_sub_md .all_sub_md_hours .all_table .td_large {
  padding: 27px 15px;
}
.all_sub_md .all_sub_md_hours .all_table th,
.all_sub_md .all_sub_md_hours .all_table td {
  text-align: center;
  border-right-style: solid;
}
.all_sub_md .all_sub_md_hours ._time1 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
}
.all_sub_md .all_sub_md_hours_note {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .all_sub_md .all_sub_md_hours .all_table .th_30 {
    width: 40%;
  }
  .all_sub_md .all_sub_md_hours ._time1 {
    font-size: 24px;
  }
}
.all_sub_md .all_sub_md_doctor .all_sub_table {
  table-layout: fixed;
}
.all_sub_md .all_sub_md_doctor .all_sub_table tbody th {
  width: 160px;
}
.all_sub_md .all_sub_md_doctor .all_sub_table ._name {
  font-size: 20px;
  font-weight: bold;
  pointer-events: none;
}
.all_sub_md .all_sub_md_doctor .all_sub_table ._name.all_modal_button {
  background: var(--sub-color);
  padding: 0 14px;
  border-radius: 9999px;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  color: #fff;
}
.all_sub_md .all_sub_md_doctor .all_sub_table ._name.all_modal_button:hover {
  opacity: 0.8;
}
.all_sub_md .all_sub_md_doctor .all_sub_table ._notice {
  margin-top: 4px;
  font-size: 14px;
}
.all_sub_md .all_sub_md_doctor_item {
  line-height: 1;
}
.all_sub_md .all_sub_md_doctor_item + .all_sub_md_doctor_item {
  margin-top: 10px;
}
.all_sub_md .all_sub_md_list {
  counter-reset: latin;
}
@media screen and (max-width: 600px) {
  .all_sub_md .all_sub_md_list {
    padding-left: 20px;
  }
}
.all_sub_md .all_sub_md_list li {
  counter-increment: latin;
  padding-left: 1.2em;
}
.all_sub_md .all_sub_md_list li + li {
  margin-top: 25px;
}
.all_sub_md .all_sub_md_list li ._title {
  margin-bottom: 15px;
  position: relative;
  font-size: 17px;
  font-weight: bold;
}
.all_sub_md .all_sub_md_list li ._title::before {
  content: counter(latin, upper-latin);
  display: block;
  font-size: 17px;
  font-weight: bold;
  position: absolute;
  top: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -1.2em;
  color: var(--sub-color);
}
.all_sub_md .all_sub_md_pamphlet_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .all_sub_md .all_sub_md_pamphlet_content {
    display: block;
  }
  .all_sub_md .all_sub_md_pamphlet_content ._text_sec {
    margin-top: 30px;
  }
  .all_sub_md .all_sub_md_pamphlet_content ._text_sec._text_sec {
    width: 100%;
  }
  .all_sub_md .all_sub_md_pamphlet_content ._img._img {
    width: 154px;
    margin-left: auto;
    margin-right: auto;
  }
}
.all_sub_md .all_sub_md_pamphlet_content ._img {
  width: 23%;
}
.all_sub_md .all_sub_md_pamphlet_content ._text_sec {
  width: 70%;
}
.all_sub_md .all_sub_md_pamphlet_content ._button_sec {
  margin-top: 45px;
}
.all_sub_md .all_sub_md_pamphlet_content ._button_sec .all_button {
  width: 300px;
  margin-right: 30px;
  margin-bottom: 30px;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .all_sub_md .all_sub_md_pamphlet_content ._button_sec .all_button {
    width: 100%;
  }
}
.all_sub_md .all_sub_md_doctor_notice {
  margin-top: 30px;
}
.all_sub_md .visit_meeting .all_list_note {
  margin-top: 20px;
}
.all_sub_md .visit_meeting .all_list_note li {
  color: #d30000;
}
.all_sub_md .online_meeting .orange_sec {
  background: rgba(234, 139, 57, 0.06);
  padding: 65px 45px;
  border-radius: 8px;
  margin-top: 55px;
}
.all_sub_md .online_meeting .orange_sec .all_sub_title_03 {
  margin-top: 0;
}
.all_sub_md .online_meeting .orange_sec .all_gray_order_list .all_list {
  margin-top: 15px;
}
.all_sub_md .online_meeting .orange_sec .all_gray_order_list .all_list_note {
  margin-top: 20px;
}
.all_sub_md .online_meeting .orange_sec .all_gray_order_list .all_list_note li + li {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .all_sub_md .online_meeting .orange_sec {
    padding: 37px 23px 33px 23px;
  }
}
.all_sub_md .parking_lot .all_table th {
  background: #f5f5f5;
  font-size: 20px;
}
.all_sub_md .parking_lot .all_table td {
  font-size: 18px;
}
.all_sub_md .parking_lot .all_table th,
.all_sub_md .parking_lot .all_table td {
  text-align: center;
}
.all_sub_md .parking_lot .all_table ._num {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .all_sub_md .parking_lot .all_table td {
    font-size: 17px;
  }
}
.all_sub_md .parking_lot .all_list_note {
  margin-top: 30px;
}
.all_sub_md .parking_lot .all_list_note li + li {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .all_sub_md .parking_lot .all_table th,
  .all_sub_md .parking_lot .all_table td {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.all_sub_md.gastroenterology .all_greeting_copy_text {
  font-size: 24px;
  color: #62BBC9;
}
.all_sub_md.gastroenterology .all_text._red {
  color: #D30000;
}
.all_sub_md.gastroenterology .all_text._title {
  font-weight: bold;
}
.all_sub_md.gastroenterology .all_text + .all_text {
  margin-top: 5px;
}
.all_sub_md.gastroenterology .all_button.osaka_city {
  margin: 40px 0;
}
.all_sub_md ._bg_box {
  background-color: rgba(98, 187, 201, 0.06);
  padding: 50px 60px;
  border-radius: 8px;
}
.all_sub_md ._bg_box ._text_bold {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 21px;
  color: #62BBC9;
}
.all_sub_md ._bg_box a {
  color: #0057B0;
  text-decoration: underline;
}
.all_sub_md ._bg_box * + .all_sub_title_04 {
  margin-top: 30px;
}
.all_sub_md .light_green_sec {
  background-color: rgba(98, 187, 201, 0.06);
}

.all_sub_md_exam {
  background: #F6FBFC;
  margin-top: 80px;
  padding: 50px 38px;
}

.all_sub_md_exam_title {
  font-size: 21px;
  font-weight: bold;
  color: var(--sub-color);
}
.all_sub_md_exam_title + .all_text {
  margin-top: 30px;
}

.radiology ._bg_box {
  margin-top: 65px;
  padding: 55px 60px;
}
@media screen and (max-width: 600px) {
  .radiology ._bg_box {
    padding: 40px 20px;
  }
}
.radiology ._flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .radiology ._flex {
    display: block;
  }
}
.radiology ._flex_box {
  margin-top: 35px;
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .radiology ._flex_box {
    width: 100%;
  }
}
.radiology ._flex_box p {
  margin-top: 14px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .radiology ._flex_box p {
    font-size: 16px;
  }
}
.radiology .all_sub_contact .all_text + .all_text {
  margin-top: 30px;
}

.rehabilitation .all_text ._strong {
  font-weight: 700;
}
.rehabilitation ._bg_box {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .rehabilitation ._bg_box {
    padding: 40px 20px;
  }
}
.rehabilitation ._bg_box .all_sub_title_03 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.rehabilitation ._bg_box .all_sub_title_03:first-child {
  margin-top: 0;
}
.rehabilitation .worry_list li {
  margin-bottom: 15px;
  font-size: 17px;
}
.rehabilitation .worry_list li::before {
  content: "⚫︎";
  margin-right: 8.5px;
  color: #69C2D0;
}
@media screen and (max-width: 600px) {
  .rehabilitation .all_greeting ._img {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .orthopedics .all_sub_md_list {
    padding-left: 20px;
  }
}
.orthopedics .all_sub_md_list li ._title::before {
  width: 10px;
  height: 10px;
  background: var(--sub-color);
  content: "";
  border-radius: 50%;
}
.orthopedics ._bg_box ._text_bold {
  font-size: 24px;
}
.orthopedics ._bg_box a {
  text-decoration: none;
}
.orthopedics.radiology ._flex {
  margin-top: 40px;
}
.orthopedics.radiology ._flex img {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .orthopedics.radiology ._flex img {
    margin: 10px 0;
    width: 100%;
  }
}
.orthopedics.gastroenterology .all_button.osaka_city {
  margin: 40px 0 0;
}

.all_sub_department_contact {
  padding-bottom: 0;
}
.all_sub_department_contact .all_sub_contact_item {
  border: none;
  padding: 0;
  overflow: visible;
}
.all_sub_department_contact .all_text + .all_text.all_text.all_text {
  margin-top: 20px;
}
.all_sub_department_contact ._tel {
  font-weight: bold;
  color: var(--sub-color);
  text-decoration: underline;
}

.all_md_message ._img {
  margin-bottom: 48px;
}

.all_md_achievements_acc ._head {
  padding: 26px 0 32px;
  border-top: 2px dashed #E6E6E6;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.all_md_achievements_acc ._head ._arrow {
  width: 15px;
  height: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  line-height: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.all_md_achievements_acc ._head ._arrow svg {
  width: 100%;
  height: 100%;
  line-height: 0;
  fill: var(--sub-color);
}
.all_md_achievements_acc ._body {
  padding-bottom: 50px;
  display: none;
}
.all_md_achievements_acc ._body .all_sub_table {
  margin-top: 0;
}
.all_md_achievements_acc ._body .all_sub_table td, .all_md_achievements_acc ._body .all_sub_table th {
  text-align: left;
  padding-left: 20px;
  font-size: 17px;
}
.all_md_achievements_acc.open ._arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.all_md_achievements_acc .all_sub_table + .all_sub_title_04 {
  margin-top: 40px;
}

.urology .all_text ._strong {
  font-weight: 700;
}

.urology ._flex {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.urology ._bg_box {
  margin-top: 60px;
  padding: 55px 60px;
}

/* .all_sub_md ._bg_box {
  background-color: rgba(98, 187, 201, 0.06);
  padding: 50px 60px;
  border-radius: 8px;
} */
.urology ._flex img {
  width: 48%;
}

.urology ._bg_box a {
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .urology ._bg_box {
    padding: 40px 20px;
  }
  .urology ._flex img {
    margin: 10px 0;
    width: 100%;
  }
  .urology ._flex {
    display: block;
  }
}
.urology .all_button.osaka_city.-bottom {
  margin-bottom: 0;
}

.urology .all_sub_md_list li ._title::before {
  width: 10px;
  height: 10px;
  background: var(--sub-color);
  content: "";
  border-radius: 50%;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
/* introduction page  ----------------------- */
.medicine_introduction_column01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01 {
    display: block;
  }
}

.medicine_introduction_column01_image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  width: 36%;
  margin: 0;
  border-radius: 12px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_image {
    width: 100%;
    margin-bottom: 35px;
  }
}
.medicine_introduction_column01_image img {
  width: 100%;
}

.medicine_introduction_column01_texts {
  width: 58.5%;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_texts {
    width: 100%;
  }
}
.medicine_introduction_column01_texts .all_greeting_copy_text {
  display: block;
  line-height: 1.818em;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_texts .all_greeting_copy_text {
    font-size: 19px;
  }
}

.medicine_introduction_column01_group {
  margin-top: 75px;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_group {
    margin-top: 50px;
    font-size: 17px;
  }
}

.medicine_introduction_column01_names {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 13px;
}

.medicine_introduction_column01_pos {
  margin-right: 15px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_pos {
    font-size: 17px;
  }
}

.medicine_introduction_column01_name {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_column01_name {
    font-size: 24px;
  }
}

.medicine_introduction_slide {
  position: relative;
  overflow: hidden;
}
.medicine_introduction_slide .swiper-slide {
  width: 470px;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide .swiper-slide {
    width: min(300px, 75vw);
  }
}
.medicine_introduction_slide .swiper_controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide .swiper_controls {
    margin-top: 40px;
  }
}
.medicine_introduction_slide .swiper-scrollbar {
  width: calc(100% - 170px);
  position: relative;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide .swiper-scrollbar {
    width: calc(100% - 145px);
  }
}
.medicine_introduction_slide .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #a8a8a8;
}
.medicine_introduction_slide .swiper_controls_arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 140px;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide .swiper_controls_arrows {
    width: 120px;
  }
}
.medicine_introduction_slide .swiper_controls_arrows .swiper_controls_arrow {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  border: #EDEDED solid 2px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide .swiper_controls_arrows .swiper_controls_arrow {
    width: 56px;
    height: 56px;
  }
}
.medicine_introduction_slide .swiper_controls_arrows .swiper_controls_arrow * {
  fill: #F4BB3E;
}
.medicine_introduction_slide .swiper_controls_arrows .swiper_controls_arrow.swiper-button-disabled {
  opacity: 0.5;
}
.medicine_introduction_slide .swiper_controls_arrows .arrow_button_prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.medicine_introduction_slide_image {
  overflow: hidden;
  margin: 0 0 35px;
  border-radius: 12px;
  aspect-ratio: 470/327;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide_image {
    margin-bottom: 25px;
  }
}
.medicine_introduction_slide_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.medicine_introduction_slide_ttl {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_slide_ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.medicine_introduction_table01 {
  overflow: auto;
}
.medicine_introduction_table01 .all_sub_table {
  margin-top: 0;
}
.medicine_introduction_table01 .all_sub_table thead th {
  padding: 30px 0;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_table01 .all_sub_table thead th {
    font-size: 17px;
  }
}
.medicine_introduction_table01 .all_sub_table .is_col1 {
  width: 250px;
}
.medicine_introduction_table01 .all_sub_table .is_col2 {
  width: 260px;
}
.medicine_introduction_table01 .all_sub_table .is_col3 {
  width: 409px;
}
.medicine_introduction_table01 .all_sub_table tbody th, .medicine_introduction_table01 .all_sub_table tbody td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  vertical-align: top;
}

.medicine_introduction_table01_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.medicine_introduction_table01_price {
  font-size: 28px;
  font-weight: 500;
}

.medicine_introduction_dotslist_li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .medicine_introduction_dotslist_li {
    padding-left: 20px;
  }
}
.medicine_introduction_dotslist_li::before {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #F4BB3E;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.medicine_introduction_dotslist_li + .medicine_introduction_dotslist_li {
  margin-top: 8px;
}
.medicine_introduction_dotslist_li.is_red {
  color: #D30000;
}
.medicine_introduction_dotslist_li.is_red::before {
  background-color: #D30000;
}

.medicine_introduction_table02 {
  overflow: auto;
}
.medicine_introduction_table02 .all_sub_table {
  margin-top: 0;
}
.medicine_introduction_table02 .all_sub_table .is_col1 {
  width: 300px;
}
.medicine_introduction_table02 .all_sub_table .is_col2 {
  width: 510px;
}
.medicine_introduction_table02 .all_sub_table .is_col3 {
  width: 190px;
}
.medicine_introduction_table02 .all_sub_table th, .medicine_introduction_table02 .all_sub_table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  vertical-align: top;
}

/* works page  ----------------------- */
.medicine_works_table01 {
  overflow: auto;
}
.medicine_works_table01 .all_sub_table {
  margin-top: 0;
}
.medicine_works_table01 .all_sub_table th {
  font-size: 18px;
}
.medicine_works_table01 .all_sub_table td {
  padding: 20px 10px;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}
.medicine_works_table01 .all_sub_table thead th {
  padding: 25px 0;
  border-left: none !important;
  border-right: none !important;
}
.medicine_works_table01 .all_sub_table .is_col1 {
  width: 120px;
}
.medicine_works_table01 .all_sub_table .is_col2 {
  width: 200px;
}
.medicine_works_table01 .all_sub_table .is_col3 {
  width: 430px;
}
.medicine_works_table01 .all_sub_table .is_col4 {
  width: 250px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.kidney_center .all_sub_table {
  margin-bottom: 36px;
}
.kidney_center .all_sub_table thead th:first-child {
  width: 300px;
}
.kidney_center .all_sub_table ._small {
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1200px) {
  .kidney_center.rights .patient-rights_tabs .pr_tabs-item {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .kidney_center.rights .patient-rights_tabs .pr_tabs-item {
    padding: 9px 5px;
  }
}
@media (max-width: 630px) {
  .kidney_center.rights .patient-rights_tabs .pr_tabs-item {
    height: 60px;
    font-size: 12px;
  }
}
.kidney_center.rights .patient-rights_tabs .pr_tabs-item.js-active {
  background-color: #FEFBF3;
  border: 3px solid #F4BB3E;
  border-bottom: 0;
}
@media (max-width: 1200px) {
  .kidney_center.rights .patient-rights_tabs .pr_tabs-item.js-active {
    font-size: 14px;
  }
}
@media (max-width: 630px) {
  .kidney_center.rights .patient-rights_tabs .pr_tabs-item.js-active {
    height: 75px;
    padding-top: 20px;
    font-size: 12px;
  }
}
.kidney_center.rights .patient-rights_panels {
  background-color: #FEFBF3;
  padding: 40px;
}
@media screen and (max-width: 600px) {
  .kidney_center.rights .patient-rights_panels {
    padding: 20px 20px 40px 20px;
  }
}
.kidney_center.rights .patient-rights_panels h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.kidney_center.rights .patient-rights_panels .all_sub_table {
  margin-top: 40px;
}
.kidney_center.rights .patient-rights_panels .all_sub_table thead th:first-child {
  width: 210px;
}
.kidney_center.rights .patient-rights_panels .all_text span {
  color: #D30000;
}
.kidney_center.rights .patient-rights_panels .all_text ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.kidney_center.rights .patient-rights_panels .all_text ul li::before {
  content: "⚫︎";
  color: #F4BB3E;
  margin-right: 10px;
}

/* mixin  ----------------------- */
/* color  ----------------------- */
.hospitalguide_button01 {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_button01 {
    margin-top: 20px;
  }
}

.hospitalguide_button01_anchor {
  max-width: 300px;
  min-height: 70px;
  padding: 5px 25px 5px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  border: #E6E6E6 solid 2px;
  background-color: #fff;
  border-radius: 200px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_button01_anchor {
    max-width: 320px;
    min-height: 60px;
  }
}

.outpatient_gray_sec {
  background: #F5F5F5;
  width: 100%;
  padding: 50px;
  border-radius: 12px;
  display: block;
}
@media screen and (max-width: 600px) {
  .outpatient_gray_sec {
    padding: 40px 25px;
  }
}
.outpatient_gray_sec li {
  margin-bottom: 18px;
}
.outpatient_gray_sec li .all_text {
  line-height: 1.7647058824;
  font-size: 17px;
}
.outpatient_gray_sec li .all_text .number {
  margin-right: 8px;
  font-family: "roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #4082C4;
}
.outpatient_gray_sec li .tel_text {
  margin-top: 10px;
}
.outpatient_gray_sec li .sub_text {
  font-size: 24px;
  text-decoration: underline;
}
.outpatient_gray_sec li .small {
  font-size: 20px;
}

.english .outpatient_gray_sec li {
  padding-left: 25px;
}
.english .outpatient_gray_sec li .number {
  margin-left: -25px;
}

.hospitalguide_box01 {
  padding: 55px;
  background-color: #F4F8FC;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_box01 {
    padding: 40px 25px;
  }
}

.hospitalguide_icontitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_icontitle {
    margin-bottom: 15px;
  }
}

.hospitalguide_icontitle_icon {
  width: 35px;
  padding-bottom: 3px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .hospitalguide_icontitle_icon {
    padding-top: 0;
  }
}
.hospitalguide_icontitle_icon img {
  width: auto;
  max-width: 100%;
}

.hospitalguide_icontitle_text {
  width: calc(100% - 35px);
  color: #4082C4;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .hospitalguide_icontitle_text {
    font-size: 18px;
  }
}

.hospitalguide_table01 .all_sub_table {
  margin-top: 0;
}
.hospitalguide_table01 tbody th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 265px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .hospitalguide_table01 tbody th {
    width: 180px;
  }
}
.hospitalguide_table01 tbody td {
  padding: 20px 30px;
  text-align: left;
}
.hospitalguide_table01 .recess::before {
  display: none;
}

.hospitalguide_table02 tbody th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 180px;
  padding-left: 20px;
  font-size: 17px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .hospitalguide_table02 tbody th {
    width: 180px;
  }
}
.hospitalguide_table02 tbody .in_wide1 {
  width: 190px;
}
.hospitalguide_table02 tbody .is_blue {
  color: #0057B0;
}

.hospitalguide_table02_ok {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border: #4382C0 solid 2px;
  border-radius: 50%;
}

.hospitalguide_table02_day {
  background-color: #EBEBEB;
}
.hospitalguide_table02_day p {
  font-size: 17px;
}

.hospitalguide_table02_time {
  background-color: #fff;
}
.hospitalguide_table02_time p {
  font-size: 14px;
}

.hospitalguide_access_map {
  overflow: hidden;
  height: 0;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 64%;
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_access_map {
    margin-bottom: 30px;
    padding-bottom: 64.1791044776%;
  }
}
.hospitalguide_access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hospitalguide_access_num {
  margin-top: 30px;
}

.hospitalguide_access_num_li {
  position: relative;
  margin-top: 20px;
  padding-left: 30px;
  font-size: 17px;
  line-height: 1.8;
}

.hospitalguide_access_num_icon {
  font-weight: 700;
  color: #4082C4;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.4;
}

.hospitalguide_getintouch_box {
  background-color: #f0f5fb;
}
.hospitalguide_getintouch_box .all_sub_title_03 {
  margin-top: 0;
}
.hospitalguide_getintouch_box ._link {
  display: inline-block;
  margin-left: 20px;
  color: #4082C4;
  font-size: 20px;
  font-weight: bold;
  padding-right: 17px;
  position: relative;
}
.hospitalguide_getintouch_box ._link::before {
  content: "";
  display: block;
  background: url("../images/all_sub_arrow.svg") no-repeat center top/cover;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.hospitalguide_getintouch_form {
  margin-top: 70px;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form {
    padding: 15px 25px 40px;
  }
}

.hospitalguide_getintouch_form_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item {
    display: block;
  }
}
.hospitalguide_getintouch_form_item + .hospitalguide_getintouch_form_item {
  border-top: 1px solid #EDEDED;
}

.hospitalguide_getintouch_form_item_ttl {
  width: 35.9550561798%;
  padding-top: 20px;
  font-size: 17px;
  font-weight: 700;
}
.hospitalguide_getintouch_form_item_ttl.is_ptnon {
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_ttl {
    width: auto;
    margin-bottom: 15px;
    padding-top: 0;
  }
}

.hospitalguide_getintouch_form_item_body {
  width: 64.0449438202%;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_body {
    width: auto;
    max-width: none;
  }
}
.hospitalguide_getintouch_form_item_body .input_text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 25px;
  height: 60px;
  font-weight: 700;
  background: #fff;
  border: none;
  border-radius: 6px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #EDEDED;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_body .input_text {
    padding: 0 10px;
    font-size: 16px;
  }
}
.hospitalguide_getintouch_form_item_body .select_box {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
}
.hospitalguide_getintouch_form_item_body .select_box::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: #000 solid 2px;
  border-bottom: #000 solid 2px;
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_body .select_box::before {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    right: 10px;
  }
}
.hospitalguide_getintouch_form_item_body .select_box select {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  cursor: pointer;
  z-index: 2;
  border: 2px solid #EDEDED;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_body .select_box select {
    padding: 0 10px;
    font-size: 15px;
  }
}

.hospitalguide_getintouch_form_item_captext {
  margin: 10px 0 0 10px;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_captext {
    margin: 10px 0 0 10px;
    font-size: 15px;
  }
}

.hospitalguide_getintouch_form_item_3box {
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_3box {
    max-width: none;
  }
  .hospitalguide_getintouch_form_item_3box.is_tab2col {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .hospitalguide_getintouch_form_item_3box {
    gap: 15px 10px;
  }
}

.hospitalguide_getintouch_form_item_2box {
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .hospitalguide_getintouch_form_item_2box {
    max-width: none;
  }
}
@media screen and (max-width: 600px) {
  .hospitalguide_getintouch_form_item_2box {
    grid-template-columns: 1fr;
    gap: 15px 10px;
  }
}

.hospitalguide_getintouch_form_check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.hospitalguide_getintouch_form_check_li {
  margin: 8px 20px 8px 0;
}

.hospitalguide_getintouch_form_check_label {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.hospitalguide_getintouch_form_check_input {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
}

.mwform-checkbox-field-text {
  position: relative;
  padding-left: 37px;
  display: block;
  font-size: 17px;
  font-weight: bold;
}
.mwform-checkbox-field-text::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: #DEDEDE solid 2px;
  border-radius: 4px;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mwform-checkbox-field-text::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 16px;
  height: 10px;
  border-left: #000 solid 4px;
  border-bottom: #000 solid 4px;
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
}
input:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.hospitalguide_getintouch_form_item_text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.hospitalguide_getintouch_form_item_text a {
  color: #0057B0;
  text-decoration: underline;
}

.hospitalguide_getintouch_form_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .hospitalguide_getintouch_form_btn {
    margin-top: 10px;
  }
}

.hospitalguide_getintouch_form_btn_anchor {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  max-width: 100%;
  height: 60px;
  padding-left: 45px;
  font-size: 17px;
  font-weight: 700;
  background-color: #fff;
  border: #DDDDDD solid 1px;
  border-radius: 50px;
  position: relative;
}

.hospitalguide_getintouch_form_btn_ico {
  display: block;
  position: absolute;
  top: 50%;
  right: 25px;
  color: #4082C4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hospitalguide_getintouch_form_btn_ico * {
  fill: #4082C4;
}

.hospital_guide_modal_btn {
  margin-top: 55px;
}

/* mixin  ----------------------- */
/* color  ----------------------- */
.hospitalization_sub_title ._upper_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hospitalization_sub_title ._upper_title ._icon {
  line-height: 0;
}

.hospitalization_sub_title_04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .hospitalization_sub_title_04 {
    display: block;
  }
}

.hospitalization_sub_title_04_txt {
  display: block;
  margin-right: 24px;
}
@media screen and (max-width: 600px) {
  .hospitalization_sub_title_04_txt {
    margin-right: 0;
  }
}

.hospitalization_sub_title_04_sub {
  display: block;
  color: #D30000;
  font-size: 17px;
  font-weight: 400;
}

.hospitalization_icontitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .hospitalization_icontitle {
    margin-bottom: 15px;
  }
}

.hospitalization_icontitle_icon {
  width: 35px;
  padding-bottom: 3px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .hospitalization_icontitle_icon {
    padding-top: 0;
  }
}
.hospitalization_icontitle_icon img {
  width: auto;
  max-width: 100%;
}

.hospitalization_icontitle_text {
  width: calc(100% - 35px);
  color: #EA8B39;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .hospitalization_icontitle_text {
    font-size: 20px;
  }
}

.hospitalization_dotslist_li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .hospitalization_dotslist_li {
    padding-left: 20px;
  }
}
.hospitalization_dotslist_li::before {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #EA8B39;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.hospitalization_dotslist_li + .hospitalization_dotslist_li {
  margin-top: 12px;
}

.hospitalization_patient_checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 20px;
  border: #E6E6E6 solid 1px;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_checkbox {
    display: block;
    padding: 40px 25px;
  }
}
@media (max-width: 360px) {
  .hospitalization_patient_checkbox {
    padding: 40px 15px;
  }
}

.hospitalization_patient_checkbox_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  padding: 0 25px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_checkbox_list {
    width: auto;
    padding: 0;
  }
}
.hospitalization_patient_checkbox_list + .hospitalization_patient_checkbox_list {
  border-left: #E6E6E6 dashed 2px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_checkbox_list + .hospitalization_patient_checkbox_list {
    margin-top: 10px;
    border-left: none;
  }
}
.hospitalization_patient_checkbox_list label {
  position: relative;
  display: block;
  cursor: pointer;
}

.hospitalization_patient_checkbox_list_li {
  pointer-events: none;
}
.hospitalization_patient_checkbox_list_li + .hospitalization_patient_checkbox_list_li {
  margin-top: 10px;
}

.hospitalization_patient_checkbox_list_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: none;
}

.hospitalization_patient_checkbox_list_txt {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.hospitalization_patient_checkbox_list_txt::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: #DEDEDE solid 2px;
  border-radius: 2px;
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hospitalization_patient_checkbox_list_txt .is_req {
  display: inline-block;
  margin-left: 7px;
  color: #D30000;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_checkbox_list_txt .is_req {
    margin-left: 4px;
  }
}
.hospitalization_patient_checkbox_list_txt::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 12px;
  height: 8px;
  border-left: #000 solid 3px;
  border-bottom: #000 solid 3px;
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
}
input:checked + .hospitalization_patient_checkbox_list_txt::after {
  opacity: 1;
}

.hospitalization_patient_guides {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_guides {
    display: block;
  }
}

.hospitalization_patient_guides_image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  aspect-ratio: 470/327;
  width: 47%;
  margin: 0;
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_guides_image {
    width: 100%;
    margin-bottom: 25px;
  }
}
.hospitalization_patient_guides_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hospitalization_patient_guides_texts {
  width: 47%;
  padding-top: 45px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_guides_texts {
    width: 100%;
    padding-top: 0;
  }
}

.hospitalization_patient_guides_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 25px;
}

.hospitalization_patient_icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px 30px;
  margin: 50px 0;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons {
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
  }
}

.hospitalization_patient_icons_li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: 280px;
  padding: 47px 10px 20px;
  border: #E6E6E6 solid 1px;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons_li {
    min-height: 0;
    padding: 30px 0 10px;
  }
}

.hospitalization_patient_icons_num {
  color: #e5e5e5;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons_num {
    font-size: 40px;
    top: 10px;
    left: 15px;
  }
}

.hospitalization_patient_icons_img {
  margin: 0;
  line-height: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hospitalization_patient_icons_img img {
  width: 126px;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons_img img {
    width: 92px;
  }
}

.hospitalization_patient_icons_txt {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons_txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 3.2em;
    margin-top: 5px;
    font-size: 16px;
  }
}
.hospitalization_patient_icons_txt sup {
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .hospitalization_patient_icons_txt sup {
    margin-left: 3px;
  }
}

.hospitalization_patient_numcap {
  margin-bottom: 90px;
}

.hospitalization_patient_numcap_li {
  position: relative;
  padding-left: 25px;
}
.hospitalization_patient_numcap_li + .hospitalization_patient_numcap_li {
  margin-top: 20px;
}

.hospitalization_patient_numcap_label {
  font-size: 17px;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.hospitalization_patient_modal_tables {
  overflow-x: auto;
}
.hospitalization_patient_modal_tables .all_sub_table {
  margin-top: 0;
}
.hospitalization_patient_modal_tables .all_sub_table th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 240px;
  padding: 30px;
  text-align: left;
}
.hospitalization_patient_modal_tables .all_sub_table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
}

.hospitalization_patient_modal_icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(107px, 1fr));
  gap: 10px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}

.hospitalization_patient_modal_icons_img {
  margin: 0;
  line-height: 0;
}
.hospitalization_patient_modal_icons_img img {
  width: auto;
  height: auto;
}

.hospitalization_patient_modal_icons_txt {
  margin-top: 10px;
}

.inpatients .all_gray_sec._color {
  background: #FEF8F3;
}

/* mixin  ----------------------- */
/* color  ----------------------- */
/* brain_dock page  ----------------------- */
.examination_braindock_column01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column01 {
    display: block;
  }
}

.examination_braindock_column01_img {
  width: 55%;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column01_img {
    width: 100%;
    margin-bottom: 25px;
  }
}

.examination_braindock_column01_txts {
  width: 38%;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column01_txts {
    width: 100%;
  }
}

.examination_braindock_dotslist_li {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .examination_braindock_dotslist_li {
    padding-left: 20px;
  }
}
.examination_braindock_dotslist_li::before {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #B18FDD;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
.examination_braindock_dotslist_li + .examination_braindock_dotslist_li {
  margin-top: 8px;
}
.examination_braindock_dotslist_li.is_red {
  color: #D30000;
}
.examination_braindock_dotslist_li.is_red::before {
  background-color: #D30000;
}

.examination_braindock_column02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column02 {
    display: block;
  }
}

.examination_braindock_column02_img {
  width: 48%;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column02_img {
    width: 100%;
    margin-bottom: 25px;
  }
}

.examination_braindock_column02_txts {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column02_txts {
    width: 100%;
  }
}

.examination_braindock_table01.swipe_active.on::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.examination_braindock_table01 .all_sub_table {
  margin-top: 0;
}
.examination_braindock_table01 .all_sub_table th {
  padding: 20px 0;
}

.examination_braindock_column03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column03 {
    display: block;
  }
}

.examination_braindock_column03_img {
  width: 48%;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column03_img {
    width: 100%;
    margin-bottom: 25px;
  }
}
.examination_braindock_column03_img img {
  width: 80%;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column03_img img {
    width: 100%;
  }
}

.examination_braindock_column03_txts {
  width: 48%;
}
@media screen and (max-width: 600px) {
  .examination_braindock_column03_txts {
    width: 100%;
  }
}

.examination_braindock_icontitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .examination_braindock_icontitle {
    margin-bottom: 15px;
  }
}

.examination_braindock_icontitle_icon {
  width: 35px;
  padding-bottom: 3px;
  line-height: 0;
}
@media screen and (max-width: 600px) {
  .examination_braindock_icontitle_icon {
    padding-top: 0;
  }
}
.examination_braindock_icontitle_icon img {
  width: auto;
  max-width: 100%;
}

.examination_braindock_icontitle_text {
  width: calc(100% - 35px);
  color: #B18FDD;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .examination_braindock_icontitle_text {
    font-size: 20px;
  }
}

.examination_braindock_table02 {
  overflow: auto;
}
.examination_braindock_table02 .all_sub_table {
  margin-top: 0;
}
.examination_braindock_table02 .all_sub_table th {
  padding: 30px 0;
  background-color: #F5F5F5;
  border-top: #EDEDED solid 2px;
  border-color: #EDEDED;
}
@media screen and (max-width: 600px) {
  .examination_braindock_table02 .all_sub_table th {
    font-size: 17px;
  }
}
.examination_braindock_table02 .all_sub_table .is_col1 {
  width: 240px;
}
.examination_braindock_table02 .all_sub_table .is_col2 {
  width: 520px;
}
.examination_braindock_table02 .all_sub_table .is_col3 {
  width: 240px;
}
.examination_braindock_table02 .all_sub_table td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .examination_braindock_table02 .all_sub_table td {
    font-size: 17px;
  }
}

.examination_braindock_table02_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

.examination_braindock_table02_price {
  font-size: 28px;
  font-weight: 500;
}

.examination_braindock_button01 {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .examination_braindock_button01 {
    margin-top: 35px;
  }
}

.examination_braindock_button01_anchor {
  max-width: 300px;
  min-height: 70px;
  padding: 5px 25px 5px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #2E2E2E;
  font-size: 17px;
  font-weight: 700;
  border: #E6E6E6 solid 2px;
  border-radius: 200px;
}
@media screen and (max-width: 600px) {
  .examination_braindock_button01_anchor {
    max-width: 320px;
    min-height: 60px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.patient_support_center .all_sub_mv._left_parts {
  background-image: url(../images/all_sub_mv_patientsupport.jpg);
}
@media screen and (max-width: 600px) {
  .patient_support_center .all_sub_mv._left_parts {
    background-image: url(../images/all_sub_mv_patientsupport_sp.jpg);
  }
}
.patient_support_center .all_sub_mv._left_parts::after {
  background-image: url(../images/all_sub_mv_left_parts_blue.png);
  top: -30%;
  left: -440px;
}
.patient_support_center ._sub_text {
  position: absolute;
  top: 57%;
  left: 10%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._sub_text {
    top: 47%;
    left: 20px;
    font-size: 17px;
  }
}
.patient_support_center ._guidance {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._guidance {
    margin-top: 40px;
    display: block;
  }
}
.patient_support_center ._guidance ._box {
  width: 48%;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #E6E6E6;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._guidance ._box {
    width: 100%;
    margin-top: 24px;
    padding: 30px;
  }
}
.patient_support_center ._guidance ._box ._title {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .patient_support_center ._guidance ._box ._title {
    margin-bottom: 24px;
    font-size: 19px;
  }
}
.patient_support_center ._reception_time_wrapper {
  margin-top: 140px;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._reception_time_wrapper {
    margin-right: 88px;
  }
}
.patient_support_center ._reception_time_wrapper .all_sub_table {
  margin-top: 36px;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._reception_time_wrapper .all_sub_table {
    margin-top: 30px;
  }
}
.patient_support_center ._reception_time_wrapper .all_text {
  margin-top: 24px;
}
.patient_support_center ._time_icon {
  font-size: 32px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._time_icon {
    font-size: 24px;
  }
}
.patient_support_center ._time_icon::before {
  content: "";
  background-image: url(../images/all_icon_time.svg);
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.patient_support_center .sp_noscroll .all_swipe_item.swipe_active.on.none::before {
  content: none;
}
.patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table {
  min-width: initial;
}
.patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table th, .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table td {
  width: 100%;
  display: block;
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table ._sp_empty {
    display: none;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table thead th {
    padding: 15px 0;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table tbody {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table tbody tr {
    width: 50%;
  }
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table tbody tr:first-child {
    border-right: 2px dashed #E6E6E6;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table thead th:first-of-type + th {
    border-left: none;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table tbody th + td {
    border-left: none;
  }
}
@media (max-width: 783px) {
  .patient_support_center .sp_noscroll .all_swipe_item.swipe_active .all_sub_table tbody tr + tr {
    border-top: none;
  }
}
.patient_support_center .sp_noscroll .all_swipe_item.swipe_active.on::before {
  content: none !important;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._reception_time_wrapper {
    margin-right: 0;
  }
}
.patient_support_center ._flow_wrapper {
  background-image: url(../images/patient_support_center_flow_bg.png);
  background-repeat: no-repeat;
  background-size: 90% 90%;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .patient_support_center ._flow_wrapper.pc {
    display: none;
  }
}
.patient_support_center ._flow_wrapper.sp {
  display: none;
}
@media (max-width: 767px) {
  .patient_support_center ._flow_wrapper.sp {
    display: block;
    background-image: url(../images/patient_support_center_flow_bg_sp.png);
    background-size: contain;
  }
}
.patient_support_center ._flow_wrapper ._box {
  width: 31.5%;
  height: 1400px;
  position: relative;
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
  -webkit-box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.18);
}
@media (max-width: 767px) {
  .patient_support_center ._flow_wrapper ._box {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
  }
}
.patient_support_center ._flow_wrapper ._box img {
  max-width: 173px;
}
.patient_support_center ._flow_wrapper ._box ._title {
  padding: 7px 0;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1240px) {
  .patient_support_center ._flow_wrapper ._box ._title {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .patient_support_center ._flow_wrapper ._box ._title {
    font-size: 28px;
  }
}
.patient_support_center ._flow_wrapper ._box ._flow_section {
  padding: 30px;
  position: relative;
  text-align: center;
}
.patient_support_center ._flow_wrapper ._box ._flow_section::before {
  content: "";
  background-repeat: no-repeat;
  display: inline-block;
  width: 32px;
  height: 43px;
  position: absolute;
  top: 5%;
  left: 10%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._01::before {
  background-image: url(../images/patient_support_center_number1.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_section._02 {
  top: 5%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._02::before {
  background-image: url(../images/patient_support_center_number2.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_section._02 ._flow_tell {
  margin-top: 25px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .patient_support_center ._flow_wrapper ._box ._flow_section._02 ._flow_tell {
    margin-top: 15px;
  }
}
.patient_support_center ._flow_wrapper ._box ._flow_section._02 ._flow_tell a {
  text-decoration: underline;
  font-weight: 500;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._03 {
  top: 24%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._03::before {
  background-image: url(../images/patient_support_center_number3.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_section._04 {
  top: 8%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._04::before {
  background-image: url(../images/patient_support_center_number4.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_section._05 {
  top: 33%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._05::before {
  background-image: url(../images/patient_support_center_number5.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_section._06 {
  top: 40%;
}
.patient_support_center ._flow_wrapper ._box ._flow_section._06::before {
  background-image: url(../images/patient_support_center_number6.svg);
}
.patient_support_center ._flow_wrapper ._box ._flow_title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 1240px) {
  .patient_support_center ._flow_wrapper ._box ._flow_title {
    font-size: 24px;
  }
}
.patient_support_center ._flow_wrapper ._box .all_text {
  margin-top: 20px;
  text-align: left;
  font-weight: bold;
}
.patient_support_center ._flow_wrapper ._box .all_text span {
  color: #D30000;
}
.patient_support_center ._flow_wrapper ._box._for_patient {
  background-color: #FDF7E9;
}
.patient_support_center ._flow_wrapper ._box._for_patient ._title {
  background-color: #EAAD28;
}
.patient_support_center ._flow_wrapper ._box._for_patient ._flow_title {
  color: #EAAD28;
}
.patient_support_center ._flow_wrapper ._box._for_referral {
  background-color: #EAF4E9;
}
.patient_support_center ._flow_wrapper ._box._for_referral ._title {
  background-color: #65B75E;
}
.patient_support_center ._flow_wrapper ._box._for_referral ._flow_title {
  color: #65B75E;
}
.patient_support_center ._flow_wrapper ._box._for_referral ._flow_section .all_text a, .patient_support_center ._flow_wrapper ._box._for_referral ._flow_section .all_text span {
  color: #0057B0;
  text-decoration: underline;
}
.patient_support_center ._flow_wrapper ._box._ohno {
  background-color: #EAF6F8;
}
.patient_support_center ._flow_wrapper ._box._ohno ._title {
  background-color: #548DC6;
}
.patient_support_center ._flow_wrapper ._box._ohno ._flow_title {
  color: #548DC6;
}
.patient_support_center ._fax {
  color: #0057B0;
  text-decoration: underline;
}
.patient_support_center .all_3col_button_sec {
  margin-top: 50px;
}
.patient_support_center .all_3col_button_sec .all_button a ._text {
  font-size: 16px;
}
.patient_support_center .worry_list {
  background-color: #F0F5FB;
  margin-top: 30px;
  padding: 26px 32px;
  border-radius: 8px;
}
.patient_support_center .worry_list li {
  font-size: 17px;
}
.patient_support_center .worry_list li:not(:first-child) {
  margin-top: 10px;
}
.patient_support_center .worry_list li::before {
  content: "⚫︎";
  margin-right: 8.5px;
  color: #4082C4;
}
.patient_support_center .checkup .all_sub_table tbody td + td {
  border-left: none;
}
.patient_support_center .checkup .all_sub_table td {
  padding: 10px 10px 10px 32px;
  text-align: left;
  font-size: 17px;
}
.patient_support_center .checkup .all_sub_table ._head td {
  padding-left: 0;
  text-align: center;
  font-size: 18px;
}
.patient_support_center .checkup .all_sub_table ._fw_normal {
  font-weight: 400;
}
.patient_support_center .checkup .all_sub_table ._bg_gray {
  background-color: #F5F5F5;
}
.patient_support_center .checkup .all_sub_table ._border_left {
  border-left: 2px dashed #E6E6E6;
}
.patient_support_center .checkup .all_sub_table ._center {
  padding-left: 0;
  text-align: center;
}
.patient_support_center .checkup .all_sub_table ._w_150 {
  width: 150px;
}
.patient_support_center .table_btn {
  width: 80%;
  margin: 15px 0;
}
.patient_support_center .table_btn button {
  height: 60px;
}

.patient_support_center_modal .all_modal_item ._inner .blue_con {
  background: #F0F5FB;
  width: 100%;
  margin-top: 25px;
  padding: 40px 35px 25px;
  border-radius: 8px;
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .blue_con {
    padding: 25px;
  }
}
.patient_support_center_modal .all_modal_item ._inner .blue_con ._title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .blue_con ._title {
    margin-bottom: 14px;
    font-size: 19px;
  }
}
.patient_support_center_modal .all_modal_item ._inner .worry_list {
  width: 80%;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .patient_support_center_modal .all_modal_item ._inner .worry_list {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .worry_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.patient_support_center_modal .all_modal_item ._inner .worry_list li {
  width: 33.3333333333%;
  font-size: 17px;
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .worry_list li {
    width: 100%;
  }
}
.patient_support_center_modal .all_modal_item ._inner .worry_list li:not(:first-child) {
  margin-top: 10px;
}
.patient_support_center_modal .all_modal_item ._inner .worry_list li::before {
  content: "⚫︎";
  margin-right: 8.5px;
  color: #4082C4;
}
.patient_support_center_modal .all_modal_item ._inner .modal_table_list {
  width: 80%;
  border: 2px solid #EDEDED;
}
@media screen and (max-width: 1024px) {
  .patient_support_center_modal .all_modal_item ._inner .modal_table_list {
    width: 100%;
  }
}
.patient_support_center_modal .all_modal_item ._inner .modal_table_list li {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #EDEDED;
}
.patient_support_center_modal .all_modal_item ._inner .modal_table_list li:nth-last-child(1) {
  border-bottom: none;
}
.patient_support_center_modal .all_modal_item ._inner .modal_table_list li .gray {
  background: #F5F5F5;
  width: 20%;
  height: 60px;
  border-right: 2px dashed #EDEDED;
  font-size: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .modal_table_list li .gray {
    width: 40%;
  }
}
.patient_support_center_modal .all_modal_item ._inner .modal_table_list li .white {
  width: 80%;
  height: 60px;
  font-size: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 7%;
}
@media screen and (max-width: 600px) {
  .patient_support_center_modal .all_modal_item ._inner .modal_table_list li .white {
    width: 60%;
    padding-left: 0;
    font-size: 17px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* mixin  ----------------------- */
/* color  ----------------------- */
/* margin  ----------------------- */
@media screen and (min-width: 601px) {
  .mt_5_pc {
    margin-top: 5px;
  }
  .mt_10_pc {
    margin-top: 10px;
  }
  .mt_15_pc {
    margin-top: 15px;
  }
  .mt_20_pc {
    margin-top: 20px;
  }
  .mt_25_pc {
    margin-top: 25px;
  }
  .mt_30_pc {
    margin-top: 30px;
  }
  .mt_35_pc {
    margin-top: 35px;
  }
  .mt_40_pc {
    margin-top: 40px;
  }
  .mt_45_pc {
    margin-top: 45px;
  }
  .mt_50_pc {
    margin-top: 50px;
  }
  .mt_55_pc {
    margin-top: 55px;
  }
  .mt_60_pc {
    margin-top: 60px;
  }
  .mt_65_pc {
    margin-top: 65px;
  }
  .mt_70_pc {
    margin-top: 70px;
  }
  .mt_75_pc {
    margin-top: 75px;
  }
  .mt_80_pc {
    margin-top: 80px;
  }
  .mt_85_pc {
    margin-top: 85px;
  }
  .mt_90_pc {
    margin-top: 90px;
  }
  .mt_95_pc {
    margin-top: 95px;
  }
  .mt_100_pc {
    margin-top: 100px;
  }
  .mt_105_pc {
    margin-top: 105px;
  }
  .mt_110_pc {
    margin-top: 110px;
  }
  .mt_115_pc {
    margin-top: 115px;
  }
  .mt_120_pc {
    margin-top: 120px;
  }
  .mt_125_pc {
    margin-top: 125px;
  }
  .mt_130_pc {
    margin-top: 130px;
  }
  .mt_135_pc {
    margin-top: 135px;
  }
  .mt_140_pc {
    margin-top: 140px;
  }
  .mt_145_pc {
    margin-top: 145px;
  }
  .mt_150_pc {
    margin-top: 150px;
  }
  .mt_155_pc {
    margin-top: 155px;
  }
  .mt_160_pc {
    margin-top: 160px;
  }
  .mt_165_pc {
    margin-top: 165px;
  }
  .mt_170_pc {
    margin-top: 170px;
  }
  .mt_175_pc {
    margin-top: 175px;
  }
  .mt_180_pc {
    margin-top: 180px;
  }
  .mt_185_pc {
    margin-top: 185px;
  }
  .mt_190_pc {
    margin-top: 190px;
  }
  .mt_195_pc {
    margin-top: 195px;
  }
  .mt_200_pc {
    margin-top: 200px;
  }
  .mr_5_pc {
    margin-right: 5px;
  }
  .mr_10_pc {
    margin-right: 10px;
  }
  .mr_15_pc {
    margin-right: 15px;
  }
  .mr_20_pc {
    margin-right: 20px;
  }
  .mr_25_pc {
    margin-right: 25px;
  }
  .mr_30_pc {
    margin-right: 30px;
  }
  .mr_35_pc {
    margin-right: 35px;
  }
  .mr_40_pc {
    margin-right: 40px;
  }
  .mr_45_pc {
    margin-right: 45px;
  }
  .mr_50_pc {
    margin-right: 50px;
  }
  .mr_55_pc {
    margin-right: 55px;
  }
  .mr_60_pc {
    margin-right: 60px;
  }
  .mr_65_pc {
    margin-right: 65px;
  }
  .mr_70_pc {
    margin-right: 70px;
  }
  .mr_75_pc {
    margin-right: 75px;
  }
  .mr_80_pc {
    margin-right: 80px;
  }
  .mr_85_pc {
    margin-right: 85px;
  }
  .mr_90_pc {
    margin-right: 90px;
  }
  .mr_95_pc {
    margin-right: 95px;
  }
  .mr_100_pc {
    margin-right: 100px;
  }
  .mr_105_pc {
    margin-right: 105px;
  }
  .mr_110_pc {
    margin-right: 110px;
  }
  .mr_115_pc {
    margin-right: 115px;
  }
  .mr_120_pc {
    margin-right: 120px;
  }
  .mr_125_pc {
    margin-right: 125px;
  }
  .mr_130_pc {
    margin-right: 130px;
  }
  .mr_135_pc {
    margin-right: 135px;
  }
  .mr_140_pc {
    margin-right: 140px;
  }
  .mr_145_pc {
    margin-right: 145px;
  }
  .mr_150_pc {
    margin-right: 150px;
  }
  .mr_155_pc {
    margin-right: 155px;
  }
  .mr_160_pc {
    margin-right: 160px;
  }
  .mr_165_pc {
    margin-right: 165px;
  }
  .mr_170_pc {
    margin-right: 170px;
  }
  .mr_175_pc {
    margin-right: 175px;
  }
  .mr_180_pc {
    margin-right: 180px;
  }
  .mr_185_pc {
    margin-right: 185px;
  }
  .mr_190_pc {
    margin-right: 190px;
  }
  .mr_195_pc {
    margin-right: 195px;
  }
  .mr_200_pc {
    margin-right: 200px;
  }
  .mb_5_pc {
    margin-bottom: 5px;
  }
  .mb_10_pc {
    margin-bottom: 10px;
  }
  .mb_15_pc {
    margin-bottom: 15px;
  }
  .mb_20_pc {
    margin-bottom: 20px;
  }
  .mb_25_pc {
    margin-bottom: 25px;
  }
  .mb_30_pc {
    margin-bottom: 30px;
  }
  .mb_35_pc {
    margin-bottom: 35px;
  }
  .mb_40_pc {
    margin-bottom: 40px;
  }
  .mb_45_pc {
    margin-bottom: 45px;
  }
  .mb_50_pc {
    margin-bottom: 50px;
  }
  .mb_55_pc {
    margin-bottom: 55px;
  }
  .mb_60_pc {
    margin-bottom: 60px;
  }
  .mb_65_pc {
    margin-bottom: 65px;
  }
  .mb_70_pc {
    margin-bottom: 70px;
  }
  .mb_75_pc {
    margin-bottom: 75px;
  }
  .mb_80_pc {
    margin-bottom: 80px;
  }
  .mb_85_pc {
    margin-bottom: 85px;
  }
  .mb_90_pc {
    margin-bottom: 90px;
  }
  .mb_95_pc {
    margin-bottom: 95px;
  }
  .mb_100_pc {
    margin-bottom: 100px;
  }
  .mb_105_pc {
    margin-bottom: 105px;
  }
  .mb_110_pc {
    margin-bottom: 110px;
  }
  .mb_115_pc {
    margin-bottom: 115px;
  }
  .mb_120_pc {
    margin-bottom: 120px;
  }
  .mb_125_pc {
    margin-bottom: 125px;
  }
  .mb_130_pc {
    margin-bottom: 130px;
  }
  .mb_135_pc {
    margin-bottom: 135px;
  }
  .mb_140_pc {
    margin-bottom: 140px;
  }
  .mb_145_pc {
    margin-bottom: 145px;
  }
  .mb_150_pc {
    margin-bottom: 150px;
  }
  .mb_155_pc {
    margin-bottom: 155px;
  }
  .mb_160_pc {
    margin-bottom: 160px;
  }
  .mb_165_pc {
    margin-bottom: 165px;
  }
  .mb_170_pc {
    margin-bottom: 170px;
  }
  .mb_175_pc {
    margin-bottom: 175px;
  }
  .mb_180_pc {
    margin-bottom: 180px;
  }
  .mb_185_pc {
    margin-bottom: 185px;
  }
  .mb_190_pc {
    margin-bottom: 190px;
  }
  .mb_195_pc {
    margin-bottom: 195px;
  }
  .mb_200_pc {
    margin-bottom: 200px;
  }
  .ml_5_pc {
    margin-left: 5px;
  }
  .ml_10_pc {
    margin-left: 10px;
  }
  .ml_15_pc {
    margin-left: 15px;
  }
  .ml_20_pc {
    margin-left: 20px;
  }
  .ml_25_pc {
    margin-left: 25px;
  }
  .ml_30_pc {
    margin-left: 30px;
  }
  .ml_35_pc {
    margin-left: 35px;
  }
  .ml_40_pc {
    margin-left: 40px;
  }
  .ml_45_pc {
    margin-left: 45px;
  }
  .ml_50_pc {
    margin-left: 50px;
  }
  .ml_55_pc {
    margin-left: 55px;
  }
  .ml_60_pc {
    margin-left: 60px;
  }
  .ml_65_pc {
    margin-left: 65px;
  }
  .ml_70_pc {
    margin-left: 70px;
  }
  .ml_75_pc {
    margin-left: 75px;
  }
  .ml_80_pc {
    margin-left: 80px;
  }
  .ml_85_pc {
    margin-left: 85px;
  }
  .ml_90_pc {
    margin-left: 90px;
  }
  .ml_95_pc {
    margin-left: 95px;
  }
  .ml_100_pc {
    margin-left: 100px;
  }
  .ml_105_pc {
    margin-left: 105px;
  }
  .ml_110_pc {
    margin-left: 110px;
  }
  .ml_115_pc {
    margin-left: 115px;
  }
  .ml_120_pc {
    margin-left: 120px;
  }
  .ml_125_pc {
    margin-left: 125px;
  }
  .ml_130_pc {
    margin-left: 130px;
  }
  .ml_135_pc {
    margin-left: 135px;
  }
  .ml_140_pc {
    margin-left: 140px;
  }
  .ml_145_pc {
    margin-left: 145px;
  }
  .ml_150_pc {
    margin-left: 150px;
  }
  .ml_155_pc {
    margin-left: 155px;
  }
  .ml_160_pc {
    margin-left: 160px;
  }
  .ml_165_pc {
    margin-left: 165px;
  }
  .ml_170_pc {
    margin-left: 170px;
  }
  .ml_175_pc {
    margin-left: 175px;
  }
  .ml_180_pc {
    margin-left: 180px;
  }
  .ml_185_pc {
    margin-left: 185px;
  }
  .ml_190_pc {
    margin-left: 190px;
  }
  .ml_195_pc {
    margin-left: 195px;
  }
  .ml_200_pc {
    margin-left: 200px;
  }
  .pt_5_pc {
    padding-top: 5px;
  }
  .pt_10_pc {
    padding-top: 10px;
  }
  .pt_15_pc {
    padding-top: 15px;
  }
  .pt_20_pc {
    padding-top: 20px;
  }
  .pt_25_pc {
    padding-top: 25px;
  }
  .pt_30_pc {
    padding-top: 30px;
  }
  .pt_35_pc {
    padding-top: 35px;
  }
  .pt_40_pc {
    padding-top: 40px;
  }
  .pt_45_pc {
    padding-top: 45px;
  }
  .pt_50_pc {
    padding-top: 50px;
  }
  .pt_55_pc {
    padding-top: 55px;
  }
  .pt_60_pc {
    padding-top: 60px;
  }
  .pt_65_pc {
    padding-top: 65px;
  }
  .pt_70_pc {
    padding-top: 70px;
  }
  .pt_75_pc {
    padding-top: 75px;
  }
  .pt_80_pc {
    padding-top: 80px;
  }
  .pt_85_pc {
    padding-top: 85px;
  }
  .pt_90_pc {
    padding-top: 90px;
  }
  .pt_95_pc {
    padding-top: 95px;
  }
  .pt_100_pc {
    padding-top: 100px;
  }
  .pt_105_pc {
    padding-top: 105px;
  }
  .pt_110_pc {
    padding-top: 110px;
  }
  .pt_115_pc {
    padding-top: 115px;
  }
  .pt_120_pc {
    padding-top: 120px;
  }
  .pt_125_pc {
    padding-top: 125px;
  }
  .pt_130_pc {
    padding-top: 130px;
  }
  .pt_135_pc {
    padding-top: 135px;
  }
  .pt_140_pc {
    padding-top: 140px;
  }
  .pt_145_pc {
    padding-top: 145px;
  }
  .pt_150_pc {
    padding-top: 150px;
  }
  .pt_155_pc {
    padding-top: 155px;
  }
  .pt_160_pc {
    padding-top: 160px;
  }
  .pt_165_pc {
    padding-top: 165px;
  }
  .pt_170_pc {
    padding-top: 170px;
  }
  .pt_175_pc {
    padding-top: 175px;
  }
  .pt_180_pc {
    padding-top: 180px;
  }
  .pt_185_pc {
    padding-top: 185px;
  }
  .pt_190_pc {
    padding-top: 190px;
  }
  .pt_195_pc {
    padding-top: 195px;
  }
  .pt_200_pc {
    padding-top: 200px;
  }
  .pr_5_pc {
    padding-right: 5px;
  }
  .pr_10_pc {
    padding-right: 10px;
  }
  .pr_15_pc {
    padding-right: 15px;
  }
  .pr_20_pc {
    padding-right: 20px;
  }
  .pr_25_pc {
    padding-right: 25px;
  }
  .pr_30_pc {
    padding-right: 30px;
  }
  .pr_35_pc {
    padding-right: 35px;
  }
  .pr_40_pc {
    padding-right: 40px;
  }
  .pr_45_pc {
    padding-right: 45px;
  }
  .pr_50_pc {
    padding-right: 50px;
  }
  .pr_55_pc {
    padding-right: 55px;
  }
  .pr_60_pc {
    padding-right: 60px;
  }
  .pr_65_pc {
    padding-right: 65px;
  }
  .pr_70_pc {
    padding-right: 70px;
  }
  .pr_75_pc {
    padding-right: 75px;
  }
  .pr_80_pc {
    padding-right: 80px;
  }
  .pr_85_pc {
    padding-right: 85px;
  }
  .pr_90_pc {
    padding-right: 90px;
  }
  .pr_95_pc {
    padding-right: 95px;
  }
  .pr_100_pc {
    padding-right: 100px;
  }
  .pr_105_pc {
    padding-right: 105px;
  }
  .pr_110_pc {
    padding-right: 110px;
  }
  .pr_115_pc {
    padding-right: 115px;
  }
  .pr_120_pc {
    padding-right: 120px;
  }
  .pr_125_pc {
    padding-right: 125px;
  }
  .pr_130_pc {
    padding-right: 130px;
  }
  .pr_135_pc {
    padding-right: 135px;
  }
  .pr_140_pc {
    padding-right: 140px;
  }
  .pr_145_pc {
    padding-right: 145px;
  }
  .pr_150_pc {
    padding-right: 150px;
  }
  .pr_155_pc {
    padding-right: 155px;
  }
  .pr_160_pc {
    padding-right: 160px;
  }
  .pr_165_pc {
    padding-right: 165px;
  }
  .pr_170_pc {
    padding-right: 170px;
  }
  .pr_175_pc {
    padding-right: 175px;
  }
  .pr_180_pc {
    padding-right: 180px;
  }
  .pr_185_pc {
    padding-right: 185px;
  }
  .pr_190_pc {
    padding-right: 190px;
  }
  .pr_195_pc {
    padding-right: 195px;
  }
  .pr_200_pc {
    padding-right: 200px;
  }
  .pb_5_pc {
    padding-bottom: 5px;
  }
  .pb_10_pc {
    padding-bottom: 10px;
  }
  .pb_15_pc {
    padding-bottom: 15px;
  }
  .pb_20_pc {
    padding-bottom: 20px;
  }
  .pb_25_pc {
    padding-bottom: 25px;
  }
  .pb_30_pc {
    padding-bottom: 30px;
  }
  .pb_35_pc {
    padding-bottom: 35px;
  }
  .pb_40_pc {
    padding-bottom: 40px;
  }
  .pb_45_pc {
    padding-bottom: 45px;
  }
  .pb_50_pc {
    padding-bottom: 50px;
  }
  .pb_55_pc {
    padding-bottom: 55px;
  }
  .pb_60_pc {
    padding-bottom: 60px;
  }
  .pb_65_pc {
    padding-bottom: 65px;
  }
  .pb_70_pc {
    padding-bottom: 70px;
  }
  .pb_75_pc {
    padding-bottom: 75px;
  }
  .pb_80_pc {
    padding-bottom: 80px;
  }
  .pb_85_pc {
    padding-bottom: 85px;
  }
  .pb_90_pc {
    padding-bottom: 90px;
  }
  .pb_95_pc {
    padding-bottom: 95px;
  }
  .pb_100_pc {
    padding-bottom: 100px;
  }
  .pb_105_pc {
    padding-bottom: 105px;
  }
  .pb_110_pc {
    padding-bottom: 110px;
  }
  .pb_115_pc {
    padding-bottom: 115px;
  }
  .pb_120_pc {
    padding-bottom: 120px;
  }
  .pb_125_pc {
    padding-bottom: 125px;
  }
  .pb_130_pc {
    padding-bottom: 130px;
  }
  .pb_135_pc {
    padding-bottom: 135px;
  }
  .pb_140_pc {
    padding-bottom: 140px;
  }
  .pb_145_pc {
    padding-bottom: 145px;
  }
  .pb_150_pc {
    padding-bottom: 150px;
  }
  .pb_155_pc {
    padding-bottom: 155px;
  }
  .pb_160_pc {
    padding-bottom: 160px;
  }
  .pb_165_pc {
    padding-bottom: 165px;
  }
  .pb_170_pc {
    padding-bottom: 170px;
  }
  .pb_175_pc {
    padding-bottom: 175px;
  }
  .pb_180_pc {
    padding-bottom: 180px;
  }
  .pb_185_pc {
    padding-bottom: 185px;
  }
  .pb_190_pc {
    padding-bottom: 190px;
  }
  .pb_195_pc {
    padding-bottom: 195px;
  }
  .pb_200_pc {
    padding-bottom: 200px;
  }
  .pl_5_pc {
    padding-left: 5px;
  }
  .pl_10_pc {
    padding-left: 10px;
  }
  .pl_15_pc {
    padding-left: 15px;
  }
  .pl_20_pc {
    padding-left: 20px;
  }
  .pl_25_pc {
    padding-left: 25px;
  }
  .pl_30_pc {
    padding-left: 30px;
  }
  .pl_35_pc {
    padding-left: 35px;
  }
  .pl_40_pc {
    padding-left: 40px;
  }
  .pl_45_pc {
    padding-left: 45px;
  }
  .pl_50_pc {
    padding-left: 50px;
  }
  .pl_55_pc {
    padding-left: 55px;
  }
  .pl_60_pc {
    padding-left: 60px;
  }
  .pl_65_pc {
    padding-left: 65px;
  }
  .pl_70_pc {
    padding-left: 70px;
  }
  .pl_75_pc {
    padding-left: 75px;
  }
  .pl_80_pc {
    padding-left: 80px;
  }
  .pl_85_pc {
    padding-left: 85px;
  }
  .pl_90_pc {
    padding-left: 90px;
  }
  .pl_95_pc {
    padding-left: 95px;
  }
  .pl_100_pc {
    padding-left: 100px;
  }
  .pl_105_pc {
    padding-left: 105px;
  }
  .pl_110_pc {
    padding-left: 110px;
  }
  .pl_115_pc {
    padding-left: 115px;
  }
  .pl_120_pc {
    padding-left: 120px;
  }
  .pl_125_pc {
    padding-left: 125px;
  }
  .pl_130_pc {
    padding-left: 130px;
  }
  .pl_135_pc {
    padding-left: 135px;
  }
  .pl_140_pc {
    padding-left: 140px;
  }
  .pl_145_pc {
    padding-left: 145px;
  }
  .pl_150_pc {
    padding-left: 150px;
  }
  .pl_155_pc {
    padding-left: 155px;
  }
  .pl_160_pc {
    padding-left: 160px;
  }
  .pl_165_pc {
    padding-left: 165px;
  }
  .pl_170_pc {
    padding-left: 170px;
  }
  .pl_175_pc {
    padding-left: 175px;
  }
  .pl_180_pc {
    padding-left: 180px;
  }
  .pl_185_pc {
    padding-left: 185px;
  }
  .pl_190_pc {
    padding-left: 190px;
  }
  .pl_195_pc {
    padding-left: 195px;
  }
  .pl_200_pc {
    padding-left: 200px;
  }
}
@media screen and (max-width: 600px) {
  .mt_5_sp {
    margin-top: 5px;
  }
  .mt_10_sp {
    margin-top: 10px;
  }
  .mt_15_sp {
    margin-top: 15px;
  }
  .mt_20_sp {
    margin-top: 20px;
  }
  .mt_25_sp {
    margin-top: 25px;
  }
  .mt_30_sp {
    margin-top: 30px;
  }
  .mt_35_sp {
    margin-top: 35px;
  }
  .mt_40_sp {
    margin-top: 40px;
  }
  .mt_45_sp {
    margin-top: 45px;
  }
  .mt_50_sp {
    margin-top: 50px;
  }
  .mt_55_sp {
    margin-top: 55px;
  }
  .mt_60_sp {
    margin-top: 60px;
  }
  .mt_65_sp {
    margin-top: 65px;
  }
  .mt_70_sp {
    margin-top: 70px;
  }
  .mt_75_sp {
    margin-top: 75px;
  }
  .mt_80_sp {
    margin-top: 80px;
  }
  .mt_85_sp {
    margin-top: 85px;
  }
  .mt_90_sp {
    margin-top: 90px;
  }
  .mt_95_sp {
    margin-top: 95px;
  }
  .mt_100_sp {
    margin-top: 100px;
  }
  .mt_105_sp {
    margin-top: 105px;
  }
  .mt_110_sp {
    margin-top: 110px;
  }
  .mt_115_sp {
    margin-top: 115px;
  }
  .mt_120_sp {
    margin-top: 120px;
  }
  .mt_125_sp {
    margin-top: 125px;
  }
  .mt_130_sp {
    margin-top: 130px;
  }
  .mt_135_sp {
    margin-top: 135px;
  }
  .mt_140_sp {
    margin-top: 140px;
  }
  .mt_145_sp {
    margin-top: 145px;
  }
  .mt_150_sp {
    margin-top: 150px;
  }
  .mt_155_sp {
    margin-top: 155px;
  }
  .mt_160_sp {
    margin-top: 160px;
  }
  .mt_165_sp {
    margin-top: 165px;
  }
  .mt_170_sp {
    margin-top: 170px;
  }
  .mt_175_sp {
    margin-top: 175px;
  }
  .mt_180_sp {
    margin-top: 180px;
  }
  .mt_185_sp {
    margin-top: 185px;
  }
  .mt_190_sp {
    margin-top: 190px;
  }
  .mt_195_sp {
    margin-top: 195px;
  }
  .mt_200_sp {
    margin-top: 200px;
  }
  .mr_5_sp {
    margin-right: 5px;
  }
  .mr_10_sp {
    margin-right: 10px;
  }
  .mr_15_sp {
    margin-right: 15px;
  }
  .mr_20_sp {
    margin-right: 20px;
  }
  .mr_25_sp {
    margin-right: 25px;
  }
  .mr_30_sp {
    margin-right: 30px;
  }
  .mr_35_sp {
    margin-right: 35px;
  }
  .mr_40_sp {
    margin-right: 40px;
  }
  .mr_45_sp {
    margin-right: 45px;
  }
  .mr_50_sp {
    margin-right: 50px;
  }
  .mr_55_sp {
    margin-right: 55px;
  }
  .mr_60_sp {
    margin-right: 60px;
  }
  .mr_65_sp {
    margin-right: 65px;
  }
  .mr_70_sp {
    margin-right: 70px;
  }
  .mr_75_sp {
    margin-right: 75px;
  }
  .mr_80_sp {
    margin-right: 80px;
  }
  .mr_85_sp {
    margin-right: 85px;
  }
  .mr_90_sp {
    margin-right: 90px;
  }
  .mr_95_sp {
    margin-right: 95px;
  }
  .mr_100_sp {
    margin-right: 100px;
  }
  .mr_105_sp {
    margin-right: 105px;
  }
  .mr_110_sp {
    margin-right: 110px;
  }
  .mr_115_sp {
    margin-right: 115px;
  }
  .mr_120_sp {
    margin-right: 120px;
  }
  .mr_125_sp {
    margin-right: 125px;
  }
  .mr_130_sp {
    margin-right: 130px;
  }
  .mr_135_sp {
    margin-right: 135px;
  }
  .mr_140_sp {
    margin-right: 140px;
  }
  .mr_145_sp {
    margin-right: 145px;
  }
  .mr_150_sp {
    margin-right: 150px;
  }
  .mr_155_sp {
    margin-right: 155px;
  }
  .mr_160_sp {
    margin-right: 160px;
  }
  .mr_165_sp {
    margin-right: 165px;
  }
  .mr_170_sp {
    margin-right: 170px;
  }
  .mr_175_sp {
    margin-right: 175px;
  }
  .mr_180_sp {
    margin-right: 180px;
  }
  .mr_185_sp {
    margin-right: 185px;
  }
  .mr_190_sp {
    margin-right: 190px;
  }
  .mr_195_sp {
    margin-right: 195px;
  }
  .mr_200_sp {
    margin-right: 200px;
  }
  .mb_5_sp {
    margin-bottom: 5px;
  }
  .mb_10_sp {
    margin-bottom: 10px;
  }
  .mb_15_sp {
    margin-bottom: 15px;
  }
  .mb_20_sp {
    margin-bottom: 20px;
  }
  .mb_25_sp {
    margin-bottom: 25px;
  }
  .mb_30_sp {
    margin-bottom: 30px;
  }
  .mb_35_sp {
    margin-bottom: 35px;
  }
  .mb_40_sp {
    margin-bottom: 40px;
  }
  .mb_45_sp {
    margin-bottom: 45px;
  }
  .mb_50_sp {
    margin-bottom: 50px;
  }
  .mb_55_sp {
    margin-bottom: 55px;
  }
  .mb_60_sp {
    margin-bottom: 60px;
  }
  .mb_65_sp {
    margin-bottom: 65px;
  }
  .mb_70_sp {
    margin-bottom: 70px;
  }
  .mb_75_sp {
    margin-bottom: 75px;
  }
  .mb_80_sp {
    margin-bottom: 80px;
  }
  .mb_85_sp {
    margin-bottom: 85px;
  }
  .mb_90_sp {
    margin-bottom: 90px;
  }
  .mb_95_sp {
    margin-bottom: 95px;
  }
  .mb_100_sp {
    margin-bottom: 100px;
  }
  .mb_105_sp {
    margin-bottom: 105px;
  }
  .mb_110_sp {
    margin-bottom: 110px;
  }
  .mb_115_sp {
    margin-bottom: 115px;
  }
  .mb_120_sp {
    margin-bottom: 120px;
  }
  .mb_125_sp {
    margin-bottom: 125px;
  }
  .mb_130_sp {
    margin-bottom: 130px;
  }
  .mb_135_sp {
    margin-bottom: 135px;
  }
  .mb_140_sp {
    margin-bottom: 140px;
  }
  .mb_145_sp {
    margin-bottom: 145px;
  }
  .mb_150_sp {
    margin-bottom: 150px;
  }
  .mb_155_sp {
    margin-bottom: 155px;
  }
  .mb_160_sp {
    margin-bottom: 160px;
  }
  .mb_165_sp {
    margin-bottom: 165px;
  }
  .mb_170_sp {
    margin-bottom: 170px;
  }
  .mb_175_sp {
    margin-bottom: 175px;
  }
  .mb_180_sp {
    margin-bottom: 180px;
  }
  .mb_185_sp {
    margin-bottom: 185px;
  }
  .mb_190_sp {
    margin-bottom: 190px;
  }
  .mb_195_sp {
    margin-bottom: 195px;
  }
  .mb_200_sp {
    margin-bottom: 200px;
  }
  .ml_5_sp {
    margin-left: 5px;
  }
  .ml_10_sp {
    margin-left: 10px;
  }
  .ml_15_sp {
    margin-left: 15px;
  }
  .ml_20_sp {
    margin-left: 20px;
  }
  .ml_25_sp {
    margin-left: 25px;
  }
  .ml_30_sp {
    margin-left: 30px;
  }
  .ml_35_sp {
    margin-left: 35px;
  }
  .ml_40_sp {
    margin-left: 40px;
  }
  .ml_45_sp {
    margin-left: 45px;
  }
  .ml_50_sp {
    margin-left: 50px;
  }
  .ml_55_sp {
    margin-left: 55px;
  }
  .ml_60_sp {
    margin-left: 60px;
  }
  .ml_65_sp {
    margin-left: 65px;
  }
  .ml_70_sp {
    margin-left: 70px;
  }
  .ml_75_sp {
    margin-left: 75px;
  }
  .ml_80_sp {
    margin-left: 80px;
  }
  .ml_85_sp {
    margin-left: 85px;
  }
  .ml_90_sp {
    margin-left: 90px;
  }
  .ml_95_sp {
    margin-left: 95px;
  }
  .ml_100_sp {
    margin-left: 100px;
  }
  .ml_105_sp {
    margin-left: 105px;
  }
  .ml_110_sp {
    margin-left: 110px;
  }
  .ml_115_sp {
    margin-left: 115px;
  }
  .ml_120_sp {
    margin-left: 120px;
  }
  .ml_125_sp {
    margin-left: 125px;
  }
  .ml_130_sp {
    margin-left: 130px;
  }
  .ml_135_sp {
    margin-left: 135px;
  }
  .ml_140_sp {
    margin-left: 140px;
  }
  .ml_145_sp {
    margin-left: 145px;
  }
  .ml_150_sp {
    margin-left: 150px;
  }
  .ml_155_sp {
    margin-left: 155px;
  }
  .ml_160_sp {
    margin-left: 160px;
  }
  .ml_165_sp {
    margin-left: 165px;
  }
  .ml_170_sp {
    margin-left: 170px;
  }
  .ml_175_sp {
    margin-left: 175px;
  }
  .ml_180_sp {
    margin-left: 180px;
  }
  .ml_185_sp {
    margin-left: 185px;
  }
  .ml_190_sp {
    margin-left: 190px;
  }
  .ml_195_sp {
    margin-left: 195px;
  }
  .ml_200_sp {
    margin-left: 200px;
  }
  .pt_5_sp {
    padding-top: 5px;
  }
  .pt_10_sp {
    padding-top: 10px;
  }
  .pt_15_sp {
    padding-top: 15px;
  }
  .pt_20_sp {
    padding-top: 20px;
  }
  .pt_25_sp {
    padding-top: 25px;
  }
  .pt_30_sp {
    padding-top: 30px;
  }
  .pt_35_sp {
    padding-top: 35px;
  }
  .pt_40_sp {
    padding-top: 40px;
  }
  .pt_45_sp {
    padding-top: 45px;
  }
  .pt_50_sp {
    padding-top: 50px;
  }
  .pt_55_sp {
    padding-top: 55px;
  }
  .pt_60_sp {
    padding-top: 60px;
  }
  .pt_65_sp {
    padding-top: 65px;
  }
  .pt_70_sp {
    padding-top: 70px;
  }
  .pt_75_sp {
    padding-top: 75px;
  }
  .pt_80_sp {
    padding-top: 80px;
  }
  .pt_85_sp {
    padding-top: 85px;
  }
  .pt_90_sp {
    padding-top: 90px;
  }
  .pt_95_sp {
    padding-top: 95px;
  }
  .pt_100_sp {
    padding-top: 100px;
  }
  .pt_105_sp {
    padding-top: 105px;
  }
  .pt_110_sp {
    padding-top: 110px;
  }
  .pt_115_sp {
    padding-top: 115px;
  }
  .pt_120_sp {
    padding-top: 120px;
  }
  .pt_125_sp {
    padding-top: 125px;
  }
  .pt_130_sp {
    padding-top: 130px;
  }
  .pt_135_sp {
    padding-top: 135px;
  }
  .pt_140_sp {
    padding-top: 140px;
  }
  .pt_145_sp {
    padding-top: 145px;
  }
  .pt_150_sp {
    padding-top: 150px;
  }
  .pt_155_sp {
    padding-top: 155px;
  }
  .pt_160_sp {
    padding-top: 160px;
  }
  .pt_165_sp {
    padding-top: 165px;
  }
  .pt_170_sp {
    padding-top: 170px;
  }
  .pt_175_sp {
    padding-top: 175px;
  }
  .pt_180_sp {
    padding-top: 180px;
  }
  .pt_185_sp {
    padding-top: 185px;
  }
  .pt_190_sp {
    padding-top: 190px;
  }
  .pt_195_sp {
    padding-top: 195px;
  }
  .pt_200_sp {
    padding-top: 200px;
  }
  .pr_5_sp {
    padding-right: 5px;
  }
  .pr_10_sp {
    padding-right: 10px;
  }
  .pr_15_sp {
    padding-right: 15px;
  }
  .pr_20_sp {
    padding-right: 20px;
  }
  .pr_25_sp {
    padding-right: 25px;
  }
  .pr_30_sp {
    padding-right: 30px;
  }
  .pr_35_sp {
    padding-right: 35px;
  }
  .pr_40_sp {
    padding-right: 40px;
  }
  .pr_45_sp {
    padding-right: 45px;
  }
  .pr_50_sp {
    padding-right: 50px;
  }
  .pr_55_sp {
    padding-right: 55px;
  }
  .pr_60_sp {
    padding-right: 60px;
  }
  .pr_65_sp {
    padding-right: 65px;
  }
  .pr_70_sp {
    padding-right: 70px;
  }
  .pr_75_sp {
    padding-right: 75px;
  }
  .pr_80_sp {
    padding-right: 80px;
  }
  .pr_85_sp {
    padding-right: 85px;
  }
  .pr_90_sp {
    padding-right: 90px;
  }
  .pr_95_sp {
    padding-right: 95px;
  }
  .pr_100_sp {
    padding-right: 100px;
  }
  .pr_105_sp {
    padding-right: 105px;
  }
  .pr_110_sp {
    padding-right: 110px;
  }
  .pr_115_sp {
    padding-right: 115px;
  }
  .pr_120_sp {
    padding-right: 120px;
  }
  .pr_125_sp {
    padding-right: 125px;
  }
  .pr_130_sp {
    padding-right: 130px;
  }
  .pr_135_sp {
    padding-right: 135px;
  }
  .pr_140_sp {
    padding-right: 140px;
  }
  .pr_145_sp {
    padding-right: 145px;
  }
  .pr_150_sp {
    padding-right: 150px;
  }
  .pr_155_sp {
    padding-right: 155px;
  }
  .pr_160_sp {
    padding-right: 160px;
  }
  .pr_165_sp {
    padding-right: 165px;
  }
  .pr_170_sp {
    padding-right: 170px;
  }
  .pr_175_sp {
    padding-right: 175px;
  }
  .pr_180_sp {
    padding-right: 180px;
  }
  .pr_185_sp {
    padding-right: 185px;
  }
  .pr_190_sp {
    padding-right: 190px;
  }
  .pr_195_sp {
    padding-right: 195px;
  }
  .pr_200_sp {
    padding-right: 200px;
  }
  .pb_5_sp {
    padding-bottom: 5px;
  }
  .pb_10_sp {
    padding-bottom: 10px;
  }
  .pb_15_sp {
    padding-bottom: 15px;
  }
  .pb_20_sp {
    padding-bottom: 20px;
  }
  .pb_25_sp {
    padding-bottom: 25px;
  }
  .pb_30_sp {
    padding-bottom: 30px;
  }
  .pb_35_sp {
    padding-bottom: 35px;
  }
  .pb_40_sp {
    padding-bottom: 40px;
  }
  .pb_45_sp {
    padding-bottom: 45px;
  }
  .pb_50_sp {
    padding-bottom: 50px;
  }
  .pb_55_sp {
    padding-bottom: 55px;
  }
  .pb_60_sp {
    padding-bottom: 60px;
  }
  .pb_65_sp {
    padding-bottom: 65px;
  }
  .pb_70_sp {
    padding-bottom: 70px;
  }
  .pb_75_sp {
    padding-bottom: 75px;
  }
  .pb_80_sp {
    padding-bottom: 80px;
  }
  .pb_85_sp {
    padding-bottom: 85px;
  }
  .pb_90_sp {
    padding-bottom: 90px;
  }
  .pb_95_sp {
    padding-bottom: 95px;
  }
  .pb_100_sp {
    padding-bottom: 100px;
  }
  .pb_105_sp {
    padding-bottom: 105px;
  }
  .pb_110_sp {
    padding-bottom: 110px;
  }
  .pb_115_sp {
    padding-bottom: 115px;
  }
  .pb_120_sp {
    padding-bottom: 120px;
  }
  .pb_125_sp {
    padding-bottom: 125px;
  }
  .pb_130_sp {
    padding-bottom: 130px;
  }
  .pb_135_sp {
    padding-bottom: 135px;
  }
  .pb_140_sp {
    padding-bottom: 140px;
  }
  .pb_145_sp {
    padding-bottom: 145px;
  }
  .pb_150_sp {
    padding-bottom: 150px;
  }
  .pb_155_sp {
    padding-bottom: 155px;
  }
  .pb_160_sp {
    padding-bottom: 160px;
  }
  .pb_165_sp {
    padding-bottom: 165px;
  }
  .pb_170_sp {
    padding-bottom: 170px;
  }
  .pb_175_sp {
    padding-bottom: 175px;
  }
  .pb_180_sp {
    padding-bottom: 180px;
  }
  .pb_185_sp {
    padding-bottom: 185px;
  }
  .pb_190_sp {
    padding-bottom: 190px;
  }
  .pb_195_sp {
    padding-bottom: 195px;
  }
  .pb_200_sp {
    padding-bottom: 200px;
  }
  .pl_5_sp {
    padding-left: 5px;
  }
  .pl_10_sp {
    padding-left: 10px;
  }
  .pl_15_sp {
    padding-left: 15px;
  }
  .pl_20_sp {
    padding-left: 20px;
  }
  .pl_25_sp {
    padding-left: 25px;
  }
  .pl_30_sp {
    padding-left: 30px;
  }
  .pl_35_sp {
    padding-left: 35px;
  }
  .pl_40_sp {
    padding-left: 40px;
  }
  .pl_45_sp {
    padding-left: 45px;
  }
  .pl_50_sp {
    padding-left: 50px;
  }
  .pl_55_sp {
    padding-left: 55px;
  }
  .pl_60_sp {
    padding-left: 60px;
  }
  .pl_65_sp {
    padding-left: 65px;
  }
  .pl_70_sp {
    padding-left: 70px;
  }
  .pl_75_sp {
    padding-left: 75px;
  }
  .pl_80_sp {
    padding-left: 80px;
  }
  .pl_85_sp {
    padding-left: 85px;
  }
  .pl_90_sp {
    padding-left: 90px;
  }
  .pl_95_sp {
    padding-left: 95px;
  }
  .pl_100_sp {
    padding-left: 100px;
  }
  .pl_105_sp {
    padding-left: 105px;
  }
  .pl_110_sp {
    padding-left: 110px;
  }
  .pl_115_sp {
    padding-left: 115px;
  }
  .pl_120_sp {
    padding-left: 120px;
  }
  .pl_125_sp {
    padding-left: 125px;
  }
  .pl_130_sp {
    padding-left: 130px;
  }
  .pl_135_sp {
    padding-left: 135px;
  }
  .pl_140_sp {
    padding-left: 140px;
  }
  .pl_145_sp {
    padding-left: 145px;
  }
  .pl_150_sp {
    padding-left: 150px;
  }
  .pl_155_sp {
    padding-left: 155px;
  }
  .pl_160_sp {
    padding-left: 160px;
  }
  .pl_165_sp {
    padding-left: 165px;
  }
  .pl_170_sp {
    padding-left: 170px;
  }
  .pl_175_sp {
    padding-left: 175px;
  }
  .pl_180_sp {
    padding-left: 180px;
  }
  .pl_185_sp {
    padding-left: 185px;
  }
  .pl_190_sp {
    padding-left: 190px;
  }
  .pl_195_sp {
    padding-left: 195px;
  }
  .pl_200_sp {
    padding-left: 200px;
  }
}
/* font size  ----------------------- */
@media screen and (min-width: 601px) {
  .font_10_pc {
    font-size: 10px;
  }
  .font_11_pc {
    font-size: 11px;
  }
  .font_12_pc {
    font-size: 12px;
  }
  .font_13_pc {
    font-size: 13px;
  }
  .font_14_pc {
    font-size: 14px;
  }
  .font_15_pc {
    font-size: 15px;
  }
  .font_16_pc {
    font-size: 16px;
  }
  .font_17_pc {
    font-size: 17px;
  }
  .font_18_pc {
    font-size: 18px;
  }
  .font_19_pc {
    font-size: 19px;
  }
  .font_20_pc {
    font-size: 20px;
  }
  .font_21_pc {
    font-size: 21px;
  }
  .font_22_pc {
    font-size: 22px;
  }
  .font_23_pc {
    font-size: 23px;
  }
  .font_24_pc {
    font-size: 24px;
  }
  .font_25_pc {
    font-size: 25px;
  }
  .font_26_pc {
    font-size: 26px;
  }
  .font_27_pc {
    font-size: 27px;
  }
  .font_28_pc {
    font-size: 28px;
  }
  .font_29_pc {
    font-size: 29px;
  }
  .font_30_pc {
    font-size: 30px;
  }
  .font_31_pc {
    font-size: 31px;
  }
  .font_32_pc {
    font-size: 32px;
  }
  .font_33_pc {
    font-size: 33px;
  }
  .font_34_pc {
    font-size: 34px;
  }
  .font_35_pc {
    font-size: 35px;
  }
  .font_36_pc {
    font-size: 36px;
  }
  .font_37_pc {
    font-size: 37px;
  }
  .font_38_pc {
    font-size: 38px;
  }
  .font_39_pc {
    font-size: 39px;
  }
  .font_40_pc {
    font-size: 40px;
  }
  .font_41_pc {
    font-size: 41px;
  }
  .font_42_pc {
    font-size: 42px;
  }
  .font_43_pc {
    font-size: 43px;
  }
  .font_44_pc {
    font-size: 44px;
  }
  .font_45_pc {
    font-size: 45px;
  }
  .font_46_pc {
    font-size: 46px;
  }
  .font_47_pc {
    font-size: 47px;
  }
  .font_48_pc {
    font-size: 48px;
  }
  .font_49_pc {
    font-size: 49px;
  }
  .font_50_pc {
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .font_10_sp {
    font-size: 10px;
  }
  .font_11_sp {
    font-size: 11px;
  }
  .font_12_sp {
    font-size: 12px;
  }
  .font_13_sp {
    font-size: 13px;
  }
  .font_14_sp {
    font-size: 14px;
  }
  .font_15_sp {
    font-size: 15px;
  }
  .font_16_sp {
    font-size: 16px;
  }
  .font_17_sp {
    font-size: 17px;
  }
  .font_18_sp {
    font-size: 18px;
  }
  .font_19_sp {
    font-size: 19px;
  }
  .font_20_sp {
    font-size: 20px;
  }
  .font_21_sp {
    font-size: 21px;
  }
  .font_22_sp {
    font-size: 22px;
  }
  .font_23_sp {
    font-size: 23px;
  }
  .font_24_sp {
    font-size: 24px;
  }
  .font_25_sp {
    font-size: 25px;
  }
  .font_26_sp {
    font-size: 26px;
  }
  .font_27_sp {
    font-size: 27px;
  }
  .font_28_sp {
    font-size: 28px;
  }
  .font_29_sp {
    font-size: 29px;
  }
  .font_30_sp {
    font-size: 30px;
  }
  .font_31_sp {
    font-size: 31px;
  }
  .font_32_sp {
    font-size: 32px;
  }
  .font_33_sp {
    font-size: 33px;
  }
  .font_34_sp {
    font-size: 34px;
  }
  .font_35_sp {
    font-size: 35px;
  }
  .font_36_sp {
    font-size: 36px;
  }
  .font_37_sp {
    font-size: 37px;
  }
  .font_38_sp {
    font-size: 38px;
  }
  .font_39_sp {
    font-size: 39px;
  }
  .font_40_sp {
    font-size: 40px;
  }
  .font_41_sp {
    font-size: 41px;
  }
  .font_42_sp {
    font-size: 42px;
  }
  .font_43_sp {
    font-size: 43px;
  }
  .font_44_sp {
    font-size: 44px;
  }
  .font_45_sp {
    font-size: 45px;
  }
  .font_46_sp {
    font-size: 46px;
  }
  .font_47_sp {
    font-size: 47px;
  }
  .font_48_sp {
    font-size: 48px;
  }
  .font_49_sp {
    font-size: 49px;
  }
  .font_50_sp {
    font-size: 50px;
  }
}
/* font w  ----------------------- */
.font_regular {
  font-weight: 400;
}

.font_medium {
  font-weight: 500;
}

.font_bold {
  font-weight: 700;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_search_result {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .all_search_result {
    font-size: 20px;
  }
}

.result_list {
  margin-top: 76px;
}
.result_list .all_result_item {
  font-size: 17px;
}
.result_list .all_result_item:not(:last-child) {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #e3e3e3;
}
.result_list .all_result_item a {
  display: block;
  color: #56534f;
}
.result_list .all_result_item_in {
  font-size: 17px;
}
.result_list .all_result_item ._img {
  border-radius: 4px;
  overflow: hidden;
}
.result_list .all_result_item ._text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.result_list .all_result_item ._item_title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.result_list .all_result_item ._item_all_text {
  margin-top: 37px;
}
.result_list .all_result_item .highlight {
  background-color: var(--color-004);
}
@media screen and (min-width: 1025px) {
  .result_list .all_result_item_in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .result_list .all_result_item ._img {
    width: 35%;
  }
  .result_list .all_result_item ._text {
    width: 65%;
    padding-left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .result_list .all_result_item:not(:last-child) {
    padding-bottom: 70px;
    margin-bottom: 40px;
  }
  .result_list .all_result_item ._text {
    margin-top: 36px;
  }
  .result_list .all_result_item ._item_title {
    font-size: 20px;
  }
  .result_list .all_result_item ._item_all_text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .result_list {
    margin-top: 40px;
  }
}

.all_result .all_pagination {
  margin-top: 130px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.sub_recruit .all_greeting_copy ._withohno {
  width: 300px;
  display: inline-block;
  position: absolute;
  right: -19px;
  top: 39px;
}
.sub_recruit ._text_ttl_copy {
  position: relative;
  z-index: 1;
}
.sub_recruit .welfare_table {
  font-size: 17px;
}
.sub_recruit .welfare_table th {
  width: 24%;
}
.sub_recruit .hospital_tour .all_grid_sec {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub_recruit .hospital_tour .all_grid_sec .all_text:first-child {
  margin-top: 0;
}
.sub_recruit .open_positions .all_sub_title_04 {
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 15px;
}
.sub_recruit .open_positions .all_sub_title_04::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: var(--sub-color);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sub_recruit .open_positions .all_sub_title_04::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E6E6E6;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sub_recruit .open_positions .all_3col_button_sec + .all_sub_title_04 {
  margin-top: 60px;
}
.sub_recruit .open_positions .all_button a,
.sub_recruit .open_positions .all_button button {
  height: 68px;
}
.sub_recruit .inquiry_re {
  font-size: 17px;
}
.sub_recruit .inquiry_re .ir_outline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 30px 0;
  border-bottom: 2px dashed #ededed;
  position: relative;
}
.sub_recruit .inquiry_re .ir_outline::before {
  content: "";
  position: absolute;
  width: 88px;
  left: 0;
  bottom: -2px;
  height: 2px;
  border-bottom: 2px solid #ededed;
}
.sub_recruit .inquiry_re .ir_outline:last-child {
  border-bottom-width: 0;
}
.sub_recruit .inquiry_re .ir_outline:last-child::before {
  content: none;
}
.sub_recruit .inquiry_re .ir_key,
.sub_recruit .inquiry_re .ir_value {
  line-height: 2;
}
.sub_recruit .inquiry_re .ir_key {
  width: 104px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.sub_recruit .inquiry_re .ir_value {
  width: calc(100% - 104px);
  padding-left: 44px;
}
.sub_recruit .inquiry_re a {
  font-weight: bold;
  color: var(--sub-color);
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .sub_recruit .inquiry_re .ir_outline {
    padding: 26px 0;
    position: relative;
  }
  .sub_recruit .inquiry_re .ir_key,
  .sub_recruit .inquiry_re .ir_value {
    width: 100%;
  }
  .sub_recruit .inquiry_re .ir_value {
    margin-top: 10px;
    padding-left: 0;
  }
}
.sub_recruit .ir_nurse_list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 5.5%;
}
@media screen and (max-width: 768px) {
  .sub_recruit .ir_nurse_list {
    grid-template-columns: 1fr;
  }
}
.sub_recruit .senior_message {
  padding: 50px 50px 65px 50px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.sub_recruit .senior_message .senior_profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.sub_recruit .senior_message .senior_profile ._img {
  width: 57px;
}
.sub_recruit .senior_message .senior_profile ._img img {
  width: 57px;
  height: 57px;
  border-radius: 50%;
}
.sub_recruit .senior_message .senior_profile ._text {
  line-height: 1.5;
}
.sub_recruit .senior_message .senior_profile ._text .senior_position {
  font-size: 16px;
  font-weight: bold;
  color: var(--sub-color);
}
.sub_recruit .senior_message .senior_profile ._text .senior_name {
  font-size: 24px;
  font-weight: bold;
}
.sub_recruit .senior_message .senior_message_detail {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .sub_recruit .senior_message {
    padding: 35px 18px 90px 18px;
  }
}
.sub_recruit .ir_apply_btn {
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub_recruit .ir_apply_btn + .ir_apply_btn {
  margin-top: 28px;
}
@media screen and (max-width: 600px) {
  .sub_recruit .ir_apply_btn {
    margin-top: 35px;
  }
  .sub_recruit .ir_apply_btn.pc.pc {
    display: none;
  }
  .sub_recruit .ir_apply_btn a {
    max-width: 250px;
  }
}

.inquiry_re {
  font-size: 17px;
}

.recruit_data .all_table_top_note {
  margin-top: 60px;
}

.recruit_data_sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 27px 2.8%;
}
@media screen and (max-width: 768px) {
  .recruit_data_sec {
    gap: 20px;
  }
}
.recruit_data_sec ._item {
  width: 48.6%;
}
.recruit_data_sec ._item._wide {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit_data_sec ._item {
    width: 100%;
  }
}

#print .all_modal_item {
  width: 100%;
  height: 100%;
  max-width: none;
  position: static;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
}
#print .all_modal_item ._inner {
  padding: 80px 40px 60px;
}
#print ._close_btn, #print .all_button {
  display: none;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.entry_form {
  padding: 70px 55px;
  background-color: #f5f5f5;
  margin-top: 35px;
  border-radius: 12px;
  font-size: 17px;
  /* iOSでのデフォルトスタイルをリセット */
}
.entry_form input[type=submit],
.entry_form input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.entry_form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.entry_form input[type=submit]::-webkit-search-decoration,
.entry_form input[type=button]::-webkit-search-decoration {
  display: none;
}
.entry_form input[type=submit]::focus,
.entry_form input[type=button]::focus {
  outline-offset: -2px;
}
.entry_form input[type=text],
.entry_form input[type=email],
.entry_form input[type=tel],
.entry_form textarea,
.entry_form select {
  width: 100%;
  border: 1px solid transparent;
  background: #fff;
  padding: 10px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.entry_form .form_outline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.entry_form .form_outline:last-of-type, .entry_form .form_outline:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.entry_form .form_outline + .form_outline {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #ededed;
}
.entry_form .form_outline + :not(.form_outline) {
  margin-top: 60px;
}
.entry_form .form_head {
  width: 37%;
  position: relative;
  font-weight: bold;
}
.entry_form .form_body {
  width: 63%;
}
.entry_form .form_required_label,
.entry_form .form_option_label {
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  padding: 5px 9px;
}
.entry_form .zip01.zip01.zip01 {
  max-width: 200px;
}
.entry_form .form_required_label {
  background-color: #d30000;
}
.entry_form .form_option_label {
  background-color: #a0a0a0;
}
.entry_form input[type=text],
.entry_form input[type=email],
.entry_form input[type=tel],
.entry_form textarea,
.entry_form select {
  border-radius: 6px;
  height: 60px;
  max-width: 500px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 15px;
  color: inherit;
}
.entry_form input[type=text]:focus,
.entry_form input[type=email]:focus,
.entry_form input[type=tel]:focus,
.entry_form textarea:focus,
.entry_form select:focus {
  border: 1px solid var(--sub-color);
}
@media screen and (max-width: 600px) {
  .entry_form input[type=text],
  .entry_form input[type=email],
  .entry_form input[type=tel],
  .entry_form textarea,
  .entry_form select {
    padding-left: 15px;
    padding-right: 15px;
    height: 50px;
  }
}
.entry_form .form_text {
  font-size: 15px;
}
.entry_form textarea {
  height: 174px;
  resize: vertical;
  color: inherit;
}
.entry_form select {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11.414" height="7.121" viewBox="0 0 11.414 7.121"> <path id="Path_868019" data-name="Path 868019" d="M20,16l-5-5,5-5" transform="translate(-5.293 20.707) rotate(-90)" fill="none" stroke="%23222" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.75rem center;
  background-size: 11px 7px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  color: inherit;
}
.entry_form .form-check-input {
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -2px;
  border-radius: 4px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #e3e3e3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: inset 0px 0px 0px 5px #fff;
          box-shadow: inset 0px 0px 0px 5px #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.entry_form .form-check-input .list-item-label {
  font-weight: bold;
}
.entry_form .form-check-input[type=radio] {
  border-radius: 50%;
}
.entry_form .form-check-input[type=radio] + .mwform-radio-field-text {
  font-weight: bold;
}
.entry_form .form-check-input[type=radio]:checked {
  background-color: var(--sub-color);
}
.entry_form .form-check-input[type=checkbox] {
  position: relative;
}
.entry_form .form-check-input[type=checkbox]::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 2px;
  width: 17px;
  height: 9px;
  margin-top: -6px;
  border-left: 3px solid var(--sub-color);
  border-bottom: 3px solid var(--sub-color);
  -webkit-transform: rotate(-45deg) scale(0.5);
          transform: rotate(-45deg) scale(0.5);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.entry_form .form-check-input[type=checkbox]:checked::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}
.entry_form .form_privacy_link {
  color: #005ba8;
  text-decoration: underline;
}
.entry_form .form_text_exam {
  display: block;
  padding-left: 18px;
  font-size: 14px;
  margin-top: 6px;
}
.entry_form .form-check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 70px;
}
.entry_form .form-check .form-check-item label {
  cursor: pointer;
}
.entry_form .form-check .form-check-item .list-item-label {
  margin-left: 12px;
  font-weight: bold;
}
.entry_form .form-check .form-check-item .form-check-label {
  margin-left: 12px;
  cursor: pointer;
}
.entry_form .form-check* > label,
.entry_form .form-check label {
  display: block;
}
.entry_form .form_body_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}
.entry_form .form_body_group .form_body_group_item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.entry_form .form_body_group_item._tel {
  margin-top: 40px;
}
.entry_form .form_body_post .form_addr_item:not(:last-child) {
  margin-bottom: 22px;
}
.entry_form .form_body_post .text_zip_notice {
  font-size: 14px;
}
.entry_form .form_body_post ._post-code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px 14px;
}
.entry_form .form_request {
  margin-top: 80px;
  margin-bottom: 80px;
}
.entry_form .form_request_ttl {
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
  margin-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.entry_form .form_request_ttl ._icon {
  line-height: 1;
}
.entry_form .form_privacy .form-check {
  margin-top: 20px;
}
.entry_form .form_privacy_entry .form-check {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .entry_form {
    padding: 25px 25px 50px;
  }
  .entry_form .form_head,
  .entry_form .form_body {
    width: 100%;
  }
  .entry_form .form_head {
    margin-bottom: 12px;
  }
  .entry_form .form_outline {
    margin: 0 0 10px 0;
  }
  .entry_form .form_required_label,
  .entry_form .form_option_label {
    margin-left: 15px;
  }
  .entry_form .form_submit_btn_wrap {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1025px) {
  .entry_form .form_required_label,
  .entry_form .form_option_label {
    position: absolute;
    right: 30px;
    top: 16px;
  }
  .entry_form .form_head {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 80px;
  }
  .entry_form .form_outline_nop .form_head {
    padding-top: 0;
  }
  .entry_form .form_outline_nop .form_required_label,
  .entry_form .form_outline_nop .form_option_label {
    top: 2px;
  }
}
@media screen and (max-width: 600px) {
  .entry_form {
    padding: 20px 20px 35px;
  }
  .entry_form .form_required_label,
  .entry_form .form_option_label {
    font-size: 13px;
    padding: 4px 7px;
    position: relative;
    top: -2px;
  }
  .entry_form .form-check-input {
    width: 1.3em;
    height: 1.3em;
    top: 0;
  }
  .entry_form .form-check-input[type=checkbox]::after {
    left: 2px;
    width: 15px;
    height: 9px;
  }
  .entry_form .form_request {
    margin-bottom: 50px;
  }
}

.email_inpatient_form .all_sub_title_03 {
  margin-top: 0;
  margin-bottom: 50px;
}
.email_inpatient_form .all_sub_title_03 br {
  display: none;
}
.email_inpatient_form .contact_info .form-check {
  margin-bottom: 26px;
}
@media screen and (max-width: 600px) {
  .email_inpatient_form .form_request .all_list li {
    font-size: 15px;
  }
}

.email_inpatient .intro_section .all_sub_title_02 {
  margin-bottom: 45px;
}
.email_inpatient .intro_section .all_grid_sec {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.email_inpatient .intro_section .all_grid_sec .all_text:first-child {
  margin-top: 0;
}
.email_inpatient .entry_form .form_head {
  padding-bottom: 0;
}

.form_submit_btn_wrap {
  margin-top: 60px;
  text-align: center;
}
.form_submit_btn_wrap .form_submit_btn_icon {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.form_submit_btn_wrap .form_submit_btn_icon .icon-arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form_submit_btn_wrap .form_submit_btn_icon .icon-arrow svg * {
  fill: var(--sub-color);
}
.form_submit_btn_wrap .form_submit_btn_icon:hover .icon-arrow svg * {
  fill: #fff;
}
.form_submit_btn_wrap .form_submit_btn {
  width: 318px;
  max-width: 100%;
  height: 72px;
  padding-right: 25px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 99999px;
  color: #2e2e2e;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.form_submit_btn_wrap .form_submit_btn:hover {
  background-color: var(--sub-color);
  border: 2px solid var(--sub-color);
  color: #ffffff;
}

/* mixin  ----------------------- */
.access ._map {
  max-width: 1000px;
  aspect-ratio: 1000/690;
  border-radius: 12px;
  overflow: hidden;
}
.access ._map iframe {
  width: 100%;
  height: 100%;
}
.access .all_grid_sec {
  gap: 2.75rem;
}
.access .all_grid_sec ._img {
  overflow: visible;
}
@media screen and (max-width: 600px) {
  .access .all_grid_sec ._item:last-child {
    margin-top: 30px;
  }
}
.access ._text_blue {
  font-size: 18px;
  font-weight: bold;
  color: var(--sub-color);
}
.access .all_sub_table {
  margin-top: 14px;
  margin-bottom: 36px;
  table-layout: fixed;
}
.access .all_sub_table td {
  padding: 10px;
  font-size: 17px;
  font-weight: normal;
}
.access .all_sub_table ._fw_bold {
  font-weight: 700;
}
.access .all_sub_table ._bg_gray {
  background-color: #F5F5F5;
}
.access .all_sub_table ._border_left {
  border-left: 2px dashed #E6E6E6;
}
.access .all_sub_table ._border_solid {
  border-left: 2px solid #E6E6E6;
}
.access .all_sub_table ._w_150 {
  width: 150px;
}
.access .all_sub_table ._w_50p {
  width: 50%;
}
.access .all_sub_table ._padding_bold {
  padding: 20px 10px;
}
.access .all_sub_table.pc {
  display: table;
}
@media screen and (max-width: 600px) {
  .access .all_sub_table.pc {
    display: none;
  }
}
.access .all_sub_table.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .access .all_sub_table.sp {
    display: table;
  }
}
.access .all_sub_table.sp td {
  width: 50%;
}
.access ._item_sec {
  margin-bottom: 40px;
}
.access ._item_sec .all_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.access ._item_sec .all_text::before {
  min-width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  color: #fff;
}
.access ._item_sec .all_text._one::before {
  content: "1";
  background-color: #6BC2D0;
}
.access ._item_sec .all_text._two::before {
  content: "2";
  background-color: #65B75E;
}
.access ._item_sec .all_text._three::before {
  content: "3";
  background-color: #F4BB3E;
}
.access ._item_sec .all_text._four::before {
  content: "4";
  background-color: #B18FDD;
}
.access ._item_sec .all_text._five::before {
  content: "5";
  background-color: #EA8B39;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.Android .all_sub_md .all_sub_md_list li ._title::before {
  top: 0.6em;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.outpatient_dep .all_text.all_red .all_tel,
.outpatient_dep .all_text .all_red .all_tel {
  color: currentColor;
}
.outpatient_dep .all_text + .all_gray_order_list {
  margin-top: 32px;
}
.outpatient_dep .payment_table {
  margin-top: 40px;
}
.outpatient_dep .payment_table th {
  font-size: 20px;
}
.outpatient_dep .payment_table th:not(:last-child),
.outpatient_dep .payment_table td:not(:last-child) {
  border-right-style: dashed;
}
.outpatient_dep .payment_table th:not(:first-child),
.outpatient_dep .payment_table td:not(:first-child) {
  border-left-style: dashed;
}
.outpatient_dep .payment_table ._img {
  text-align: center;
}
.outpatient_dep .payment_table ._img img {
  max-width: 100%;
}
.outpatient_dep .payment_table ._img2 {
  margin-top: 56px;
}
@media screen and (max-width: 600px) {
  .outpatient_dep .payment_table ._img img {
    width: 235px;
  }
  .outpatient_dep .payment_table th {
    height: 80px;
  }
  .outpatient_dep .payment_table td {
    padding: 30px 20px;
  }
  .outpatient_dep .payment_table tr:not(:last-child) th,
  .outpatient_dep .payment_table tr:not(:last-child) td {
    border-bottom-style: dashed;
  }
  .outpatient_dep .payment_table tr:not(:first-child) th,
  .outpatient_dep .payment_table tr:not(:first-child) td {
    border-top-style: dashed;
  }
}
.outpatient_dep .nav_tabs_item {
  cursor: pointer;
}
.outpatient_dep .nav_tabs_panels .nav_tabs_panel {
  display: none;
  opacity: 0;
  -webkit-transition: 3s opacity ease-out;
  transition: 3s opacity ease-out;
}
.outpatient_dep .nav_tabs_panels .nav_tabs_panel.js-active {
  display: block;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
}
.outpatient_dep .patient-rights_tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(60, 60, 60, 0.8);
  text-align: center;
  padding: 17px 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 0;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item .nav_tabs_text {
  font-size: 19px;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item ._small {
  font-size: 17px;
  font-weight: 500;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item + .pr_tabs-item:not(.js-active) {
  position: relative;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item + .pr_tabs-item:not(.js-active)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.14);
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active {
  border: 3px solid var(--sub-color);
  border-bottom: 0;
  padding-top: 28px;
  background-color: rgba(101, 183, 94, 0.06);
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active .nav_tabs_text {
  font-size: 21px;
  color: #2e2e2e;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active + .pr_tabs-item::before {
  background-color: transparent;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item:not(.js-active) {
  min-height: 65px;
  padding: 3px 15px;
  padding-top: 5px;
}
.outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active {
  padding: 7px 15px;
  min-height: 75px;
}
@media screen and (max-width: 1024px) {
  .outpatient_dep .patient-rights_tabs .pr_tabs-item {
    padding: 9px 15px;
  }
  .outpatient_dep .patient-rights_tabs .pr_tabs-item .nav_tabs_text {
    font-size: 17px;
  }
  .outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active {
    padding-top: 28px;
  }
  .outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active .nav_tabs_text {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .outpatient_dep .patient-rights_tabs .pr_tabs-item.js-active {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .outpatient_dep .patient-rights_tabs.nav_tabs_01 .pr_tabs-item {
    min-height: 95px;
  }
  .outpatient_dep .patient-rights_tabs.nav_tabs_01 .pr_tabs-item.js-active {
    min-height: 110px;
  }
}
@media screen and (max-width: 600px) {
  .outpatient_dep .patient-rights_tabs.nav_tabs_01 .pr_tabs-item {
    padding: 6px 10px;
    min-height: 135px;
  }
  .outpatient_dep .patient-rights_tabs.nav_tabs_01 .pr_tabs-item.js-active {
    min-height: 148px;
  }
}
.outpatient_dep .patient-rights_panels {
  padding: 70px 60px;
  background-color: rgba(101, 183, 94, 0.06);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .outpatient_dep .patient-rights_panels {
    padding: 50px 20px;
  }
}
.outpatient_dep .patient-rights_panels .all_gray_order_list > li .all_text {
  line-height: 1.7;
}
.outpatient_dep .od_top_sec .caution_sec {
  margin-top: 0;
}
.outpatient_dep .od_top_sec .caution_sec .od_top_sec_text {
  font-weight: 500;
  line-height: 1.7;
}
.outpatient_dep .od_top_sec .caution_sec .all_tel {
  color: currentColor;
  font-weight: bold;
}
.outpatient_dep .od_top_sec .all_sub_time_title {
  margin-top: 100px;
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .outpatient_dep .od_top_sec .all_sub_time_title {
    margin-top: 72px;
    margin-bottom: 40px;
  }
}
.outpatient_dep .od_top_sec .all_table th {
  border-right-style: solid;
}
.outpatient_dep .od_top_sec .all_table th,
.outpatient_dep .od_top_sec .all_table td {
  text-align: center;
  font-size: 19px;
}
.outpatient_dep .od_top_sec .all_table ._num {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 500;
}
.outpatient_dep .od_top_sec .all_table .th_175 {
  width: 175px;
}
@media screen and (max-width: 768px) {
  .outpatient_dep .od_top_sec .all_table ._num {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .outpatient_dep .od_top_sec .all_table .th_175 {
    width: 66px;
  }
  .outpatient_dep .od_top_sec .all_table th,
  .outpatient_dep .od_top_sec .all_table td {
    font-size: 17px;
  }
  .outpatient_dep .od_top_sec .all_table th {
    padding: 12px 15px;
  }
  .outpatient_dep .od_top_sec .all_table td {
    padding: 11px 15px;
  }
  .outpatient_dep .od_top_sec .all_table ._num {
    font-size: 18px;
  }
}
.outpatient_dep .od_top_sec .op_txt_tb {
  margin-top: 36px;
}
.outpatient_dep .od_top_sec .op_btn {
  margin-top: 34px;
}
.outpatient_dep .op_dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border: 2px solid #e6e6e6;
}
.outpatient_dep .op_dl dt,
.outpatient_dep .op_dl dd {
  padding: 30px 20px;
  border-bottom: 2px solid #e6e6e6;
  font-size: 17px;
  line-height: 1.7;
}
.outpatient_dep .op_dl dt .all_text,
.outpatient_dep .op_dl dd .all_text {
  line-height: 1.7;
}
.outpatient_dep .op_dl dt:last-of-type,
.outpatient_dep .op_dl dd:last-of-type {
  border-bottom: none;
}
.outpatient_dep .op_dl dt {
  width: 28%;
  background-color: rgba(245, 245, 245, 0.6);
  border-right: 2px dashed #e6e6e6;
}
.outpatient_dep .op_dl dt img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.outpatient_dep .op_dl dt ._img {
  text-align: center;
}
.outpatient_dep .op_dl dd {
  width: 72%;
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 768px) {
  .outpatient_dep .op_dl dt,
  .outpatient_dep .op_dl dd {
    padding: 23px 20px;
    width: 100%;
    border-right: none;
  }
  .outpatient_dep .op_dl dt {
    border-bottom: 2px dashed #e6e6e6;
  }
  .outpatient_dep .op_dl dt:last-of-type {
    border-bottom: 2px dashed #e6e6e6;
  }
}
.outpatient_dep .op_input_item {
  display: inline-block;
  margin-bottom: 19px;
}
.outpatient_dep .op_input_item .op_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: none;
}
.outpatient_dep .op_input_item .op_input_label {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 27px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}
.outpatient_dep .op_input_item .op_input_label::before, .outpatient_dep .op_input_item .op_input_label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
.outpatient_dep .op_input_item .op_input_label::before {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: #dedede solid 2px;
  border-radius: 2px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.outpatient_dep .op_input_item .op_input_label::after {
  width: 12px;
  height: 8px;
  border-left: #000 solid 3px;
  border-bottom: #000 solid 3px;
  left: 4px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
}
.outpatient_dep .op_input_item .op_input_label .is_req {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  color: #d30000;
  margin-left: 12px;
}
.outpatient_dep .op_input_item input:checked + .op_input_label::after {
  opacity: 1;
}
.outpatient_dep .op_input_item input[disabled] + .op_input_label {
  cursor: auto;
  pointer-events: none;
}
.outpatient_dep .all_button a ._arrow._ac_arrow svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.outpatient_dep .od_sec_pdf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.outpatient_dep .od_sec_pdf .all_button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.outpatient_dep .od_sec_pdf .all_button a {
  height: 68px;
  width: 318px;
  max-width: 100%;
}
.outpatient_dep .od_grid_sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px 3.5rem;
  margin-bottom: 40px;
}
.outpatient_dep .od_grid_sec .caution_sec {
  margin-top: 0;
  padding: 36px 40px;
}
.outpatient_dep .od_grid_sec ._img {
  aspect-ratio: 480/320;
  border-radius: 12px;
  overflow: hidden;
}
.outpatient_dep .od_grid_sec .all_list li {
  line-height: 1.7;
}
@media screen and (max-width: 1200px) {
  .outpatient_dep .od_grid_sec {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .outpatient_dep .od_grid_sec {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .outpatient_dep .od_grid_sec {
    grid-template-columns: 1fr;
  }
}
.outpatient_dep .ancker_adjust {
  scroll-margin-top: 120px;
}

.light_green_sec {
  padding: 54px 60px;
  background-color: rgba(101, 183, 94, 0.06);
  border-radius: 12px;
}
.light_green_sec .sec_ttl {
  font-size: 21px;
  color: var(--sub-color);
  font-weight: bold;
}
.light_green_sec .sec_text_top {
  margin-top: 38px;
  margin-bottom: 35px;
}
.light_green_sec .all_list li {
  line-height: 1.7647058824;
}
@media screen and (max-width: 768px) {
  .light_green_sec {
    padding: 40px 20px;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.patient-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 96px;
}
@media screen and (max-width: 600px) {
  .patient-flex {
    display: block;
    margin-bottom: 60px;
  }
}

.patient-flex .all_text {
  margin-top: 46px;
  margin-bottom: 44px;
}
@media screen and (max-width: 600px) {
  .patient-flex .all_text {
    margin-top: 36px;
    margin-bottom: 36px;
  }
}

.patient-flex .-image {
  width: 23.7348795361%;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .patient-flex .-image {
    width: 100%;
  }
}

.patient-flex .-inner {
  width: 69.3791862441%;
}
@media screen and (max-width: 600px) {
  .patient-flex .-inner {
    width: 100%;
  }
}

.patient-btn__wrapper {
  border-top: 2px dashed #E6E6E6;
}

.all_sub_title.-patient-backnumber {
  font-size: 24px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  margin-top: 26px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .all_sub_title.-patient-backnumber {
    margin-bottom: 0px;
    padding-bottom: 10px;
    font-size: 18px;
  }
}

.patient-btn__list {
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .patient-btn__list {
    margin-top: 20px;
  }
}

.patient-btn__wrapper.all_accordion_list ._item:first-child {
  border: none;
}

.patient-btn__wrapper.all_accordion_list ._item {
  border-bottom: none;
}

.patient-btn__wrapper.all_accordion_list ._item ._item_head {
  padding: 0;
}

.patient-btn__wrapper.all_accordion_list ._item ._item_head ._arrow {
  top: 25%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.patient-btn__wrapper.all_accordion_list ._item ._item_body {
  padding: 0;
}

/* about */
/* mixin  ----------------------- */
/* color  ----------------------- */
._dpc_list .hospital_index .all_button a {
  height: 68px;
}
._dpc_list .hospital_indicators__item_ttl {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7647058824;
}
._dpc_list .hospital_indicators__item_text {
  font-size: 17px;
  line-height: 2;
}
._dpc_list .hospital_indicators__item_text:nth-child(n+2) {
  margin-top: 19px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.history .history_outline {
  overflow: hidden;
}
.history .history_outline dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}
.history .history_outline dl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background-color: var(--sub-color);
  border-radius: 50%;
}
.history .history_outline dl::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  bottom: -9px;
  background-color: #e6e6e6;
  width: 2px;
  z-index: -1;
}
.history .history_outline dl dt {
  width: 185px;
  padding-left: 48px;
}
.history .history_outline dl dd {
  width: calc(100% - 185px);
  padding-left: 20px;
  font-size: 17px;
  line-height: 2;
}
.history .history_outline dl .event_list {
  line-height: 1;
}
.history .history_outline dl .event_list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.history .history_outline dl .event_list__item_cat {
  width: 160px;
  line-height: 2;
}
.history .history_outline dl .event_list__item_txt {
  width: calc(100% - 200px);
  font-weight: bold;
  font-size: 17px;
  line-height: 2;
}
.history .history_outline dl .event_list__item + .event_list__item {
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .history .history_outline dl .event_list__item + .event_list__item {
    margin-top: 18px;
  }
}
@media screen and (max-width: 600px) {
  .history .history_outline dl .event_list__item {
    display: block;
  }
  .history .history_outline dl .event_list__item_cat {
    width: auto;
    display: inline;
    margin-right: 10px;
  }
  .history .history_outline dl .event_list__item_txt {
    width: auto;
    display: inline;
    line-height: 1.7;
  }
}
.history .history_outline dl ._h_time ._h_year,
.history .history_outline dl ._h_time ._h_day {
  display: block;
}
.history .history_outline dl ._h_time ._h_year {
  font-size: 20px;
  font-weight: bold;
}
.history .history_outline dl ._h_time ._h_day {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}
.history .history_outline dl ._h_cat_item {
  padding: 5px 8px;
  border-radius: 4px;
  background-color: var(--sub-color);
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}
.history .history_outline dl ._h_cat_item_1 {
  background-color: #65b75e;
}
.history .history_outline dl ._h_cat_item_2 {
  background-color: #b18fdd;
}
.history .history_outline dl ._h_cat_item_3 {
  background-color: #69c2d0;
}
.history .history_outline dl ._h_cat_item_4 {
  background-color: #4082c4;
}
.history .history_outline dl ._h_cat_item_5 {
  background-color: #f4bb3e;
}
.history .history_outline dl:not(:last-child) {
  padding-bottom: 64px;
}
.history .history_outline dl:last-child::after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .history .history_outline dl dt {
    width: 150px;
  }
  .history .history_outline dl dd {
    width: calc(100% - 150px);
  }
  .history .history_outline dl .event_list__item_cat {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .history .history_outline dl dt {
    padding-bottom: 30px;
  }
  .history .history_outline dl dt,
  .history .history_outline dl dd {
    width: 100%;
    padding-left: 24px;
  }
  .history .history_outline dl ._h_time {
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 10px;
  }
  .history .history_outline dl ._h_time ._h_year,
  .history .history_outline dl ._h_time ._h_day {
    display: inline-block;
  }
  .history .history_outline dl:not(:last-child) {
    padding-bottom: 37px;
  }
}
@media screen and (max-width: 600px) {
  .history .history_outline dl ._h_time {
    display: block;
  }
  .history .history_outline dl ._h_time ._h_day {
    margin-left: 10px;
  }
}

/* mixin  ----------------------- */
/* color  ----------------------- */
.jyurakukai_group .hospico_mark .hospico_mark_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 0;
}
.jyurakukai_group .hospico_mark .hospico_mark_flex ._text {
  width: 67%;
}
.jyurakukai_group .hospico_mark .hospico_mark_flex ._text .all_text + .all_text {
  margin-top: 19px;
}
.jyurakukai_group .hospico_mark .hospico_mark_flex ._img {
  width: 33%;
  text-align: center;
}
.jyurakukai_group .hospico_mark .hospico_mark_flex ._img img {
  width: 136px;
  height: auto;
}
.jyurakukai_group .intro_jura_group ._img_diagram {
  margin-top: 60px;
  text-align: center;
  padding: 0 15px;
}
@media screen and (max-width: 600px) {
  .jyurakukai_group .hospico_mark .hospico_mark_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .jyurakukai_group .hospico_mark .hospico_mark_flex ._text, .jyurakukai_group .hospico_mark .hospico_mark_flex ._img {
    width: 100%;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
._hospital_overview .all_table th {
  width: 24%;
}
._hospital_overview .txt_small {
  font-size: 15px;
}
._hospital_overview .tr_list {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
}
._hospital_overview .tr_list li + li {
  margin-top: 12px;
}
@media screen and (max-width: 600px) {
  ._hospital_overview .all_table th {
    width: 20%;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
@media screen and (max-width: 600px) {
  .quality .all_2col_container {
    padding-top: 60px;
  }
}
.quality .all_sub_title {
  margin-bottom: 100px;
}
.quality .survey {
  margin-top: 90px;
}
.quality .survey .servey-content {
  margin-top: 54px;
}
.quality .survey .servey-question {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
}
.quality .survey .servey-question::before {
  content: "Q.";
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: var(--sub-color);
  margin-right: 6px;
}
.quality .survey .servey-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .quality .all_sub_title {
    margin-bottom: 75px;
  }
  .quality .survey .servey-question {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .quality .survey .servey-question::before {
    font-size: 22px;
  }
  .quality .survey .servey-item:not(:last-child) {
    margin-bottom: 45px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.rights .patients_rights_section .all_table {
  background-color: #fff;
}
.rights .patients_rights_section .all_table .th_354 {
  width: 40%;
}
.rights .patients_rights_section ._light_gray {
  background-color: #f9f9f9;
}
@media screen and (max-width: 1400px) {
  .rights .patients_rights_section .all_3col_button_sec_pdf {
    grid-template-columns: 1fr;
  }
}
.rights .nav_tabs_item {
  cursor: pointer;
}
.rights .nav_tabs_panels .nav_tabs_panel {
  display: none;
  opacity: 0;
  -webkit-transition: 3s opacity ease-out;
  transition: 3s opacity ease-out;
}
.rights .nav_tabs_panels .nav_tabs_panel.js-active {
  display: block;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
}
.rights .patient-rights_tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
}
.rights .patient-rights_tabs .pr_tabs-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(60, 60, 60, 0.8);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 20px 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 0;
}
.rights .patient-rights_tabs .pr_tabs-item.js-active {
  color: #2e2e2e;
  border: 3px solid #547fc2;
  border-bottom: 0;
  padding-top: 28px;
  background-color: #f4f8fc;
}
.rights .patient-rights_tabs .pr_tabs-item + .pr_tabs-item:not(.js-active) {
  position: relative;
}
.rights .patient-rights_tabs .pr_tabs-item + .pr_tabs-item:not(.js-active)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.14);
}
@media screen and (max-width: 1024px) {
  .rights .patient-rights_tabs .pr_tabs-item {
    padding: 9px 15px;
  }
  .rights .patient-rights_tabs .pr_tabs-item.js-active {
    font-size: 17px;
    padding-top: 28px;
  }
}
.rights .patient-rights_panels {
  padding: 70px 60px;
  background-color: #f4f8fc;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (max-width: 1024px) {
  .rights .patient-rights_panels {
    padding: 50px 20px;
  }
}
.rights .add_outline {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 20px 30px;
  background-color: #fff;
  margin-top: 38px;
  display: block;
}
@media screen and (max-width: 600px) {
  .rights .add_outline {
    display: block;
  }
}
.rights .add_outline .add__key,
.rights .add_outline .add__value {
  font-size: 17px;
  line-height: 1.7647058824;
}
.rights .add_outline .add__key::before,
.rights .add_outline .add__value::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7647058824) * 0.5em);
  content: "";
}
.rights .add_outline .add__key::after,
.rights .add_outline .add__value::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7647058824) * 0.5em);
  content: "";
}
.rights .add_outline .add__key {
  margin-bottom: 10px;
  font-weight: bold;
}
.rights .rights_list_item {
  margin-bottom: 32px;
}
.rights .rights_list_item::before {
  top: 0.95em;
}
.rights .rights_list_item:last-child {
  margin-bottom: 0;
}
.rights .rights_list_item__ttl {
  font-weight: bold;
  line-height: 1.7647058824;
}
.rights .rights_list_item .all_text + .all_text {
  margin-top: 25px;
}
.rights .required_list {
  margin-top: 35px;
}
.rights .pr_text {
  font-size: 17px;
  line-height: 1.7647058824;
}
.rights .pr_text_note {
  margin-top: 20px;
}
.rights .scope_request_list {
  margin-bottom: 24px;
}
.rights .who_can_request {
  margin-top: 24px;
  margin-bottom: 24px;
}
.rights .who_can_request li + li {
  margin-top: 24px;
}
.rights .all_3col_button_sec_pdf {
  margin-bottom: 50px;
}
.rights .items_required_table {
  margin-top: 19px;
}
.rights .items_required_table th {
  padding: 16px 20px;
}
.rights .items_required_table th,
.rights .items_required_table td {
  line-height: 34px;
}
.rights .items_required_table th:nth-child(1),
.rights .items_required_table td:nth-child(1) {
  text-align: center;
}
.rights .items_required_table ._tleft {
  text-align: left;
  font-weight: 500;
}
.rights ._list_1 {
  margin-top: 60px;
}
.rights ._list_2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 19px 27px;
  padding: 20px 20px;
  background-color: #fff;
  margin-top: 19px;
  margin-bottom: 40px;
}
.rights ._list_2 li {
  margin: 0;
}
.rights ._list_3 {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 26px;
}
.rights ._list_4 li + li {
  margin-top: 11px;
}
.rights ._list_4 li {
  line-height: 1.7647058824;
}
.rights ._list_4 li::before {
  top: 0.9em;
}
.rights ._tt4 {
  font-weight: bold;
  margin-bottom: 19px;
}
.rights ._tt4 + .all_text {
  margin-top: 19px;
}
.rights .follow_required_text {
  margin-top: 40px;
}

/* mixin  ----------------------- */
/* color  ----------------------- */
.facility_standards_table {
  table-layout: auto;
}
.facility_standards_table th {
  width: 23.5%;
  border-right-style: solid;
}
.facility_standards_table .td_173 {
  width: 17.3%;
}
.facility_standards_table .td_dashed_r {
  border-right-style: dashed;
}
.facility_standards_table .td_dashed_l {
  border-left-style: dashed;
}
.facility_standards_table .table_list li {
  text-indent: -4em;
  padding-left: 4em;
}
.facility_standards_table .table_list2 li {
  text-indent: -2em;
  padding-left: 2em;
}

.fs_note_bottom {
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  .facility_standards_table {
    min-width: 850px;
  }
}
/* checkup */
/* mixin  ----------------------- */
/*mixin*/
.medical_checkup .text-color-80 {
  color: #FF0080;
}

.checkup .all_grid_sec {
  gap: 80px 3.75rem;
}
@media screen and (max-width: 600px) {
  .checkup .all_grid_sec {
    gap: 40px 3.75rem;
  }
}

.brain_checkup .patient-rights_panels.patient-rights_panels {
  background: #F9F6FD;
}
.brain_checkup .patient-rights_tabs.patient-rights_tabs .pr_tabs-item.js-active {
  background: #F9F6FD;
  border: 3px solid #B18FDD;
  border-bottom: 0;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.cancer_screening .osaka_cancer_screening .ocs_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cancer_screening .osaka_cancer_screening .ocs_inner .ocs_text {
  width: 55%;
}
.cancer_screening .osaka_cancer_screening .ocs_inner .ocs_img {
  width: 36%;
}
.cancer_screening .osaka_cancer_screening .ocs_text .all_quote {
  margin-bottom: 35px;
}
.cancer_screening .osaka_cancer_screening .ocs_text .all_list {
  margin: 15px 0;
}
.cancer_screening .osaka_cancer_screening .ocs_text .more_detail_link {
  margin-top: 30px;
  color: #D30000;
  font-weight: bold;
}
.cancer_screening .osaka_cancer_screening .ocs_text .more_detail_link .all_link {
  color: currentColor;
}
.cancer_screening .osaka_cancer_screening .ocs_img {
  padding-top: 12px;
}
.cancer_screening .osaka_cancer_screening .all_text_1 {
  margin-bottom: 35px;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 .td_order {
  width: 145px;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 tr:not(:first-child) th, .cancer_screening .osaka_cancer_screening .oc_table_1 tr:not(:first-child) td {
  border-bottom-style: dashed;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 tr:not(:first-child) + tr th, .cancer_screening .osaka_cancer_screening .oc_table_1 tr:not(:first-child) + tr td {
  border-top-style: dashed;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 th:not(:first-child), .cancer_screening .osaka_cancer_screening .oc_table_1 td:not(:first-child) {
  border-right-style: dashed;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 th:not(:first-child) + td, .cancer_screening .osaka_cancer_screening .oc_table_1 th:not(:first-child) + th, .cancer_screening .osaka_cancer_screening .oc_table_1 td:not(:first-child) + td, .cancer_screening .osaka_cancer_screening .oc_table_1 td:not(:first-child) + th {
  border-left-style: dashed;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 th, .cancer_screening .osaka_cancer_screening .oc_table_1 td {
  text-align: center;
  padding: 11px 15px;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 ._icon {
  margin-right: 6px;
  line-height: 1;
  display: inline-block;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 ._text_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 .or_text {
  font-weight: bold;
  font-size: 20px;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 .td_num {
  font-size: 20px;
  font-weight: bold;
}
.cancer_screening .osaka_cancer_screening .oc_table_1 .td_num_link {
  font-size: 24px;
  color: var(--sub-color);
}
.cancer_screening .osaka_cancer_screening .text_bottom_table {
  text-align: right;
  margin-top: 20px;
}
.cancer_screening .osaka_cancer_screening .sc_an_link {
  font-weight: bold;
  color: var(--sub-color);
  font-size: 20px;
  line-height: 1.6;
  position: relative;
  padding-right: 20px;
}
.cancer_screening .osaka_cancer_screening .sc_an_link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon_arrow_d.svg) no-repeat center/contain;
  width: 12px;
  height: 7px;
}
@media screen and (max-width: 768px) {
  .cancer_screening .osaka_cancer_screening .ocs_inner .ocs_text, .cancer_screening .osaka_cancer_screening .ocs_inner .ocs_img {
    width: 100%;
  }
  .cancer_screening .osaka_cancer_screening .ocs_img {
    margin-top: 40px;
    padding-top: 0;
  }
  .cancer_screening .osaka_cancer_screening .ocs_img img {
    max-width: 425px;
  }
}
@media screen and (max-width: 600px) {
  .cancer_screening .osaka_cancer_screening .oc_table_1 {
    min-width: 535px;
  }
  .cancer_screening .osaka_cancer_screening .oc_table_1 .td_order {
    width: 56px;
  }
}
.cancer_screening .all_sub_title_02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cancer_screening .all_sub_title_02 ._small {
  font-size: 24px;
  line-height: 2;
  margin-right: 12px;
}
.cancer_screening .sc_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 60px;
  margin-left: -30px;
  margin-right: -30px;
}
.cancer_screening .sc_inner .all_sub_title_03 {
  margin-top: 0;
  margin-bottom: 22px;
}
.cancer_screening .sc_inner .sc_col {
  width: 50%;
  padding: 0 30px;
}
.cancer_screening .sc_inner .all_table th, .cancer_screening .sc_inner .all_table td {
  padding: 14px 20px;
  font-size: 17px;
}
.cancer_screening .sc_inner .all_table th {
  width: 124px;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
}
.cancer_screening .sc_inner .all_table th, .cancer_screening .sc_inner .all_table td {
  border-right-style: dashed;
}
.cancer_screening .sc_inner .all_table th + td, .cancer_screening .sc_inner .all_table th + th, .cancer_screening .sc_inner .all_table td + td, .cancer_screening .sc_inner .all_table td + th {
  border-left-style: dashed;
}
@media screen and (max-width: 768px) {
  .cancer_screening .sc_inner {
    margin: 0;
    margin-top: 60px;
  }
  .cancer_screening .sc_inner .sc_col {
    width: 100%;
    padding: 0;
  }
  .cancer_screening .sc_inner .sc_col + .sc_col {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .cancer_screening .sc_inner .all_table th {
    width: 90px;
  }
  .cancer_screening .sc_inner .all_table th, .cancer_screening .sc_inner .all_table td {
    padding: 14px 10px;
  }
}
.cancer_screening .sc_text_bold {
  font-weight: bold;
  font-size: 20px;
}

.all_table .-dateText {
  font-size: 20px;
}

#sec_04 .all_table .-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  border-top: none;
  border-bottom: none;
}

#sec_04 .all_table .-aside {
  display: inline-block;
  width: 60%;
  text-indent: -1em;
  margin-left: 1em;
}

/* departments */
/* mixin  ----------------------- */
/* color  ----------------------- */
.nurse_education .clinical_ls ._img {
  margin-top: 55px;
}
@media screen and (max-width: 600px) {
  .nurse_education .clinical_ls ._img {
    min-width: 840px;
  }
}
.nurse_education .nurse_message_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}
.nurse_education .nurse_message_item {
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  padding: 35px 30px 100px;
  width: calc(33.3333333333% - 32px);
  margin-left: 16px;
  margin-right: 16px;
}
.nurse_education .nurse_message_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.nurse_education .nurse_message_info ._info_img {
  border-radius: 8px;
  overflow: hidden;
  width: 104px;
  height: 138px;
}
.nurse_education .nurse_message_info ._info_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nurse_education .nurse_message_info ._info_text {
  width: calc(100% - 104px);
  padding-left: 24px;
}
.nurse_education .nurse_message_info ._info_text_ttl {
  font-size: 14px;
  color: var(--sub-color);
  font-weight: bold;
  line-height: 1;
}
.nurse_education .nurse_message_info ._info_text_txt {
  font-size: 23px;
  font-weight: bold;
  line-height: 2;
}
.nurse_education .nurse_message_text {
  margin-top: 33px;
}
@media screen and (max-width: 1024px) {
  .nurse_education .nurse_message_item {
    width: 100%;
    padding-bottom: 50px;
  }
  .nurse_education .nurse_message_item:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
@media screen and (max-width: 1024px) {
  .greetings_policy ._idea ._iead_flex ._iead_text {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .greetings_policy ._idea ._iead_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.basic_policy_list ._item {
  padding-top: 20px;
  padding-bottom: 60px;
  border-top: 2px dashed #E6E6E6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 17px;
}
.basic_policy_list ._item:last-child {
  padding-bottom: 0;
}
.basic_policy_list ._item_num {
  color: var(--sub-color);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
}
.basic_policy_list ._item_text {
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .basic_policy_list ._item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .basic_policy_list ._item_text p {
    line-height: 1.5882352941;
  }
}
/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.nurse_system .ndo_chart ._img {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .nurse_system .ndo_chart ._img {
    padding: 0 20px;
    min-width: 739px;
  }
}
.nurse_system .basic_service_system .all_table .t25 {
  width: 25%;
}
.nurse_system .basic_service_system ._time1 {
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  font-weight: 500;
}
.nurse_system .basic_service_system ._time1_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 600px) {
  .nurse_system .basic_service_system .all_swipe_item.swipe_active.on::before {
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
  .nurse_system .basic_service_system .all_table .t25 {
    width: 150px;
  }
  .nurse_system .basic_service_system .all_table th {
    padding: 12px 12px;
  }
  .nurse_system .basic_service_system .table_605 {
    width: 605px;
    min-width: auto;
  }
}
.nurse_system .mnc_activities .mnc_list_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.nurse_system .mnc_activities .mnc_list_wrap .mnc_list {
  width: 33.3333333333%;
  border-right: 2px dashed #E6E6E6;
  padding-left: 34px;
}
.nurse_system .mnc_activities .mnc_list_wrap .mnc_list:last-child {
  border-right: none;
}
.nurse_system .mnc_activities .mnc_list_wrap .mnc_list:first-child {
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  .nurse_system .mnc_activities .mnc_list_wrap {
    gap: 40px 10px;
  }
  .nurse_system .mnc_activities .mnc_list_wrap .mnc_list {
    width: calc(50% - 5px);
    padding-left: 0;
    border-right: none;
  }
}

/* mixin  ----------------------- */
/* color  ----------------------- */
.chemotherapy_regimens .cancer_report .all_2pdf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 1.5rem;
  margin-top: 30px;
}
.chemotherapy_regimens .cancer_report .all_2pdf .all_button {
  width: auto;
  max-width: 100%;
}
.chemotherapy_regimens .cancer_report .all_2pdf .all_button a {
  width: 318px;
  max-width: 100%;
}
.chemotherapy_regimens .cancer_report .all_2pdf .pdf_long_text a {
  width: 410px;
  max-width: 100%;
}
.chemotherapy_regimens .cancer_report .all_2pdf .all_button a {
  height: 68px;
}
.chemotherapy_regimens .cancer_report .fax_link {
  text-decoration: underline;
  font-weight: bold;
  color: #0057B0;
}
.chemotherapy_regimens .list_pdf {
  margin-top: 60px;
}
.chemotherapy_regimens .list_pdf ._item ._item_head ._text {
  font-size: 24px;
  line-height: 1.5882352941;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .chemotherapy_regimens .list_pdf ._item ._item_head {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }
  .chemotherapy_regimens .list_pdf ._item ._item_head ._text {
    font-size: 17px;
  }
}
.chemotherapy_regimens .list_pdf ._item ._item_body {
  padding-bottom: 75px;
}
.chemotherapy_regimens .list_pdf .all_button a {
  height: 68px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.pharmaceutical_corp .notification-drug .nd_button {
  margin-top: 30px;
}
.pharmaceutical_corp .notification-drug .nd_button .all_button a {
  height: 68px;
}
.pharmaceutical_corp .all_table th {
  border-right-style: solid;
  padding: 16px 20px;
}
.pharmaceutical_corp .all_table td {
  border-left-style: dashed;
  border-right-style: dashed;
}
.pharmaceutical_corp .table_item_note {
  margin-top: 40px;
}
.pharmaceutical_corp .d_gray {
  background-color: #EBEBEB;
}
.pharmaceutical_corp .d_th1 {
  width: 190px;
}
.pharmaceutical_corp .d_th2 {
  width: 270px;
}
.pharmaceutical_corp .d_th3 {
  width: 150px;
}
.pharmaceutical_corp .d_td4 {
  text-align: center;
}
.pharmaceutical_corp ._time_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 16px;
}
.pharmaceutical_corp ._ref {
  font-weight: 500;
  margin-left: 8px;
}
.pharmaceutical_corp ._time_flex_item {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 21px;
}
.pharmaceutical_corp .table_01 {
  min-width: 1000px;
}
.pharmaceutical_corp .all_swipe_item {
  overflow: auto;
  overflow-y: hidden;
}
.pharmaceutical_corp .all_swipe_item.swipe_active._item_1.on::before {
  top: 50px;
}

/* mixin  ----------------------- */
.all_sub_pharmacy .content,
.all_sub_pharmacy .all_text {
  line-height: 34px;
}
.all_sub_pharmacy .all_sub_title {
  margin-bottom: 95px;
}
@media screen and (max-width: 600px) {
  .all_sub_pharmacy .all_sub_title {
    margin-bottom: 85px;
  }
}
.all_sub_pharmacy .all_3col_button_sec {
  margin-top: 43px;
}
.all_sub_pharmacy .all_3col_button_sec .all_button a {
  height: 68px;
}
@media screen and (max-width: 600px) {
  .all_sub_pharmacy .all_3col_button_sec {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .all_sub_pharmacy .title-caution {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 600px) {
  .all_button a {
    margin: 0 auto;
  }
  .all_button .all_2col_section + .all_2col_section {
    margin-top: 60px;
  }
}
/* hospitalization */
/* mixin  ----------------------- */
/* color  ----------------------- */
.charges .all_gray_sec._color {
  background: #FEF8F3;
}
.charges .payment_table {
  margin-top: 40px;
}
.charges .payment_table th {
  font-size: 20px;
}
.charges .payment_table th:not(:last-child),
.charges .payment_table td:not(:last-child) {
  border-right-style: dashed;
}
.charges .payment_table th:not(:first-child),
.charges .payment_table td:not(:first-child) {
  border-left-style: dashed;
}
.charges .payment_table ._img {
  text-align: center;
}
.charges .payment_table ._img img {
  max-width: 100%;
}
.charges .payment_table ._img2 {
  margin-top: 56px;
}
@media screen and (max-width: 600px) {
  .charges .payment_table ._img img {
    width: 235px;
  }
  .charges .payment_table th {
    height: 80px;
  }
  .charges .payment_table td {
    padding: 30px 20px;
  }
  .charges .payment_table tr:not(:last-child) th,
  .charges .payment_table tr:not(:last-child) td {
    border-bottom-style: dashed;
  }
  .charges .payment_table tr:not(:first-child) th,
  .charges .payment_table tr:not(:first-child) td {
    border-top-style: dashed;
  }
}
.charges .treatment_costs .all_sub_time_title {
  margin-top: 140px;
  margin-bottom: 40px;
}
.charges .treatment_costs .table_note {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.7647058824;
}
.charges .treatment_costs .th_175 {
  width: 175px;
}
.charges .treatment_costs .all_table th,
.charges .treatment_costs .all_table td {
  text-align: center;
}
.charges .treatment_costs .all_table th {
  font-size: 19px;
}
.charges .treatment_costs ._time {
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
}
.charges .treatment_costs .th2 {
  padding: 4px 20px;
}
.charges .treatment_costs .th1 {
  height: 80px;
}
@media screen and (max-width: 600px) {
  .charges .treatment_costs .all_sub_time_title {
    margin-top: 76px;
    margin-bottom: 30px;
  }
  .charges .treatment_costs ._gray {
    background-color: rgba(235, 235, 235, 0.6);
  }
  .charges .treatment_costs .all_table th:not(:last-child),
  .charges .treatment_costs .all_table td:not(:last-child) {
    border-right-style: dashed;
  }
  .charges .treatment_costs .all_table th:not(:first-child),
  .charges .treatment_costs .all_table td:not(:first-child) {
    border-left-style: dashed;
  }
}
.charges .price_difference ._price {
  font-weight: 400;
}
.charges .price_difference .price_difference_table {
  margin-top: 40px;
}
.charges .price_difference .price_difference_table th {
  background: #EBEBEB;
}
.charges .price_difference .price_difference_table th:nth-of-type(1) {
  width: 12%;
}
.charges .price_difference .price_difference_table th:nth-of-type(2) {
  width: 21%;
}
.charges .price_difference .price_difference_table th,
.charges .price_difference .price_difference_table td {
  padding: 12px 10px;
}
.charges .price_difference .price_difference_table th:not(:last-child),
.charges .price_difference .price_difference_table td:not(:last-child) {
  border-right-style: dashed;
}
.charges .price_difference .price_difference_table th:not(:first-child),
.charges .price_difference .price_difference_table td:not(:first-child) {
  border-left-style: dashed;
}
.charges .price_difference .price_difference_table th,
.charges .price_difference .price_difference_table td {
  font-size: 18px;
  text-align: center;
}
.charges .price_difference .price_difference_table th ._small,
.charges .price_difference .price_difference_table td ._small {
  font-size: 16px;
}
.charges .price_difference .price_difference_table td:first-child {
  background: #FBFBFB;
  font-weight: bold;
}
.charges .price_difference .price_difference_table td:nth-of-type(3) {
  text-align: left;
  font-size: 17px;
  line-height: 2;
}

.charges_dpc .all_swipe_item {
  margin-top: 80px;
}
.charges_dpc .all_swipe_item + .all_swipe_item {
  margin-top: 50px;
}
.charges_dpc .all_gray_sec {
  margin-top: 60px;
}
.charges_dpc .all_list + .all_text {
  margin-top: 15px;
}
.charges_dpc .all_swipe_item > ._img {
  min-width: 800px;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.visits .all_table th {
  border-right-style: solid;
}
.visits .all_list li + li {
  margin-top: 10px;
}
.visits .visits_caution .all_button {
  margin-top: 37px;
}
.visits .visiting_hours .all_table .th_30 {
  width: 30%;
}
.visits .visiting_hours .all_table .th_sm {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.4;
}
.visits .visiting_hours .all_table .td_large {
  padding: 27px 15px;
}
.visits .visiting_hours .all_table th,
.visits .visiting_hours .all_table td {
  text-align: center;
}
.visits .visiting_hours ._time1 {
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  line-height: 1.1153846154;
  font-weight: 500;
}
.visits .visiting_hours_note {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .visits .visiting_hours .all_table .th_30 {
    width: 40%;
  }
  .visits .visiting_hours ._time1 {
    font-size: 24px;
  }
}
.visits .visit_meeting .all_list_note {
  margin-top: 20px;
}
.visits .visit_meeting .all_list_note li {
  color: #d30000;
}
.visits .online_meeting .orange_sec {
  background: rgba(234, 139, 57, 0.06);
  padding: 65px 45px;
  border-radius: 8px;
  margin-top: 55px;
}
.visits .online_meeting .orange_sec .all_sub_title_03 {
  margin-top: 0;
}
.visits .online_meeting .orange_sec .all_gray_order_list .all_list {
  margin-top: 15px;
}
.visits .online_meeting .orange_sec .all_gray_order_list .all_list_note {
  margin-top: 20px;
}
.visits .online_meeting .orange_sec .all_gray_order_list .all_list_note li + li {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .visits .online_meeting .orange_sec {
    padding: 37px 23px 33px 23px;
  }
}
.visits .parking_lot .all_table th {
  background: #f5f5f5;
  font-size: 20px;
}
.visits .parking_lot .all_table td {
  font-size: 18px;
}
.visits .parking_lot .all_table th,
.visits .parking_lot .all_table td {
  text-align: center;
}
.visits .parking_lot .all_table ._num {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .visits .parking_lot .all_table td {
    font-size: 17px;
  }
}
.visits .parking_lot .all_list_note {
  margin-top: 30px;
}
.visits .parking_lot .all_list_note li + li {
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .visits .parking_lot .all_table th,
  .visits .parking_lot .all_table td {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* kidney_center */
/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.kidney_dialyzator .all_greeting {
  grid-template-columns: 1fr 1fr;
}
.kidney_dialyzator .all_greeting ._text_sec {
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .kidney_dialyzator .all_greeting {
    grid-template-columns: 1fr;
  }
}
.kidney_dialyzator .dialyzator_list {
  margin-top: 35px;
}
.kidney_dialyzator .dialyzator_list .all_text + .all_text {
  margin-top: 15px;
}
.kidney_dialyzator .dialyzator_list .dialyzator_list__ttl {
  font-weight: bold;
}
.kidney_dialyzator .all_list li::before {
  top: 1em;
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.kidney_service .all_grid_sec {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.kidney_service .all_grid_sec ._img {
  aspect-ratio: 1.5;
}
.kidney_service .all_grid_sec ._img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kidney_service .all_grid_sec .all_text {
  margin-top: 0;
}
.kidney_service .pickup_area ._img {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
}
@media screen and (max-width: 600px) {
  .kidney_service .pickup_area ._img {
    margin-top: 27px;
  }
}
.kidney_service .kidney_gray {
  border-radius: 8px;
  background-color: #F5F5F5;
  padding: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .kidney_service .kidney_gray {
    padding: 32px 24px;
    margin-top: 20px;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.kidney_stuff_facility .facility_introduction .facility_slider ._slide {
  width: 470px;
}
.kidney_stuff_facility .facility_introduction .facility_slider ._slide ._img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 470/327;
}
.kidney_stuff_facility .facility_introduction .facility_slider ._slide ._img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.kidney_stuff_facility .facility_introduction .facility_slider ._slide ._text {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .kidney_stuff_facility .facility_introduction .facility_slider ._slide {
    width: 300px;
  }
  .kidney_stuff_facility .facility_introduction .facility_slider ._slide ._text {
    margin-top: 20px;
  }
}
.kidney_stuff_facility .facility_introduction .facility_slider_bottom_sec {
  margin-top: 35px;
}
.kidney_stuff_facility .facility_introduction .facility_slider_bottom_sec .all_slider_control ._scrollbar .swiper-scrollbar-drag {
  background: #a8a8a8;
}
.kidney_stuff_facility .staff_introduction_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 50px;
  gap: 60px 0;
}
.kidney_stuff_facility .staff_introduction_group.under_item {
  padding-top: 45px;
}
.kidney_stuff_facility .staff_introduction_group.under_item .staff_item {
  position: relative;
  padding-bottom: 40px;
}
.kidney_stuff_facility .staff_introduction_group.under_item .staff_item .staff_introduction_department {
  position: absolute;
  top: -45px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .kidney_stuff_facility .staff_introduction_group.under_item .staff_item .staff_introduction_department {
    top: -35px;
  }
}
.kidney_stuff_facility .staff_introduction_group .staff_item {
  width: calc(33.3333333333% - 32px);
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 22px;
  border-top: 1px solid #e6e6e6;
  position: relative;
}
.kidney_stuff_facility .staff_introduction_group .staff_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 1px;
  background-color: var(--sub-color);
}
.kidney_stuff_facility .staff_introduction_group .staff_item_position {
  font-size: 17px;
  line-height: 1.5;
}
.kidney_stuff_facility .staff_introduction_group .staff_item_name {
  margin-top: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.kidney_stuff_facility .staff_introduction_group .staff_item_name_main {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .kidney_stuff_facility .staff_introduction_group .staff_item_name_main {
    font-size: 20px;
  }
}
.kidney_stuff_facility .staff_introduction_group .staff_item_name_other {
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .kidney_stuff_facility .staff_introduction_group {
    margin-left: 0;
    margin-right: 0;
    gap: 40px 0;
  }
  .kidney_stuff_facility .staff_introduction_group .staff_item {
    width: 100%;
    margin: 0;
  }
}
.kidney_stuff_facility .staff_introduction_department {
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
  color: var(--sub-color);
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .kidney_stuff_facility .staff_introduction_department {
    font-size: 20px;
  }
}

/* recruit */
/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.hospital_tour .info_ht .all_button {
  margin-top: 35px;
}
.hospital_tour .info_ht .all_button a {
  height: 68px;
}
.hospital_tour .ht_gallery .all_grid_sec {
  margin-top: 55px;
}

/* page */
/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.inquiry .faq_list ._item .all_text {
  font-weight: 500;
}
.inquiry .faq_list ._item ._item_head {
  padding: 26px 10px;
  padding-right: 40px;
}
.inquiry .faq_list ._item ._item_body {
  padding: 7px 80px 52px 26px;
}
@media screen and (max-width: 1024px) {
  .inquiry .faq_list ._item ._item_head {
    padding-left: 0;
  }
  .inquiry .faq_list ._item ._item_body {
    padding: 3px 40px 52px 16px;
  }
}
.inquiry .hemodialysis .hemodialysis_btn {
  margin-top: 40px;
}
.inquiry .in_phone_main {
  margin-top: 55px;
}
.inquiry .in_phone_main .in_phone_item .in_phone_ttl {
  font-size: 17px;
  line-height: 1.5;
  font-weight: bold;
}
.inquiry .in_phone_main .in_phone_item ._text {
  margin-top: 6px;
  font-size: 14px;
}
.inquiry .in_phone_main .in_phone_item .in_phone_tel {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--sub-color);
  margin-top: 10px;
}
.inquiry .in_phone_main .in_phone_item .in_phone_tel .in_phone_tel_num {
  border-bottom: 1px solid var(--sub-color);
  color: currentColor;
  display: inline-block;
}
.inquiry .in_phone_main .in_phone_item .in_phone_time {
  font-size: 17px;
  line-height: 1.7647058824;
  margin-top: 10px;
  font-weight: 500;
  white-space: nowrap;
}
.inquiry .in_phone_main .in_phone_bd {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.inquiry .in_phone_main .in_phone_bd .in_phone_item {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 40px 40px;
  width: calc(50% - 16px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.inquiry .in_phone_main .in_phone_bd .in_phone_item._long {
  width: 100%;
}
.inquiry .in_phone_main .in_phone_bd .in_phone_item._long > * {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .inquiry .in_phone_main .in_phone_bd {
    gap: 20px;
  }
  .inquiry .in_phone_main .in_phone_bd .in_phone_item {
    width: calc(50% - 10px);
  }
  .inquiry .in_phone_main .in_phone_bd .in_phone_item .in_phone_tel {
    font-size: 30px;
  }
  .inquiry .in_phone_main .in_phone_bd .in_phone_item .in_phone_time_hour {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .inquiry .in_phone_main .in_phone_bd .in_phone_item {
    padding: 25px 30px;
  }
  .inquiry .in_phone_main .in_phone_bd .in_phone_item .in_phone_tel {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .inquiry .in_phone_main .in_phone_bd {
    gap: 10px;
  }
  .inquiry .in_phone_main .in_phone_bd .in_phone_item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .inquiry .in_phone_main .in_phone_item .in_phone_time_hour {
    display: block;
    padding-left: 1.2em;
  }
}

/* mixin  ----------------------- */
/*mixin*/
/* color  ----------------------- */
.all_search_result {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .all_search_result {
    font-size: 20px;
  }
}

.privacy_policy .all_sub_title_04 {
  margin-top: 40px;
}

/*media query*/
@media print {
  .print-off {
    display: none;
  }
}
.print-off {
  display: none;
}

/*mixin*/
/* color  ----------------------- */
/* ACCORDER Inc. */
/* Base Style
----------------------- */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, Verdana, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
} /* Crearfix for Modern Browsers including Firefox, Opera, Safari, etc */
.clearfix {
  display: inline-block;
} /* For Windows IE7 and Mac IE5 */
* html .clearfix {
  height: 1px;
} /* For Windows IE5/IE6: Hides from IE-mac */
.clearfix {
  display: block;
}

.clear {
  clear: both;
} /* End hide from IE-mac */
img {
  width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  image-rendering: optimizequality;
  vertical-align: bottom;
} /* Better images when resized for IE7, FF3.5+ */
a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 1025px) {
  a.hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
html, body {
  height: 100%;
  font-size: 1vw;
}

body {
  background: #fff;
  color: #2E2E2E;
  --sub-color: #4082C4;
}

@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  color: inherit;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

/* wrapper  ----------------------- */
/* color  ----------------------- */
/* font  ----------------------- */
.all_font_en.all_font_en {
  font-family: "Roboto", sans-serif;
}

/*共通  ----------------------- */
.all_new_line {
  display: inline-block;
  letter-spacing: inherit;
  font-family: inherit;
}

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

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

/* #header ヘッダー
=========================================== */
/* #top　トップページ
=========================================== */
/* #footer フッター
=========================================== */
.all_gray_sec ._bottom ._item{
	 margin-top: 20px;
	 display: block;
}
.all_gray_sec ._subtitle{
	margin-bottom: 15px;
	position: relative;
	font-size: 17px;
	font-weight: bold;
}
.all_gray_sec .all_sub_md_list li .js-toggle-label._title{
	cursor: pointer;
	margin-bottom: 0;
}
.all_gray_sec ._bottom{
	padding-block: 20px;
	border-top: 2px dashed #e6e6e6;
	border-bottom: 2px dashed #e6e6e6;
}
.all_gray_sec ._bottom .js-toggle-label ._arrow{
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin-block: auto;
}
.all_gray_sec ._bottom .js-toggle-content{
	padding-top: 20px;
}
._bottom ._title.js-toggle-label ._arrow{
	transition:transform .3s  ;
}
._bottom ._title.js-toggle-label.is-active ._arrow{
	transform: rotate(180deg);
}
