*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  margin: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.75;
}

a {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: #f5fafe;
  overflow-x: clip;
  color: #333;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  -webkit-font-feature-settings: "kern" 1;
          font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
}

.l_all_wrapper {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow-x: clip;
  gap: 30px;
}
@media screen and (max-width: 896px) {
  .l_all_wrapper {
    display: block;
    max-width: none;
    margin: 0;
    gap: 0;
  }
}

.l_sp_header {
  display: none;
}
@media screen and (max-width: 896px) {
  .l_sp_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    padding: 0 16px;
    background: #f5fafe;
    z-index: 1102;
  }
}

.l_sp_header_logo {
  display: block;
}
.l_sp_header_logo img {
  display: block;
  height: 36px;
  width: auto;
}

.l_main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background-color: #f5fafe;
  padding-right: 40px;
}
@media screen and (max-width: 896px) {
  .l_main {
    width: 100%;
    padding-top: 56px;
    padding-right: 0;
  }
}

.l_content_inner {
  max-width: none;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .l_content_inner {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }
}

.l_content_mt {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .l_content_mt {
    margin-top: 16px;
  }
}

.c_header + * {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .c_header + * {
    margin-top: 32px;
  }
}

.u_bleed_right {
  margin-right: calc(var(--bleed_right, 40px) * -1);
  width: calc(100% + var(--bleed_right, 40px));
}
@media screen and (max-width: 896px) {
  .u_bleed_right {
    margin-right: 0;
    width: 100%;
  }
}

.u_bg_bleed_right {
  position: relative;
  -webkit-filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
}
.u_bg_bleed_right > * {
  position: relative;
  z-index: 1;
}
.u_bg_bleed_right::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(var(--bleed_right, 40px) * -1);
  bottom: 0;
  left: 0;
  z-index: 0;
  background: #ffffff;
  border-radius: 80px;
}
@media screen and (max-width: 896px) {
  .u_bg_bleed_right::before {
    right: 0;
    border-radius: 20px;
  }
}

.u_bg_bleed_right.is_right_cut::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 896px) {
  .u_bg_bleed_right.is_right_cut::before {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.u_text_center {
  text-align: center;
}

.l_side_menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 16.6666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: 100vh;
  overflow: hidden;
  background: #f5fafe;
}
@media screen and (max-width: 896px) {
  .l_side_menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    max-width: none;
    height: 100vh;
    z-index: 1101;
    background: #f5fafe;
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.35s ease, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.is_menu_open .l_side_menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.l_side_menu_inner {
  height: 100%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0 40px 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l_side_menu_inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 896px) {
  .l_side_menu_inner {
    padding: 28px 24px;
  }
}

.l_side_logo {
  margin: 0;
  padding: 0;
}
.l_side_logo a {
  display: block;
}
.l_side_logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 264px;
}
@media screen and (max-width: 896px) {
  .l_side_logo {
    display: none;
  }
}

.l_side_nav {
  margin-top: 32px;
}

.l_side_nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.l_side_nav_link {
  display: block;
  color: #2778bd;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
}
.l_side_nav_link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 896px) {
  .l_side_nav_link[href="/contact/"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 28px;
    background: #f49f2d;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 16px;
    text-decoration: none;
  }
  .l_side_nav_link[href="/contact/"]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f0e0";
    font-size: 16px;
  }
}

.l_side_banners {
  width: 100%;
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.p_side_banner {
  display: block;
  width: 100%;
  max-width: 264px;
}
.p_side_banner img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 264/64;
}

.c_menu_overlay {
  display: none;
}
@media screen and (max-width: 896px) {
  .c_menu_overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 1100;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
  }
  body.is_menu_open .c_menu_overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.p_footer_recruit {
  margin-top: 72px;
}
@media screen and (max-width: 896px) {
  .p_footer_recruit {
    margin-top: 40px;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
  }
}

.l_footer {
  position: relative;
  width: 100%;
  background: #2778bd;
  color: #ffffff;
  -webkit-font-feature-settings: "palt" 0;
          font-feature-settings: "palt" 0;
  margin-top: 32px;
  padding: 144px 0 0;
  border-top-right-radius: 202px;
  overflow: visible;
}
.l_footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 200px;
  height: 200px;
  background: #2778bd;
  z-index: 1001;
}
.l_footer::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 200px;
  height: 200px;
  background: #f5fafe;
  border-bottom-left-radius: 202px;
  z-index: 1002;
}
@media screen and (max-width: 896px) {
  .l_footer {
    margin-top: 24px;
    padding: 40px 0 48px;
    border-top-right-radius: 80px;
  }
  .l_footer::before {
    bottom: 100%;
    width: 80px;
    height: 80px;
    z-index: 1;
  }
  .l_footer::after {
    bottom: 100%;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
    z-index: 2;
  }
}

.p_footer_main {
  margin: 0 auto;
  padding: 0 120px 84px 120px;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .p_footer_main {
    padding: 0 24px;
  }
}

.l_footer_inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media screen and (max-width: 896px) {
  .l_footer_inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.p_footer_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .p_footer_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p_footer_brand_catch {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 8px;
}
@media screen and (max-width: 896px) {
  .p_footer_brand_catch {
    font-size: 13px;
  }
}

.p_footer_brand_logo {
  margin-top: 16px;
}
.p_footer_brand_logo img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 896px) {
  .p_footer_brand_logo img {
    max-width: 200px;
  }
}

.p_footer_brand_addr {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 896px) {
  .p_footer_brand_addr {
    margin-top: 20px;
    font-size: 12px;
  }
}

.p_footer_left .c_circle_btn {
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .p_footer_left .c_circle_btn {
    margin-top: 0;
    display: none;
  }
}

@media screen and (max-width: 896px) {
  .p_footer_right {
    text-align: center;
  }
}

.l_footer_nav {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.l_footer_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 896px) {
  .l_footer_nav_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 16px;
  }
}

.l_footer_nav_list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.l_footer_nav_list a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 896px) {
  .l_footer_nav_list a {
    font-size: 14px;
  }
}

@media screen and (max-width: 896px) {
  .l_footer_nav_list a[href="/contact/"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 24px;
    background: #f49f2d;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 14px;
    text-decoration: none;
  }
  .l_footer_nav_list a[href="/contact/"]::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f0e0";
    font-size: 14px;
  }
  .l_footer_nav_list a[href="/contact/"]:hover {
    text-decoration: none;
    opacity: 0.9;
  }
}

.p_footer_sites {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 24px;
  text-align: left;
  padding-left: 16px;
}
@media screen and (max-width: 896px) {
  .p_footer_sites {
    grid-template-columns: 1fr;
  }
}

.p_footer_site {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p_footer_site_detail {
  padding-top: 12px;
  margin-left: -13px;
}
@media screen and (max-width: 896px) {
  .p_footer_site_detail {
    padding-top: 4px;
  }
}

.p_footer_site_name {
  margin: 0;
  font-size: 0;
  position: relative;
  min-height: 40px;
  font-weight: 500;
}
@media screen and (max-width: 896px) {
  .p_footer_site_name {
    min-height: auto;
  }
}
.p_footer_site_name::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #ffffff;
}
@media screen and (max-width: 896px) {
  .p_footer_site_name::before {
    top: 6px;
  }
}
.p_footer_site_name a {
  display: block;
  margin-left: -13px;
  text-indent: 13px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  .p_footer_site_name a {
    font-size: 14px;
  }
}
.p_footer_site_name a:hover {
  text-decoration: underline;
}

.p_footer_site:nth-child(n+5) .p_footer_site_name {
  min-height: auto;
}

.p_footer_site:nth-child(4) .p_footer_site_name a {
  font-size: 14px;
}

.p_footer_site_zip,
.p_footer_site_addr,
.p_footer_site_tel,
.p_footer_site_fax,
.p_footer_site_mobile {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 896px) {
  .p_footer_site_zip,
  .p_footer_site_addr,
  .p_footer_site_tel,
  .p_footer_site_fax,
  .p_footer_site_mobile {
    font-size: 11px;
  }
}

.p_footer_site_zip,
.p_footer_site_addr {
  display: inline;
}

.p_footer_site_zip {
  margin-right: 0.2em;
}

.p_footer_site_addr::after {
  content: "";
  display: block;
}

.p_footer_site_tel,
.p_footer_site_fax,
.p_footer_site_mobile {
  display: inline;
  margin-right: 0.5em;
}

.p_footer_site_mobile::before {
  content: "";
  display: block;
}

.l_footer_copy {
  margin-top: 32px;
  font-size: 14px;
}
@media screen and (max-width: 896px) {
  .l_footer_copy {
    margin-top: 40px;
    font-size: 11px;
    text-align: center;
  }
}

.p_home_facilities_grid,
.p_facilities_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 896px) {
  .p_home_facilities_grid,
  .p_facilities_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.c_facility_card_link,
.p_facilities_card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  aspect-ratio: 2/1;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  .c_facility_card_link,
  .p_facilities_card {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
}

.c_facility_card_media,
.p_facilities_card_media {
  overflow: hidden;
}
.c_facility_card_media img,
.p_facilities_card_media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 896px) {
  .c_facility_card_media img,
  .p_facilities_card_media img {
    height: auto;
  }
}

.c_facility_card_body,
.p_facilities_card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 72px 24px 24px;
}
@media screen and (max-width: 896px) {
  .c_facility_card_body,
  .p_facilities_card_body {
    padding: 16px 16px 18px;
  }
}

.c_facility_card_name,
.p_facilities_card_title {
  margin-top: -8px;
}

.p_facilities_card_more {
  margin-top: auto;
}