@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900");
/* カラー---------------- */
.color1 {
  color: #fff;
}

.color2 {
  color: #333;
}

.color3 {
  color: #2B5FD5;
}

.color4 {
  color: #00C5FF;
}

.color5 {
  color: #2B77D5;
}

/* 基本スタイル---------------- */
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scroll-padding-top: 130px;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 75px;
  }
}

body {
  margin: 0;
  color: #333;
  background: #fff;
  text-align: justify;
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
  font-size: 100%;
  font-weight: 700;
}

ol, ul {
  list-style: none;
}

ol li, ul li {
  line-height: 2;
}

img {
  border: 0;
  vertical-align: bottom;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

address, caption, cite, code, dfn, th, var {
  font-style: normal;
  font-weight: normal;
}

a {
  color: #333;
  outline: none;
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

p {
  word-wrap: break-word;
  line-height: 2;
  font-weight: 500;
}

label {
  display: inline-block;
  cursor: pointer;
}

button, input, select, textarea {
  font-family: inherit;
  -webkit-appearance: none;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], textarea {
  color: #333;
  background: #fff;
  border: 2px solid #333;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus {
  color: #333;
  background: #fff;
  border: 2px solid #333;
}

input[type="submit"] {
  font-size: 100%;
  cursor: pointer;
}

html input[type=button], input[type=reset], input[type=submit] {
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

select {
  min-width: 7em;
  color: #333;
  background: #fff;
  border: 2px solid #333;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

/* 基本レイアウト---------------- */
body {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}

#container {
  width: 100%;
}

.inner {
  position: relative;
  width: 90%;
  max-width: 1366px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .inner {
    max-width: 1200px;
  }
}

.inner2 {
  position: relative;
  width: 90%;
  max-width: 1560px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .inner2 {
    max-width: 1200px;
  }
}

.inner3 {
  position: relative;
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .inner3 {
    max-width: 1200px;
  }
}

.inner4 {
  position: relative;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1366px) {
  .inner4 {
    max-width: 1200px;
  }
}

/* ヘッダー---------------- */
#head {
  width: 100%;
  height: 130px;
}
@media screen and (max-width: 1024px) {
  #head {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  #head {
    height: 75px;
    background: #fff;
  }
}

.head_in {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#head_logo {
  width: 27%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #head_logo {
    width: 60%;
    max-width: 180px;
  }
}
#head_logo img {
  max-width: 100%;
  height: auto;
}

#head_navi {
  width: 73%;
  padding: 28px 160px 0 0;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  #head_navi {
    padding: 28px 120px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #head_navi {
    display: none;
  }
}

.nav_menu {
  display: inline-block;
}

.head_navi_menu {
  display: inline-block;
  white-space: nowrap;
}
.head_navi_menu li {
  display: inline-block;
}
.head_navi_menu li a {
  position: relative;
  display: inline-block;
  margin-left: 35px;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .head_navi_menu li a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .head_navi_menu li a {
    font-size: clamp(13px, 1.6vw, 15px);
  }
}
.head_navi_menu li a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all .3s;
}

.head_navi_menu.scrolled li a {
  color: #333;
}
.head_navi_menu.scrolled li a:after {
  background: #333;
}

/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
  opacity: 0;
  z-index: 1001;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.open .overRayBox {
  visibility: visible;
  opacity: 1;
  transform: translateX(70%);
}

.open .overRayBox dt {
  display: none;
}

@media only screen and (max-width: 767px) {
  .open .overRayBox {
    transform: translateX(0%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .open .overRayBox {
    transform: translateX(55%);
  }
}
html.open {
  overflow-y: hidden;
}

.overRayBlock {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: #fff;
}

.overRayImgCard {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .overRayImgCard {
    width: 30%;
  }
}
.overRayTextCard {
  width: 30%;
  padding: 70px 20px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 0 25px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayTextCard {
    width: 55%;
    padding: 70px 60px 70px 10px;
  }
}
.overRayMenuUl {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .overRayMenuUl {
    margin-top: 25%;
    padding-bottom: 30px;
  }
}
.overRayMenuUl a {
  text-decoration: none;
  color: #2B5FD5;
}
.overRayMenuUl dd, .overRayMenuUl dt {
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .overRayMenuUl dd, .overRayMenuUl dt {
    font-size: 14px;
  }
}
.overRayMenuUl > li {
  position: relative;
  padding: 1rem 3rem;
}
@media screen and (max-width: 768px) {
  .overRayMenuUl > li {
    padding: 1rem 3rem;
  }
}
.overRayMenuUl > li a {
  display: block;
  transition: 0.3s;
  position: relative;
}
.overRayMenuUl > li a::before, .overRayMenuUl > li a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 22px;
  line-height: 1;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-weight: 100;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li a:hover {
  opacity: 0.5;
}

.overRayMenuUl > li a.hasMegaMenuA::before {
  content: "\f13a";
  content: "▼";
}

.overRayMenuUl > li a.hasMegaMenuA.on {
  padding-bottom: 5%;
}

.overRayMenuUl > li a.hasMegaMenuA.on::after {
  content: "\f139";
  content: "▲";
}

.overRayMenuUl > li a.hasMegaMenuA.on::before {
  opacity: 0;
}

.splist {
  display: none;
  width: 110%;
  margin-left: -5%;
  padding: 0 15%;
}
.splist > li {
  position: relative;
  padding: 0.6em 0;
}

a.contact_btn {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #2B5FD5;
  border-radius: 0px;
  background-image: url(../img/btn_mark_blue.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  background-size: 20px;
  font-size: 13px;
  text-align: center;
}

.overRayMenuUl > li a.contact_btn {
  margin-bottom: -1em;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 1005;
  right: 60px;
  top: 34px;
  background: transparent;
  border: none;
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .menu-btn {
    top: 20px;
    right: 25px;
  }
}

.menu-btn span:after {
  content: attr(data-txt-menu);
}

.open .menu-btn span:after {
  content: attr(data-txt-close);
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 44px;
  height: 31px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .menu-trigger span {
    background: #2B5FD5;
  }
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 14px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 1px;
}

.menu-trigger.active span {
  background: #333;
}
@media screen and (max-width: 768px) {
  .menu-trigger.active span {
    background: #2B5FD5;
  }
}

.menu-trigger.scrolled span {
  background: #333;
}
@media screen and (max-width: 768px) {
  .menu-trigger.scrolled span {
    background: #2B5FD5;
  }
}

.menu-trigger.active.scrolled span {
  background: #333;
}
@media screen and (max-width: 768px) {
  .menu-trigger.active.scrolled span {
    background: #2B5FD5;
  }
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-14px) rotate(45deg);
}

.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}

.menu-trigger.active span:nth-of-type(3)::after {
  content: "";
}

@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.menu-btn.scroll-nav .menu-trigger span {
  background-color: #333;
}
.menu-btn.scroll-nav .menu-trigger span:nth-of-type(3)::after {
  color: #333;
}

/* 初期状態のヘッダー */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
  }
}

/* 白帯用の要素 */
.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: width 0.5s ease;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .header-background {
    display: none;
  }
}

/* スクロール時の白帯が伸びた状態 */
.header.scrolled .header-background {
  width: 100%;
}

/* フッター----------------- */
#foot {
  padding: 65px 0 40px;
  background: linear-gradient(90deg, rgba(0, 197, 255, 0.08) 0%, rgba(0, 78, 213, 0.08) 100%);
}
@media screen and (max-width: 768px) {
  #foot {
    padding: 60px 0 20px;
  }
}
#foot a {
  text-decoration: none;
  transition: all .5s;
}
#foot a:hover {
  opacity: .6;
}
#foot .current > a {
  color: #2B5FD5;
}

.inner_foot {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.foot_col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .foot_col {
    display: block;
    margin-bottom: 40px;
  }
}

.foot_col1 {
  width: 49%;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .foot_col1 {
    width: 100%;
    margin-bottom: 35px;
    padding-top: 0;
  }
}

.foot_col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 49%;
  margin-left: 2%;
}
@media screen and (max-width: 768px) {
  .foot_col2 {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}

.foot_col2_1 {
  width: 54%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .foot_col2_1 {
    width: 100%;
    margin-right: 0;
  }
}

.foot_col2_2 {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .foot_col2_2 {
    width: 100%;
  }
}

.foot_logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .foot_logo {
    margin-bottom: 50px;
  }
}

.foot_nav1 > li {
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .foot_nav1 > li {
    margin-bottom: 20px;
  }
}

.foot_nav2 li {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
}

.copyright {
  text-align: center;
}
.copyright small {
  font-size: 12px;
}

.pagetop {
  position: fixed;
  bottom: 55px;
  right: 30px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    display: none;
  }
}
.pagetop a {
  color: #2B5FD5;
}

/* 汎用スタイル---------------- */
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.img100 img {
  width: 100%;
  height: auto;
}

.img_res img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 600;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex_st {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: center;
}

/* トップ---------------- */
#top_main {
  position: relative;
  width: 100%;
}

#slider1 li {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.top_slide1 {
  position: relative;
  width: 100%;
  height: 910px;
  background: url("../img/mv_slide1.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .top_slide1 {
    height: calc(540vw / 3.75);
    background: url("../img/mv_slide1_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.top_slide2 {
  position: relative;
  width: 100%;
  height: 910px;
  background: url("../img/mv_slide2.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .top_slide2 {
    height: calc(540vw / 3.75);
    background: url("../img/mv_slide2_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.top_slide3 {
  position: relative;
  width: 100%;
  height: 910px;
  background: url("../img/mv_slide3.webp") no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 1024px) {
  .top_slide3 {
    height: calc(540vw / 3.75);
    background: url("../img/mv_slide3_sp.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.top_mv_copy {
  position: absolute;
  top: 190px;
  left: 10%;
  right: 10%;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top_mv_copy {
    top: 38vw;
    max-width: 736px;
  }
}
@media screen and (max-width: 768px) {
  .top_mv_copy {
    top: 32vw;
  }
}

#top_main .slick-dotted.slick-slider {
  margin-bottom: 0;
}
#top_main .slick-dots {
  bottom: 30px;
  right: 80px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  #top_main .slick-dots {
    bottom: 20px;
    right: 60px;
  }
}
#top_main .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 5px;
}
#top_main .slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 1;
}
#top_main .slick-dots li.slick-active button:before {
  color: #000;
}

/* スライダー再生停止ボタン*/
.sl_btn {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: solid 1px #fff;
}

#top_main .sl_btn {
  position: absolute;
  bottom: 32px;
  right: 40px;
}
@media screen and (max-width: 1024px) {
  #top_main .sl_btn {
    bottom: 22px;
    right: 30px;
  }
}

/* 一時停止 */
.sl_btn::after {
  content: '';
  width: 2px;
  height: 8px;
  border-width: 0 3px 0 3px;
  border-color: transparent #000 transparent #000;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 再生 */
.sl_btn.playback::after {
  width: 0;
  height: 0;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #000;
}

.sl_fukidashi {
  padding: 0;
  margin: 0;
}

.sl_fukidashi_txt {
  display: none;
  position: absolute;
  bottom: 65px;
  right: 20px;
  width: 100px;
  padding: 8px;
  font-size: 14px;
  border-radius: 2px;
  background: #000;
  color: #fff;
  font-weight: bold;
}
.sl_fukidashi_txt:after {
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: -12px;
  margin-right: 21px;
  border-top: 20px solid #000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  pointer-events: none;
  content: "";
}

.sl_fukidashi_btn:hover + .sl_fukidashi_txt {
  display: block;
}
@media screen and (max-width: 768px) {
  .sl_fukidashi_btn:hover + .sl_fukidashi_txt {
    display: none;
  }
}

#top_company {
  background: url("../img/top_company_bg.webp") no-repeat;
  background-size: auto 1016px;
  background-position: center bottom 340px;
}
@media screen and (max-width: 768px) {
  #top_company {
    background: url("../img/top_company_bg_sp.webp") no-repeat;
    background-size: 100% auto;
    background-position: center bottom 255px;
  }
}

.h2_1 {
  position: relative;
  margin-bottom: 40px;
  padding-top: 70px;
  line-height: 1.2;
  background: url("../img/line_h2_1.png") no-repeat;
  background-size: 43px 108px;
  background-position: top left 37px;
}
@media screen and (max-width: 768px) {
  .h2_1 {
    margin-bottom: 50px;
  }
}
.h2_1 .h2_1_en {
  margin-left: 66px;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
  .h2_1 .h2_1_en {
    font-size: 24px;
  }
}
.h2_1 h2 {
  display: inline-block;
  padding-right: 10px;
  font-size: clamp(48px, 4.4vw, 65px);
  font-style: italic;
  background: linear-gradient(90deg, #00c5ff 0%, #004ed5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .h2_1 h2 {
    font-size: 58px;
  }
}

.top_company_txt {
  padding-bottom: 165px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_company_txt {
    padding-bottom: 70px;
  }
}

.top_company_txt1 {
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top_company_txt1 {
    font-size: 30px;
  }
}

.top_company_txt2 {
  margin-bottom: 40px;
  font-size: clamp(58px, 4.8vw, 74px);
  font-weight: 700;
  font-style: italic;
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .top_company_txt2 {
    font-size: 60px;
  }
}

/* 文字がぬるりと現れる */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.p1 {
  margin-bottom: 40px;
  line-height: 2.4;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p1 {
    text-align: left;
  }
}

.top_company_txt p {
  letter-spacing: .04em;
}

.btn1.slide a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 220px;
  height: 70px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  background: #fff;
  color: #2B5FD5;
  overflow: hidden;
  border: 1px solid #2B5FD5;
  z-index: 1;
}
.btn1.slide a:after {
  background: #2B5FD5;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn1.slide a:hover {
  color: #fff;
}
.btn1.slide a:hover::after {
  transform: scale(1, 1);
}

.btn1.slide.skew a::after {
  transform: skewY(-40deg) scale(1, 0);
  height: 250px;
}

.btn1.slide.skew a:hover::after {
  transform: skewY(-40deg) scale(1, 1);
}

.slider2_wrap {
  position: relative;
}

#slider2 {
  width: 100%;
}
#slider2 li.slick-slide {
  position: relative;
  width: 600px;
  margin: 0 13px;
  padding-bottom: 15px;
  filter: drop-shadow(7px 7px 5px rgba(181, 181, 181, 0.75));
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  #slider2 li.slick-slide {
    width: 437px;
  }
}
#slider2 img {
  width: 100%;
  height: auto;
}

.slider2_copy {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 1547px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .slider2_copy {
    top: -5vw;
  }
}
@media screen and (max-width: 768px) {
  .slider2_copy {
    display: none;
  }
}

#top_works {
  position: relative;
  margin-top: -15px;
}

.top_works_txt {
  margin-bottom: 50px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .top_works_txt {
    text-align: left;
  }
}

.top_works_menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .top_works_menu {
    display: block;
    width: 93%;
    margin: 0 auto;
  }
}

figure.snip1 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  width: 20%;
  margin: 0;
  color: #000;
  text-align: center;
  -webkit-perspective: 50em;
  perspective: 50em;
}
@media screen and (max-width: 768px) {
  figure.snip1 {
    width: 100%;
    margin-bottom: 7px;
  }
}
figure.snip1 * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
figure.snip1 img {
  width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: cover;
}
figure.snip1 figcaption {
  top: 50%;
  left: 20px;
  right: 20px;
  position: absolute;
  opacity: 0;
  z-index: 1;
  -webkit-transform: translate(10%, -30%);
  transform: translate(10%, -30%);
}
figure.snip1 h2 {
  margin: 0;
  font-weight: 600;
}
figure.snip1 .top_works_menu_txt4 {
  margin: 0;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 400;
  text-transform: uppercase;
}
figure.snip1 i {
  font-size: 32px;
}
figure.snip1:after {
  background-color: #fff;
  position: absolute;
  content: "";
  display: block;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate3d(-1, 1, 0, 100deg);
  transform: rotate3d(-1, 1, 0, 100deg);
  opacity: 0;
}
figure.snip1 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

figure.snip1:hover figcaption,
figure.snip1.hover figcaption {
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip1:hover:after,
figure.snip1.hover:after {
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg);
  opacity: 0.9;
}

.top_works_menu_txt1 {
  position: absolute;
  bottom: 12%;
  right: 10%;
  text-align: right;
  line-height: 1;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top_works_menu_txt1 {
    font-size: 29px;
  }
}

.top_works_menu_txt2 {
  position: absolute;
  bottom: 8%;
  right: 10%;
  text-align: right;
  line-height: 1;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top_works_menu_txt2 {
    font-size: 29px;
  }
}

.top_works_menu_txt3 {
  font-size: clamp(14px, 1.6vw, 24px);
}
@media screen and (max-width: 768px) {
  .top_works_menu_txt3 {
    font-size: 22px;
  }
}

.ion_icon1 {
  margin-top: 10px;
  font-size: 150%;
}

.top_interview1 {
  padding: 155px 0 275px;
  background: url("../img/bg_top_interview.png") no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 1024px) {
  .top_interview1 {
    padding: 55px 0 50px;
    background: url("../img/bg_top_interview_sp.png") no-repeat;
    background-size: 100%;
    background-position: center bottom 240px;
  }
}

.col1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .col1 {
    display: block;
  }
}

.col1_1 {
  width: 43.8%;
  margin-right: 8.1%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .col1_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 120px;
  }
}

.col1_2 {
  width: 48.1%;
  padding-top: 320px;
}
@media screen and (max-width: 1024px) {
  .col1_2 {
    width: 100%;
    padding: 0 0 120px;
  }
}

.col1_1_1 {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .col1_1_1 {
    max-width: 100%;
  }
}
.col1_1_1 p {
  text-align: center;
}

.fukidashi1 {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 48px;
  padding: 20px 30px;
  border-radius: 6px;
  background-color: #2b5fd5;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fukidashi1 {
    margin: 0 auto 40px;
    padding: 10px 30px;
  }
}

.fukidashi1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 18px 40px 0 0;
  border-color: #2b5fd5 transparent transparent;
  translate: calc(-50% - 1.4px) 100%;
  transform: skew(-25deg);
  transform-origin: top;
}

.h2_2 {
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: clamp(48px, 4.4vw, 65px);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(90deg, #00c5ff 0%, #004ed5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .h2_2 {
    margin-bottom: 30px;
  }
}

.btn2.slide a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding-top: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  background: #fff;
  color: #2B5FD5;
  overflow: hidden;
  border: 1px solid #2B5FD5;
  z-index: 1;
}
.btn2.slide a:after {
  background: #2B5FD5;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn2.slide a:hover {
  color: #fff;
}
.btn2.slide a:hover::after {
  transform: scale(1, 1);
}

.btn2.slide.skew a::after {
  transform: skewY(-40deg) scale(1, 0);
  height: 350px;
}

.btn2.slide.skew a:hover::after {
  transform: skewY(-40deg) scale(1, 1);
}

.top_interview1 .btn2.slide a {
  margin: 0 auto;
}

/* Stacked Cards */
.stack {
  position: relative;
}

.card {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 600px;
  height: 580px;
  /*box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25),
    0 15px 20px 0 rgba(0, 0, 0, 0.125);*/
  transition: transform 0.6s;
  user-select: none;
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.card:nth-last-child(n + 5) {
  --x: calc(-50% + 90px);
  transform: translate(var(--x), -50%) scale(0.85);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.01);
}

.card:nth-last-child(4) {
  --x: calc(-50% + 60px);
  transform: translate(var(--x), -50%) scale(0.9);
}

.card:nth-last-child(3) {
  --x: calc(-50% + 30px);
  transform: translate(var(--x), -50%) scale(0.95);
}

.card:nth-last-child(2) {
  --x: calc(-50%);
  transform: translate(var(--x), -50%) scale(1);
}

.card:nth-last-child(1) {
  --x: calc(-50% - 30px);
  transform: translate(var(--x), -50%) scale(1.05);
}

.card:nth-last-child(1) img {
  box-shadow: 0 1px 5px 5px rgba(43, 119, 213, 0.5);
}

.swap {
  animation: swap 1.3s ease-out forwards;
}

@keyframes swap {
  30% {
    transform: translate(calc(var(--x) - 250px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
  }
  100% {
    transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
    z-index: -1;
  }
}
/* Media queries for keyframes */
@media (max-width: 1200px) {
  @keyframes swap {
    30% {
      transform: translate(calc(var(--x) - 200px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }
    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }
}
@media (max-width: 1050px) {
  @keyframes swap {
    30% {
      transform: translate(calc(var(--x) - 150px), -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }
    100% {
      transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
      z-index: -1;
    }
  }
}
/* Media queries for other classes */
@media (max-width: 1366px) {
  .col1_2 {
    padding-top: 220px;
  }

  .card {
    width: 420px;
    height: 406px;
  }
}
@media (max-width: 1200px) {
  .col1_2 {
    padding-top: 180px;
  }

  .card {
    width: 300px;
    height: 290px;
  }
}
@media (max-width: 1024px) {
  .col1_2 {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}
@media (max-width: 768px) {
  .col1_2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .stack {
    grid-area: stacked;
  }

  .card {
    width: 200px;
    height: 180px;
  }
}
.top_interview_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .top_interview_list {
    display: block;
  }
}
.top_interview_list li {
  position: relative;
  width: 50%;
  height: 435px;
  padding: 85px 10px 10px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top_interview_list li {
    width: 100%;
    height: 394px;
    padding: 40px 10px;
  }
}

.top_interview_list1 {
  background: url("../img/top_interview_img1.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top_interview_list1 {
    background: url("../img/top_interview_img1_sp.webp") no-repeat;
    background-size: cover;
  }
}

.top_interview_list2 {
  background: url("../img/top_interview_img2.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top_interview_list2 {
    background: url("../img/top_interview_img2_sp.webp") no-repeat;
    background-size: cover;
  }
}

.top_interview_list_txt1 {
  margin-bottom: 10px;
  letter-spacing: .08em;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}

.top_interview_list_txt2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .top_interview_list_txt2 {
    font-size: clamp(30px, 3.6vw, 50px);
  }
}
@media screen and (max-width: 768px) {
  .top_interview_list_txt2 {
    margin-bottom: 25px;
    line-height: 1.1;
    font-size: 43px;
  }
}

.btn3.slide {
  position: absolute;
  bottom: 57px;
  left: 0;
  right: 0;
  width: 206px;
  margin: 0 auto;
}

.btn3.slide a {
  position: relative;
  display: block;
  width: 206px;
  height: 55px;
  margin: 0 auto;
  padding-top: 14px;
  text-align: center;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 16px);
  color: #fff;
  overflow: hidden;
  border: 1px solid #fff;
  z-index: 1;
}
.btn3.slide a:after {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn3.slide a:hover {
  color: #2B77D5;
}
.btn3.slide a:hover::after {
  transform: scale(1, 1);
}

.btn3.slide.skew a::after {
  transform: skewY(-40deg) scale(1, 0);
  height: 250px;
}

.btn3.slide.skew a:hover::after {
  transform: skewY(-40deg) scale(1, 1);
}

#guideline {
  padding-bottom: 135px;
}
@media screen and (max-width: 768px) {
  #guideline {
    padding-bottom: 40px;
  }
}

.p2 {
  margin-bottom: 30px;
  font-size: 16px;
}

.guideline_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .guideline_list {
    display: block;
  }
}
.guideline_list li {
  width: 32.6%;
  margin-right: 1.1%;
  text-align: center;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
}
@media screen and (max-width: 768px) {
  .guideline_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 27px;
  }
}
.guideline_list li:nth-child(3n) {
  margin-right: 0;
}
.guideline_list li a {
  position: relative;
  display: block;
  min-height: 523px;
  padding: 30px 25px 45px;
  text-decoration: none;
  transition: all .5s;
}
@media screen and (max-width: 1024px) {
  .guideline_list li a {
    min-height: 450px;
    padding: 30px 15px 45px;
  }
}
@media screen and (max-width: 768px) {
  .guideline_list li a {
    min-height: 300px;
    padding: 30px 15px 60px;
  }
}
.guideline_list li a:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00c5ff 0%, #004ed5 100%);
}
.guideline_list li a:after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 44px;
  height: 44px;
  background: url("../img/icon_btn1.png") no-repeat;
  background-size: 100%;
}
.guideline_list li a:hover {
  opacity: .7;
}
.guideline_list li a h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
}
@media screen and (max-width: 768px) {
  .guideline_list li a h3 {
    font-size: 26px;
  }
}
.guideline_list li a p {
  text-align: left;
}

.guideline_img {
  margin-bottom: 25px;
}

/* 下層ページ---------------- */
/* 下層ページMV */
#sub_main {
  display: flex;
  align-items: center;
  width: 100%;
  height: 490px;
  padding-top: 30px;
  color: #fff;
  background: url("../img/bg_subpage.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  #sub_main {
    height: 300px;
    padding-top: 0;
    background: url("../img/bg_subpage.webp") no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 768px) {
  #sub_main {
    height: 200px;
    padding-top: 15px;
  }
}

.h1_1 {
  position: relative;
  margin-bottom: 55px;
  line-height: 1.2;
  font-size: clamp(40px, 3.2vw, 54px);
}
@media screen and (max-width: 1024px) {
  .h1_1 {
    margin-top: 100px;
    font-size: clamp(36px, 2.8vw, 46px);
  }
}
@media screen and (max-width: 768px) {
  .h1_1 {
    margin-top: 0;
  }
}
.h1_1:after {
  position: absolute;
  bottom: -28px;
  left: 0;
  display: block;
  content: "";
  width: 78px;
  height: 2px;
  background: #fff;
}

.h1_1_en {
  letter-spacing: .06em;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .h1_1_en {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

/* パンくず */
.pankuzu {
  padding: 20px 0 60px;
}
@media screen and (max-width: 768px) {
  .pankuzu {
    padding: 20px 0 50px;
  }
}
.pankuzu ul li {
  display: inline-block;
  line-height: 1.1;
}
.pankuzu ul li:after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin: 0 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
  vertical-align: 3px;
}
.pankuzu ul li:last-child:after {
  display: none;
}
.pankuzu ul li a {
  color: #2B5FD5;
}

/* 高校生採用について */
#highschool1 {
  padding-bottom: 85px;
}
@media screen and (max-width: 768px) {
  #highschool1 {
    padding-bottom: 60px;
  }
}

.h2_3 {
  position: relative;
  margin-bottom: 50px;
  padding-top: 25px;
  line-height: 1.2;
  background: url("../img/line_h2_3.png") no-repeat;
  background-size: 43px 70px;
  background-position: top left 38px;
}
@media screen and (max-width: 768px) {
  .h2_3 {
    font-size: 24px;
    background-position: top left 15px;
  }
}
.h2_3 .h2_3_en {
  margin: 0 0 25px 86px;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
  .h2_3 .h2_3_en {
    margin: 0 0 20px 56px;
    font-size: 22px;
  }
}
.h2_3 h2 {
  display: inline-block;
  padding-left: 30px;
  line-height: 1.2;
  font-size: clamp(36px, 3.8vw, 42px);
  font-style: italic;
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .h2_3 h2 {
    padding-left: 10px;
    font-size: 32px;
  }
}

.box1 {
  position: relative;
  margin-bottom: 135px;
  padding: 110px 50px 80px;
  text-align: center;
  background: #EAF9FF;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .box1 {
    margin-bottom: 70px;
    padding: 140px 20px;
    border-radius: 20px;
  }
}
.box1 p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .box1 p {
    text-align: left;
    font-size: 16px;
  }
}

.box1_txt1 {
  position: relative;
  margin-bottom: 50px;
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 600;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .box1_txt1 {
    font-size: 26px;
  }
}

.highschool_illust1 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 23.4%;
}
@media screen and (max-width: 768px) {
  .highschool_illust1 {
    top: 10px;
    left: 10px;
    width: 46%;
  }
}

.highschool_illust2 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 17.6%;
}
@media screen and (max-width: 768px) {
  .highschool_illust2 {
    top: 10px;
    right: 10px;
    width: 36%;
  }
}

.highschool_illust3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 19%;
}
@media screen and (max-width: 768px) {
  .highschool_illust3 {
    bottom: 10px;
    left: 10px;
    width: 38%;
  }
}

.highschool_illust4 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 24.5%;
}
@media screen and (max-width: 768px) {
  .highschool_illust4 {
    bottom: 10px;
    right: 10px;
    width: 48%;
  }
}

.highschool1_2 {
  padding-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .highschool1_2 {
    padding-bottom: 50px;
  }
}

.highschool1_3 {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .highschool1_3 {
    padding-bottom: 70px;
  }
}

.h3_1 {
  position: relative;
  width: 100%;
  min-height: 100px;
  padding: 28px 20px 25px 45px;
  line-height: 1.4;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  background: #2B5FD5;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .h3_1 {
    min-height: 70px;
    padding: 14px 10px 14px 22px;
    font-size: 20px;
  }
}
.h3_1:after {
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  display: block;
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  background: #fff;
}

.mb70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .mb70 {
    margin-bottom: 30px;
  }
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: calc(100% - 60px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .col2 {
    display: block;
    width: 100%;
  }
}

.col2_1 {
  order: 2;
  width: 47.6%;
}
@media screen and (max-width: 1024px) {
  .col2_1 {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
}

.col2_2 {
  order: 1;
  position: relative;
  width: 47.6%;
  margin-right: 4.8%;
}
@media screen and (max-width: 1024px) {
  .col2_2 {
    order: 2;
    width: 100%;
    margin-right: 0;
  }
}

.highschool_illust5 {
  text-align: right;
}

.p3 {
  margin-bottom: 20px;
  font-size: 18px;
}

#highschool2 {
  padding-bottom: 65px;
}

.highschool_list1 li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 70px 40px 30px;
  border: 10px solid #BDE6FF;
}
@media screen and (max-width: 1024px) {
  .highschool_list1 li {
    display: block;
    margin-bottom: 25px;
    padding: 30px 20px 10px;
    border: 7px solid #BDE6FF;
  }
}
.highschool_list1 li p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 18px;
}

.highschool_list1_col1 {
  order: 2;
  width: 54%;
}
@media screen and (max-width: 1024px) {
  .highschool_list1_col1 {
    width: 100%;
  }
}

.highschool_list1_col2 {
  order: 1;
  width: 42.3%;
  margin-right: 3.7%;
}
@media screen and (max-width: 1024px) {
  .highschool_list1_col2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.highschool_list1_img {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .highschool_list1_img {
    margin-bottom: 20px;
  }
}

.h3_2 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 55px;
  line-height: 1;
  font-size: clamp(32px, 2.6vw, 40px);
}
@media screen and (max-width: 1024px) {
  .h3_2 {
    padding-left: 45px;
    font-size: 30px;
  }
}
.h3_2:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 42px;
  height: 42px;
  background: url("../img/icon_cross1.png") no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .h3_2:before {
    width: 36px;
    height: 36px;
  }
}

#highschool3 {
  padding-bottom: 200px;
}

#slider3 {
  width: 100%;
  /*button.slick-disabled {
  	display: none !important;
  }*/
}
#slider3 li.slide {
  position: relative;
  width: 100%;
  max-width: 1146px;
  margin: 0 13px;
  text-align: left;
  background: linear-gradient(135deg, rgba(0, 197, 255, 0.1) 0%, rgba(0, 78, 213, 0.1) 100%);
}
@media screen and (max-width: 1366px) {
  #slider3 li.slide {
    max-width: 900px;
  }
}
@media screen and (max-width: 1024px) {
  #slider3 li.slide {
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  #slider3 li.slide {
    max-width: 320px;
    min-height: 1100px;
  }
}
#slider3 .slick-dotted.slick-slider {
  margin-bottom: 0;
}
#slider3 .slick-dots {
  bottom: -50px;
}
#slider3 .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 5px;
  background: #BABBBC;
}
#slider3 .slick-dots li button {
  width: 16px;
  height: 16px;
}
#slider3 .slick-dots li button:before {
  font-size: 10px;
  opacity: 0;
}
#slider3 .slick-dots li.slick-active button {
  background: #2B5FD5;
}
#slider3 .slick-dots li.slick-active button:before {
  color: #2B5FD5;
}
#slider3 .slick-prev {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: -90px;
  left: 36vw;
  background: url("../img/slide_prev.png") no-repeat;
  background-size: 100%;
  transition: all .3s;
}
@media screen and (max-width: 1366px) {
  #slider3 .slick-prev {
    left: 33vw;
  }
}
@media screen and (max-width: 1024px) {
  #slider3 .slick-prev {
    left: 200px;
  }
}
@media screen and (max-width: 768px) {
  #slider3 .slick-prev {
    left: 30px;
  }
}
#slider3 .slick-prev:before {
  content: "";
}
#slider3 .slick-prev:hover {
  opacity: .6;
}
#slider3 .slick-next {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: -90px;
  right: 36vw;
  background: url("../img/slide_next.png") no-repeat;
  background-size: 100%;
  transition: all .3s;
}
@media screen and (max-width: 1366px) {
  #slider3 .slick-next {
    right: 33vw;
  }
}
@media screen and (max-width: 1024px) {
  #slider3 .slick-next {
    right: 200px;
  }
}
@media screen and (max-width: 768px) {
  #slider3 .slick-next {
    right: 30px;
  }
}
#slider3 .slick-next:before {
  content: "";
}
#slider3 .slick-next:hover {
  opacity: .6;
}
#slider3 button.slick-prev, #slider3 button.slick-next {
  z-index: 100;
}
#slider3 .slick-arrow {
  z-index: 10;
}

.staff_interview {
  position: absolute;
  top: 90px;
  right: 40px;
  width: 40%;
  z-index: 1;
}

.highschool_voice_col {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .highschool_voice_col {
    display: block;
  }
}

.highschool_voice_col1 {
  width: 39.9%;
  padding-bottom: 78px;
}
@media screen and (max-width: 1366px) {
  .highschool_voice_col1 {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .highschool_voice_col1 {
    padding-bottom: 220px;
  }
}
@media screen and (max-width: 768px) {
  .highschool_voice_col1 {
    width: 100%;
    padding-bottom: 10px;
  }
}

.highschool_voice_col2 {
  width: 60.1%;
  padding: 45px 45px 0;
}
@media screen and (max-width: 1024px) {
  .highschool_voice_col2 {
    padding: 25px 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .highschool_voice_col2 {
    width: 100%;
    padding: 15px 15px 0;
  }
}
.highschool_voice_col2 p {
  font-size: 16px;
}
@media screen and (max-width: 1366px) {
  .highschool_voice_col2 p {
    font-size: 14px;
  }
}

.highschool_voice_txt1 {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 500;
  color: #2B5FD5;
}
@media screen and (max-width: 1024px) {
  .highschool_voice_txt1 {
    font-size: 20px;
  }
}

.highschool_voice_profile {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 60.1%;
  padding: 0 45px;
}
@media screen and (max-width: 1024px) {
  .highschool_voice_profile {
    bottom: 30px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .highschool_voice_profile {
    bottom: 20px;
    left: 0;
    margin-top: 10px;
    padding: 0 15px 0;
  }
}

.highschool_voice_txt2 {
  font-size: 16px;
}

.highschool_voice_txt3 {
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(38px, 3.2vw, 48px);
  font-weight: 600;
  color: #2B5FD5;
}
@media screen and (max-width: 1024px) {
  .highschool_voice_txt3 {
    font-size: 24px;
  }
}

.highschool_voice_txt4 {
  display: inline-block;
  margin-right: 15px;
  padding: 5px 15px;
  font-size: 16px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .highschool_voice_txt4 {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .highschool_voice_txt4 {
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}

#highschool4 {
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  #highschool4 .btn2 a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  #highschool4 .col2 {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 768px) {
  #highschool4 .col2 {
    width: 100%;
  }
}

.p4 {
  margin-bottom: 50px;
  font-size: 18px;
}

.img_shadow {
  filter: drop-shadow(7px 7px 5px rgba(181, 181, 181, 0.75));
}

#highschool5 {
  margin-bottom: 145px;
}
#highschool5 .inner {
  padding: 35px 0 65px;
  background: url("../img/bg2.png");
}
@media screen and (max-width: 768px) {
  #highschool5 .inner {
    padding: 35px 0 30px;
  }
}

.accordion {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.accordion > li {
  width: 100%;
  margin-bottom: 14px;
  background: #fff;
}

.button_1 {
  position: relative;
  width: 100%;
  padding: 40px 80px 40px 40px;
  text-align: left;
  cursor: pointer;
  border: none;
  font-size: 18px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .button_1 {
    padding: 20px 40px 20px 20px;
    font-size: 16px;
  }
}
.button_1:after {
  position: absolute;
  top: 40px;
  right: 45px;
  content: "＋";
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .button_1:after {
    top: 20px;
    right: 15px;
  }
}
.button_1.active {
  transition: .4s;
}
.button_1.active:after {
  content: "－";
  display: block;
  font-size: 20px;
}

.accordion_in {
  padding: 0 140px 40px 40px;
  font-size: 18px;
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .accordion_in {
    padding: 0 20px 20px 20px;
    font-size: 16px;
  }
}
.accordion_in p {
  margin-left: 1em;
  text-indent: -1em;
}

/* 環境を知る */
#environment1 {
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #environment1 {
    padding-bottom: 40px;
  }
}

.environment_list1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 895px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .environment_list1 {
    display: block;
  }
}
.environment_list1 li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 30px 10px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid #2B5FD5;
  filter: drop-shadow(7px 7px 5px #d7e8f9);
}
.environment_list1 li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .environment_list1 li {
    width: 100%;
    margin-right: 0;
  }
}

.environment_list_txt1 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
}

.environment_list_img1 {
  margin-bottom: 10px;
}

.count1 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 500;
  color: #2B5FD5;
}
.count1 .js-num {
  line-height: 1;
  font-size: clamp(60px, 6vw, 80px);
}

.count2 {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 500;
}
.count2 .js-num {
  line-height: 1;
  font-size: clamp(56px, 5.8vw, 68px);
  color: #2B5FD5;
}

.unit2 {
  font-size: clamp(28px, 2.6vw, 37px);
  color: #2B5FD5;
}

.count2_txt1 {
  font-size: clamp(24px, 2.2vw, 30px);
  color: #2B5FD5;
}

#environment2 {
  padding-bottom: 98px;
}
@media screen and (max-width: 768px) {
  #environment2 {
    padding-bottom: 50px;
  }
}

.mb45 {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .mb45 {
    margin-bottom: 30px;
  }
}

.dl1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .dl1 {
    display: block;
    margin: 0 auto 30px;
  }
}
.dl1 dt {
  width: 25%;
  margin-bottom: 22px;
  padding: 20px 20px 20px 40px;
  color: #2B5FD5;
  background: #F2F9FF;
}
@media screen and (max-width: 1024px) {
  .dl1 dt {
    width: 30%;
    padding: 20px 20px 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .dl1 dt {
    width: 100%;
    margin-bottom: 0;
    padding: 15px;
  }
}
.dl1 dd {
  width: 75%;
  margin-bottom: 22px;
  padding: 20px 50px 20px 0;
  background: #F2F9FF;
}
@media screen and (max-width: 1024px) {
  .dl1 dd {
    width: 70%;
    padding: 20px 30px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .dl1 dd {
    width: 100%;
    padding: 0 15px 15px;
  }
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .col3 {
    display: block;
    width: 100%;
    margin-bottom: 60px;
  }
}

.col3_1 {
  width: 48.8%;
  margin-right: 2.4%;
}
@media screen and (max-width: 768px) {
  .col3_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.col3_2 {
  position: relative;
  width: 48.8%;
}
@media screen and (max-width: 768px) {
  .col3_2 {
    width: 100%;
  }
}

#environment3 {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  #environment3 {
    padding-bottom: 70px;
  }
}

.box2 {
  padding: 70px 0 55px;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
}
@media screen and (max-width: 768px) {
  .box2 {
    padding: 30px 0;
  }
}

.list1 {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
.list1 li {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 30px 30px 130px;
  font-weight: 500;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .list1 li {
    padding: 15px 15px 20px 70px;
  }
}
.list1 li h4 {
  font-weight: 500;
}
.list1 li p {
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .list1 li p {
    font-size: 16px;
  }
}

.list1_no {
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  height: 77px;
  padding-top: 20px;
  line-height: 1;
  text-align: center;
  font-size: 30px;
  font-style: italic;
  color: #fff;
  background: url("../img/bg_num.png");
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .list1_no {
    width: 40px;
    height: 40px;
    padding-top: 7px;
    font-size: 22px;
  }
}

.list1_txt1 {
  margin-bottom: 15px;
  font-size: 26px;
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .list1_txt1 {
    font-size: 22px;
  }
}

/* 会社を知る */
#company1 {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #company1 {
    padding-bottom: 70px;
  }
}

.col4 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .col4 {
    display: block;
    width: 100%;
  }
}

.col4_1 {
  order: 2;
  width: 56.4%;
}
@media screen and (max-width: 1024px) {
  .col4_1 {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .col4_1 {
    margin-bottom: 30px;
  }
}

.col4_2 {
  order: 1;
  width: 39.8%;
  margin-right: 3.8%;
}
@media screen and (max-width: 1024px) {
  .col4_2 {
    width: 100%;
    margin-right: 0;
  }
}

.h3_3 {
  margin-bottom: 20px;
  font-size: clamp(24px, 2.2vw, 30px);
  color: #2B5FD5;
}

.p5 {
  margin-bottom: 30px;
  line-height: 2.5;
}

@media screen and (max-width: 1024px) {
  .company_img1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

#company2 {
  padding: 105px 0 120px;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
}
@media screen and (max-width: 768px) {
  #company2 {
    padding: 60px 0;
  }
}

.p6 {
  width: 96.6%;
  margin: 0 auto 30px;
  line-height: 2.5;
}

.col5 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .col5 {
    display: block;
    width: 100%;
  }
}

.col5_1 {
  width: 100%;
  margin-bottom: 30px;
}

.col5_2 {
  width: 65.7%;
  margin-right: 5.2%;
}
@media screen and (max-width: 768px) {
  .col5_2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col5_3 {
  width: 29.1%;
}
@media screen and (max-width: 768px) {
  .col5_3 {
    width: 100%;
  }
}

.col5_txt {
  margin-top: 15px;
}

#company2 .btn2 a {
  margin: 0 auto;
}

#company3 {
  padding: 120px 0 180px;
}
@media screen and (max-width: 768px) {
  #company3 {
    padding: 60px 0 70px;
  }
}

.table1 {
  width: 100%;
  margin-bottom: 75px;
}
.table1 th {
  width: 21.7%;
  padding: 20px;
  text-align: center;
  vertical-align: top;
  border-bottom: 2px solid #808080;
}
@media screen and (max-width: 768px) {
  .table1 th {
    width: 36%;
    padding: 15px;
  }
}
.table1 td {
  width: 78.3%;
  padding: 20px 20px 20px 50px;
  border-bottom: 1px solid #808080;
}
@media screen and (max-width: 768px) {
  .table1 td {
    width: 64%;
    padding: 15px;
  }
}

.map1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .map1 {
    margin-bottom: 40px;
  }
}

.col6 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .col6 {
    display: block;
  }
}

.col6_1 {
  width: 49%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .col6_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.col6_2 {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .col6_2 {
    width: 100%;
  }
}

.map2 {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .map2 {
    max-width: 1000px;
  }
}

/* 仕事を知る */
#works1 {
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  #works1 {
    padding: 0 0 50px;
  }
}

.works_list1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .works_list1 {
    display: block;
  }
}
.works_list1 li {
  position: relative;
  width: 45%;
  margin-right: 10%;
  margin-bottom: 200px;
}
.works_list1 li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .works_list1 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 100px;
  }
}
.works_list1 li a img {
  transition: all 1s;
}
.works_list1 li a:hover img {
  transform: scale(1.2, 1.2);
  transition: all 1s;
}

.works_list1_img {
  overflow: hidden;
}

.works_list1_txt {
  position: absolute;
  bottom: -65px;
  left: 4.5%;
  width: 91%;
  padding: 20px 40px 25px;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(43, 95, 213, 0.16));
}
@media screen and (max-width: 768px) {
  .works_list1_txt {
    padding: 15px;
  }
}

.woks_list1_txt1 {
  font-size: clamp(22px, 2.2vw, 30px);
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .woks_list1_txt1 {
    font-size: 22px;
  }
}

/* 仕事を知る・業種ページ */
.works_sec1 {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .works_sec1 {
    padding-bottom: 50px;
  }
}

.col7 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .col7 {
    display: block;
    margin-bottom: 40px;
  }
}

.col7_1 {
  width: 43.3%;
  margin-right: 4%;
}
@media screen and (max-width: 1024px) {
  .col7_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.col7_2 {
  width: 52.7%;
}
@media screen and (max-width: 1024px) {
  .col7_2 {
    width: 100%;
  }
}

.h3_4 {
  position: relative;
  margin-bottom: 35px;
  font-size: clamp(24px, 2.2vw, 30px);
  color: #2B5FD5;
}
.h3_4:after {
  position: absolute;
  bottom: -16px;
  left: 0;
  display: block;
  content: "";
  width: 67px;
  height: 2px;
  background: linear-gradient(90deg, #004ed5 0%, #00c5ff 100%);
}

.col8 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .col8 {
    display: block;
  }
}

.col8_1 {
  width: 48.5%;
  margin-right: 3%;
  padding: 45px 2.8% 20px;
  background: #FAFAFA;
}
@media screen and (max-width: 1024px) {
  .col8_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.col8_2 {
  width: 48.5%;
  padding: 45px 2.8% 20px;
  background: #FAFAFA;
}
@media screen and (max-width: 1024px) {
  .col8_2 {
    width: 100%;
  }
}

.ul1 {
  margin-bottom: 25px;
}
.ul1 li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
}
.ul1 li:before {
  position: absolute;
  top: 11px;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon_circle1.png") no-repeat;
  background-size: 16px 16px;
}

.ul1_txt1 {
  font-size: 18px;
  font-weight: 600;
}

.works_sec2 {
  padding: 100px 0 80px;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
}
@media screen and (max-width: 768px) {
  .works_sec2 {
    padding: 50px 0;
  }
}

.box3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 60px 140px 80px 110px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .box3 {
    display: block;
    padding: 20px;
  }
}

.box3_col1 {
  width: 57.8%;
  margin-right: 2%;
}
@media screen and (max-width: 768px) {
  .box3_col1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.box3_col2 {
  width: 40.2%;
}
@media screen and (max-width: 768px) {
  .box3_col2 {
    width: 100%;
  }
}

.dl2 {
  border-left: 1px solid #707070;
}
.dl2 dt {
  position: relative;
  padding: 20px 0 10px 50px;
  font-size: clamp(22px, 1.8vw, 26px);
  color: #2B5FD5;
}
@media screen and (max-width: 768px) {
  .dl2 dt {
    padding: 10px 0 10px 25px;
  }
}
.dl2 dt:before {
  position: absolute;
  top: 35px;
  left: -5px;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background: url("../img/icon_circle2.png") no-repeat;
  background-size: 9px 9px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .dl2 dt:before {
    top: 22px;
  }
}
.dl2 dd {
  padding: 0 0 40px 50px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .dl2 dd {
    padding: 0 0 20px 25px;
    font-size: 18px;
  }
}

.box3_img1 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .box3_img1 {
    margin-bottom: 30px;
  }
}

.box3_img2 {
  margin-bottom: 10px;
}

.works_sec3 {
  padding-bottom: 110px;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
}
@media screen and (max-width: 768px) {
  .works_sec3 {
    padding-bottom: 60px;
  }
}

.box4 {
  padding: 60px 70px 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .box4 {
    padding: 20px;
  }
}

.page_navi1 {
  padding: 120px 0 180px;
}
@media screen and (max-width: 768px) {
  .page_navi1 {
    padding: 60px 0 70px;
  }
}

.page_navi_col {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_navi_col {
    display: block;
  }
}

.page_navi_col1 {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .page_navi_col1 {
    width: 100%;
    margin-bottom: 10px;
  }
  .page_navi_col1 .btn2 a {
    margin: 0 auto;
  }
}

.page_navi_col2 {
  width: 32%;
  margin: 0 2%;
}
@media screen and (max-width: 768px) {
  .page_navi_col2 {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.page_navi_col2 .btn2 a {
  margin: 0 auto;
}

.page_navi_col3 {
  position: relative;
  width: 32%;
}
.page_navi_col3 .btn2 a {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page_navi_col3 {
    width: 100%;
  }
  .page_navi_col3 .btn2 a {
    position: static;
    margin: 0 auto;
  }
}

/* 人を知る */
#interview1 {
  padding: 50px 0 80px;
}
@media screen and (max-width: 768px) {
  #interview1 {
    padding: 0 0 40px;
  }
}

.interview_list1 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .interview_list1 {
    display: block;
  }
}
.interview_list1 li {
  position: relative;
  width: 43.9%;
  margin-right: 12.2%;
  margin-bottom: 100px;
}
.interview_list1 li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .interview_list1 li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.interview_list1 li a img {
  position: relative;
  transition: all 1s;
}
.interview_list1 li a:hover img {
  transform: scale(1.2, 1.2);
  transition: all 1s;
}

.interview_list1_img {
  position: relative;
  overflow: hidden;
}
.interview_list1_img:after {
  position: absolute;
  bottom: 0;
  left: 29px;
  display: block;
  content: "";
  width: 2px;
  height: 70px;
  background: #fff;
  z-index: 2;
}

.interview_list1_txt {
  position: relative;
  padding: 15px 15px 5px 13%;
}
@media screen and (max-width: 768px) {
  .interview_list1_txt {
    padding: 10px 10px 5px 13%;
  }
}
.interview_list1_txt:after {
  position: absolute;
  top: 0;
  left: 29px;
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(0deg, #00c5ff 0%, #004ed5 100%);
  z-index: 2;
}

.interview_list1_txt1 {
  font-size: clamp(18px, 2vw, 24px);
}
@media screen and (max-width: 768px) {
  .interview_list1_txt1 {
    font-size: 20px;
  }
}

.interview_list1_txt2 {
  display: inline-block;
  margin-left: 1.2em;
  font-size: clamp(18px, 2vw, 24px);
}
@media screen and (max-width: 768px) {
  .interview_list1_txt2 {
    font-size: 20px;
  }
}

.interview_list1_txt3 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .interview_list1_txt3 {
    font-size: 18px;
  }
}

.interview_sec1 {
  padding-bottom: 30px;
}

.interview_mv {
  position: relative;
  margin-bottom: 80px;
  padding-right: 35.3%;
}
@media screen and (max-width: 1024px) {
  .interview_mv {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

.interview_mv_txt {
  position: absolute;
  bottom: 45px;
  right: 0;
  width: 45.5%;
  padding: 60px 50px;
  background: url("../img/bg1.png");
  background-size: 6px 6px;
  filter: drop-shadow(0px 3px 6px rgba(43, 95, 213, 0.16));
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt {
    position: relative;
    top: -20px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
  }
}

.interview_mv_txt1 {
  margin-bottom: 15px;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  color: #2B5FD5;
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt1 {
    font-size: 22px;
  }
}

.interview_mv_txt2 {
  display: inline-block;
  margin-bottom: 10px;
  font-size: clamp(18px, 1.8vw, 24px);
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt2 {
    font-size: 18px;
  }
}

.interview_mv_txt3 {
  display: inline-block;
  margin: 0 0 10px 1.5em;
  font-size: clamp(18px, 1.8vw, 24px);
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt3 {
    font-size: 18px;
  }
}

.interview_mv_txt4 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.8vw, 24px);
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt4 {
    font-size: 18px;
  }
}

.interview_mv_txt5 {
  font-size: clamp(16px, 1.6vw, 20px);
}
@media screen and (max-width: 1024px) {
  .interview_mv_txt5 {
    font-size: 16px;
  }
}

.interview_sec1_1 {
  padding: 0 0 100px 20px;
}
@media screen and (max-width: 768px) {
  .interview_sec1_1 {
    padding: 0 0 50px 10px;
  }
}

.h3_5 {
  position: relative;
  margin-bottom: 30px;
  font-size: clamp(24px, 2.2vw, 30px);
  color: #2B5FD5;
}
.h3_5:after {
  position: absolute;
  bottom: -14px;
  left: 0;
  display: block;
  content: "";
  width: 67px;
  height: 2px;
  background: linear-gradient(90deg, #004ed5 0%, #00c5ff 100%);
}

.col9 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .col9 {
    display: block;
  }
}
.col9 p {
  padding-left: 10px;
}
.col9 p:not(:last-child) {
  margin-bottom: 20px;
}

.col9_1 {
  width: 58.7%;
  margin-right: 3%;
}
@media screen and (max-width: 1024px) {
  .col9_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col9_2 {
  width: 38.3%;
}
@media screen and (max-width: 1024px) {
  .col9_2 {
    width: 100%;
  }
}

.col9_3 {
  order: 2;
  width: 58.7%;
}
@media screen and (max-width: 1024px) {
  .col9_3 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.col9_4 {
  order: 1;
  width: 38.3%;
  margin-right: 3%;
}
@media screen and (max-width: 1024px) {
  .col9_4 {
    width: 100%;
    margin-right: 0;
  }
}

.mb90 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .mb90 {
    margin-bottom: 40px;
  }
}

.mb30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mb30 {
    margin-bottom: 25px;
  }
}

/* プロジェクトストーリー */
#projectstory1 {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  #projectstory1 {
    padding-bottom: 70px;
  }
}

.projectstory_mv {
  margin-bottom: 205px;
}
@media screen and (max-width: 768px) {
  .projectstory_mv {
    margin-bottom: 100px;
  }
}

.projectstory_mv_img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .projectstory_mv_img {
    margin: 0 auto 30px;
  }
}

.projectstory_mv_txt {
  margin-bottom: 110px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .projectstory_mv_txt {
    margin-bottom: 50px;
  }
}

.col10 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .col10 {
    display: block;
    padding-bottom: 10px;
  }
}

.col10_1 {
  position: relative;
  width: 45.1%;
}
@media screen and (max-width: 1024px) {
  .col10_1 {
    width: 100%;
    margin-bottom: 60px;
  }
}

.col10_2 {
  width: 9.8%;
  padding-top: 12%;
}
@media screen and (max-width: 1024px) {
  .col10_2 {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 45px;
  }
}

.col10_3 {
  position: relative;
  width: 45.1%;
}
@media screen and (max-width: 1024px) {
  .col10_3 {
    width: 100%;
    margin-bottom: 40px;
  }
}

.col10_txt {
  position: absolute;
  bottom: -85px;
  left: 4.3%;
  width: 91.4%;
  padding: 35px 6.5%;
  color: #2B5FD5;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(43, 95, 213, 0.16));
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .col10_txt {
    padding: 15px;
  }
}

.col10_txt1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  border-bottom: 1px solid #2B5FD5;
}
@media screen and (max-width: 1024px) {
  .col10_txt1 {
    display: block;
    font-size: 16px;
  }
}

.col10_txt1_1 {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .col10_txt1_1 {
    width: 100%;
  }
}

.col10_txt1_2 {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .col10_txt1_2 {
    width: 100%;
    text-align: left;
  }
}

.col10_txt2 {
  font-size: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .col10_txt2 {
    font-size: 24px;
  }
}

.col10_icon {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .col10_icon {
    width: 50px;
  }
}
.col10_icon img {
  width: 100%;
  height: auto;
}

.projectstory1_1 {
  padding-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .projectstory1_1 {
    padding-bottom: 70px;
  }
}

.kaiwa1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  .kaiwa1 {
    display: block;
  }
}

.kaiwa1_1 {
  width: calc(100% - 143px);
  margin-right: 13px;
}
@media screen and (max-width: 1024px) {
  .kaiwa1_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.kaiwa1_2 {
  width: 130px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kaiwa1_2 {
    width: 100%;
  }
}
.kaiwa1_2 p {
  padding-top: 5px;
  font-size: 12px;
  color: #2B5FD5;
}

.fukidashi2 {
  position: relative;
  display: inline-block;
  width: calc(100% - 28px);
  margin-right: 28px;
  padding: 45px 30px;
  border-radius: 20px;
  background: #EDF2FC;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .fukidashi2 {
    width: 100%;
    margin-right: 0;
    padding: 25px;
  }
}

.fukidashi2:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  border-style: solid;
  border-width: 15px 0 15px 30px;
  border-color: transparent transparent transparent #edf2fc;
  translate: 100% -50%;
}
@media screen and (max-width: 1024px) {
  .fukidashi2:after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    border-width: 30px 15px 0 15px;
    border-color: #edf2fc transparent transparent;
    translate: -50% 100%;
  }
}

.projectstory_img1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.projectstory1_2 {
  padding: 80px 0;
  background: #FCFCFC;
}
@media screen and (max-width: 1024px) {
  .projectstory1_2 {
    padding: 40px 0;
  }
}

.kaiwa2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.kaiwa2_1 {
  width: 153px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_1 {
    display: none;
  }
}

.kaiwa2_2 {
  width: calc(100% - 306px);
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_2 {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 0;
  }
}

.kaiwa2_3 {
  width: 153px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_3 {
    width: 100%;
  }
}
.kaiwa2_3 p {
  padding-top: 5px;
  font-size: 12px;
  color: #2B5FD5;
}

.kaiwa2_4 {
  width: 153px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_4 {
    order: 2;
    width: 100%;
  }
}
.kaiwa2_4 p {
  padding-top: 5px;
  font-size: 12px;
  color: #2B5FD5;
}

.kaiwa2_5 {
  width: calc(100% - 306px);
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_5 {
    order: 1;
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
}

.kaiwa2_6 {
  width: 153px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .kaiwa2_6 {
    display: none;
  }
}

.fukidashi3 {
  position: relative;
  display: inline-block;
  width: calc(100% - 28px);
  margin-left: 28px;
  padding: 45px 30px;
  border-radius: 20px;
  background: #EDF2FC;
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .fukidashi3 {
    width: 100%;
    margin-left: 0;
    padding: 25px;
  }
}

.fukidashi3:after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #edf2fc transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 1024px) {
  .fukidashi3:after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    border-width: 30px 15px 0 15px;
    border-color: #edf2fc transparent transparent;
    translate: -50% 100%;
  }
}

.projectstory1_3 {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .projectstory1_3 {
    padding: 40px 0;
  }
}

.projectstory1_4 {
  padding: 95px 0 100px;
  background: #FCFCFC;
}
@media screen and (max-width: 1024px) {
  .projectstory1_4 {
    padding: 50px 0;
  }
}

.col11 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: center;
  justify-content: center;
  width: 100%;
  max-width: 1306px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .col11 {
    display: block;
  }
}

.col11_1 {
  position: relative;
  width: 48.7%;
  margin-right: 2.6%;
}
@media screen and (max-width: 1024px) {
  .col11_1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.col11_2 {
  width: 48.7%;
}
@media screen and (max-width: 1024px) {
  .col11_2 {
    width: 100%;
  }
}

.projectstory1_5 {
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .projectstory1_5 {
    padding: 40px 0;
  }
}

/* 採用情報 */
#guideline1 {
  padding-bottom: 40px;
}

.p7 {
  margin: 0 0 70px 20px;
}
@media screen and (max-width: 1024px) {
  .p7 {
    margin: 0 0 35px 10px;
  }
}

.guideline_list1 li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 40px 70px 50px 100px;
  line-height: 1.5;
  background: #FAFAFA;
}
@media screen and (max-width: 1024px) {
  .guideline_list1 li {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
  }
}

.guideline_list1_col1 {
  width: 41%;
  margin-right: 2%;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .guideline_list1_col1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding-top: 0;
  }
}

.guideline_list1_col2 {
  width: 57%;
}
@media screen and (max-width: 1024px) {
  .guideline_list1_col2 {
    width: 100%;
  }
}

.guideline_cate1 {
  display: inline-block;
  width: 180px;
  height: 50px;
  padding-top: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #2B5FD5;
  border-radius: 25px;
}

.guideline_list1 .guideline_cate1 {
  margin-bottom: 25px;
}

.h3_6 {
  margin-bottom: 25px;
  font-size: clamp(24px, 2.2vw, 30px);
  color: #2B5FD5;
}

.mb15 {
  margin-bottom: 15px;
}

#recruit_banner {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  #recruit_banner {
    padding-bottom: 60px;
  }
}
#recruit_banner a img {
  transition: all .3s;
}
#recruit_banner a:hover img {
  opacity: .6;
}

#guideline2 {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  #guideline2 {
    margin-bottom: 80px;
  }
}
#guideline2 .inner {
  padding: 35px 0 65px;
  background: url("../img/bg2.png");
}
@media screen and (max-width: 768px) {
  #guideline2 .inner {
    padding: 35px 0 30px;
  }
}

/* 採用情報募集要項 */
#guideline_details1 {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  #guideline_details1 {
    padding-bottom: 80px;
  }
}
#guideline_details1 .guideline_cate1 {
  margin-bottom: 40px;
}
#guideline_details1 .btn2 a {
  margin: 0 auto;
}

.guideline_slider {
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .guideline_slider {
    padding-bottom: 60px;
  }
}

#slider4 .guideline_slide img {
  height: auto;
  opacity: .3;
  transform: scale(0.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
}
#slider4 .guideline_slide.slick-center img {
  opacity: 1;
  transform: scale(1);
}
#slider4 .slick-dotted.slick-slider {
  margin-bottom: 0;
}
#slider4 .slick-dots {
  bottom: -30px;
  left: 0;
  right: 0;
  width: auto;
}
#slider4 .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 5px;
}
#slider4 .slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
  opacity: 1;
}
#slider4 .slick-dots li.slick-active button:before {
  color: #333;
}
#slider4 .slick-prev {
  width: 46px;
  height: 46px;
  left: calc((100% - 1170px)/2);
  background: url("../img/slide_prev.png") no-repeat;
  background-size: 100%;
  transition: all .3s;
}
@media screen and (max-width: 1200px) {
  #slider4 .slick-prev {
    left: 10px;
  }
}
#slider4 .slick-prev:before {
  content: "";
}
#slider4 .slick-prev:hover {
  opacity: .6;
}
#slider4 .slick-next {
  width: 46px;
  height: 46px;
  right: calc((100% - 1170px)/2);
  background: url("../img/slide_next.png") no-repeat;
  background-size: 100%;
  transition: all .3s;
}
@media screen and (max-width: 1200px) {
  #slider4 .slick-next {
    right: 10px;
  }
}
#slider4 .slick-next:before {
  content: "";
}
#slider4 .slick-next:hover {
  opacity: .6;
}
#slider4 button.slick-prev, #slider4 button.slick-next {
  z-index: 100;
}
#slider4 .slick-arrow {
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  #slider4 .guideline_slide {
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  #slider4 .guideline_slide {
    max-width: 300px;
  }
}

.guideline_details1_1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .guideline_details1_1 {
    margin-bottom: 40px;
  }
}

.p8 {
  margin: 0 0 80px 20px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p8 {
    margin: 0 0 40px 10px;
  }
}

/* エントリーフォーム */
#entry1 {
  padding-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  #entry1 {
    padding-bottom: 100px;
  }
}

/* 個人情報保護方針 */
#privacy1 {
  padding: 40px 0 150px;
}
@media screen and (max-width: 768px) {
  #privacy1 {
    padding: 0 0 80px;
  }
}
#privacy1 .btn2 a {
  margin: 0 auto;
}

.p9 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p9 {
    margin-bottom: 30px;
  }
}

.dl3 {
  padding-bottom: 40px;
}
.dl3 dt {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .dl3 dt {
    font-size: 20px;
  }
}
.dl3 dt:before {
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon_circle1.png") no-repeat;
  background-size: 16px 16px;
}
@media screen and (max-width: 768px) {
  .dl3 dt:before {
    top: 8px;
  }
}
.dl3 dd {
  margin-bottom: 30px;
  font-size: 16px;
}

/* 404 */
#error1 {
  padding: 40px 0 150px;
}
@media screen and (max-width: 768px) {
  #error1 {
    padding: 0 0 80px;
  }
}
#error1 .btn2 a {
  margin: 0 auto;
}

.p10 {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p10 {
    margin-bottom: 40px;
  }
}
