@charset "utf-8";

/* =====================================================
   Layout
===================================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

.h_menu,
#sp_global_nav {
  display: none;
}
.f_mont {
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  section {
    overflow: hidden;
  }
}

/* mv */
.mv {
  margin: 0 auto;
  padding: min(1.562vw, 30px);
  width: 100%;
  border-bottom: 1px solid #5f5f5f;
  box-sizing: border-box;
  position: relative;
}
.mv .mv_box {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: min(18.2291vw, 350px);
  z-index: 1;
}
.mv .mv_box .mv_copy {
  margin-bottom: min(1.04166vw, 20px);
  font-size: min(5.41666vw, 10.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.mv .mv_box .mv_copy span {
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: min(0.3125vw, 6px) #000;
  text-stroke: 1px #000;
  paint-order: stroke;
}
.mv .mv_box .mv_copy small {
  font-size: min(3.75vw, 7.2rem);
  font-weight: 500;
}
.mv .mv_box .mv_sub_copy {
  font-size: min(2vw, 3.9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}
.mv .mv_box .mv_sub_copy span {
  font-size: min(1.6666vw, 3.2rem);
  font-weight: 500;
}
.mv .pass01 {
  width: min(5.1vw, 98px);
  position: absolute;
  left: min(0.98958vw, 19px);
  top: min(8.125vw, 156px);
}
.mv .pass02 {
  width: min(3.541666vw, 68px);
  position: absolute;
  left: min(36.458vw, 700px);
  top: min(8.489vw, 163px);
}
.mv .pass03 {
  width: min(9.79166vw, 188px);
  position: absolute;
  right: min(15.9375vw, 306px);
  top: min(4.375vw, 84px);
}
.mv .pass04 {
  width: min(7.8125vw, 150px);
  position: absolute;
  left: min(15.1vw, 290px);
  bottom: min(8.854166vw, 170px);
}
.mv .pass05 {
  width: min(3.59375vw, 69px);
  position: absolute;
  left: min(38.54166vw, 740px);
  bottom: min(12.86458vw, 247px);
}
.mv .pass06 {
  width: min(6.822916vw, 131px);
  position: absolute;
  right: min(17.552vw, 337px);
  bottom: min(9.79166vw, 188px);
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 4.83vw 2.41545vw;
    border-bottom: none;
  }
  .mv .mv_box {
    margin: 0 auto;
    width: 100%;
    text-align: left;
    position: absolute;
    left: 3.3816vw;
    right: inherit;
    top: 31.5vw;
  }
  .mv .mv_box .mv_copy {
    margin-bottom: 2vw;
    font-size: 12.9vw;
    line-height: 1.1;
  }
  .mv .mv_box .mv_copy span {
    -webkit-text-stroke: 0.9vw #000;
    letter-spacing: normal;
  }
  .mv .mv_box .mv_copy small {
    font-size: 10.5vw;
  }
  .mv .mv_box .mv_sub_copy {
    font-size: 5.6763vw;
    line-height: 1.2;
    letter-spacing: normal;
  }
  .mv .mv_box .mv_sub_copy span {
    font-size: 4.5893vw;
  }
  .mv .pass01 {
    width: 9.42vw;
    left: -1vw;
    top: 11.9565vw;
  }
  .mv .pass02 {
    width: 8.3333vw;
    left: inherit;
    right: 28.8357vw;
    top: inherit;
    bottom: 22vw;
  }
  .mv .pass03 {
    width: 8.454vw;
    left: 0;
    top: inherit;
    bottom: 18vw;
  }
  .mv .pass04 {
    width: 11.352vw;
    position: absolute;
    top: 10vw;
    bottom: inherit;
    left: inherit;
    right: 0;
  }
  .mv .pass05,
  .mv .pass06 {
    display: none;
  }
}
/* image animation */
.mv .image-grid {
  position: relative;
  z-index: 0;
  perspective: 1000px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: min(9vw, 173px) min(1.458vw, 28px);
}
.image-grid img {
  width: 100%;
  background-color: #f3f3f3;
  transform-origin: center center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.image-grid img.flip {
  animation: flipOut 0.6s ease-out forwards;
}
.image-grid img.bounce {
  animation: flipInBounce 0.6s ease-out forwards;
}
@keyframes flipOut {
  0% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  70% {
    transform: rotateY(110deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipInBounce {
  0% {
    transform: rotateY(90deg) scaleX(0.6);
    opacity: 0;
  }
  50% {
    transform: rotateY(-12deg) scaleX(1.05);
    opacity: 1;
  }
  75% {
    transform: rotateY(4deg) scaleX(0.98);
  }
  100% {
    transform: rotateY(0deg) scaleX(1);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60vw 2.41545vw;
  }
  .image-grid img {
    width: 100%;
    background-color: #f3f3f3;
  }
}
/* 共通左エリア sec_label*/
.sec_label {
  display: flex;
  align-items: flex-end;
  width: 4.73958%;
  max-width: 91px;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  white-space: nowrap;
}
.sec_label .sec_title {
  padding: min(5.2vw, 100px) 0 0 min(1.5625vw, 30px);
  font-size: min(0.9375vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 0;
}
.fixedArea {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.fixedTitle {
  position: absolute;
}
.fixedTitle.is-fixed {
  position: fixed;
  padding-top: min(7.29166vw, 140px) !important;
}
@media screen and (max-width: 768px) {
  .sec_label {
    display: block;
    width: 100%;
    max-width: inherit;
    writing-mode: horizontal-tb;
  }
  .sec_label .sec_title {
    padding: 7.2463vw 3.6231vw 0;
    font-size: 3.6231vw;
    text-align: left;
  }
  .fixedTitle {
    position: static;
  }
  .fixedTitle.is-fixed {
    position: static;
    padding-top: 0;
  }
}

/*全体共通*/
.message,
.about,
.works,
.data,
.oneday,
.staff,
.culture,
.corporation,
.facility,
.faq {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}
/* MESSAGE */
.message {
}
.message .message_inner {
  display: flex;
  flex-wrap: wrap;
  padding: min(4.4vw, 86px) 0 min(6.771vw, 130px) min(2.08333vw, 40px);
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
  align-items: center;
}
.message .message_inner .inner_text {
  width: 53.296%;
  max-width: 954px;
}
.message .message_inner .inner_text p {
  font-size: min(1.354166vw, 2.6rem);
  font-weight: 900;
  line-height: 1.76923;
}

.message .message_inner .inner_text .txt01 {
  position: relative;
  padding: 0 0 4rem 3rem;
  font-size: min(1.146vw, 2.2rem);
  font-weight: 700;
  background: url(../../images/src/top/fukidashi.svg) no-repeat left bottom;
}
.message .message_inner .inner_text .txt01::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.9rem;
  background: url(../../images/src/top/moya.svg) no-repeat left center / 100%;
}
.message .message_inner .inner_text .txt01 span {
  font-size: min(1.458vw, 2.8rem);
  font-weight: 700;
}

.message .message_inner .inner_text .txt02 {
  font-size: min(2.031vw, 3.9rem);
}
.message .message_inner .inner_text .txt02 .maru {
  color: #F95300;
}
.message .message_inner .inner_text .txt02 .under {
  font-size: min(2.188vw, 4.2rem);
}
.message .message_inner .inner_text p + p {
  margin-top: min(2.2395vw, 43px);
}
.message .message_inner .inner_img {
  width: 39.4413%;
  max-width: 706px;
  position: relative;
}
.message .message_inner .inner_img img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.message .message_inner .inner_img .pass01 {
  width: min(6.667vw, 128px);
  position: absolute;
  right: -1.2vw;
  top: -2.5vw;
  z-index: 3;
}
.message .message_inner .inner_img .pass02 {
  width: min(7.86458vw, 151px);
  position: absolute;
  left: -5.9375vw;
  bottom: -1vw;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .message .message_inner {
    display: flex;
    padding: 1.5vw 3.6231vw 10vw;
    width: 100%;
    border-left: none;
  }
  .message .message_inner .inner_text {
    width: 100%;
    max-width: inherit;
  }
  .message .message_inner .inner_text p {
    font-size: 4.34782vw;
    line-height: 1.6;
  }
  .message .message_inner .inner_text p + p {
    margin-top: 3vw;
  }
  .message .message_inner .inner_img {
    padding: 8.4541vw 0 0;
    width: 100%;
    max-width: inherit;
  }
  .message .message_inner .inner_img .pass01 {
    width: 18.357vw;
    right: -1vw;
    top: 0;
  }
  .message .message_inner .inner_img .pass02 {
    width: 18.115vw;
    left: -3vw;
    bottom: -6vw;
    z-index: 3;
  }

  .message .message_inner .inner_text .txt01 {
    position: relative;
    padding: 0 0 5.14vw 14.493vw;
    font-size: 3.865vw;
    background-image: url(../../images/src/top/sp/fukidashi.svg);
    background-size: 100%;
  }
  .message .message_inner .inner_text .txt01::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.9rem;
    background: url(../../images/src/top/moya.svg) no-repeat left center / 100%;
  }
  .message .message_inner .inner_text .txt01 span {
    font-size: 4.589vw;
    font-weight: 700;
  }
  
  .message .message_inner .inner_text .txt02 {
    font-size: 5.072vw;
  }
  .message .message_inner .inner_text .txt02 .under {
    line-height: 1.8;
    font-size: 6.643vw;
  }



}
/* マスク　アニメ */
.anime_wrap {
  position: relative;
  overflow: hidden;
}
.anime_wrap p {
  position: absolute;
  top: 0;
  left: 0;
}
/* マスク　色指定*/
.pattern::before,
.pattern2::before,
.pattern3::before,
.pattern3_1::before,
.pattern3_2::before,
.pattern3_3::before,
.pattern3_4::before,
.pattern4::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 1px;
  top: 0;
  z-index: 2;
  transition: 0.5s;
}
.pattern::before {
  background: #f27537;
}
.pattern2::before {
  background: #004097;
}
.pattern3::before {
  background: #ee6f78;
}
.pattern3_1::before {
  background: #ee6f78;
  border-radius: 150px;
}
.pattern3_2::before {
  background: #7dac00;
  border-radius: 150px;
}
.pattern3_3::before {
  background: #f27537;
  border-radius: 150px;
}
.pattern3_4::before {
  background: #004097;
  border-radius: 150px;
}
.pattern4::before {
  background: #7dac00;
}
.pattern.show::before,
.pattern2.show::before,
.pattern3.show::before,
.pattern3_1.show::before,
.pattern3_2.show::before,
.pattern3_3.show::before,
.pattern3_4.show::before,
.pattern4.show::before {
  transform: translateX(100%);
}
.pattern img,
.pattern2 img,
.pattern3 img,
.pattern3_1 img,
.pattern3_2 img,
.pattern3_3 img,
.pattern3_4 img,
.pattern4 img {
  opacity: 0;
  transition: 0.5s;
}
.pattern.show img,
.pattern2.show img,
.pattern3.show img,
.pattern3_1.show img,
.pattern3_2.show img,
.pattern3_3.show img,
.pattern3_4.show img,
.pattern4.show img {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .pattern3_1::before,
  .pattern3_2::before,
  .pattern3_3::before,
  .pattern3_4::before {
    background-color: rgba(255, 255, 255, 0);
  }
  .pattern3_1 img,
  .pattern3_2 img,
  .pattern3_3 img,
  .pattern3_4 img {
    opacity: 1;
  }
}
/* CV */
.cv {
  padding: min(4.427vw, 85px) 0 min(3.6458vw, 70px);
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #252525;
}
.cv .main_copy {
  margin-bottom: min(3.6458vw, 70px);
  font-size: min(6.77vw, 13rem);
  font-weight: 900;
  line-height: 1.1923;
}
.cv .main_copy span {
  font-size: min(5.52vw, 10.6rem);
  font-weight: 900;
}
.cv .sub_copy {
  font-size: min(3.54166vw, 6.8rem);
  font-weight: 900;
  line-height: 1;
}
.cv .sub_copy span {
  font-size: min(3.02vw, 5.8rem);
  font-weight: 500;
}
.cv .cv_box_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
}
.cv .cv_box_list .btn_bosyu {
  display: flex;
  justify-content: space-between;
  width: 41.2%;
  max-width: 793px;
}
.cv .cv_box_list .btn_bosyu a {
  display: flex;
  align-items: center;
  padding: 0 0 0 min(4.16666vw, 8rem);
  width: 100%;
  height: min(13.02vw, 250px);
  color: #fff;
  font-size: min(2.29166vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  background-image: url(../../images/src/top/icon_link.svg);
  background-repeat: no-repeat;
  background-position: right min(4.16666vw, 80px) center;
  background-size: min(3.02vw, 58px) auto;
  box-sizing: border-box;
}
.cv .cv_box_list .btn_bosyu a:hover {
  background-color: #ee6f78;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.cv .cv_box_list .btn_entry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.8%;
  max-width: 361px;
  height: min(13.02vw, 250px);
  color: #fff;
  font-size: min(2.29166vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  border-right: 1px solid #5e5e5e;
  border-left: 2px solid #fff;
  box-sizing: border-box;
}
/* .cv .cv_box_list .btn_entry:hover {
  color: #060606;
  background-color: #fff;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
} */
.cv .cv_box_list .btn_entry span {
  display: block;
  width: 73.5537%;
  max-width: 267px;
  height: min(5.416vw, 104px);
  background-image: url(../../images/src/top/img_entry.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
/* .cv .cv_box_list .btn_entry:hover span {
  background-image: url(../../images/src/top/img_entry_on.svg);
} */
.cv .cv_box_list .box_oubo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 40%;
  max-width: 768px;
}
.cv .cv_box_list .box_oubo .btn_line {
  width: 100%;
  border-bottom: 1px solid #5e5e5e;
}
.cv .cv_box_list .box_oubo .btn_line a {
  display: flex;
  align-items: center;
  padding: 0 min(3.59375vw, 69px);
  width: 100%;
  height: min(6.51vw, 125px);
  background-image: url(../../images/src/top/icon_link.svg);
  background-repeat: no-repeat;
  background-position: right min(4.16666vw, 80px) center;
  background-size: min(3.02vw, 58px) auto;
  box-sizing: border-box;
}
.cv .cv_box_list .box_oubo .btn_line a span {
  display: inline-block;
  padding: 0 0 0 min(3.9vw, 75px);
  font-size: min(1.979166vw, 3.8rem);
  font-weight: 700;
  background-image: url(../../images/src/top/icon_line.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(2.76vw, 53px) auto;
}
.cv .cv_box_list .box_oubo .btn_line a:hover {
  background-color: #06c755;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.cv .cv_box_list .box_oubo .btn_mail {
  width: 100%;
}
.cv .cv_box_list .box_oubo .btn_mail a {
  display: flex;
  align-items: center;
  padding: 0 min(3.59375vw, 69px);
  width: 100%;
  height: min(6.51vw, 125px);
  background-image: url(../../images/src/top/icon_link.svg);
  background-repeat: no-repeat;
  background-position: right min(4.16666vw, 80px) center;
  background-size: min(3.02vw, 58px) auto;
  box-sizing: border-box;
}
.cv .cv_box_list .box_oubo .btn_mail a span {
  display: inline-block;
  padding: 0 0 0 min(3.9vw, 75px);
  font-size: min(1.979166vw, 3.8rem);
  font-weight: 700;
  background-image: url(../../images/src/top/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(2.5vw, 48px) auto;
}
.cv .cv_box_list .box_oubo .btn_mail a:hover {
  background-color: #f27537;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
@media screen and (max-width: 768px) {
  .cv {
    padding: 9.6618vw 0;
    text-align: left;
  }
  .cv .main_copy {
    margin: 0 0 8vw 3.6231vw;
    font-size: 11.1111vw;
    line-height: 1.1923;
  }
  .cv .main_copy span {
    font-size: 9.057vw;
  }
  .cv .sub_copy {
    margin: 0 0 0 3.6231vw;
    font-size: 7.48792vw;
    line-height: 1.45;
  }
  .cv .sub_copy span {
    font-size: 6.4vw;
  }
  .cv .cv_box_list {
    border-bottom: 1px solid #5e5e5e;
    border-top: 1px solid #5e5e5e;
  }
  .cv .cv_box_list .btn_bosyu {
    width: 100%;
    max-width: inherit;
    border-bottom: 1px solid #5e5e5e;
  }
  .cv .cv_box_list .btn_bosyu a {
    padding: 0 0 0 3.6231vw;
    height: 21.739vw;
    font-size: 5.341vw;
    background-position: right 3.6231vw center;
    background-size: 9.42vw auto;
  }
  .cv .cv_box_list .btn_bosyu a:hover {
    background-color: #ee6f78;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
  }
  .cv .cv_box_list .btn_entry {
    width: 35.3864%;
    max-width: inherit;
    height: 43.84vw;
    font-size: 6vw;
    border-left: none;
  }
  .cv .cv_box_list .btn_entry span {
    margin-bottom: 1vw;
    width: 81.6%;
    max-width: inherit;
    height: 19.6859vw;
    background-image: url(../../images/src/top/sp/img_entry.svg);
  }
  /* .cv .cv_box_list .btn_entry:hover span {
    background-image: url(../../images/src/top/sp/img_entry_on.svg);
  } */
  .cv .cv_box_list .box_oubo {
    width: 64.6136%;
    max-width: inherit;
  }
  .cv .cv_box_list .box_oubo .btn_line a {
    padding: 0 3.6231vw;
    height: 21.98vw;
    background-position: right 4.227vw center;
    background-size: 9.42vw auto;
  }
  .cv .cv_box_list .box_oubo .btn_line a span {
    padding: 2vw 0 2vw 11vw;
    font-size: 5vw;
    background-size: 9.42vw auto;
  }
  .cv .cv_box_list .box_oubo .btn_mail a {
    padding: 0 3.6231vw;
    height: 21.98vw;
    background-position: right 4.227vw center;
    background-size: 9.42vw auto;
  }
  .cv .cv_box_list .box_oubo .btn_mail a span {
    padding: 2vw 0 2vw 11vw;
    font-size: 5vw;
    letter-spacing: -0.05em;
    background-size: 8vw auto;
  }
  .cv .cv_box_list .box_oubo .btn_mail a:hover {
    background-color: #f27537;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
  }
}

.site-header {
  width: 100%;
  border-bottom: 1px solid #5f5f5f;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  position: fixed;
  visibility: hidden;
}
.site-header.fixed {
  position: fixed;
  visibility: visible;
}
.site-header .site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 96.875%;
  max-width: 1860px;
  height: min(6.09375vw, 117px);
}
.site-header .site-header__inner .site-logo {
  width: 19.9462%;
  max-width: 371px;
}
.site-header .site-header__inner .site-recruit {
  margin-left: min(1.6666vw, 32px);
  margin-right: auto;
  width: 17.2%;
  max-width: min(16.6666vw, 320px);
  font-size: min(1.145833vw, 2.2rem);
  font-weight: 900;
}
.site-header .site-header__inner .site-recruit span {
  display: block;
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: 4px #000;
  text-stroke: 1px #000;
  paint-order: stroke;
}
.site-header .site-header__inner .header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: min(1.71875vw, 33px);
  width: 35.483%;
  max-width: 660px;
  list-style-type: none;
}
.site-header .site-header__inner .header_menu li {
  width: 30.303%;
  max-width: 200px;
}
.site-header .site-header__inner .header_menu li:first-of-type {
  width: 35.7575%;
  max-width: 236px;
}
.hamburger {
  width: min(2.76vw, 53px);
  cursor: pointer;
}
#sp_global_nav {
  display: none;
}
#sp_global_nav.active {
  display: block;
}
.globalMenuSp {
  width: 47.8645%;
  max-width: 919px;
  background-color: #252525;
  box-sizing: border-box;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100000;
}
.globalMenuSp .navi_header {
  display: flex;
  justify-content: flex-end;
  padding: min(1.5625vw, 30px);
  width: 100%;
  box-sizing: border-box;
}
.globalMenuSp .navi_header .btn_close {
  width: min(3.54166vw, 68px);
  z-index: 1001;
  cursor: pointer;
}
.globalMenuSp ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 4.83vw 4.83vw;
  width: 100%;
  list-style-type: none;
  box-sizing: border-box;
}
.globalMenuSp ul li {
  margin-bottom: 30px;
  width: 57%;
}
.globalMenuSp ul li:nth-of-type(2n) {
  width: 43%;
}
.globalMenuSp ul li a {
  display: block;
  padding: 0 0 0 min(3.54166vw, 68px);
  color: #fff;
  width: 100%;
  font-size: min(1.354166vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  background-image: url(../../images/src/common/sp/icon_footer_menu_hg.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(2.96875vw, 57px) auto;
}
.globalMenuSp ul li a span {
  display: block;
  font-size: min(0.9375vw, 18px);
  font-weight: 700;
}
.globalMenuSp ul li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .site-header__area {
    height: 20vw;
  }
  .site-header .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92.7536%;
    max-width: inherit;
    height: 20vw;
  }
  .site-header .site-header__inner .site-logo {
    width: 54.1666%;
    max-width: inherit;
  }
  .site-header .site-header__inner .site-recruit,
  .site-header .site-header__inner .header_menu {
    display: none;
  }
  .hamburger {
    width: 7.6vw;
  }
  .globalMenuSp {
    padding: 4.83vw 0 8.4541vw;
    width: 100%;
    max-width: inherit;
    background-color: #252525;
    position: fixed;
    left: 0;
    right: inherit;
    top: 0;
    z-index: 10;
  }
  .globalMenuSp .navi_header {
    display: flex;
    justify-content: flex-end;
    padding: 3.6231vw;
    width: 100%;
    box-sizing: border-box;
  }
  .globalMenuSp .navi_header .btn_close {
    width: 8.21256vw;
    z-index: 1001;
  }
  .globalMenuSp ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4.83vw;
    width: 100%;
    list-style-type: none;
    box-sizing: border-box;
  }
  .globalMenuSp ul li {
    margin-bottom: 0;
    width: 60%;
  }
  .globalMenuSp ul li:nth-of-type(2n) {
    width: 40%;
  }
  .globalMenuSp ul li a {
    display: flex;
    align-items: center;
    padding: 2vw 0 2vw 9vw;
    color: #fff;
    width: 100%;
    min-height: 14vw;
    font-size: 3.8647vw;
    font-weight: 700;
    line-height: 1.3;
    background-image: url(../../images/src/common/sp/icon_footer_menu_hg.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 6.884vw auto;
  }
  .globalMenuSp ul li a span {
    display: none;
  }
  .globalMenuSp ul li a:hover {
    opacity: 0.6;
  }
}
/* 共通 */
.common_title {
  font-size: min(3.854166vw, 7.4rem);
  font-weight: 900;
  line-height: 1;
}
.common_lead {
  width: 42.4242%;
  max-width: 742px;
  font-size: min(1.04166vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .common_title {
    font-size: 8.9371vw;
    list-style: 1.243;
  }
  .common_lead {
    display: block;
    margin-top: 3.6231vw;
    width: 100%;
    max-width: inherit;
    font-size: 3.6231vw;
    line-height: 1.6;
  }
}

/* about */
.about {
  border-bottom: 1px solid #5f5f5f;
}
.about .about_inner {
  padding: 0 0 min(4.32291vw, 83px);
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.about .about_inner .about_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(2.08333vw, 40px);
  width: 100%;
  height: min(13.177vw, 253px);
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.about .about_inner .about_header .common_title {
}
.about .about_inner .about_header .common_lead {
}
.about .about_inner .sub_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(2.08333vw, 40px);
  height: min(3.9vw, 75px);
  font-size: min(1.77vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  border-bottom: 1px solid #000;
}
.about .about_inner .sub_title02 {
  font-size: min(1.77vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.about .about_inner .point_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style-type: none;
  border-bottom: 1px solid #000;
}
.about .about_inner .point_list li {
  padding: min(2.0833vw, 40px);
  width: 33.333%;
  box-sizing: border-box;
}
.about .about_inner .point_list li:nth-of-type(2) {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
.about .about_inner .point_list li .list_img {
  width: 100%;
  position: relative;
}
.about .about_inner .point_list li .list_img p {
  width: 100%;
  /* overflow: hidden; */
}
/* .about .about_inner .point_list li .list_img p img {
  height: auto;
  transition: transform 0.6s ease;
}
.about .about_inner .point_list li .list_img p:hover img {
  transform: scale(1.2);
} */
.about .about_inner .point_list li .list_img span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(7.92166vw, 140px);
  height: min(1.5625vw, 30px);
  color: #004097;
  font-size: min(0.729166vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background-color: #fff;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
}
.about .about_inner .point_list li .list_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(6vw, 116px);
  font-size: min(1.354166vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2846;
  text-align: center;
}
.about .about_inner .point_list li .list_text {
  font-size: min(0.9375vw, 1.8rem);
  line-height: 1.777;
}
.about .about_inner .capabi_box {
  padding: min(3.385416vw, 65px) 0 0;
  width: 100%;
}
.about .about_inner .capabi_box .capabi_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(1.25vw, 24px) 0;
  margin: min(2.395833vw, 46px) auto 0;
  width: 95.68%;
  max-width: 1750px;
  list-style-type: none;
}
.about .about_inner .capabi_box .capabi_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19%;
  height: min(3.22916vw, 62px);
  max-width: 334px;
  color: #fff;
  font-size: min(1.04166vw, 2rem);
  font-weight: 700;
  line-height: 1;
  background-color: #004097;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .about .about_inner {
    padding: 0 0 7.72946vw;
    width: 100%;
    border-left: none;
  }
  .about .about_inner .about_header {
    padding: 0 3.6231vw 4.83vw;
    width: 100%;
    height: auto;
  }
  .about .about_inner .about_header .common_title {
  }
  .about .about_inner .about_header .common_lead {
  }
  .about .about_inner .sub_title {
    justify-content: center;
    padding: 4.227vw 0;
    height: auto;
    font-size: 5.314vw;
  }
  .about .about_inner .sub_title02 {
    font-size: 5.314vw;
    line-height: 1.3636;
  }
  .about .about_inner .point_list li {
    padding: 3.6231vw;
    width: 100%;
  }
  .about .about_inner .point_list li:nth-of-type(2) {
    border-right: none;
    border-left: none;
  }
  .about .about_inner .point_list li:last-of-type {
    padding-bottom: 8vw;
  }
  .about .about_inner .point_list li .list_img span {
    width: 28.14vw;
    height: 6vw;
    color: #004097;
    font-size: 2.8985vw;
  }
  .about .about_inner .point_list li .list_tit {
    padding: 3.6231vw 0 2vw;
    height: auto;
    font-size: 4.34782vw;
    line-height: 1.333;
  }
  .about .about_inner .point_list li .list_text {
    font-size: 3.3814vw;
    line-height: 1.5;
  }
  .about .about_inner .capabi_box {
    padding: 7.2463vw 0 0;
  }
  .about .about_inner .capabi_box .capabi_list {
    gap: 3vw 0;
    margin: 3.6231vw auto 0;
    width: 92.753%;
    max-width: inherit;
  }
  .about .about_inner .capabi_box .capabi_list li {
    width: 48.6979%;
    height: 9.6618vw;
    max-width: 334px;
    font-size: 3.6231vw;
  }
}
/* data */
.data {
  background: url(../../images/src/top/bg_data.webp) repeat;
  border-bottom: 1px solid #5f5f5f;
}
.data .data_inner {
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.data .data_inner .data_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(2.08333vw, 40px);
  width: 100%;
  height: min(13.177vw, 253px);
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.data .data_inner .data_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(1.5625vw, 30px) 0;
  padding: min(2.08333vw, 40px);
  width: 100%;
  box-sizing: border-box;
}
.data .data_inner .data_box .item {
  padding: min(1.5625vw, 30px) 0;
  width: 23.6737%;
  max-width: 415px;
  background-color: #fff;
}
.data .data_inner .data_box .item.typ01,
.data .data_inner .data_box .item.typ02,
.data .data_inner .data_box .item.typ03 {
  width: 49%;
  max-width: 860px;
}
.data .data_inner .data_box .item.typ04 {
  width: 28.5225%;
  max-width: 500px;
}
.data .data_inner .data_box .item.typ05 {
  width: 19%;
  max-width: 334px;
}
.data .data_inner .data_box .item .item_tit {
  margin-bottom: min(1.5625vw, 30px);
  font-size: min(1.145833vw, 2.2rem);
  font-weight: 900;
  line-height: 1.59;
  text-align: center;
}
.data .data_inner .data_box .item dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: min(5.833vw, 112px);
}
.data .data_inner .data_box .item dl dt {
  width: 50%;
}
.data .data_inner .data_box .item dl dt img {
  margin: 0 auto;
}
.data .data_inner .data_box .item:nth-of-type(7) dl dt img {
  width: 35.6625%;
  max-width: 74px;
}
.data .data_inner .data_box .item:nth-of-type(8) dl dt img {
  width: 39.13%;
  max-width: 81px;
}
.data .data_inner .data_box .item:nth-of-type(9) dl dt img {
  width: 40%;
  max-width: 83px;
}
.data .data_inner .data_box .item:nth-of-type(10) dl dt img {
  width: 31.884%;
  max-width: 66px;
}
.data .data_inner .data_box .item:nth-of-type(11) dl dt img {
  width: 38.6473%;
  max-width: 80px;
}
.data .data_inner .data_box .item:nth-of-type(12) dl dt img {
  width: 95.652%;
  max-width: 198px;
}
.data .data_inner .data_box .item:nth-of-type(12) .item_note {
  font-size: min(0.8333vw, 1.6rem);
  text-align: center;
}
.data .data_inner .data_box .item:nth-of-type(13) dl dt img {
  width: 69%;
  max-width: 143px;
}
.data .data_inner .data_box .item:nth-of-type(14) dl dt img {
  width: 86.956%;
  max-width: 180px;
}
.data .data_inner .data_box .item:nth-of-type(15) dl dt img {
  width: 66.1835%;
  max-width: 137px;
}
.data .data_inner .data_box .item:nth-of-type(16) dl dt img {
  width: 66.1835%;
  max-width: 137px;
}
.data .data_inner .data_box .item dl dd {
  width: 50%;
  font-size: min(1.5625vw, 3rem);
  font-weight: 700;
}
.data .data_inner .data_box .item dl dd span.number {
  color: #fff;
  font-size: min(3.4375vw, 6.6rem);
  font-weight: 500;
  -webkit-text-stroke: 4px #000;
  text-stroke: 4px #000;
  paint-order: stroke;
  letter-spacing: 0.06em;
}
/* type別 typ01 */
.data .data_inner .data_box .item.typ01 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 88.6%;
  height: min(7.7vw, 148px);
}
.data .data_inner .data_box .item.typ01 dl dt {
  width: 59.58%;
  max-width: 454px;
}
.data .data_inner .data_box .item.typ01 dl dt .item_tit {
  margin-bottom: 0;
  text-align: left;
}
.data .data_inner .data_box .item.typ01 dl dd {
  width: 32.8%;
  max-width: 250px;
}
.data .data_inner .data_box .item.typ01 dl dd span {
  margin-left: min(0.52vw, 10px);
}
/* type別 typ02 */
.data .data_inner .data_box .item.typ02 {
}
.data .data_inner .data_box .item.typ02 dl {
  margin: 0 auto;
  width: 89.1228%;
}
.data .data_inner .data_box .item.typ02 dl dt {
  width: 60.3674%;
  max-width: 460px;
  border-right: 1px solid #7f7f7f;
}
.data .data_inner .data_box .item.typ02 dl dt .age_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(3.28125vw, 63px) 0 0;
  width: 100%;
  box-sizing: border-box;
}
.data .data_inner .data_box .item.typ02 dl dt .age_group .group01 {
  width: 16.8695%;
  max-width: 73px;
  font-size: min(1.25vw, 2.4rem);
  font-weight: 900;
}
.data .data_inner .data_box .item.typ02 dl dt .age_group .group02 {
  display: inline-block;
  width: 30.4347%;
  max-width: 140px;
  font-size: min(1.4583vw, 2.8rem);
  font-weight: 700;
  text-align: right;
}
.data .data_inner .data_box .item.typ02 dl dt .age_group .group03 {
  width: 32.1739%;
  max-width: 148px;
}
.data
  .data_inner
  .data_box
  .item.typ02
  dl
  dt
  .age_group:nth-of-type(3)
  .group03
  img {
  margin: 0;
  width: 58.7837%;
  max-width: 87px;
  text-align: left !important;
}
.data .data_inner .data_box .item.typ02 dl dd {
  width: 31.496%;
  max-width: 240px;
}
.data .data_inner .data_box .item.typ02 dl dd .number_box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(15.52vw, 298px);
}
.data .data_inner .data_box .item.typ02 dl dd .number_box p {
  display: flex;
  justify-content: center;
  align-items: last baseline;
}
/* type別 typ03 */
.data .data_inner .data_box .item.typ03 dl {
  margin: 0 auto;
  width: 88.6%;
}
.data .data_inner .data_box .item.typ03 dl dt {
  width: 17.8477%;
  max-width: 136px;
  text-align: center;
  position: relative;
}
.data .data_inner .data_box .item.typ03 dl dt .item_data {
  font-size: min(1.5625vw, 3rem);
  font-weight: 700;
}
.data .data_inner .data_box .item.typ03 dl dt .data_img {
  width: 100%;
  max-width: 139px;
  position: absolute;
  left: min(7.5vw, 144px);
  top: min(1.666vw, 32px);
  z-index: 2;
}
.data .data_inner .data_box span.number {
  color: #fff;
  font-size: min(3.4375vw, 6.6rem);
  font-weight: 500;
  -webkit-text-stroke: 4px #000;
  text-stroke: 4px #000;
  paint-order: stroke;
  letter-spacing: 0.06em;
}
.data .data_inner .data_box .item.typ03 dl dd {
  width: 64%;
  max-width: 488px;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  list-style-type: none;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30.6122%;
  max-width: 150px;
  height: min(10.72916vw, 206px);
  text-align: center;
  background-color: #fdebe3;
  position: relative;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li .item_tit {
  margin-bottom: min(0.52vw, 10px) !important;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li .img_plus {
  width: 18.666%;
  max-width: 28px;
  position: absolute;
  left: min(7.5vw, 144px);
  top: 45%;
  z-index: 2;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li span.number {
  font-size: min(2.91666vw, 5.6rem);
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li:nth-of-type(2) {
  background-color: #ecf3db;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li:nth-of-type(3) {
  background-color: #dbe4f0;
}
.data .data_inner .data_box .item.typ03 dl dd .riyou_list li .item_tit {
  margin-bottom: 0;
}
/* type別 typ04 */
.data .data_inner .data_box .item.typ04 {
  font-size: min(1.5625vw, 3rem);
  font-weight: 700;
  text-align: center;
}
.data .data_inner .data_box .item.typ04 .item_img {
  margin: 0 auto min(1.3vw, 25px);
  width: 62.8%;
  max-width: 314px;
}
.data .data_inner .data_box .item.typ04 span {
  font-weight: 500;
}
/* type別 typ05 */
.data .data_inner .data_box .item.typ05 {
  font-size: min(1.5625vw, 3rem);
  font-weight: 700;
  text-align: center;
}
.data .data_inner .data_box .item.typ05 .item_img {
  margin: 0 auto;
  width: 68.5628%;
  max-width: 229px;
}
.data .data_inner .data_box .data_note {
  display: inline-block;
  margin-left: auto;
  margin-top: -10px;
  font-size: min(0.9375vw, 1.8rem);
  text-align: right;
}
@media screen and (max-width: 768px) {
  .data {
    background: url(../../images/src/top/sp/bg_data.webp) repeat;
  }
  .data .data_inner {
    padding: 0 0 7.72946vw;
    width: 100%;
    border-left: none;
  }
  .data .data_inner .data_header {
    padding: 0 3.6231vw 4.83vw;
    width: 100%;
    height: auto;
    border: none;
  }
  .data .data_inner .data_box {
    gap: 2.41545vw 0;
    padding: 3.6231vw;
  }
  .data .data_inner .data_box .item {
    padding: 4.83vw 0;
    width: 48.697%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ01,
  .data .data_inner .data_box .item.typ02,
  .data .data_inner .data_box .item.typ03 {
    width: 100%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ04 {
    width: 48.697%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ05 {
    width: 48.697%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item .item_tit {
    margin-bottom: min(1.5625vw, 30px);
    font-size: 3.86473vw;
  }
  .data .data_inner .data_box .item dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: inherit;
  }
  .data .data_inner .data_box .item dl dt {
    width: 40%;
  }
  .data .data_inner .data_box .item dl dt img {
    margin: 0 auto;
  }
  .data .data_inner .data_box .item:nth-of-type(7) dl dt img {
    width: 8.937vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(8) dl dt img {
    width: 9.7826vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(9) dl dt img {
    width: 10vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(10) dl dt img {
    width: 7.971vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(11) dl dt img {
    width: 9.6618vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(12) dl {
    background: url(../../images/src/top/img_data12.svg) no-repeat left 1vw
      center;
    background-size: 60% auto;
  }
  .data .data_inner .data_box .item:nth-of-type(12) dl dt img {
    width: 9.6618vw;
    max-width: inherit;
    display: none;
  }
  .data .data_inner .data_box .item:nth-of-type(12) .item_note {
    font-size: 2.8985vw;
  }
  .data .data_inner .data_box .item:nth-of-type(13) dl dt img {
    margin: -4vw 0 0 -2vw;
    width: 18vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(14) dl {
    background: url(../../images/src/top/img_data14.svg) no-repeat left 1vw
      top -2vw;
    background-size: 48% auto;
  }
  .data .data_inner .data_box .item:nth-of-type(14) dl dt img {
    width: 86.956%;
    max-width: inherit;
    display: none;
  }
  .data .data_inner .data_box .item:nth-of-type(15) dl dt {
    width: 50%;
  }
  .data .data_inner .data_box .item:nth-of-type(15) dl dt img {
    width: 16.5458vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(15) dl dd {
    width: 50%;
  }
  .data .data_inner .data_box .item:nth-of-type(16) dl dt {
    width: 50%;
  }
  .data .data_inner .data_box .item:nth-of-type(16) dl dt img {
    width: 16.5458vw;
    max-width: inherit;
  }
  .data .data_inner .data_box .item:nth-of-type(16) dl dd {
    width: 50%;
  }
  .data .data_inner .data_box .item dl dd {
    width: 60%;
    font-size: 4.83vw;
  }
  .data .data_inner .data_box .item dl dd span.number {
    font-size: 10.628vw;
    -webkit-text-stroke: 4px #000;
    text-stroke: 1px #000;
  }
  /* type別 typ01 */
  .data .data_inner .data_box .item.typ01 dl {
    width: 88.6%;
    height: auto;
  }
  .data .data_inner .data_box .item.typ01 dl dt {
    width: 56%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ01 dl dt .item_tit {
    margin-bottom: 0;
    text-align: left;
  }
  .data .data_inner .data_box .item.typ01 dl dd {
    width: 44%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ01 dl dd span {
    margin-left: min(0.52vw, 10px);
  }
  /* type別 typ02 */

  .data .data_inner .data_box .item.typ02 dl dt {
    width: 62%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ02 dl dt .age_group {
    padding: 0 5.4347vw 0 0;
  }
  .data .data_inner .data_box .item.typ02 dl dt .age_group .group01 {
    width: 22%;
    max-width: inherit;
    font-size: 4.1vw;
  }
  .data .data_inner .data_box .item.typ02 dl dt .age_group .group02 {
    width: 42%;
    font-size: 4.5893vw;
  }
  .data .data_inner .data_box .item.typ02 dl dt .age_group .group03 {
    width: 31.1739%;
    max-width: inherit;
  }
  /* type別 typ03 */
  .data .data_inner .data_box .item.typ03 .item_tit.sp {
    display: inline-block;
    text-align: center;
    position: relative;
  }
  .data .data_inner .data_box .item.typ03 .item_tit.sp .data_img01 {
    width: 10.38647vw;
    position: absolute;
    left: 18.1159vw;
    top: -2vw;
  }
  .data .data_inner .data_box .item.typ03 .item_tit.sp .data_img02 {
    width: 7.72946vw;
    position: absolute;
    right: 19vw;
    top: -2vw;
  }
  .data .data_inner .data_box .item.typ03 dl {
    margin: 0 auto;
    width: 88.6%;
  }
  .data .data_inner .data_box .item.typ03 dl dt {
    width: 25%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ03 dl dt .item_data {
    font-size: 4.83vw;
  }
  .data .data_inner .data_box .item.typ03 dl dt .data_img {
    display: none;
  }
  .data .data_inner .data_box span.number {
    font-size: 10.628vw;
  }
  .data .data_inner .data_box .item.typ03 dl dd {
    width: 73%;
    max-width: inherit;
  }
  .data .data_inner .data_box .item.typ03 dl dd .riyou_list li {
    width: 32%;
    max-width: inherit;
    height: 25vw;
    font-size: 4.34782vw;
  }
  .data .data_inner .data_box .item.typ03 dl dd .riyou_list li .img_plus {
    max-width: inherit;
    left: 18vw;
    top: 45%;
  }
  .data .data_inner .data_box .item.typ03 dl dd .riyou_list li .item_tit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.3816vw;
    line-height: 1.2;
    height: 7vw;
  }
  .data .data_inner .data_box .item.typ03 dl dd .riyou_list li span.number {
    font-size: 7.72946vw;
  }
  /* type別 typ04 */
  .data .data_inner .data_box .item.typ04 {
    font-size: 3.8647vw;
    font-weight: 700;
    text-align: center;
  }
  .data .data_inner .data_box .item.typ04 .item_img {
    margin: 4vw auto 1vw;
    width: 84.759%;
    max-width: inherit;
  }
  /* type別 typ05 */
  .data .data_inner .data_box .item.typ05 {
    font-size: 3.8647vw;
  }
  .data .data_inner .data_box .item.typ05 .item_img {
    margin: 0 auto;
    width: 61.4973%;
    max-width: inherit;
  }
  .data .data_inner .data_box .data_note {
    margin-top: 0;
    font-size: 3.38164vw;
  }
}
/* works */
.works {
  border-bottom: 1px solid #5f5f5f;
}
.works .works_inner {
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.works .works_inner .works_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 min(2.08333vw, 40px);
  width: 100%;
  height: min(13.177vw, 253px);
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.works .works_inner .works_header .common_lead {
  width: 49.2%;
  max-width: 900px;
}
.works .works_inner dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(2.083333vw, 40px);
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #5f5f5f;
}
.works .works_inner dl:last-of-type {
  border-bottom: none;
}
.works .works_inner dl dt {
  width: 33.2189%;
  max-width: 580px;
}
.works .works_inner dl dt p {
  width: 100%;
  overflow: hidden;
}
/* .works .works_inner dl dt p img {
  height: auto;
  transition: transform 0.6s ease;
}
.works .works_inner dl dt p:hover img {
  transform: scale(1.2);
} */
.works .works_inner dl dd {
  width: 63.4648%;
  max-width: 1110px;
}
.works .works_inner dl dd .works_tit {
  display: flex;
  align-items: center;
  margin-bottom: min(1.82291vw, 35px);
  font-size: min(1.979166vw, 3.8rem);
  font-weight: 900;
}
.works .works_inner dl dd .works_tit span {
  display: inline-block;
  margin-right: min(1.5625vw, 30px);
  width: 100%;
  max-width: 75px;
}
.works .works_inner dl:nth-of-type(2) dd .works_tit span,
.works .works_inner dl:nth-of-type(3) dd .works_tit span {
  margin-right: min(0.677vw, 13px);
  max-width: 92px;
}
.works .works_inner dl dd .works_text {
  font-size: min(0.9375vw, 1.8rem);
  line-height: 1.888;
}
@media screen and (max-width: 768px) {
  .works .works_inner {
    padding: 0 0 7.72946vw;
    width: 100%;
    border-left: none;
  }
  .works .works_inner .works_header {
    padding: 0 3.6231vw 4.83vw;
    width: 100%;
    height: auto;
    border: none;
  }
  .works .works_inner .works_header .common_lead {
    width: 100%;
    max-width: inherit;
  }
  .works .works_inner dl {
    padding: 3.6231vw;
    display: block;
    border-bottom: none;
  }
  .works .works_inner dl:last-of-type {
    border-bottom: none;
  }
  .works .works_inner dl dt {
    margin-bottom: 4.227vw;
    width: 100%;
    max-width: inherit;
  }
  .works .works_inner dl dd {
    width: 100%;
    max-width: inherit;
  }
  .works .works_inner dl dd .works_tit {
    margin-bottom: 2vw;
    font-size: 5.7971vw;
  }
  .works .works_inner dl:nth-of-type(3) dd .works_tit {
    font-size: 5.6vw;
  }
  .works .works_inner dl dd .works_tit span {
    display: inline-block;
    margin-right: 4.227vw;
    width: 8.8164vw;
    max-width: inherit;
  }
  .works .works_inner dl:nth-of-type(2) dd .works_tit span,
  .works .works_inner dl:nth-of-type(3) dd .works_tit span {
    margin-right: 2vw;
    width: 11.111vw;
    max-width: 92px;
  }
  .works .works_inner dl dd .works_text {
    font-size: 3.3816vw;
    line-height: 1.7;
  }
}
/* oneday */
.oneday {
  background: url(../../images/src/top/bg_data.webp) repeat;
  border-bottom: 1px solid #5f5f5f;
}
.oneday .oneday_inner {
  padding: min(5.2vw, 100px) min(2.6vw, 50px) min(3.333vw, 64px);
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.oneday .oneday_inner .common_title {
  margin-bottom: min(3.6458vw, 70px);
  position: relative;
}
.oneday .oneday_inner .common_title span {
  width: min(5vw, 96px);
  position: absolute;
  left: -1.25vw;
  top: -2.91666vw;
}
.oneday .oneday_inner .oneday_work {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 93.81145%;
  max-width: 1622px;
  background: url(../../images/src/top/line_oneday.svg) no-repeat center
    2.1578vw;
  background-size: 100% auto;
}
.oneday .oneday_inner .oneday_work .item {
  width: 9.51911%;
  max-width: 154px;
  text-align: center;
}
.oneday .oneday_inner .oneday_work .item:first-of-type {
  width: 7.15166%;
  max-width: 116px;
}
.oneday .oneday_inner .oneday_work .item:nth-of-type(2) {
  margin-right: min(1.10974vw, 18px);
}
.oneday .oneday_inner .oneday_work .item:nth-of-type(7) {
  margin-left: auto;
  margin-right: min(1.97287vw, 32px);
}
.oneday .oneday_inner .oneday_work .item:nth-of-type(8) {
  width: 5.71171%;
  max-width: 83px;
}
.oneday .oneday_inner .oneday_work .img_time {
  margin: 0 auto;
  width: min(4.27vw, 82px);
  max-width: 100%;
  position: relative;
}
.oneday .oneday_inner .oneday_work .text_time {
  font-size: min(1.4583vw, 2.8rem);
  font-weight: 700;
}
.oneday .oneday_inner .oneday_work .text_oneday {
  font-size: min(1.041666vw, 2rem);
  font-weight: 700;
}
.oneday .oneday_inner .oneday_work .item:first-of-type {
  text-align: left;
}
.oneday .oneday_inner .oneday_work .item:first-of-type .img_time {
  margin: 0;
}
.oneday .oneday_inner .oneday_work .img_time .ill01 {
  width: 76.78%;
  position: absolute;
  left: -2vw;
  bottom: 0;
}
.oneday .oneday_inner .oneday_work .img_time .ill02 {
  width: 60.9756%;
  position: absolute;
  right: -1.1458vw;
  bottom: -0.677vw;
}
.oneday .oneday_inner .oneday_work .img_time .ill03 {
  width: 113.4146%;
  position: absolute;
  right: -3.125vw;
  top: -1.45833vw;
}
.oneday .oneday_inner .oneday_work .img_time .ill04 {
  width: 209.756%;
  position: absolute;
  right: -17.2626vw;
  top: -1.84956vw;
}
.oneday .oneday_inner .oneday_work .img_time .ill05 {
  width: 165.853%;
  position: absolute;
  left: -5vw;
  top: 0;
}
.oneday .oneday_inner .oneday_work .img_time .ill06 {
  width: 56%;
  position: absolute;
  right: -2.28113vw;
  top: -1.233vw;
}
.oneday .oneday_inner .oneday_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 0 0;
  width: 88.5%;
  max-width: 1619px;
}
.oneday .oneday_inner .oneday_box .box {
  padding: min(3.64583vw, 70px) 0 0;
  width: 19.313%;
  max-width: 298px;
  background: url(../../images/src/top/arrow_oneday.svg) no-repeat center top;
  background-size: 10.0671% auto;
}
.oneday .oneday_inner .oneday_box .box:nth-of-type(2) {
  margin-left: 36px;
}
.oneday .oneday_inner .oneday_box .box .box_img {
  width: 100%;
  border: 4px solid #000;
}
.oneday .oneday_inner .oneday_box .box .box_img {
  width: 100%;
  overflow: hidden;
}
/* .oneday .oneday_inner .oneday_box .box .box_img img {
  height: auto;
  transition: transform 0.6s ease;
}
.oneday .oneday_inner .oneday_box .box .box_img:hover img {
  transform: scale(1.2);
} */
.oneday .oneday_inner .oneday_box .box .box_text {
  padding: min(0.52vw, 10px) 0 0;
  font-size: min(0.8333vw, 1.6rem);
  font-weight: 500;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .oneday {
    background: url(../../images/src/top/sp/bg_data.webp) repeat;
  }
  .oneday .oneday_inner {
    padding: 0 0 9.6618vw;
    width: 100%;
    border-left: none;
  }
  .oneday .oneday_inner .common_title {
    margin-bottom: 3.6231vw;
    margin-left: 3.6234vw;
    position: relative;
  }
  .oneday .oneday_inner .common_title span {
    display: none;
  }
  .oneday .oneday_inner .sp_inner {
    padding: 6vw 0 0 3vw;
    width: 100%;
    box-sizing: border-box;
    overflow: scroll;
  }
  .oneday .oneday_inner .oneday_work {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 8vw 0 0;
    width: 288vw;
    max-width: inherit;
    background: url(../../images/src/top/line_oneday.svg) no-repeat left 22%;
    background-size: 100% auto;
  }
  .oneday .oneday_inner .oneday_work .item {
    width: 26.57vw;
    text-align: center;
  }
  .oneday .oneday_inner .oneday_work .item:first-of-type {
    margin-left: 4vw;
    width: 22vw;
    max-width: inherit;
  }
  .oneday .oneday_inner .oneday_work .item:nth-of-type(2) {
    margin-right: 12vw;
  }
  .oneday .oneday_inner .oneday_work .item:nth-of-type(7) {
    margin-left: 62vw;
    margin-right: 0;
  }
  .oneday .oneday_inner .oneday_work .item:nth-of-type(8) {
    width: 5.71171%;
    max-width: 83px;
  }
  .oneday .oneday_inner .oneday_work .img_time {
    width: 15.2173vw;
  }
  .oneday .oneday_inner .oneday_work .img_time img {
    width: 100%;
  }
  .oneday .oneday_inner .oneday_work .text_time {
    font-size: 5.1932vw;
  }
  .oneday .oneday_inner .oneday_work .text_oneday {
    font-size: 3.6231vw;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill01 {
    width: 76.78%;
    left: -7vw;
    bottom: 0;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill02 {
    width: 60.9756%;
    right: -4vw;
    bottom: -3vw;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill03 {
    width: 113.4146%;
    right: -11vw;
    top: -6vw;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill04 {
    width: 209.756%;
    right: -50vw;
    top: -3vw;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill05 {
    width: 165.853%;
    left: -18vw;
  }
  .oneday .oneday_inner .oneday_work .img_time .ill06 {
    width: 56%;
    position: absolute;
    right: -8vw;
    top: -4vw;
  }
  .oneday .oneday_inner .oneday_box {
    padding: 10px 0 6vw 10vw;
    width: 285vw;
    max-width: inherit;
  }
  .oneday .oneday_inner .oneday_box .box {
    padding: 7.7294vw 0 0;
    width: 21%;
    max-width: inherit;
    background: url(../../images/src/top/arrow_oneday.svg) no-repeat center top;
    background-size: 10% auto;
  }
  .oneday .oneday_inner .oneday_box .box:nth-of-type(2) {
    margin-left: 36vw;
  }
  .oneday .oneday_inner .oneday_box .box .box_img {
    margin-bottom: 3vw;
  }
  .oneday .oneday_inner .oneday_box .box .box_text {
    padding: min(0.52vw, 10px) 0 0;
    font-size: 3.38164vw;
    font-weight: 500;
    line-height: 1.625;
  }
}

/* staff */
.staff {
}
.staff .staff_inner {
  padding: min(3.64583vw, 70px) 0 0;
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
}
.staff .staff_inner .staff_box {
  margin: auto;
  padding: 0;
  width: 95.6284%;
  box-sizing: border-box;
}
.staff .staff_inner .staff_box .common_title {
  margin-bottom: min(2.6vw, 50px);
}
.staff .staff_inner .staff_box .staff_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(2.5vw, 48px) 0;
  padding: 0 0 min(4.1666vw, 80px);
  width: 100%;
}
.staff .staff_inner .staff_box .staff_list li {
  display: flex;
  justify-content: flex-end;
  width: 48.8%;
  max-width: 854px;
  position: relative;
}
.staff .staff_inner .staff_box .staff_list li .staff_img {
  width: 48.36%;
  max-width: 413px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.staff .staff_inner .staff_box .staff_list li .staff_text {
  padding: min(1.04166vw, 20px) min(1.5625vw, 30px);
  width: 59.7189%;
  max-width: 510px;
  min-height: min(23.9583vw, 460px);
  border: 2px solid #000;
  border-radius: min(1.04166vw, 20px);
  background-color: #fff;
  position: relative;
}
.staff .staff_inner .staff_box .staff_list li .staff_text span.arrow {
  width: min(1.4vw, 27px);
  position: absolute;
  left: -1.4vw;
  top: 8.3333vw;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text01 {
  margin-bottom: min(1.04166vw, 20px);
  padding: 0 0 min(1.04166vw, 20px);
  font-size: min(0.9375vw, 1.8rem);
  line-height: 1.666;
  border-bottom: 1px solid #000;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text02 {
  margin-bottom: min(0.78125vw, 15px);
  font-size: min(1.25vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text02 small {
  margin-left: min(0.72916vw, 14px);
  font-size: min(0.8333vw, 1.6rem);
  font-weight: 700;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text03 {
  margin-bottom: min(0.78125vw, 15px);
  font-size: min(0.8333vw, 1.6rem);
  line-height: 1.625;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text04 {
  padding: min(1.04166vw, 20px);
  font-size: min(0.8333vw, 1.6rem);
  line-height: 1.625;
  background-color: #f3f3f3;
}
.staff .staff_inner .staff_box .staff_list li .staff_text .text04 span {
  font-weight: 700;
}
.staff .staff_inner .staff_slider {
  width: 100%;
  position: relative;
}
.staff .staff_inner .staff_slider .swiper-wrapper {
  padding: min(0.52vw, 10px) 0 min(3.64583vw, 70px);
  transition-timing-function: linear;
}
.staff .staff_inner .staff_slider .swiper-slide {
  position: relative;
}
.staff .staff_inner .staff_slider .swiper-slide img {
  z-index: 0;
}
.staff .staff_inner .staff_slider .swiper-slide span {
  position: absolute;
  z-index: 10;
}
.staff .staff_inner .staff_slider .swiper-slide span.pass01 {
  width: min(2.96875vw, 57px);
  right: -0.41666vw;
  top: -0.41666vw;
}
.staff .staff_inner .staff_slider .swiper-slide span.pass02 {
  width: min(5.625vw, 108px);
  left: -3.48958vw;
  bottom: 0;
}
.staff .staff_inner .staff_slider .swiper-slide span.pass03 {
  width: min(4.53125vw, 87px);
  left: -2.8125vw;
  top: 3.28125vw;
}
.staff .staff_inner .staff_slider .swiper-slide span.pass04 {
  width: min(2.6vw, 50px);
  left: 1.14583vw;
  bottom: 1.04166vw;
}
.staff .staff_inner .staff_slider .copy {
  width: min(18vw, 346px);
  position: absolute;
  left: min(22.91666vw, 440px);
  top: -1vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .staff .staff_inner {
    padding: 1.8115vw 0 10vw;
    width: 100%;
    border-left: none;
  }
  .staff .staff_inner .common_title {
    margin: 0 0 4.227vw 3.6231vw;
    line-height: 1.24;
  }
  .staff_slider_sp {
    padding: 0 0 18vw;
    width: 100%;
  }
  .staff .staff_inner .staff_img {
    width: 100%;
  }
  .staff .staff_inner .staff_text {
    margin-top: -7.43478vw;
    padding: 4.83vw 3.6231vw;
    width: 100%;
    min-height: min(23.9583vw, 460px);
    border: 2px solid #000;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
  }
  .staff .staff_inner .staff_text span.arrow {
    margin: 0 auto;
    width: 3.9855vw;
    position: absolute;
    left: 0;
    right: 0;
    top: -3.2855vw;
  }
  .staff .staff_inner .staff_text .text01 {
    margin-bottom: 2.41545vw;
    padding: 0 0 2.41545vw;
    font-size: 3.38164vw;
    line-height: 1.666;
    border-bottom: 1px solid #000;
  }
  .staff .staff_inner .staff_text .text02 {
    margin-bottom: 2vw;
    font-size: 4.34782vw;
    font-weight: 700;
    line-height: 1;
  }
  .staff .staff_inner .staff_text .text02 small {
    margin-left: 2.415vw;
    font-size: 3.14vw;
    font-weight: 700;
  }
  .staff .staff_inner .staff_text .text03 {
    margin-bottom: 2vw;
    font-size: 3.14vw;
    line-height: 1.625;
  }
  .staff .staff_inner .staff_text .text04 {
    padding: 3.6231vw;
    font-size: 3.14vw;
    line-height: 1.625;
    background-color: #f3f3f3;
  }
  .staff .staff_inner .staff_text .text04 span {
    font-weight: 700;
  }
  .swiper4 .swiper-custom-prev::after,
  .swiper4 .swiper-custom-next::after {
    content: "";
    margin: auto;
    width: 9.42vw;
    height: 9.42vw;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 0;
  }
  .swiper4 .swiper-custom-prev::after {
    left: 0;
    background-image: url(../../images/src/top/slide/arrow_prev.svg);
  }
  .swiper4 .swiper-custom-next::after {
    right: 0;
    background-image: url(../../images/src/top/slide/arrow_next.svg);
  }

  .staff .staff_inner .staff_slider {
    width: 100%;
    position: relative;
  }
  .staff .staff_inner .staff_slider .copy {
    margin: 0 auto;
    width: 66.425vw;
    position: absolute;
    left: 0;
    right: 0;
    top: -9.9vw;
  }
  .staff .staff_inner .staff_slider .swiper-slide span.pass05 {
    width: 13vw;
    left: -12vw;
    top: 0;
  }
  .staff .staff_inner .staff_slider .swiper-slide span.pass06 {
    width: 10.8695vw;
    left: -10vw;
    bottom: 3vw;
  }
  .staff .staff_inner .staff_slider .swiper-slide span.pass07 {
    width: 22.1vw;
    left: -15vw;
    top: -4vw;
  }
  .staff .staff_inner .staff_slider .swiper-slide span.pass08 {
    width: 16.666vw;
    left: -12vw;
    bottom: -1vw;
  }
  .staff .staff_inner .staff_slider .swiper-slide span.pass09 {
    width: 8.69565vw;
    left: -12vw;
    top: 0;
  }
}

/* interview */
.interview {
  padding: min(5.8333vw, 112px) 0 min(5.1vw, 98px);
  width: 100%;
  background-color: #f1d252;
}
.interview .interview_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 87.5%;
  max-width: 1680px;
}
.interview .interview_inner .interview_text {
  padding: min(4vw, 77px) 0 0 min(3.125vw, 60px);
  width: 50%;
  max-width: 840px;
  box-sizing: border-box;
}
.interview .interview_inner .interview_text .common_title {
  margin-bottom: min(1.51vw, 29px);
  font-size: min(4.0625vw, 7.8rem);
  line-height: 1.0512;
  position: relative;
}
.interview .interview_inner .interview_text .common_title span {
  display: block;
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: min(0.3125vw, 6px) #000;
  text-stroke: 1px #000;
  paint-order: stroke;
}
.interview .interview_inner .interview_text .common_title span.fukidashi {
  display: block;
  width: 100%;
  max-width: min(20.3125vw, 390px);
  font-size: 0;
  -webkit-text-stroke: 0;
  text-stroke: none;
  position: absolute;
  left: -1.45833vw;
  top: -5.625vw;
}
.interview .interview_inner .interview_text .interview_info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: min(1.5vw, 25px);
  width: 100%;
  list-style-type: none;
}
.interview .interview_inner .interview_text .interview_info li {
  padding: min(0.26vw, 5px) 0 min(0.26vw, 5px) min(2.08333vw, 40px);
  width: 27.6%;
  font-size: min(1.25vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  background: url(../../images/src/top/icon_check.svg) no-repeat left center;
  background-size: min(1.5625vw, 30px) auto;
}
.interview .interview_inner .interview_text .interview_lead {
  margin-bottom: min(2.34375vw, 45px);
  font-size: min(0.9375vw, 1.8rem);
  font-weight: 700;
  line-height: 1.8;
}
.interview .interview_inner .interview_text .interview_copy {
  display: inline-block;
  margin-bottom: min(0.78125vw, 15px);
  padding: 0 min(1.04166vw, 20px);
  font-size: min(1.19791vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  background-image:
    url(../../images/src/top/bg_copyline01.svg),
    url(../../images/src/top/bg_copyline02.svg);
  background-repeat: no-repeat;
  background-position:
    left center,
    right center;
  background-size: min(0.729166vw, 14px) auto;
}
.interview .interview_inner .interview_text .interview_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: min(30.52vw, 586px);
  list-style-type: none;
}
.interview .interview_inner .interview_text .interview_contact li {
  width: 47.78156%;
  max-width: 280px;
}
.interview .interview_inner .interview_text .interview_contact li a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(8.48958vw, 163px);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 7px bottom 7px;
  background-size: min(0.98958vw, 19px) auto;
  box-sizing: border-box;
}
.interview .interview_inner .interview_text .interview_contact li a .icon {
  margin: 0 auto min(0.52vw, 10px);
  width: min(2.96875vw, 57px);
  height: min(2.96875vw, 57px);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.interview .interview_inner .interview_text .interview_contact li a .text {
  font-size: min(1.04166vw, 2rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:first-of-type
  a {
  background-image: url(../../images/src/top/bg_icon_arrow_green.svg);
  border: 3px solid #06c755;
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:first-of-type
  a
  .icon {
  background-image: url(../../images/src/top/icon_line02.svg);
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:first-of-type
  a:hover {
  background-image: url(../../images/src/top/bg_icon_arrow_white.svg);
  background-color: #06c755;
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:nth-of-type(2)
  a {
  background-image: url(../../images/src/top/bg_icon_arrow_orange.svg);
  border: 3px solid #ff6300;
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:nth-of-type(2)
  a
  .icon {
  background-image: url(../../images/src/top/icon_mail02.svg);
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:nth-of-type(2)
  a:hover
  .icon {
  background-image: url(../../images/src/top/icon_mail03.svg);
}
.interview
  .interview_inner
  .interview_text
  .interview_contact
  li:nth-of-type(2)
  a:hover {
  background-image: url(../../images/src/top/bg_icon_arrow_white.svg);
  background-color: #ff6300;
}
.interview .interview_inner .interview_img {
  width: 49.5238%;
}
.interview .interview_inner .interview_img {
  overflow: hidden;
}
/* .interview .interview_inner .interview_img img {
  height: auto;
  transition: transform 0.6s ease;
}
.interview .interview_inner .interview_img:hover img {
  transform: scale(1.2);
} */
@media screen and (max-width: 768px) {
  .interview {
    padding: 29.3478vw 0 9.66183vw;
  }
  .interview .interview_inner {
    width: 92.7536%;
    max-width: inherit;
  }
  .interview .interview_inner .interview_text {
    padding: 0;
    width: 100%;
    max-width: inherit;
  }
  .interview .interview_inner .interview_text .common_title {
    margin-bottom: 4vw;
    font-size: 9.42vw;
    line-height: 1.15;
  }
  .interview .interview_inner .interview_text .common_title span {
    -webkit-text-stroke: 0.724vw #000;
    text-stroke: 1px #000;
  }
  .interview .interview_inner .interview_text .common_title span.fukidashi {
    width: 66.54589vw;
    max-width: inherit;
    left: 0.5vw;
    top: -20.893vw;
  }
  .interview .interview_inner .interview_text .interview_info {
    margin-bottom: 3vw;
    width: 100%;
  }
  .interview .interview_inner .interview_text .interview_info li {
    padding: 0.5vw 0 0.5vw 7.24637vw;
    width: 36%;
    font-size: 4.1vw;
    background-size: 4.83vw auto;
  }
  .interview .interview_inner .interview_text .interview_lead {
    margin-bottom: 6vw;
    font-size: 3.38164vw;
  }
  .interview .interview_inner .interview_text .interview_copy {
    margin-bottom: 2.41545vw;
    padding: 0 2.1739vw;
    font-size: 3.6231vw;
    background-size: 1.69vw auto;
  }
  .interview .interview_inner .interview_text .interview_contact {
    width: 100%;
    max-width: inherit;
  }
  .interview .interview_inner .interview_text .interview_contact li a {
    height: 26.3285vw;
    background-position: right 0.84541vw bottom 0.84541vw;
    background-size: 3.6231vw auto;
  }
  .interview .interview_inner .interview_text .interview_contact li a .icon {
    margin: 0 auto 2.41545vw;
    width: 8vw;
    height: 8vw;
  }
  .interview .interview_inner .interview_text .interview_contact li a .text {
    font-size: 3.6231vw;
    line-height: 1.26;
  }
  .interview .interview_inner .interview_img {
    padding: 4.83vw 0 0;
    width: 100%;
  }
  .interview .interview_inner .interview_img {
    overflow: hidden;
  }
}

/*culture*/
.culture {
  background: url(../../images/src/top/bg_data.webp) repeat;
  border-bottom: 1px solid #5f5f5f;
}
.culture .culture_inner {
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.culture .culture_inner .culture_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: min(2.44791vw, 47px) min(2.08333vw, 40px) 0;
  width: 100%;
  height: min(11.9791vw, 230px);
  border-bottom: 1px solid #000;
  box-sizing: border-box;
}
.culture .culture_inner .culture_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  list-style-type: none;
  text-align: center;
}
.culture .culture_inner .culture_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 min(2.08333vw, 40px);
  width: calc(100% / 4);
  height: min(26.45833vw, 508px);
  border-right: 1px solid #000;
  box-sizing: border-box;
}
.culture .culture_inner .culture_list li:last-of-type {
  border-right: none;
}
.culture .culture_inner .culture_list li .list_box {
  width: 100%;
}
.culture .culture_inner .culture_list li .list_box .list_img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(2.23958vw, 43px);
  height: min(8.75vw, 168px);
}
.culture .culture_inner .culture_list li .list_box .list_img span {
  margin: 0 auto;
}
.culture
  .culture_inner
  .culture_list
  li:first-of-type
  .list_box
  .list_img
  span {
  width: 41.3566%;
}
.culture
  .culture_inner
  .culture_list
  li:nth-of-type(2)
  .list_box
  .list_img
  span {
  width: 57.768%;
}
.culture
  .culture_inner
  .culture_list
  li:nth-of-type(3)
  .list_box
  .list_img
  span {
  width: 59.9562%;
}
.culture
  .culture_inner
  .culture_list
  li:nth-of-type(4)
  .list_box
  .list_img
  span {
  width: 37.8555%;
}
.culture .culture_inner .culture_list li .list_box .list_tit {
  margin-bottom: min(1.5625vw, 30px);
  font-size: min(1.35416vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}
.culture .culture_inner .culture_list li .list_box .list_lead {
  font-size: min(0.9375vw, 1.8rem);
  line-height: 1.777;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .culture {
    background: url(../../images/src/top/sp/bg_data.webp) repeat;
  }
  .culture .culture_inner {
    padding: 0 0 7.72946vw;
    width: 100%;
    border-left: none;
  }
  .culture .culture_inner .culture_header {
    padding: 0 3.6231vw 4.83vw;
    width: 100%;
    height: auto;
  }
  .culture .culture_inner .culture_list li {
    padding: 8.4541vw 3vw 7.2463vw 35vw;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: left center;
    border-right: none;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
  }
  .culture .culture_inner .culture_list li .list_box {
    text-align: left;
  }
  .culture .culture_inner .culture_list li:first-of-type {
    background-image: url(../../images/src/top/img_culture01.svg);
    background-size: 31.521vw auto;
  }
  .culture .culture_inner .culture_list li:nth-of-type(2) {
    background-image: url(../../images/src/top/sp/img_culture02.svg);
    background-size: 32vw auto;
  }
  .culture .culture_inner .culture_list li:nth-of-type(3) {
    background-image: url(../../images/src/top/sp/img_culture03.svg);
    background-position: left 4.83vw center;
    background-size: 25.12vw auto;
  }
  .culture .culture_inner .culture_list li:nth-of-type(4) {
    background-image: url(../../images/src/top/img_culture04.svg);
    background-position: left 4.83vw center;
    background-size: 23.671vw auto;
  }
  .culture .culture_inner .culture_list li .list_box .list_img {
    display: none;
  }
  .culture .culture_inner .culture_list li .list_box .list_tit {
    margin-bottom: 1vw;
    font-size: 4.58937vw;
    line-height: 1.3684;
  }
  .culture .culture_inner .culture_list li .list_box .list_lead {
    font-size: 3.38164vw;
    line-height: 1.714;
  }
}

/*CORPORATION*/
.corporation {
  border-bottom: 1px solid #5f5f5f;
}
.corporation .corporation_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: min(5.2vw, 100px) min(2.08333vw, 40px) min(6.25vw, 120px);
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.corporation .corporation_inner .inner_left {
  width: 40%;
  max-width: 700px;
}
.corporation .corporation_inner .inner_left .common_title {
  margin-bottom: min(2.86458vw, 55px);
}
.corporation .corporation_inner .inner_left .left_img {
  width: 100%;
}
.corporation .corporation_inner .inner_left .left_img p {
  width: 100%;
  overflow: hidden;
}
/* .corporation .corporation_inner .inner_left .left_img p img {
  height: auto;
  transition: transform 0.6s ease;
}
.corporation .corporation_inner .inner_left .left_img p:hover img {
  transform: scale(1.2);
} */
.corporation .corporation_inner .inner_right {
  padding: min(0.52vw, 10px) 0 0;
  width: 52%;
  max-width: 910px;
}
.corporation .corporation_inner .inner_right dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: min(1.51vw, 29px) 0;
  width: 100%;
  font-size: min(1.04166vw, 2rem);
  line-height: 1.8;
  border-top: 1px solid #c9c9c9;
}
.corporation .corporation_inner .inner_right dl:last-of-type {
  border-bottom: 1px solid #c9c9c9;
}
.corporation .corporation_inner .inner_right dl dt {
  padding-left: min(3.125vw, 60px);
  width: 20.6593%;
  font-weight: 700;
  box-sizing: border-box;
}
.corporation .corporation_inner .inner_right dl dd {
  width: 72.7472%;
}
.corporation .corporation_inner .inner_right dl dd ul {
  padding-left: min(1.5625vw, 30px);
}
@media screen and (max-width: 768px) {
  .corporation .corporation_inner {
    padding: 0 3.6231vw 7.72946vw;
    width: 100%;
    border-left: none;
    box-sizing: border-box;
  }
  .corporation .corporation_inner .inner_left {
    padding: 0 0 5.67632vw;
    width: 100%;
    max-width: inherit;
  }
  .corporation .corporation_inner .inner_left .common_title {
    margin: 2vw 0 5.64632vw;
  }
  .corporation .corporation_inner .inner_right {
    padding: min(0.52vw, 10px) 0 0;
    width: 100%;
    max-width: inherit;
  }
  .corporation .corporation_inner .inner_right dl {
    padding: 3vw 0;
    font-size: 3.6231vw;
    line-height: 1.4;
  }
  .corporation .corporation_inner .inner_right dl dt {
    padding-left: 0;
    margin-bottom: 1vw;
    width: 100%;
  }
  .corporation .corporation_inner .inner_right dl dd {
    width: 100%;
  }
  .corporation .corporation_inner .inner_right dl dd ul {
    padding-left: 5vw;
  }
}
/*move logo*/
.movelogo {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #5f5f5f;
  position: relative;
  z-index: 10;
}
.movelogo .logo_slider {
  padding: min(1.5625vw, 30px) 0;
  width: 100%;
}
.movelogo .logo_slider .swiper2 .swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (max-width: 768px) {
  .movelogo .logo_slider {
    padding: 3.6231vw 0;
  }
}

/*FACILITY*/
.facility {
  border-bottom: 1px solid #5f5f5f;
}
.facility .facility_inner {
  padding: min(5.2vw, 100px) 0 min(1.5625vw, 30px);
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.facility .facility_inner .common_title {
  margin: 0 0 min(2.86458vw, 55px) min(2.08333vw, 40px);
}
.facility .facility_inner .facility_slider {
  width: 100%;
}
.facility .facility_inner .facility_slider .facility_box {
  margin: -3.64583vw auto 0;
  padding: min(1.45833vw, 28px);
  width: 93.3%;
  max-width: 767px;
  background-color: #fff;
  border: 2px solid #000000;
  border-radius: min(1.04166vw, 20px);
  position: relative;
  z-index: 2;
}
.facility .facility_inner .facility_slider .facility_box .box_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  /* width: 89.96%;
    max-width: 690px; */
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_left {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 min(1.04166vw, 20px);
  width: 21.159%;
  max-width: 146px;
  font-size: min(1.04166vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  box-sizing: border-box;
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_left
  span {
  font-size: min(1.45833vw, 28px);
  font-weight: 700;
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right {
  padding: 0 0 0 min(1.45833vw, 28px);
  width: 77.5362%;
  max-width: 535px;
  border-left: 1px solid #c9c9c9;
  box-sizing: border-box;
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-size: min(0.9375vw, 1.8rem);
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl
  + dl {
  margin-top: min(0.52vw, 10px);
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl
  dt {
  padding: 0 0 0 min(1.19791vw, 23px);
  width: 17.1259%;
  max-width: 87px;
  font-weight: 700;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(0.83333vw, 16px) auto;
  box-sizing: border-box;
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl:first-of-type
  dt {
  background-image: url(../../images/src/top/icon_map.svg);
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl:nth-of-type(2)
  dt {
  background-image: url(../../images/src/top/icon_tel.svg);
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl
  dd {
  width: 82.677%;
  max-width: 420px;
  font-size: min(0.88541vw, 1.7rem);
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl
  dd
  a {
  color: #004097;
  text-decoration: underline;
}
.facility
  .facility_inner
  .facility_slider
  .facility_box
  .box_inner
  .inner_right
  dl
  dd
  a:hover {
  text-decoration: none;
}
/*swiper*/
.swiper3 .swiper-wrapper {
  padding: 0 0 min(6.25vw, 120px);
}
.swiper3 .swiper-pagination {
  font-size: min(1.354166vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: min(34.8958vw, 670px);
}
@media screen and (max-width: 1200px) {
  .swiper3 .swiper-pagination {
    top: 35.5vw;
  }
}
.swiper3 .swiper-custom-prev::after,
.swiper3 .swiper-custom-next::after {
  content: "";
  margin: auto;
  width: min(3.02083vw, 58px);
  height: min(3.02083vw, 58px);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -16.1875vw;
}
.swiper3 .swiper-custom-prev::after {
  left: min(40vw, 780px) !important;
  background-image: url(../../images/src/top/slide/arrow_prev.svg);
}
.swiper3 .swiper-custom-next::after {
  right: min(40vw, 780px) !important;
  background-image: url(../../images/src/top/slide/arrow_next.svg);
}
@media screen and (max-width: 768px) {
  .facility .facility_inner {
    padding: 0 0 7.72946vw;
    width: 100%;
    border-left: none;
  }
  .facility .facility_inner .common_title {
    margin: 0 0 6.64251vw 3.6231vw;
  }
  .facility .facility_inner .facility_slider .facility_box {
    margin: -6vw auto 0;
    padding: 3.6231vw;
    width: 93.3%;
    max-width: inherit;
    border-radius: 2.41545vw;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_left {
    margin-bottom: 3vw;
    padding: 0;
    width: 100%;
    max-width: inherit;
    font-size: 3.6231vw;
    line-height: 1.3;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_left
    span {
    margin-left: 0.5vw;
    font-size: 4.58937vw;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_right {
    padding: 0;
    width: 100%;
    max-width: inherit;
    border-left: none;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_right
    dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: 3.38164vw;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_right
    dl
    + dl {
    margin-top: 3.6231vw;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_right
    dl
    dt {
    padding: 0 0 0 3.6231vw;
    width: 22.826%;
    max-width: inherit;
    background-size: 2.657vw auto;
    box-sizing: border-box;
  }
  .facility
    .facility_inner
    .facility_slider
    .facility_box
    .box_inner
    .inner_right
    dl
    dd {
    width: 77.355%;
    max-width: inherit;
    font-size: 3.38164vw;
  }
  /*swiper*/
  .swiper3 .swiper-wrapper {
    padding: 0 0 16vw;
  }
  .swiper3 .swiper-pagination {
    font-size: 4.3478vw;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 96vw;
  }
  .swiper3 .swiper-custom-prev::after,
  .swiper3 .swiper-custom-next::after {
    width: 9.42vw;
    height: 9.42vw;
    bottom: -46vw;
  }
  .swiper3 .swiper-custom-prev::after {
    left: 30vw !important;
  }
  .swiper3 .swiper-custom-next::after {
    right: 30vw !important;
  }
}
/*FAQ*/
.faq {
  background: url(../../images/src/top/bg_data.webp) repeat;
  border-bottom: 1px solid #5f5f5f;
}
.faq .faq_inner {
  padding: min(5.2vw, 100px) 0;
  width: 95.26%;
  border-left: 1px solid #5f5f5f;
  box-sizing: border-box;
}
.faq .faq_inner .common_title {
  margin: 0 0 min(2.08333vw, 40px) min(2.08333vw, 40px);
}
.faq .faq_inner .faq_box {
  margin: 0 auto;
  width: 89%;
  max-width: 1630px;
}
.faq .faq_inner .faq_box dl {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.faq .faq_inner .faq_box dl + dl {
  margin-top: min(1.04166vw, 20px);
}
.faq .faq_inner .faq_box dl dt {
  padding: min(1.5625vw, 30px) min(6.25vw, 120px) min(1.5625vw, 30px)
    min(4.27vw, 82px);
  width: 100%;
  font-size: min(1.14583vw, 2.2rem);
  font-weight: 700;
  line-height: 1.68;
  box-sizing: border-box;
  background-image:
    url(../../images/src/top/icon_q.svg),
    url(../../images/src/top/icon_plus.svg);
  background-repeat: no-repeat;
  background-position:
    left min(1.5625vw, 30px) top min(1.5625vw, 30px),
    right min(1.5625vw, 30px) center;
  background-size: min(2.08333vw, 40px) auto;
  cursor: pointer;
  transition: 0.5s;
}
.faq .faq_inner .faq_box dl dt.active {
  background-image:
    url(../../images/src/top/icon_q.svg),
    url(../../images/src/top/icon_minus.svg);
}
.faq .faq_inner .faq_box dl dd {
  padding: 0 min(6.25vw, 120px) min(1.5625vw, 30px) min(5.46875vw, 105px);
  width: 100%;
  font-size: min(0.9375vw, 1.8rem);
  line-height: 1.777;
  box-sizing: border-box;
  background-image: url(../../images/src/top/icon_a.svg);
  background-repeat: no-repeat;
  background-position: left min(3.0208vw, 58px) top;
  background-size: min(1.97916vw, 38px) auto;
  display: none;
}
@media screen and (max-width: 768px) {
  .faq {
    background: url(../../images/src/top/sp/bg_data.webp) repeat;
  }
  .faq .faq_inner {
    margin: 0 auto;
    padding: 0 0 7.72946vw;
    width: 92.7536%;
    border-left: none;
  }
  .faq .faq_inner .common_title {
    margin: 2vw 0 6.64251vw;
  }
  .faq .faq_inner .faq_box {
    margin: 0 auto;
    width: 100%;
    max-width: inherit;
  }
  .faq .faq_inner .faq_box dl + dl {
    margin-top: 3.6231vw;
  }
  .faq .faq_inner .faq_box dl dt {
    padding: 6vw 13.285vw 4.83vw 11.3526vw;
    font-size: 3.86473vw;
    box-sizing: border-box;
    background-position:
      left 3.6231vw top 6.5vw,
      right 3.6231vw top 6.5vw;
    background-size:
      6.1594vw auto,
      7.24637vw auto;
  }
  .faq .faq_inner .faq_box dl dd {
    padding: 0 12vw 4.83vw 11.3526vw;
    font-size: 3.38164vw;
    line-height: 1.777;
    background-position: left 4vw top;
    background-size: 6.1594vw auto;
  }
}

/* CV2 */
.cv.recruit {
  padding: min(4.427vw, 85px) 0 min(3.6458vw, 70px);
  text-align: left;
}
.cv.recruit .recruit_inner {
  padding: 0 min(7.29166vw, 140px);
  width: 100%;
  box-sizing: border-box;
}
.cv.recruit .recruit_inner .title_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cv.recruit .recruit_inner .title_box .recruit_tit {
  margin-bottom: min(3.125vw, 60px);
  font-size: min(3.854166vw, 7.4rem);
  font-weight: 900;
  line-height: 1.15;
}
.cv.recruit .recruit_inner .title_box .recruit_tit span {
  display: block;
  font-size: min(0.9375vw, 1.8rem);
  font-weight: 700;
}
.cv.recruit .recruit_inner .title_box .recruit_lead {
  font-size: min(1.04166vw, 2rem);
  font-weight: 700;
  line-height: 1.9;
}
.cv.recruit .main_copy {
  margin-bottom: min(3.6458vw, 70px);
  font-size: min(5.41666vw, 10.4rem);
}
.cv.recruit .main_copy span {
  font-size: min(4.427vw, 8.5rem);
}
.cv.recruit .sub_copy {
  font-size: min(2.8125vw, 5.4rem);
}
.cv.recruit .sub_copy span {
  font-size: min(2.3958vw, 4.6rem);
}
@media screen and (max-width: 768px) {
  .cv.recruit {
    padding: 7.85vw 0 0;
    text-align: left;
  }
  .cv.recruit .recruit_inner {
    display: block;
    padding: 0 0 4vw;
  }
  .cv.recruit .recruit_inner .title_box .recruit_tit {
    margin-bottom: 4.227vw;
    margin-left: 3.6231vw;
    width: 100%;
    font-size: 8.9371vw;
  }
  .cv.recruit .recruit_inner .title_box .recruit_tit span {
    padding: 0 0 1vw;
    font-size: 3.6231vw;
  }
  .cv.recruit .recruit_inner .title_box .recruit_lead {
    display: block;
    margin: 0 3.6231vw;
    padding: 0 0 5.4347vw;
    width: 100%;
    font-size: 3.6231vw;
  }
  .cv.recruit .main_copy {
    margin-bottom: min(3.6458vw, 70px);
    font-size: 11.111vw;
  }
  .cv.recruit .main_copy span {
    font-size: 9vw;
  }
  .cv.recruit .sub_copy {
    font-size: 7.4879vw;
  }
  .cv.recruit .sub_copy span {
    font-size: 6.4vw;
  }
}

/*site-footer*/
.site-footer {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.site-footer .site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: min(4.1666vw, 80px) 0;
  width: 91.666%;
  max-width: 1760px;
}
.site-footer .site-footer__inner .inner_left {
  width: 24.4318%;
  max-width: 430px;
}
.site-footer .site-footer__inner .inner_left .footer_logo {
  margin-bottom: min(1.4vw, 27px);
  width: 85.11627%;
  max-width: 366px;
}
.site-footer .site-footer__inner .inner_left .footer_info {
  margin-bottom: min(0.78125vw, 15px);
  font-size: min(1.14583vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2727;
}
.site-footer .site-footer__inner .inner_left .footer_info span {
  display: block;
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: 4px #000;
  text-stroke: 4px #000;
  paint-order: stroke;
}
.site-footer .site-footer__inner .inner_left .footer_add {
  margin-bottom: min(3vw, 58px);
  font-size: min(0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
}
.site-footer .site-footer__inner .inner_left .copyright {
  font-size: min(0.7291vw, 1.4rem);
  line-height: 1;
}
.site-footer .site-footer__inner .inner_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 48.9772%;
  max-width: 862px;
}
.site-footer .site-footer__inner .inner_right .pc {
  width: 100%;
}
.site-footer .site-footer__inner .inner_right ul {
  list-style-type: none;
}
.site-footer .site-footer__inner .inner_right ul:last-of-type {
  /* width: 26%;background-color: yellowgreen; */
}
.site-footer .site-footer__inner .inner_right ul li {
  width: 100%;
}
.site-footer .site-footer__inner .inner_right ul li + li {
  margin-top: min(1.5625vw, 30px);
}
.site-footer .site-footer__inner .inner_right ul li a {
  display: block;
  padding: 0 0 0 min(2.76vw, 53px);
  width: 100%;
  font-size: min(1.04166vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  background-image: url(../../images/src/common/icon_footer_menu.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: min(2.13541vw, 41px) auto;
}
.site-footer .site-footer__inner .inner_right ul li a:hover {
  opacity: 0.6;
}
.site-footer .site-footer__inner .inner_right ul li a span {
  display: block;
  font-size: min(0.7291vw, 1.4rem);
  font-weight: 700;
}
#page_top {
  width: 2.08333vw;
  max-width: 100%;
  position: fixed;
  right: min(1.04166vw, 20px);
  bottom: 150px;
  z-index: 1000;
}
#fixedbtn_top {
  width: 17%;
  max-width: 328px;
  position: fixed;
  right: min(1.04166vw, 20px);
  bottom: min(1.04166vw, 20px);
  z-index: 1000;
}
#fixedbtn_top_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .site-footer .site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 9.66183vw 0 26vw;
    width: 92.7536%;
    max-width: inherit;
  }
  .site-footer .site-footer__inner .inner_left {
    padding: 0 0 2vw;
    width: 100%;
    max-width: inherit;
  }
  .site-footer .site-footer__inner .inner_left .footer_logo {
    margin-bottom: 4.83vw;
    width: 81.0386vw;
    max-width: inherit;
  }
  .site-footer .site-footer__inner .inner_left .footer_info {
    display: none;
  }
  .site-footer .site-footer__inner .inner_left .footer_add {
    margin-bottom: min(3vw, 58px);
    font-size: 3.38164vw;
    line-height: 1.642;
  }
  .site-footer .site-footer__inner .inner_left .copyright {
    display: none;
  }
  .site-footer .site-footer__inner .inner_right {
    width: 100%;
    max-width: inherit;
  }
  .site-footer .site-footer__inner .inner_right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 10.8695vw;
    width: 100%;
  }
  .site-footer .site-footer__inner .inner_right ul li {
    width: 55%;
  }
  .site-footer .site-footer__inner .inner_right ul li:nth-of-type(2n) {
    width: 45%;
  }
  .site-footer .site-footer__inner .inner_right ul li + li {
    margin-top: min(1.5625vw, 30px);
  }
  .site-footer .site-footer__inner .inner_right ul li a {
    padding: 2vw 0 2vw 9vw;
    width: 100%;
    font-size: 3.8647vw;
    background-size: 6.884vw auto;
  }
  .site-footer .site-footer__inner .inner_right ul li a:hover {
    opacity: 0.6;
  }
  .site-footer .site-footer__inner .inner_right ul li a span {
    display: none;
  }
  .site-footer .site-footer__inner .inner_right .copyright {
    font-size: 2.89855vw;
    text-align: center;
  }
  #page_top {
    width: 9.42vw;
    right: 2.657vw;
    bottom: 35vw;
    z-index: 1000;
  }
  #fixedbtn_top {
    display: none;
  }
  #fixedbtn_top_sp {
    display: block !important;
    margin: 0 auto;
    width: 96%;
    /* background-color: #fff; */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
  }
  #fixedbtn_top_sp .fixed_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  #fixedbtn_top_sp .fixed_inner .fixed_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 57.61%;
    list-style-type: none;
  }
  #fixedbtn_top_sp .fixed_inner .fixed_left li {
    width: 48.9%;
  }
  #fixedbtn_top_sp .fixed_inner .fixed_right {
    width: 40.2515%;
    position: relative;
  }
  #fixedbtn_top_sp .fixed_inner .fixed_right span {
    width: 77.1875%;
    position: absolute;
    left: -1.44927vw;
    top: -1vw;
  }
}
