@charset "UTF-8";
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

@media (max-width: 1300px) {
  .md_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 120px;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 60px;
  }
}

a {
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

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

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 16px;
  }
}

.section_title_top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 45px;
  position: relative;
}
@media (max-width: 768px) {
  .section_title_top {
    gap: 12px;
    padding-bottom: 22px;
  }
}

.section_title_top::before {
  content: "";
  position: absolute;
  width: 50px;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #1C55AF;
}
@media (max-width: 768px) {
  .section_title_top::before {
    width: 30px;
  }
}

.section_title_top_center {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 45px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .section_title_top_center {
    gap: 12px;
    padding-bottom: 22px;
  }
}

.section_title_top_center::before {
  content: "";
  position: absolute;
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  background-color: #1C55AF;
}
@media (max-width: 768px) {
  .section_title_top_center::before {
    width: 30px;
  }
}

.section_title_top_en {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #884D23;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .section_title_top_en {
    font-size: 12px;
  }
}

.section_title_top_jp {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .section_title_top_jp {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.section_title_top_center.section_title_top_center_min::before {
  background-color: #fff;
}

.section_title_top_center.section_title_top_center_min .section_title_top_en {
  color: #fff;
}

.section_title_top_center.section_title_top_center_min .section_title_top_jp {
  font-size: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .section_title_top_center.section_title_top_center_min .section_title_top_jp {
    font-size: 18px;
  }
}

.section_title_top_left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-bottom: 45px;
  position: relative;
  text-align: left;
  width: 100%;
}
@media (max-width: 768px) {
  .section_title_top_left {
    gap: 12px;
    padding-bottom: 22px;
  }
}

.section_title_top_left::before {
  content: "";
  position: absolute;
  width: 50px;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #1C55AF;
}
@media (max-width: 768px) {
  .section_title_top_left::before {
    width: 30px;
  }
}

.section_title_sub_center {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-bottom: 35px;
  text-align: center;
  border-bottom: 1px solid #1C55AF;
  width: 100%;
}
@media (max-width: 768px) {
  .section_title_sub_center {
    gap: 8px;
    padding-bottom: 22px;
  }
}

.section_title_sub_en {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #884D23;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .section_title_sub_en {
    font-size: 12px;
  }
}

.section_title_sub_jp {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .section_title_sub_jp {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.button_blue {
  background-color: #1C55AF;
  border: 1px solid #1C55AF;
  padding: 22px 50px 22px 35px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_blue {
    padding: 16px 40px 16px 30px;
  }
}

@media (min-width: 769px) {
  .button_blue:hover {
    background-color: #fff;
    color: #1C55AF;
  }
}

.button_blue::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_blue::before {
    right: 26px;
  }
}

@media (min-width: 769px) {
  .button_blue:hover::before {
    background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
    right: 26px;
  }
}

.button_white {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 22px 50px 22px 35px;
  color: #1C55AF;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_white {
    padding: 16px 40px 16px 30px;
  }
}

@media (min-width: 769px) {
  .button_white:hover {
    background-color: #1C55AF;
    color: #fff;
  }
}

.button_white::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_white::before {
    right: 34px;
  }
}

@media (min-width: 769px) {
  .button_white:hover::before {
    background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
    right: 30px;
  }
}

.button_white_icon {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 22px 50px 22px clamp(64px, 5.3333333333vw, 80px);
  color: #1C55AF;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  font-size: clamp(18px, 1.3333333333vw, 20px);
}
@media (max-width: 768px) {
  .button_white_icon {
    padding: 16px 50px 16px 56px;
  }
}

@media (min-width: 769px) {
  .button_white_icon:hover {
    background-color: #1C55AF;
    color: #fff;
  }
}

.button_white_icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .button_white_icon::before {
    right: 34px;
  }
}

@media (min-width: 769px) {
  .button_white_icon:hover::before {
    background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
    right: 30px;
  }
}

.button_white_icon::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 21px;
  left: clamp(20px, 2.6666666667vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_mail_blue.svg) no-repeat center center/contain;
  transition: all 0.3s;
}
@media (min-width: 769px) {
  .button_white_icon:hover::after {
    background: url(../images/common/icon_mail_white.svg) no-repeat center center/contain;
  }
}

.button_blue_card {
  background-color: #1C55AF;
  border: 1px solid #1C55AF;
  padding: 18px clamp(60px, 17.6vw, 66px) 20px clamp(22px, 8vw, 30px);
  color: #fff;
  border-radius: 50px;
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.3s;
  line-height: 1.6;
}

@media (min-width: 769px) {
  a:hover .button_blue_card {
    background-color: #fff;
    color: #1C55AF;
  }
}

.button_blue_card::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  right: clamp(30px, 9.0666666667vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}

a:hover .button_blue_card::before {
  background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
}

.body.is_open {
  overflow: hidden;
}

.text_orange {
  color: #59A2E9;
  font-weight: 700;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: transparent;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header_fixed {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.header.header_fixed {
  background-color: #1C55AF;
}
@media (max-width: 999px) {
  .header.header_fixed {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
  }
}

.header_inner.inner {
  height: inherit;
}

.header_title {
  font-size: 10px;
  color: #F5F5F5;
  padding-top: 7px;
}
@media (max-width: 768px) {
  .header_title {
    display: none;
  }
}

.header.header_fixed .header_title {
  display: none;
}

.header_content {
  height: inherit;
}
.header_top {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-top: 4px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .header_top {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
  }
}

header.header_fixed .header_top {
  padding: 10px 0;
  border: none;
  height: 100%;
}
@media (max-width: 999px) {
  header.header_fixed .header_top {
    padding: 0;
    height: 100%;
    align-items: center;
  }
}

.header_unit {
  padding-top: 9px;
  width: 100%;
  max-width: clamp(280px, 27.0666666667vw, 406px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header_unit {
    max-width: clamp(150px, 74.6666666667vw, 280px);
    padding-top: 0;
  }
}

.header_logo {
  width: 100%;
  transition: 0.3s;
}

.header_contact {
  display: flex;
  gap: clamp(10px, 1.6666666667vw, 25px);
  align-items: center;
  justify-content: right;
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 999px) {
  .header_contact {
    display: none;
  }
}

.header_contact_mail {
  width: 100%;
  max-width: 154px;
}

.button_header_mail {
  width: 100%;
  border-radius: 50px;
  background: #59A2E9;
  color: #fff;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  line-height: 1.6;
  padding: 30px 10px 10px;
  transition: 0.3s;
  position: relative;
  border: 1px solid #59A2E9;
  display: inline-block;
  text-align: center;
}

@media (min-width: 769px) {
  .button_header_mail:hover {
    background-color: #fff;
    color: #59A2E9;
  }
}

.button_header_mail::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  background: url(../images/common/icon_mail_white.svg) no-repeat center center/contain;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .button_header_mail:hover::before {
    background: url(../images/common/icon_mail_light-blue.svg) no-repeat center center/contain;
  }
}

.header_nav {
  width: 100%;
  max-width: 577px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_lists {
  width: 100%;
  max-width: 577px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: auto;
}

.header_list {
  width: 100%;
  position: relative;
  transition: all 0.3s;
}

.header_list.header_list_contact {
  display: none;
}

.header.header_fixed .header_list.header_list_contact {
  display: block;
}

.header_list_link {
  display: block;
  text-align: center;
  place-items: center;
  letter-spacing: 0.05em;
  width: 100%;
  white-space: nowrap;
  padding: 10px 5px;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
}

@media (min-width: 769px) {
  .header_list_link:hover {
    background-color: #59A2E9;
  }
}

@media (min-width: 769px) {
  .header_list_link:hover::after {
    width: 100%;
  }
}

.header_list_dropdown {
  position: absolute;
  bottom: 0;
  left: 50%;
  box-shadow: 0px 3px 8px -2px #D3D3D3;
  transition: all 0.3s;
  transform: translate(-50%, 100%);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  width: fit-content;
  display: block;
}

@media (min-width: 769px) {
  .header_list:hover .header_list_dropdown,
  .header_list:focus-within .header_list_dropdown {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }
}

.header_list_dropdown_list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: fit-content;
}

.header_list_dropdown_list_item + .header_list_dropdown_list_item {
  border-top: 1px solid #D3D3D3;
}

.header_list_dropdown_list_item_link {
  padding: 10px 20px;
  width: 100%;
  transition: color 0.3s;
  text-wrap: nowrap;
  display: block;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 769px) {
  .header_list_dropdown_list_item_link:hover,
  .header_list_dropdown_list_item_link:focus {
    background-color: #1C55AF;
    color: #fff;
  }
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 999px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    width: 60px;
    height: 60px;
    color: #fff;
  }
}

.header_fixed .header_hamburger {
  background-color: #59A2E9;
}

.header_hamburger.is_open {
  background-color: transparent;
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

.header_hamburger_bar:nth-of-type(1) {
  top: -24px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -12px;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -10px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -5px;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 4px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 3px;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: -5px;
  transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -9px;
  transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  width: 100%;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2px;
  }
}

.header_drawer {
  padding: 70px 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #59A2E9;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list {
  border-bottom: 1px solid #fff;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .header_drawer_list_link {
    font-size: 15px;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 14px;
  }
}

.header_drawer_list_dropdown {
  padding-left: 24px;
  margin-bottom: 18px;
}

.header_drawer_list_dropdown_list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.header_drawer_list_dropdown_list_item_link {
  display: block;
  padding: 0 12px;
  color: #fff;
  line-height: 1.6;
}

/* top - top_mv
------------------------------ */
.top_mv {
  height: 800px;
}
@media (max-width: 768px) {
  .top_mv {
    height: 500px;
  }
}

.top_mv .inner {
  height: 100%;
}

.top_mv_inner {
  height: 100%;
  position: relative;
}

.swiper.top_mv_swiper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  position: relative;
}

.swiper-wrapper.top_mv_swiper_wrapper {
  width: 100%;
  height: 100%;
}

.top_mv_swiper_slide.top_mv_swiper_slide01 {
  background: url(../images/top/top_mv_img01.jpg) no-repeat right center/cover;
}

.top_mv_swiper_slide.top_mv_swiper_slide02 {
  background: url(../images/top/top_mv_img02.jpg) no-repeat right center/cover;
}
@media (max-width: 768px) {
  .top_mv_swiper_slide.top_mv_swiper_slide02 {
    background: url(../images/top/top_mv_img02.jpg) no-repeat center center/cover;
  }
}

.top_mv_swiper_slide.top_mv_swiper_slide03 {
  background: url(../images/top/top_mv_img03.jpg) no-repeat right center/cover;
}
@media (max-width: 768px) {
  .top_mv_swiper_slide.top_mv_swiper_slide03 {
    background: url(../images/top/top_mv_img03.jpg) no-repeat center center/cover;
  }
}

.top_mv_swiper_slide.top_mv_swiper_slide04 {
  background: url(../images/top/top_mv_img04.jpg) no-repeat right center/cover;
}

.top_mv_swiper_slide.top_mv_swiper_slide05 {
  background: url(../images/top/top_mv_img05.jpg) no-repeat right center/cover;
}

.top_mv_content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.top_mv_content_title {
  color: #fff;
  font-size: clamp(30px, 3.3333333333vw, 50px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
@media (max-width: 768px) {
  .top_mv_content_title {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.top_mv_content_text {
  color: #fff;
  padding-top: 16px;
  font-family: "Noto Sans CJK JP";
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .top_mv_content_text {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding-top: 8px;
  }
}

.top_mv_content .swiper-pagination {
  bottom: -53px;
  width: fit-content;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #59A2E9;
}

/* top - top_about
------------------------------ */
.top_about {
  margin-top: 130px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .top_about {
    margin-top: 60px;
  }
}

.top_about_content {
  display: flex;
  gap: clamp(40px, 7vw, 105px);
}
@media (max-width: 768px) {
  .top_about_content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.top_about_image {
  width: 45.6%;
  max-width: 570px;
  min-width: 350px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top_about_image {
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}

.top_about_texts {
  width: 100%;
  flex-grow: 1;
  margin-top: 34px;
}
@media (max-width: 768px) {
  .top_about_texts {
    margin-top: 0;
  }
}

.top_about_text {
  margin-top: 42px;
}
@media (max-width: 768px) {
  .top_about_text {
    margin-top: 22px;
  }
}

.top_about_button {
  margin-top: 58px;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .top_about_button {
    margin-top: 30px;
    margin-inline: auto;
  }
}

.top_about_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 130px calc(50% - 50vw) 0;
  width: 100vw;
}
@media (max-width: 768px) {
  .top_about_cards {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}

.top_about_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-content: center;
  background: url(../images/top/top_about_card01.jpg) no-repeat center center/cover;
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .top_about_card {
    padding: 40px 20px;
  }
}

.top_about_card:nth-of-type(2) {
  background: url(../images/top/top_about_card02.jpg) no-repeat center center/cover;
}

.top_about_card:nth-of-type(3) {
  background: url(../images/top/top_about_card03.jpg) no-repeat center center/cover;
}

.top_about_card:not(:last-child) {
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  .top_about_card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.top_about_card_text {
  text-align: center;
  color: #fff;
  margin-top: 34px;
}
@media (max-width: 768px) {
  .top_about_card_text {
    margin-top: 24px;
  }
}

.top_about_card_button {
  margin-top: 86px;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .top_about_card_button {
    margin-top: 34px;
  }
}

/* top - top_works
------------------------------ */
.top_works {
  padding: 130px 0;
  overflow: hidden;
}

@media (min-width: 1800px) {
  .top_works_inner {
    overflow: hidden;
  }
}

.top_works_swiper {
  margin-top: 65px;
  overflow: visible;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 1800px) {
  .top_works_swiper {
    margin-bottom: 80px;
  }
}

.top_works_cards {
  width: 100vw;
}

.top_works_card_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.top_works_card_img img {
  object-fit: cover;
  aspect-ratio: 350/250;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .top_works_card a:hover img {
    transform: scale(1.2);
  }
}

.top_works_card_text {
  margin-top: 20px;
  font-weight: 700;
}

.top_works_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .top_works_card_tags {
    gap: 3px 6px;
  }
}

.top_works_card_tag {
  padding: 10px 20px;
  background-color: #59A2E9;
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 768px) {
  .top_works_card_tag {
    padding: 6px 12px;
  }
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: -60px;
  top: auto;
  width: 80%;
}

/* プログレスバーの高さ変更 */
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}

/* プログレスバーの背景色変更 */
.swiper-pagination-progressbar {
  background-color: #F5F5F5;
}

/* プログレスバーの色変更 */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #1C55AF;
}

.top_works_swiper-buttons {
  position: absolute;
  width: 160px;
  top: -50px;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}
@media (max-width: 768px) {
  .top_works_swiper-buttons {
    top: -40px;
    width: 140px;
  }
}

/* 前へ次への矢印カスタマイズ */
.top_works_swiper-button-prev,
.top_works_swiper-button-next {
  height: 27px;
  border-radius: 30px;
  background-color: #1C55AF;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .top_works_swiper-button-prev:hover,
  .top_works_swiper-button-next:hover {
    opacity: 0.7;
  }
}

/* 前へ次への矢印カスタマイズ */
.top_works_swiper-button-prev::after {
  content: "";
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  width: 7.5px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.top_works_swiper-button-next::after {
  content: "";
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  width: 7.5px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.top_works_button {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding-top: 50px;
}

/* top - top_company
------------------------------ */
.top_company {
  padding-top: 130px;
  padding-bottom: 153px;
  background-color: #F5F5F5;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .top_company {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.top_company_content {
  display: flex;
  gap: clamp(30px, 5.2vw, 78px);
}
@media (max-width: 768px) {
  .top_company_content {
    flex-direction: column;
    gap: 30px;
  }
}

.top_company_texts {
  width: 100%;
  flex-grow: 1;
  margin-top: 20px;
}
.top_company_text {
  margin-top: 42px;
}
@media (max-width: 768px) {
  .top_company_text {
    margin-top: 30px;
  }
}

.top_company_button {
  margin-top: 54px;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .top_company_button {
    margin-top: 40px;
    margin-inline: auto;
  }
}

.top_company_images {
  width: 55.68%;
  max-width: 696px;
  min-width: 350px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top_company_images {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

.top_company_images_container {
  display: flex;
  gap: clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .top_company_images_container {
    gap: 16px;
  }
}

.top_company_image {
  width: 50%;
}

.top_company_image_caption {
  color: #1C55AF;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.5;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .top_company_image_caption {
    font-size: 16px;
  }
}

/* top - top_news
------------------------------ */
.top_news {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .top_news {
    padding: 70px 0 60px;
  }
}

.top_news_content {
  display: flex;
  gap: clamp(30px, 4.6666666667vw, 70px);
  justify-content: space-between;
}
@media (max-width: 768px) {
  .top_news_content {
    flex-direction: column;
    gap: 44px;
  }
}

.top_news_content_left {
  width: 100%;
  max-width: clamp(220px, 18.6666666667vw, 280px);
  flex-shrink: 0;
  padding-top: 16px;
}
@media (max-width: 768px) {
  .top_news_content_left {
    max-width: none;
    width: 100%;
    padding-top: 0;
  }
}

.top_news_button {
  width: 100%;
  max-width: 280px;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .top_news_button {
    margin-top: 44px;
    margin-inline: auto;
  }
}

.top_news_content_right {
  width: 100%;
  flex-grow: 1;
  max-width: 900px;
}
@media (max-width: 768px) {
  .top_news_content_right {
    max-width: none;
  }
}

.top_news_list {
  width: 100%;
  max-height: 540px;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  .top_news_list {
    max-height: 320px;
  }
}

.top_news_list_item {
  width: 100%;
}

.top_news_list_link {
  padding: 32px 50px 30px 0;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #1C55AF;
  display: block;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top_news_list_link {
    padding: 20px 40px 20px 0;
  }
}

@media (min-width: 769px) {
  .top_news_list_link:hover {
    background: #F5F5F5;
  }
}

.top_news_list_meta {
  display: flex;
  gap: 5px 26px;
  flex-wrap: wrap;
}

.top_news_list_time {
  color: #59A2E9;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.56;
}

.top_news_list_cats {
  display: flex;
  gap: 5px 5px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.top_news_list_cat {
  line-height: 1;
  padding: 6px 24px;
  background: #59A2E9;
  border-radius: 20px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  height: fit-content;
}

.top_news_list_title {
  margin-top: 20px;
}

/* cta
------------------------------ */
.cta_main {
  background: url(../images/common/cta_bg_main.jpg) no-repeat center center/cover;
  margin: 0 calc(50% - 50vw);
  padding: clamp(80px, 8.6666666667vw, 130px) calc(50vw - 50%);
}

.cta_main_container {
  background-color: #59A2E9;
  display: flex;
  gap: clamp(30px, 6.6666666667vw, 100px);
  padding: 74px clamp(40px, 5.3333333333vw, 80px) 84px;
}
@media (max-width: 768px) {
  .cta_main_container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 24px 40px;
  }
}

.cta_section_title {
  width: fit-content;
  flex-shrink: 0;
}

.cta_section_title .section_title_top_en,
.cta_section_title .section_title_top_jp {
  color: #fff;
}

.cta_section_title .section_title_top_left::before {
  background-color: #fff;
}

.cta_main_body {
  width: 100%;
  flex-grow: 1;
}

.cta_main_body_lead {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cta_main_body_lead {
    font-size: 16px;
  }
}

.cta_main_body_buttons {
  width: 100%;
  max-width: 700px;
  gap: 30px clamp(30px, 6.6666666667vw, 100px);
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta_main_body_buttons {
    gap: 40px;
    flex-direction: column;
  }
}

.cta_main_body_tel {
  width: 100%;
  max-width: 300px;
}

.cta_main_body_tel_time {
  font-size: 15px;
  line-height: 1.6;
  padding-top: 14px;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .cta_main_body_tel_time {
    padding-top: 8px;
  }
}

.cta_main_body_tel_time span {
  display: inline-block;
}

.cta_main_body_tel_mail {
  width: 100%;
  max-width: 300px;
}

.cta_main_body_tel_mail_button {
  width: 100%;
}

.cta_recruit {
  background-color: #1C55AF;
}

.cta_recruit_container {
  display: flex;
}
@media (max-width: 768px) {
  .cta_recruit_container {
    flex-direction: column-reverse;
  }
}

.cta_recruit_image {
  margin-left: calc(50% - 50vw);
  width: 100%;
  flex-grow: 1;
  background: url(../images/common/cta_recruit_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 1300px) {
  .cta_recruit_image {
    background: url(../images/common/cta_recruit_bg_md.jpg) no-repeat right center/cover;
  }
}
@media (max-width: 768px) {
  .cta_recruit_image {
    background: url(../images/common/cta_recruit_bg_sp.jpg) no-repeat center center/cover;
    height: 280px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.cta_recruit_body {
  width: 100%;
  max-width: clamp(460px, 38.2666666667vw, 574px);
  min-width: 430px;
  padding: clamp(40px, 8.6666666667vw, 130px) 0 clamp(40px, 8.6666666667vw, 130px) clamp(26px, 5.3333333333vw, 80px);
}
@media (max-width: 768px) {
  .cta_recruit_body {
    min-width: auto;
    max-width: none;
    padding-inline: 0;
  }
}

.cta_recruit_body_lead {
  color: #fff;
  margin-top: clamp(20px, 2.6666666667vw, 40px);
}

.cta_recruit_body_buttons {
  display: flex;
  gap: clamp(10px, 1.3333333333vw, 20px);
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 3.6vw, 54px);
}
@media (max-width: 768px) {
  .cta_recruit_body_buttons {
    flex-wrap: wrap;
  }
}
.cta_recruit_body_buttons {
  margin-top: 20px;
}

.cta_recruit_body_button {
  width: 100%;
  max-width: 238px;
}

.cta_recruit_body_button_icon {
  display: block;
  padding-left: 35px;
  position: relative;
}

.cta_recruit_body_button_icon::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 27px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/common/icon_paper_white.svg) no-repeat center center/contain;
}

/* sub
------------------------------ */
.sub_mv {
  min-height: 510px;
  background: url(../images/sub/sub_mv_bg_news.jpg) no-repeat left center/cover;
}
@media (max-width: 768px) {
  .sub_mv {
    min-height: 300px;
  }
}

.sub_mv.works_archive_sub_mv {
  background: url(../images/sub/sub_mv_bg_works.jpg) no-repeat center center/cover;
}

.sub_mv.business_mv {
  background: url(../images/sub/sub_mv_bg_business.jpg) no-repeat center center/cover;
}

.sub_mv.company_mv {
  background: url(../images/sub/sub_mv_bg_company.jpg) no-repeat center center/cover;
}

.sub_mv.recruit_mv {
  background: url(../images/sub/sub_mv_bg_recruit.jpg) no-repeat center center/cover;
}

.sub_mv.contact_mv {
  background: url(../images/sub/sub_mv_bg_contact.jpg) no-repeat center center/cover;
}

.sub_mv_title {
  width: 100%;
  padding-top: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #fff;
}
@media (max-width: 768px) {
  .sub_mv_title {
    padding-top: 130px;
  }
}

.sub_mv_title_en {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

.sub_mv_title_ja {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-align: center;
}
@media (max-width: 768px) {
  .sub_mv_title_ja {
    font-size: clamp(24px, 7.4666666667vw, 28px);
  }
}

.sub_mv_title_ja span {
  display: inline-block;
}

.sub_mv_title.sub_mv_title_thanks {
  font-size: 30px;
}
@media (max-width: 768px) {
  .sub_mv_title.sub_mv_title_thanks {
    font-size: 20px;
  }
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding-block: 30px;
  background: #1C55AF;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-block: 18px;
  }
}

.breadcrumb_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 5px 10px;
  }
}

.breadcrumb_inner a {
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.breadcrumb_inner a:hover {
  font-weight: 700;
  color: #59A2E9;
}

.breadcrumb_icon {
  display: block;
  position: relative;
  font-weight: 700;
  color: #59A2E9;
}

/* news - news_archive_main
------------------------------ */
.news_archive_main {
  margin-top: 110px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .news_archive_main {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

.news_archive_main_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 58px;
}
@media (max-width: 768px) {
  .news_archive_main_wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

.news_archive_main_group {
  width: 100%;
  max-width: 920px;
  flex: 2;
}

.news_archive_main_item + .news_archive_main_item {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .news_archive_main_item + .news_archive_main_item {
    margin-top: 24px;
  }
}

.news_archive_main_item a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 30px);
  background-color: #F5F5F5;
  border: 2px solid #F5F5F5;
  padding: clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .news_archive_main_item a {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }
}

@media (min-width: 769px) {
  .news_archive_main_item a:hover {
    border: 2px solid #59A2E9;
  }
}

.news_archive_main_item_img {
  width: 100%;
  max-width: clamp(180px, 16.6666666667vw, 250px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .news_archive_main_item_img {
    max-width: 100%;
  }
}

.news_archive_main_item_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 250/180;
  transition: 0.3s;
}

@media (min-width: 769px) {
  .news_archive_main_item a:hover img {
    transform: scale(1.1);
  }
}

.news_archive_main_item_content {
  width: 100%;
  max-width: 490px;
}
@media (max-width: 768px) {
  .news_archive_main_item_content {
    max-width: 100%;
  }
}

.news_archive_main_item_unit {
  display: flex;
  gap: 20px;
}

.news_archive_main_item_cat {
  font-size: 14px;
  color: #fff;
  background-color: #59A2E9;
  width: fit-content;
  padding: 4px 28px;
  border-radius: 50px;
}

.news_archive_main_item_date {
  font-size: 14px;
  color: #884D23;
}

.news_archive_main_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.3;
  margin-top: 22px;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .news_archive_main_item_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 10px;
  }
}

.news_archive_main_item_text {
  margin-top: 16px;
}
.news_archive_main_item_btn {
  width: 100%;
  max-width: 240px;
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .news_archive_main_item_btn {
    margin: 20px auto 0;
  }
}

.news_archive_main_item_btn span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.news_archive_main_side {
  width: 100%;
  max-width: 322px;
  flex: 1;
}
@media (max-width: 768px) {
  .news_archive_main_side {
    max-width: 400px;
    margin: 0 auto;
  }
}

.news_archive_main_side_title {
  font-size: 20px;
  background-color: #1C55AF;
  padding: 20px 20px 20px 32px;
  color: #fff;
}
@media (max-width: 768px) {
  .news_archive_main_side_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding: 15px 20px;
  }
}

.news_archive_main_side_list_link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 46px 20px 32px;
  border-bottom: 1px solid #1C55AF;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .news_archive_main_side_list_link {
    padding: 10px 46px 10px 10px;
  }
}

@media (min-width: 769px) {
  .news_archive_main_side_list_link:hover {
    background-color: #F5F5F5;
  }
}

.news_archive_main_side_list_link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  transition: 0.3s;
}

.news_archive_main_side_list_link:hover::after {
  right: 20px;
}

.news_archive_main_page_navigation {
  margin-top: 58px;
}
@media (max-width: 768px) {
  .news_archive_main_page_navigation {
    margin-top: 24px;
  }
}

.page_navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.page-numbers {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  background-color: rgba(28, 85, 175, 0.23);
  color: #1C55AF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .page-numbers:hover {
    color: #fff;
    background-color: #1C55AF;
  }
}

.page-numbers.dots {
  pointer-events: none;
}

.page-numbers.current {
  color: #fff;
  background-color: #1C55AF;
}

/* news - news_single_main
------------------------------ */
.news_single_main {
  margin-top: 130px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .news_single_main {
    margin-top: 60px;
    margin-bottom: 130px;
  }
}

.news_single_main_wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 3.8666666667vw, 58px);
}
@media (max-width: 768px) {
  .news_single_main_wrapper {
    flex-direction: column;
    gap: 50px;
  }
}

.news_single_main_article {
  width: 100%;
  max-width: 870px;
  flex: 2;
}

.news_article {
  background-color: #F5F5F5;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 3.0666666667vw, 46px) clamp(30px, 3.4666666667vw, 52px);
}
@media (max-width: 768px) {
  .news_article {
    padding: 20px;
  }
}

.news_article_unit {
  display: flex;
  gap: 20px;
}

.news_article_date {
  font-size: 14px;
  font-weight: 700;
}

.news_article_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  margin-top: 26px;
  line-height: 1.6;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .news_article_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 14px;
  }
}

.news_article_img {
  width: 100%;
  margin-top: 32px;
  max-width: 630px;
}
@media (max-width: 768px) {
  .news_article_img {
    margin-top: 20px;
  }
}

.news_article_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 630/455;
}

.news_article_content {
  line-height: 2.1875;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .news_article_content {
    margin-top: 10px;
  }
}

.news_article_buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 870px;
  gap: 10px;
  margin-top: 100px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .news_article_buttons {
    gap: 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }
}

.news_article_button {
  width: 100%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .news_article_button {
    max-width: 220px;
  }
}

.news_article_button a {
  display: inline-block;
  position: relative;
  font-size: clamp(14px, 1.0666666667vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: #1C55AF;
  border: 1px solid #1C55AF;
  border-radius: 50px;
  padding: 19px clamp(10px, 1.6666666667vw, 25px);
}
@media (max-width: 768px) {
  .news_article_button a {
    padding: 15px 20px;
  }
}

@media (min-width: 769px) {
  .news_article_button a:hover {
    color: #1C55AF;
    background-color: #fff;
  }
}

.news_article_button_previous a {
  text-align: right;
}
@media (max-width: 768px) {
  .news_article_button_previous a {
    text-align: center;
  }
}

.news_article_button_previous a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 35px;
}
@media (max-width: 768px) {
  .news_article_button_previous a span {
    padding-left: 15px;
  }
}

.news_article_button_previous a span::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: 0.3s;
}

@media (min-width: 769px) {
  .news_article_button_previous a:hover span:before {
    background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  }
}

.news_article_button_all {
  text-align: center;
}

.news_article_button_next a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .news_article_button_next a span {
    text-align: center;
  }
}

.news_article_button_next a span::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
  transition: 0.3s;
}

@media (min-width: 769px) {
  .news_article_button_next a:hover span:after {
    background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  }
}

/* news - works_archive_main
------------------------------ */
.works_archive_main {
  padding: 130px 0;
}
@media (max-width: 768px) {
  .works_archive_main {
    padding: 60px 0;
  }
}

.works_archive_main_group {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .works_archive_main_group {
    margin-top: 40px;
  }
}

.works_archive_main_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 70px clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .works_archive_main_items {
    gap: 44px clamp(10px, 1.3333333333vw, 20px);
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.works_archive_main_item {
  display: flex;
  height: auto;
}

.works_archive_main_item_img {
  overflow: hidden;
}

.works_archive_main_item_img img {
  object-fit: cover;
  aspect-ratio: 280/200;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .works_archive_main_item a:hover img {
    transform: scale(1.2);
  }
}

.works_archive_main_item_title {
  line-height: 1.4;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .works_archive_main_item_title {
    margin-top: 14px;
  }
}

.works_archive_main_item_tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
}
@media (max-width: 768px) {
  .works_archive_main_item_tags {
    margin-top: 10px;
  }
}

.works_archive_main_item_tag {
  font-size: 14px;
  white-space: nowrap;
  background-color: #59A2E9;
  color: #fff;
  padding: 10px 24px;
  line-height: 1;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .works_archive_main_item_tag {
    font-size: 12px;
    padding: 6px 18px;
  }
}

.works_archive_page_navigation {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .works_archive_page_navigation {
    margin-top: 40px;
  }
}

.works_archive_main_cats {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .works_archive_main_cats {
    margin-top: 40px;
  }
}

.works_cats_wrapper {
  display: flex;
  gap: clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .works_cats_wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

.works_cats_wrapper + .works_cats_wrapper {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .works_cats_wrapper + .works_cats_wrapper {
    margin-top: 32px;
  }
}

.works_cats_title {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  padding: 10px 20px;
  background: #1C55AF;
  flex-shrink: 0;
  width: 100%;
  max-width: 124px;
  text-align: center;
  height: fit-content;
}

.works_cats_lists {
  display: flex;
  gap: 4px 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .works_cats_lists {
    gap: 8px;
  }
}

.works_cats_list a {
  font-size: 14px;
  white-space: nowrap;
  background-color: #59A2E9;
  color: #fff;
  padding: 10px 24px;
  line-height: 1;
  border-radius: 30px;
  display: block;
}
@media (max-width: 768px) {
  .works_cats_list a {
    padding: 6px 18px;
  }
}

@media (min-width: 769px) {
  .works_cats_list a:hover {
    background-color: #1C55AF;
  }
}

/* news - works_single_main
------------------------------ */
.works_single_main {
  padding: 130px 0;
}
@media (max-width: 768px) {
  .works_single_main {
    padding: 60px 0;
  }
}

.works_single_main_article {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .works_single_main_article {
    margin-top: 40px;
  }
}

.works_article {
  padding-top: 60px;
  border-top: 2px dotted #1C55AF;
}

.works_article_title {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .works_article_title {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.works_article_tags {
  display: flex;
  gap: 10px 15px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .works_article_tags {
    margin-top: 20px;
    gap: 6px 10px;
  }
}

.works_article_tags + .works_article_tags {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .works_article_tags + .works_article_tags {
    margin-top: 6px;
  }
}

.works_article_tag {
  font-size: 14px;
  white-space: nowrap;
  background-color: #59A2E9;
  color: #fff;
  padding: 10px 24px;
  line-height: 1;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .works_article_tag {
    font-size: 12px;
    padding: 6px 18px;
  }
}

.works_article_body {
  display: flex;
  gap: clamp(30px, 4.6666666667vw, 70px);
  margin-top: 32px;
}
@media (max-width: 768px) {
  .works_article_body {
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
  }
}

.works_article_imgs {
  width: 56%;
  max-width: 700px;
  min-width: 350px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .works_article_imgs {
    min-width: auto;
    width: 100%;
  }
}

.works_article_img + .works_article_img {
  margin-top: 24px;
}

.works_article_body_texts {
  width: 100%;
  flex-grow: 1;
}

.works_article_body_texts dl {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(90px, 11.3333333333vw, 170px) auto;
  font-weight: 700;
}
@media (max-width: 768px) {
  .works_article_body_texts dl {
    grid-template-columns: 1fr;
    line-height: 1.6;
  }
}

.works_article_body_texts dt {
  padding: 12px 20px 20px clamp(10px, 2vw, 30px);
  border-bottom: 1px solid #1C55AF;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .works_article_body_texts dt {
    padding: 20px 20px 4px;
    border: none;
  }
}

.works_article_body_texts dd {
  padding: 12px 20px 20px clamp(10px, 2vw, 30px);
  border-bottom: 1px solid #D3D3D3;
  position: relative;
  font-weight: 500;
}
@media (max-width: 768px) and (max-width: 768px) {
  .works_article_body_texts dd {
    padding: 0 20px 16px;
  }
}

.works_article_body_texts dd::before {
  content: "";
  position: absolute;
}
@media (max-width: 768px) {
  .works_article_body_texts dd::before {
    height: 1%;
    width: 30%;
    bottom: 0;
    left: 0;
    background: #1C55AF;
  }
}

.works_article_body_text {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .works_article_body_text {
    margin-top: 20px;
    line-height: 1.6;
  }
}

/* company - company_greeting
------------------------------ */
.company_greeting {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .company_greeting {
    margin-top: 60px;
  }
}

.company_greeting_blocks {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .company_greeting_blocks {
    margin-top: 30px;
  }
}

.company_greeting_block {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
}
@media (max-width: 768px) {
  .company_greeting_block {
    flex-direction: column;
    gap: 26px;
  }
}

.company_greeting_block + .company_greeting_block {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .company_greeting_block + .company_greeting_block {
    margin-top: 60px;
  }
}

.company_greeting_image {
  width: 39.2%;
  max-width: 490px;
  flex-shrink: 0;
  min-width: 280px;
}
@media (max-width: 768px) {
  .company_greeting_image {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

.company_greeting_image_wrapper {
  width: 100%;
}

.company_greeting_image_text {
  line-height: 1.1;
  font-size: clamp(20px, 8vw, 30px);
  font-weight: 700;
  margin-top: 6px;
}

.company_greeting_image_text span {
  font-size: 14px;
  font-weight: 500;
}

.company_greeting_text + .company_greeting_text {
  margin-top: 20px;
}

/* company - company_policy
------------------------------ */
.company_policy {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .company_policy {
    margin-top: 60px;
  }
}

.company_policy_content {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .company_policy_content {
    flex-direction: column-reverse;
    gap: 26px;
    margin-top: 40px;
  }
}

.company_policy_texts {
  width: 100%;
  flex-grow: 1;
}

.company_policy_lead {
  color: #1C55AF;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
}

.company_policy_text {
  margin-top: 20px;
}

.company_policy_points {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .company_policy_points {
    margin-top: 24px;
  }
}

.company_policy_point {
  background-color: #F5F5F5;
  border-radius: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(10px, 1.6vw, 24px);
  padding: 15px 30px 17px 55px;
}
@media (max-width: 1300px) {
  .company_policy_point {
    flex-direction: column;
    max-width: 580px;
  }
}
@media (max-width: 768px) {
  .company_policy_point {
    max-width: 460px;
    margin-inline: auto;
    padding: 15px 22px 17px 40px;
  }
}

.company_policy_point + .company_policy_point {
  margin-top: 10px;
}

.company_policy_point_head {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #884D23;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 32px;
}
.company_policy_point_head::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: url(../images/sub/icon_check_company_policy.svg) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.company_policy_point_number {
  font-size: 30px;
  line-height: 1;
}

.company_policy_point_body {
  color: #1C55AF;
  font-size: clamp(18px, 1.3333333333vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  flex-grow: 1;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .company_policy_point_body {
    text-align: center;
  }
}

.company_policy_point_body span {
  display: inline-block;
}

.company_policy_image {
  width: 39.2%;
  max-width: 490px;
  flex-shrink: 0;
  min-width: 280px;
}
@media (max-width: 768px) {
  .company_policy_image {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

/* company - company_office
------------------------------ */
.company_office {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .company_office {
    margin-top: 70px;
  }
}

.company_office_block {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .company_office_block {
    margin-top: 40px;
  }
}

.company_office_block + .company_office_block {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .company_office_block + .company_office_block {
    margin-top: 70px;
  }
}

.company_office_block_wrapper {
  display: flex;
  gap: clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .company_office_block_wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.company_office_block_image {
  width: 56%;
  max-width: 700px;
  flex-shrink: 0;
  min-width: 350x;
}
@media (max-width: 768px) {
  .company_office_block_image {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

.company_office_block_texts {
  width: 100%;
  flex-grow: 1;
}

.company_office_block_title {
  width: 100%;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  padding: 10px 20px;
  background-color: #1C55AF;
}

.company_office_block_address {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .company_office_block_address {
    margin-top: 16px;
  }
}

.company_office_block_map {
  width: 100%;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .company_office_block_map {
    margin-top: 20px;
  }
}

.company_office_block_map iframe {
  width: 100%;
  aspect-ratio: 1250/400;
}
@media (max-width: 768px) {
  .company_office_block_map iframe {
    aspect-ratio: 5/3;
  }
}

/* company - company_information
------------------------------ */
.company_information {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .company_information {
    margin-top: 70px;
  }
}

.company_information_content {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .company_information_content {
    margin-top: 30px;
  }
}

.company_information_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6666666667vw, 40px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .company_information_images {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.company_information_image {
  width: 100%;
}

.company_information_image_caption {
  text-align: center;
  color: #1C55AF;
  font-size: clamp(20px, 1.7333333333vw, 26px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .company_information_image_caption {
    font-size: 18px;
  }
}

/* company - company_history
------------------------------ */
.company_history {
  margin-top: 130px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .company_history {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.company_history_table {
  margin-top: 70px;
  width: 100%;
  max-width: 1150px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .company_history_table {
    margin-top: 40px;
  }
}

.company_history_table tr {
  column-gap: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-bottom: 22px;
  padding-left: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .company_history_table tr {
    grid-template-columns: 1fr;
    padding-left: 32px;
    padding-bottom: 18px;
  }
}

.company_history_table tr::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #1C55AF;
  border-radius: 50%;
  left: 0;
  top: 6px;
}

.company_history_table tr:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #1C55AF;
  left: 7px;
  top: 8px;
}

.company_history_table th,
.company_history_table td {
  line-height: 1.6;
}

.company_history_table th {
  color: #1C55AF;
  font-weight: 700;
}

.company_history_table td {
  font-weight: 500;
}

/* sub - components
------------------------------ */
.sub_subtitle_bg_blue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .sub_subtitle_bg_blue {
    gap: 4px;
  }
}

.sub_subtitle_bg_blue span {
  display: block;
  padding: 2px 6px;
  line-height: 1.6;
  background-color: #1C55AF;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 27px);
}

@media (max-width: 768px) {
  .sub_subtitle_bg_blue span.pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .sub_subtitle_bg_blue span.sp {
    display: none;
  }
}

.sub_table dl {
  display: grid;
  grid-template-columns: clamp(200px, 23.3333333333vw, 350px) auto;
}
@media (max-width: 768px) {
  .sub_table dl {
    grid-template-columns: 1fr;
  }
}

.sub_table dt {
  border-bottom: 1px solid #1C55AF;
  padding: 20px 30px;
  color: #1C55AF;
}
@media (max-width: 768px) {
  .sub_table dt {
    border: none;
    line-height: 1.6;
    padding: 20px 20px 0;
  }
}

.sub_table dd {
  border-bottom: 1px solid #D3D3D3;
  padding: 20px 30px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .sub_table dd {
    line-height: 1.6;
    padding: 0 20px 20px;
  }
}

.sub_table dd::before {
  content: "";
  position: absolute;
}
@media (max-width: 768px) {
  .sub_table dd::before {
    height: 1%;
    width: 30%;
    bottom: 0;
    left: 0;
    background: #1C55AF;
  }
}

/* business - business_details
------------------------------ */
.business_details {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .business_details {
    margin-top: 70px;
  }
}

.business_details_content {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .business_details_content {
    margin-top: 30px;
  }
}

.business_details_subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .business_details_subtitle {
    gap: 4px;
  }
}

.business_details_subtitle p {
  padding: 2px 6px;
  line-height: 1.6;
  background-color: #1C55AF;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 27px);
}

.business_details_lead {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .business_details_lead {
    margin-top: 16px;
    text-align: left;
  }
}

.business_details_image {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .business_details_image {
    margin-top: 20px;
  }
}

/* business - business_strengths
------------------------------ */
.business_strength {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .business_strength {
    margin-top: 70px;
  }
}

.business_subtitle_strength {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .business_subtitle_strength {
    margin-top: 30px;
  }
}

.business_strength_cards {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .business_strength_cards {
    margin-top: 40px;
  }
}

.business_strength_card {
  display: flex;
  gap: clamp(20px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .business_strength_card {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.business_strength_card:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .business_strength_card:nth-of-type(2n) {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.business_strength_card + .business_strength_card {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .business_strength_card + .business_strength_card {
    margin-top: 50px;
  }
}

.business_strength_card_texts {
  width: 100%;
  flex-grow: 1;
  margin-top: clamp(0px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .business_strength_card_texts {
    margin-top: 6px;
  }
}

.business_strength_card_title {
  width: 100%;
}

.business_strength_card_title_head {
  display: flex;
  gap: 7px;
  line-height: 1;
  color: #884D23;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  align-items: center;
}

.business_strength_card_title_head_number {
  font-size: 40px;
}
@media (max-width: 768px) {
  .business_strength_card_title_head_number {
    font-size: 24px;
  }
}

.business_strength_card_title_body {
  margin-top: 14px;
  color: #1C55AF;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .business_strength_card_title_body {
    margin-top: 8px;
    font-size: 20px;
  }
}

.business_strength_card_title_body span {
  display: inline-block;
}

.business_strength_card_text {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .business_strength_card_text {
    margin-top: 10px;
  }
}

.business_strength_card_image {
  width: 56%;
  max-width: 700px;
  flex-shrink: 0;
  min-width: 320px;
}
@media (max-width: 768px) {
  .business_strength_card_image {
    width: 100%;
    max-width: none;
    min-width: auto;
  }
}

/* business - business_technology
------------------------------ */
.business_technology {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .business_technology {
    margin-top: 70px;
  }
}

.business_technology_lead {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 768px) {
  .business_technology_lead {
    margin-top: 40px;
    text-align: left;
  }
}

.business_technology_cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 clamp(20px, 3.0666666667vw, 46px);
  margin-top: 74px;
}
@media (max-width: 768px) {
  .business_technology_cards {
    margin-top: 40px;
    gap: 0 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.business_technology_card {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .business_technology_card {
    margin-bottom: 40px;
  }
}

.business_technology_card_image {
  width: 100%;
}

.business_technology_card_title {
  margin-top: 16px;
  font-size: clamp(20px, 1.7333333333vw, 26px);
  font-weight: 700;
  color: #1C55AF;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .business_technology_card_title {
    margin-top: 10px;
  }
}

.business_technology_card_text {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .business_technology_card_text {
    margin-top: 6px;
  }
}

/* business - business_products
------------------------------ */
.business_products {
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .business_products {
    margin-top: 70px;
    margin-bottom: 60px;
  }
}

/* recruit - recruit_links
------------------------------ */
.recruit_links {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .recruit_links {
    margin-top: 70px;
  }
}

.recruit_links_list {
  display: flex;
  align-items: center;
  gap: 14px clamp(10px, 2vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .recruit_links_list {
    gap: 14px 6px;
  }
}

.recruit_links_list_item a {
  background-color: #1C55AF;
  display: block;
  padding: 17px 16px 40px;
  border: 1px solid #1C55AF;
  position: relative;
  color: #fff;
  width: clamp(180px, 15.0666666667vw, 226px);
  text-align: center;
  font-size: clamp(16px, 1.2vw, 18px);
}
@media (max-width: 768px) {
  .recruit_links_list_item a {
    width: 164px;
    line-height: 1.4;
    font-size: 15px;
    padding: 16px 10px 40px;
  }
}

@media (min-width: 769px) {
  .recruit_links_list_item a:hover {
    background-color: #fff;
    color: #1C55AF;
  }
}

.recruit_links_list_item a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 20px;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) rotate(90deg);
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat center center/contain;
}

@media (min-width: 769px) {
  .recruit_links_list_item a:hover::before {
    background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
  }
}

.recruit_links_list_item a span {
  display: inline-block;
}

/* recruit - recruit_message
------------------------------ */
.recruit_message {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .recruit_message {
    margin-top: 70px;
  }
}

.recruit_subtitle_message {
  margin-top: 50px;
}

.recruit_message_text {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .recruit_message_text {
    margin-top: 30px;
    text-align: left;
  }
}

.recruit_message_swiper {
  margin: 70px calc(50% - 50vw) 0;
  width: 100vw;
}
@media (max-width: 768px) {
  .recruit_message_swiper {
    margin-top: 40px;
  }
}

.recruit_message_swiper_wrapper {
  transition-timing-function: linear;
}

.recruit_message_swiper_slide {
  width: 400px;
}
@media (max-width: 768px) {
  .recruit_message_swiper_slide {
    width: 200px;
  }
}

.recruit_message_swiper_slide img {
  width: 100%;
}

/* recruit - recruit_features
------------------------------ */
.recruit_features {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .recruit_features {
    margin-top: 70px;
  }
}

.recruit_features_message {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .recruit_features_message {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .sub_subtitle_bg_blue.recruit_features_message span {
    font-size: clamp(19px, 1.8vw, 27px);
  }
}

.recruit_features_text {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit_features_text {
    margin-top: 30px;
    text-align: left;
  }
}

/* recruit - recruit_voices
------------------------------ */
.recruit_voices {
  margin-top: 130px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .recruit_voices {
    margin-top: 70px;
  }
}

.recruit_voices_cards {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .recruit_voices_cards {
    margin-top: 40px;
  }
}

.recruit_voices_card {
  padding: clamp(20px, 3.3333333333vw, 50px);
  background: #F5F5F5;
}

.recruit_voices_card + .recruit_voices_card {
  margin-top: 50px;
}

.recruit_voices_card_content {
  display: flex;
  gap: clamp(16px, 4vw, 60px);
}
@media (max-width: 768px) {
  .recruit_voices_card_content {
    flex-direction: column;
    gap: 20px;
  }
}

.recruit_voices_card:nth-of-type(2n) .recruit_voices_card_content {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .recruit_voices_card:nth-of-type(2n) .recruit_voices_card_content {
    flex-direction: column;
    gap: 26px;
  }
}

.recruit_voices_card_image {
  width: 42.6086956522%;
  max-width: 490px;
  flex-shrink: 0;
  min-width: 220px;
}
@media (max-width: 768px) {
  .recruit_voices_card_image {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    margin: 0 auto;
  }
}

.recruit_voices_card_figure {
  width: 100%;
}

.recruit_voices_card_figure figcaption {
  padding: 20px 25px;
  background: #1C55AF;
  color: #fff;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .recruit_voices_card_figure figcaption {
    padding: 12px 16px;
  }
}

.recruit_voices_card_texts {
  width: 100%;
  flex-grow: 1;
}

.recruit_voices_card_texts dl {
  display: grid;
  grid-template-columns: 1fr;
}

.recruit_voices_card_texts dt {
  font-size: clamp(20px, 1.7333333333vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  color: #1C55AF;
}

.recruit_voices_card_texts dt:not(:first-child) {
  margin-top: 30px;
  margin-top: 20px;
}

.recruit_voices_card_texts dd {
  margin-top: 8px;
  line-height: 2;
}
@media (max-width: 768px) {
  .recruit_voices_card_texts dd {
    margin-top: 2px;
  }
}

.recruit_voices_card_texts_image {
  width: 100%;
  margin-top: clamp(20px, 3.6666666667vw, 55px);
}
@media (max-width: 768px) {
  .recruit_voices_card_texts_image {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* recruit - recruit_jobs
------------------------------ */
.recruit_jobs {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .recruit_jobs {
    margin-top: 70px;
  }
}

/* recruit - recruit_entry
------------------------------ */
.recruit_entry {
  margin-top: 130px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .recruit_entry {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.recruit_entry_lead {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit_entry_lead {
    margin-top: 30px;
    text-align: left;
  }
}

.recruit_entry_form {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .recruit_entry_form {
    margin-top: 30px;
  }
}

/* contact - contact_tel
------------------------------ */
.contact_tel {
  margin-top: 130px;
}
@media (max-width: 768px) {
  .contact_tel {
    margin-top: 60px;
  }
}

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

.contact_tel_content {
  margin-top: 70px;
  width: 100%;
  max-width: 672px;
  margin-inline: auto;
  background: #F5F5F5;
  padding: 46px 20px 48px;
}
@media (max-width: 768px) {
  .contact_tel_content {
    margin-top: 30px;
  }
}

.contact_tel_number {
  width: 100%;
  max-width: 294px;
  margin: 0 auto;
  width: 100%;
  margin-inline: auto;
}

.contact_tel_time {
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact_tel_time {
    margin-top: 14px;
  }
}

.contact_tel_time span {
  display: inline-block;
}

/* contact - contact_mail
------------------------------ */
.contact_mail {
  margin-block: 130px;
}
@media (max-width: 768px) {
  .contact_mail {
    margin-block: 60px;
  }
}

.contact_mail_lead {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact_mail_lead {
    margin-top: 30px;
    text-align: left;
  }
}

/* form
------------------------------ */
.form_wrapper {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .form_wrapper {
    margin-top: 14px;
  }
}

.form_row {
  display: grid;
  grid-template-columns: clamp(270px, 21.8666666667vw, 328px) 1fr;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.form_row_center {
  align-items: center;
}

.form_title {
  position: relative;
  line-height: 2.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #59A2E9;
  padding: 16px 20px;
  background-color: #1C55AF;
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .form_title {
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #59A2E9;
  }
}

.form_title:not(last-of-type) {
  border-bottom: 1px solid #fff;
}
.form_title_small {
  font-size: 14px;
  font-weight: 400;
}

.form_title.form_title_start {
  align-items: flex-start;
}

.form_title_must,
.form_title_any {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  background-color: #59A2E9;
  border-radius: 50px;
  width: 100%;
  max-width: 57px;
  text-align: center;
  padding: 8px 5px;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .form_title_must,
  .form_title_any {
    font-size: 13px;
    padding: 5px 5px;
    margin-top: 0;
  }
}

.form_input {
  line-height: 187.5%;
  letter-spacing: 0;
  display: grid;
  align-items: center;
  padding: 12px 20px 11px;
  min-height: 74px;
  border-top: 1px solid #59A2E9;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .form_input {
    padding: 0 15px 10px;
    border: none;
    min-height: auto;
  }
}

.form_input:last-of-type {
  border-bottom: 1px solid #1C55AF;
}
@media (max-width: 768px) {
  .form_input:last-of-type {
    border: none;
  }
}

.form_input_example {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999999;
  margin-top: 1px;
}

.form_input_request {
  padding: 25px 24px;
}

.form_input_about {
  padding: 19px 24px 23px;
}

.form_input_years {
  display: flex;
  align-items: center;
  gap: 0 9px;
}

.form_input input[type=text],
.form_input input[type=tel],
.form_input input[type=email] {
  width: 100%;
  background-color: #F5F5F5;
  padding: 10px 15px;
}
@media (max-width: 768px) {
  .form_input input[type=text],
  .form_input input[type=tel],
  .form_input input[type=email] {
    padding: 10px 10px;
  }
}

.form_input_name input[type=text] {
  max-width: 460px;
}

.form_input_tel input[type=tel] {
  max-width: 460px;
}

.form_input_mail input[type=email] {
  max-width: 460px;
}

.form_input_post {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form_input_post {
  display: flex;
  align-items: center;
  gap: 10px 12px;
}

.form_input .form_input_post input[type=text] {
  width: 100%;
  max-width: 355px;
}

.form_input_address_text input[type=text] {
  width: 100%;
  max-width: 460px;
  margin-top: 10px;
}

.form_input_address {
  margin-top: 8px;
}

.form_input_textarea textarea {
  width: 100% !important;
  max-width: 881px;
  height: 274px !important;
  padding: 10px 15px;
  background-color: #F5F5F5;
}

.form_input_text {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding-left: 15px;
}

.form_input_text::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.form_input_lot {
  padding: 25px 24px 22px;
}

.form_input_birth_calender {
  width: fit-content;
  background-color: #1C55AF;
  padding: 5px 15px;
}

.form_radio {
  padding: 11px 20px;
}
@media (max-width: 768px) {
  .form_radio {
    padding-top: 0;
  }
}

.form_radio_buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  gap: 10px 45px;
}
@media (max-width: 768px) {
  .form_radio_buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

.form_radio_button {
  letter-spacing: 0.05em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  appearance: none;
  width: 40px;
  height: 40px;
  max-width: 100%;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  background-color: #F5F5F5;
  outline: none;
  border-radius: 50%;
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%);
  transition: all ease-out 250ms;
}

.form_radio_button input[type=radio]:checked:before {
  transform: scale(1) translate(-50%, -50%);
  background-color: #1C55AF;
}

.form_radio_button label {
  display: flex;
  align-items: center;
  gap: 0 9px;
  letter-spacing: 0.05em;
}

.form_input_select {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: url(../images/common/icon_triangle_arrow_bottom_white.svg) no-repeat right 14px center/22px 13px, linear-gradient(270deg, #1C55AF 0, #1C55AF 50px, #1C55AF 50px, #1C55AF 100%);
}

.form_input_select select {
  width: 100%;
  cursor: pointer;
  padding: 10px 60px 10px 15px;
}

.form .mfp_err {
  display: none;
}

.form_file .mfp_element_file {
  font-size: 14px;
  max-width: 100%;
  padding: 7px 8px;
}

.form_privacy_wrapper {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .form_privacy_wrapper {
    margin-top: 20px;
  }
}

.form_privacy {
  height: 178px;
  overflow: scroll;
  background-color: #F5F5F5;
  padding: 35px 40px;
}
@media (max-width: 768px) {
  .form_privacy {
    height: 150px;
    padding: 15px 20px;
    margin-top: 15px;
  }
}

.form_privacy_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #1C55AF;
}

.form_privacy_text {
  line-height: 180%;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .form_privacy_text {
    margin-top: 10px;
  }
}

.form_privacy_text p + p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form_privacy_text p + p {
    margin-top: 10px;
  }
}

.form_checkbox {
  display: flex;
  align-items: center;
  height: 100%;
}

.form_checkbox_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.form_checkbox_confirmation {
  justify-content: center;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .form_checkbox_confirmation {
    margin-top: 20px;
  }
}

.form_checkbox_label.form_checkbox_label_none {
  display: none;
}

.form_checkbox_parts {
  position: relative;
  display: inline-block;
  padding-left: 48px;
}

.form_checkbox_parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 35px;
  height: 35px;
  border: none;
  background-color: #F5F5F5;
}

.form_checkbox_input {
  display: none;
}

.form_checkbox_input:checked + .form_checkbox_parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 12px;
  height: 24px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 3px solid #1C55AF;
  border-right: 3px solid #1C55AF;
}

.checkbox_err .mfp_err {
  display: none;
  width: 228px;
  max-width: 100%;
  margin: auto;
  padding: 5px 0;
}

.form_btn {
  position: relative;
  width: 100%;
  max-width: 290px;
  margin: 50px auto 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 260px;
    margin: 30px auto 0;
  }
}

.mfp_element_button {
  background-color: #59A2E9;
}

/* contact-thanks - contact_thanks
------------------------------ */
.contact-thanks {
  margin-top: 100px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .contact-thanks {
    margin-top: 50px;
    margin-bottom: 70px;
  }
}

.contact-thanks_text {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contact-thanks_text {
    margin-top: 20px;
  }
}

.contact-thanks_btn {
  margin-top: 50px;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .contact-thanks_btn {
    margin-top: 20px;
  }
}

/* 404
------------------------------ */
.not_found {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .not_found {
    margin-top: 50px;
  }
}

.not_found_text {
  text-align: center;
}

.not_found_btn {
  text-align: center;
  margin-top: 50px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .not_found_btn {
    margin-top: 30px;
  }
}

.other-page_cta01 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .other-page_cta01 {
    margin-top: 50px;
  }
}

/* footer
------------------------------ */
.footer {
  margin: 130px 0 0;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 70px;
  }
}

.footer_inner {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.footer_texts {
  width: 100%;
  max-width: clamp(340px, 33.3333333333vw, 500px);
  min-width: 340px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer_texts {
    min-width: auto;
    text-align: center;
    margin-inline: auto;
  }
}

.footer_logo {
  width: 100%;
  max-width: 400px;
  margin-bottom: 34px;
}

.footer_address {
  width: 100%;
  padding-top: 34px;
  border-top: 1px solid #1C55AF;
  font-weight: 400;
  line-height: 1.56;
  letter-spacing: 0.05em;
}

.footer_address span {
  display: inline-block;
}

.footer_navs {
  display: flex;
  width: 100%;
  max-width: 450px;
  gap: clamp(30px, 5.3333333333vw, 80px);
}
@media (max-width: 768px) {
  .footer_navs {
    display: none;
  }
}

.footer_nav {
  width: 100%;
  max-width: 120px;
  font-size: 14px;
}

.footer_nav_item a {
  display: inline-block;
  white-space: nowrap;
  padding: 0 6px;
  position: relative;
  color: #1C55AF;
}

.footer_nav_item a::before {
  content: "";
  background-color: #1C55AF;
  bottom: 1px; /* 要素の下端からの距離 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  opacity: 0; /* 不透明度 */
  position: absolute; /* 絶対位置指定 */
  transition: all 0.3s; /* アニメーション効果を追加 */
  width: 100%; /* 要素の幅 */
}

.footer_nav_item a:hover::before {
  bottom: 3px; /* 下線を上から下に移動 */
  opacity: 1; /* 不透明度を変更してフェードイン */
}

.footer_nav_sub {
  padding-left: 30px;
}

.footer_nav_sub_item a {
  position: relative;
  color: #000;
  display: block;
}

.footer_nav_sub_item a span {
  position: relative;
}

.footer_nav_sub_item a span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 13px;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/common/icon_arrow_right_blue.svg) no-repeat center center/contain;
}

.footer_copyright {
  color: #fff;
  margin-top: 120px;
  padding: 40px 0;
  background: #1C55AF;
  text-align: center;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 60px;
    padding: 16px 0 100px;
  }
}

.footer_copyright small {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 768px) {
  .footer_copyright small {
    display: block;
    width: 60%;
    margin: 0 auto;
  }
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #1C55AF;
  border: 1px solid #1C55AF;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .page_top {
    right: 16px;
    bottom: 100px;
  }
}

@media (min-width: 769px) {
  .page_top:hover {
    color: #1C55AF;
    background-color: #fff;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%) rotate(-45deg);
}

@media (min-width: 769px) {
  .page_top:hover::before {
    border-color: #1C55AF;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
  background-color: #fff;
  border: 1px solid #1C55AF;
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: flex;
}

.foot_menu_tel {
  width: 50%;
}

.foot_menu_tel a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #fff;
  background-color: #1C55AF;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 10px;
  width: 100%;
}

.foot_menu_tel a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/common/icon_tel_white.svg) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #1C55AF;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 10px;
  width: 100%;
}

.foot_menu_mail a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 15px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/common/icon_mail_blue.svg) no-repeat center center/contain;
}

/*# sourceMappingURL=style.css.map */
