@charset "UTF-8";
:root {
  --sb: 17px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  color: #000;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f1e1;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

.flex {
  display: flex;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.space_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.super_wrap {
  margin-left: auto;
  margin-right: auto;
  min-width: calc(1400px - var(--sb));
  position: relative;
  overflow-x: hidden;
}

.vertical_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 87px;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
  overflow: hidden;
}
.vertical_wrap > div:first-child {
  background: center/cover no-repeat url("../image/header/vertical.svg");
  height: 528px;
  width: 87px;
}
.vertical_wrap > div:last-child {
  background-color: #5bc6de;
  height: 100%;
  width: 100%;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1275px;
  position: relative;
}

.logo_wrap {
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  font-feature-settings: normal;
}
.logo_wrap .img_wrap {
  margin-top: 18px;
}

main {
  position: relative;
  max-width: 1600px;
  padding-left: 155px;
  padding-bottom: 230px;
  margin-left: auto;
  margin-right: auto;
}
main .inner {
  padding-left: 100px;
  padding-right: 160px;
  margin-left: 0;
  max-width: none;
}

.top_section {
  position: relative;
}
.top_section .inner {
  position: absolute;
  top: -622px;
}

.white_section {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px 0px 0px 30px;
}

.common_section {
  padding-top: 70px;
  padding-bottom: 72px;
}
.h2_wrap {
  width: 320px;
  padding-right: 20px;
  flex-shrink: 0;
}
.h2_wrap .en_head {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #2a72c1;
  margin-bottom: 9px;
}
.h2_wrap .en_head:before {
  content: "";
  display: inline-block;
  background: center/cover no-repeat url("../image/common/h2.svg");
  height: 23px;
  width: 23px;
  margin-right: 11px;
}
.h2_wrap h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.75;
  line-height: 1.3714285714;
}

h3 {
  font-weight: 700;
  font-size: 26px;
  color: #2a72c1;
  line-height: 1.6153846154;
  margin-bottom: 25px;
  margin-bottom: 36px;
  position: relative;
}
h3:after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2a72c1;
  margin-top: 10px;
  position: absolute;
  bottom: -16px;
  left: 0;
}
h3.with_num {
  padding-left: 96px;
  position: relative;
}
h3 .h3_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-top: 1px solid #2a72c1;
  position: absolute;
  left: 0;
  top: -14px;
  font-weight: bold;
  line-height: 1;
}
h3 .h3_num::before, h3 .h3_num::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  position: absolute;
  top: 0;
  background-color: #2a72c1;
}
h3 .h3_num::before {
  left: 0;
}
h3 .h3_num::after {
  right: 0;
}
h3 .h3_num span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d4e3f3;
  width: 52px;
  height: 52px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #2a72c1;
}

h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 8px;
}
h4 + h5 {
  margin-top: 16px;
}

h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}
h5:before {
  content: "・";
  margin-right: 0.5em;
}

p + p {
  margin-top: 1.75em;
}
p + h3 {
  margin-top: 60px;
}
p + h4 {
  margin-top: 62px;
}
p + h5 {
  margin-top: 24px;
}

table,
td,
th {
  border: 1px solid #b3b3b3;
  border-collapse: collapse;
}

td,
th {
  text-align: left;
  padding: 4px 12px;
}

.right_content {
  padding-top: 46px;
  width: 100%;
}

.more_btn_wrap a {
  color: #ffffff;
  width: 250px;
  height: 60px;
  border-radius: 30px;
  background-color: #2a72c1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.more_btn_wrap span {
  margin-left: 26px;
  margin-right: -24px;
}
.more_btn_wrap span:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: center/cover no-repeat url("../image/common/w_arrow.svg");
}

.under_page_title_section {
  top: -622px;
  margin-bottom: -226px;
}
.under_page_title_section .inner {
  left: -68px;
  padding-left: 0;
  padding-right: 0;
  height: 240px;
  background-color: #2a72c1;
  border-radius: 0px 32px 32px 0px;
  left: 87px;
  max-width: none;
  top: 0;
  position: relative;
  margin-left: 0;
  margin-right: 0;
  width: calc(100% - 34px - 87px);
}
.under_page_title_section .inner:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(42, 114, 193) 12.5%, rgba(42, 114, 193, 0) 99.97%);
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.under_page_title_section .inner:after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 240px;
  background: center/cover no-repeat url("../image/header/title_shadow.png");
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
.under_page_title_section .title_wrap {
  position: relative;
  height: 240px;
  width: 1480px;
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
}
.under_page_title_section .bg_color {
  background: linear-gradient(45deg, rgb(42, 114, 193) 12.5%, rgba(42, 114, 193, 0) 99.97%);
  opacity: 0.25;
  position: absolute;
  z-index: 0;
  height: 240px;
  width: 100%;
}
.under_page_title_section .shadow_wrap {
  background: linear-gradient(90deg, rgba(101, 153, 210, 0) 0%, rgba(42, 114, 193, 0.5) 100%);
  background: center/cover repeat-y url("../image/header/title_shadow.png");
  height: 100%;
  width: 28px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.under_page_title_section .bg_logo_wrap {
  position: absolute;
  background: center/cover no-repeat url("../image/header/bg_logo2.svg");
  height: 76px;
  width: 435px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.24;
  z-index: 1;
}
.under_page_title_section .h1_wrap {
  text-align: center;
  color: #ffffff;
  opacity: 0.9;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
  width: calc(100vw - var(--sb));
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 27px), -50%);
}
.under_page_title_section .h1_wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 45px;
  background: center/cover no-repeat url("../image/header/bg_logo2.svg");
  height: 76px;
  width: 435px;
  opacity: 0.24;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  transform: translate(calc(-50% - 362px), -50%);
}
.under_page_title_section h1 {
  font-size: 44px;
  line-height: 1.4575;
}
.under_page_title_section .en_head {
  letter-spacing: 0.14em;
  font-family: "Montserrat", sans-serif;
}
.under_page_title_section .toc_wrap {
  position: absolute;
  bottom: 0;
  right: 28px;
  z-index: 1;
}
.under_page_title_section .toc_wrap ul {
  display: flex;
  align-items: center;
}
.under_page_title_section .toc_wrap a {
  color: #fff;
}
.under_page_title_section .toc_wrap li {
  display: flex;
  align-items: center;
}
.under_page_title_section .toc_wrap li + li:before {
  content: "";
  display: inline-block;
  background: center/cover no-repeat url("../image/header/toc.png");
  height: 48px;
  width: 48px;
}

.under_page_1st_section {
  position: relative;
  top: -290px;
  margin-bottom: -290px;
  min-height: 360px;
  background-color: rgba(255, 255, 255, 0.95);
}

ul.common li {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}
ul.common li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  display: inline-block;
  width: 10px;
  min-width: 10px;
  height: 3px;
  background-color: #2a72c1;
  margin-right: 20px;
}

.slogan_wrap {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #2a72c1;
}

.img_wraps {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.img_wraps img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.img_wraps.photo3 > div {
  width: calc(33% - 20px);
}

.reverse_section > .inner > .flex {
  flex-flow: row-reverse;
}
.reverse_section .h2_wrap {
  padding-left: 60px;
  text-align: right;
  padding-right: 0;
}

.common_wrap {
  background-color: #fff;
  border: #2a72c1 2px solid;
  border-radius: 15px;
  padding: 15px 20px 14px;
}

.white_section {
  position: relative;
}
.white_section .inner_white {
  position: absolute;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.white_section.under_page_1st_section .inner_white {
  background-color: rgba(255, 255, 255, 0.95);
}

.with_logo_M {
  position: relative;
  min-height: 235px;
  display: flex;
  align-items: center;
}
.with_logo_M:before {
  content: "";
  display: block;
  background: center/cover repeat-y url("../image/common/M.png");
  aspect-ratio: 361/233;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

header {
  position: relative;
  height: 801px;
}
header .bg_shadow_wrap {
  width: 100%;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
}
header .bg_wrap {
  position: absolute;
  z-index: 0;
  background: center/cover no-repeat url("../image/header/bg.png");
  height: 801px;
  width: 100%;
}
header .bg_logo_wrap {
  position: absolute;
  z-index: 0;
  bottom: 40px;
  right: 122px;
  background: center/cover no-repeat url("../image/header/bg_logo.svg");
  height: 90px;
  width: 566px;
  mix-blend-mode: soft-light;
}
header .M_wrap {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background: center/cover no-repeat url("../image/header/M.svg");
  height: 549px;
  width: 610px;
  opacity: 0.85;
}
header .inner {
  max-width: none;
  padding-left: 100px;
  padding-right: 50px;
  padding-top: 40px;
}
header .logo_wrap {
  margin-right: 20px;
  position: relative;
  z-index: 1;
}
header .header_menu_wrap {
  margin-left: auto;
  position: relative;
  z-index: 1;
}
header .header_menu_wrap li {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_menu_wrap li:before {
  content: "|";
  color: #fff;
}
header .header_menu_wrap li:last-child:before {
  content: none;
}
header .header_menu_wrap li:last-child a {
  background: #031d66;
  border-radius: 20px;
  width: 180px;
  height: 40px;
  text-align: center;
  padding: 0;
}
header .header_menu_wrap li:last-child a span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: center/cover no-repeat url("../image/common/w_arrow.svg");
  margin-left: 14px;
}
header .header_menu_wrap a {
  color: #fff;
  padding-left: 26px;
  padding-right: 26px;
  font-size:18px;
}

@media screen and (min-width: 1600px) {
  header .bg_wrap {
    background-size: 100% 100%;
  }
}
footer {
  background-color: #2a72c1;
  color: #fff;
  position: relative;
  z-index: 1;
}
footer .inner {
  padding-top: 164px;
  padding-bottom: 54px;
  padding-left: 174px;
  padding-right: 164px;
  max-width: none;
}
footer .rc_wrap {
  display: flex;
  gap: 58px;
  justify-content: center;
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}
footer .rc_wrap > a {
  width: 610px;
  height: 250px;
  border-radius: 23px 23px 23px 30px;
  color: #fff;
  padding-top: 76px;
  padding-left: 88px;
  padding-right: 74px;
  position: relative;
  z-index: 1;
}
footer .rc_wrap > a:hover {
  opacity: 0.95;
}
footer .rc_wrap .en_head {
  letter-spacing: 0.14em;
}
footer .rc_wrap .en_head:before {
  content: "";
  display: inline-block;
  background: center/cover no-repeat url("../image/footer/en.svg");
  height: 23px;
  width: 23px;
}
footer .rc_wrap .jp_title {
  font-size: 35px;
  font-weight: 700;
}
footer .rc_wrap .img_wrap {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
}
footer .rc_wrap .recruit_wrap {
  background-color: #e88274;
}
footer .rc_wrap .recruit_wrap .img_wrap {
  background: center/cover no-repeat url("../image/footer/recruit.svg");
  height: 133px;
  width: 133px;
}
footer .rc_wrap .contact_wrap {
  background-color: #5bc6de;
}
footer .rc_wrap .contact_wrap .img_wrap {
  background: center/cover no-repeat url("../image/footer/contact.svg");
  height: 89px;
  width: 150px;
}
footer .rc_wrap .shadow_wrap {
  z-index: 0;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 68px;
}
footer .rc_wrap .shadow_wrap > div {
  background: center/cover no-repeat url("../image/footer/shadow.png");
  height: 45px;
  width: 600px;
}
footer .address_wrap {
  margin-top: 24px;
  line-height: 1.75;
  letter-spacing: 0.14em;
}
footer .address_wrap span {
  display: inline-block;
}
footer .logo_wrap {
  margin-right: 20px;
}
footer .feature_wrap {
  white-space: nowrap;
}
footer .footer_menu_wrap {
  margin-left: auto;
  padding-top: 38px;
}
footer .footer_menu_wrap a {
  color: #fff;
  padding-left: 26px;
  padding-right: 26px;
}
footer .footer_menu_wrap ul {
  flex-wrap: wrap;
  gap: 20px 0;
}
footer .footer_menu_wrap li {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_menu_wrap li:before {
  content: "|";
  color: #fff;
}
footer .footer_menu_wrap li:last-child:after {
  content: "|";
  color: #fff;
}
footer .copyright_wrap {
  margin-top: 92px;
  letter-spacing: 0.14em;
  text-align: right;
}