@charset "UTF-8";
@import url(../css/sub.css);
@import url(../css/header.css);
:root {
  --main-bg-color: #27ae60;
  --shade2-bg-color: #27ae60;
  --window-padding: 50px;
  --vertical-window-padding: 100px;
  --font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-family2: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#top {
  background-color: #5273EC;
  margin-top: 80px;
}

.pd-tb {
  padding-top: var(--vertical-window-padding);
  padding-bottom: var(--vertical-window-padding);
}

.pd-b {
  padding-bottom: var(--vertical-window-padding);
}

.mg-b {
  margin-bottom: var(--vertical-window-padding);
}

.pd-lr {
  padding-left: var(--window-padding);
  padding-right: var(--window-padding);
}

.btn01 {
  background-color: var(--main-bg-color);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100vh;
  position: relative;
  border: solid #fff;
}

.btn01.center {
  margin: 0 auto;
}

.btn01::after {
  content: "";
  /* background: url(../img/arrow.png) no-repeat; */
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 25px;
  height: 25px;
}

.btn01.btn01noarrow::after {
  content: unset;
}

.btn02 {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100vh;
  position: relative;
  background-color: #fff;
  border: solid #000;
  color: #000;
}

.btn02::after {
  content: "";
  background: url(../img/arrow-black.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 25px;
  height: 25px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hv {
  transition: 0.5s ease;
}

.hv:hover {
  opacity: 0.7;
}

/* header-end */

.section_ttl {
  font-size: 45px;
  color: var(--main-bg-color);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.section_ttl.center {
  text-align: center;
}

.section_ttl span {
  font-size: 20px;
  color: #000;
}

.mv {
  height: 100%;
  min-height: 80vh;
  position: relative;
}

.mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: linear-gradient(90deg,#2BA5E1 0%, #5A18D4 100%);
  padding: 15px 10px 10px;
  font-size: 50px;
  z-index: 1;
}

.slider {
  height: 80vh;
  min-height: 80vh;
}

.slider .slick-list {
  height: 100%;
}

.slider .slick-track {
  height: 100%;
}

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

.slider .slide .mid_mv,
.slider .slide .small_mv {
  display: none;
}

.sp {
  display: none;
}

#page_top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: 0.5s;
}

#page_top a {
  background-color: #5273EC;
  width: 100%;
  height: 100%;
  display: flex;
  border: solid 2px #000;
  border-radius: 100vh;
  color: #fff;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
}

#page_top.active {
  opacity: 1;
  transition: 0.5s;
}

.ttl_box {
  margin-bottom: 40px;
}

.ttl_box img {
  width: 100%;
  max-width: 400px;
}

.ttl_box h2 {
  font-size: 40px;
}

#top .white_bg {
  background-color: #fff;
  color: #000;
}

/* sec01 */
.sec01 {
  padding: 60px 25px 40px;
  color: #fff;
  position: relative;
}

.sec01 h2 {
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 30px;
}

.sec01 p {
  font-size: 24px;
  line-height: 55px;
  margin-bottom: 50px;
}

.sec01::after {
  content: "";
  background: url(../img/slogan.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 5%;
  top: 0;
  width: 4%;
  height: 100%;
}
/* sec01 */

/* sec02 */
.sec02_wrap {
  border: solid 3px #2B4BC0;
  padding: 50px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.sec02_wrap .card {
  width: 48%;
}

.sec02_wrap .card img {
  width: 100%;
}
/* sec02 */

/* sec03 */
.sec03 {
  background: url(../img/sec03-bg.png);
  background-size: 100%;
  background-position: top;
}

.sec03 .ttl_box h2 {
  margin-top: -50px;
  font-size: 60px;
}

.sec03 .sec03_wrap .card {
  display: flex;
  background-color: #f6f6f6;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.sec03 .sec03_wrap .card::after {
  content: "";
  background-color: #2B4BC0;
  position: absolute;
  z-index: -1;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
}

.sec03 .sec03_wrap .card .img_box {
  width: 50%;
}

.sec03 .sec03_wrap .card .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec03 .sec03_wrap .card .txt_box {
  width: 50%;
  padding: 30px;
  position: relative;
  background: #f6f6f6;
}

.sec03 .sec03_wrap .card .txt_box h2 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 40px;
}

.sec03 .sec03_wrap .card .txt_box p {
  font-size: 20px;
  line-height: 33px;
}

.sec03 .sec03_wrap .card .txt_box a {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
/* sec03 */

/* footer */
.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: solid 1px #3333;
  background-color: #f6f6f6;
}

.footer .inner {
  display: flex;
  margin-bottom: 20px;
}

.footer_nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer_nav ul {
  width: 50%;
}

.footer_nav-sub ul:nth-child(1) h2 {
  color: transparent;
}

.footer_nav ul li {
  width: 100%;
  padding-bottom: 10px;
}

.footer_nav ul li p {
  font-size: 14px;
}

.footer_nav ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.footer_nav .footer_link-lined {
  border-bottom: solid 1px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-right: 30px;
}

.footer_nav ul h2 {
  font-size: 25px;
  margin-bottom: 20px;
}

.footer_logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: center;
  padding-top: 70px;
}

.footer_logo .logo {
  text-align: start;
  padding-left: 15%;
}

.footer_logo .logo img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
}

.footer_logo .lower_btn {
  width: 100%;
}

.footer_logo .lower_btn a {
  border: solid 1px;
  color: #000;
  display: flex;
  justify-content: center;
  padding: 20px 50px 20px 20px;
  max-width: 300px;
  background: url(../img/footer_icon.png) no-repeat;
  background-position: 94% center;
}

.copyright {
  width: 100%;
}
/* footer */

/* bnr start*/
.recruitbnr {
  background-color: #fff;
}

.recruitbnr ul {
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  border-left: solid 2px #000;
}

.recruitbnr ul dl {
  display: flex;
  border-bottom: solid 2px #000;
  color: #000;
}

.recruitbnr ul dl dt {
  width: 40%;
  padding: 40px 20px;
  border-right: solid 2px #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitbnr ul dl dd {
  width: 100%;
  padding: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.recruitbnr .ttl_box img {
  margin-left: -100px;
}

.recruitbnr .ttl_box h2 {
  margin-top: -20px;
}

.contactbnr {
  background-color: #5273EC;
  color: #fff;
}

.contactbnr h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.contactbnr .contact_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.contactbnr .contact_tel img {
  width: 60px;
}

.contactbnr .contact_mail {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  border-radius: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(244, 113, 155, 1) 0%, rgba(183, 27, 77, 1) 100%);
  display: flex;
  width: 100%;
  max-width: 300px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.accessbnr {
  background-color: #fff;
}

.accessbnr .ttl_box img {
  margin-left: -100px;
}

.accessbnr .ttl_box h2 {
  margin-top: -20px;
}

.accessbnr .map img {
  width: 100%;
}

.accessbnr .map {
  position: relative;
}

.accessbnr .map::after {
  content: 'MAP';
  position: absolute;
  top: 50%;
  left: 50%;
  color: #000;
  font-size: 30px;
  transform: translate(-50%, -50%);
  font-weight: 600;
}
/* bnr end*/

@media screen and (max-width: 1400px) {
  .slider {
    height: 70vh;
    min-height: 70vh;
  }

  .btn01 {
    height: 65px;
  }

  .inner {
    max-width: 1000px;
  }

  .mv {
    min-height: 70vh;
  }

  .mv h1 {
    font-size: 40px;
  }

  .footer_nav ul {
    width: 50%;
  }

  .footer_nav ul li a {
    font-size: 14px;
    line-height: 25px;
  }

  .sec01 {
    padding: 40px 25px 40px;
  }

  .sec01 h2 {
    font-size: 35px;
  }

  .sec01 p {
    font-size: 20px;
    line-height: 50px;
  }

  .sec03 .sec03_wrap .card .txt_box {
    padding: 50px 30px 70px;
  }

  .footer_nav ul li p {
    font-size: 12px;
  }
}

@media screen and (max-width: 1250px) {
  .mv h1 {
    font-size: 30px;
  }

  .accessbnr .ttl_box img {
    margin-left: 0;
  }

  .recruitbnr .ttl_box img {
    margin-left: 0;
  }

  .accessbnr .ttl_box h2 {
    margin-left: 20px;
  }

  .recruitbnr .ttl_box h2 {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1100px) {
  #top {
    margin-top: 80px;
  }

  .mv h1 {
    font-size: 20px;
    padding: 10px 20px 10px;
  }

  .footer_nav ul li a {
    font-size: 13px;
  }

  .contactbnr h2 {
    font-size: 30px;
  }

  .contactbnr .contact_tel img {
    width: 40px;
  }

  .contactbnr .contact_tel {
    font-size: 30px;
  }

  .contactbnr .contact_mail {
    font-size: 25px;
  }

  .sec03 .sec03_wrap .card .txt_box p {
    font-size: 18px;
  }

  .sec03 .sec03_wrap .card .txt_box p br {
    display: none;
  }

  .sec03 .sec03_wrap .card .txt_box p:nth-last-child(2) br {
    display: block;
  }

  .sec03 .sec03_wrap .card .img_box img {
    height: 100%;
    object-fit: cover;
  }

  .sec03 .sec03_wrap .card .txt_box {
    padding: 50px 30px 100px;
  }

  .sec03 .sec03_wrap .card .txt_box h2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .mv h1 {
    font-size: 16px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .ttl_box img {
    max-width: 300px;
  }

  .ttl_box h2 {
    font-size: 30px;
  }

  .sec01 h2 {
    font-size: 25px;
    line-height: 40px;
  }

  .sec01 p br {
    display: none;
  }

  .sec01::after {
    width: 10%;
  }

  .sec02_wrap .card {
    width: 100%;
  }

  .sec03 .sec03_wrap .card {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .sec03 .sec03_wrap .card .img_box {
    width: 100%;
  }

  .sec03 .sec03_wrap .card .txt_box {
    width: 100%;
    padding: 30px 30px 80px;
  }

  .sec03 .sec03_wrap .card .txt_box p br {
    display: none;
  }

  .sec03 .sec03_wrap .card .txt_box h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .sec03 .sec03_wrap .card .txt_box p {
    font-size: 16px;
  }

  .sec03 .sec03_wrap .card .txt_box a img {
    width: 80px;
  }

  .sec03 .ttl_box h2 {
    font-size: 40px;
  }

  .recruitbnr ul dl {
    flex-direction: column;
  }

  .recruitbnr ul dl dt {
    width: 100%;
    padding: 20px 20px;
    border-right: 0;
    border-bottom: solid 2px;
    background: #f3f3f3;
  }
}

@media screen and (max-width: 568px) {
  .mv {
    min-height: 90vh;
  }

  .slider {
    height: 90vh;
    min-height: 90vh;
  }

  .mv h1.pc {
    display: none !important;
  }

  .mv h1.sp {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    background: unset;
    padding: 0;
    align-items: center;
  }

  .mv h1.sp span {
    background: linear-gradient(90deg,#2BA5E1 0%, #5A18D4 100%);
    padding: 10px 20px;
    width: fit-content;
  }

  .slider .slide .pc {
    display: none;
  }

  .slider .slide .small_mv {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  #top {
    margin-top: 69px;
  }

  .mv h1 {
    width: 83%;
  }

  .sec01::after {
    width: 30%;
    opacity: 0.4;
  }

  .ttl_box h2 {
    font-size: 23px;
  }

  .ttl_box img {
    max-width: 200px;
  }

  .sec03 .ttl_box h2 {
    font-size: 25px;
    margin-top: -30px;
  }

  .sec03 .sec03_wrap .card::after {
    bottom: -10px;
    right: -10px;
  }

  .sec02_wrap {
    padding: 30px;
  }

  .sec01 p {
    font-size: 16px;
    line-height: 40px;
  }

  .footer_nav ul li p {
    display: none;
  }

  #page_top {
    bottom: 30px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .contactbnr h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contactbnr .contact_tel {
    font-size: 20px;
  }

  .contactbnr .contact_tel img {
    width: 30px;
  }

  .contactbnr .contact_mail {
    font-size: 20px;
  }

  .footer_logo .lower_btn a {
    font-size: 14px;
  }
}
