@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333;
  background: #fff;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href*="tel:"] {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

.red {
  color: #d30000;
  font-weight: 700;
}

#page {
  position: relative;
}
#page::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
#page.is_hover_megamenu::before {
  opacity: 1;
  z-index: 100;
}

.flex__wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .flex__wrap {
    flex-direction: column;
  }
}

.text__block h4 {
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .text__block h4 {
    margin-bottom: 0.8rem;
  }
}
.text__block p {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .text__block p {
    font-size: 1.5rem;
  }
}

.main__title {
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #ccc;
  position: relative;
}
@media (max-width: 767px) {
  .main__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.main__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 10%;
  height: 2px;
  background: #0067b5;
}

.sub__title {
  font-size: 2.8rem;
  line-height: 1.6;
  padding-left: 1.6rem;
  margin-bottom: 2rem;
  border-left: 10px solid #0067b5;
}
@media (max-width: 767px) {
  .sub__title {
    font-size: 2rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
    border-left: 8px solid #0067b5;
  }
}

.accent__title {
  font-size: 2rem;
  color: #015aaa;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .accent__title {
    font-size: 1.8rem;
  }
}

.detail__title {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  display: inline-block;
}
.detail__title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #0067b5;
}

.text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .text {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.map__iframe-wrap {
  width: 100%;
  height: 0;
  position: relative;
}
.map__iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.br-pc {
  display: none;
}
@media (min-width: 1281px) {
  .br-pc {
    display: block;
  }
}

.br-tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

@media (min-width: 1281px) {
  .pc-none {
    display: none;
  }
}

.bg__btn a {
  display: block;
  background: #eff4f9;
  position: relative;
  text-align: center;
  padding: 2.4rem 0;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .bg__btn a {
    font-size: 1.5rem;
  }
}
.bg__btn a:hover {
  color: #0067b5;
}
.bg__btn a:hover .arrow::before {
  transform: translateX(0%);
  opacity: 1;
}
.bg__btn a:hover .arrow::after {
  transform: translateX(240%);
  opacity: 0;
}

.-w a {
  background: #fff;
  text-align: left;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .-w a {
    padding: 2rem 0 2rem 2rem;
  }
}
.-w .arrow {
  width: 40px;
  height: 40px;
  right: 2rem;
}

.btn a {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  padding-right: 6rem;
}
@media (max-width: 767px) {
  .btn a {
    font-size: 1.5rem;
    padding-right: 5rem;
  }
}
.btn a:hover {
  color: #0067b5;
}
.btn a:hover .arrow::before {
  transform: translateX(0%);
  opacity: 1;
}
.btn a:hover .arrow::after {
  transform: translateX(240%);
  opacity: 0;
}

.arrow {
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .arrow {
    width: 40px;
    height: 40px;
  }
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1.2rem;
  margin: 0 auto;
  background: url(../img/arrow-right.svg) no-repeat center center/contain;
  transition: all 0.3s ease-out;
}
.arrow::before {
  transform: translateX(-240%);
  opacity: 0;
}

.arrow.-b {
  right: 3rem;
  border: 1px solid #0067b5;
}
@media (max-width: 767px) {
  .arrow.-b {
    right: 1rem;
  }
}

.arrow.-g {
  right: 0;
  border: 1px solid #ccc;
}

.arrow.-w {
  right: 3rem;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .arrow.-w {
    right: 2rem;
  }
}
.arrow.-w::before, .arrow.-w::after {
  background: url(../img/arrow-w.svg) no-repeat center center/contain;
}

.breadcrumb {
  padding: 2rem 0;
}
.breadcrumb .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.breadcrumb .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb .breadcrumb__list li {
  display: flex;
  align-items: center;
  padding-right: 1.6rem;
  gap: 16px;
  font-size: 1.4em;
  position: relative;
}
@media (max-width: 767px) {
  .breadcrumb .breadcrumb__list li {
    font-size: 1.2rem;
    padding-right: 1rem;
    gap: 10px;
  }
}
.breadcrumb .breadcrumb__list li:last-of-type {
  padding-right: 0;
}
.breadcrumb .breadcrumb__list li:last-of-type::after {
  content: none;
}
.breadcrumb .breadcrumb__list li::after {
  content: "";
  display: block;
  width: 8px;
  height: 16px;
  background: url(../img/breadcrumb_arrow.svg) no-repeat center top/cover;
}
.breadcrumb a {
  color: #999;
  text-decoration: underline;
}

.pagenation {
  margin-top: 6rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pagenation {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .pagenation {
    margin-top: 4rem;
  }
}

.page__numbers {
  display: inline-block;
  background: #f2f2f2;
  color: #0067b5;
  font-size: 1.8rem;
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  margin-right: 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .page__numbers {
    font-size: 1.6rem;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 1.2rem;
  }
}
.page__numbers:hover {
  background: #0067b5;
  color: #fff;
}
.page__numbers:hover .icon path {
  fill: #fff;
}

.page__numbers.current {
  background: #0067b5;
  color: #fff;
}

.single__pagenavi {
  margin-top: 8rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .single__pagenavi {
    margin-top: 6rem;
  }
}
.single__pagenavi .pagenavi__list {
  display: flex;
  justify-content: space-between;
  height: 100px;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list {
    height: 80px;
  }
}
.single__pagenavi .pagenavi__list .pagenavi__item {
  display: flex;
  align-items: center;
}
.single__pagenavi .pagenavi__list .pagenavi__item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .pagenavi__item a {
    flex-direction: column;
    font-size: 1.2rem;
  }
}
.single__pagenavi .pagenavi__list .pagenavi__item a.disabled {
  pointer-events: none;
  color: transparent;
}
.single__pagenavi .pagenavi__list .pagenavi__item a.disabled .arrow {
  display: none;
}
.single__pagenavi .pagenavi__list .pagenavi__item a:hover {
  color: #0067b5;
}
.single__pagenavi .pagenavi__list .link__prev,
.single__pagenavi .pagenavi__list .link__next {
  position: relative;
}
.single__pagenavi .pagenavi__list .link__prev::before,
.single__pagenavi .pagenavi__list .link__next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background: #ccc;
}
.single__pagenavi .pagenavi__list .link__prev .arrow::before, .single__pagenavi .pagenavi__list .link__prev .arrow::after,
.single__pagenavi .pagenavi__list .link__next .arrow::before,
.single__pagenavi .pagenavi__list .link__next .arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1.2rem;
  margin: 0 auto;
  transition: all 0.3s ease-out;
}
.single__pagenavi .pagenavi__list .link__prev .arrow::before,
.single__pagenavi .pagenavi__list .link__next .arrow::before {
  transform: translateX(-240%);
  opacity: 0;
}
.single__pagenavi .pagenavi__list .link__prev {
  width: 25%;
  padding-left: 7rem;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .link__prev {
    padding: 1rem 0;
  }
}
.single__pagenavi .pagenavi__list .link__prev::before {
  right: 0;
}
.single__pagenavi .pagenavi__list .link__prev a:hover .arrow::before {
  transform: translateX(0%);
  opacity: 1;
}
.single__pagenavi .pagenavi__list .link__prev a:hover .arrow::after {
  transform: translateX(-240%);
  opacity: 0;
}
.single__pagenavi .pagenavi__list .link__prev a .arrow {
  left: 0;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .link__prev a .arrow {
    top: 50px;
    left: 24px;
    width: 35px;
    height: 35px;
  }
}
.single__pagenavi .pagenavi__list .link__prev a .arrow::before, .single__pagenavi .pagenavi__list .link__prev a .arrow::after {
  background: url(../img/arrow-left.svg) no-repeat center center/contain;
}
.single__pagenavi .pagenavi__list .link__prev a .arrow::before {
  transform: translateX(240%);
  opacity: 0;
}
.single__pagenavi .pagenavi__list .link__back {
  width: 50%;
}
.single__pagenavi .pagenavi__list .link__back a {
  justify-content: center;
}
.single__pagenavi .pagenavi__list .link__next {
  width: 25%;
  padding-right: 7rem;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .link__next {
    padding: 1rem 0;
  }
}
.single__pagenavi .pagenavi__list .link__next::before {
  left: 0;
}
.single__pagenavi .pagenavi__list .link__next a {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .link__next a {
    justify-content: flex-start;
  }
}
.single__pagenavi .pagenavi__list .link__next a .arrow {
  right: 0;
}
@media (max-width: 767px) {
  .single__pagenavi .pagenavi__list .link__next a .arrow {
    top: 50px;
    right: 24px;
    width: 35px;
    height: 35px;
  }
}
.single__pagenavi .pagenavi__list .link__next a:hover .arrow::before {
  transform: translateX(0%);
  opacity: 1;
}
.single__pagenavi .pagenavi__list .link__next a:hover .arrow::after {
  transform: translateX(240%);
  opacity: 0;
}

.contents__wrap {
  padding-top: 10rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contents__wrap {
    padding-top: 6rem;
  }
}
@media (max-width: 767px) {
  .contents__wrap {
    padding-top: 4rem;
  }
}
.contents__wrap .inner {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contents__wrap .inner {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contents__wrap .inner {
    padding: 0;
  }
}

.main__wrap {
  width: calc(100% - 280px);
  margin: 0 auto;
  padding: 2rem 0 0 8rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main__wrap {
    width: 92%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main__wrap {
    width: 100%;
    padding: 0 2rem;
  }
}
.main__wrap .main__content:not(:first-child) {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .main__wrap .main__content:not(:first-child) {
    padding-top: 6rem;
  }
}

.side__wrap {
  width: 280px;
  border-right: 1px solid #ccc;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .side__wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .side__wrap {
    display: none;
  }
}
.side__wrap .side__nav-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 12rem;
  padding: 3rem 2.4rem 0 0;
}
.side__wrap .side__nav-title {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
}
.side__wrap .side__nav-list li a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  padding: 0.8rem 0;
  transition: all 0.3s;
  white-space: nowrap;
}
.side__wrap .side__nav-list li a .icon {
  display: inline-block;
  line-height: 0;
  margin-right: 1rem;
}
.side__wrap .side__nav-list li a:hover {
  color: #0067b5;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .sidebar__wrap {
    display: block;
    width: 100%;
    border-right: none;
    padding: 0 2rem;
    margin-top: 8rem;
  }
}
@media (max-width: 767px) {
  .sidebar__wrap {
    display: block;
    width: 100%;
    border-right: none;
    padding: 0 2rem;
    margin-top: 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sidebar__wrap .side__nav-wrap {
    position: static;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .sidebar__wrap .side__nav-wrap {
    position: static;
    padding: 0;
  }
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 767px) {
  .table table:last-of-type {
    border-bottom: 1px solid #ccc;
  }
}
.table table th,
.table table td {
  border: 1px solid #ccc;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .table table th,
.table table td {
    font-size: 1.5rem;
  }
}
.table table th {
  width: 20%;
  background: #eaf4fb;
  text-align: left;
}
.table table td {
  width: 80%;
}

.table__column2 {
  width: 100%;
}

.table__column4 {
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .table__column4 {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .table__column4 {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media (max-width: 767px) {
  .table__column4 {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.table__column4 table {
  min-width: 1000px;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .table__column4 table {
    table-layout: fixed;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .table__column4 table {
    table-layout: fixed;
  }
}
@media (max-width: 767px) {
  .table__column4 table {
    table-layout: fixed;
  }
}

.table__schedule table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table__schedule tr > *:first-child {
  width: 100px;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .table__schedule tr > *:first-child {
    padding: 1rem;
  }
}
.table__schedule th,
.table__schedule td {
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: 400;
}
.table__schedule th:not(:first-child),
.table__schedule td:not(:first-child) {
  width: 30px;
  text-align: center;
}
.table__schedule th {
  font-size: 1.6rem;
}
.table__schedule td {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .table__schedule td {
    font-size: 2rem;
  }
}
.table__schedule .info__lead {
  font-size: 1.4rem;
}
.table__schedule .info__lead:nth-of-type(1) {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .table__schedule .info__lead {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.table__top {
  position: absolute;
  right: 20px;
  bottom: -7vw;
  background: #fff;
  padding: 2rem 3rem;
  border-radius: 16px;
  border: 2px solid #0067b5;
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .table__top {
    bottom: -10vw;
  }
}
@media (max-width: 767px) {
  .table__top {
    position: static;
    margin: 2rem 1.2rem 0;
    padding: 1rem 1.5rem 2.4rem;
  }
}
.table__top tr > *:first-child {
  padding: 0.5rem 2rem;
}
@media (max-width: 767px) {
  .table__top tr > *:first-child {
    width: 90px;
    padding: 0.8rem;
  }
}
.table__top th:not(:first-child),
.table__top td:not(:first-child) {
  width: 30px;
}
@media (max-width: 767px) {
  .table__top th:not(:first-child),
.table__top td:not(:first-child) {
    width: 25px;
  }
}
@media (max-width: 767px) {
  .table__top .info__lead {
    font-size: 1.2rem;
  }
}
.table__top .btn {
  margin-top: 2rem;
  text-align: right;
}
@media (max-width: 767px) {
  .table__top .btn {
    margin-top: 1rem;
  }
}
.table__top .btn a {
  font-size: 1.5rem;
  padding-right: 5rem;
}
@media (max-width: 767px) {
  .table__top .btn a {
    font-size: 1.4rem;
  }
}
.table__top .btn a .arrow {
  width: 40px;
  height: 40px;
}
.table__top .btn a .arrow::after {
  width: 1rem;
}

.table__small {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .table__small {
    margin-top: 1rem;
  }
}

.table__large table {
  border: 1px solid #ccc;
}
.table__large table tr > *:first-child {
  width: 200px;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .table__large table tr > *:first-child {
    width: 90px;
    padding: 2rem 0.5rem;
  }
}
.table__large table tr:nth-of-type(1) th {
  background: #eaf4fb;
}
.table__large table th,
.table__large table td {
  border-right: 1px solid #ccc;
}
.table__large table th:not(:first-child),
.table__large table td:not(:first-child) {
  width: 100px;
}
@media (max-width: 767px) {
  .table__large table th:not(:first-child),
.table__large table td:not(:first-child) {
    width: 32px;
  }
}
.table__large table th {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .table__large table th {
    font-size: 1.4rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .header {
    height: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .header__inner {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 4rem;
  height: 100%;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .header .header__inner {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header__inner {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .header .header__inner {
    padding: 0 1rem;
  }
}
.header .header__logo {
  width: 210px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header__logo {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    width: 150px;
  }
}
.header .header__content {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .header .header__content {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header .header__content {
    display: none;
  }
}
@media (max-width: 767px) {
  .header .header__content {
    display: none;
  }
}
.header .header__nav-item a {
  font-size: 1.5rem;
  font-weight: 700;
}
.header .header__nav-sub {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header__nav-sub .header__nav-item a {
  padding: 0;
  font-weight: 400;
  transition: all 0.3s;
}
.header .header__nav-sub .header__nav-item a:hover {
  color: #0067b5;
}
.header .header__nav-sub .header__tel {
  font-family: "Lato", sans-serif;
}
.header .header__nav-sub .header__tel a {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0067b5;
}
.header .header__nav-sub .header__tel a span {
  padding-left: 0.4rem;
}
.header .header__nav-main {
  display: flex;
}
.header .header__nav-main .header__link {
  position: relative;
  padding: 0 0 2.4rem 3rem;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .header .header__nav-main .header__link {
    padding: 0 0 2.4rem 2.4rem;
  }
}
.header .header__nav-main .header__link::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 1.2rem);
  width: 6px;
  height: 6px;
  background: #0067b5;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s;
}
.header .header__nav-main .header__link:hover::after {
  opacity: 1;
}
.header .dropdown__menu {
  cursor: pointer;
}
.header .dropdown__menu:hover .sub__nav {
  opacity: 1;
  visibility: visible;
}
.header .sub__nav {
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid #ccc;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header .sub__nav .flex__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 10vw;
  margin: 0 auto;
}
.header .sub__nav .sub__nav-wrap {
  width: 25%;
  position: relative;
}
.header .sub__nav .sub__nav-wrap a {
  display: block;
}
.header .sub__nav .sub__nav-wrap .sub__nav-title {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
.header .sub__nav .sub__nav-wrap .img__wrap {
  width: 100%;
}
.header .sub__nav .dropdown__list {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.header .sub__nav .dropdown__list li {
  width: 30%;
  padding: 0.8rem;
  border-bottom: 1px solid #ccc;
}
.header .sub__nav .dropdown__list li a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  padding-left: 30px;
  padding-bottom: 0;
  transition: all 0.4s ease 0s;
}
.header .sub__nav .dropdown__list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #0067b5;
  border-right: 1px solid #0067b5;
  transition: all 0.4s ease 0s;
}
.header .sub__nav .dropdown__list li a:hover {
  color: #0067b5;
}
.header .sub__nav .dropdown__list li a:hover::before {
  left: 5px;
}

@media (min-width: 1281px) {
  .drawer {
    display: none;
  }
}
.drawer .drawer__icon {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 300;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .drawer .drawer__icon {
    top: 35px;
    right: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer .drawer__icon {
    top: 35px;
    right: 25px;
  }
}
.drawer .drawer__icon.is-active .drawer__icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer .drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}
.drawer .drawer__icon.is-active .drawer__icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
}
.drawer .drawer__icon-bars {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .drawer .drawer__icon-bars {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer .drawer__icon-bars {
    width: 30px;
    height: 30px;
  }
}
.drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2,
.drawer .drawer__icon-bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #333;
  transition: all 0.4s ease 0s;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2,
.drawer .drawer__icon-bar3 {
    width: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2,
.drawer .drawer__icon-bar3 {
    width: 30px;
  }
}
.drawer .drawer__icon-bar1 {
  top: 0;
}
.drawer .drawer__icon-bar2 {
  top: 6px;
}
.drawer .drawer__icon-bar3 {
  top: 12px;
}
.drawer .drawer__content {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 60px);
  background: #ffffff;
  transition: all 0.3s;
  line-height: 2;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .drawer .drawer__content {
    top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer .drawer__content {
    top: 80px;
  }
}
.drawer .drawer__content.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 299;
}
.drawer .drawer__nav {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer .nav__list {
  padding: 2rem 0 6rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .drawer .nav__list {
    padding: 2rem 2.4rem 6rem;
  }
}
.drawer .has-child {
  position: relative;
}
.drawer .has-child .nav-link {
  position: relative;
  transition: all 0.3s ease 0s;
}
.drawer .has-child .nav-link::before, .drawer .has-child .nav-link::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #015aaa;
  transition: all 0.3s ease 0s;
}
.drawer .has-child .nav-link::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.drawer .has-child .nav-link::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.drawer .has-child.active > .sub-nav {
  visibility: visible;
  opacity: 1;
}
.drawer .has-child.active .nav-link::before {
  transform: rotate(45deg);
}
.drawer .has-child.active .nav-link::after {
  transform: rotate(-45deg);
}
.drawer ul li {
  border-bottom: 1px solid #ccc;
}
.drawer ul li a {
  display: block;
  font-size: 1.5rem;
  padding: 2rem 1rem;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer ul li a {
    font-size: 1.6rem;
  }
}
.drawer ul .sub-nav {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
  display: none;
  transition: none;
}
.drawer ul .sub-nav a {
  display: flex;
  font-weight: 400;
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.drawer ul .sub-nav a .icon {
  line-height: 1;
}
.drawer ul .sub-nav a:hover {
  color: #0067b5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer ul .sub-nav a {
    padding: 8px 32px;
  }
}

.sp__tel {
  position: absolute;
  top: 0;
  right: 60px;
  width: 64px;
  height: 60px;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media (min-width: 1281px) {
  .sp__tel {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__tel {
    right: 80px;
    width: 84px;
    height: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tel {
    right: 80px;
    width: 84px;
    height: 80px;
  }
}
.sp__tel .icon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__tel .icon {
    top: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tel .icon {
    top: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__tel .icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tel .icon svg {
    width: 24px;
    height: 24px;
  }
}
.sp__tel .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #eaf4fb;
  border-radius: 100%;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__tel .icon::before {
    width: 44px;
    height: 44px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tel .icon::before {
    width: 44px;
    height: 44px;
  }
}
.sp__tel span {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  white-space: nowrap;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__tel span {
    bottom: 6px;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__tel span {
    bottom: 6px;
    font-size: 1.2rem;
  }
}

.sp__menu 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;
}
@media (min-width: 1281px) {
  .sp__menu {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .sp__menu {
    display: none;
  }
}
.sp__menu .sp__menu-bg {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #969696;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-bg {
    top: 80px;
  }
}
.sp__menu .sp__menu-bg.sp__menu-active {
  opacity: 0.95;
  visibility: visible;
}
.sp__menu .sp__menu-btn {
  display: block;
  position: absolute;
  top: 7px;
  right: 135px;
  width: 45px;
  height: 45px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-btn {
    top: 10px;
    right: 180px;
    width: 60px;
    height: 60px;
  }
}
.sp__menu .sp__menu-btn ._circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #015aaa;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.sp__menu .sp__menu-btn ._btn {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}
.sp__menu .sp__menu-btn ._btn ._img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-btn ._btn ._img {
    top: 8px;
    width: 30px;
  }
}
.sp__menu .sp__menu-btn ._btn ._img.sp__menu-active {
  background: url(../img/sp_menu_close.svg) no-repeat center center/contain;
}
.sp__menu .sp__menu-btn ._btn ._img.sp__menu-active img {
  opacity: 0;
}
.sp__menu .sp__menu-btn ._btn ._close_img {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 17px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.sp__menu .sp__menu-btn ._btn ._close_img.sp__menu-active {
  opacity: 1;
  visibility: visible;
}
.sp__menu .sp__menu-btn ._text {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-btn ._text {
    top: 40px;
    font-size: 1.1rem;
  }
}
.sp__menu .sp__menu-btn ._text::before {
  content: "目次";
}
.sp__menu .sp__menu-btn ._text.sp__menu-active::before {
  content: "閉じる";
}
.sp__menu .sp__menu-list {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-height: calc(100vh - 120px);
  padding: 0 1.5rem 4rem;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-list {
    top: 120px;
    padding: 0 4rem 4rem;
  }
}
.sp__menu .sp__menu-list.sp__menu-active {
  opacity: 1;
  visibility: visible;
}
.sp__menu .sp__menu-list .sp__menu-title {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-list .sp__menu-title {
    font-size: 1.8rem;
  }
}
.sp__menu .sp__menu-list ul {
  padding: 0 1rem;
}
.sp__menu .sp__menu-list ul li {
  border-bottom: 1px solid #fff;
}
.sp__menu .sp__menu-list ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem 1rem;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__menu .sp__menu-list ul li a {
    font-size: 1.6rem;
  }
}

.top__mv {
  position: relative;
  margin-top: 8rem;
}
@media (min-width: 1281px) {
  .top__mv {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .top__mv {
    margin-top: 6rem;
  }
}

#top__mv-slider {
  height: 87vh;
}
@media (max-width: 767px) {
  #top__mv-slider {
    height: 100%;
  }
}
#top__mv-slider .img__wrap {
  position: relative;
  width: 100%;
  padding-top: 50%;
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #top__mv-slider .img__wrap {
    padding-top: 60%;
  }
}
@media (max-width: 767px) {
  #top__mv-slider .img__wrap {
    padding-top: 77%;
  }
}
#top__mv-slider .img__wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1281px) {
  #top__mv-slider .img__wrap img {
    top: -50px;
  }
}

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

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.kv {
  position: relative;
  margin-top: 8rem;
}
@media (min-width: 1281px) {
  .kv {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .kv {
    margin-top: 6rem;
  }
}
.kv .img__wrap {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kv .img__wrap {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .kv .img__wrap {
    height: 180px;
  }
}
.kv .img__wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv .img__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.3);
}
.kv .text__wrap {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
}
.kv .text__wrap h2 {
  font-size: 3.6rem;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .kv .text__wrap h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .kv .text__wrap h2 {
    font-size: 2.4rem;
  }
}

.news__list {
  margin-top: 1rem;
}
.news__list .news__item {
  border-bottom: 1px solid #ccc;
}
.news__list .news__item a {
  display: block;
  padding: 2rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .news__list .news__item a {
    padding: 2rem 1.2rem;
  }
}
.news__list .news__item a .flex__wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news__list .news__item a .flex__wrap {
    flex-direction: column;
  }
}
.news__list .news__item a .flex__wrap .news__meta {
  display: flex;
  align-items: center;
  width: 260px;
}
@media (max-width: 767px) {
  .news__list .news__item a .flex__wrap .news__meta {
    width: 100%;
  }
}
.news__list .news__item a .flex__wrap .news__meta .news__date {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .news__list .news__item a .flex__wrap .news__meta .news__date {
    font-size: 1.4rem;
  }
}
.news__list .news__item a .flex__wrap .news__meta .news__label {
  display: block;
  min-width: 100px;
  margin-left: 2rem;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.5rem 0;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .news__list .news__item a .flex__wrap .news__meta .news__label {
    margin-left: 1rem;
    padding: 0.2rem 0;
  }
}
.news__list .news__item a .flex__wrap .news__title {
  width: calc(100% - 260px);
  font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news__list .news__item a .flex__wrap .news__title {
    width: calc(100% - 220px);
  }
}
@media (max-width: 767px) {
  .news__list .news__item a .flex__wrap .news__title {
    width: 100%;
    margin-top: 16px;
    font-size: 1.5rem;
  }
}

.news__regular h2 {
  font-size: 2.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .news__regular h2 {
    font-size: 2.2rem;
  }
}
.news__regular .news__item a:hover {
  background: #f5f8fa;
}
.news__regular .news__label {
  background: #0067b5;
}
.news__regular .top__news-btn {
  margin-top: 4rem;
  text-align: right;
}

.top__news {
  margin-top: 16rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__news {
    margin-top: 14rem;
  }
}
@media (max-width: 767px) {
  .top__news {
    margin-top: 4rem;
  }
}
.top__news .inner {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top__news .inner {
    width: 100%;
    padding: 0 1.5rem;
  }
}
.top__news .sec__head {
  text-align: center;
}
.top__news .top__news-important {
  background: #ffecf0;
  padding: 5rem 6rem;
  border-radius: 8px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__news .top__news-important {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .top__news .top__news-important {
    padding: 2rem 2rem 2.8rem;
  }
}
.top__news .top__news-important .sec__head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__news .top__news-important .sec__head .icon {
  margin-top: 4px;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .top__news .top__news-important .sec__head .icon {
    margin-top: 2px;
    width: 36px;
    height: 36px;
  }
}
.top__news .top__news-important .sec__head h2 {
  color: #ef3b65;
  font-size: 2.8rem;
  font-weight: 600;
  margin-left: 0.8rem;
}
@media (max-width: 767px) {
  .top__news .top__news-important .sec__head h2 {
    font-size: 2.2rem;
  }
}
.top__news .top__news-important .news__list .news__item {
  border-bottom: 1px solid #ff9fb6;
}
.top__news .top__news-important .news__list .news__item a:hover {
  background: rgba(255, 0, 0, 0.05);
}
.top__news .top__news-important .news__list .news__item .news__date {
  color: #ef3b65;
}
.top__news .top__news-important .news__list .news__item .news__label {
  background: #ef3b65;
}
.top__news .top__news-important .news__list .news__item .news__title {
  color: #ef3b65;
}
.top__news .top__news-regular {
  margin-top: 8rem;
  padding: 4rem 6rem;
  border: 1px solid #0067b5;
  border-radius: 8px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__news .top__news-regular {
    margin-top: 6rem;
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .top__news .top__news-regular {
    margin-top: 4rem;
    padding: 2rem 2rem 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #page__news-archive .contents__wrap .inner {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__news-archive .contents__wrap .inner:nth-of-type(1) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  #page__news-archive .contents__wrap .inner:nth-of-type(1) {
    flex-direction: column-reverse;
  }
}
#page__news-archive .sidebar:not(:first-of-type) {
  margin-top: 4rem;
}
#page__news-archive .sidebar .sub__title {
  font-size: 2rem;
}
#page__news-archive .sidebar .side__nav-list {
  margin-top: 2rem;
}
#page__news-archive .sidebar__archive .archive__list {
  position: relative;
}
#page__news-archive .sidebar__archive .archive__list::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: url(../img/select_arrow.svg) no-repeat center center/contain;
}
#page__news-archive .sidebar__archive select {
  font-family: inherit;
  color: inherit;
  vertical-align: top;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background: #f2f2f2;
  padding: 2rem;
  font-size: 1.6rem;
  height: 60px;
  cursor: pointer;
}
#page__news-archive .news__regular {
  border: none;
}

#page__news-single .breadcrumb {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__news-single .breadcrumb {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  #page__news-single .breadcrumb {
    margin-top: 6rem;
  }
}
#page__news-single .main__wrap {
  max-width: 1080px;
  margin: 8rem auto 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__news-single .main__wrap {
    width: 90%;
    margin-top: 6rem;
  }
}
@media (max-width: 767px) {
  #page__news-single .main__wrap {
    width: 100%;
    margin-top: 2rem;
    padding: 0 2rem;
  }
}
#page__news-single .news__single-wrap .news__single-top .flex__wrap {
  justify-content: flex-start;
}
#page__news-single .news__single-wrap .news__single-top .flex__wrap .news__meta {
  display: flex;
  align-items: center;
}
#page__news-single .news__single-wrap .news__single-top .flex__wrap .news__meta .news__date {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page__news-single .news__single-wrap .news__single-top .flex__wrap .news__meta .news__date {
    font-size: 1.4rem;
  }
}
#page__news-single .news__single-wrap .news__single-top .flex__wrap .news__meta .news__label {
  display: block;
  min-width: 100px;
  margin-left: 2rem;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  background: #0067b5;
  padding: 0.5rem 0;
  border-radius: 50px;
}
@media (max-width: 767px) {
  #page__news-single .news__single-wrap .news__single-top .flex__wrap .news__meta .news__label {
    padding: 0.2rem 0;
  }
}
#page__news-single .news__single-wrap .news__single-top .news__single-title {
  font-size: 3.2rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__news-single .news__single-wrap .news__single-top .news__single-title {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  #page__news-single .news__single-wrap .news__single-top .news__single-title {
    font-size: 2.4rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
#page__news-single .news__single-wrap .news__single-img {
  margin: 4rem 0;
}
#page__news-single .news__single-wrap .news__single-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page__news-single .news__single-wrap .news__single-body .text {
  margin-bottom: 3rem;
  line-height: 2;
}
@media (max-width: 767px) {
  #page__news-single .news__single-wrap .news__single-body .text {
    line-height: 2.2;
  }
}
#page__news-single .news__single-wrap .news__single-body a {
  color: #135cae;
}

.top__about {
  position: relative;
  margin-top: 12rem;
  padding-top: 10rem;
  padding-bottom: 8rem;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .top__about {
    padding-top: 8rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about {
    margin-top: 10rem;
    padding-top: 6rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .top__about {
    margin-top: 8rem;
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
.top__about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 490px;
  background: #eaf4fb;
  z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .top__about::before {
    height: 80%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about::before {
    top: 0;
    height: 65%;
  }
}
@media (max-width: 767px) {
  .top__about::before {
    top: 0;
    height: 38%;
  }
}
.top__about .inner {
  max-width: 1240px;
  width: 92%;
  margin: 0 auto;
}
.top__about .flex__wrap {
  align-items: flex-end;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about .flex__wrap {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .top__about .flex__wrap {
    flex-direction: column-reverse;
  }
}
.top__about .text__wrap {
  width: 51%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about .text__wrap {
    width: 100%;
    margin-top: 3rem;
  }
}
@media (max-width: 767px) {
  .top__about .text__wrap {
    width: 100%;
    margin-top: 6rem;
  }
}
.top__about .text__wrap h2 {
  font-size: 4rem;
  margin-bottom: 6rem;
  line-height: 1.4;
}
@media (min-width: 1281px) {
  .top__about .text__wrap h2 {
    font-size: 4.4rem;
  }
}
@media (max-width: 767px) {
  .top__about .text__wrap h2 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.top__about .text__wrap p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .top__about .text__wrap p {
    font-size: 1.5rem;
  }
}
.top__about .text__wrap .btn {
  text-align: right;
  margin-top: 4rem;
}
.top__about .text__wrap .btn .arrow {
  background: #fff;
}
.top__about .img__wrap {
  width: 43%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about .img__wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top__about .img__wrap {
    width: 100%;
  }
}
.top__about .img__wrap .img__box:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: calc(50% - 12em);
  width: 180px;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .top__about .img__wrap .img__box:nth-of-type(1) {
    top: 0;
    left: 520px;
    width: 140px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__about .img__wrap .img__box:nth-of-type(1) {
    top: 330px;
    left: 72%;
    width: 160px;
  }
}
@media (max-width: 767px) {
  .top__about .img__wrap .img__box:nth-of-type(1) {
    top: 52vw;
    left: 72%;
    width: 100px;
  }
}
.top__about .img__wrap .img__box:nth-of-type(1) .text {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .top__about .img__wrap .img__box:nth-of-type(1) .text {
    font-size: 1.1rem;
  }
}
.top__about .img__wrap .img__box:nth-of-type(2) img {
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .top__about .img__wrap .img__box:nth-of-type(2) img {
    height: 100%;
  }
}

#page__about #sec_01 .item__wrap:nth-of-type(2),
#page__about #sec_02 .item__wrap:nth-of-type(2) {
  margin-top: 50px;
}
#page__about #sec_01 .flex__wrap,
#page__about #sec_02 .flex__wrap {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  #page__about #sec_01 .flex__wrap,
#page__about #sec_02 .flex__wrap {
    flex-direction: column;
    margin-top: 20px;
  }
}
#page__about #sec_01 .flex__wrap .img__wrap,
#page__about #sec_02 .flex__wrap .img__wrap {
  width: 30%;
}
@media (max-width: 767px) {
  #page__about #sec_01 .flex__wrap .img__wrap,
#page__about #sec_02 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
#page__about #sec_01 .flex__wrap .img__wrap .name,
#page__about #sec_02 .flex__wrap .img__wrap .name {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #page__about #sec_01 .flex__wrap .img__wrap .name,
#page__about #sec_02 .flex__wrap .img__wrap .name {
    font-size: 1.4rem;
  }
}
#page__about #sec_01 .flex__wrap .img__wrap .name .bold,
#page__about #sec_02 .flex__wrap .img__wrap .name .bold {
  display: block;
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__about #sec_01 .flex__wrap .img__wrap .name .bold,
#page__about #sec_02 .flex__wrap .img__wrap .name .bold {
    font-size: 1.8rem;
  }
}
#page__about #sec_01 .flex__wrap .text__wrap,
#page__about #sec_02 .flex__wrap .text__wrap {
  width: 65%;
}
@media (max-width: 767px) {
  #page__about #sec_01 .flex__wrap .text__wrap,
#page__about #sec_02 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (min-width: 1281px) {
  #page__about #sec_01 .flex__wrap .text__wrap .accent__title,
#page__about #sec_02 .flex__wrap .text__wrap .accent__title {
    font-size: 2.4rem;
  }
}
#page__about #sec_01 .flex__wrap .text__wrap .text:not(:last-of-type),
#page__about #sec_02 .flex__wrap .text__wrap .text:not(:last-of-type) {
  margin-bottom: 1rem;
}
#page__about #sec_03 .policy__top .text__block:first-of-type {
  margin-bottom: 3rem;
}
@media (min-width: 1281px) {
  #page__about #sec_03 .policy__top .accent__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  #page__about #sec_04 table th,
#page__about #sec_04 table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }
}
#page__about #sec_05 {
  position: relative;
}
@media (max-width: 767px) {
  #page__about #sec_05 table th,
#page__about #sec_05 table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }
}
#page__about #sec_06 .facility__btn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 1281px) {
  #page__about #sec_06 .facility__btn-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  #page__about #sec_06 .facility__btn-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#page__about #sec_06 .facility__btn-list li {
  display: flex;
  flex-wrap: wrap;
}
#page__about #sec_06 .facility__btn-list li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #eff4f9;
  font-size: 1.5rem;
  padding: 2rem;
  box-shadow: 2px 2px 10px rgba(51, 51, 51, 0.15);
  transition: all 0.3s;
}
#page__about #sec_06 .facility__btn-list li a:hover {
  transform: translate(0px, -4px);
}
#page__about #sec_06 .facility__btn-list li a span {
  position: relative;
  padding: 0 1rem 0 0;
}
#page__about #sec_06 .facility__btn-list li a span svg {
  position: absolute;
  top: 0;
  right: -20px;
}
#page__about #sec_07 .text__box {
  background: #fff;
  padding: 6rem 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-radius: 16px;
}
@media (max-width: 767px) {
  #page__about #sec_07 .text__box {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  #page__about #sec_07 .text__box p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
#page__about #sec_07 .text__box .bg__btn {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  #page__about #sec_07 .text__box .bg__btn {
    margin-top: 1rem;
  }
}
#page__about #sec_07 .text__box .bg__btn a {
  width: 400px;
  display: inline-block;
}
@media (max-width: 767px) {
  #page__about #sec_07 .text__box .bg__btn a {
    width: 100%;
  }
}
#page__about #sec_08 .facility__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  #page__about #sec_08 .facility__card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__about #sec_08 .facility__card-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  #page__about #sec_08 .facility__card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
#page__about #sec_08 .facility__card-list li a {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__about #sec_08 .facility__card-list li a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #page__about #sec_08 .facility__card-list li a {
    padding: 0;
  }
}
#page__about #sec_08 .facility__card-list li a .img__wrap {
  position: relative;
  overflow: hidden;
}
#page__about #sec_08 .facility__card-list li a .img__wrap img {
  transition: all 0.3s ease 0s;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #page__about #sec_08 .facility__card-list li a .img__wrap img {
    height: 230px;
  }
}
#page__about #sec_08 .facility__card-list li a .text__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 3rem 1rem;
}
#page__about #sec_08 .facility__card-list li a .text__wrap .accent__title {
  line-height: 1.4;
}
#page__about #sec_08 .facility__card-list li a .text__wrap .facility__card-label {
  position: relative;
}
#page__about #sec_08 .facility__card-list li a .text__wrap .facility__card-add {
  font-size: 1.4rem;
}
#page__about #sec_08 .facility__card-list li a:hover .img__wrap > img {
  transform: scale(1.05);
}
#page__about #sec_08 .facility__card-list li a:hover .arrow::before {
  transform: translateX(0%);
  opacity: 1;
}
#page__about #sec_08 .facility__card-list li a:hover .arrow::after {
  transform: translateX(240%);
  opacity: 0;
}

#page__outpatient #sec_01 .flex__wrap {
  align-items: center;
}
#page__outpatient #sec_01 .flex__wrap .img__wrap {
  width: 40%;
}
@media (max-width: 767px) {
  #page__outpatient #sec_01 .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__outpatient #sec_01 .flex__wrap .text__wrap {
  width: 83%;
}
@media (max-width: 767px) {
  #page__outpatient #sec_01 .flex__wrap .text__wrap {
    width: 100%;
  }
}
#page__outpatient #sec_01 .flex__wrap .text__wrap .text {
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  #page__outpatient #sec_01 .flex__wrap .text__wrap .text {
    margin-bottom: 1.2rem;
  }
}
#page__outpatient #sec_01 .flex__wrap .text__wrap ul li {
  padding-left: 1rem;
  position: relative;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page__outpatient #sec_01 .flex__wrap .text__wrap ul li {
    font-size: 1.5rem;
  }
}
#page__outpatient #sec_01 .flex__wrap .text__wrap ul li::before {
  content: "･";
  position: absolute;
  left: 0;
}
#page__outpatient #sec_02 .flow__list {
  position: relative;
}
#page__outpatient #sec_02 .flow__list .flow__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 3rem 0 3rem 15rem;
  gap: 9rem;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  #page__outpatient #sec_02 .flow__list .flow__item {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0 3rem 10rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__outpatient #sec_02 .flow__list .flow__item {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0 3rem 10rem;
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item {
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0 4rem 7rem;
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item:last-of-type {
    padding: 4rem 0 0 7rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item:last-of-type::before, #page__outpatient #sec_02 .flow__list .flow__item:last-of-type::after {
  display: none;
}
#page__outpatient #sec_02 .flow__list .flow__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  left: 4rem;
  width: 0.2rem;
  height: 100%;
  border-left: 0.3rem dotted #0067b5;
  z-index: 1;
}
@media (min-width: 1281px) {
  #page__outpatient #sec_02 .flow__list .flow__item::before {
    top: 5rem;
    left: 5rem;
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item::before {
    top: 5rem;
    left: 3rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 10rem);
  border-bottom: 1px solid #ccc;
}
@media (min-width: 1281px) {
  #page__outpatient #sec_02 .flow__list .flow__item::after {
    width: calc(100% - 15rem);
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item::after {
    width: calc(100% - 7rem);
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-num {
  position: absolute;
  top: 2rem;
  left: 0;
  background: #fff;
  width: 8rem;
  height: 8rem;
  padding: 0.5rem;
  border-radius: 100%;
  z-index: 10;
}
@media (min-width: 1281px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-num {
    width: 10rem;
    height: 10rem;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-num {
    width: 6rem;
    height: 6rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-num .flow__item-icon {
  width: 100%;
  height: 100%;
  border: 1px solid #0067b5;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-num .flow__item-icon .en {
  font-size: 2.8rem;
  color: #0067b5;
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-num .flow__item-icon .en {
    font-size: 2rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail {
  width: 100%;
}
@media (min-width: 1281px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail {
    width: 65%;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail .flow__item-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail .flow__item-title {
    font-size: 1.8rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail .flow__item-title span {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail .flow__item-title span {
    font-size: 1.5rem;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-detail .flow__item-text {
  margin-top: 2rem;
  font-size: 1.5rem;
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-img {
  width: 100%;
}
@media (min-width: 1281px) {
  #page__outpatient #sec_02 .flow__list .flow__item .flow__item-img {
    width: 35%;
  }
}
#page__outpatient #sec_02 .flow__list .flow__item .flow__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page__outpatient #sec_04 .detail__title {
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}
#page__outpatient #sec_04 .detail__title::before {
  top: 14px;
  width: 12px;
  height: 12px;
}
#page__outpatient #sec_05 .btn__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 961px) and (max-width: 1160px) {
  #page__outpatient #sec_05 .btn__wrap {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  #page__outpatient #sec_05 .btn__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top__medical {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__medical {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .top__medical {
    margin-top: 8rem;
  }
}
.top__medical .inner {
  position: relative;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.top__medical h2 {
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .top__medical h2 {
    font-size: 2.4rem;
  }
}
.top__medical .btn {
  position: absolute;
  top: 15px;
  right: 0;
}
@media (max-width: 767px) {
  .top__medical .btn {
    position: static;
    margin-top: 4rem;
    text-align: center;
  }
}
.top__medical .medical__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
  gap: 40px;
}
@media (max-width: 767px) {
  .top__medical .medical__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
    gap: 0;
  }
}
.top__medical .medical__item {
  position: relative;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .top__medical .medical__item:nth-of-type(3) .medical__icon svg {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .top__medical .medical__item:nth-of-type(4) .medical__icon svg {
    width: 43px;
    height: 43px;
  }
}
@media (max-width: 767px) {
  .top__medical .medical__item:nth-of-type(5) .medical__icon svg {
    width: 45px;
    height: 45px;
  }
}
.top__medical .medical__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 220px;
  background: #ccc;
}
@media (max-width: 767px) {
  .top__medical .medical__item::after {
    display: none;
  }
}
.top__medical .medical__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 240px;
  padding: 0 3rem 3rem 0.6rem;
  box-sizing: border-box;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .top__medical .medical__link {
    flex-direction: row;
    align-items: center;
    min-height: 100%;
    padding: 3rem 2rem 3rem 0.6rem;
  }
}
.top__medical .medical__link:hover .medical__title {
  color: #0067b5;
}
.top__medical .medical__link:hover .medical__title > .icon {
  right: -5px;
}
.top__medical .medical__link:hover .medical__title .icon .svg__arrow {
  fill: #0067b5;
}
@media (max-width: 767px) {
  .top__medical .medical__icon svg {
    width: 50px;
    height: 50px;
  }
}
.top__medical .medical__title {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  color: currentColor;
  font-weight: 400;
  color: inherit;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .top__medical .medical__title {
    width: calc(100% - 80px);
  }
}
.top__medical .medical__title .ja {
  font-size: 2rem;
  display: block;
}
.top__medical .medical__title .en {
  font-size: 1.4rem;
  display: block;
}
.top__medical .medical__title .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .top__medical .medical__title .icon svg {
    width: 20px;
    height: 20px;
  }
}
.top__medical .medical__title .icon .svg__arrow {
  fill: #333;
}

#page__medical .main__content .flex__wrap {
  align-items: center;
}
@media (max-width: 767px) {
  #page__medical .main__content .flex__wrap {
    flex-direction: column;
  }
}
#page__medical .main__content .flex__wrap .img__wrap {
  width: 36%;
}
@media (max-width: 767px) {
  #page__medical .main__content .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__medical .main__content .flex__wrap .text__wrap {
  width: 60%;
}
@media (max-width: 767px) {
  #page__medical .main__content .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
#page__medical .main__content .item__wrap {
  margin-top: 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__medical .main__content .item__wrap .table__schedule {
    overflow: scroll;
  }
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .table__schedule {
    overflow: scroll;
  }
}
#page__medical .main__content .item__wrap .table__schedule table {
  white-space: nowrap;
}
#page__medical .main__content .item__wrap .table__schedule tr:not(:first-of-type) th,
#page__medical .main__content .item__wrap .table__schedule tr:not(:first-of-type) td {
  height: 90px;
}
#page__medical .main__content .item__wrap .table__schedule th {
  padding: 1rem;
}
#page__medical .main__content .item__wrap .table__schedule td {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .table__schedule td {
    font-size: 1.4rem;
    min-width: 160px;
  }
}
#page__medical .main__content .item__wrap .table__schedule td .circle {
  font-size: 2.4rem;
}
#page__medical .main__content .item__wrap .table__large table tr > *:first-child {
  width: 100px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__medical .main__content .item__wrap .table__large table tr > *:first-child {
    min-width: 120px;
  }
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .table__large table tr > *:first-child {
    min-width: 100px;
  }
}
#page__medical .main__content .item__wrap .table__large table th:not(:first-child),
#page__medical .main__content .item__wrap .table__large table td:not(:first-child) {
  width: 130px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__medical .main__content .item__wrap .table__large table th:not(:first-child),
#page__medical .main__content .item__wrap .table__large table td:not(:first-child) {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .table__large table th:not(:first-child),
#page__medical .main__content .item__wrap .table__large table td:not(:first-child) {
    min-width: 140px;
  }
}
#page__medical .main__content .item__wrap .info__lead {
  text-align: left;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .info__lead {
    white-space: nowrap;
  }
}
#page__medical .main__content .item__wrap .bg__btn {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .bg__btn {
    margin-top: 2rem;
  }
}
#page__medical .main__content .item__wrap .bg__btn a {
  display: inline-block;
  width: 400px;
}
@media (max-width: 767px) {
  #page__medical .main__content .item__wrap .bg__btn a {
    width: 100%;
  }
}

.page__medical .sub__title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .page__medical .sub__title {
    font-size: 2rem;
  }
}
.page__medical .section__head .text__wrap {
  display: flex;
  align-items: center;
}
.page__medical .section__head .text__wrap span {
  font-size: 4rem;
  font-weight: 700;
  padding-left: 1.2rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__medical .section__head .text__wrap span {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .page__medical .section__head .text__wrap span {
    font-size: 3rem;
  }
}
.page__medical .section__head .text__wrap .icon {
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__medical .section__head .text__wrap .icon svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .page__medical .section__head .text__wrap .icon svg {
    width: 50px;
    height: 50px;
  }
}
.page__medical .section__head .img__wrap {
  margin-top: 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__medical .section__head .img__wrap {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .page__medical .section__head .img__wrap {
    margin-top: 2rem;
  }
}
.page__medical .contact__box {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .page__medical .contact__box {
    margin-top: 6rem;
  }
}
.page__medical #sec_01 {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .page__medical #sec_01 {
    padding-top: 4rem;
  }
}
.page__medical #sec_01 .text:not(:last-of-type) {
  margin-bottom: 1rem;
}
.page__medical #sec_02 .text__block:not(:first-of-type) {
  margin-top: 4rem;
}
.page__medical #sec_02 .text__block .sub__title {
  margin-bottom: 1rem;
}
.page__medical #sec_02 ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
}
.page__medical #sec_02 ul li:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .page__medical #sec_02 ul li {
    font-size: 1.5rem;
  }
}
.page__medical #sec_02 ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 3px;
  background: #0067b5;
}
.page__medical #sec_02 .text__box {
  margin-top: 4rem;
  padding: 3rem 4rem;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .page__medical #sec_02 .text__box {
    padding: 2rem 1.6rem;
  }
}
.page__medical #sec_02 .text__box .text {
  margin-top: 2rem;
}
.page__medical #sec_03 dl:not(:last-of-type) {
  margin-bottom: 2rem;
}
.page__medical #sec_03 dl dt .detail__title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .page__medical #sec_03 dl dt .detail__title {
    font-size: 1.8rem;
  }
}
.page__medical #sec_03 dl dt .detail__title::before {
  top: 14px;
}
@media (max-width: 767px) {
  .page__medical #sec_03 dl dt .detail__title::before {
    top: 12px;
  }
}
.page__medical #sec_03 dl dd .text {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .page__medical #sec_03 dl dd .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap {
    gap: 2.4rem;
  }
}
.page__medical #sec_04 .flex__wrap + .flex__wrap {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap + .flex__wrap {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
.page__medical #sec_04 .flex__wrap .img__wrap {
  width: 28%;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap {
    width: 100%;
    gap: 1.5rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap .detail__text + .detail__name {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap .detail__text + .detail__name {
    margin-top: -1.5rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap .detail__text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap .detail__text {
    font-size: 1.5rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap .detail__name {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.page__medical #sec_04 .flex__wrap .text__wrap .detail__name .main {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap .detail__name .main {
    font-size: 2.2rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap .detail__name .sub {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap .detail__name .sub {
    font-size: 1.4rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap dl {
    flex-direction: column;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap dl dt {
  width: 25%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__medical #sec_04 .flex__wrap .text__wrap dl dt {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap dl dt {
    width: 100%;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap dl dd {
  width: 70%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__medical #sec_04 .flex__wrap .text__wrap dl dd {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap dl dd {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap ul {
    padding-left: 1.6rem;
  }
}
.page__medical #sec_04 .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .page__medical #sec_04 .flex__wrap .text__wrap .text {
    margin-top: 1rem;
  }
}
.page__medical #sec_05 {
  margin-top: 12rem;
  background: #eaf4fb;
  padding: 5rem 5rem 6rem;
}
@media (max-width: 767px) {
  .page__medical #sec_05 {
    margin-top: 6rem;
    padding: 2rem;
  }
}
.page__medical #sec_05 h2 {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #ccc;
}
.page__medical #sec_05 h2::after {
  display: none;
}
.page__medical #sec_05 .btn__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .page__medical #sec_05 .btn__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

#page__medicine .bold {
  font-weight: 700;
}
@media (max-width: 767px) {
  #page__medicine .bold {
    font-size: 1.6rem;
  }
}

#page__emergency .section__head .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__emergency .section__head .text {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap {
    gap: 2.4rem;
  }
}
#page__emergency #sec_01 .flex__wrap + .flex__wrap {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap + .flex__wrap {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
#page__emergency #sec_01 .flex__wrap .img__wrap {
  width: 28%;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    gap: 1.5rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap .detail__text + .detail__name {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap .detail__text + .detail__name {
    margin-top: -1.5rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap .detail__text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap .detail__text {
    font-size: 1.5rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap .detail__name {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
#page__emergency #sec_01 .flex__wrap .text__wrap .detail__name .main {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap .detail__name .main {
    font-size: 2.2rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap .detail__name .sub {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap .detail__name .sub {
    font-size: 1.4rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap dl {
    flex-direction: column;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap dl dt {
  width: 25%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap dl dt {
    width: 30%;
  }
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap dl dt {
    width: 100%;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap dl dd {
  width: 70%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap dl dd {
    width: 65%;
  }
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap dl dd {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap ul {
    padding-left: 1.6rem;
  }
}
#page__emergency #sec_01 .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_01 .flex__wrap .text__wrap .text {
    margin-top: 1rem;
  }
}
#page__emergency #sec_02 {
  margin-top: 12rem;
  background: #eaf4fb;
  padding: 5rem 5rem 6rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_02 {
    margin-top: 6rem;
    padding: 2rem;
  }
}
#page__emergency #sec_02 h2 {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #ccc;
}
#page__emergency #sec_02 h2::after {
  display: none;
}
#page__emergency #sec_02 .btn__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  #page__emergency #sec_02 .btn__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #page__neurosurgery .icon svg,
#page__dermatology .icon svg {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 767px) {
  #page__neurosurgery .icon svg,
#page__dermatology .icon svg {
    width: 45px;
    height: 45px;
  }
}

#page__orthopedics #sec_03 .item__wrap:last-of-type {
  margin-top: 4rem;
}

#page__otolaryngology #sec_04 h4 {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  #page__otolaryngology #sec_04 h4 {
    font-size: 1.8rem;
  }
}

#page__ambulatory #sec_01 .text:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap {
    gap: 2.4rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap + .flex__wrap {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap + .flex__wrap {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .img__wrap {
  width: 28%;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap {
    width: 100%;
    gap: 1.5rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__text + .detail__name {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__text + .detail__name {
    margin-top: -1.5rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__text {
    font-size: 1.5rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__name {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__name .main {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__name .main {
    font-size: 2.2rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__name .sub {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap .detail__name .sub {
    font-size: 1.4rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap dl {
    flex-direction: column;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap dl dt {
  width: 25%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap dl dt {
    width: 30%;
  }
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap dl dt {
    width: 100%;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap dl dd {
  width: 70%;
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap dl dd {
    width: 65%;
  }
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap dl dd {
    width: 100%;
    margin-top: 0.5rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap ul {
  margin: 0;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap ul {
    padding-left: 1.6rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap ul li {
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap ul li {
    font-size: 1.5rem;
  }
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap ul li::before {
  display: none;
}
#page__ambulatory #sec_02 .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_02 .flex__wrap .text__wrap .text {
    margin-top: 1rem;
  }
}
#page__ambulatory #sec_03 {
  margin-top: 12rem;
  background: #eaf4fb;
  padding: 5rem 5rem 6rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_03 {
    margin-top: 6rem;
    padding: 2rem;
  }
}
#page__ambulatory #sec_03 h2 {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #ccc;
}
#page__ambulatory #sec_03 h2::after {
  display: none;
}
#page__ambulatory #sec_03 .btn__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  #page__ambulatory #sec_03 .btn__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  #page__rehabilitation .section__head .text__wrap span {
    letter-spacing: -0.06em;
  }
}
#page__rehabilitation #sec_02 .text__box {
  border: none;
  background: #eff4f9;
}
#page__rehabilitation #sec_02 .text__box .text:nth-of-type(1) {
  margin: 0 !important;
}
#page__rehabilitation #sec_03 ul {
  margin-top: 2rem;
}
#page__rehabilitation #sec_03 ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_03 ul li {
    font-size: 1.5rem;
  }
}
#page__rehabilitation #sec_03 ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 3px;
  background: #0067b5;
}
#page__rehabilitation #sec_04 .item__wrap:last-of-type {
  margin-top: 4rem;
}
#page__rehabilitation #sec_04 dl:not(:last-of-type) {
  margin-bottom: 2rem;
}
#page__rehabilitation #sec_04 dl dt .detail__title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_04 dl dt .detail__title {
    font-size: 1.8rem;
  }
}
#page__rehabilitation #sec_04 dl dt .detail__title::before {
  top: 14px;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_04 dl dt .detail__title::before {
    top: 12px;
  }
}
#page__rehabilitation #sec_04 dl dd {
  margin-bottom: 0.5rem;
}
#page__rehabilitation #sec_04 dl dd .text {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_04 dl dd .text {
    font-size: 1.6rem;
  }
}
#page__rehabilitation #sec_05 {
  margin-top: 12rem;
  background: #eaf4fb;
  padding: 5rem 5rem 6rem;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_05 {
    margin-top: 6rem;
    padding: 2rem;
  }
}
#page__rehabilitation #sec_05 h2 {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #ccc;
}
#page__rehabilitation #sec_05 h2::after {
  display: none;
}
#page__rehabilitation #sec_05 .btn__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  #page__rehabilitation #sec_05 .btn__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

#page__equipment #sec_01 .text {
  margin-top: 2rem;
}
#page__equipment .flex__wrap {
  align-items: center;
}
#page__equipment .flex__wrap .img__wrap {
  width: 45%;
}
@media (max-width: 767px) {
  #page__equipment .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__equipment .flex__wrap .text__wrap {
  width: 52%;
}
@media (max-width: 767px) {
  #page__equipment .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}

.top__guide {
  background: #eaf4fb;
  margin-top: 10rem;
  padding: 12rem 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide {
    padding: 8rem 4rem 10rem;
  }
}
@media (max-width: 767px) {
  .top__guide {
    margin-top: 8rem;
    padding: 4rem 1.5rem 6rem;
  }
}
.top__guide .guide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8vw;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__top {
    flex-direction: column;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__top {
    flex-direction: column;
    padding-right: 0;
  }
}
.top__guide .guide__top .img__wrap {
  width: 53%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__top .img__wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__top .img__wrap {
    width: 100%;
  }
}
.top__guide .guide__top .text__wrap {
  width: 43%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__top .text__wrap {
    width: 100%;
    margin-top: 2.4rem;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__top .text__wrap {
    width: 100%;
    margin-top: 2.4rem;
  }
}
.top__guide .guide__top .text__wrap h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__top .text__wrap h3 {
    margin-bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__top .text__wrap h3 {
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
  }
}
.top__guide .guide__top .text__wrap p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .top__guide .guide__top .text__wrap p {
    font-size: 1.5rem;
  }
}
.top__guide .guide__bottom {
  max-width: 1320px;
  width: 90%;
  margin: 10rem auto 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__bottom {
    width: 100%;
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__bottom {
    width: 100%;
    margin-top: 4rem;
  }
}
.top__guide .guide__bottom .guide__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 1281px) {
  .top__guide .guide__bottom .guide__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.top__guide .guide__bottom .guide__list .guide__item {
  display: flex;
  background: #fff;
}
@media (min-width: 1281px) {
  .top__guide .guide__bottom .guide__list .guide__item {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item {
    flex-direction: column;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .img__wrap {
  width: 48%;
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item .img__wrap {
    width: 100%;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .img__wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .top__guide .guide__bottom .guide__list .guide__item .img__wrap img {
    height: 360px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__bottom .guide__list .guide__item .img__wrap img {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item .img__wrap img {
    height: 240px;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap {
  width: 54%;
  padding: 6rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__guide .guide__bottom .guide__list .guide__item .text__wrap {
    padding: 6rem 2.4rem 4rem;
  }
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item .text__wrap {
    width: 100%;
    padding: 2.4rem 2.4rem 3rem;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap .text__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item .text__wrap .text__box {
    gap: 10px;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap .text__box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #015aaa;
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap .text__box p {
  font-size: 1.5rem;
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap .btn {
  text-align: right;
}
@media (max-width: 767px) {
  .top__guide .guide__bottom .guide__list .guide__item .text__wrap .btn {
    margin-top: 2rem;
  }
}
.top__guide .guide__bottom .guide__list .guide__item .text__wrap .btn a {
  font-weight: 700;
}

#page__hospitalization #sec_01:first-child .flex__wrap {
  align-items: center;
}
#page__hospitalization #sec_01:first-child .flex__wrap .img__wrap {
  width: 38%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_01:first-child .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__hospitalization #sec_01:first-child .flex__wrap .text__wrap {
  width: 87%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_01:first-child .flex__wrap .text__wrap {
    width: 100%;
  }
}
#page__hospitalization #sec_03 .flex__wrap {
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .flex__wrap {
    flex-direction: column;
  }
}
#page__hospitalization #sec_03 .flex__wrap .img__wrap {
  width: 48%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__hospitalization #sec_03 .flex__wrap .text__wrap {
  width: 46%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .flex__wrap .text__wrap .accent__title {
    letter-spacing: -0.01px;
  }
}
#page__hospitalization #sec_03 .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
#page__hospitalization #sec_03 .flex__wrap .text__wrap .bg__btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .flex__wrap .text__wrap .bg__btn {
    margin-top: 3rem;
  }
}
#page__hospitalization #sec_03 .text__box {
  margin-top: 6rem;
  padding: 3rem;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_03 .text__box {
    margin-top: 3rem;
    padding: 2rem;
  }
}
#page__hospitalization #sec_03 .text__box .text {
  margin-bottom: 1.2rem;
}
#page__hospitalization #sec_04 .text__block {
  margin-top: 4rem;
}
#page__hospitalization #sec_04 .text__block .detail__title {
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_04 .text__block .detail__title {
    font-size: 1.8rem;
  }
}
#page__hospitalization #sec_04 .text__block .detail__title::before {
  top: 14px;
  width: 12px;
  height: 12px;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_04 .text__block .detail__title::before {
    top: 10px;
    width: 12px;
    height: 12px;
  }
}
#page__hospitalization #sec_05 .table {
  margin-top: 4rem;
}
#page__hospitalization #sec_05 .table table {
  width: 60%;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .table table {
    width: 100%;
  }
}
#page__hospitalization #sec_05 .table th {
  text-align: center;
  width: 40%;
}
#page__hospitalization #sec_05 .table td {
  width: 60%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .table td {
    text-align: center;
  }
}
#page__hospitalization #sec_05 .wrap {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap {
    margin-top: 6rem;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap {
  margin-top: 4rem;
  display: flex;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap {
    flex-direction: column;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap:nth-of-type(1) {
  margin-top: 3rem;
}
#page__hospitalization #sec_05 .wrap .item__wrap .img__wrap {
  width: 60%;
  margin-top: 1rem;
}
@media (min-width: 1281px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .img__wrap {
    width: 45%;
  }
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .img__wrap {
    width: 100%;
    margin-top: 0;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .img__wrap .detail__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0067b5;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .img__wrap .detail__title {
    font-size: 2rem;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .img__wrap .detail__title::before {
  top: 18px;
  width: 12px;
  height: 12px;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .img__wrap .detail__title::before {
    top: 14px;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .text__wrap {
  margin: 6rem 0 0 6rem;
  width: 45%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .text__wrap {
    width: 100%;
    margin: 1.6rem 2rem 0;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .text__wrap .text {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .text__wrap .text {
    font-size: 1.8rem;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul {
    row-gap: 4px;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  white-space: nowrap;
  flex: 1 1 45%;
}
@media (min-width: 1281px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul li {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  #page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul li {
    font-size: 1.5rem;
  }
}
#page__hospitalization #sec_05 .wrap .item__wrap .text__wrap ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#page__hospitalization #sec_06 .red {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .red {
    font-size: 1.8rem;
  }
}
#page__hospitalization #sec_06 .text__box {
  background: #eff4f9;
  margin-top: 3rem;
  padding: 4rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .text__box {
    margin-top: 2rem;
    padding: 2rem;
  }
}
#page__hospitalization #sec_06 .text__box .text__wrap:not(:first-child) {
  margin-top: 2.4rem;
}
#page__hospitalization #sec_06 .text__box .text__wrap:last-of-type {
  margin-top: 4rem;
}
#page__hospitalization #sec_06 .text__box .text__wrap span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .text__box .text__wrap span {
    font-size: 1.8rem;
  }
}
#page__hospitalization #sec_06 .text__box .text__wrap p {
  margin-bottom: 0.5rem;
}
#page__hospitalization #sec_06 .text__box .text__wrap ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .text__box .text__wrap ul li {
    font-size: 1.5rem;
  }
}
#page__hospitalization #sec_06 .text__box .text__wrap ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0067b5;
}
#page__hospitalization #sec_06 .item__wrap {
  position: relative;
  width: 100%;
  margin-top: 8rem;
  padding: 4rem 6rem;
  border: 1px solid #0067b5;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__hospitalization #sec_06 .item__wrap {
    padding: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .item__wrap {
    margin-top: 6rem;
    padding: 4rem 1.6rem;
  }
}
#page__hospitalization #sec_06 .item__wrap span {
  position: absolute;
  top: -26px;
  background: #fff;
  padding: 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .item__wrap span {
    top: -22px;
    font-size: 2.4rem;
  }
}
#page__hospitalization #sec_06 .item__wrap .flex__wrap {
  align-items: center;
}
#page__hospitalization #sec_06 .item__wrap .flex__wrap .text__wrap {
  width: 100%;
}
@media (max-width: 767px) {
  #page__hospitalization #sec_06 .item__wrap .flex__wrap .text__wrap {
    width: 100%;
  }
}

#page__inspect .kv .text__wrap {
  left: 7%;
}
#page__inspect .main__content > .item__wrap:not(:first-of-type) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  #page__inspect .main__content > .item__wrap:not(:first-of-type) {
    margin-top: 4rem;
  }
}
#page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap {
  align-items: center;
}
#page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .img__wrap {
  width: 40%;
}
@media (max-width: 767px) {
  #page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .text__wrap {
  width: 55%;
}
@media (max-width: 767px) {
  #page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
#page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__inspect .main__content > .item__wrap:nth-of-type(1) .flex__wrap .text__wrap .text {
    margin-top: 1rem;
  }
}
#page__inspect .detail__title {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  #page__inspect .detail__title {
    font-size: 1.8rem;
  }
}
#page__inspect .detail__title::before {
  top: 15px;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box {
  background: #eff4f9;
  padding: 3rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box {
    margin-top: 1.6rem;
    padding: 2rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box ul li {
  position: relative;
  width: 25%;
  font-size: 1.6rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box ul li {
    width: 50%;
    font-size: 1.5rem;
    padding-left: 1.6rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(2) .text__box ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block {
  margin-bottom: 2.4rem;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block .detail__title::before {
  top: 14px;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block .detail__title::before {
    top: 12px;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul {
  background: #eff4f9;
  margin: 1rem 0;
  padding: 3rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul {
    padding: 2rem 1.6rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul li {
  font-size: 1.6rem;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul li:not(:first-child) {
  margin-top: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul li {
    letter-spacing: -0.01px;
  }
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(2) ul li {
    font-size: 1.5rem;
    letter-spacing: -0.025px;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(3) .text {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(3) .text {
    font-size: 1.4rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) {
  margin: 4rem 0 0;
  padding: 3rem;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) {
    margin-top: 3rem;
    padding: 2rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) ul {
  margin-top: 2rem;
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) ul li {
    font-size: 1.5rem;
  }
}
#page__inspect #sec_01 .item__wrap:nth-of-type(3) .text__block:nth-of-type(4) ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0067b5;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box {
  background: #eff4f9;
  padding: 3rem;
  margin: 2.4rem 0;
}
@media (max-width: 767px) {
  #page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box {
    padding: 2rem 1.6rem;
    margin: 1.6rem 0;
  }
}
#page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box ul li {
  position: relative;
  width: 25%;
  font-size: 1.6rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box ul li {
    width: 50%;
    font-size: 1.5rem;
    padding-left: 1.6rem;
  }
}
#page__inspect #sec_02 .item__wrap:nth-of-type(2) .text__box ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(3) .text__box {
  background: #eff4f9;
  padding: 3rem;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(3) .text__box ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(3) .text__box ul li {
  position: relative;
  width: 25%;
  font-size: 1.6rem;
  padding-left: 2rem;
}
#page__inspect #sec_02 .item__wrap:nth-of-type(3) .text__box ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#page__inspect #sec_03 .main__title {
  white-space: nowrap;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .table {
  width: 80%;
  margin: 2.4rem 0;
}
@media (max-width: 767px) {
  #page__inspect #sec_03 .item__wrap:nth-of-type(2) .table {
    width: 100%;
  }
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .table th {
  width: 24%;
  text-align: center;
}
@media (max-width: 767px) {
  #page__inspect #sec_03 .item__wrap:nth-of-type(2) .table th {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .table td {
  width: 76%;
}
@media (max-width: 767px) {
  #page__inspect #sec_03 .item__wrap:nth-of-type(2) .table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .text__box {
  margin-top: 4rem;
  padding: 3rem;
  border: 1px solid #ccc;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .text__box ul {
  margin-top: 2rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .text__box ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .text__box ul li:nth-of-type(1) {
  margin-bottom: 0.6rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(2) .text__box ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0067b5;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box:not(:first-child) {
  margin-top: 2.4rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box:last-of-type {
  margin-bottom: 2rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box .detail__title {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box .detail__title {
    font-size: 2rem;
  }
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box .text__wrap {
  padding-left: 1.6rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box .bold {
  font-weight: 700;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(3) .text__box .red {
  margin-top: 1rem;
}
#page__inspect #sec_03 .item__wrap:nth-of-type(4) .img__box {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  #page__inspect #sec_03 .item__wrap:nth-of-type(4) .img__box {
    flex-direction: column;
  }
}

.top__department {
  margin-top: 10rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__department {
    margin-top: 8rem;
  }
}
@media (max-width: 767px) {
  .top__department {
    margin-top: 8rem;
  }
}
.top__department .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.top__department h2 {
  font-size: 3.2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .top__department h2 {
    font-size: 2.4rem;
  }
}
.top__department .btn {
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .top__department .btn {
    margin-top: 4rem;
  }
}
.top__department .department__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__department .department__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .top__department .department__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .top__department .department__item {
    width: 100%;
  }
}
.top__department .department__item a {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.top__department .department__item a:hover {
  color: #0067b5;
  transform: translate(0px, -4px);
}
.top__department .department__item .img__wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}
.top__department .department__item .text__wrap {
  padding: 1.6rem;
}
.top__department .department__item .text__wrap h3 {
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .top__department .department__item .text__wrap h3 {
    font-size: 1.6rem;
  }
}

.page__department .main__wrap .main__content {
  margin-top: 0;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .page__department .main__wrap .main__content {
    padding-top: 6rem;
  }
}
.page__department .main__wrap .main__content:nth-of-type(1) {
  margin-top: -4rem;
  padding-top: 4rem;
}
.page__department .flex__wrap {
  display: flex;
  align-items: center;
}
.page__department .flex__wrap .img__wrap {
  width: 42%;
}
@media (max-width: 767px) {
  .page__department .flex__wrap .img__wrap {
    width: 100%;
  }
}
.page__department .flex__wrap .text__wrap {
  width: 54%;
}
@media (max-width: 767px) {
  .page__department .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__department .flex__wrap .text__wrap h3 {
  font-size: 2.4rem;
  color: #015aaa;
}
@media (max-width: 767px) {
  .page__department .flex__wrap .text__wrap h3 {
    font-size: 2rem;
  }
}
.page__department .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .page__department .flex__wrap .text__wrap .text {
    margin-top: 0.4rem;
  }
}
.page__department .flex__wrap .text__wrap .btn {
  text-align: right;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .page__department .flex__wrap .text__wrap .btn {
    margin-top: 2rem;
  }
}
.page__department .recruit__content {
  background: #eaf4fb;
}
.page__department .recruit__content .img__wrap {
  width: 46%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__department .recruit__content .img__wrap {
    width: 55% !important;
  }
}
@media (max-width: 767px) {
  .page__department .recruit__content .img__wrap {
    width: 100%;
  }
}
.page__department .recruit__content .text__wrap {
  margin-top: 0 !important;
  padding: 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__department .recruit__content .text__wrap {
    width: 45% !important;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .page__department .recruit__content .text__wrap {
    padding: 3rem 2rem;
  }
}
.page__department .recruit__content .text__wrap .btn .arrow {
  background: #fff;
  width: 50px;
  height: 50px;
}

.page__nurse #sec_01 .flex__wrap {
  flex-direction: row-reverse;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .page__nurse #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
.page__nurse #sec_01 .flex__wrap .img__wrap {
  width: 33%;
}
@media (max-width: 767px) {
  .page__nurse #sec_01 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.page__nurse #sec_01 .flex__wrap .text__wrap {
  width: 64%;
}
@media (max-width: 767px) {
  .page__nurse #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__nurse #sec_01 .flex__wrap .text__wrap .text:not(:last-of-type) {
  margin-bottom: 1rem;
}
.page__nurse #sec_01 .name {
  margin-top: 2rem !important;
  text-align: right;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page__nurse #sec_01 .name {
    margin-top: 1rem !important;
  }
}
.page__nurse #sec_02 .text__block h3 {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_02 .text__block h3 {
    margin-bottom: 1rem;
  }
}
.page__nurse #sec_02 .text__block:last-child {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_02 .text__block:last-child {
    margin-top: 3rem;
  }
}
.page__nurse #sec_02 .text__block:last-child ul {
  counter-set: list-num 0;
}
.page__nurse #sec_02 .text__block:last-child ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 3.4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_02 .text__block:last-child ul li {
    font-size: 1.5rem;
    padding-left: 3.2rem;
  }
}
.page__nurse #sec_02 .text__block:last-child ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.page__nurse #sec_02 .text__block:last-child ul li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  color: #0067b5;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .page__nurse #sec_02 .text__block:last-child ul li::before {
    font-size: 1.7rem;
  }
}
.page__nurse #sec_03 .text__block:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(2) ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(2) ul li {
    font-size: 1.5rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(2) ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0067b5;
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .accent__title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(3) .accent__title {
    font-size: 1.8rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:not(:first-of-type) {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:not(:first-of-type) {
    margin-top: 2rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul {
  margin-top: 1rem;
  counter-set: list-num 0;
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 3.4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul li {
    font-size: 1.5rem;
    padding-left: 3.2rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  color: #0067b5;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(2) ul li::before {
    font-size: 1.7rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(3) ul {
  margin-top: 1rem;
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(3) ul li {
  position: relative;
  font-size: 1.6rem;
  padding-left: 1.6rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(3) ul li {
    font-size: 1.5rem;
  }
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(3) ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.page__nurse #sec_03 .text__block:nth-of-type(3) .item__wrap:nth-of-type(3) ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 3px;
  background: #0067b5;
}
.page__nurse #sec_04 .flex__wrap {
  align-items: center;
}
@media (max-width: 767px) {
  .page__nurse #sec_04 .flex__wrap {
    flex-direction: column;
  }
}
.page__nurse #sec_04 .flex__wrap .img__wrap {
  width: 48%;
}
@media (max-width: 767px) {
  .page__nurse #sec_04 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__nurse #sec_04 .flex__wrap .text__wrap {
  width: 47%;
}
@media (max-width: 767px) {
  .page__nurse #sec_04 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__nurse #sec_04 .flex__wrap .text__wrap .accent__title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .page__nurse #sec_04 .flex__wrap .text__wrap .accent__title {
    font-size: 2rem;
  }
}
.page__nurse #sec_04 .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}

.page__rehabilitation #sec_01 .flex__wrap {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
.page__rehabilitation #sec_01 .flex__wrap .img__wrap {
  width: 33%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_01 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.page__rehabilitation #sec_01 .flex__wrap .text__wrap {
  width: 64%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__rehabilitation #sec_01 .flex__wrap .text__wrap .text:not(:last-of-type) {
  margin-bottom: 1rem;
}
.page__rehabilitation #sec_01 .name {
  margin-top: 2rem !important;
  text-align: right;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_01 .name {
    margin-top: 1rem !important;
  }
}
.page__rehabilitation #sec_02 .flex__wrap {
  align-items: center;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_02 .flex__wrap {
    flex-direction: column;
  }
}
.page__rehabilitation #sec_02 .flex__wrap .img__wrap {
  width: 48%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_02 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__rehabilitation #sec_02 .flex__wrap .text__wrap {
  width: 49%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_02 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__rehabilitation #sec_03 .text__block:not(:nth-of-type(1)) {
  margin-top: 4rem;
}
.page__rehabilitation #sec_03 .text__block h3 {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_03 .text__block h3 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_04 .main__title {
    letter-spacing: -0.045em;
  }
}
.page__rehabilitation #sec_04 .flex__wrap {
  margin: 4rem 0;
  align-items: center;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_04 .flex__wrap {
    margin-top: 4rem;
    flex-direction: column;
  }
}
.page__rehabilitation #sec_04 .flex__wrap .img__wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_04 .flex__wrap .img__wrap {
    width: 100%;
  }
}
.page__rehabilitation #sec_04 .flex__wrap .text__wrap {
  width: 47%;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_04 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__rehabilitation #sec_04 .bg__btn {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .page__rehabilitation #sec_04 .bg__btn {
    margin-top: 2rem;
  }
}

.page__pharmaceutical #sec_01 .flex__wrap {
  align-items: center;
}
@media (max-width: 767px) {
  .page__pharmaceutical #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
.page__pharmaceutical #sec_01 .flex__wrap .img__wrap {
  width: 45%;
}
@media (max-width: 767px) {
  .page__pharmaceutical #sec_01 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__pharmaceutical #sec_01 .flex__wrap .text__wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .page__pharmaceutical #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__pharmaceutical #sec_01 .flex__wrap:nth-of-type(2) {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .page__pharmaceutical #sec_01 .flex__wrap:nth-of-type(2) {
    margin-top: 4rem;
  }
}
.page__pharmaceutical #sec_01 .flex__wrap:nth-of-type(2) .text__wrap {
  width: 100%;
}

.page__laboratory #sec_01 .flex__wrap {
  flex-direction: column;
}
.page__laboratory #sec_01 .flex__wrap .img__wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .page__laboratory #sec_01 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__laboratory #sec_01 .flex__wrap .text__wrap {
  margin-top: 2rem;
  width: 100%;
}
.page__laboratory #sec_02 ul {
  display: flex;
  flex-wrap: wrap;
  background: #f5f8fa;
  padding: 3rem;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .page__laboratory #sec_02 ul {
    padding: 2rem;
  }
}
.page__laboratory #sec_02 ul li {
  position: relative;
  width: 25%;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .page__laboratory #sec_02 ul li {
    width: 50%;
    font-size: 1.5rem;
  }
}
.page__laboratory #sec_03 .flex__wrap {
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .page__laboratory #sec_03 .flex__wrap {
    gap: 20px;
  }
}
.page__laboratory #sec_03 .flex__wrap .item__wrap {
  width: 48%;
}
@media (max-width: 767px) {
  .page__laboratory #sec_03 .flex__wrap .item__wrap {
    width: 100%;
  }
}
.page__laboratory #sec_03 .flex__wrap .item__wrap .img__wrap {
  width: 100%;
}

.page__nutrition #sec_01 .flex__wrap {
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__nutrition #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .page__nutrition #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
.page__nutrition #sec_01 .flex__wrap .img__wrap {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__nutrition #sec_01 .flex__wrap .img__wrap {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .page__nutrition #sec_01 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__nutrition #sec_01 .flex__wrap .text__wrap {
  width: 52%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__nutrition #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .page__nutrition #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__nutrition #sec_02 .text__block {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .page__nutrition #sec_02 .text__block .table th,
.page__nutrition #sec_02 .text__block .table td {
    display: block;
    width: 100%;
  }
}

.page__radiology #sec_01 .flex__wrap,
.page__cooperation #sec_01 .flex__wrap {
  align-items: center;
}
@media (max-width: 767px) {
  .page__radiology #sec_01 .flex__wrap,
.page__cooperation #sec_01 .flex__wrap {
    flex-direction: column;
  }
}
.page__radiology #sec_01 .flex__wrap .img__wrap,
.page__cooperation #sec_01 .flex__wrap .img__wrap {
  width: 45%;
}
@media (max-width: 767px) {
  .page__radiology #sec_01 .flex__wrap .img__wrap,
.page__cooperation #sec_01 .flex__wrap .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.page__radiology #sec_01 .flex__wrap .text__wrap,
.page__cooperation #sec_01 .flex__wrap .text__wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .page__radiology #sec_01 .flex__wrap .text__wrap,
.page__cooperation #sec_01 .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
.page__radiology #sec_01 .flex__wrap:nth-of-type(2),
.page__cooperation #sec_01 .flex__wrap:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .page__radiology #sec_01 .flex__wrap:nth-of-type(2),
.page__cooperation #sec_01 .flex__wrap:nth-of-type(2) {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.page__office .flex__wrap {
  flex-direction: column;
}
.page__office .flex__wrap .img__wrap {
  width: 100%;
}
@media (min-width: 1281px) {
  .page__office .flex__wrap .img__wrap {
    width: 60%;
  }
}
.page__office .flex__wrap .text__wrap {
  width: 100%;
  margin-top: 2rem;
}

.top__recruit {
  margin-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__recruit {
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .top__recruit {
    margin-top: 8rem;
    padding-bottom: 6rem;
  }
}
.top__recruit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #eff4f9;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__recruit::before {
    height: 60%;
  }
}
.top__recruit .inner {
  background: url(../img/recruit/recruit_img04.webp) no-repeat center -40px/cover;
  max-width: 960px;
  width: 92%;
  height: 480px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .top__recruit .inner {
    height: 45vw;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__recruit .inner {
    height: 53vw;
  }
}
@media (max-width: 767px) {
  .top__recruit .inner {
    background: url(../img/recruit/recruit_img04.webp) no-repeat -170px center/cover;
    height: 400px;
  }
}
.top__recruit .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.top__recruit .text__wrap {
  position: absolute;
  top: 10rem;
  left: 10rem;
  width: 360px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__recruit .text__wrap {
    top: 7rem;
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .top__recruit .text__wrap {
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
  }
}
.top__recruit .text__wrap h3 {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .top__recruit .text__wrap h3 {
    font-size: 2.8rem;
  }
}
.top__recruit .text__wrap p {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.top__recruit .text__wrap .bg__btn {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .top__recruit .text__wrap .bg__btn {
    width: 100%;
  }
}

#page__recruit .recruit__btn-sec {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
}
#page__recruit .recruit__btn-sec .recruit__btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  #page__recruit .recruit__btn-sec .recruit__btn-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#page__recruit .recruit__btn-sec .recruit__btn-list li {
  width: 100%;
}
#page__recruit .recruit__btn-sec .recruit__btn-list li a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.6rem 0;
  border-radius: 50px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  #page__recruit .recruit__btn-sec .recruit__btn-list li a {
    font-size: 1.5rem;
    padding: 1.2rem 0;
  }
}
#page__recruit .recruit__btn-sec .recruit__btn-list li a:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  #page__recruit .recruit__btn-sec .recruit__btn-list li a span {
    font-size: 1.25rem;
  }
}
#page__recruit .recruit__btn-sec .recruit__btn-list li a .icon {
  line-height: 1;
}
#page__recruit .recruit__head {
  max-width: 1080px;
  width: 90%;
  margin: 10rem auto 0;
}
@media (max-width: 767px) {
  #page__recruit .recruit__head {
    margin-top: 6rem;
    width: 92%;
  }
}
#page__recruit .recruit__head .flex__wrap {
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__recruit .recruit__head .flex__wrap {
    flex-direction: column;
  }
}
#page__recruit .recruit__head .flex__wrap .img__wrap {
  width: 45%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__recruit .recruit__head .flex__wrap .img__wrap {
    width: 80%;
  }
}
@media (max-width: 767px) {
  #page__recruit .recruit__head .flex__wrap .img__wrap {
    width: 100%;
  }
}
#page__recruit .recruit__head .flex__wrap .text__wrap {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__recruit .recruit__head .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  #page__recruit .recruit__head .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
#page__recruit .recruit__head .flex__wrap .text__wrap .accent__title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  #page__recruit .recruit__head .flex__wrap .text__wrap .accent__title {
    font-size: 2rem;
  }
}
#page__recruit .recruit__head .flex__wrap .text__wrap .text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  #page__recruit .recruit__head .flex__wrap .text__wrap .text {
    margin-top: 1rem;
  }
}
#page__recruit .recruit__bottom {
  max-width: 1000px;
  width: 90%;
  margin: 8rem auto 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__recruit .recruit__bottom {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom {
    margin-top: 0;
    width: 92%;
  }
}
#page__recruit .recruit__bottom .recruit__item {
  padding-top: 6rem;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body {
  padding: 6rem;
  border: 1px solid #ccc;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body {
    padding: 2rem 1.5rem;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .flex__wrap {
  align-items: center;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .flex__wrap .text__wrap {
  width: 100%;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 1.6rem;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail {
  background: #eff4f9;
  padding: 4rem;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail {
    padding: 2rem 1.5rem;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap {
  margin-bottom: 4rem;
  display: none;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table {
  width: 100%;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table th,
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table th {
  text-align: center;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table th {
    text-align: left;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .table td {
  background: #fff;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .text {
  text-align: center;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .bg__btn {
  text-align: center;
  margin-top: 4rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .bg__btn {
    padding-bottom: 1rem;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .bg__btn a {
  display: inline-block;
  width: 440px;
  background: #ffb760;
  color: #fff;
  border-radius: 50px;
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__detail-wrap .bg__btn a {
    width: 100%;
    padding: 2rem 0;
    font-size: 1.5rem;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap {
  text-align: center;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn {
  position: relative;
  display: inline-block;
  max-width: 320px;
  width: 100%;
  background: #0067b5;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn::before {
  content: "募集要項を見る";
}
@media (max-width: 767px) {
  #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn {
    font-size: 1.5rem;
    width: 90%;
  }
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn.is-active::before {
  content: "閉じる";
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn.is-active .recruit__btn-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  -ms-transform: translate(-50%, -50%) rotate(0deg);
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn .recruit__btn-toggle {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn .recruit__btn-toggle::before, #page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn .recruit__btn-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.2s;
}
#page__recruit .recruit__bottom .recruit__item .recruit__item-body .recruit__item-detail .recruit__btn-wrap .recruit__btn .recruit__btn-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
}

#recruit__form-sec {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  #recruit__form-sec {
    margin-top: 6rem;
  }
}
#recruit__form-sec .recruit__form-top .title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-top .title {
    font-size: 2.4rem;
  }
}
#recruit__form-sec .recruit__form-top .text {
  text-align: center;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-top .text {
    text-align: left;
    padding: 0 1.5rem;
  }
}
#recruit__form-sec .recruit__form-body {
  max-width: 1080px;
  width: 100%;
  margin: 4rem auto 0;
  padding: 0 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #recruit__form-sec .recruit__form-body {
    margin-top: 2rem;
    padding: 0;
  }
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body {
    margin-top: 2rem;
    padding: 0;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form {
  padding: 6rem;
  background: #eff4f9;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #recruit__form-sec .recruit__form-body .recruit__form {
    padding: 6rem 3rem;
  }
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form {
    padding: 4rem 2rem 6rem;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .red {
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 1.6rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list input,
#recruit__form-sec .recruit__form-body .recruit__form .form__list select,
#recruit__form-sec .recruit__form-body .recruit__form .form__list textarea {
  font-family: inherit;
  color: inherit;
  vertical-align: top;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  width: 100%;
  padding: 0 2rem;
  height: 60px;
  font-size: 1.5rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list textarea {
  resize: vertical;
  min-height: 240px;
  padding: 2rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item {
    flex-direction: column;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item:first-of-type {
  padding: 0 0 2.5rem 0;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__label {
  width: 180px;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__label {
    width: 100%;
    font-size: 1.5rem;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__input {
  width: calc(100% - 260px);
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__input {
    width: 100%;
    margin-top: 1.2rem;
    font-size: 1.5rem;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .small {
  font-size: 1.3rem;
  margin-top: 0.4rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__select {
  position: relative;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item .form__select::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: url(../img/select_arrow.svg) no-repeat center center/contain;
  pointer-events: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__input {
  display: flex;
  align-items: center;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__field {
  width: 30%;
  display: flex;
  align-items: center;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__field span {
  white-space: nowrap;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__field span:nth-of-type(1) {
  padding-right: 0.8rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__field span:nth-of-type(2) {
  padding-left: 0.8rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__select {
  width: 20%;
  margin-left: 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__select span {
  padding-left: 0.8rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__select-birth .form__select::after {
  right: 30px;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio [type=radio] {
  display: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio label {
  margin-right: 4rem;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio label {
    margin-right: 2rem;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio .wpcf7-list-item {
  margin: 0;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio span.wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: #fff;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #0067b5;
  border-radius: 50%;
  display: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio [type=radio]:checked + span::before {
  border-color: #0067b5;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__list .form__item-radio [type=radio]:checked + span::after {
  display: block;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__item-check {
    flex-direction: column;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check [type=checkbox] {
  display: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check [type=checkbox]:checked + span::before {
  background: #0067b5;
  border: 1px solid #0067b5;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check [type=checkbox]:checked + span::after {
  display: block;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-title {
  width: 210px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-title {
    width: 100%;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body {
  width: calc(100% - 260px);
}
@media (max-width: 767px) {
  #recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body {
    width: 100%;
    margin-top: 1rem;
  }
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body p {
  font-size: 1.5rem;
  line-height: 1.6;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body p a {
  text-decoration: underline;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox {
  margin-top: 3rem;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox [type=checkbox] {
  display: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox span.wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 4px;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/checkbox.svg) no-repeat center center/contain;
  width: 25px;
  height: 25px;
  display: none;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox [type=checkbox]:checked + span::before {
  background: #0067b5;
  border: 1px solid #0067b5;
}
#recruit__form-sec .recruit__form-body .recruit__form .form__item-check .form__check-body .form__checkbox [type=checkbox]:checked + span::after {
  display: block;
}

.button__wrap {
  margin-top: 6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .button__wrap {
    margin-top: 4rem;
  }
}
.button__wrap .button {
  position: relative;
  display: inline-block;
}
.button__wrap .button:hover {
  color: #0067b5;
}
.button__wrap .button:hover::before {
  transform: translateY(-50%) translateX(-35%);
}
.button__wrap .button:hover::after {
  transform: translateY(-50%) translateX(0);
}
.button__wrap .button::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #0067b5;
  border-radius: 50%;
  transition: all 0.3s ease-out;
}
.button__wrap .button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/arrow-right.svg) no-repeat center/contain;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.3s ease-out;
}
.button__wrap .button [type=submit] {
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: none;
  color: inherit;
  font-family: inherit;
  border: none;
  font-size: inherit;
  display: inline-block;
  width: 360px;
  font-size: 1.6rem;
  font-weight: 700;
  background: #fff;
  padding: 2.4rem 0;
  border: 1px solid #ccc;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .button__wrap .button [type=submit] {
    width: 335px;
  }
}
.button__wrap .button [type=submit]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: #dc3232;
}

.info {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .info {
    margin-top: 8rem;
  }
}
.info .inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .info .inner {
    width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info .inner {
    width: 92%;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .info .inner {
    width: 92%;
    flex-direction: column;
  }
}
.info .info__schedule {
  width: 100%;
  padding: 3rem 4rem 3rem 0;
  border-right: 1px solid #ccc;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info .info__schedule {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 0 0 4rem 0;
  }
}
@media (max-width: 767px) {
  .info .info__schedule {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 0 0 4rem 0;
  }
}
.info .info__schedule h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.info .info__schedule .bg__btn {
  margin-top: 2rem;
}
.info .info__map {
  width: 100%;
  padding: 3rem 0 3rem 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info .info__map {
    padding: 4rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .info .info__map {
    padding: 4rem 0 0 0;
  }
}
.info .info__map .map__iframe-wrap {
  padding-top: 66.6667%;
}
.info .info__map .info__map-add {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .info .info__map .info__map-add {
    display: block;
    margin-top: 1rem;
  }
}
.info .info__map .address {
  display: flex;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .info .info__map .address {
    font-size: 1.5rem;
  }
}
.info .info__map .address span {
  padding-left: 0.5rem;
}
.info .info__map .info__map-btn {
  text-align: right;
}
@media (max-width: 767px) {
  .info .info__map .info__map-btn {
    margin-top: 2rem;
  }
}

.top__map-area {
  margin: 16rem 0 0;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .top__map-area {
    margin-top: 12rem;
  }
}
@media (max-width: 767px) {
  .top__map-area {
    margin-top: 8rem;
  }
}
.top__map-area .map__iframe-wrap {
  padding-top: 30%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .top__map-area .map__iframe-wrap {
    padding-top: 66.6667%;
  }
}
@media (max-width: 767px) {
  .top__map-area .map__iframe-wrap {
    padding-top: 66.6667%;
  }
}

#page__access .main__wrap {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__access .main__wrap {
    width: 92%;
  }
}
#page__access .main__content .text__block .item__wrap {
  padding: 4rem;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__access .main__content .text__block .item__wrap {
    padding: 2rem;
  }
}
#page__access .main__content .accent__title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #page__access .main__content .accent__title {
    font-size: 1.8rem;
  }
}
#page__access .main__content .detail__title {
  display: block;
  padding-left: 3.6rem;
}
#page__access .main__content .detail__title::before {
  left: 2rem;
}
#page__access .main__content .bold {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #page__access .main__content .bold {
    font-size: 1.6rem;
  }
}
#page__access .main__content:nth-of-type(1) .flex__wrap {
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap {
    flex-direction: column;
    margin-top: 2rem;
  }
}
#page__access .main__content:nth-of-type(1) .flex__wrap .access__map {
  width: 60%;
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap .access__map {
    width: 100%;
  }
}
#page__access .main__content:nth-of-type(1) .flex__wrap .access__map .map__iframe-wrap {
  padding-top: 66.6667%;
}
#page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap {
  width: 35%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap {
    width: 52%;
  }
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 2rem;
  }
}
#page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap .logo {
  width: 240px;
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap .logo {
    width: 220px;
  }
}
#page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap .text {
  margin: 2rem 0;
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(1) .flex__wrap .text__wrap .text {
    font-size: 1.5rem;
    margin: 1.6rem 0;
  }
}
#page__access .main__content:nth-of-type(2) .text__block .bg__btn {
  margin: 1.6rem 0 3rem;
}
#page__access .main__content:nth-of-type(2) .text__block .bg__btn a {
  width: 400px;
}
@media (max-width: 767px) {
  #page__access .main__content:nth-of-type(2) .text__block .bg__btn a {
    width: 100%;
  }
}
#page__access .main__content:nth-of-type(2) .text__block:nth-of-type(1) .bold {
  margin-top: 2rem;
}
#page__access .main__content:nth-of-type(2) .text__block:nth-of-type(2) {
  margin-top: 6rem;
}
#page__access .main__content:nth-of-type(2) .text__block:nth-of-type(2) .item__wrap:not(:first-of-type) {
  margin-top: 4rem;
}

.contact__box {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact__box {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .contact__box {
    margin-top: 6rem;
  }
}

.contact__content {
  padding: 4rem 0;
  border: 1px solid #ccc;
  text-align: center;
}
.contact__content h3 {
  font-size: 2.4rem;
  font-weight: 700;
}
.contact__content .text {
  margin-top: 3rem;
}
.contact__content .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
  color: #0067b5;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .contact__content .tel {
    font-size: 3.2rem;
  }
}
.contact__content .tel span {
  padding: 0.4rem;
}
.contact__content .sub__text {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .contact__content .sub__text {
    font-size: 1.2rem;
  }
}

.contact__wrap {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact__wrap {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contact__wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.contact__wrap .contact__content {
  width: 48.5%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact__wrap .contact__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact__wrap .contact__content {
    width: 100%;
    padding: 3rem 0;
  }
}
.contact__wrap .contact__content .text {
  font-size: 1.5rem;
}
.contact__wrap .recruit__content {
  width: 48.5%;
  padding: 4rem 0;
  border: 1px solid #ccc;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact__wrap .recruit__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact__wrap .recruit__content {
    width: 100%;
  }
}
.contact__wrap .recruit__content h3 {
  font-size: 2.4rem;
  line-height: 1.8;
}
.contact__wrap .recruit__content .text {
  margin-top: 3rem;
}
.contact__wrap .recruit__content .btn {
  margin-top: 4rem;
}

#page__privacypolicy .breadcrumb {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__privacypolicy .breadcrumb {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  #page__privacypolicy .breadcrumb {
    margin-top: 6rem;
  }
}
#page__privacypolicy .contact__content .text {
  font-weight: 700;
  font-size: 1.8rem;
}
#page__privacypolicy .contact__content .tel {
  margin-top: 0;
}
#page__privacypolicy .main__wrap {
  max-width: 1080px;
  width: 90%;
  margin: 8rem auto 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__privacypolicy .main__wrap {
    margin-top: 6rem;
  }
}
@media (max-width: 767px) {
  #page__privacypolicy .main__wrap {
    width: 92%;
    margin-top: 4rem;
  }
}
#page__privacypolicy .main__wrap .text__block:not(:first-child) {
  margin-top: 4rem;
}
#page__privacypolicy .main__wrap .text__block h2 {
  text-align: center;
  font-size: 3.2rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__privacypolicy .main__wrap .text__block h2 {
    font-size: 2.8rem;
    padding-bottom: 0.4rem;
  }
}
#page__privacypolicy .main__wrap .text__block h3 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__privacypolicy .main__wrap .text__block h3 {
    font-size: 1.8rem;
  }
}

#page__sitepolicy .breadcrumb {
  margin-top: 12rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__sitepolicy .breadcrumb {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  #page__sitepolicy .breadcrumb {
    margin-top: 6rem;
  }
}
#page__sitepolicy .contact__box {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  #page__sitepolicy .contact__box {
    margin-top: 2rem;
  }
}
#page__sitepolicy .contact__box .contact__content .text {
  font-weight: 700;
  font-size: 1.8rem;
}
#page__sitepolicy .contact__box .contact__content .tel {
  margin-top: 0;
}
#page__sitepolicy .main__wrap {
  max-width: 1080px;
  width: 90%;
  margin: 8rem auto 0;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  #page__sitepolicy .main__wrap {
    margin-top: 6rem;
  }
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap {
    width: 92%;
    margin-top: 4rem;
  }
}
#page__sitepolicy .main__wrap .text__block:not(:first-child) {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block:not(:first-child) {
    margin-top: 3rem;
  }
}
#page__sitepolicy .main__wrap .text__block h2 {
  text-align: center;
  font-size: 3.2rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block h2 {
    font-size: 2.8rem;
    padding-bottom: 0.4rem;
  }
}
#page__sitepolicy .main__wrap .text__block h3 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block h3 {
    font-size: 1.8rem;
  }
}
#page__sitepolicy .main__wrap .text__block .text {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block .text {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
#page__sitepolicy .main__wrap .text__block ol {
  margin-top: 1.5rem;
  padding-left: 1.8rem;
  list-style: decimal outside;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block ol {
    margin-top: 1rem;
  }
}
#page__sitepolicy .main__wrap .text__block ol li {
  position: relative;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #page__sitepolicy .main__wrap .text__block ol li {
    font-size: 1.4rem;
  }
}
#page__sitepolicy .main__wrap .text__block ol li .is__top {
  margin-top: 2rem;
}
#page__sitepolicy .main__wrap .text__block ol li .is__top a {
  text-decoration: underline;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#page__sitepolicy .main__wrap .text__block ol li .is__top a span {
  padding-right: 1rem;
}

.footer {
  margin-top: 10rem;
  background: #eff4f9;
  padding: 10rem 0 4rem;
}
@media (min-width: 1200px) and (max-width: 1280px) {
  .footer {
    margin-top: 8rem;
    padding: 6rem 4rem 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer {
    margin-top: 8rem;
    padding: 6rem 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 6rem;
    padding: 4rem 2.4rem;
  }
}
.footer .footer__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.footer .footer__contents {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__contents {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footer .footer__contents {
    flex-direction: column;
  }
}
.footer .footer__right {
  width: 30%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer .footer__right {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__right .footer__info {
    width: 55%;
  }
}
.footer .footer__right .footer__info .footer__logo {
  width: 240px;
}
@media (max-width: 767px) {
  .footer .footer__right .footer__info .footer__logo {
    width: 220px;
  }
}
.footer .footer__right .footer__info .footer__add {
  margin-top: 1rem;
  font-size: 1.5rem;
}
@media (min-width: 1281px) {
  .footer .footer__right .footer__info .footer__add {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__right .footer__info .footer__add {
    font-size: 1.5rem;
  }
}
.footer .footer__right .footer__hotline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__right .footer__hotline {
    flex-direction: column;
    gap: 2rem;
    width: 45%;
    margin-top: 0;
  }
}
.footer .footer__right .footer__hotline .footer__tel {
  position: relative;
  font-family: "Lato", sans-serif;
  color: #00468c;
  font-size: 3rem;
  font-weight: 700;
  padding-left: 4.8rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .footer .footer__right .footer__hotline .footer__tel {
    font-size: 2.8rem;
    padding-left: 4.4rem;
  }
}
.footer .footer__right .footer__hotline .footer__tel:nth-child(1) .icon__wrap svg {
  position: absolute;
  top: 4px;
  left: -4px;
}
@media (max-width: 767px) {
  .footer .footer__right .footer__hotline .footer__tel:nth-child(1) .icon__wrap svg {
    width: 28px;
    height: 28px;
  }
}
.footer .footer__right .footer__hotline .footer__tel:nth-child(2) .icon__wrap svg {
  position: absolute;
  top: 7px;
  left: -1px;
}
@media (max-width: 767px) {
  .footer .footer__right .footer__hotline .footer__tel:nth-child(2) .icon__wrap svg {
    width: 22px;
    height: 22px;
  }
}
.footer .footer__right .footer__hotline .footer__tel .icon__wrap {
  position: absolute;
  top: 2px;
  left: 8px;
  z-index: 0;
}
.footer .footer__right .footer__hotline .footer__tel .icon__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  left: -8px;
  width: 40px;
  height: 40px;
  background: #00468c;
  border-radius: 4px;
  z-index: -1;
}
@media (max-width: 767px) {
  .footer .footer__right .footer__hotline .footer__tel .icon__wrap::before {
    width: 36px;
    height: 36px;
  }
}
.footer .footer__left {
  width: 70%;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__left {
    width: 100%;
    margin-top: 6rem;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer .footer__left {
    width: 100%;
    flex-direction: column;
    margin-top: 4rem;
  }
}
.footer .footer__left .footer__nav {
  display: block;
}
@media (max-width: 767px) {
  .footer .footer__left .footer__nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer .footer__left .footer__nav:not(:first-of-type) {
  margin-left: 4rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer .footer__left .footer__nav:not(:first-of-type) {
    margin-left: 3rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__left .footer__nav:not(:first-of-type) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.footer .footer__left .footer__nav li {
  width: 100%;
}
.footer .footer__left .footer__nav li + li {
  margin-top: 1.5rem;
}
.footer .footer__left .footer__nav li a {
  font-size: 1.5rem;
  padding: 1rem 0;
  transition: all 0.3s;
}
.footer .footer__left .footer__nav li a:hover {
  color: #0067b5;
}
.footer .footer__left .footer__nav .dummy {
  font-size: 1.5rem;
}
.footer .footer__left .footer__nav .__child {
  padding-left: 5px;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .footer .footer__left .footer__nav .__child {
    margin-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__left .footer__nav .__child {
    width: 50%;
    padding-left: 0;
  }
}
.footer .footer__left .footer__nav .__child a {
  font-size: 1.4rem;
  color: #999;
}
.footer .footer__left .footer__nav .__child a:hover {
  opacity: 0.7;
}
.footer .footer__copyright {
  margin-top: 8rem;
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .footer .footer__copyright {
    font-size: 1rem;
  }
}