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

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #000000;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
img {
  max-width: 100%;
  height: auto;
}

main {
  margin-top: 94px;
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  main {
    margin-top: 74px;
  }
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 64px;
  }
}
.container {
  width: 90%;
  max-width: 1200px;
  padding: 100px 0;
  margin: 0 auto;
}

.container_short {
  max-width: 1000px;
  width: 90%;
  padding: 100px 0;
  margin: 0 auto;
}

.container1 {
  width: 90%;
  max-width: 1200px;
  padding: 100px 0 40px;
  margin: 0 auto;
}

.container_short1 {
  max-width: 1000px;
  width: 90%;
  padding: 0;
  margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
  .container {
    width: 90%;
  }
  .container1 {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container_short, .container_short1 {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 86%;
    padding: 50px 0;
  }
  .container_short {
    width: 86%;
    padding: 50px 0;
  }
  .container1 {
    width: 86%;
    padding: 50px 0 30px;
  }
  .container_short1 {
    width: 86%;
    padding: 0;
  }
}
#pageTitleArea .container {
  max-width: none;
  padding: 50px 0 0;
}
#pageTitleArea .head_text {
  font-size: 4rem;
}
#pageTitleArea .image_area {
  width: 100%;
  aspect-ratio: 3/1;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
  #pageTitleArea .head_text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  #pageTitleArea .container {
    padding: 30px 0 0;
  }
  #pageTitleArea .head_text {
    font-size: 2.4rem;
  }
  #pageTitleArea .head_text span {
    font-size: 1.4rem;
  }
  #pageTitleArea .image_area {
    aspect-ratio: 3/1.5;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}
.head_text {
  margin-bottom: 40px;
  font-size: 3.2rem;
  line-height: 1.4;
}
.head_text span {
  margin-bottom: 10px;
  color: #536BE8;
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .head_text span {
    font-size: 1.2rem;
  }
}
.head_text + p {
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .head_text + p {
    margin-bottom: 20px;
  }
}
.outline_list {
  width: 800px;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  flex-wrap: wrap;
}
.outline_list dt {
  width: 25%;
  border-top: 1px solid #CCCCCC;
  padding: 40px 20px;
}
.outline_list dd {
  width: 75%;
  border-top: 1px solid #CCCCCC;
  padding: 40px 20px;
  font-weight: normal;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .outline_list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .outline_list {
    width: 100%;
    flex-direction: column;
  }
  .outline_list dt {
    width: 100%;
    padding: 20px 20px 0;
  }
  .outline_list dd {
    width: 100%;
    padding: 0 20px 20px;
    border-top: none;
  }
}
.btn {
  width: 100%;
  max-width: 250px;
  border-radius: 30px;
  padding: 17px;
  text-align: center;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
}
.btn img {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 20px;
}

.btn_white {
  border: 2px solid #536BE8;
  background: #ffffff;
  color: #536BE8;
}
.btn_white img:nth-of-type(2) {
  opacity: 0;
  transition: 0.3s ease;
}
.btn_white:hover {
  background: #536BE8;
  color: #ffffff;
}
.btn_white:hover img:nth-of-type(2) {
  opacity: 1;
}

.btn_grade {
  padding: 19px;
  background: -webkit-gradient(linear, left top, right top, from(#BE83F1), to(#536BE8));
  background: -webkit-linear-gradient(left, #BE83F1, #536BE8);
  background: -moz-linear-gradient(left, #BE83F1, #536BE8);
  background: -o-linear-gradient(left, #BE83F1, #536BE8);
  background: linear-gradient(to right, #BE83F1, #536BE8);
  color: #ffffff;
}
.btn_grade:hover {
  opacity: 0.7;
}

.btn_box {
  text-align: center;
}

a {
  display: inline-block;
  transition: all 0.3s ease;
}

.image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text_area_450 {
  width: 450px;
}

@media screen and (max-width: 767px) {
  .text_area_450 {
    width: 100%;
  }
}
.text_area_650 {
  width: 650px;
}

@media screen and (max-width: 767px) {
  .text_area_650 {
    width: 100%;
  }
}
.under_line {
  display: inline;
  background: linear-gradient(transparent 70%, #F9FF51 0%);
}

.flex_box {
  display: flex;
}

@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .brSP {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

.pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }
}

header {
  width: 100%;
  padding: 15px 30px;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
header h1 a {
  display: flex;
  align-items: center;
}
header h1 img {
  width: 120px;
}
header h1 a:hover {
  opacity: 0.7;
}
header nav ul {
  display: flex;
  column-gap: 30px;
  align-items: center;
  font-size: 1.4rem;
}
header a:hover {
  color: #536BE8;
}
header .parent_menu {
  position: relative;
}
header .sub_menu {
  display: none;
  width: 400px;
  border-radius: 10px;
  padding: 30px;
  background-color: #e9ecff;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
header .sub_menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #e9ecff;
}
header .sub_menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}
header .sub_menu li {
  border-bottom: 1px solid #cdd5ff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
header .sub_menu li:last-of-type {
  border-bottom: none;
}
header .burger_btn {
  display: none;
  font-size: 2.5rem;
  color: #536BE8;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .burger_btn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) and (max-width: 1524px) {
  header {
    padding: 13px 20px;
  }
  header h1 img {
    width: 100px;
  }
  header nav {
    display: none;
  }
  header .burger_btn {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 13px 20px;
  }
  header h1 img {
    width: 100px;
  }
  header nav {
    display: none;
  }
  header .burger_btn {
    display: block;
  }
}
.overlay {
  display: none;
  width: 100%;
  padding: 50px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, right top, from(#BE83F1), to(#536BE8));
  background: -webkit-linear-gradient(left, #BE83F1, #536BE8);
  background: -moz-linear-gradient(left, #BE83F1, #536BE8);
  background: -o-linear-gradient(left, #BE83F1, #536BE8);
  background: linear-gradient(to right, #BE83F1, #536BE8);
  color: #ffffff;
}
.overlay .close_btn {
  font-size: 2.5rem;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.overlay .close_btn:hover {
  opacity: 0.7;
}
.overlay ul {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.overlay .click_item {
  margin-bottom: 5px;
  cursor: pointer;
}
.overlay .sub_menu ul {
  padding-left: 10px;
  row-gap: 5px;
  font-weight: normal;
}
.overlay a:hover {
  opacity: 0.7;
}

.click_item {
  cursor: pointer;
}

#contactArea {
  background-color: #ffffff;
  text-align: center;
  border-top: 3px solid #f5f5f5;
}
#contactArea p {
  width: auto;
}
#contactArea p:nth-of-type(2) {
  margin-bottom: 40px;
}
#contactArea .btn {
  max-width: 300px;
}

@media screen and (max-width: 525px) {
  #contactArea p {
    text-align: left;
  }
}
footer {
  background-color: #333333;
  color: #ffffff;
}
footer .container {
  padding: 50px 0 60px;
}
footer .footer_logo {
  width: 180px;
  margin-bottom: 20px;
}
footer .flex_box {
  margin-bottom: 50px;
  justify-content: space-between;
  column-gap: 5%;
}
footer a:hover {
  opacity: 0.7;
}
footer .click_item {
  pointer-events: none;
}
footer .left_area h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
footer .left_area p {
  margin-bottom: 10px;
  color: #888888;
  font-size: 1.4rem;
}
footer .left_area ul {
  display: flex;
  column-gap: 8px;
}
footer .left_area .line {
  margin-top: 20px;
  width: fit-content;
}
footer .left_area .line a {
  border: 1px solid #888;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
footer .left_area .line img {
  width: 40px;
  margin-right: 20px;
}
footer .right_area {
  font-size: 1.4rem;
}
footer .right_area nav {
  display: flex;
  column-gap: 100px;
}
footer .right_area ul {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
footer .right_area .sub_menu {
  padding-left: 20px;
  color: #aaa;
  font-weight: normal;
}
footer .right_area .sub_menu ul {
  row-gap: 10px;
}
footer .copyright {
  color: #888888;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  footer .right_area nav {
    column-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .container {
    padding: 40px 0;
  }
  footer .footer_logo {
    width: 120px;
  }
  footer .flex_box {
    margin-bottom: 30px;
    row-gap: 30px;
  }
  footer .right_area nav {
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  footer .right_area ul {
    row-gap: 15px;
  }
}
.main_nav {
  width: 500px;
  border-bottom: 2px solid #CCCCCC;
}
.main_nav li {
  border-top: 2px solid #CCCCCC;
}
.main_nav a {
  width: 100%;
  padding: 30px 60px 30px 20px;
  color: #ffffff;
  position: relative;
}
.main_nav a img {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 0.3s ease;
}
.main_nav a:hover {
  color: #536BE8;
}
.main_nav a:hover img {
  right: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1340px) {
  .main_nav {
    width: 40%;
  }
  .main_nav a {
    padding: 20px 50px 20px 20px;
  }
  .main_nav a img {
    top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .main_nav {
    width: 90%;
  }
  .main_nav a {
    padding: 20px 40px 20px 20px;
  }
  .main_nav a img {
    width: 20px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .main_nav a:hover img {
    right: 0px;
  }
}
#mainVisual {
  color: #ffffff;
  position: relative;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
#mainVisual .container {
  width: 86%;
  padding: 170px 0;
  position: relative;
  z-index: 1;
}
#mainVisual .mv_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#mainVisual .mv_slider li {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  transform-origin: 70% 50%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes zoomUp02 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
#mainVisual .mv_slider .add-animation {
  animation: zoomUp 8s ease-out 0s normal both;
}
#mainVisual .mv_slider .add-animation img {
  animation: zoomUp02 8s ease-out 0s normal both;
}
#mainVisual .mv_slider .slick-list,
#mainVisual .mv_slider .slick-track {
  height: 100%;
}
#mainVisual .mv_slider img {
  height: 100%;
  position: absolute;
  bottom: 0;
}
#mainVisual .mv_slider_item01 {
  background-image: url(../img/main_visual_bg.webp);
}
#mainVisual .mv_slider_item01 img {
  left: 60%;
}
#mainVisual .mv_slider_item02 {
  background-image: url(../img/main_visual_bg02.webp);
}
#mainVisual .mv_slider_item02 img {
  left: 45%;
}
#mainVisual .mv_slider_item03 {
  background-image: url(../img/main_visual_bg03.webp);
}
#mainVisual .mv_slider_item03 img {
  left: 50%;
}
#mainVisual .main_message {
  font-size: 4rem;
  line-height: 2;
  margin-bottom: 30px;
}
#mainVisual .main_message span {
  font-size: 3.4rem;
}
#mainVisual .flex_box {
  column-gap: 5px;
}
#mainVisual h2 {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
  #mainVisual .container {
    padding: 100px 0;
  }
  #mainVisual .mv_slider_item01 img {
    height: 90%;
  }
  #mainVisual .mv_slider_item02 img {
    height: 90%;
  }
  #mainVisual .mv_slider_item03 img {
    height: 90%;
    left: 60%;
  }
  #mainVisual .main_message {
    font-size: 3.8rem;
  }
  #mainVisual h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #mainVisual .container {
    padding: 50px 0 30px;
  }
  #mainVisual .mv_slider_item01 img {
    height: 80%;
    left: auto;
    right: -100px;
  }
  #mainVisual .mv_slider_item02 img {
    height: 80%;
    left: auto;
    right: -20px;
    max-width: none;
  }
  #mainVisual .mv_slider_item03 img {
    height: 80%;
    left: auto;
    right: -40px;
    max-width: none;
  }
  #mainVisual .main_message {
    font-size: 2.5rem;
    margin-bottom: 80px;
  }
  #mainVisual .main_message span {
    font-size: 1.8rem;
  }
  #mainVisual .flex_box {
    flex-direction: row;
  }
  #mainVisual .flex_box p {
    font-size: 1.4rem;
  }
  #mainVisual h2 {
    color: #536BE8;
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
    padding: 10px 4%;
  }
}
#news .flex_box {
  width: 850px;
  margin: 0 auto 30px;
  align-items: center;
  justify-content: space-between;
}
#news .head_text {
  margin-bottom: 0;
}
#news ul {
  width: 800px;
  border-bottom: 1px solid #CCCCCC;
  margin: 0 auto;
}
#news li {
  border-top: 1px solid #CCCCCC;
}
#news li a {
  width: 100%;
  height: 100%;
}
#news li a dl {
  display: flex;
  align-items: center;
}
#news li a dt {
  width: 25%;
  padding: 20px;
  color: #888888;
  font-size: 1.2rem;
  font-weight: normal;
  transition: all 0.3s ease;
}
#news li a dd {
  width: 75%;
  padding: 20px;
  position: relative;
  font-size: 1.4rem;
  font-weight: normal;
  transition: all 0.3s ease;
}
#news li a dd img {
  position: absolute;
  top: 30px;
  right: 40px;
  transition: all 0.3s ease;
}
#news li a:hover dt,
#news li a:hover dd {
  color: #536BE8;
}
#news li a:hover img {
  right: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #news .flex_box {
    width: 700px;
  }
  #news ul {
    width: 700px;
  }
  #news li a dt {
    width: 20%;
  }
  #news li a dd {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  #news .flex_box {
    width: 100%;
    flex-direction: row;
    align-items: end;
  }
  #news .btn {
    max-width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #news ul {
    width: 100%;
  }
  #news li a dl {
    flex-direction: column;
    align-items: flex-start;
  }
  #news li a dt {
    width: 100%;
    padding: 10px 10px 0;
  }
  #news li a dd {
    width: 90%;
    padding: 0 10px 10px;
  }
  #news li a dd img {
    top: 10px;
    right: -20px;
  }
  #news li a:hover img {
    right: -30px;
  }
}
#job {
  background-color: #f5f5f5;
}
#job h2 {
  text-align: center;
}
#job ul {
  display: flex;
  justify-content: center;
  gap: 16px 3%;
}
@media screen and (max-width: 767px) {
  #job ul {
    flex-direction: column;
  }
}
#job li {
  width: 31.3333333333%;
  border-radius: 10px;
  overflow: hidden;
}
#job li:hover figure img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  #job li {
    width: 100%;
  }
}
#job li a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#job li figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
#job li figure img {
  object-fit: cover;
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
#job .job_info {
  background-color: #fff;
  padding: 20px 5%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #job .job_info {
    padding: 10px 5% 16px;
  }
}
#job .job_date {
  font-size: 1.4rem;
  color: #536BE8;
}
@media screen and (max-width: 767px) {
  #job .job_date {
    font-size: 1.2rem;
  }
}
#job .job_title {
  line-height: 1.6;
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  #job .job_title {
    font-size: 1.4rem;
  }
}
#job .btn {
  display: block;
  margin: 40px auto 0;
}

#activity .container {
  display: flex;
  align-items: center;
  gap: 5%;
}
#activity .text_area_450 {
  flex: 1;
}
#activity .image_area {
  width: calc(55% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
#activity .image_area img {
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 767px) {
  #activity .container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  #activity .image_area {
    width: calc(100% + 50vw - 50%);
  }
}
#forSchool {
  color: #ffffff;
  margin-top: 80px;
}
#forSchool .container {
  padding-right: 8%;
  position: relative;
}
#forSchool .container:before {
  content: "";
  display: block;
  width: calc(100% + 50vw - 50%);
  height: 100%;
  border-radius: 0 20px 20px 0;
  background: -webkit-gradient(linear, right top, left top, from(#333333), to(#545454));
  background: -webkit-linear-gradient(right, #333333, #545454);
  background: -moz-linear-gradient(right, #333333, #545454);
  background: -o-linear-gradient(right, #333333, #545454);
  background: linear-gradient(to left, #333333, #545454);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#forSchool .flex_box {
  gap: 10%;
  align-items: flex-start;
}
#forSchool .flex_box p {
  width: 45%;
  max-width: 450px;
}
#forSchool .main_nav {
  flex: 1;
}

@media screen and (max-width: 767px) {
  #forSchool {
    margin-top: 50px;
  }
  #forSchool .flex_box {
    row-gap: 30px;
  }
  #forSchool .flex_box p {
    width: 100%;
  }
  #forSchool .main_nav {
    width: 100%;
  }
}
#forCompany {
  color: #ffffff;
  margin-top: 80px;
}
#forCompany .container {
  padding-left: 8%;
  position: relative;
}
#forCompany .container:before {
  content: "";
  display: block;
  width: calc(100% + 50vw - 50%);
  height: 100%;
  border-radius: 20px 0 0 20px;
  background: -webkit-gradient(linear, right top, left top, from(#536BE8), to(#BE83F1));
  background: -webkit-linear-gradient(right, #536BE8, #BE83F1);
  background: -moz-linear-gradient(right, #536BE8, #BE83F1);
  background: -o-linear-gradient(right, #536BE8, #BE83F1);
  background: linear-gradient(to left, #536BE8, #BE83F1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#forCompany .flex_box {
  gap: 10%;
  align-items: flex-start;
}
#forCompany .flex_box p {
  width: 45%;
  max-width: 450px;
}
#forCompany .main_nav {
  flex: 1;
}

@media screen and (max-width: 767px) {
  #forCompany {
    margin-top: 50px;
  }
  #forCompany .container {
    padding-left: 8%;
  }
  #forCompany .flex_box {
    row-gap: 30px;
  }
  #forCompany .flex_box p {
    width: 100%;
  }
  #forCompany .main_nav {
    width: 100%;
  }
}
#company .flex_box {
  justify-content: center;
  align-items: center;
  column-gap: 110px;
}
#company .image_area {
  width: 30%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #company .flex_box {
    justify-content: center;
    align-items: center;
    column-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  #company .head_text {
    text-align: center;
  }
  #company .flex_box {
    row-gap: 30px;
  }
  #company .image_area {
    width: 80%;
    max-width: 180px;
    margin-bottom: 20px;
  }
  #company .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#magazine {
  position: relative;
}
#magazine::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 150px);
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#magazine .container {
  display: flex;
  gap: 5%;
}
#magazine .magazine_list {
  width: calc(60% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
#magazine .magazine_list .slick-slide {
  width: 350px;
  margin: 0 15px;
}
#magazine .magazine_list a:hover .image_area img {
  transform: scale(1.05);
}
#magazine .magazine_list .image_area {
  height: 262px;
  border: 2px solid #536BE8;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #fff;
}
#magazine .magazine_list .image_area img {
  object-fit: cover;
  height: 100%;
  transition: 0.5s;
}
#magazine .magazine_list p {
  display: inline-block;
  border-left: 4px solid #536BE8;
  padding: 5px 20px 5px 13px;
  background-color: #ffffff;
  line-height: 1;
}
#magazine .magazine_list .magazine_title {
  margin-bottom: 5px;
  font-size: 1.8rem;
}
#magazine .magazine_list .magazine_date {
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  #magazine::before {
    height: calc(100% - 90px);
  }
  #magazine .container {
    flex-direction: column;
    gap: 30px;
  }
  #magazine .magazine_list {
    width: calc(100% + 50vw - 50%);
  }
  #magazine .magazine_list .slick-slide {
    width: 280px;
    margin: 0 5px;
  }
  #magazine .magazine_list .image_area {
    height: auto;
  }
}
.title_activity .image_area {
  background-image: url(../img/title_activity.webp);
}

.activity_lead {
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  gap: 16px;
}
.activity_lead::before {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: #ccc;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .activity_lead {
    font-size: 1.8rem;
  }
}
.activity_box {
  border: 3px solid #536BE8;
  border-radius: 20px;
  padding: 50px 0;
  margin-bottom: 60px;
}
.activity_box .head_text,
.activity_box .activity_text {
  padding: 0 5%;
}
.activity_box .activity_text {
  max-width: 850px;
}
.activity_box .activity_dl {
  margin-top: 20px;
}
.activity_box .activity_dl dt {
  border-bottom: 1px solid #536BE8;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #536BE8;
}
.activity_box .activity_dl dd {
  margin-bottom: 30px;
}
.activity_box .activity_image {
  display: flex;
}
.activity_box .activity_image p {
  width: 50%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.activity_box .activity_image p img {
  object-fit: cover;
  height: auto;
}

@media screen and (max-width: 767px) {
  .activity_box {
    margin-bottom: 30px;
  }
  .activity_box.container_short {
    width: 92%;
  }
  .activity_box .head_text,
  .activity_box .activity_text {
    padding: 0 7%;
  }
  .activity_box .activity_image {
    flex-direction: column;
    gap: 20px;
  }
  .activity_box .activity_image p {
    width: 100%;
  }
}
.title_support .image_area {
  background-image: url(../img/title_support.webp);
}

.service_text {
  max-width: 650px;
}

.service_subject {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 30px 5%;
  max-width: 650px;
}
.service_subject dt {
  margin-bottom: 20px;
}
.service_subject ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service_subject li {
  font-size: 2rem;
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .service_subject li {
    font-size: 1.6rem;
  }
}
.service_box01,
.service_box03 {
  background: linear-gradient(transparent 20%, #f5f5f5 20%);
}

.service_image {
  border-radius: 20px;
  border: 2px solid #536BE8;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service_image {
    border-radius: 10px;
    aspect-ratio: 2/1;
  }
  .service_image img {
    object-fit: cover;
    height: 100%;
  }
}

.service_box_text,
.service_box_point {
  padding-left: 5%;
  max-width: 760px;
}

.service_box_point_image {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #5f62a4;
  overflow: hidden;
  flex-shrink: 0;
}
.service_box_point_image img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .service_box_point_image {
    width: 80px;
  }
}

.service_box li {
  display: flex;
  align-items: center;
  gap: 2%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service_box li {
    align-items: start;
    gap: 5%;
  }
}

.service_box li div p:nth-of-type(1) {
  color: #fff;
  background-color: #536BE8;
  width: fit-content;
  padding: 0 6px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service_box li div p:nth-of-type(1) {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}
.service_box li div p:nth-of-type(2) {
  font-size: 1.4rem;
}

.support_link .container {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .support_link .container {
    flex-direction: column;
    align-items: center;
  }
}
.support_link .btn {
  max-width: 350px;
}

.life_up_job_list {
  margin: 30px 0;
}
.life_up_job_list li {
  list-style: disc;
  margin-left: 1.5em;
}

.life_up_job_box01 {
  display: flex;
  flex-wrap: wrap;
}
.life_up_job_box01.school_empathy_plan {
  gap: 10px;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in {
  line-height: 1.5;
  margin: 0;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in .detail {
  margin-bottom: 10px;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in .price {
  margin-bottom: 10px;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in .price span {
  padding-right: 5px;
  font-size: 3rem;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in .text {
  font-size: 1.4rem;
}
.life_up_job_box01.school_empathy_plan .life_up_job_box01_in .text span {
  text-decoration: underline;
}
.life_up_job_box01 .life_up_job_box01_in {
  box-sizing: border-box;
  padding: 15px 10px;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  background-color: #dd4e4e;
  color: #FFF;
  text-align: center;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.29);
}
@media screen and (max-width: 767px) {
  .life_up_job_box01 .life_up_job_box01_in {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4%;
  }
}
.life_up_job_box01 .life_up_job_box01_in:nth-child(3) {
  margin-right: 0;
}
.life_up_job_box01 .life_up_job_box01_in:last-child {
  margin-right: 0;
}
.life_up_job_box01 .life_up_job_box01_in .title {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.6em;
  margin-bottom: 15px;
}

.life_up_job_utext {
  padding: 10px;
  border: 5px solid #95c6de;
  border-radius: 10px;
  background-color: #FFF;
}

.life_up_job_flow {
  width: 640px;
  margin: 80px auto 30px;
}
.life_up_job_flow .life_up_job_flow_box {
  margin: 0;
}
.life_up_job_flow .life_up_job_flow_box dl {
  border: 2px solid #d8131a;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 1em;
  line-height: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .life_up_job_flow .life_up_job_flow_box dl {
    padding: 15px 10px;
  }
}
.life_up_job_flow .life_up_job_flow_box dl dt {
  width: 70px;
  margin-right: 15px;
  margin-bottom: 20px;
}
.life_up_job_flow .life_up_job_flow_box dl dt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .life_up_job_flow .life_up_job_flow_box dl dt {
    width: 55px;
    margin-right: 10px;
  }
}
.life_up_job_flow .life_up_job_flow_box dl dd {
  width: calc(100% - 85px);
  margin-bottom: 20px;
}
.life_up_job_flow .life_up_job_flow_box dl dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .life_up_job_flow .life_up_job_flow_box dl dd {
    width: calc(100% - 65px);
  }
}
.life_up_job_flow .life_up_job_flow_box dl span {
  font-size: 1.4em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .life_up_job_flow .life_up_job_flow_box dl span {
    font-size: 1.2em;
  }
}
.life_up_job_flow .text-right {
  text-align: right;
}

.arrow_lifeup {
  width: 100px;
  margin: 0 auto;
}

.life_up_job_merit {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.life_up_job_merit.school_empathy_relative {
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.life_up_job_merit.school_empathy_relative .life_up_job_merit_r {
  width: 100%;
}
.life_up_job_merit.school_empathy_relative .school_empathy_policy {
  margin-top: 0;
}
.life_up_job_merit.school_empathy_apply {
  align-items: flex-start;
}
.life_up_job_merit.school_empathy_apply + img {
  display: block;
  width: 100px;
  margin: 0 auto 30px;
}
.life_up_job_merit .school_empathy_apply_item {
  width: 48%;
  max-width: 480px;
}
.life_up_job_merit .school_empathy_apply_item:nth-of-type(2) {
  position: relative;
}
.life_up_job_merit .school_empathy_apply_item:nth-of-type(2):after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #d8131a;
  position: absolute;
  top: 0;
  left: -25px;
}
.life_up_job_merit .school_empathy_apply_item h3 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}
.life_up_job_merit .school_empathy_apply_item ul {
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.4rem;
}
.life_up_job_merit .school_empathy_apply_item ul li {
  padding-left: 20px;
}
.life_up_job_merit .school_empathy_apply_item ul li:before {
  display: inline-block;
  content: "■";
  width: 20px;
  margin-left: -20px;
  color: #d8131a;
}
.life_up_job_merit .school_empathy_apply_item a {
  text-decoration: underline;
}
.life_up_job_merit .school_empathy_apply_item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .school_empathy_apply_item {
    width: 100%;
    padding: 15px 0;
  }
  .life_up_job_merit .school_empathy_apply_item:nth-of-type(2):after {
    width: 100%;
    height: 3px;
    top: -15px;
    left: 0;
  }
  .life_up_job_merit .school_empathy_apply_item h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.life_up_job_merit .life_up_job_merit_l {
  width: 42%;
  box-sizing: border-box;
  padding: 20px;
  border: 3px solid #d9121a;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_l {
    width: 100%;
    padding: 15px 10px;
  }
}
.life_up_job_merit .life_up_job_merit_l dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.life_up_job_merit .life_up_job_merit_l dl dt {
  width: 70px;
  margin-right: 15px;
  margin-bottom: 20px;
}
.life_up_job_merit .life_up_job_merit_l dl dt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_l dl dt {
    width: 55px;
    margin-right: 10px;
  }
}
.life_up_job_merit .life_up_job_merit_l dl dd {
  width: calc(100% - 85px);
  margin-bottom: 20px;
}
.life_up_job_merit .life_up_job_merit_l dl dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_l dl dd {
    width: calc(100% - 65px);
  }
}
.life_up_job_merit .life_up_job_merit_l dl span {
  font-size: 1.4em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_l dl span {
    font-size: 1.2em;
  }
}
.life_up_job_merit .life_up_job_merit_arrow {
  width: 50px;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_arrow {
    width: 80px;
    margin: 0 auto;
  }
}
.life_up_job_merit .life_up_job_merit_r {
  width: 50%;
  border-radius: 10px;
  background-color: #e07669;
}
@media screen and (max-width: 767px) {
  .life_up_job_merit .life_up_job_merit_r {
    width: 100%;
  }
}
.life_up_job_merit .life_up_job_merit_r ul {
  color: #FFF;
  padding: 20px;
}
.life_up_job_merit .life_up_job_merit_r ul li {
  list-style: disc;
  margin-left: 1.5em;
}

.life_up_job_career dd {
  margin: 20px 0;
}
.life_up_job_career dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.life_up_job_career dd ul.mycarrer_search {
  padding: 20px 30px;
}
.life_up_job_career dd ul li {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .life_up_job_career dd ul li {
    width: 100%;
    margin: 8px 0;
  }
}
.life_up_job_career dd ul ul {
  flex-direction: column;
}
.life_up_job_career dd ul ul li {
  width: 100%;
}
.life_up_job_career dd span {
  font-size: 1.2em;
}

.life_up_job_team {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.life_up_job_team .life_up_job_team_box {
  width: 48%;
  margin-bottom: 6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .life_up_job_team .life_up_job_team_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.life_up_job_team .life_up_job_team_box span {
  font-size: 0.8em;
  line-height: 1.2em;
  display: block;
}
.life_up_job_team .life_up_job_team_box figure {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .life_up_job_team .life_up_job_team_box figure {
    width: 200px;
    margin-bottom: 10px;
  }
}
.life_up_job_team .life_up_job_team_box div {
  width: calc(100% - 200px);
}
@media screen and (max-width: 767px) {
  .life_up_job_team .life_up_job_team_box div {
    width: 100%;
  }
}
.life_up_job_team .life_up_job_team_box div .title {
  line-height: 1.6em;
}
.life_up_job_team .life_up_job_team_box div .name {
  font-size: 1.6em;
}

.mg-top {
  margin-top: 1em;
}

.life_up_job_box02 {
  background-color: #d9121a;
  color: #FFF;
  padding: 30px;
  width: 400px;
  margin: 0 auto 30px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .life_up_job_box02 {
    width: 100%;
    padding: 20px;
  }
}
.life_up_job_box02 .title {
  font-size: 2em;
  margin-bottom: 20px;
}
.life_up_job_box02 .fee {
  font-size: 2.4em;
  line-height: 1em;
  font-weight: 900;
}
.life_up_job_box02 .fee span {
  font-size: 0.6em;
}

.life_up_job_ill {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.life_up_job_ill .life_up_job_subject {
  width: calc(100% - 460px);
  box-sizing: border-box;
  background-color: #d9121a;
  padding: 20px;
  border-radius: 10px;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .life_up_job_ill .life_up_job_subject {
    width: 100%;
  }
}
.life_up_job_ill .life_up_job_subject ul {
  padding-left: 1.5em;
}
.life_up_job_ill .life_up_job_subject ul li {
  list-style: disc;
  margin: 15px 0 0;
}
.life_up_job_ill .life_up_job_img {
  width: 420px;
}
@media screen and (max-width: 767px) {
  .life_up_job_ill .life_up_job_img {
    width: 100%;
    margin-top: 20px;
  }
}
.life_up_job_ill .life_up_job_utext {
  width: 100%;
  margin-top: 30px;
}

.life_up_job_box03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.life_up_job_box03 .life_up_job_box01_in {
  width: 32%;
  box-sizing: border-box;
  background-color: #d9121a;
  color: #FFF;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .life_up_job_box03 .life_up_job_box01_in {
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
  }
}
.life_up_job_box03 .life_up_job_box01_in .title {
  font-size: 1.4em;
}

.school_empathy_policy {
  margin-top: 40px;
}
.school_empathy_policy h3 {
  margin-bottom: 20px;
}
.school_empathy_policy p {
  border: 2px solid #d8131a;
  padding: 20px;
  border-radius: 10px;
  font-weight: 700;
}

.title_flow .image_area {
  background-image: url(../img/title_flow.webp);
}

.title_flow02 .image_area {
  background-image: url(../img/title_flow02.webp);
}

.flow_box:last-of-type {
  margin-bottom: 0;
}

.flow_lead_main {
  margin-bottom: 40px;
  color: #536BE8;
  font-size: 2rem;
  font-weight: 700;
}

.flow_lead {
  max-width: 850px;
}

.flow_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 0;
  margin-top: 40px;
}

.flow_item, .flow_item1 {
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 40px 5%;
  position: relative;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .flow_item, .flow_item1 {
    padding: 30px 8%;
  }
}
.flow_item .flow_item_title, .flow_item1 .flow_item_title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.6;
}
.flow_item .flow_item_title span, .flow_item1 .flow_item_title span {
  font-size: 1.6rem;
  display: block;
  line-height: 1.2;
  color: #536BE8;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .flow_item .flow_item_title, .flow_item1 .flow_item_title {
    font-size: 2rem;
  }
  .flow_item .flow_item_title span, .flow_item1 .flow_item_title span {
    font-size: 1.4rem;
  }
}
.flow_item::after, .flow_item1::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 41px 0 41px;
  border-color: #536BE8 transparent transparent transparent;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_item:last-of-type::after, .flow_item1:last-of-type::after {
  display: none;
}

.flow_item1::after {
  display: none;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 41px 0 41px;
  border-color: #536BE8 transparent transparent transparent;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_text {
  max-width: 650px;
  margin: 0 auto;
}

.hop_step_school_flex {
  display: flex;
  gap: 20px 0;
}
.hop_step_school_top {
  width: 100%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .hop_step_school_flex {
    flex-direction: column;
  }
  .hop_step_school_top {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.hop_step_flow_help {
  width: 100%;
  max-width: 800px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #626161;
}
.hop_step_flow_help p:nth-of-type(1) {
  margin-bottom: 10px;
}

.title_employ_foreigner .image_area {
  background-image: url(../img/title_foreigner.webp);
}

.sub_head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .sub_head {
    font-size: 1.8rem;
  }
}

.student_topic .container_short {
  max-width: 800px;
  margin: 0 auto;
}
.student_topic .caption {
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .student_topic .caption {
    font-size: 1rem;
  }
}
.student_topic .btn {
  max-width: 350px;
}

.student_topic02 {
  background-color: #f5f5f5;
}
.student_topic02 .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .student_topic02 .container {
    flex-direction: column;
    gap: 40px;
  }
}

.student_topic_photo {
  width: calc(40% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 767px) {
  .student_topic_photo {
    width: 100%;
    margin-right: 0;
    border-radius: 10px;
  }
}

.student_topic_content {
  flex: 1;
}

.student_topic_text {
  max-width: 650px;
  margin-bottom: 40px;
}
.student_topic_text span {
  color: #E10000;
}

.student_topic_image {
  border: 1px solid #ccc;
}

.title_employ_student .image_area {
  background-image: url(../img/title_student.webp);
}

.sub_head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  display: inline-block;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .sub_head {
    font-size: 1.8rem;
  }
}

.student_topic .container_short {
  max-width: 800px;
  margin: 0 auto;
}
.student_topic .caption {
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .student_topic .caption {
    font-size: 1rem;
  }
}
.student_topic .btn {
  max-width: 350px;
}

.student_topic02 {
  background-color: #f5f5f5;
}

.wide .container_short {
  max-width: 1000px;
}

.student_topic_text {
  max-width: 650px;
  margin-bottom: 40px;
}
.student_topic_text span {
  color: #E10000;
}

.student_topic_image {
  border: 1px solid #ccc;
}

.student_merit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.student_merit_item {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  padding: 50px 40px;
  color: #ffffff;
}
.student_merit_item:nth-of-type(1) {
  background-color: #dd4e4e;
}
.student_merit_item:nth-of-type(2) {
  background-color: #333333;
}
.student_merit_item:nth-of-type(3) {
  padding: 0;
}
.student_merit_item h3 {
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.4rem;
}
.student_merit_item ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: decimal;
  list-style-position: outside;
}
@media screen and (max-width: 767px) {
  .student_merit {
    flex-direction: column;
    align-items: center;
  }
  .student_merit_item {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
  }
  .student_merit_item h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}

.title_company .image_area {
  background-image: url(../img/title_company.webp);
}

#mission .text_area_650 {
  padding-left: 30px;
}
#mission .under_line {
  font-size: 2rem;
}
#mission p {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #mission .text_area_650 {
    padding-left: 0;
  }
  #mission .under_line {
    font-size: 1.8rem;
  }
  #mission p {
    margin-top: 20px;
  }
}
#ceo,
#ceo2 {
  position: relative;
}
#ceo::before,
#ceo2::before {
  content: "";
  display: block;
  width: 100%;
  height: 66%;
  background-color: #F5F5F5;
  position: absolute;
  left: 0;
  bottom: 0;
}
#ceo .flex_box,
#ceo2 .flex_box {
  column-gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
#ceo .image_area,
#ceo2 .image_area {
  width: 300px;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #ceo::before {
    height: 80%;
  }
}
@media screen and (max-width: 767px) {
  #ceo .flex_box {
    row-gap: 30px;
  }
}
.carrer_consultant .flex_box:nth-of-type(2) {
  margin: 80px 0;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .carrer_consultant .flex_box:nth-of-type(2) {
    margin: 40px 0;
    flex-direction: column;
  }
}
.carrer_consultant dt {
  padding-bottom: 5px;
  border-bottom: 1px solid #536BE8;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.carrer_consultant dt span {
  color: #536BE8;
  font-weight: 400;
  cursor: pointer;
}
.carrer_consultant dt i {
  display: inline-block;
  margin-left: 5px;
}
.carrer_consultant dd {
  font-size: 1.4rem;
  line-height: 1.8;
  display: none;
}
.carrer_consultant dd.opened {
  display: block;
  animation: opening 0.5s ease forwards;
}
@keyframes opening {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#information .head_text {
  text-align: center;
}
#information .outline_list {
  margin: 0 auto;
}
#information dd span {
  font-size: 80%;
  color: #888;
}
#information dd a {
  text-decoration: underline;
}

#access {
  background: -webkit-gradient(linear, right top, left top, from(#333333), to(#545454));
  background: -webkit-linear-gradient(right, #333333, #545454);
  background: -moz-linear-gradient(right, #333333, #545454);
  background: -o-linear-gradient(right, #333333, #545454);
  background: linear-gradient(to left, #333333, #545454);
  color: #ffffff;
}
#access .outline_list {
  margin-bottom: 50px;
}
#access iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.title_contact .image_area {
  background-image: url(../img/title_company.webp);
}

.contact_lead {
  padding-bottom: 0;
}
.contact_lead p {
  max-width: 650px;
}

.form_intro {
  margin-bottom: 40px;
}

.form_tel {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: underline;
}

.form {
  max-width: 800px;
}
.form dl {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  border-top: none;
}
.form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #DDD;
}
.form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #DDD;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #ccc;
  font-weight: 500;
}
.form input[type=tel],
.form input[type=text],
.form input[type=email] {
  height: 45px;
  font-size: 16px;
  border: 2px solid #CCC;
  padding: 3px 10px;
  background-color: #FFF;
}
.form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFF;
}
.form select {
  height: 40px;
}
.form input,
.form select {
  vertical-align: middle;
  border-radius: 5px;
}
.form label {
  cursor: pointer;
}
.form label input[type=checkbox],
.form label input[type=radio] {
  transform: scale(1.3);
  vertical-align: inherit;
  margin-right: 10px;
  margin-bottom: 20px;
}
.form .boxW100 input,
.form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
.form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
.form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
.form .boxW50 select {
  background-color: #fff;
  padding: 3px 10px;
  border: 1px solid #CCC;
}
.form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
.form .boxW20 span {
  padding-left: 10px;
}
.form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
.form .must {
  display: inline-block;
  background-color: #E10000;
  font-size: 10px;
  line-height: 1.5em;
  color: #FFF;
  border-radius: 4px;
  margin: 0 0 0 10px;
  padding: 2px 5px 3px;
}
.form .small {
  font-size: 1.5rem;
}
.form #image-btn {
  width: 86%;
  max-width: 400px;
  text-align: center;
  border-radius: 300px;
  color: #FFF;
  transition: 0.2s;
  overflow: hidden;
}
.form #image-btn:hover {
  opacity: 0.8;
}
.form #image-btn input {
  width: 100%;
  height: 60px;
  display: block;
  background: linear-gradient(to right, #BE83F1, #536BE8);
  cursor: pointer;
  font-size: 1.8rem;
}
@media all and (max-width: 599px) {
  .form dl {
    display: block;
    margin: 0 auto;
  }
  .form dl.margin_erase {
    margin-top: -40px;
  }
  .form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  .form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  .form #image-btn input {
    font-size: 1.6rem;
  }
}

.formBtn {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.formBtn input {
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 200px;
  display: inline-block;
  margin: 0 10px;
  color: #FFF;
}
.formBtn input:hover {
  opacity: 0.8;
}
@media all and (max-width: 599px) {
  .formBtn {
    display: block;
  }
  .formBtn input {
    margin-bottom: 20px;
  }
}

input.backBtn {
  border-radius: 200px;
  padding: 10px 60px;
  background-color: #ccc;
  color: #222;
  font-size: 1.8rem;
}

input.submitBtn {
  background: linear-gradient(to right, #BE83F1, #536BE8);
  border-radius: 200px;
  padding: 10px 60px;
  color: #fff;
  font-size: 1.8rem;
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media all and (max-width: 480px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #043d60;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.lead {
  margin-bottom: 40px;
}

.telNum {
  margin-bottom: 100px;
}

.image-btn-wrap {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.formText {
  margin-top: 20px;
  padding-bottom: 20px;
}

.topBtn {
  margin-top: 40px;
}

@media all and (max-width: 599px) {
  center {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.margin_erase {
  margin-top: -40px;
}

.pageTitle {
  margin-top: 150px;
  margin-bottom: 60px;
}

.h_tl {
  font-size: 2.4rem;
  font-weight: 700;
}

.title_social .image_area {
  background-image: url(../img/title_company.webp);
}

.social_lead p {
  max-width: 650px;
}

.social_box {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .social_box {
    margin-bottom: 50px;
  }
}

.social_box.container_short {
  padding: 0;
}

.title_privacy .image_area {
  background-image: url(../img/title_company.webp);
}

.privacy_lead,
.privacy_box {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy_box {
  margin-bottom: 50px;
}
.privacy_box h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.privacy_box h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #536BE8;
}
@media screen and (max-width: 767px) {
  .privacy_box h3 {
    font-size: 1.8rem;
  }
}
.privacy_box ul,
.privacy_box ol {
  padding-left: 20px;
  list-style-position: outside;
}
.privacy_box ul {
  list-style-type: disc;
}
.privacy_box ol {
  list-style-type: decimal;
}
.privacy_box a {
  text-decoration: underline;
  color: #3956ea;
}
.privacy_box a:hover {
  opacity: 0.8;
}

.guideline_declaration {
  font-size: 2.4rem;
}
.guideline_declaration + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .guideline_declaration {
    font-size: 1.8rem;
  }
}

.sitemao_item {
  border-bottom: 2px solid #ccc;
  padding: 30px 2%;
}
@media screen and (max-width: 767px) {
  .sitemao_item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.sitemao_item a {
  display: block;
}
.sitemao_item a:hover {
  opacity: 0.7;
}
.sitemao_item ul {
  padding-left: 5%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sitemao_item li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sitemao_item li a::before {
  content: "";
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/sitemap_link.svg) center/contain no-repeat;
  flex-shrink: 0;
}
.sitemao_item .hover_none:hover {
  opacity: 1;
}

.err_msg .err_text {
  margin-bottom: 40px;
  font-size: 3rem;
  line-height: 1.5;
}
.err_msg .err_text span {
  display: block;
  font-size: 5rem;
}
.err_msg .btn {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .err_msg .err_text {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .err_msg .err_text span {
    font-size: 3.5rem;
  }
  .err_msg .btn {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */