@charset "UTF-8";
* {
  outline: unset;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
  border: none;
  outline: none;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

table, tbody, thead {
  width: 100%;
}

button {
  border: none;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

* {
  color: #000000;
}

* {
  font-family: "Zen Maru Gothic", sans-serif;
}

.l_container_lg {
  width: calc(100% - 80px);
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .l_container_lg {
    width: calc(100% - 72px);
  }
}

.l_header {
  width: 100%;
  height: 90px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
@media (max-width: 1280px) {
  .l_header {
    z-index: 1000000;
  }
}
.l_header::before {
  content: "";
  width: 100%;
  height: 297px;
  background-image: url(../img/header/header_deco.png);
  background-size: 1920px;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1600px) {
  .l_header::before {
    height: 278px;
    background-size: 1800px;
  }
}
@media (max-width: 960px) {
  .l_header::before {
    background-size: 1200px;
    height: 140px;
  }
}
@media (max-width: 560px) {
  .l_header::before {
    background-image: url(../img/header/header_deco-sp.png);
    background-position: center bottom;
    background-size: cover;
    height: 18vw;
    min-height: 90px;
  }
}
.l_header.__page-top {
  background-color: #fff;
}
@media (max-width: 960px) {
  .l_header.__page-top {
    position: sticky;
  }
}
.l_header.__page-top::before {
  display: none;
}
@media (max-width: 960px) {
  .l_header {
    height: 60px;
  }
}
.l_header_inner {
  width: 100%;
  max-width: 1420px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.l_header_logo {
  width: 180px;
}
@media (max-width: 960px) {
  .l_header_logo {
    width: 135px;
  }
}

.l_header-gnav {
  max-width: 1024px;
  width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .l_header-gnav {
    display: none;
  }
}
.l_header-gnav_list {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.l_header-gnav_list-item {
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.l_header-gnav_list-item:hover {
  color: #f7979f;
}
.l_header-gnav_list-link {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  color: inherit;
}
@media (max-width: 1280px) {
  .l_header-gnav_list-link {
    font-size: 16px;
  }
}
.l_header-gnav_hidden {
  width: 100%;
  background-color: #21446e;
  min-height: 250px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.l_header-gnav_hidden.is-active {
  opacity: 1;
  pointer-events: visible;
}
.l_header-gnav_hidden-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.l_header-gnav_hidden-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 68px;
  flex-shrink: 0;
}
.l_header-gnav_hidden-title {
  color: #f7979f;
  padding-bottom: 14px;
  display: block;
  min-width: 156px;
  border-bottom: 1px solid #f7979f;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
}
.l_header-gnav_hidden-title-image {
  width: 100%;
  max-width: 266px;
  aspect-ratio: 266/156.74;
  border-radius: 1000px;
  overflow: hidden;
}
.l_header-gnav_hidden-title-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l_header-gnav_hidden-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  width: 100%;
}
.l_header-gnav_hidden-list-item.__wide {
  width: 100%;
}
.l_header-gnav_hidden-list-link {
  font-size: 18px;
  color: #fff;
  padding-right: 21px;
  position: relative;
  font-weight: 500;
}
.l_header-gnav_hidden-list-link:hover::before {
  transform: translate(5px, -50%);
}
.l_header-gnav_hidden-list-link::before {
  content: "";
  width: 10.8px;
  aspect-ratio: 10.78/18.87;
  background: url(../img/common/arrow_toright.png) center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.l_header-ham_btn {
  width: 20px;
  height: 20px;
  position: relative;
  display: none;
}
@media (max-width: 960px) {
  .l_header-ham_btn {
    display: block;
  }
}
.l_header-ham_btn .__line {
  width: 100%;
  height: 2px;
  background-color: #046db1;
  position: absolute;
  left: 0;
}
.l_header-ham_btn .__line:nth-child(1) {
  top: 0;
}
.l_header-ham_btn .__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l_header-ham_btn .__line:nth-child(3) {
  bottom: 0;
}
.l_header-ham_menu {
  max-width: 375px;
  width: 100%;
  height: 100%;
  background-color: #21446e;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 90px;
  transform: translateX(100%);
  transition: 0.5s;
}
.l_header-ham_menu.is-active {
  transform: translate(0);
}
.l_header-ham_menu-close {
  position: absolute;
  width: 22px;
  height: 22px;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.l_header-ham_menu-close::before, .l_header-ham_menu-close::after {
  content: "";
  width: 130%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.l_header-ham_menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l_header-ham_menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l_header-ham_menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.l_header-ham_scroll-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: scroll;
  padding: 0 40px;
}
.l_header-ham_list-item {
  border-bottom: 1px solid #fff;
}
.l_header-ham_list-link {
  display: block;
  font-size: 18px;
  color: #f7979f;
  font-weight: 700;
  padding: 12px 0;
  position: relative;
}
.l_header-ham_list-link::before {
  content: "";
  width: 7.5px;
  aspect-ratio: 7.5/13.2;
  background: url(../img/common/arrow_toright.png) center/cover;
  position: absolute;
  top: 50%;
  right: 7.5px;
  transform: translateY(-50%);
}
.l_header-ham_list-toggle {
  display: block;
  font-size: 18px;
  color: #f7979f;
  font-weight: 700;
  padding: 12px 0;
  position: relative;
}
.l_header-ham_list-toggle.open::before {
  transform: translateY(-50%) rotate(180deg);
}
.l_header-ham_list-toggle::before {
  content: "";
  width: 13.2px;
  aspect-ratio: 13.2/7.5;
  background: url(../img/common/arrow_tobottom-white.png) center/cover;
  position: absolute;
  top: 50%;
  right: 7.5px;
  transform: translateY(-50%);
}
.l_header-ham_list-child {
  padding-left: 18px;
  padding-bottom: 16px;
  display: none;
}
.l_header-ham_list-child-item:nth-child(n+2) {
  margin-top: 6px;
}
.l_header-ham_list-child-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.l_header-ham_other-list {
  margin-top: 28px;
  padding-bottom: 30px;
}
.l_header-ham_other-list-item:nth-child(n+2) {
  margin-top: 4px;
}
.l_header-ham_other-list-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
}
.l_header-ham_other-list-link::before {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.l_footer {
  background-color: #21446e;
  padding-bottom: 40px;
}
@media (max-width: 1280px) {
  .l_footer {
    padding-bottom: 120px;
  }
}
@media (max-width: 560px) {
  .l_footer {
    padding-bottom: 80px;
  }
}

.l_footer-fixed {
  width: 133px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 100000;
  justify-content: center;
  transform: translateY(-50%);
}
@media (max-width: 1600px) {
  .l_footer-fixed {
    width: 90px;
    gap: 8px;
  }
}
@media (max-width: 1280px) {
  .l_footer-fixed {
    flex-direction: row;
    width: 100%;
    height: 140px;
    bottom: 0;
    top: unset;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
    max-width: 960px;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed {
    height: 96px;
  }
}
.l_footer-fixed::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
}
@media (max-width: 1280px) {
  .l_footer-fixed::before {
    display: block;
    top: 27px;
    bottom: unset;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed::before {
    height: 34px;
    top: 18px;
  }
}
.l_footer-fixed_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #000;
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: 50%;
  padding-right: 10px;
  transform: translateX(10px);
  transition: 0.2s;
  height: 220px;
}
@media (max-width: 1600px) {
  .l_footer-fixed_btn {
    height: 180px;
  }
}
@media (max-width: 1280px) {
  .l_footer-fixed_btn {
    width: 50%;
    height: 80px;
    border-radius: 15px 15px 0 0;
    flex-direction: row;
    transform: unset;
    padding: 0 0 10px 0;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed_btn {
    gap: 8px;
    border-radius: 10px 10px 0 0;
    height: 60px;
    padding: 0;
  }
}
.l_footer-fixed_btn:hover {
  transform: translate(0);
}
.l_footer-fixed_btn-icon {
  display: flex;
  width: 48px;
}
@media (max-width: 1600px) {
  .l_footer-fixed_btn-icon {
    width: 40px;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed_btn-icon {
    width: 26px;
  }
}
.l_footer-fixed_btn-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  writing-mode: vertical-rl;
}
@media (max-width: 1600px) {
  .l_footer-fixed_btn-text {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .l_footer-fixed_btn-text {
    writing-mode: unset;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed_btn-text {
    font-size: 15px;
    line-height: 1.25;
  }
}
.l_footer-fixed_btn-text .__blue {
  color: #58cfee;
}
.l_footer-fixed_btn-text .__orange {
  color: #ff9d5e;
}
.l_footer-fixed_sns {
  display: flex;
  flex-direction: column;
  border: 4px solid #000;
  border-radius: 20px 0 0 20px;
  border-right: none;
  padding-right: 10px;
  transform: translateX(10px);
  transition: 0.2s;
  position: relative;
  height: 220px;
  background-color: #fff;
}
@media (max-width: 1600px) {
  .l_footer-fixed_sns {
    height: 180px;
  }
}
@media (max-width: 1280px) {
  .l_footer-fixed_sns {
    width: 100%;
    border-radius: 0;
    border: 2px solid #000;
    transform: unset;
    flex-direction: row;
    height: 60px;
    padding-right: 0;
    border-left: none;
    border-right: none;
  }
}
@media (max-width: 560px) {
  .l_footer-fixed_sns {
    height: 36px;
    border-width: 1px;
  }
}
.l_footer-fixed_sns::before {
  content: "";
  width: 80px;
  height: 1.8px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 5px), -50%);
}
@media (max-width: 1600px) {
  .l_footer-fixed_sns::before {
    width: 50px;
  }
}
@media (max-width: 1280px) {
  .l_footer-fixed_sns::before {
    height: 40px;
    width: 1px;
    transform: translate(-50%, -50%);
  }
}
.l_footer-fixed_sns:hover {
  transform: translate(0);
}
.l_footer-fixed_sns-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}
@media (max-width: 1280px) {
  .l_footer-fixed_sns-btn {
    width: 50%;
    height: 100%;
  }
}
.l_footer-fixed_sns-btn .__line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
}
@media (max-width: 560px) {
  .l_footer-fixed_sns-btn .__line {
    width: 17px;
  }
}
.l_footer-fixed_sns-btn .__insta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
}
@media (max-width: 560px) {
  .l_footer-fixed_sns-btn .__insta {
    width: 16px;
  }
}

.l_footer-contact {
  padding: 90px 0 116px;
  position: relative;
  z-index: 1;
  background-color: inherit;
}
@media (max-width: 960px) {
  .l_footer-contact {
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .l_footer-contact {
    padding-top: 40px;
  }
}
.l_footer-contact_img {
  width: 50%;
  height: 640px;
  position: absolute;
  top: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .l_footer-contact_img {
    height: 250px;
    top: 290px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_img {
    top: 240px;
    height: 240px;
  }
}
.l_footer-contact_img.__left {
  left: 0;
}
.l_footer-contact_img.__right {
  right: 0;
}
.l_footer-contact_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l_footer-contact_title-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .l_footer-contact_title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l_footer-contact_title-inner {
  padding-right: 0 !important;
}
.l_footer-contact_title-text {
  color: #fff;
}
.l_footer-contact_bord-wrap {
  display: flex;
  gap: 60px;
  margin: 84px auto 0;
  max-width: 1065px;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-wrap {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .l_footer-contact_bord-wrap {
    flex-direction: column;
    margin-top: 178px;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-wrap {
    margin-top: 160px;
  }
}
.l_footer-contact_bord {
  width: 50%;
  border-radius: 55px;
  padding: 40px 60px;
}
@media (max-width: 1280px) {
  .l_footer-contact_bord {
    padding: 36px 32px;
  }
}
@media (max-width: 768px) {
  .l_footer-contact_bord {
    width: 100%;
    max-width: 360px;
    border-radius: 30px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord {
    padding: 20px 24px;
  }
}
.l_footer-contact_bord.__for-company {
  background-color: #58cfee;
}
.l_footer-contact_bord.__for-job {
  background-color: #f7979f;
}
.l_footer-contact_bord-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-title {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-title {
    font-size: 20px;
  }
}
.l_footer-contact_bord-list {
  margin-top: 28px;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-list {
    margin-top: 16px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-list {
    margin-top: 12px;
  }
}
.l_footer-contact_bord-list-item {
  padding-left: 48px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-list-item {
    padding-left: 36px;
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-list-item {
    font-size: 12px;
    padding-left: 24px;
  }
}
.l_footer-contact_bord-list-item:nth-child(n+2) {
  margin-top: 8px;
}
.l_footer-contact_bord-list-item::before {
  content: "";
  width: 37px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .l_footer-contact_bord-list-item::before {
    width: 24px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-list-item::before {
    width: 14px;
  }
}
.l_footer-contact_bord-btn {
  background-color: #fff;
  margin: 30px auto 0;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-btn {
    font-size: 14px !important;
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .l_footer-contact_bord-btn {
    margin-top: 14px;
  }
}
.l_footer-contact_bord-btn.__position .__arrow {
  right: 28px;
}
@media (max-width: 960px) {
  .l_footer-contact_bord-btn.__position .__arrow {
    right: 12px;
  }
}

.l_footer-main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 960px) {
  .l_footer-main {
    justify-content: center;
  }
}
.l_footer-main_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l_footer-main_title {
  font-size: 50px;
  color: #fff;
  font-family: ruika, sans-serif;
  writing-mode: vertical-rl;
}
@media (max-width: 560px) {
  .l_footer-main_title {
    font-size: 28px;
  }
}
.l_footer-main_title .__lg {
  font-family: inherit;
  color: inherit;
  font-size: 100px;
}
@media (max-width: 560px) {
  .l_footer-main_title .__lg {
    font-size: 60px;
  }
}
.l_footer-main_title .__space01 {
  font-family: inherit;
  color: inherit;
  padding-top: 50px;
  display: inline-block;
}
.l_footer-main_title .__space02 {
  font-family: inherit;
  color: inherit;
  padding-top: 170px;
  display: inline-block;
}
.l_footer-main_logo {
  display: flex;
  margin-top: 56px;
  max-width: 303px;
}
@media (max-width: 560px) {
  .l_footer-main_logo {
    margin-top: 36px;
    max-width: 136px;
  }
}
.l_footer-main_company-name {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
}
@media (max-width: 560px) {
  .l_footer-main_company-name {
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
}
.l_footer-main_company-info {
  font-size: 20px;
  color: #fff;
  margin-top: 24px;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .l_footer-main_company-info {
    font-size: 14px;
    width: 100%;
    text-align: left;
    margin-top: 12px;
  }
}
.l_footer-main_company-info a {
  font-size: inherit;
  color: inherit;
}
.l_footer-main_permission-list {
  margin-top: 20px;
}
@media (max-width: 560px) {
  .l_footer-main_permission-list {
    margin-top: 12px;
    width: 100%;
  }
}
.l_footer-main_permission-list-item {
  font-size: 14px;
  color: #fff;
}
@media (max-width: 560px) {
  .l_footer-main_permission-list-item {
    font-size: 10px;
  }
}
.l_footer-main_permission-list-item:nth-child(n+2) {
  margin-top: 4px;
}
.l_footer-main_nav-wrap {
  max-width: 706px;
  width: 100%;
}
@media (max-width: 960px) {
  .l_footer-main_nav-wrap {
    display: none;
  }
}
.l_footer-main_nav-title {
  font-size: 42px;
  color: #fff;
  font-family: ruika, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1280px) {
  .l_footer-main_nav-title {
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  .l_footer-main_nav-title {
    margin-top: 36px;
  }
}
@media (max-width: 560px) {
  .l_footer-main_nav-title {
    font-size: 18px;
    gap: 10px;
    margin-top: 12px;
  }
}
.l_footer-main_nav-title.__tb {
  display: none;
}
@media (max-width: 960px) {
  .l_footer-main_nav-title.__tb {
    display: flex;
  }
}
.l_footer-main_nav-title .__cross {
  display: flex;
  align-items: center;
  width: 70px;
}
@media (max-width: 560px) {
  .l_footer-main_nav-title .__cross {
    width: 32px;
  }
}
.l_footer-main_nav-container {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
}
.l_footer-main_nav-block:nth-child(n+2) {
  margin-top: 40px;
}
.l_footer-main_nav-link-title .__link {
  font-size: 18px;
  font-weight: 700;
  color: #f7979f;
}
.l_footer-main_nav-list {
  margin-top: 18px;
}
.l_footer-main_nav-list-item:nth-child(n+2) {
  margin-top: 16px;
}
.l_footer-main_nav-list-item .__link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.l_footer-main_contact-container {
  padding: 36px 34px 36px 8px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media (max-width: 1280px) {
  .l_footer-main_contact-container {
    flex-direction: column;
    gap: 24px;
  }
}
.l_footer-main_contact-title {
  font-size: 18px;
  color: #f7979f;
  font-weight: 700;
}
.l_footer-main_contact-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.l_footer-main_contact-list-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding-right: 23px;
  position: relative;
}
.l_footer-main_contact-list-link::before {
  content: "";
  width: 10.7px;
  aspect-ratio: 10.78/18.87;
  background: url(../img/common/arrow_toright.png) center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l_footer-main_contact-list-link:hover::before {
  transform: translate(5px, -50%);
}
.l_footer-main_other-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 4px;
}
.l_footer-main_other-link .__link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.l_footer-main_copyright {
  font-size: 11px;
  color: #fff;
  text-align: right;
}
@media (max-width: 960px) {
  .l_footer-main_copyright {
    margin-top: 24px;
  }
}
@media (max-width: 560px) {
  .l_footer-main_copyright {
    font-size: 9px;
  }
}
.l_footer-main_copyright.__tb {
  display: none;
}
@media (max-width: 960px) {
  .l_footer-main_copyright.__tb {
    display: block;
  }
}

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

* {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-size: 16px;
  position: relative;
}

.l_main {
  overflow: hidden;
}

.view-hidden {
  width: 100vw;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.m_section-title {
  display: flex;
  justify-content: center;
}
.m_section-title.__left {
  justify-content: flex-start;
}
.m_section-title_inner {
  display: flex;
  flex-direction: column;
  padding: 40px 55px 0;
  position: relative;
  gap: 20px;
}
@media (max-width: 560px) {
  .m_section-title_inner {
    padding: 25px 30px 0;
    gap: 12px;
  }
}
.m_section-title_inner .__en {
  font-size: 78px;
  font-family: "diazo-mvb-ex-cond", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
@media (max-width: 960px) {
  .m_section-title_inner .__en {
    font-size: 64px;
  }
}
@media (max-width: 560px) {
  .m_section-title_inner .__en {
    font-size: 40px;
  }
}
.m_section-title_inner .__jp {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
@media (max-width: 960px) {
  .m_section-title_inner .__jp {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .m_section-title_inner .__jp {
    font-size: 12px;
  }
}
.m_section-title_inner::before {
  content: "";
  width: 64px;
  aspect-ratio: 1/1;
  background: url(../img/common/dots_title.png) center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 960px) {
  .m_section-title_inner::before {
    width: 56px;
  }
}
@media (max-width: 560px) {
  .m_section-title_inner::before {
    width: 32px;
  }
}
.m_section-title_inner.__white {
  color: #fff;
}
.m_section-title_inner.__white::before {
  background-image: url(../img/common/dots_title-white.png);
}
.m_section-title_text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .m_section-title_text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .m_section-title_text {
    font-size: 13px;
  }
}

.m_news-list {
  width: 100%;
}
.m_news-list_item {
  border-bottom: 1px solid #000;
}
.m_news-list_link {
  padding: 20px 0 22px;
  display: block;
}
@media (max-width: 560px) {
  .m_news-list_link {
    padding: 14px 0 16px;
  }
}
.m_news-list_header {
  display: flex;
  align-items: center;
  gap: 7px;
}
.m_news-list_category {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  min-width: 60px;
  font-size: 13px;
  font-weight: 700;
  height: 19px;
}
@media (max-width: 960px) {
  .m_news-list_category {
    font-size: 12px;
    height: 18px;
  }
}
@media (max-width: 560px) {
  .m_news-list_category {
    font-size: 10px;
    min-width: 45px;
    height: 14px;
  }
}
.m_news-list_category.topics {
  background-color: #ff7f7e;
}
.m_news-list_category.event {
  background-color: #8fcf1f;
}
.m_news-list_category.recruit {
  background-color: #ebc378;
}
.m_news-list_category.news {
  background-color: #85cced;
}
.m_news-list_date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.m_news-list_date .__icon {
  display: flex;
  align-items: center;
  width: 15px;
}
@media (max-width: 960px) {
  .m_news-list_date .__icon {
    width: 13px;
  }
}
@media (max-width: 560px) {
  .m_news-list_date .__icon {
    width: 11px;
  }
}
.m_news-list_date .__text {
  font-size: 18px;
  line-height: 1;
  padding-bottom: 3px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .m_news-list_date .__text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .m_news-list_date .__text {
    font-size: 13px;
  }
}
.m_news-list_title {
  font-size: 18px;
  padding-right: 26px;
  font-weight: 500;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 960px) {
  .m_news-list_title {
    font-size: 16px;
    padding-right: 20px;
  }
}
@media (max-width: 560px) {
  .m_news-list_title {
    font-size: 14px;
  }
}
.m_news-list_title::before {
  content: "";
  aspect-ratio: 10.78/18.87;
  width: 11px;
  background: url(../img/common/arrow_toright-black.png) center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .m_news-list_title::before {
    width: 9px;
  }
}
@media (max-width: 560px) {
  .m_news-list_title::before {
    width: 7.5px;
  }
}

.m_btn {
  width: 100%;
  max-width: 350px;
  height: 76px;
  border: 1px solid #000;
  border-radius: 350px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .m_btn {
    max-width: 280px;
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .m_btn {
    font-size: 14px;
    height: 54px;
    max-width: 246px;
  }
}
.m_btn:hover .__arrow {
  transform: translate(5px, -50%);
}
.m_btn .__arrow {
  display: flex;
  align-items: center;
  width: 11px;
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .m_btn .__arrow {
    width: 9px;
    right: 30px;
  }
}
@media (max-width: 560px) {
  .m_btn .__arrow {
    width: 7.5px;
    right: 40px;
  }
}

.m_bottom-header {
  position: relative;
  padding-top: 180px;
}
@media (max-width: 960px) {
  .m_bottom-header {
    padding-top: 100px;
  }
}

.m_breadcrumb {
  display: flex;
  gap: 4px 20px;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .m_breadcrumb {
    padding: 40px 0 24px;
  }
}
.m_breadcrumb_item {
  position: relative;
  display: flex;
  align-items: center;
}
.m_breadcrumb_item::before {
  content: "";
  width: 5px;
  height: 8.8px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: url(../img/common/arrow_toright-black.png) center/cover;
}
.m_breadcrumb_item:last-child::before {
  display: none;
}
.m_breadcrumb_inner {
  font-size: 12px;
  font-weight: 500;
}

.page-bottom_common-mv_img-wrap {
  position: relative;
}
.page-bottom_common-mv_img {
  aspect-ratio: 1120/425;
  border-radius: 2000px;
  overflow: hidden;
}
.page-bottom_common-mv_deco {
  width: 103%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-bottom_common-mv_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 56px;
}
@media (max-width: 1280px) {
  .page-bottom_common-mv_title {
    gap: 20px;
  }
}
@media (max-width: 960px) {
  .page-bottom_common-mv_title {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .page-bottom_common-mv_title {
    gap: 16px;
  }
}
.page-bottom_common-mv_title .__sm {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1280px) {
  .page-bottom_common-mv_title .__sm {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  .page-bottom_common-mv_title .__sm {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .page-bottom_common-mv_title .__sm {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-bottom_common-mv_title .__sm {
    font-size: 14px;
  }
}
.page-bottom_common-mv_title .__lg {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1280px) {
  .page-bottom_common-mv_title .__lg {
    font-size: 40px;
  }
}
@media (max-width: 960px) {
  .page-bottom_common-mv_title .__lg {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .page-bottom_common-mv_title .__lg {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .page-bottom_common-mv_title .__lg {
    font-size: 20px;
  }
}
.page-bottom_common-mv_title .__line {
  display: block;
  width: 80px;
  height: 2px;
  background-color: #000;
}
@media (max-width: 960px) {
  .page-bottom_common-mv_title .__line {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .page-bottom_common-mv_title .__line {
    width: 48px;
  }
}
.page-bottom_common-mv_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  max-width: 550px;
  margin: 48px auto 0;
  text-align: justify;
}
@media (max-width: 1280px) {
  .page-bottom_common-mv_text {
    font-size: 16px;
    margin: 36px auto 0;
  }
}
@media (max-width: 960px) {
  .page-bottom_common-mv_text {
    font-size: 14px;
    margin: 28px auto 0;
  }
}
@media (max-width: 560px) {
  .page-bottom_common-mv_text {
    font-size: 13px;
    margin-top: 24px;
  }
}

.m_bg-radius {
  position: relative;
  overflow: hidden;
}
.m_bg-radius::before {
  content: "";
  width: 1920px;
  height: 100%;
  border-radius: 1527px 0 0 0;
  background-color: #f7fafd;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .m_bg-radius::before {
    border-radius: 680px 0 0 0;
  }
}
@media (max-width: 768px) {
  .m_bg-radius::before {
    border-radius: 440px 0 0 0;
  }
}
@media (max-width: 560px) {
  .m_bg-radius::before {
    border-radius: 300px 0 0 0;
  }
}

.m_bottom-common-title {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .m_bottom-common-title {
    font-size: 40px;
  }
}
@media (max-width: 960px) {
  .m_bottom-common-title {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .m_bottom-common-title {
    font-size: 24px;
  }
}
.m_bottom-common-title_title-text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #0452ba;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .m_bottom-common-title_title-text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .m_bottom-common-title_title-text {
    font-size: 13px;
  }
}

.section-base {
  padding: 106px 0 128px;
  position: relative;
}
@media (max-width: 960px) {
  .section-base {
    padding-bottom: 0;
  }
}
@media (max-width: 560px) {
  .section-base {
    padding-top: 34px;
  }
}
.section-base_inner {
  position: relative;
}
@media (max-width: 960px) {
  .section-base_inner {
    max-width: 680px;
  }
}
.section-base_top-title {
  position: absolute;
  top: 0;
  left: 0;
}
.section-base_map {
  width: 50%;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: -1;
}
@media (max-width: 960px) {
  .section-base_map {
    width: 450px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 560px) {
  .section-base_map {
    width: 250px;
    top: -12px;
  }
}
.section-base_list-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 560px) {
  .section-base_list-wrap {
    gap: 20px;
  }
}
.section-base_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 55%;
  margin-left: auto;
}
@media (max-width: 960px) {
  .section-base_list {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-base_list {
    gap: 24px 40px;
  }
}
@media (max-width: 560px) {
  .section-base_list {
    gap: 20px 30px;
  }
}
@media (max-width: 960px) {
  .section-base_list:nth-child(1) {
    margin-top: 400px;
  }
}
@media (max-width: 560px) {
  .section-base_list:nth-child(1) {
    margin-top: 240px;
  }
}
.section-base_list:nth-child(2) {
  margin-right: auto;
  margin-left: unset;
}
.section-base_list-item {
  width: calc(50% - 25px);
}
@media (max-width: 768px) {
  .section-base_list-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 560px) {
  .section-base_list-item {
    width: calc(50% - 15px);
  }
}
.section-base_list-link:hover .section-base_list-name::before {
  transform: translate(5px, -50%);
}
.section-base_list-img {
  aspect-ratio: 285/194;
  border-radius: 45px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-base_list-img {
    border-radius: 15px;
  }
}
@media (max-width: 560px) {
  .section-base_list-img {
    border-radius: 12px;
  }
}
.section-base_list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-base_list-name {
  font-size: 22px;
  font-weight: 700;
  color: #00a29a;
  position: relative;
  margin-top: 16px;
}
@media (max-width: 560px) {
  .section-base_list-name {
    font-size: 18px;
  }
}
.section-base_list-name::before {
  content: "";
  width: 10.7px;
  aspect-ratio: 10.7/18.8;
  background: url(../img/common/arrow_toright-black.png) center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 560px) {
  .section-base_list-name::before {
    width: 6px;
  }
}
.section-base_list-place {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}
@media (max-width: 560px) {
  .section-base_list-place {
    padding-left: 16px;
    font-size: 15px;
  }
}
.section-base_list-place::before {
  content: "";
  background-color: #00a29a;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 560px) {
  .section-base_list-place::before {
    width: 8px;
    height: 8px;
  }
}
.section-base_list-descript {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .section-base_list-descript {
    font-size: 12px;
  }
}
.section-base_img01 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 857/443;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 300px 0 0 0;
  overflow: hidden;
  max-width: 790px;
  max-height: 410px;
}
@media (max-width: 1280px) {
  .section-base_img01 {
    aspect-ratio: unset;
    height: 400px;
  }
}
@media (max-width: 960px) {
  .section-base_img01 {
    width: 100%;
    position: static;
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .section-base_img01 {
    height: auto;
    border-radius: 150px 0 0 0;
  }
}
@media (max-width: 560px) {
  .section-base_img01 {
    margin-top: 32px;
  }
}
.section-base_img01 img {
  min-width: 857px;
}
@media (max-width: 1600px) {
  .section-base_img01 img {
    transform: translateX(-20px);
  }
}
@media (max-width: 1280px) {
  .section-base_img01 img {
    transform: translateX(-80px);
  }
}
@media (max-width: 960px) {
  .section-base_img01 img {
    transform: translate(0);
  }
}
@media (max-width: 768px) {
  .section-base_img01 img {
    min-width: unset;
  }
}

.section-news {
  padding: 40px 0 70px;
}
@media (max-width: 768px) {
  .section-news {
    padding: 40px 0 40px;
  }
}
.section-news_inner {
  display: flex;
  justify-content: space-between;
  gap: 112px;
  position: relative;
}
@media (max-width: 960px) {
  .section-news_inner {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .section-news_inner {
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
  }
}
.section-news_title-wrap {
  max-width: 350px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .section-news_title-wrap {
    display: flex;
  }
}
.section-news_btn {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .section-news_btn {
    position: relative;
    margin: 16px auto 0;
  }
}

.section-recruit {
  overflow: hidden;
  background-color: #f7fafd;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .section-recruit {
    padding-bottom: 60px;
  }
}
@media (max-width: 560px) {
  .section-recruit {
    padding-bottom: 36px;
  }
}
.section-recruit_header {
  padding-top: 76px;
  background-color: #07b0f2;
}
@media (max-width: 768px) {
  .section-recruit_header {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .section-recruit_header {
    padding-top: 24px;
  }
}
.section-recruit_top-title-wrap {
  display: flex;
  gap: 0 15px;
  align-items: center;
}
@media (max-width: 768px) {
  .section-recruit_top-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .section-recruit_top-title-wrap {
    gap: 24px;
  }
}
.section-recruit_tab-area {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .section-recruit_tab-area {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .section-recruit_tab-area {
    padding-top: 24px;
    width: calc(100vw - 28px);
    transform: translateX(-22px);
  }
}
.section-recruit_tab-area::before {
  content: "";
  width: 110vw;
  height: 100%;
  background-color: #07b0f2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.section-recruit_tab-area::after {
  content: "";
  width: 110vw;
  height: 2px;
  background-color: #07b0f2;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.section-recruit_tab-area .tab {
  display: flex;
  align-items: center;
  height: 90px;
  background-color: #0452ba;
  border-radius: 30px 30px 0 0;
  max-width: 350px;
  width: calc(33.33% - 16px);
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 0 58px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .section-recruit_tab-area .tab {
    font-size: 18px;
    padding: 0 40px;
    height: 75px;
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 768px) {
  .section-recruit_tab-area .tab {
    font-size: 16px;
    padding: 0 16px;
    height: 50px;
    border-radius: 15px 15px 0 0;
    width: calc(33.33% - 8px);
  }
}
@media (max-width: 560px) {
  .section-recruit_tab-area .tab {
    font-size: 12px;
    width: calc(33.33% - 3px);
    padding: 0 12px;
  }
}
.section-recruit_tab-area .tab::before {
  content: "";
  width: 18px;
  aspect-ratio: 18.87/10.78;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  background: url(../img/common/arrow_tobottom-white.png) center/cover;
}
@media (max-width: 768px) {
  .section-recruit_tab-area .tab::before {
    width: 13px;
    right: 16px;
  }
}
@media (max-width: 560px) {
  .section-recruit_tab-area .tab::before {
    right: 12px;
    width: 12px;
  }
}
.section-recruit_tab-area .tab::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0452ba;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
}
.section-recruit_tab-area .tab.active {
  background-color: #f7fafd;
  color: #0452ba;
}
.section-recruit_tab-area .tab.active::before {
  background-image: url(../img/common/arrow_tobottom-blue.png);
}
.section-recruit_tab-area .tab.active::after {
  background-color: #f7fafd;
}
.section-recruit_tab-container {
  position: relative;
  background-color: #f7fafd;
  z-index: 1;
}
.section-recruit_tab-container::before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #f7fafd;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.section-recruit_tab-content {
  padding: 100px 0;
}
@media (max-width: 960px) {
  .section-recruit_tab-content {
    padding: 56px 0;
  }
}
@media (max-width: 768px) {
  .section-recruit_tab-content {
    padding: 48px 0 36px;
  }
}
@media (max-width: 560px) {
  .section-recruit_tab-content {
    padding: 36px 0 32px;
    max-width: 245px;
    margin: 0 auto;
  }
}
.section-recruit_list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 68px;
}
@media (max-width: 960px) {
  .section-recruit_list {
    gap: 40px 40px;
  }
}
@media (max-width: 768px) {
  .section-recruit_list {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
.section-recruit_list .slick-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  overflow: hidden;
  text-indent: -100px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 560px) {
  .section-recruit_list .slick-arrow {
    top: 18%;
  }
}
.section-recruit_list .slick-arrow.slick-prev {
  left: -45px;
  background-image: url(../img/common/slider_prev-arrow.jpg);
}
.section-recruit_list .slick-arrow.slick-next {
  right: -45px;
  background-image: url(../img/common/slider_next-arrow.jpg);
}
.section-recruit_list-item {
  width: calc(50% - 34px);
}
@media (max-width: 960px) {
  .section-recruit_list-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .section-recruit_list-item {
    width: 100%;
  }
}
.section-recruit_list-img {
  border-radius: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-recruit_list-img {
    border-radius: 20px;
  }
}
.section-recruit_list-content {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .section-recruit_list-content {
    margin-top: 24px;
  }
}
.section-recruit_list-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  height: 27px;
  background-color: #0452ba;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 960px) {
  .section-recruit_list-tag {
    height: 24px;
    font-size: 15px;
    min-width: 90px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-tag {
    font-size: 10px;
    height: 16px;
    min-width: 56px;
  }
}
.section-recruit_list-title-inner {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #0452ba;
  font-weight: 700;
  padding: 18px 48px 18px 30px;
  position: relative;
  line-height: 1.4;
  border-bottom: 0.35px solid #0452ba;
}
@media (max-width: 960px) {
  .section-recruit_list-title-inner {
    font-size: 24px;
    line-height: 1.25;
    padding: 16px 30px 16px 25px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-title-inner {
    font-size: 16px;
    padding: 12px 24px 12px 16px;
  }
}
.section-recruit_list-title-inner:hover::after {
  transform: translate(5px, -50%);
}
.section-recruit_list-title-inner::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #de1427;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .section-recruit_list-title-inner::before {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-title-inner::before {
    width: 8px;
    height: 8px;
  }
}
.section-recruit_list-title-inner::after {
  content: "";
  width: 10.7px;
  aspect-ratio: 10.7/18.8;
  background: url(../img/common/arrow_toright-blue.png) center/cover;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .section-recruit_list-title-inner::after {
    width: 9px;
    right: 10px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-title-inner::after {
    width: 6px;
    right: 4px;
  }
}
.section-recruit_list-text {
  font-size: 18px;
  color: #0452ba;
  margin-top: 20px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 960px) {
  .section-recruit_list-text {
    font-size: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-text {
    font-size: 12px;
  }
}
.section-recruit_list-salary {
  font-size: 18px;
  font-weight: 700;
  color: #0452ba;
  margin-top: 30px;
}
@media (max-width: 960px) {
  .section-recruit_list-salary {
    font-size: 15px;
    margin-top: 16px;
  }
}
@media (max-width: 560px) {
  .section-recruit_list-salary {
    font-size: 12px;
    margin-top: 10px;
  }
}
.section-recruit_btn {
  margin: 0 auto;
}

.mv {
  display: flex;
  justify-content: center;
}
.mv_inner {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mv_image {
  min-width: 1920px;
}
@media (max-width: 1280px) {
  .mv_image {
    min-width: 1700px;
  }
}
@media (max-width: 960px) {
  .mv_image {
    min-width: 1470px;
  }
}
@media (max-width: 768px) {
  .mv_image {
    min-width: 1140px;
  }
}
@media (max-width: 560px) {
  .mv_image {
    min-width: 780px;
  }
}
.mv_text-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 224px;
}
@media (max-width: 1280px) {
  .mv_text-wrap {
    padding-top: 184px;
  }
}
@media (max-width: 960px) {
  .mv_text-wrap {
    padding-top: 110px;
  }
}
@media (max-width: 768px) {
  .mv_text-wrap {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .mv_text-wrap {
    padding-top: 28px;
  }
}
.mv_title {
  color: #fff;
  font-size: 58px;
  font-family: ruika, sans-serif;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .mv_title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .mv_title {
    font-size: 42px;
  }
}
@media (max-width: 560px) {
  .mv_title {
    font-size: 27px;
  }
}
.mv_title .__lg {
  font-size: 120px;
  color: inherit;
  font-family: inherit;
}
@media (max-width: 960px) {
  .mv_title .__lg {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .mv_title .__lg {
    font-size: 85px;
  }
}
@media (max-width: 560px) {
  .mv_title .__lg {
    font-size: 60px;
  }
}
.mv_title .__space01 {
  padding-top: 60px;
}
@media (max-width: 960px) {
  .mv_title .__space01 {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .mv_title .__space01 {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .mv_title .__space01 {
    padding-top: 32px;
  }
}
.mv_title .__space02 {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  padding-top: 210px;
}
@media (max-width: 960px) {
  .mv_title .__space02 {
    padding-top: 190px;
  }
}
@media (max-width: 768px) {
  .mv_title .__space02 {
    padding-top: 140px;
  }
}
@media (max-width: 560px) {
  .mv_title .__space02 {
    padding-top: 110px;
  }
}
.mv_concept-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-family: ruika, sans-serif;
  color: #fff;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1280px) {
  .mv_concept-text {
    flex-direction: column;
    margin-top: 40px;
  }
}
@media (max-width: 960px) {
  .mv_concept-text {
    font-size: 36px;
    margin-top: 32px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .mv_concept-text {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .mv_concept-text {
    font-size: 20px;
    gap: 10px;
    margin-top: 28px;
  }
}
.mv_concept-text .__cross {
  display: flex;
  align-items: center;
  width: 70px;
}
@media (max-width: 960px) {
  .mv_concept-text .__cross {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .mv_concept-text .__cross {
    width: 50px;
  }
}
@media (max-width: 560px) {
  .mv_concept-text .__cross {
    width: 32px;
  }
}
.mv_main-text {
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .mv_main-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mv_main-text {
    font-size: 13px;
    margin-top: 12px;
  }
}

.top-about {
  padding: 70px 0 50px;
}
@media (max-width: 768px) {
  .top-about {
    padding: 40px 0 40px;
    overflow: hidden;
  }
}
.top-about_philosophy-wrap {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  margin-top: 70px;
}
@media (max-width: 960px) {
  .top-about_philosophy-wrap {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .top-about_philosophy-wrap {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .top-about_philosophy-wrap {
    margin-top: 20px;
  }
}
.top-about_philosophy-inner {
  max-width: 840px;
}
.top-about_philosophy {
  font-size: 45px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .top-about_philosophy {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .top-about_philosophy {
    margin-top: 24px;
  }
}
@media (max-width: 560px) {
  .top-about_philosophy {
    font-size: 24px;
    margin-top: 36px;
  }
}
.top-about_philosophy-text {
  font-size: 20px;
  margin-top: 32px;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .top-about_philosophy-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .top-about_philosophy-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.top-about_philosophy-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55.5%;
  border-radius: 2000px 0 0 2000px;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 768px) {
  .top-about_philosophy-img {
    position: relative;
    left: -40px;
    width: 100vw;
    height: 360px;
  }
}
@media (max-width: 560px) {
  .top-about_philosophy-img {
    height: auto;
    left: -36px;
  }
}
@media (max-width: 768px) {
  .top-about_philosophy-img.__pc {
    display: none;
  }
}
.top-about_philosophy-img.__sp {
  display: none;
}
@media (max-width: 768px) {
  .top-about_philosophy-img.__sp {
    display: block;
  }
}
.top-about_philosophy-img.__purpose {
  border-radius: 0 2000px 2000px 0;
  right: unset;
  left: 0;
  top: 120px;
}
@media (max-width: 960px) {
  .top-about_philosophy-img.__purpose {
    top: 100px;
  }
}
@media (max-width: 768px) {
  .top-about_philosophy-img.__purpose {
    position: relative;
    top: 0;
    left: -40px;
    margin-top: 40px;
  }
}
.top-about_list-container {
  display: flex;
  max-width: 1100px;
  margin: 150px auto 0;
}
@media (max-width: 960px) {
  .top-about_list-container {
    margin: 100px auto 0;
  }
}
@media (max-width: 768px) {
  .top-about_list-container {
    margin-top: 48px;
  }
}
.top-about_list-wrap {
  max-width: 1035px;
  width: calc(100% - 40px);
  z-index: 1;
  position: relative;
}
@media (max-width: 1280px) {
  .top-about_list-wrap {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 960px) {
  .top-about_list-wrap {
    max-width: 730px;
  }
}
@media (max-width: 768px) {
  .top-about_list-wrap {
    max-width: 480px;
  }
}
@media (max-width: 560px) {
  .top-about_list-wrap {
    max-width: 340px;
  }
}
.top-about_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .top-about_list {
    align-items: center;
    justify-content: flex-end;
  }
}
.top-about_list-item {
  width: 40%;
  height: 206px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #080d05;
  border-radius: 500px;
  border: 1px solid #fff;
}
@media (max-width: 1280px) {
  .top-about_list-item {
    height: 176px;
  }
}
@media (max-width: 960px) {
  .top-about_list-item {
    height: 145px;
  }
}
@media (max-width: 768px) {
  .top-about_list-item {
    width: 66.66%;
    height: auto;
    aspect-ratio: 2/1;
  }
}
.top-about_list-item.__circle {
  width: 20%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #58cfee;
}
@media (max-width: 768px) {
  .top-about_list-item.__circle {
    width: 33.33%;
    height: auto;
  }
}
.top-about_list-item.__circle.__orange {
  background-color: #ff9d5e;
}
@media (max-width: 768px) {
  .top-about_list-item.__circle.__pc {
    display: none;
  }
}
.top-about_list-item.__circle.__sp {
  display: none;
}
@media (max-width: 768px) {
  .top-about_list-item.__circle.__sp {
    display: block;
  }
}
.top-about_list-item.__blank {
  width: 20%;
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .top-about_list-item.__blank {
    width: 33.33%;
  }
}
.top-about_list-item.__blank.__wide {
  width: 40%;
  aspect-ratio: unset;
  border-color: rgba(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .top-about_list-item.__blank.__wide.__pc {
    display: none;
  }
}
@media (max-width: 768px) {
  .top-about_list-item.__blank.__pc {
    display: none;
  }
}
.top-about_list-item.__blank.__sp {
  display: none;
}
@media (max-width: 768px) {
  .top-about_list-item.__blank.__sp {
    display: block;
  }
}
.top-about_list-title {
  font-size: 26px;
  color: #3cecff;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .top-about_list-title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .top-about_list-title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .top-about_list-title {
    font-size: 15px;
  }
}
.top-about_list-title.__orange {
  color: #ff9d5e;
}
.top-about_list-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-top: 18px;
  line-height: 2;
}
@media (max-width: 1280px) {
  .top-about_list-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .top-about_list-text {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 560px) {
  .top-about_list-text {
    font-size: 12px;
    line-height: 1.6;
  }
}
.top-about_btn {
  position: absolute;
  right: 0;
  bottom: 25%;
  transform: translateY(50%);
  width: calc(40% - 20px);
  max-width: unset;
}
@media (max-width: 768px) {
  .top-about_btn {
    position: relative;
    bottom: unset;
    width: 100%;
    transform: unset;
    max-width: 280px;
    margin: 36px auto 0;
  }
}
@media (max-width: 560px) {
  .top-about_btn {
    max-width: 246px;
  }
}

.top-purpose {
  padding: 50px 0 50px;
  overflow: hidden;
}
@media (max-width: 560px) {
  .top-purpose {
    padding: 40px 0 30px;
  }
}
.top-purpose_top-block {
  display: flex;
  justify-content: center;
  position: relative;
}
.top-purpose_top-title {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top-purpose_top-title {
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .top-purpose_top-title-inner {
    padding-right: 0;
  }
}
.top-purpose_list-container {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .top-purpose_list-container {
    justify-content: flex-start;
  }
}
.top-purpose_list {
  color: #ff9d5e;
}
@media (max-width: 768px) {
  .top-purpose_list {
    justify-content: flex-start;
  }
}
.top-purpose_btn {
  left: 0;
  right: unset;
}
.top-purpose_text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  transform: translateX(40%);
}
@media (max-width: 1280px) {
  .top-purpose_text-block {
    transform: translateX(200px);
  }
}
@media (max-width: 960px) {
  .top-purpose_text-block {
    transform: translate(0);
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .top-purpose_text-block {
    align-items: flex-start;
  }
}

.top-service {
  padding: 450px 0 140px;
  background: url(../img/top/service_bg.png) top left/cover;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .top-service {
    background: url(../img/top/service_bg-sp.png) top left/cover;
    padding-top: 170px;
  }
}
@media (max-width: 768px) {
  .top-service {
    padding-bottom: 60px;
  }
}
@media (max-width: 560px) {
  .top-service {
    padding: 110px 0 50px;
    background-size: 1150px;
  }
}
.top-service_top-title-wrap {
  width: 55%;
  display: flex;
  justify-content: center;
  margin-left: auto;
}
@media (max-width: 560px) {
  .top-service_top-title-inner {
    padding-right: 0;
  }
}
.top-service_list {
  margin-top: 56px;
}
@media (max-width: 960px) {
  .top-service_list {
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  .top-service_list {
    margin-top: 20px;
  }
}
.top-service_list-item {
  position: relative;
  z-index: 1;
  display: flex;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .top-service_list-item {
    flex-direction: column;
    padding-left: 24px;
  }
}
@media (max-width: 560px) {
  .top-service_list-item {
    padding-bottom: 30px;
  }
}
.top-service_list-item::before {
  content: "";
  width: 100vw;
  height: calc(100% - 50px);
  background-color: #fff;
  position: absolute;
  top: 50px;
  left: 0;
  border-radius: 100px 0 0 100px;
  z-index: -1;
}
@media (max-width: 768px) {
  .top-service_list-item::before {
    border-radius: 40px 0 0 40px;
    top: 30px;
  }
}
@media (max-width: 560px) {
  .top-service_list-item::before {
    border-radius: 15px 0 0 15px;
    height: calc(100% - 30px);
  }
}
.top-service_list-item:nth-child(n+2) {
  margin-top: 60px;
}
@media (max-width: 560px) {
  .top-service_list-item:nth-child(n+2) {
    margin-top: 28px;
  }
}
.top-service_list-item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-service_list-item:nth-child(2n) {
    flex-direction: column;
    padding-left: 0;
    padding-right: 24px;
  }
}
.top-service_list-item:nth-child(2n)::before {
  left: unset;
  right: 0;
  border-radius: 0 100px 100px 0;
}
@media (max-width: 768px) {
  .top-service_list-item:nth-child(2n)::before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 560px) {
  .top-service_list-item:nth-child(2n)::before {
    border-radius: 0 15px 15px 0;
  }
}
.top-service_list-num {
  font-size: 140px;
  color: #07b0f2;
  font-weight: 700;
}
@media (max-width: 960px) {
  .top-service_list-num {
    font-size: 110px;
  }
}
@media (max-width: 768px) {
  .top-service_list-num {
    line-height: 1;
    font-size: 80px;
  }
}
@media (max-width: 560px) {
  .top-service_list-num {
    font-size: 50px;
  }
}
.top-service_list-title-block {
  padding-top: 186px;
  width: 45%;
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .top-service_list-title-block {
    padding-top: 156px;
  }
}
@media (max-width: 768px) {
  .top-service_list-title-block {
    width: 100%;
    padding-top: 0;
    justify-content: flex-start;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .top-service_list-title-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.top-service_list-title {
  font-size: 45px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .top-service_list-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .top-service_list-title {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .top-service_list-title {
    font-size: 22px;
  }
}
.top-service_list-title .__center {
  display: block;
  text-align: center;
}
.top-service_list-content-block {
  width: 55%;
}
@media (max-width: 960px) {
  .top-service_list-content-block {
    width: 100%;
  }
}
.top-service_list-content-img {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-service_list-content-img {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
  }
}
@media (max-width: 560px) {
  .top-service_list-content-img {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .top-service_list-content-img.__pc {
    display: none;
  }
}
.top-service_list-content-img.__sp {
  display: none;
}
@media (max-width: 768px) {
  .top-service_list-content-img.__sp {
    display: block;
  }
}
.top-service_list-content-title {
  font-size: 26px;
  font-weight: 700;
  color: #07b0f2;
  padding: 32px 0;
}
@media (max-width: 960px) {
  .top-service_list-content-title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .top-service_list-content-title {
    padding: 20px 0;
  }
}
@media (max-width: 560px) {
  .top-service_list-content-title {
    font-size: 16px;
    padding: 16px 0 12px;
  }
}
.top-service_list-content-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 960px) {
  .top-service_list-content-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .top-service_list-content-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.top-training {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  background-color: #ff9d5e;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .top-training {
    padding-top: 64px;
  }
}
@media (max-width: 560px) {
  .top-training {
    padding-top: 36px;
  }
}
.top-training_bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.top-training_bg img {
  min-width: 1920px;
}
@media (max-width: 1280px) {
  .top-training_bg img {
    min-width: 1580px;
  }
}
@media (max-width: 960px) {
  .top-training_bg img {
    min-width: 1320px;
  }
}
@media (max-width: 768px) {
  .top-training_bg img {
    min-width: 1000px;
  }
}
@media (max-width: 560px) {
  .top-training_bg img {
    min-width: 560px;
  }
}
.top-training_top-title-wrap {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-left: auto;
  width: 60%;
}
.top-training_top-title-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.top-training_top-title-text {
  color: #fff;
  padding-left: 55px;
}
@media (max-width: 768px) {
  .top-training_top-title-text {
    padding-left: 0;
    margin-top: 100px;
  }
}
@media (max-width: 560px) {
  .top-training_top-title-text {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .top-training_top-title-text.__pc {
    display: none;
  }
}
.top-training_top-title-text.__sp {
  display: none;
}
@media (max-width: 768px) {
  .top-training_top-title-text.__sp {
    display: block;
  }
}
.top-training_main-list {
  display: flex;
  margin-top: 64px;
  gap: 64px;
}
@media (max-width: 1280px) {
  .top-training_main-list {
    gap: 36px;
  }
}
@media (max-width: 960px) {
  .top-training_main-list {
    margin-top: 100px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .top-training_main-list {
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 0 40px;
  }
}
.top-training_main-list-item {
  width: 25%;
}
@media (max-width: 768px) {
  .top-training_main-list-item {
    width: calc(50% - 20px);
  }
}
.top-training_main-list-item:nth-child(2) {
  margin-top: 68px;
}
@media (max-width: 560px) {
  .top-training_main-list-item:nth-child(2) {
    margin-top: 36px;
  }
}
.top-training_main-list-item:nth-child(3) {
  margin-top: 136px;
}
@media (max-width: 768px) {
  .top-training_main-list-item:nth-child(3) {
    margin-top: 0;
  }
}
.top-training_main-list-item:nth-child(4) {
  margin-top: 198px;
}
@media (max-width: 768px) {
  .top-training_main-list-item:nth-child(4) {
    margin-top: 68px;
  }
}
@media (max-width: 560px) {
  .top-training_main-list-item:nth-child(4) {
    margin-top: 36px;
  }
}
.top-training_main-list-img {
  transform: translateX(24px);
}
@media (max-width: 768px) {
  .top-training_main-list-img {
    transform: translate(0);
  }
}
.top-training_main-list-num {
  font-size: 65px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  transform: translateY(-40px);
  margin-bottom: -40px;
}
@media (max-width: 960px) {
  .top-training_main-list-num {
    font-size: 56px;
  }
}
@media (max-width: 560px) {
  .top-training_main-list-num {
    font-size: 32px;
    transform: translateY(-20px);
    margin-bottom: -20px;
  }
}
.top-training_main-list-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 12px;
}
@media (max-width: 960px) {
  .top-training_main-list-title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .top-training_main-list-title {
    font-size: 16px;
  }
}
.top-training_main-list-text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 2;
}
@media (max-width: 960px) {
  .top-training_main-list-text {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 12px;
  }
}
@media (max-width: 560px) {
  .top-training_main-list-text {
    font-size: 12px;
    line-height: 1.5;
  }
}
.top-training_bottom-container {
  position: relative;
  margin-top: 120px;
}
.top-training_bottom-img {
  width: calc(50vw - 74px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 0 1000px 1000px 0;
  height: 594px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateY(-155px);
}
@media (max-width: 1280px) {
  .top-training_bottom-img {
    position: relative;
    width: calc(100vw - 280px);
    height: 520px;
    margin-bottom: -155px;
  }
}
@media (max-width: 960px) {
  .top-training_bottom-img {
    height: 360px;
    width: calc(100% - 100px);
    transform: translateY(-80px);
    margin-bottom: -80px;
  }
}
@media (max-width: 768px) {
  .top-training_bottom-img {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-img {
    height: 205px;
    width: calc(100% - 68px);
  }
}
.top-training_bottom-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 892px;
  min-height: 594px;
}
@media (max-width: 768px) {
  .top-training_bottom-img img {
    min-width: unset;
    min-height: unset;
  }
}
.top-training_bottom-inner {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1280px) {
  .top-training_bottom-inner {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.top-training_bottom-inner::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1280px) {
  .top-training_bottom-inner::before {
    height: calc(100% + 200px);
    top: -199px;
  }
}
@media (max-width: 768px) {
  .top-training_bottom-inner::before {
    left: -40px;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-inner::before {
    top: -124px;
    left: -36px;
    height: calc(100% + 124px);
  }
}
.top-training_bottom-list {
  width: 50%;
}
@media (max-width: 1280px) {
  .top-training_bottom-list {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-list {
    width: 100%;
  }
}
.top-training_bottom-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
@media (max-width: 560px) {
  .top-training_bottom-list-item {
    gap: 24px;
  }
}
.top-training_bottom-list-item:nth-child(n+2) {
  margin-top: 50px;
}
@media (max-width: 560px) {
  .top-training_bottom-list-item:nth-child(n+2) {
    margin-top: 24px;
  }
}
.top-training_bottom-list-icon {
  display: block;
  width: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-training_bottom-list-icon {
    width: 85px;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-list-icon {
    width: 74px;
  }
}
.top-training_bottom-list-text-block {
  width: 100%;
}
.top-training_bottom-list-title {
  font-size: 26px;
  font-weight: 700;
  color: #ff9d5e;
}
@media (max-width: 768px) {
  .top-training_bottom-list-title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-list-title {
    font-size: 18px;
  }
}
.top-training_bottom-list-text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top-training_bottom-list-text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }
}
@media (max-width: 560px) {
  .top-training_bottom-list-text {
    font-size: 14px;
  }
}
.top-training_bottom-btn-wrap {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 86px 0;
}
@media (max-width: 1280px) {
  .top-training_bottom-btn-wrap {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .top-training_bottom-btn-wrap {
    padding: 40px 0;
  }
}

.page-about_mv {
  position: relative;
  z-index: 1;
}
.page-about_mv_img {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
}
.page-about_mv_img img {
  width: 1150px;
}
@media (max-width: 960px) {
  .page-about_mv_img img {
    width: 800px;
  }
}
@media (max-width: 768px) {
  .page-about_mv_img img {
    width: 610px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_img img {
    width: 375px;
  }
}
.page-about_mv_title {
  writing-mode: vertical-rl;
  font-size: 60px;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  line-height: 1;
  font-family: ruika, sans-serif;
}
@media (max-width: 960px) {
  .page-about_mv_title {
    font-size: 48px;
    top: 160px;
  }
}
@media (max-width: 768px) {
  .page-about_mv_title {
    top: 150px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_title {
    font-size: 27px;
    top: 95px;
  }
}
.page-about_mv_title .__lg {
  font-size: 123px;
  font-family: ruika, sans-serif;
  font-weight: 400;
}
@media (max-width: 960px) {
  .page-about_mv_title .__lg {
    font-size: 100px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_title .__lg {
    font-size: 60px;
  }
}
.page-about_mv_title .__space01 {
  padding-top: 56px;
}
@media (max-width: 560px) {
  .page-about_mv_title .__space01 {
    padding-top: 30px;
  }
}
.page-about_mv_title .__space02 {
  padding-top: 200px;
  font-family: ruika, sans-serif;
}
@media (max-width: 560px) {
  .page-about_mv_title .__space02 {
    padding-top: 120px;
  }
}
.page-about_mv_text {
  text-align: center;
  font-size: 20px;
  line-height: 1.75;
  transform: translateY(-90px);
  margin-bottom: -90px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .page-about_mv_text {
    font-size: 15px;
    transform: translateY(-60px);
    margin-bottom: -60px;
  }
}
@media (max-width: 768px) {
  .page-about_mv_text {
    transform: translateY(0);
    margin-bottom: 0;
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_text {
    font-size: 13px;
    margin-top: 16px;
  }
}
.page-about_mv_specialist-title {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .page-about_mv_specialist-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .page-about_mv_specialist-title {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_specialist-title {
    font-size: 24px;
    margin-top: 40px;
  }
}
.page-about_mv_intro-text {
  text-align: center;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  margin-top: 52px;
}
@media (max-width: 960px) {
  .page-about_mv_intro-text {
    font-size: 18px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .page-about_mv_intro-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_mv_intro-text {
    font-size: 13px;
    margin-top: 32px;
  }
}

.page-about_bg-wrap {
  position: relative;
  padding-top: 530px;
  transform: translateY(-290px);
  margin-bottom: -290px;
}
@media (max-width: 1600px) {
  .page-about_bg-wrap {
    transform: translateY(-250px);
    margin-bottom: -250px;
    padding-top: 450px;
  }
}
@media (max-width: 960px) {
  .page-about_bg-wrap {
    padding-top: 400px;
  }
}
@media (max-width: 768px) {
  .page-about_bg-wrap {
    transform: translateY(-150px);
    margin-bottom: -150px;
    padding-top: 250px;
  }
}
@media (max-width: 560px) {
  .page-about_bg-wrap {
    transform: translateY(-190px);
    margin-bottom: -190px;
  }
}
.page-about_bg-wrap::before {
  content: "";
  width: 1920px;
  height: 100%;
  min-height: 2600px;
  background-color: #e2eaee;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1527px 0 0 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .page-about_bg-wrap::before {
    border-radius: 800px 0 0 0;
  }
}
@media (max-width: 960px) {
  .page-about_bg-wrap::before {
    border-radius: 600px 0 0 0;
  }
}
@media (max-width: 768px) {
  .page-about_bg-wrap::before {
    border-radius: 450px 0 0 0;
  }
}
@media (max-width: 560px) {
  .page-about_bg-wrap::before {
    border-radius: 300px 0 0 0;
  }
}

.page-about_reason {
  padding-bottom: 30px;
}
.page-about_reason_descript {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-about_reason_descript {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_reason_descript {
    font-size: 13px;
  }
}
.page-about_reason_top-title {
  font-size: 45px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .page-about_reason_top-title {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .page-about_reason_top-title {
    font-size: 24px;
    margin-top: 8px;
  }
}
.page-about_reason_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 810px;
  margin: 48px auto 0;
  justify-content: center;
}
@media (max-width: 960px) {
  .page-about_reason_list {
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .page-about_reason_list {
    gap: 4px;
    max-width: 480px;
  }
}
@media (max-width: 560px) {
  .page-about_reason_list {
    max-width: 330px;
    gap: 0 28px;
  }
}
.page-about_reason_list-item {
  width: 33.33%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .page-about_reason_list-item {
    width: calc(50% - 2px);
  }
}
@media (max-width: 560px) {
  .page-about_reason_list-item {
    width: calc(50% - 14px);
  }
}
.page-about_reason_list-item::before {
  content: "";
  width: 270px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 960px) {
  .page-about_reason_list-item::before {
    width: 230px;
  }
}
@media (max-width: 768px) {
  .page-about_reason_list-item::before {
    width: 236px;
  }
}
@media (max-width: 560px) {
  .page-about_reason_list-item::before {
    width: 160px;
  }
}
.page-about_reason_list-item:nth-child(n+4) {
  transform: translateY(-36px);
  margin-bottom: -36px;
}
@media (max-width: 768px) {
  .page-about_reason_list-item:nth-child(n+4) {
    transform: translateY(0);
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .page-about_reason_list-item:nth-child(3) {
    width: 100%;
    aspect-ratio: 2/1;
  }
}
@media (max-width: 768px) {
  .page-about_reason_list-item:nth-child(n+3) {
    transform: translateY(-34px);
    margin-bottom: -34px;
  }
}
@media (max-width: 560px) {
  .page-about_reason_list-item:nth-child(n+3) {
    transform: translateY(-2px);
    margin-bottom: -2px;
  }
}
.page-about_reason_list-title {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 560px) {
  .page-about_reason_list-title {
    font-size: 15px;
  }
}
.page-about_reason_list-text {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .page-about_reason_list-text {
    font-size: 12px;
  }
}

.page-about_message {
  padding: 30px 0 114px;
  padding: 30px 0 64px;
}
.page-about_message_top-title {
  justify-content: flex-start;
}
.page-about_message_inner {
  margin: 64px auto 0;
  display: flex;
  align-items: flex-end;
  max-width: 880px;
  gap: 85px;
}
@media (max-width: 960px) {
  .page-about_message_inner {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-about_message_inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .page-about_message_inner {
    margin-top: 56px;
  }
}
.page-about_message_text-block {
  max-width: 550px;
}
.page-about_message_sub-title {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-about_message_sub-title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .page-about_message_sub-title {
    font-size: 22px;
  }
}
.page-about_message_text-wrap {
  margin-top: 52px;
}
@media (max-width: 560px) {
  .page-about_message_text-wrap {
    margin-top: 32px;
  }
}
.page-about_message_text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-about_message_text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_message_text {
    font-size: 13px;
  }
}
.page-about_message_text:nth-child(n+2) {
  margin-top: 68px;
}
@media (max-width: 768px) {
  .page-about_message_text:nth-child(n+2) {
    margin-top: 36px;
  }
}
@media (max-width: 560px) {
  .page-about_message_text:nth-child(n+2) {
    margin-top: 28px;
  }
}
.page-about_message_president {
  width: 35%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .page-about_message_president {
    width: 100%;
    max-width: 192px;
  }
}
.page-about_message_president-img {
  border-radius: 160px;
  overflow: hidden;
}
.page-about_message_president-profile {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 42px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-about_message_president-profile {
    font-size: 16px;
    margin-top: 24px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .page-about_message_president-profile {
    font-size: 13px;
  }
}

.page-about_seriously {
  padding-bottom: 80px;
}
@media (max-width: 560px) {
  .page-about_seriously {
    padding-bottom: 20px;
  }
}
.page-about_seriously_mv {
  position: relative;
}
.page-about_seriously_mv-img {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.page-about_seriously_mv-img img {
  min-width: 1920px;
}
@media (max-width: 960px) {
  .page-about_seriously_mv-img img {
    min-width: 1000px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_mv-img img {
    min-width: 800px;
  }
}
@media (max-width: 560px) {
  .page-about_seriously_mv-img img {
    min-width: 590px;
  }
}
.page-about_seriously_mv-content {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 920px;
  display: flex;
  gap: 48px;
}
@media (max-width: 960px) {
  .page-about_seriously_mv-content {
    top: 30px;
    max-width: 510px;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_mv-content {
    max-width: 410px;
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .page-about_seriously_mv-content {
    top: 18px;
    max-width: 287px;
  }
}
.page-about_seriously_mv-title {
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .page-about_seriously_mv-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_mv-title {
    font-size: 32px;
  }
}
@media (max-width: 560px) {
  .page-about_seriously_mv-title {
    font-size: 26px;
  }
}
.page-about_seriously_mv-text {
  font-size: 26px;
  line-height: 2;
  font-weight: 700;
  transform: translateY(-12px);
}
@media (max-width: 960px) {
  .page-about_seriously_mv-text {
    font-size: 18px;
    transform: translate(0);
  }
}
@media (max-width: 768px) {
  .page-about_seriously_mv-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_seriously_mv-text {
    font-size: 13px;
    margin-top: 8px;
  }
}
.page-about_seriously_flex {
  display: flex;
  justify-content: space-between;
  transform: translateY(-140px);
  margin-bottom: -140px;
  position: relative;
  padding-bottom: 180px;
}
@media (max-width: 960px) {
  .page-about_seriously_flex {
    transform: translateY(-80px);
    margin-bottom: -80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_flex {
    flex-direction: column;
    transform: translateY(-40px);
    margin-bottom: -40px;
    align-items: center;
    padding-bottom: 180px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-about_seriously_flex-item {
  width: calc(50% - 20px);
  max-width: 500px;
}
@media (max-width: 768px) {
  .page-about_seriously_flex-item {
    width: 100%;
  }
}
.page-about_seriously_flex-item:nth-child(n+2) {
  margin-top: 250px;
}
@media (max-width: 960px) {
  .page-about_seriously_flex-item:nth-child(n+2) {
    margin-top: 180px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_flex-item:nth-child(n+2) {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_flex-img {
    max-width: 245px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_flex-img.__mgl {
    margin-left: auto;
  }
}
.page-about_seriously_flex-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 48px;
}
@media (max-width: 960px) {
  .page-about_seriously_flex-title {
    font-size: 20px;
    margin-top: 24px;
  }
}
.page-about_seriously_flex-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 36px;
  text-align: justify;
}
@media (max-width: 960px) {
  .page-about_seriously_flex-text {
    font-size: 16px;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-about_seriously_flex-text {
    font-size: 15px;
  }
}
@media (max-width: 560px) {
  .page-about_seriously_flex-text {
    font-size: 13px;
  }
}
.page-about_seriously_flex-circle {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .page-about_seriously_flex-circle {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
.page-about_seriously_flex-circle img {
  width: 65%;
}
@media (max-width: 768px) {
  .page-about_seriously_flex-circle img {
    width: 165px;
  }
}

.page-about_outline {
  padding-bottom: 60px;
}
.page-about_outline_top-title {
  justify-content: flex-start;
}
.page-about_outline_table {
  margin-top: 40px;
}
.page-about_outline_table tr {
  border-top: 1px solid #000;
}
.page-about_outline_table tr:last-child {
  border-bottom: 1px solid #000;
}
.page-about_outline_table th,
.page-about_outline_table td {
  padding: 24px 0;
}
@media (max-width: 768px) {
  .page-about_outline_table th,
  .page-about_outline_table td {
    padding: 16px 0;
  }
}
@media (max-width: 560px) {
  .page-about_outline_table th,
  .page-about_outline_table td {
    padding: 10px 0;
  }
}
.page-about_outline_table th {
  font-weight: 700;
  width: 270px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .page-about_outline_table th {
    font-size: 14px;
    width: 140px;
  }
}
@media (max-width: 560px) {
  .page-about_outline_table th {
    font-size: 12px;
    width: 112px;
  }
}
.page-about_outline_table td {
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 768px) {
  .page-about_outline_table td {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_outline_table td {
    font-size: 12px;
  }
}
.page-about_outline_table-text {
  line-height: 2;
  font-size: 16px;
}
@media (max-width: 560px) {
  .page-about_outline_table-text {
    font-size: 12px;
  }
}
.page-about_outline_table-list-item {
  font-size: 18px;
  font-weight: 500;
  padding-left: 1.1em;
  position: relative;
}
@media (max-width: 768px) {
  .page-about_outline_table-list-item {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_outline_table-list-item {
    font-size: 12px;
  }
}
.page-about_outline_table-list-item:nth-child(n+2) {
  margin-top: 8px;
}
.page-about_outline_table-list-item::before {
  content: "・";
  font-size: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.page-about_outline_table-pdf {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  gap: 0 12px;
}
@media (max-width: 768px) {
  .page-about_outline_table-pdf {
    font-size: 16px;
    gap: 0 8px;
  }
}
@media (max-width: 560px) {
  .page-about_outline_table-pdf {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 0 5px;
  }
}
.page-about_outline_table-pdf .__icon {
  display: flex;
  align-items: center;
  width: 30px;
  gap: 20px;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .page-about_outline_table-pdf .__icon {
    width: 24px;
    transform: translateY(-4px);
  }
}
@media (max-width: 560px) {
  .page-about_outline_table-pdf .__icon {
    width: 18px;
  }
}
.page-about_outline_table-pdf .__date {
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 560px) {
  .page-about_outline_table-pdf .__date {
    width: 100%;
  }
}
.page-about_outline_map {
  width: 100%;
  aspect-ratio: 1120/575;
  margin-top: 50px;
}
@media (max-width: 560px) {
  .page-about_outline_map {
    aspect-ratio: 295/200;
    margin-top: 24px;
  }
}
.page-about_outline_map iframe {
  width: 100%;
  height: 100%;
}
.page-about_outline_info-block {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-about_outline_info-block {
    margin-top: 32px;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .page-about_outline_info-block {
    margin-top: 16px;
  }
}
.page-about_outline_info-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .page-about_outline_info-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-about_outline_info-text {
    font-size: 12px;
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  .page-about_outline_info-btn {
    margin: 28px auto 0;
  }
}

.page-about_history {
  padding: 90px 0 84px;
  background-color: #e2eaee;
}
@media (max-width: 560px) {
  .page-about_history {
    padding: 40px 0 64px;
  }
}
.page-about_history_list {
  margin-top: 40px;
  position: relative;
  padding: 24px 0 36px;
}
@media (max-width: 560px) {
  .page-about_history_list {
    padding: 10px 0 20px;
    margin-top: 20px;
  }
}
.page-about_history_list::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 150px;
  top: 0;
}
@media (max-width: 560px) {
  .page-about_history_list::before {
    left: 84.5px;
  }
}
.page-about_history_list-item {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 560px) {
  .page-about_history_list-item {
    gap: 60px;
  }
}
.page-about_history_list-item:nth-child(n+2) {
  margin-top: 24px;
}
@media (max-width: 560px) {
  .page-about_history_list-item:nth-child(n+2) {
    margin-top: 14px;
  }
}
.page-about_history_list-item .__year {
  display: block;
  width: 100px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  position: relative;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .page-about_history_list-item .__year {
    font-size: 30px;
    width: 56px;
  }
}
.page-about_history_list-item .__year::before {
  content: "";
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -68px;
  transform: translateY(-50%);
}
@media (max-width: 560px) {
  .page-about_history_list-item .__year::before {
    width: 22px;
    height: 22px;
    right: -40px;
  }
}
.page-about_history_list-item .__text {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .page-about_history_list-item .__text {
    font-size: 12px;
  }
}

.page-about_partner {
  padding: 100px 0 164px;
}
@media (max-width: 560px) {
  .page-about_partner {
    padding: 36px 0 120px;
  }
}
.page-about_partner_top-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 560px) {
  .page-about_partner_top-title {
    font-size: 20px;
  }
}
.page-about_partner_list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .page-about_partner_list {
    gap: 16px 24px;
  }
}
@media (max-width: 560px) {
  .page-about_partner_list {
    margin-top: 24px;
  }
}
.page-about_partner_list-item {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page-about_partner_list-item {
    font-size: 13px;
  }
}
.page-about_partner_caution {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-about_partner_caution {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .page-about_partner_caution {
    font-size: 11px;
    margin-top: 16px;
  }
}

.page-about_end-block {
  background-color: #f7fafd;
  padding: 145px 0 100px;
  position: relative;
}
@media (max-width: 768px) {
  .page-about_end-block {
    padding: 80px 0 60px;
  }
}
@media (max-width: 560px) {
  .page-about_end-block {
    padding: 40px 0 40px;
  }
}
.page-about_end-block_title {
  display: flex;
  width: 364px;
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-about_end-block_title {
    width: 300px;
    top: -85px;
  }
}
@media (max-width: 560px) {
  .page-about_end-block_title {
    width: 156px;
    top: -44px;
  }
}
.page-about_end-block_card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-about_end-block_card-wrap {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
.page-about_end-block_card {
  background-color: #fff;
  width: calc(50% - 12px);
  max-width: 510px;
  padding: 52px 40px 64px;
  border-radius: 20px;
}
@media (max-width: 960px) {
  .page-about_end-block_card {
    padding: 40px 32px 56px;
  }
}
@media (max-width: 768px) {
  .page-about_end-block_card {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .page-about_end-block_card {
    padding: 20px 16px 24px;
  }
}
.page-about_end-block_card-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #0452ba;
  padding-bottom: 36px;
  position: relative;
}
@media (max-width: 960px) {
  .page-about_end-block_card-title {
    font-size: 20px;
    padding-bottom: 24px;
  }
}
@media (max-width: 560px) {
  .page-about_end-block_card-title {
    font-size: 16px;
    padding-bottom: 12px;
  }
}
.page-about_end-block_card-title::before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #0452ba;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page-about_end-block_card-text {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
  line-height: 2;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .page-about_end-block_card-text {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  .page-about_end-block_card-text {
    font-size: 13px;
    margin-top: 20px;
  }
}
.page-about_end-block_logo {
  max-width: 274px;
  margin: 80px auto 0;
}
@media (max-width: 768px) {
  .page-about_end-block_logo {
    margin-top: 40px;
  }
}
@media (max-width: 560px) {
  .page-about_end-block_logo {
    max-width: 214px;
    margin-top: 32px;
  }
}

.archive-news_main {
  padding-bottom: 140px;
}

.single-news_article {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .single-news_article {
    padding-bottom: 80px;
  }
}
@media (max-width: 560px) {
  .single-news_article {
    padding-bottom: 60px;
  }
}
.single-news_article_header {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 560px) {
  .single-news_article_header {
    gap: 6px;
  }
}
.single-news_article_header-category {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  min-width: 88px;
  height: 28px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .single-news_article_header-category {
    font-size: 16px;
    min-width: 65px;
    height: 22px;
  }
}
@media (max-width: 560px) {
  .single-news_article_header-category {
    font-size: 11px;
    min-width: 50px;
    height: 16px;
  }
}
.single-news_article_header-category.topics {
  background-color: #ff7f7e;
}
.single-news_article_header-category.news {
  background-color: #85cced;
}
.single-news_article_header-category.recruit {
  background-color: #ebc378;
}
.single-news_article_header-category.event {
  background-color: #8fcf1f;
}
.single-news_article_header-date {
  display: flex;
  gap: 12px;
}
@media (max-width: 560px) {
  .single-news_article_header-date {
    gap: 6px;
  }
}
.single-news_article_header-date .__icon {
  display: flex;
  align-items: center;
  width: 22px;
}
@media (max-width: 960px) {
  .single-news_article_header-date .__icon {
    width: 18px;
  }
}
@media (max-width: 560px) {
  .single-news_article_header-date .__icon {
    width: 13px;
  }
}
.single-news_article_header-date .__date {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  padding-bottom: 2px;
}
@media (max-width: 960px) {
  .single-news_article_header-date .__date {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .single-news_article_header-date .__date {
    font-size: 14px;
  }
}
.single-news_article_top-title {
  font-size: 32px;
  font-weight: 500;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 960px) {
  .single-news_article_top-title {
    font-size: 28px;
  }
}
@media (max-width: 560px) {
  .single-news_article_top-title {
    font-size: 18px;
    padding: 12px 0;
  }
}
.single-news_article_content h2 {
  font-size: 22px;
  font-weight: 500;
  background-color: #f7f7f7;
  padding: 28px 48px;
  line-height: 1.75;
  margin: 50px 0;
}
@media (max-width: 960px) {
  .single-news_article_content h2 {
    font-size: 20px;
    margin: 40px 0;
    padding: 20px 40px;
  }
}
@media (max-width: 560px) {
  .single-news_article_content h2 {
    font-size: 16px;
    margin: 28px 0;
    padding: 12px 24px;
  }
}
.single-news_article_content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0;
}
@media (max-width: 960px) {
  .single-news_article_content h3 {
    font-size: 18px;
    margin: 32px 0;
  }
}
@media (max-width: 560px) {
  .single-news_article_content h3 {
    font-size: 16px;
    margin: 24px 0;
  }
}
.single-news_article_content p {
  margin: 40px 0;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 960px) {
  .single-news_article_content p {
    font-size: 16px;
    margin: 32px 0;
  }
}
@media (max-width: 560px) {
  .single-news_article_content p {
    font-size: 13px;
    margin: 20px 0;
    line-height: 1.75;
  }
}
.single-news_article_content img {
  display: block;
  max-width: 650px;
  margin: 68px auto;
}
@media (max-width: 960px) {
  .single-news_article_content img {
    margin: 50px 0;
  }
}
@media (max-width: 560px) {
  .single-news_article_content img {
    margin: 32px 0;
  }
}

.single-news_nav {
  display: flex;
  justify-content: space-between;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .single-news_nav {
    padding-bottom: 45px;
    position: relative;
    max-width: 220px;
  }
}
.single-news_nav_arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-news_nav_arrow .__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .single-news_nav_arrow .__icon {
    width: 25px;
    height: 25px;
  }
}
.single-news_nav_arrow .__icon img {
  width: 6px;
}
@media (max-width: 768px) {
  .single-news_nav_arrow .__icon img {
    width: 5px;
  }
}
.single-news_nav_arrow .__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .single-news_nav_arrow .__text {
    font-size: 14px;
  }
}
.single-news_nav_return {
  font-size: 16px;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 400px;
  width: 230px;
  height: 35px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-news_nav_return {
    font-size: 14px;
    width: 220px;
    height: 30px;
  }
}
@media (max-width: 560px) {
  .single-news_nav_return {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.archive-news_pagination {
  padding: 100px 0;
}
.archive-news_pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.archive-news_pagination .wp-pagenavi .page, .archive-news_pagination .wp-pagenavi .current, .archive-news_pagination .wp-pagenavi .previouspostslink, .archive-news_pagination .wp-pagenavi .nextpostslink {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 35px;
  aspect-ratio: 1/1;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  padding: 0 0 2px;
}
.archive-news_pagination .wp-pagenavi .current {
  background-color: #000;
  color: #fff;
}
.archive-news_pagination .wp-pagenavi .previouspostslink, .archive-news_pagination .wp-pagenavi .nextpostslink {
  background-size: 6px;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: -100px;
}
.archive-news_pagination .wp-pagenavi .previouspostslink {
  background-image: url(../img/common/arrow_toleft-black.png);
}
.archive-news_pagination .wp-pagenavi .nextpostslink {
  background-image: url(../img/common/arrow_toright-black.png);
}

.page-contact_way {
  padding: 112px 0 120px;
}
@media (max-width: 768px) {
  .page-contact_way {
    padding: 80px 0 80px;
  }
}
@media (max-width: 560px) {
  .page-contact_way {
    padding: 20px 0 50px;
  }
}
.page-contact_way_title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-contact_way_title {
    font-size: 20px;
  }
}
.page-contact_way_list {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 24px;
}
@media (max-width: 768px) {
  .page-contact_way_list {
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
  }
}
.page-contact_way_list-item {
  background-color: #0452ba;
  border-radius: 20px;
  width: calc(33.33% - 16px);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-contact_way_list-item {
    width: 100%;
  }
}
.page-contact_way_list-link {
  display: block;
  padding: 20px 0 28px;
}
@media (max-width: 768px) {
  .page-contact_way_list-link {
    padding: 16px 0 20px;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-link {
    padding: 10px 0 12px;
  }
}
.page-contact_way_list-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .page-contact_way_list-title {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-title {
    font-size: 14px;
  }
}
.page-contact_way_list-icon {
  display: block;
  width: 56px;
  margin: 10px auto 0;
}
@media (max-width: 768px) {
  .page-contact_way_list-icon {
    width: 40px;
    margin: 6px auto 0;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-icon {
    width: 33px;
  }
}
.page-contact_way_list-num {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-contact_way_list-num {
    font-size: 24px;
    margin-top: 8px;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-num {
    font-size: 22px;
  }
}
.page-contact_way_list-reception {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
@media (max-width: 960px) {
  .page-contact_way_list-reception {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-contact_way_list-reception {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-reception {
    font-size: 12px;
  }
}
.page-contact_way_list-reception .__caution {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-contact_way_list-reception .__caution {
    font-size: 12px;
    margin-top: 0;
  }
}
@media (max-width: 560px) {
  .page-contact_way_list-reception .__caution {
    font-size: 11px;
  }
}

.page-contact_form {
  background-color: #f7fafd;
  padding: 64px 0 100px;
}
@media (max-width: 560px) {
  .page-contact_form {
    padding: 40px 0;
  }
}
.page-contact_form_top-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .page-contact_form_top-title {
    font-size: 20px;
  }
}
.page-contact_form_top-title-text {
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-contact_form_top-title-text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.page-contact_form_list {
  margin-top: 68px;
}
@media (max-width: 768px) {
  .page-contact_form_list {
    margin-top: 40px;
  }
}
.page-contact_form_list-item:nth-child(n+2) {
  margin-top: 32px;
}
.page-contact_form_list-title {
  font-size: 22px;
  font-weight: 700;
  color: #046db1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .page-contact_form_list-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 560px) {
  .page-contact_form_list-title {
    font-size: 16px;
  }
}
.page-contact_form_list-title .__require {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  background-color: #e60012;
  width: 28px;
  height: 14px;
  line-height: 1;
  color: #fff;
  padding-bottom: 1px;
  transform: translateY(1px);
}
@media (max-width: 560px) {
  .page-contact_form_list-title .__require {
    font-size: 10px;
    width: 23px;
    height: 12px;
  }
}
.page-contact_form_block {
  display: flex;
  gap: 18px 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-contact_form_block {
    gap: 12px 20px;
  }
}
.page-contact_form_block-inner {
  width: 100%;
}
.page-contact_form_block-inner.__half {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .page-contact_form_block-inner.__half {
    width: calc(50% - 10px);
  }
}
@media (max-width: 560px) {
  .page-contact_form_block-inner.__half {
    width: 100%;
  }
}
.page-contact_form_block-inner.__postcode {
  width: 213px;
}
@media (max-width: 560px) {
  .page-contact_form_block-inner.__postcode {
    width: 130px;
  }
}
.page-contact_form_block-inner.__address {
  width: calc(100% - 243px);
}
@media (max-width: 560px) {
  .page-contact_form_block-inner.__address {
    width: 100%;
  }
}
.page-contact_form_block-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .page-contact_form_block-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
@media (max-width: 560px) {
  .page-contact_form_block-title {
    font-size: 12px;
  }
}
.page-contact_form_block-area {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
}
@media (max-width: 768px) {
  .page-contact_form_block-area {
    border-radius: 12px;
    padding: 12px 16px;
  }
}
.page-contact_form_block-area input,
.page-contact_form_block-area textarea {
  width: 100%;
  font-size: 18px;
}
@media (max-width: 768px) {
  .page-contact_form_block-area input,
  .page-contact_form_block-area textarea {
    font-size: 15px;
  }
}
.page-contact_form_block-area input::-moz-placeholder, .page-contact_form_block-area textarea::-moz-placeholder {
  color: #dcdddd;
}
.page-contact_form_block-area input::placeholder,
.page-contact_form_block-area textarea::placeholder {
  color: #dcdddd;
}
.page-contact_form_block-area textarea {
  min-height: 346px;
}
@media (max-width: 768px) {
  .page-contact_form_block-area textarea {
    min-height: 250px;
  }
}
@media (max-width: 560px) {
  .page-contact_form_block-area textarea {
    min-height: 230px;
  }
}
.page-contact_form_block-area.__postcode {
  position: relative;
  padding-left: 60px;
}
@media (max-width: 768px) {
  .page-contact_form_block-area.__postcode {
    padding-left: 40px;
  }
}
.page-contact_form_block-area.__postcode::before {
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page-contact_form_block-area.__postcode::before {
    left: 16px;
    font-size: 15px;
  }
}
.page-contact_form_caution {
  margin-top: 48px;
}
.page-contact_form_caution-title {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-contact_form_caution-title {
    font-size: 14px;
  }
}
.page-contact_form_caution-list {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-contact_form_caution-list {
    margin-top: 16px;
  }
}
.page-contact_form_caution-list-item {
  font-size: 16px;
  font-weight: 500;
  padding-left: 1.1em;
  position: relative;
}
@media (max-width: 768px) {
  .page-contact_form_caution-list-item {
    font-size: 14px;
  }
}
.page-contact_form_caution-list-item:nth-child(n+2) {
  margin-top: 4px;
}
.page-contact_form_caution-list-item::before {
  content: "•";
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.page-contact_form_caution-list-item a {
  border-bottom: 1px solid #000;
}
.page-contact_form_concent {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 9px;
  padding-left: 20px;
}
.page-contact_form_concent .mwform-checkbox-field label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.page-contact_form_concent .mwform-checkbox-field label .mwform-checkbox-field-text {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-contact_form_concent .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-contact_form_concent .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 13px;
    padding-left: unset;
    justify-content: center;
    gap: 6px;
  }
}
.page-contact_form input[type=checkbox], .page-contact_form input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 34px;
  height: 34px;
}
.page-contact_form input[type=checkbox]::before, .page-contact_form input[type=radio]::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .page-contact_form input[type=checkbox]::before, .page-contact_form input[type=radio]::before {
    width: 22px;
    height: 22px;
  }
}
.page-contact_form input[type=checkbox]::after, .page-contact_form input[type=radio]::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #046db1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.1s;
}
@media (max-width: 768px) {
  .page-contact_form input[type=checkbox]::after, .page-contact_form input[type=radio]::after {
    width: 8px;
    height: 8px;
  }
}
.page-contact_form input[type=checkbox]:checked::after, .page-contact_form input[type=radio]:checked::after {
  opacity: 1;
}
.page-contact_form_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 68px;
  opacity: 0.3;
  pointer-events: none;
}
.page-contact_form_submit.is-active {
  opacity: 1;
  pointer-events: visible;
}
.page-contact_form_submit-btn {
  border-radius: 500px !important;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000 !important;
  background-image: url(../img/common/arrow_toright-black.png);
  background-size: 10.8px;
  background-position: center right 60px;
  background-repeat: no-repeat;
}
.page-contact_form_submit-btn:hover {
  background-position: center right 55px;
}

.page-id-117 .page-contact_form_submit {
  opacity: 1;
  pointer-events: visible;
}
.page-id-117 .page-contact_form_concent {
  display: none;
}
.page-id-117 .page-contact_form_caution-list {
  display: none;
}
.page-id-117 .page-contact_form_caution-title {
  display: none;
}

.mwform-radio-field {
  margin-left: 0 !important;
}
.mwform-radio-field label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mwform-radio-field .mwform-radio-field-text {
  font-weight: 700;
  font-size: 18px;
}

.page-privacy {
  padding: 100px 0;
}
@media (max-width: 960px) {
  .page-privacy {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .page-privacy {
    padding: 40px 0;
  }
}
@media (max-width: 560px) {
  .page-privacy {
    padding: 20px 0 40px;
  }
}
.page-privacy_intro-text {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 960px) {
  .page-privacy_intro-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-privacy_intro-text {
    font-size: 13px;
    line-height: 1.5;
  }
}
.page-privacy_main {
  margin-top: 40px;
  border-bottom: 0.25px solid #000;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .page-privacy_main {
    padding-bottom: 30px;
  }
}
.page-privacy_block:nth-child(n+2) {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-privacy_block:nth-child(n+2) {
    margin-top: 28px;
  }
}
.page-privacy_block-title {
  font-size: 24px;
  font-weight: 700;
  border-left: 34px solid #e2eaee;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding-left: 14px;
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .page-privacy_block-title {
    font-size: 22px;
    border-width: 30px;
    min-height: 45px;
    padding-left: 12px;
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .page-privacy_block-title {
    font-size: 16px;
    border-width: 20px;
    min-height: 30px;
    padding-left: 8px;
    margin-bottom: 12px;
  }
}
.page-privacy_block-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 960px) {
  .page-privacy_block-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-privacy_block-text {
    font-size: 13px;
    line-height: 1.5;
  }
}
.page-privacy_block-list {
  margin-top: 8px;
}
.page-privacy_block-list-item {
  font-size: 18px;
  font-weight: 500;
  padding-left: 1.1em;
  position: relative;
}
@media (max-width: 960px) {
  .page-privacy_block-list-item {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-privacy_block-list-item {
    font-size: 13px;
    line-height: 1.5;
  }
}
.page-privacy_block-list-item::before {
  content: "●";
  font-size: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.page-privacy_block-list-item:nth-child(n+2) {
  margin-top: 6px;
}
.page-privacy_date {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-privacy_date {
    margin-top: 24px;
  }
}

.page-for-service {
  width: 100%;
}
.page-for-service_top-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .page-for-service_top-title {
    gap: 12px;
    margin-bottom: 40px;
  }
}
@media (max-width: 560px) {
  .page-for-service_top-title {
    margin-bottom: 0;
  }
}
.page-for-service_top-title .__lg {
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1280px) {
  .page-for-service_top-title .__lg {
    font-size: 56px;
  }
}
@media (max-width: 960px) {
  .page-for-service_top-title .__lg {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .page-for-service_top-title .__lg {
    font-size: 36px;
  }
}
@media (max-width: 560px) {
  .page-for-service_top-title .__lg {
    font-size: 32px;
  }
}
.page-for-service_top-title .__sm {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .page-for-service_top-title .__sm {
    font-size: 20px;
  }
}
@media (max-width: 960px) {
  .page-for-service_top-title .__sm {
    font-size: 18px;
  }
}

.page-for-company_circle-list {
  display: flex;
  max-width: 810px;
  margin: 140px auto 0;
}
@media (max-width: 960px) {
  .page-for-company_circle-list {
    max-width: 750px;
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .page-for-company_circle-list {
    flex-wrap: wrap;
    max-width: 510px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list {
    max-width: 330px;
    margin-top: 60px;
  }
}
.page-for-company_circle-list_item {
  width: 33.33%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .page-for-company_circle-list_item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .page-for-company_circle-list_item:nth-child(1) {
    width: 100%;
    aspect-ratio: 2/1;
  }
}
@media (max-width: 768px) {
  .page-for-company_circle-list_item:nth-child(n+2) {
    transform: translateY(-34px);
    margin-bottom: -34px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list_item:nth-child(n+2) {
    transform: translateY(-22px);
    margin-bottom: -22px;
  }
}
.page-for-company_circle-list_item::before {
  content: "";
  width: 270px;
  aspect-ratio: 1/1;
  background-color: #e2eaee;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 960px) {
  .page-for-company_circle-list_item::before {
    width: 250px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list_item::before {
    width: 160px;
  }
}
.page-for-company_circle-list_icon {
  width: 102px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 960px) {
  .page-for-company_circle-list_icon {
    width: 80px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list_icon {
    width: 60px;
  }
}
.page-for-company_circle-list_title {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .page-for-company_circle-list_title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list_title {
    font-size: 16px;
  }
}
.page-for-company_circle-list_text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 960px) {
  .page-for-company_circle-list_text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-for-company_circle-list_text {
    font-size: 12px;
  }
}

.page-for-company_service {
  margin-top: 140px;
  overflow: hidden;
  padding-bottom: 136px;
}
@media (max-width: 960px) {
  .page-for-company_service {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service {
    margin-top: 60px;
    padding-bottom: 70px;
  }
}
.page-for-company_service_container {
  margin-top: 120px;
}
@media (max-width: 960px) {
  .page-for-company_service_container {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_container {
    margin-top: 48px;
  }
}
.page-for-company_service_block {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 100px;
  gap: 40px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block {
    padding-bottom: 80px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block {
    flex-direction: column;
    padding: 0 50px 40px;
    gap: 0;
    max-width: 500px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block {
    padding: 0 24px 40px;
  }
}
.page-for-company_service_block::before {
  content: "";
  width: 150vw;
  height: calc(100% - 50px);
  border-radius: 100px;
  background-color: #f7fafd;
  position: absolute;
  top: 50px;
  z-index: -1;
}
@media (max-width: 1280px) {
  .page-for-company_service_block::before {
    border-radius: 80px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block::before {
    border-radius: 50px;
    top: 30px;
    height: calc(100% - 30px);
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block::before {
    border-radius: 20px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block::before {
    border-radius: 15px;
  }
}
.page-for-company_service_block:nth-child(n+2) {
  margin-top: 95px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block:nth-child(n+2) {
    margin-top: 80px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block:nth-child(n+2) {
    margin-top: 64px;
  }
}
.page-for-company_service_block:nth-child(odd)::before {
  left: 0;
}
.page-for-company_service_block:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .page-for-company_service_block:nth-child(even) {
    flex-direction: column;
  }
}
.page-for-company_service_block:nth-child(even)::before {
  right: 0;
}
.page-for-company_service_block:nth-child(even) .page-for-company_service_block-content {
  padding-left: unset;
}
.page-for-company_service_block-content {
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-content {
    padding-left: 80px;
    width: 350px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-content {
    padding-left: 40px;
    width: 300px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block-content {
    padding: 0;
    width: auto;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.page-for-company_service_block-num {
  font-size: 140px;
  color: #07b0f2;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-32px);
  margin-bottom: -32px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-num {
    font-size: 120px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-num {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block-num {
    font-size: 80px;
    transform: translateY(-16px);
    margin-bottom: -16px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-num {
    font-size: 50px;
    transform: translateY(-10px);
    margin-bottom: -10px;
  }
}
.page-for-company_service_block-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-title {
    font-size: 36px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-title {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .page-for-company_service_block-title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-title {
    font-size: 20px;
  }
}
.page-for-company_service_block-list-item {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-left: 0.5em;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-list-item {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-list-item {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-list-item {
    font-size: 13px;
  }
}
.page-for-company_service_block-list-item::before {
  content: "•";
  font-size: inherit;
  font-weight: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.page-for-company_service_block-img-wrap {
  max-width: 616px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-img-wrap {
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block-img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .page-for-company_service_block-img.__pc {
    display: none;
  }
}
.page-for-company_service_block-img.__sp {
  display: none;
}
@media (max-width: 768px) {
  .page-for-company_service_block-img.__sp {
    display: block;
  }
}
.page-for-company_service_block-type {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  min-height: 55px;
  margin-top: 35px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-type {
    min-height: 45px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-type {
    margin-top: 20px;
    border-radius: 5px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-type {
    flex-direction: column;
  }
}
.page-for-company_service_block-type .__type {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
  background-color: #aac1cd;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-type .__type {
    font-size: 16px;
    width: 90px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-type .__type {
    font-size: 14px;
    width: 80px;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-type .__type {
    width: 100%;
    height: 35px;
    font-size: 12px;
  }
}
.page-for-company_service_block-type .__name {
  font-size: 18px;
  font-weight: 500;
  background-color: #e2eaee;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
}
@media (max-width: 1280px) {
  .page-for-company_service_block-type .__name {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-for-company_service_block-type .__name {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .page-for-company_service_block-type .__name {
    font-size: 12px;
    min-height: 35px;
  }
}
.page-for-company_service .top-service_list-item::before {
  background-color: #f7fafd;
}

.page-for-company_merit {
  padding: 80px 0 80px;
}
@media (max-width: 1280px) {
  .page-for-company_merit {
    padding: 60px 0;
  }
}
.page-for-company_merit_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 45px 20px;
}
@media (max-width: 960px) {
  .page-for-company_merit_list {
    gap: 24px 16px;
    margin-top: 24px;
  }
}
@media (max-width: 560px) {
  .page-for-company_merit_list {
    gap: 16px;
  }
}
.page-for-company_merit_list-item {
  width: calc(50% - 10px);
  max-width: 535px;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1280px) {
  .page-for-company_merit_list-item {
    gap: 20px;
    padding: 20px 28px;
  }
}
@media (max-width: 960px) {
  .page-for-company_merit_list-item {
    gap: 16px;
    padding: 12px 20px;
    width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .page-for-company_merit_list-item {
    flex-direction: column;
    padding: 12px 12px 16px;
  }
}
.page-for-company_merit_list-icon {
  display: flex;
  align-items: center;
  border-right: 1px solid #0452ba;
  width: 100px;
  flex-shrink: 0;
  padding-right: 25px;
}
@media (max-width: 1280px) {
  .page-for-company_merit_list-icon {
    width: 80px;
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  .page-for-company_merit_list-icon {
    width: 65px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .page-for-company_merit_list-icon {
    border-right: none;
    border-bottom: 1px solid #0452ba;
    padding: 0 0 10px;
  }
}
.page-for-company_merit_list-icon img {
  max-width: 92px;
}
.page-for-company_merit_list-title {
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-company_merit_list-title {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .page-for-company_merit_list-title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .page-for-company_merit_list-title {
    font-size: 17px;
  }
}
.page-for-company_merit_list-text {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
  line-height: 1.75;
}
@media (max-width: 1280px) {
  .page-for-company_merit_list-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-for-company_merit_list-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-for-company_merit_list-text {
    font-size: 13px;
  }
}

.page-for-company_case_container {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}
@media (max-width: 1280px) {
  .page-for-company_case_container {
    margin-top: 32px;
  }
}
@media (max-width: 960px) {
  .page-for-company_case_container {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .page-for-company_case_container {
    flex-direction: column;
    gap: 32px;
  }
}
.page-for-company_case_block {
  width: calc(50% - 10px);
  max-width: 535px;
}
@media (max-width: 768px) {
  .page-for-company_case_block {
    width: 100%;
  }
}
.page-for-company_case_bord {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-company_case_bord {
    padding: 20px 28px;
  }
}
@media (max-width: 560px) {
  .page-for-company_case_bord {
    padding: 12px 20px 16px;
  }
}
.page-for-company_case_bord-text {
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 1280px) {
  .page-for-company_case_bord-text {
    font-size: 14px;
    padding-bottom: 12px;
  }
}
.page-for-company_case_bord-text::before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #0452ba;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page-for-company_case_bord-name {
  font-size: 26px;
  font-weight: 700;
  color: inherit;
  line-height: 1;
  margin-top: 16px;
}
@media (max-width: 1280px) {
  .page-for-company_case_bord-name {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .page-for-company_case_bord-name {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .page-for-company_case_bord-name {
    font-size: 18px;
    margin-top: 12px;
  }
}
.page-for-company_case_list {
  margin-top: 40px;
}
@media (max-width: 960px) {
  .page-for-company_case_list {
    margin-top: 16px;
  }
}
.page-for-company_case_list-item {
  display: flex;
  gap: 10px;
}
@media (max-width: 960px) {
  .page-for-company_case_list-item {
    flex-direction: column;
    gap: 4px;
  }
}
.page-for-company_case_list-item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 960px) {
  .page-for-company_case_list-item:nth-child(n+2) {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-for-company_case_list-item:nth-child(n+2) {
    margin-top: 8px;
  }
}
.page-for-company_case_list-item .__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 30px;
  background-color: #0452ba;
  color: #fff;
  line-height: 1;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 1px;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .page-for-company_case_list-item .__tag {
    font-size: 14px;
    width: 70px;
    height: 25px;
  }
}
@media (max-width: 960px) {
  .page-for-company_case_list-item .__tag {
    font-size: 12px;
    width: 60px;
    height: 20px;
  }
}
.page-for-company_case_list-item .__text {
  font-size: 20px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-company_case_list-item .__text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-for-company_case_list-item .__text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-for-company_case_list-item .__text {
    font-size: 13px;
  }
}

.page-for-company_price {
  margin-top: 84px;
  padding-bottom: 108px;
}
@media (max-width: 768px) {
  .page-for-company_price {
    padding-bottom: 64px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price {
    margin-top: 48px;
    padding-bottom: 48px;
  }
}
.page-for-company_price_bord {
  background-color: #fff;
  border-radius: 10px;
  padding: 35px 40px 24px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .page-for-company_price_bord {
    padding: 24px 24px;
    max-width: 500px;
    margin: 24px auto 0;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_bord {
    padding: 16px;
  }
}
.page-for-company_price_list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .page-for-company_price_list {
    flex-direction: column;
    gap: 12px;
  }
}
.page-for-company_price_list-item {
  border: 1px solid #0452ba;
  border-radius: 10px;
  width: calc(33.33% - 14px);
  padding: 20px;
  padding: 16px;
}
@media (max-width: 960px) {
  .page-for-company_price_list-item {
    width: 100%;
  }
}
.page-for-company_price_list-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 40px;
  color: #fff;
  background-color: #0452ba;
  border-radius: 125px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .page-for-company_price_list-tag {
    font-size: 18px;
    width: 110px;
    height: 30px;
    padding-bottom: 2px;
  }
}
@media (max-width: 960px) {
  .page-for-company_price_list-tag {
    font-size: 16px;
    width: 100px;
    height: 25px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_list-tag {
    font-size: 12px;
    width: 60px;
    height: 23px;
    padding-bottom: 1px;
  }
}
.page-for-company_price_list-text {
  font-size: 20px;
  font-weight: 700;
  color: #0452ba;
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .page-for-company_price_list-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_list-text {
    font-size: 13px;
  }
}
.page-for-company_price_estimate {
  color: #0452ba;
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 960px) {
  .page-for-company_price_estimate {
    text-align: left;
  }
}
.page-for-company_price_estimate .__sm {
  font-size: 18px;
  font-weight: 500;
  color: inherit;
}
@media (max-width: 1280px) {
  .page-for-company_price_estimate .__sm {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-for-company_price_estimate .__sm {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_estimate .__sm {
    font-size: 13px;
  }
}
.page-for-company_price_estimate .__lg {
  font-size: 26px;
  font-weight: 700;
  color: inherit;
}
@media (max-width: 1280px) {
  .page-for-company_price_estimate .__lg {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .page-for-company_price_estimate .__lg {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_estimate .__lg {
    font-size: 16px;
  }
}
.page-for-company_price_contact-block {
  display: flex;
  justify-content: space-between;
  margin-top: 68px;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-block {
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
    margin: 36px auto 0;
  }
}
.page-for-company_price_contact-item {
  width: calc(50% - 20px);
  max-width: 500px;
  background-color: #0452ba;
  border-radius: 20px;
  padding: 24px 16px;
  display: block;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-item {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: unset;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_contact-item {
    padding: 12px 12px 16px;
    height: 140px;
    border-radius: 12px;
  }
}
.page-for-company_price_contact-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-title {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_contact-title {
    font-size: 14px;
  }
}
.page-for-company_price_contact-icon {
  display: block;
  width: 56px;
  margin: 8px auto 0;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-icon {
    width: 45px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_contact-icon {
    width: 32px;
  }
}
.page-for-company_price_contact-num {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-num {
    font-size: 26px;
    margin-top: 8px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_contact-num {
    font-size: 22px;
    margin-top: 4px;
  }
}
.page-for-company_price_contact-reception {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-reception {
    flex-direction: row;
    font-size: 12px;
    justify-content: center;
    margin-top: 4px;
  }
}
.page-for-company_price_contact-reception .__sm {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-for-company_price_contact-reception .__sm {
    font-size: 11px;
  }
}
.page-for-company_price_contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #0452ba;
  width: 100%;
  max-width: 350px;
  height: 76px;
  background-color: #fff;
  border-radius: 350px;
  margin: 24px auto;
  position: relative;
}
@media (max-width: 1280px) {
  .page-for-company_price_contact-btn {
    font-size: 16px;
    max-width: 320px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .page-for-company_price_contact-btn {
    font-size: 15px;
    height: 55px;
    margin-top: 16px;
    max-width: 280px;
  }
}
@media (max-width: 560px) {
  .page-for-company_price_contact-btn {
    font-size: 13px;
    max-width: 246px;
    height: 50px;
    margin: 10px 0;
  }
}
.page-for-company_price_contact-btn::before {
  content: "";
  width: 10.7px;
  aspect-ratio: 10.7/18.8;
  background: url(../img/common/arrow_toright-blue.png) center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 36px;
}
@media (max-width: 1280px) {
  .page-for-company_price_contact-btn::before {
    width: 8.5px;
    right: 30px;
  }
}
@media (max-width: 768px) {
  .page-for-company_price_contact-btn::before {
    right: 24px;
  }
}

.page-for-recruit_bg-wrap {
  margin-top: 64px;
}

.page-for-recruit_support {
  padding-top: 90px;
}
@media (max-width: 768px) {
  .page-for-recruit_support {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_support {
    padding-top: 30px;
  }
}
.page-for-recruit_support_list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-for-recruit_support_list {
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-for-recruit_support_list-item {
  width: calc(33.33% - 16px);
  max-width: 355px;
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 20px 36px;
}
@media (max-width: 768px) {
  .page-for-recruit_support_list-item {
    width: 100%;
    max-width: unset;
    padding: 24px 20px 28px;
  }
}
.page-for-recruit_support_list-inner {
  max-width: 255px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-for-recruit_support_list-inner {
    max-width: 280px;
  }
}
.page-for-recruit_support_list-header {
  display: flex;
  align-items: center;
}
.page-for-recruit_support_list-header .__icon {
  display: flex;
  align-items: center;
  width: 100px;
  padding-right: 22px;
  border-right: 1px solid #0452ba;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .page-for-recruit_support_list-header .__icon {
    width: 90px;
  }
}
@media (max-width: 960px) {
  .page-for-recruit_support_list-header .__icon {
    width: 75px;
    padding-right: 18px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_support_list-header .__icon {
    padding-right: 14px;
  }
}
.page-for-recruit_support_list-header .__title {
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  width: 100%;
  text-align: center;
}
@media (max-width: 1280px) {
  .page-for-recruit_support_list-header .__title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .page-for-recruit_support_list-header .__title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_support_list-header .__title {
    font-size: 18px;
    text-align: left;
    padding-left: 20px;
  }
}
.page-for-recruit_support_list-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: #0452ba;
  text-align: justify;
  margin-top: 12px;
}
@media (max-width: 1280px) {
  .page-for-recruit_support_list-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-for-recruit_support_list-text {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_support_list-text {
    font-size: 13px;
  }
}

.page-for-recruit_benefits {
  margin-top: 120px;
  padding-bottom: 130px;
}
@media (max-width: 960px) {
  .page-for-recruit_benefits {
    padding-bottom: 80px;
    margin-top: 80px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_benefits {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
.page-for-recruit_benefits_list {
  display: flex;
  flex-wrap: wrap;
  gap: 68px 30px;
  margin-top: 68px;
}
@media (max-width: 960px) {
  .page-for-recruit_benefits_list {
    gap: 40px 32px;
  }
}
@media (max-width: 768px) {
  .page-for-recruit_benefits_list {
    gap: 24px 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_benefits_list {
    margin-top: 36px;
  }
}
.page-for-recruit_benefits_list-item {
  width: calc(33.33% - 20px);
}
@media (max-width: 960px) {
  .page-for-recruit_benefits_list-item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 768px) {
  .page-for-recruit_benefits_list-item {
    width: 100%;
  }
}
.page-for-recruit_benefits_list-img {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .page-for-recruit_benefits_list-img {
    border-radius: 8px;
  }
}
.page-for-recruit_benefits_list-title {
  border-radius: 10px;
  background-color: #fff;
  min-height: 75px;
  width: 100%;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0452ba;
  margin-top: 8px;
}
@media (max-width: 1280px) {
  .page-for-recruit_benefits_list-title {
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .page-for-recruit_benefits_list-title {
    font-size: 20px;
    border-radius: 8px;
    min-height: 50px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_benefits_list-title {
    font-size: 16px;
    min-height: 37px;
  }
}
.page-for-recruit_benefits_list-text {
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  padding: 20px;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-recruit_benefits_list-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-for-recruit_benefits_list-text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_benefits_list-text {
    font-size: 13px;
    padding: 10px 0;
  }
}
.page-for-recruit_benefits_child-list {
  padding: 0 20px;
}
@media (max-width: 560px) {
  .page-for-recruit_benefits_child-list {
    padding: 0;
  }
}
.page-for-recruit_benefits_child-list-item {
  font-size: 16px;
  color: #0452ba;
  padding-left: 0.5em;
  position: relative;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .page-for-recruit_benefits_child-list-item {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-for-recruit_benefits_child-list-item {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_benefits_child-list-item {
    font-size: 13px;
  }
}
.page-for-recruit_benefits_child-list-item:nth-child(n+2) {
  margin-top: 4px;
}
.page-for-recruit_benefits_child-list-item::before {
  content: "•";
  font-size: inherit;
  color: inherit;
  position: absolute;
  left: 0;
  top: 0;
}

.page-for-recruit_flow {
  background-color: #0452ba;
  padding: 60px 0 80px;
}
@media (max-width: 560px) {
  .page-for-recruit_flow {
    padding: 48px 0 56px;
  }
}
.page-for-recruit_flow_top-title {
  color: #fff;
}
.page-for-recruit_flow_list {
  display: flex;
  gap: 68px;
  margin-top: 64px;
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_list {
    gap: 24px 56px;
  }
}
@media (max-width: 960px) {
  .page-for-recruit_flow_list {
    flex-wrap: wrap;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list {
    width: calc(100% + 40px);
    margin-top: 40px;
    gap: 12px 40px;
    transform: translateX(-20px);
  }
}
.page-for-recruit_flow_list-item {
  width: 25%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #abe7fe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
}
@media (max-width: 960px) {
  .page-for-recruit_flow_list-item {
    width: calc(50% - 56px);
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-item {
    width: calc(50% - 40px);
  }
}
.page-for-recruit_flow_list-item::before {
  content: "";
  width: 28px;
  aspect-ratio: 27.9819/48.9265;
  background: url(../img/common/arrow_toright-light-blue.png) center/cover;
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_list-item::before {
    width: 24px;
    right: -42px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-item::before {
    width: 16px;
    right: -28px;
  }
}
.page-for-recruit_flow_list-item:last-child::before {
  display: none;
}
@media (max-width: 960px) {
  .page-for-recruit_flow_list-item:nth-child(n+3) {
    transform: translateX(56px);
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-item:nth-child(n+3) {
    transform: translateX(40px);
  }
}
.page-for-recruit_flow_list-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_list-title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-title {
    font-size: 16px;
  }
}
.page-for-recruit_flow_list-title .__sm {
  font-size: 20px;
  color: inherit;
  font-weight: inherit;
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_list-title .__sm {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-title .__sm {
    font-size: 13px;
  }
}
.page-for-recruit_flow_list-text {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_list-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_list-text {
    font-size: 12px;
  }
}
.page-for-recruit_flow_btn {
  margin: 60px auto 0;
  background-color: #fff;
  border-color: #fff;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-for-recruit_flow_btn {
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  .page-for-recruit_flow_btn {
    margin-top: 36px;
  }
}

.single-base_top-title .__lg {
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 560px) {
  .single-base_bg-radius::before {
    top: 180px;
  }
}

.single-base_news {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .single-base_news {
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .single-base_news {
    margin-top: 0;
  }
}

.single-base_about {
  padding-bottom: 60px;
}
@media (max-width: 960px) {
  .single-base_about {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .single-base_about {
    padding-bottom: 28px;
  }
}
.single-base_about_thumbnail {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 88px;
  overflow: hidden;
  max-width: 480px;
  border-radius: 64px;
}
@media (max-width: 768px) {
  .single-base_about_thumbnail {
    border-radius: 60px;
  }
}
@media (max-width: 560px) {
  .single-base_about_thumbnail {
    border-radius: 40px;
    max-width: 250px;
  }
}
.single-base_about_top-title {
  margin-top: 68px;
}
@media (max-width: 960px) {
  .single-base_about_top-title {
    margin-top: 56px;
  }
}
@media (max-width: 768px) {
  .single-base_about_top-title {
    margin-top: 40px;
  }
}
.single-base_about_top-title-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: #0452ba;
  margin-top: 48px;
}
@media (max-width: 960px) {
  .single-base_about_top-title-text {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  .single-base_about_top-title-text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .single-base_about_top-title-text {
    font-size: 14px;
  }
}
.single-base_about_person {
  max-width: 940px;
  margin: 156px auto 0;
}
@media (max-width: 960px) {
  .single-base_about_person {
    margin-top: 100px;
  }
}
@media (max-width: 560px) {
  .single-base_about_person {
    margin-top: 68px;
  }
}
.single-base_about_person-profile {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  gap: 36px;
}
@media (max-width: 560px) {
  .single-base_about_person-profile {
    flex-direction: column;
    align-items: flex-start;
    max-width: 200px;
    margin: 0 auto;
    gap: 20px;
  }
}
.single-base_about_person-img {
  max-width: 327px;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-base_about_person-img {
    max-width: 200px;
  }
}
.single-base_about_person-meta {
  font-size: 18px;
  line-height: 1.75;
  color: #0452ba;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-base_about_person-meta {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .single-base_about_person-meta {
    font-size: 14px;
  }
}
.single-base_about_person-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-top: 48px;
  color: #0452ba;
  text-align: justify;
}
@media (max-width: 960px) {
  .single-base_about_person-text {
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  .single-base_about_person-text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 28px;
  }
}
@media (max-width: 560px) {
  .single-base_about_person-text {
    Fz: 13px;
  }
}
.single-base_about_info {
  margin-top: 80px;
}
@media (max-width: 960px) {
  .single-base_about_info {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .single-base_about_info {
    margin-top: 40px;
  }
}
.single-base_about_info-item {
  padding: 20px 0;
  border-top: 1px solid #0452ba;
  display: flex;
}
@media (max-width: 768px) {
  .single-base_about_info-item {
    padding: 16px 0;
  }
}
@media (max-width: 560px) {
  .single-base_about_info-item {
    padding: 12px 0;
  }
}
.single-base_about_info-title {
  font-size: 16px;
  font-weight: 700;
  color: #0452ba;
  min-width: 140px;
  width: 24%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .single-base_about_info-title {
    font-size: 14px;
    min-width: 120px;
  }
}
@media (max-width: 560px) {
  .single-base_about_info-title {
    font-size: 13px;
    min-width: 110px;
  }
}
.single-base_about_info-content {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
  width: 100%;
}
@media (max-width: 768px) {
  .single-base_about_info-content {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .single-base_about_info-content {
    font-size: 13px;
  }
}
.single-base_about_info-link {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}
.single-base_about_info-map {
  width: 100%;
  height: 498px;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px 0;
}
@media (max-width: 960px) {
  .single-base_about_info-map {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  .single-base_about_info-map {
    aspect-ratio: 4/3;
    padding: 10px 0;
  }
}
.single-base_about_info-map iframe {
  width: 100%;
  height: 100%;
}

.single-base_job-seeker {
  padding: 60px 0 70px;
}
@media (max-width: 960px) {
  .single-base_job-seeker {
    padding: 40px 0 50px;
  }
}
@media (max-width: 768px) {
  .single-base_job-seeker {
    padding: 28px 0 40px;
  }
}
.single-base_job-seeker_top-title-text {
  text-align: 16px;
  text-align: center;
  font-weight: 700;
  color: #0452ba;
  margin-top: 24px;
}
.single-base_job-seeker_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}
@media (max-width: 960px) {
  .single-base_job-seeker_flex {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .single-base_job-seeker_flex {
    flex-direction: column;
    gap: 90px;
  }
}
@media (max-width: 560px) {
  .single-base_job-seeker_flex {
    gap: 74px;
    margin-top: 80px;
  }
}
.single-base_job-seeker_flex-item {
  width: calc(50% - 18px);
  background-color: #fff;
  padding: 0 20px 40px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .single-base_job-seeker_flex-item {
    width: 100%;
    padding-bottom: 24px;
  }
}
.single-base_job-seeker_flex-item-inner {
  max-width: 390px;
  margin: 0 auto;
}
.single-base_job-seeker_flex-img {
  transform: translateY(-60px);
  margin-bottom: -60px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-base_job-seeker_flex-img {
    transform: translateY(-50px);
    margin-bottom: -50px;
  }
}
.single-base_job-seeker_flex-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .single-base_job-seeker_flex-title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .single-base_job-seeker_flex-title {
    font-size: 22px;
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .single-base_job-seeker_flex-title {
    font-size: 20px;
  }
}
.single-base_job-seeker_flex-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
}
@media (max-width: 960px) {
  .single-base_job-seeker_flex-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .single-base_job-seeker_flex-text {
    font-size: 14px;
    margin-top: 16px;
  }
}
@media (max-width: 560px) {
  .single-base_job-seeker_flex-text {
    font-size: 13px;
  }
}
.single-base_job-seeker_btn {
  margin: 32px auto 0;
}
@media (max-width: 560px) {
  .single-base_job-seeker_btn {
    margin-top: 24px;
  }
}

.single-base_recruit {
  padding: 80px 0 90px;
}
@media (max-width: 768px) {
  .single-base_recruit {
    padding: 40px 0 70px;
  }
}
@media (max-width: 560px) {
  .single-base_recruit {
    padding: 30px 0 50px;
  }
}
.single-base_recruit_list {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .single-base_recruit_list {
    margin-top: 32px;
  }
}
@media (max-width: 560px) {
  .single-base_recruit_list {
    max-width: 245px;
    margin: 24px auto 0;
  }
}
.single-base_recruit_btn {
  margin: 96px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 960px) {
  .single-base_recruit_btn {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .single-base_recruit_btn {
    margin-top: 60px;
  }
}
@media (max-width: 560px) {
  .single-base_recruit_btn {
    margin-top: 40px;
  }
}
.single-base_recruit_btn .__arrow {
  position: static;
  transform: translate(0);
}
.single-base_recruit_btn:hover .__arrow {
  transform: translateX(5px);
}

.single-base_sns {
  padding: 88px 0 60px;
}
@media (max-width: 768px) {
  .single-base_sns {
    padding: 48px 0 40px;
  }
}
.single-base_sns_list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .single-base_sns_list {
    flex-wrap: wrap;
    gap: 40px;
    max-width: 550px;
    margin: 50px auto 0;
  }
}
.single-base_sns_list-item {
  width: calc(25% - 12px);
  max-width: 204px;
}
@media (max-width: 768px) {
  .single-base_sns_list-item {
    width: calc(50% - 20px);
    max-width: unset;
  }
}
.single-base_sns_list-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
@media (max-width: 960px) {
  .single-base_sns_list-header {
    padding-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .single-base_sns_list-header {
    padding-bottom: 18px;
  }
}
.single-base_sns_list-header .__icon {
  display: flex;
  align-items: center;
  width: 60px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .single-base_sns_list-header .__icon {
    width: 40px;
  }
}
@media (max-width: 560px) {
  .single-base_sns_list-header .__icon {
    width: 35px;
  }
}
.single-base_sns_list-header .__name {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
@media (max-width: 960px) {
  .single-base_sns_list-header .__name {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .single-base_sns_list-header .__name {
    font-size: 13px;
  }
}
.single-base_sns_list-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 16px;
}
@media (max-width: 960px) {
  .single-base_sns_list-text {
    font-size: 15px;
    margin-top: 10px;
  }
}
@media (max-width: 560px) {
  .single-base_sns_list-text {
    font-size: 12px;
  }
}
.single-base_sns_list-btn {
  display: flex;
  margin-top: 18px;
  padding-right: 16px;
  gap: 6px;
}
.single-base_sns_list-btn .__sns-icon {
  display: flex;
  align-items: center;
  width: 25px;
}
@media (max-width: 560px) {
  .single-base_sns_list-btn .__sns-icon {
    width: 18px;
  }
}
.single-base_sns_list-btn .__arrow {
  right: 24px;
}
@media (max-width: 560px) {
  .single-base_sns_list-btn .__arrow {
    right: 16px;
  }
}
.single-base_sns_content {
  margin: 100px auto;
  display: flex;
  gap: 0 40px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .single-base_sns_content {
    gap: 0 24px;
  }
}
@media (max-width: 960px) {
  .single-base_sns_content {
    max-width: 500px;
    width: calc(100% - 60px);
  }
}
.single-base_sns_content .slick-arrow {
  width: 30px;
  height: 30px;
  text-indent: -200px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + 25px));
  background-position: center;
  background-size: cover;
}
.single-base_sns_content .slick-arrow.slick-prev {
  left: -50px;
  background-image: url(../img/common/slider_prev-arrow.jpg);
}
.single-base_sns_content .slick-arrow.slick-next {
  right: -50px;
  background-image: url(../img/common/slider_next-arrow.jpg);
}
.single-base_sns_content-item {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 960px) {
  .single-base_sns_content-item {
    max-width: unset;
  }
}

.single-base_contact {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .single-base_contact {
    padding-bottom: 80px;
  }
}
@media (max-width: 560px) {
  .single-base_contact {
    padding-bottom: 56px;
  }
}
.single-base_contact_title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 768px) {
  .single-base_contact_title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .single-base_contact_title {
    font-size: 20px;
  }
}
.single-base_contact_flex {
  display: flex;
  justify-content: center;
  max-width: 740px;
  margin: 48px auto 0;
  gap: 24px;
}
@media (max-width: 768px) {
  .single-base_contact_flex {
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
    margin: 36px auto 0;
  }
}
.single-base_contact_flex-item {
  width: calc(33.33% - 16px);
  max-width: 500px;
  background-color: #0452ba;
  border-radius: 20px;
  padding: 24px 16px;
  display: block;
}
@media (max-width: 768px) {
  .single-base_contact_flex-item {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: unset;
  }
}
@media (max-width: 560px) {
  .single-base_contact_flex-item {
    padding: 12px 12px 16px;
    height: 140px;
    border-radius: 12px;
  }
}
.single-base_contact_flex-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .single-base_contact_flex-title {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .single-base_contact_flex-title {
    font-size: 14px;
  }
}
.single-base_contact_flex-icon {
  display: block;
  width: 56px;
  margin: 8px auto 0;
}
@media (max-width: 768px) {
  .single-base_contact_flex-icon {
    width: 45px;
  }
}
@media (max-width: 560px) {
  .single-base_contact_flex-icon {
    width: 32px;
  }
}
.single-base_contact_flex-num {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-top: 16px;
  line-height: 1;
}
@media (max-width: 768px) {
  .single-base_contact_flex-num {
    font-size: 26px;
    margin-top: 8px;
  }
}
@media (max-width: 560px) {
  .single-base_contact_flex-num {
    font-size: 22px;
    margin-top: 4px;
  }
}
.single-base_contact_flex-reception {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .single-base_contact_flex-reception {
    flex-direction: row;
    font-size: 12px;
    justify-content: center;
    margin-top: 4px;
  }
}
.single-base_contact_flex-reception .__sm {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .single-base_contact_flex-reception .__sm {
    font-size: 11px;
  }
}

.archive-recruit_tab-area::before {
  background-color: #fff;
}
.archive-recruit_tab-area::after {
  display: none;
}
@media (max-width: 768px) {
  .archive-recruit_list {
    display: flex;
  }
}
@media (max-width: 560px) {
  .archive-recruit_list {
    gap: 32px 0;
  }
}

.single-recruit {
  padding-bottom: 160px;
}
@media (max-width: 960px) {
  .single-recruit {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .single-recruit {
    padding-bottom: 80px;
  }
}
.single-recruit_top-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f7fafd;
  padding: 64px 0;
  gap: 16px;
}
@media (max-width: 960px) {
  .single-recruit_top-title-wrap {
    padding: 50px 0;
  }
}
@media (max-width: 560px) {
  .single-recruit_top-title-wrap {
    padding: 36px 0;
    gap: 10px;
  }
}
.single-recruit_top-tag {
  display: flex;
  justify-content: center;
  gap: 4px 8px;
}
.single-recruit_top-tag-item {
  background-color: #0452ba;
  color: #fff;
  font-weight: 500;
  display: flex;
  min-width: 96px;
  height: 27px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  line-height: 1;
  align-items: center;
  padding-bottom: 1px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .single-recruit_top-tag-item {
    font-size: 12px;
    height: 20px;
    min-width: 75px;
  }
}
.single-recruit_top-title {
  font-size: 32px;
  font-weight: 500;
  color: #0452ba;
}
@media (max-width: 768px) {
  .single-recruit_top-title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .single-recruit_top-title {
    font-size: 24px;
  }
}
.single-recruit_thumbnail {
  max-width: 650px;
  margin: 80px auto 0;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .single-recruit_thumbnail {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .single-recruit_thumbnail {
    margin-top: 60px;
    max-width: 400px;
  }
}
@media (max-width: 560px) {
  .single-recruit_thumbnail {
    max-width: 280px;
    margin-top: 40px;
  }
}
.single-recruit_table {
  margin-top: 120px;
}
@media (max-width: 960px) {
  .single-recruit_table {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table {
    margin-top: 60px;
  }
}
@media (max-width: 560px) {
  .single-recruit_table {
    margin-top: 30px;
  }
}
.single-recruit_table th {
  padding-left: 34px;
  position: relative;
  font-size: 28px;
  color: #0452ba;
  font-weight: 500;
  width: 285px;
  vertical-align: top;
}
@media (max-width: 960px) {
  .single-recruit_table th {
    font-size: 24px;
    width: 200px;
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table th {
    display: block;
    width: 100%;
    font-size: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 560px) {
  .single-recruit_table th {
    font-size: 16px;
    padding-left: 16px;
  }
}
.single-recruit_table th::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #de1427;
  position: absolute;
  top: 14.5px;
  left: 0;
}
@media (max-width: 960px) {
  .single-recruit_table th::before {
    width: 12px;
    height: 12px;
    top: 13px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table th::before {
    width: 10px;
    height: 10px;
    top: 11px;
  }
}
@media (max-width: 560px) {
  .single-recruit_table th::before {
    width: 8px;
    height: 8px;
    top: 9px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table td {
    display: block;
    margin-top: 16px;
  }
}
.single-recruit_table-descript {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  padding-bottom: 64px;
}
@media (max-width: 960px) {
  .single-recruit_table-descript {
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table-descript {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 36px;
  }
}
@media (max-width: 560px) {
  .single-recruit_table-descript {
    font-size: 13px;
    padding-bottom: 32px;
  }
}
.single-recruit_table-list-item {
  border-top: 0.35px solid #0452ba;
  padding: 50px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .single-recruit_table-list-item {
    padding: 32px 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table-list-item {
    padding: 28px 0;
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .single-recruit_table-list-item {
    font-size: 13px;
  }
}
.single-recruit_table-list-item:last-child {
  border-bottom: 0.35px solid #0452ba;
}
.single-recruit_table-list-title {
  font-size: inherit;
  font-weight: inherit;
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .single-recruit_table-list-title {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .single-recruit_table-list-title {
    width: 100px;
  }
}
.single-recruit_table-list-content {
  font-size: inherit;
  font-weight: inherit;
}
.single-recruit_table-child-list-item {
  font-size: inherit;
  font-weight: inherit;
  padding-left: 1.1em;
  position: relative;
}
.single-recruit_table-child-list-item::before {
  content: "・";
  font-size: inherit;
  font-weight: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.single-recruit_table-child-list-item:nth-child(n+2) {
  margin-top: 6px;
}
.single-recruit_btn-wrap {
  display: flex;
  margin-top: 120px;
  gap: 32px;
  padding-left: 285px;
}
@media (max-width: 960px) {
  .single-recruit_btn-wrap {
    padding-left: 200px;
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .single-recruit_btn-wrap {
    padding-left: 0;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  .single-recruit_btn-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.page-training_top-title-inner {
  align-items: center;
}
@media (max-width: 768px) {
  .page-training_top-title-inner {
    text-align: center;
  }
}
.page-training_top-title-inner::before {
  display: none;
}
.page-training_top-title-inner .__en {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .page-training_top-title-inner .__jp {
    line-height: 1.4;
  }
}
.page-training_bg-radius {
  margin-top: 136px;
}
@media (max-width: 960px) {
  .page-training_bg-radius {
    margin-top: 80px;
  }
}
@media (max-width: 560px) {
  .page-training_bg-radius {
    margin-top: 54px;
  }
}

.page-training_flow {
  margin-top: 68px;
}
.page-training_flow_list {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .page-training_flow_list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list {
    margin-top: 28px;
  }
}
.page-training_flow_list-item {
  background-color: #e2eaee;
  border-radius: 10px;
  padding: 28px 24px;
}
@media (max-width: 560px) {
  .page-training_flow_list-item {
    padding: 12px 20px;
  }
}
.page-training_flow_list-item:nth-child(n+2) {
  margin-top: 15px;
}
@media (max-width: 560px) {
  .page-training_flow_list-item:nth-child(n+2) {
    margin-top: 8px;
  }
}
.page-training_flow_list-item:last-child .page-training_flow_list-item-num::before {
  display: none;
}
.page-training_flow_list-item-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media (max-width: 1280px) {
  .page-training_flow_list-item-inner {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .page-training_flow_list-item-inner {
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-item-inner {
    gap: 22px;
  }
}
.page-training_flow_list-item-num {
  font-size: 48px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 960px) {
  .page-training_flow_list-item-num {
    width: 80px;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .page-training_flow_list-item-num {
    font-size: 40px;
    width: 60px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-item-num {
    font-size: 28px;
    width: 36px;
  }
}
.page-training_flow_list-item-num::before {
  content: "";
  width: 48px;
  aspect-ratio: 48.9/27.9;
  background: url(../img/common/arrow_tobottom-black.png) center/cover;
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-training_flow_list-item-num::before {
    width: 40px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-item-num::before {
    width: 30px;
    bottom: -25px;
  }
}
.page-training_flow_list-content {
  max-width: 750px;
  width: 100%;
}
.page-training_flow_list-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-training_flow_list-period {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 35px;
  background-color: #fff;
  border-radius: 100px;
  gap: 4px;
  display: none;
}
@media (max-width: 960px) {
  .page-training_flow_list-period {
    height: 30px;
    width: 80px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-period {
    height: 20px;
    width: 50px;
  }
}
.page-training_flow_list-period .__icon {
  display: flex;
  align-items: center;
  width: 15px;
}
@media (max-width: 960px) {
  .page-training_flow_list-period .__icon {
    width: 13px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-period .__icon {
    width: 10px;
  }
}
.page-training_flow_list-period .__date {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .page-training_flow_list-period .__date {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-period .__date {
    font-size: 10px;
  }
}
.page-training_flow_list-title {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .page-training_flow_list-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .page-training_flow_list-title {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-title {
    font-size: 18px;
  }
}
.page-training_flow_list-text {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
@media (max-width: 960px) {
  .page-training_flow_list-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-training_flow_list-text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-training_flow_list-text {
    font-size: 13px;
    margin-top: 10px;
  }
}

.page-training_support {
  padding-top: 80px;
}
@media (max-width: 560px) {
  .page-training_support {
    padding-top: 28px;
  }
}
.page-training_support_list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 20px;
}
@media (max-width: 960px) {
  .page-training_support_list {
    gap: 24px 16px;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .page-training_support_list {
    gap: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-training_support_list-item {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 1280px) {
  .page-training_support_list-item {
    gap: 20px;
    padding: 20px 28px;
  }
}
@media (max-width: 960px) {
  .page-training_support_list-item {
    gap: 16px;
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  .page-training_support_list-item {
    padding: 12px 12px 16px;
    flex-wrap: wrap;
  }
}
.page-training_support_list-icon {
  display: flex;
  align-items: center;
  border-right: 1px solid #0452ba;
  width: 96px;
  flex-shrink: 0;
  padding-right: 25px;
}
@media (max-width: 1280px) {
  .page-training_support_list-icon {
    width: 80px;
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  .page-training_support_list-icon {
    width: 65px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .page-training_support_list-icon {
    width: 83px;
  }
}
@media (max-width: 560px) {
  .page-training_support_list-icon {
    width: 72px;
  }
}
.page-training_support_list-icon img {
  max-width: 92px;
}
.page-training_support_list-title {
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-training_support_list-title {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .page-training_support_list-title {
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .page-training_support_list-title {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .page-training_support_list-title.__pc {
    display: none;
  }
}
.page-training_support_list-title.__sp {
  display: none;
}
@media (max-width: 768px) {
  .page-training_support_list-title.__sp {
    display: block;
  }
}
.page-training_support_list-text-block {
  width: 100%;
}
.page-training_support_list-text {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
  line-height: 1.75;
}
@media (max-width: 1280px) {
  .page-training_support_list-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-training_support_list-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-training_support_list-text {
    font-size: 13px;
  }
}

.page-training_practice {
  margin-top: 100px;
}
@media (max-width: 960px) {
  .page-training_practice {
    margin-top: 80px;
  }
}
.page-training_practice_bord-wrap {
  margin-top: 52px;
}
@media (max-width: 960px) {
  .page-training_practice_bord-wrap {
    max-width: 400px;
    margin: 36px auto 0;
  }
}
.page-training_practice_bord {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .page-training_practice_bord {
    flex-direction: column;
    gap: 20px;
  }
}
.page-training_practice_bord:nth-child(n+2) {
  margin-top: 36px;
}
@media (max-width: 960px) {
  .page-training_practice_bord:nth-child(n+2) {
    margin-top: 20px;
  }
}
.page-training_practice_bord-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px 36px;
}
@media (max-width: 1280px) {
  .page-training_practice_bord-item {
    padding: 18px 28px;
  }
}
@media (max-width: 560px) {
  .page-training_practice_bord-item {
    padding: 18px 16px;
  }
}
.page-training_practice_bord-item.__lg {
  width: calc(50% - 16px);
}
@media (max-width: 960px) {
  .page-training_practice_bord-item.__lg {
    width: 100%;
  }
}
.page-training_practice_bord-item.__sm {
  width: calc(33.33% - 20px);
}
@media (max-width: 1280px) {
  .page-training_practice_bord-item.__sm {
    width: calc(33.33% - 16px);
  }
}
@media (max-width: 960px) {
  .page-training_practice_bord-item.__sm {
    width: 100%;
  }
}
.page-training_practice_bord-title {
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  text-align: center;
  position: relative;
}
@media (max-width: 1280px) {
  .page-training_practice_bord-title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .page-training_practice_bord-title {
    font-size: 18px;
  }
}
.page-training_practice_bord-copy {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #0452ba;
  margin-top: 14px;
  padding-top: 20px;
  position: relative;
}
@media (max-width: 1280px) {
  .page-training_practice_bord-copy {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-training_practice_bord-copy {
    font-size: 13px;
    margin-top: 10px;
    padding-top: 14px;
  }
}
.page-training_practice_bord-copy::before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #0452ba;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 560px) {
  .page-training_practice_bord-copy::before {
    width: 50px;
  }
}
.page-training_practice_bord-list {
  margin-top: 16px;
}
.page-training_practice_bord-list-item {
  font-size: 16px;
  font-weight: 500;
  padding-left: 0.5em;
  position: relative;
  color: #0452ba;
}
@media (max-width: 1280px) {
  .page-training_practice_bord-list-item {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-training_practice_bord-list-item {
    font-size: 12px;
  }
}
.page-training_practice_bord-list-item:nth-child(n+2) {
  margin-top: 4px;
}
.page-training_practice_bord-list-item::before {
  content: "•";
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.page-training_story {
  margin-top: 176px;
  padding-bottom: 180px;
}
@media (max-width: 960px) {
  .page-training_story {
    margin-top: 80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 560px) {
  .page-training_story {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
.page-training_story_list {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 960px) {
  .page-training_story_list {
    display: block;
    max-width: 500px;
    margin: 60px auto 0;
  }
}
@media (max-width: 768px) {
  .page-training_story_list {
    max-width: 400px;
  }
}
@media (max-width: 560px) {
  .page-training_story_list {
    max-width: 245px;
    margin-top: 28px;
  }
}
.page-training_story_list .slick-track {
  padding-top: 50px;
  padding-top: 42.5px;
}
.page-training_story_list .slick-arrow {
  width: 30px;
  height: 30px;
  text-indent: -200px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + 25px));
  background-position: center;
  background-size: cover;
}
.page-training_story_list .slick-arrow.slick-prev {
  left: -50px;
  background-image: url(../img/common/slider_prev-arrow.jpg);
}
.page-training_story_list .slick-arrow.slick-next {
  right: -50px;
  background-image: url(../img/common/slider_next-arrow.jpg);
}
.page-training_story_list .slick-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 14px;
}
.page-training_story_list .slick-dots li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e2eaee;
}
.page-training_story_list .slick-dots li.slick-active {
  background-color: #0452ba;
}
.page-training_story_list .slick-dots li button {
  border: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.page-training_story_list-item {
  background-color: #fff;
  border-radius: 6.5px;
  width: calc(33.33% - 20px);
  padding: 80px 32px 30px;
  position: relative;
}
@media (max-width: 960px) {
  .page-training_story_list-item {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .page-training_story_list-item {
    padding: 50px 24px 16px;
  }
}
.page-training_story_list-img {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 560px) {
  .page-training_story_list-img {
    width: 85px;
  }
}
.page-training_story_list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-training_story_list-name {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #0452ba;
}
@media (max-width: 560px) {
  .page-training_story_list-name {
    font-size: 18px;
  }
}
.page-training_story_list-course {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
  background-color: #0452ba;
  border-radius: 500px;
  padding-bottom: 1px;
  margin-top: 16px;
}
@media (max-width: 560px) {
  .page-training_story_list-course {
    font-size: 14px;
    height: 26px;
  }
}
.page-training_story_list-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #0452ba;
  margin-top: 16px;
  text-align: justify;
}
@media (max-width: 560px) {
  .page-training_story_list-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

.page-guide_bg-radius {
  margin-top: 42px;
  padding-bottom: 84px;
}
.page-guide_top-title-inner {
  align-items: center;
}
@media (max-width: 768px) {
  .page-guide_top-title-inner {
    text-align: center;
  }
}
.page-guide_top-title-inner::before {
  display: none;
}
.page-guide_top-title-inner .__en {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .page-guide_top-title-inner .__en {
    font-size: 48px;
  }
}
@media (max-width: 560px) {
  .page-guide_top-title-inner .__en {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .page-guide_top-title-inner .__jp {
    line-height: 1.4;
  }
}

.page-guide_kinds {
  padding-top: 140px;
}
@media (max-width: 960px) {
  .page-guide_kinds {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .page-guide_kinds {
    padding-top: 40px;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds {
    padding-top: 24px;
  }
}
.page-guide_kinds_list {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .page-guide_kinds_list {
    margin-top: 56px;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list {
    margin-top: 40px;
  }
}
.page-guide_kinds_list-item {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-item {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-item {
    border-radius: 6px;
  }
}
.page-guide_kinds_list-item:nth-child(n+2) {
  margin-top: 60px;
}
@media (max-width: 560px) {
  .page-guide_kinds_list-item:nth-child(n+2) {
    margin-top: 28px;
  }
}
.page-guide_kinds_list-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-item:nth-child(even) {
    flex-direction: column;
  }
}
.page-guide_kinds_list-content {
  width: 53%;
  padding-bottom: 30px;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-content {
    width: 100%;
  }
}
.page-guide_kinds_list-content-inner {
  width: calc(100% - 32px);
  max-width: 535px;
  margin: 0 auto;
}
.page-guide_kinds_list-title {
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  background-color: #0452ba;
  width: 100%;
  padding: 24px 0;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-title {
    font-size: 22px;
    padding: 16px 0;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-title {
    font-size: 18px;
    padding: 8px 0;
  }
}
.page-guide_kinds_list-text {
  line-height: 1.75;
  font-size: 18px;
  margin-top: 28px;
  color: #0452ba;
  font-weight: 500;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-text {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-text {
    font-size: 13px;
    margin-top: 16px;
  }
}
.page-guide_kinds_list-recom {
  font-size: 20px;
  font-weight: 700;
  background-color: #f7fafd;
  color: #0452ba;
  padding: 16px 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .page-guide_kinds_list-recom {
    font-size: 18px;
    padding: 12px 12px;
    margin-top: 16px;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-recom {
    font-size: 14px;
    padding: 8px 12px;
  }
}
.page-guide_kinds_list-recom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-top: 16px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-guide_kinds_list-recom-list {
    flex-direction: column;
    padding-left: 10px;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-recom-list {
    margin-top: 10px;
  }
}
.page-guide_kinds_list-recom-list-item {
  font-size: 14px;
  font-weight: 700;
  color: #0452ba;
  padding-left: 0.5em;
  position: relative;
  width: calc(50% - 8px);
}
@media (max-width: 768px) {
  .page-guide_kinds_list-recom-list-item {
    width: 100%;
    padding-left: 0.75em;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-recom-list-item {
    font-size: 13px;
  }
}
.page-guide_kinds_list-recom-list-item::before {
  content: "•";
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  position: absolute;
  left: 0;
  top: 0;
}
.page-guide_kinds_list-img {
  width: 47%;
  padding: 30px 24px;
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .page-guide_kinds_list-img {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .page-guide_kinds_list-img {
    padding: 0 16px 24px;
  }
}
.page-guide_kinds_list-img img {
  max-width: 440px;
}

.page-guide_flow {
  margin-top: 112px;
}
@media (max-width: 960px) {
  .page-guide_flow {
    margin-top: 80px;
  }
}
.page-guide_flow_list {
  display: flex;
  gap: 12px;
  margin-top: 106px;
}
@media (max-width: 960px) {
  .page-guide_flow_list {
    gap: 60px 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .page-guide_flow_list {
    gap: 48px 18px;
  }
}
.page-guide_flow_list-item {
  width: calc(25% - 9px);
  background-color: #fff;
  padding: 50px 10px 20px;
  position: relative;
  border-radius: 10px;
}
@media (max-width: 960px) {
  .page-guide_flow_list-item {
    width: calc(50% - 6px);
  }
}
@media (max-width: 768px) {
  .page-guide_flow_list-item {
    width: calc(50% - 9px);
    padding: 36px 16px 20px;
  }
}
.page-guide_flow_list-item:last-child::before {
  display: none;
}
.page-guide_flow_list-item:nth-child(2)::before {
  display: none;
}
.page-guide_flow_list-item::before {
  content: "";
  width: 28px;
  aspect-ratio: 27.9/48.9;
  background: url(../img/common/arrow_toright-blue.png) center/cover;
  position: absolute;
  top: -24px;
  right: -18px;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-guide_flow_list-item::before {
    width: 17px;
    top: -13px;
    right: -8px;
  }
}
.page-guide_flow_list-num {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 70px;
  background-color: #0452ba;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .page-guide_flow_list-num {
    font-size: 22px;
    width: 50px;
  }
}
.page-guide_flow_list-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 768px) {
  .page-guide_flow_list-title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .page-guide_flow_list-title {
    font-size: 18px;
  }
}
.page-guide_flow_list-text {
  font-size: 17px;
  font-weight: 500;
  color: #0452ba;
  text-align: justify;
  max-width: 215px;
  margin: 16px auto 0;
}
@media (max-width: 1280px) {
  .page-guide_flow_list-text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-guide_flow_list-text {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-guide_flow_list-text {
    font-size: 13px;
    margin-top: 10px;
  }
}
.page-guide_flow_list-period {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  background-color: #0452ba;
  border-radius: 500px;
  margin-top: 28px;
  padding-bottom: 2px;
}
@media (max-width: 1280px) {
  .page-guide_flow_list-period {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-guide_flow_list-period {
    margin-top: 16px;
  }
}
@media (max-width: 560px) {
  .page-guide_flow_list-period {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.25;
    padding: 2px 0 4px;
    text-align: center;
  }
}

.page-guide_charm {
  margin-top: 128px;
}
@media (max-width: 768px) {
  .page-guide_charm {
    margin-top: 80px;
  }
}
.page-guide_charm_container {
  margin-top: 100px;
}
.page-guide_charm_block {
  width: 100%;
  max-width: 990px;
  margin-left: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.page-guide_charm_block:nth-child(even) {
  margin-left: unset;
  margin-right: auto;
  align-items: flex-start;
}
.page-guide_charm_block:nth-child(even) .page-guide_charm_img {
  left: unset;
  right: 0;
}
@media (max-width: 768px) {
  .page-guide_charm_block:nth-child(even) .page-guide_charm_img {
    right: -60px;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_block:nth-child(even) .page-guide_charm_img {
    right: -78px;
  }
}
.page-guide_charm_block:nth-child(even) .page-guide_charm_bord-wrap {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .page-guide_charm_block:nth-child(even) .page-guide_charm_bord-wrap {
    flex-direction: column;
  }
}
.page-guide_charm_block:nth-child(even) .page-guide_charm_works-circle {
  left: unset;
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 768px) {
  .page-guide_charm_block:nth-child(even) .page-guide_charm_works-circle {
    transform: translate(10px, -10px);
  }
}
@media (max-width: 768px) {
  .page-guide_charm_block:nth-child(even) .page-guide_charm_works {
    padding-left: 24px;
  }
}
.page-guide_charm_block:nth-child(n+2) {
  margin-top: 116px;
}
@media (max-width: 768px) {
  .page-guide_charm_block:nth-child(n+2) {
    margin-top: 80px;
  }
}
.page-guide_charm_img {
  width: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 960px) {
  .page-guide_charm_img {
    top: 0;
    bottom: unset;
  }
}
@media (max-width: 768px) {
  .page-guide_charm_img {
    width: 280px;
    left: -60px;
    top: -24px;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_img {
    width: 215px;
    left: -78px;
    top: 0px;
  }
}
.page-guide_charm_header {
  width: 56%;
}
@media (max-width: 768px) {
  .page-guide_charm_header {
    width: calc(100% - 250px);
  }
}
@media (max-width: 560px) {
  .page-guide_charm_header {
    width: calc(100% - 153px);
  }
}
.page-guide_charm_header-title {
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page-guide_charm_header-title {
    font-size: 22px;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_header-title {
    font-size: 18px;
  }
}
.page-guide_charm_header-text {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
  line-height: 1.75;
  margin-top: 24px;
  text-align: justify;
}
@media (max-width: 768px) {
  .page-guide_charm_header-text {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_header-text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.page-guide_charm_bord-wrap {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .page-guide_charm_bord-wrap {
    width: 100%;
    margin: 24px auto 0;
    flex-direction: column;
    max-width: 400px;
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_bord-wrap {
    margin-top: 12px;
  }
}
.page-guide_charm_works, .page-guide_charm_skills {
  width: calc(50% - 10px);
  border-radius: 10px;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 16px 24px;
}
@media (max-width: 768px) {
  .page-guide_charm_works, .page-guide_charm_skills {
    min-height: unset;
    width: 100%;
  }
}
.page-guide_charm_works {
  background-color: #0452ba;
}
@media (max-width: 768px) {
  .page-guide_charm_works {
    padding-left: 70px;
  }
}
.page-guide_charm_skills {
  background-color: #fff;
}
.page-guide_charm_works-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #0452ba;
  background-color: #fff;
  border-radius: 50%;
  width: 90px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .page-guide_charm_works-circle {
    width: 62px;
    font-size: 13px;
    transform: translate(-10px, -10px);
  }
}
.page-guide_charm_skills-title {
  font-size: 16px;
  font-weight: 500;
  color: #0452ba;
  margin-bottom: 8px;
}
.page-guide_charm_list.__blue {
  color: #0452ba;
}
.page-guide_charm_list.__white {
  color: #fff;
}
.page-guide_charm_list-item {
  font-size: 16px;
  color: inherit;
  font-weight: 500;
  position: relative;
  padding-left: 0.5em;
}
@media (max-width: 1280px) {
  .page-guide_charm_list-item {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-guide_charm_list-item {
    padding-left: 0.75em;
  }
}
@media (max-width: 560px) {
  .page-guide_charm_list-item {
    font-size: 12px;
  }
}
.page-guide_charm_list-item:nth-child(n+2) {
  margin-top: 4px;
}
.page-guide_charm_list-item::before {
  content: "•";
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.page-guide_merit {
  background-color: #0452ba;
  padding: 60px 0 75px;
}
@media (max-width: 960px) {
  .page-guide_merit {
    padding: 48px 0 60px;
  }
}
.page-guide_merit_top-title {
  color: #fff;
}
.page-guide_merit_list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 48px;
  margin-top: 72px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .page-guide_merit_list {
    gap: 60px 24px;
  }
}
@media (max-width: 960px) {
  .page-guide_merit_list {
    gap: 50px 24px;
  }
}
@media (max-width: 768px) {
  .page-guide_merit_list {
    max-width: 300px;
  }
}
.page-guide_merit_list-item {
  width: calc(33.33% - 32px);
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 40px 30px 34px;
  position: relative;
}
@media (max-width: 1280px) {
  .page-guide_merit_list-item {
    width: calc(33.33% - 16px);
    padding: 40px 16px 30px;
  }
}
@media (max-width: 960px) {
  .page-guide_merit_list-item {
    width: calc(50% - 12px);
    padding: 28px 20px 24px;
  }
}
@media (max-width: 768px) {
  .page-guide_merit_list-item {
    width: 100%;
    padding: 24px 16px 20px;
  }
}
.page-guide_merit_list-item::before {
  content: "";
  width: 128px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  transform: rotate(-45deg);
  left: -35px;
  top: 30px;
  z-index: 1;
}
@media (max-width: 960px) {
  .page-guide_merit_list-item::before {
    width: 100px;
    left: -30px;
    top: 22px;
  }
}
.page-guide_merit_list-item::after {
  content: "";
  width: 50px;
  height: 10px;
  background-color: #0452ba;
  transform: rotate(-45deg);
  position: absolute;
  left: 12px;
  top: 25px;
}
@media (max-width: 960px) {
  .page-guide_merit_list-item::after {
    left: 1px;
    top: 19px;
  }
}
.page-guide_merit_list-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1280px) {
  .page-guide_merit_list-title {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .page-guide_merit_list-title {
    font-size: 20px;
  }
}
.page-guide_merit_list-text {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-top: 24px;
  line-height: 1.75;
}
@media (max-width: 1280px) {
  .page-guide_merit_list-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .page-guide_merit_list-text {
    font-size: 15px;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .page-guide_merit_list-text {
    font-size: 13px;
  }
}
.page-guide_merit_list-num {
  background-color: #fff;
  font-size: 30px;
  color: #0452ba;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 60px;
  position: absolute;
  top: -16px;
  left: -16px;
  padding-bottom: 6px;
}
@media (max-width: 960px) {
  .page-guide_merit_list-num {
    width: 50px;
    font-size: 25px;
  }
}
.page-guide_merit_list-num::before {
  content: "";
  width: 47px;
  aspect-ratio: 46.9/20.6;
  position: absolute;
  top: -20px;
  left: 0;
  background: url(../img/guide/text_merit.png) center/cover;
}
@media (max-width: 960px) {
  .page-guide_merit_list-num::before {
    width: 40px;
    top: -16px;
  }
}

.page-guide_faq {
  padding: 86px 0 60px;
}
@media (max-width: 960px) {
  .page-guide_faq {
    padding: 60px 0 40px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq {
    padding: 40px 0 40px;
  }
}
.page-guide_faq_list {
  margin-top: 28px;
}
.page-guide_faq_list-item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 560px) {
  .page-guide_faq_list-item:nth-child(n+2) {
    margin-top: 12px;
  }
}
.page-guide_faq_list-question-wrap {
  background-color: #f7fafd;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.page-guide_faq_list-btn {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .page-guide_faq_list-btn {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .page-guide_faq_list-btn {
    width: 16px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq_list-btn {
    width: 14px;
    right: 12px;
  }
}
.page-guide_faq_list-btn.is-open .__line:nth-child(2) {
  width: 0;
}
.page-guide_faq_list-btn .__line {
  width: 100%;
  height: 3px;
  background-color: #0452ba;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.1s;
}
@media (max-width: 768px) {
  .page-guide_faq_list-btn .__line {
    height: 1.8px;
  }
}
.page-guide_faq_list-btn .__line:nth-child(1) {
  transform: translate(-50%, -50%);
}
.page-guide_faq_list-btn .__line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.page-guide_faq_list-inner {
  display: flex;
  gap: 30px;
  padding: 20px 80px 20px 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .page-guide_faq_list-inner {
    padding: 16px 64px 16px 32px;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .page-guide_faq_list-inner {
    padding: 12px 50px 12px 20px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq_list-inner {
    gap: 12px;
    padding: 10px 32px 10px 12px;
  }
}
.page-guide_faq_list-inner .__icon {
  font-size: 30px;
  font-weight: 700;
  color: #0452ba;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .page-guide_faq_list-inner .__icon {
    font-size: 25px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq_list-inner .__icon {
    font-size: 20px;
  }
}
.page-guide_faq_list-inner .__question {
  font-size: 20px;
  font-weight: 700;
  color: #0452ba;
}
@media (max-width: 960px) {
  .page-guide_faq_list-inner .__question {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .page-guide_faq_list-inner .__question {
    font-size: 16px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq_list-inner .__question {
    font-size: 14px;
  }
}
.page-guide_faq_list-inner .__answer {
  font-size: 18px;
  font-weight: 500;
  color: #0452ba;
}
@media (max-width: 960px) {
  .page-guide_faq_list-inner .__answer {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-guide_faq_list-inner .__answer {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .page-guide_faq_list-inner .__answer {
    font-size: 13px;
  }
}
.page-guide_faq_list-answer-wrap {
  display: none;
}

.page-guide_support {
  padding: 84px 0 56px;
  background-color: #0452ba;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .page-guide_support {
    padding: 60px 0 40px;
  }
}
@media (max-width: 768px) {
  .page-guide_support {
    padding: 40px 0 40px;
  }
}
.page-guide_support_bg {
  width: 100%;
  height: 355px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media (max-width: 960px) {
  .page-guide_support_bg {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .page-guide_support_bg {
    height: 180px;
    top: 150px;
  }
}
@media (max-width: 560px) {
  .page-guide_support_bg {
    height: 110px;
  }
}
.page-guide_support_bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-guide_support_top-title {
  color: #fff;
}
.page-guide_support_top-title-text {
  color: #fff;
}
.page-guide_support_list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  max-width: 880px;
}
@media (max-width: 768px) {
  .page-guide_support_list {
    flex-direction: column;
    gap: 24px;
    margin-top: 180px;
  }
}
@media (max-width: 560px) {
  .page-guide_support_list {
    margin-top: 110px;
  }
}
.page-guide_support_list-item {
  width: calc(33.33% - 16px);
  max-width: 275px;
}
@media (max-width: 768px) {
  .page-guide_support_list-item {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .page-guide_support_list-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
.page-guide_support_list-icon {
  display: block;
  width: 105px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .page-guide_support_list-icon {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .page-guide_support_list-icon {
    width: 65px;
    margin: 0;
  }
}
.page-guide_support_list-title {
  background-color: #fff;
  border-radius: 10px;
  padding: 18px;
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0452ba;
  margin-top: 12px;
}
@media (max-width: 960px) {
  .page-guide_support_list-title {
    font-size: 22px;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .page-guide_support_list-title {
    font-size: 22px;
    padding: 8px 0;
    width: 200px;
    margin-top: 0;
  }
}
@media (max-width: 560px) {
  .page-guide_support_list-title {
    font-size: 18px;
    border-radius: 6px;
    padding: 8px;
    width: 150px;
  }
}
.page-guide_support_list-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  padding: 20px 0;
}
@media (max-width: 960px) {
  .page-guide_support_list-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 16px 0;
  }
}
@media (max-width: 560px) {
  .page-guide_support_list-text {
    font-size: 12px;
    padding: 12px 0;
  }
}
.page-guide_support_list-point {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 560px) {
  .page-guide_support_list-point {
    font-size: 14px;
    padding: 4px 0;
  }
}

.page-guide_contact {
  padding: 64px 0 75px;
}
@media (max-width: 560px) {
  .page-guide_contact {
    padding: 40px 0 48px;
  }
}

.page-terms {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .page-terms {
    padding: 80px 0;
  }
}
@media (max-width: 560px) {
  .page-terms {
    padding: 60px 0;
  }
}
.page-terms_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .page-terms_text {
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (max-width: 560px) {
  .page-terms_text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.page-terms_text:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 560px) {
  .page-terms_text:nth-child(n+2) {
    margin-top: 12px;
  }
}

.u_dblock_pc {
  display: block;
}
.u_dblock_tb {
  display: none;
}
@media (max-width: 960px) {
  .u_dblock_tb {
    display: block;
  }
}
.u_dblock_sp {
  display: none;
}
@media (max-width: 768px) {
  .u_dblock_sp {
    display: block;
  }
}

.u_dnone_pc {
  display: none;
}
@media (max-width: 960px) {
  .u_dnone_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .u_dnone_sp {
    display: none;
  }
}

.u_break_tb {
  display: none;
}
@media (max-width: 960px) {
  .u_break_tb {
    display: block;
  }
}
.u_break_sp {
  display: none;
}
@media (max-width: 768px) {
  .u_break_sp {
    display: block;
  }
}

.u_break_tb {
  display: none;
}
@media (max-width: 960px) {
  .u_break_tb {
    display: block;
  }
}
.u_break_sp {
  display: none;
}
@media (max-width: 768px) {
  .u_break_sp {
    display: block;
  }
}
.u_break_ssp {
  display: none;
}
@media (max-width: 560px) {
  .u_break_ssp {
    display: block;
  }
}

@media (max-width: 960px) {
  .u_break-none_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .u_break-none_sp {
    display: none;
  }
}
@media (max-width: 560px) {
  .u_break-none_ssp {
    display: none;
  }
}

.u_content {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.u_content.show {
  opacity: 1;
  pointer-events: visible;
  position: relative;
}

.u_target {
  padding-top: 90px;
  margin-top: -90px;
}
@media (max-width: 960px) {
  .u_target {
    padding-top: 60px;
    margin-top: -60px;
  }
}/*# sourceMappingURL=style.css.map */