@charset "utf-8";
/*------------------------------------------------------------
	◆読み込みHTML
	/index.html
------------------------------------------------------------*/
/*------------------------------------------------------------
/loding animation
------------------------------------------------------------*/
/* ローディング画面 */
.loading-area {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .8s ease, visibility .8s ease;
}
/* 非表示状態 */
.loading-area.hide {
  opacity: 0;
  visibility: hidden;
}
/* テキスト */
.loading-text {
  position: relative;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #545454;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 光るアニメ */
.loading-text::before {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 0%;
  background-image: linear-gradient(90deg, #36daf7 10%, #007bb1 90%);
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: textSlide 2s infinite linear;
  content: "SKB Group";
}
@keyframes textSlide {
  0% {
    width: 0%;
  }
  70%, 100% {
    width: 100%;
  }
}
/* メイン画面 */
.main {
  min-height: 100vh;
  padding: 50px;
  background: white;
  color: black;
}
/*------------------------------------------------------------
/loding animation
------------------------------------------------------------*/
/*------------------------------------------------------------
animation
------------------------------------------------------------*/
/* 初期状態 */
.smooth, .zoomIn, .slideinLeft {
  opacity: 0;
}
body.no-scroll {
  overflow: hidden;
}
/* 表示後 */
.js-scroll.is-animated {
  opacity: 1;
}
/* smooth */
.smooth {
  opacity: 0;
  filter: blur(8px);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  opacity 1s ease, filter 1s ease;
}
.smooth.is-animated {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(0);
}
/* zoomIn */
.anim-box.zoomIn.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
/* slideinLeft */
.slideinLeft.is-animated {
  animation: slideinLeft 2s ease;
}
@keyframes slideinLeft {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
/*------------------------------------------------------------
animation fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
recruit_btn
------------------------------------------------------------*/
.fix_btn {
  width: 10%;
  position: fixed;
  right: 20px;
  bottom: 5%;
  z-index: 100;
  background: none;
}
.fix_btn img {
  width: 100%;
}
/*------------------------------------------------------------
recruit_btn fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
textBook
------------------------------------------------------------*/
.textBook-article {
  background-color: #f0e1d8;
}
.textBook-img {
  padding: 0 0 100px;
}
.title-Box {
  width: 100%;
  padding: 100px 0 0;
}
.title-img {
  width: 33%;
  margin: 0 8%;
  float: left;
}
.title-img img {
  width: 100%;
  margin: 30px auto;
}
.catch {
  width: 39%;
  margin: 0 12% 0 0%;
  float: right;
}
.recruit-text {
  width: 100%;
  margin: 6% 0 0;
  font-size: 36px;
  line-height: 1.3;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  font-weight: 800;
  font-style: normal;
}
.text-right::before {
  content: '';
  flex-grow: 1; /* 残りの幅をすべて埋める */
  height: 1px;
  background-color: #333;
}
.text-right {
  display: flex;
  align-items: center;
  text-align: right;
  font-size: 26px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin: 10px 0;
}
.small {
  font-size: 14px;
}
/*------------------------------------------------------------
textbook_slider　スライダー①
------------------------------------------------------------*/
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
/* 7枚表示 */
.slide {
  min-width: calc(100% / 7);
  padding: 10px 10px;
  box-sizing: border-box;
}
.slide img {
  width: 100%;
  display: block;
}
/* ボタン */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.R-slide {
  margin: 190px 0;
}
.R-slide .slide {
  min-width: calc(100% / 3);
  padding: 5px;
  box-sizing: border-box;
}
/* スマホでは3枚表示 */
@media (max-width: 768px) {
  .slide {
    min-width: calc(100% / 3);
  }
}
/*------------------------------------------------------------
textbook_slider　スライダー①
------------------------------------------------------------*/
/*------------------------------------------------------------
textbook fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
message
------------------------------------------------------------*/
.message-article {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #c9e7f2 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #c9e7f2 calc(100% - 1px));
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: center center;
  position: relative;
  padding: 232px 0 190px;
  margin-bottom: 100px;
}
.message-article img {
  width: 37%;
}
.bg-logo {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  margin: 0 auto;
  width: 80%;
}
.message-area {
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.message-area h2 {
  font-size: 52px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin: 20px auto 60px;
  display: block;
}
/*------------------------------------------------------------
message fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
index_responsive (max-width: 1300px)
------------------------------------------------------------*/
@media only screen and (max-width: 1300px) {
  .message-area h2 {
    font-size: 47px;
    margin: 20px 0 60px;
  }
}
.message-area p {
  font-size: 22px;
  width: 60%;
  margin: 10px auto;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media only screen and (max-width: 1300px) {
  .message-area p {
    font-size: 18px;
  }
}
.message-img {
  width: 19%;
  position: absolute;
  right: -2%;
  bottom: 7%;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.message-img img {
  width: 100%;
}
/*------------------------------------------------------------
message_responsive (max-width: 790px)
------------------------------------------------------------*/
@media only screen and (max-width: 790px) {
  .message-img {
    bottom: -250px;
  }
}
/*------------------------------------------------------------
message fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
company（ベース：スマホ向け）
------------------------------------------------------------*/
.company-article {
  position: relative;
}
/* タイトルエリア：スマホ・PC共通で動画の上に重ねる */
.on {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.title-box {
  width: 100%;
}
h3.title {
  width: 50%;
  margin: 25px 0 10px;
}
h3.title img {
  width: 100%;
}
.group-text {
  width: 40%;
  color: #fff; /* 動画の上なので白文字のまま */
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin: 40px auto 30px;
  font-size: clamp(14px, 1.4vw, 16px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: justify;
}
/* 画像とボタン：スマホ時は動画の下に通常配置 */
.group-box {
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column; /* スマホ時は縦並び（横並びが良い場合は row に変えてください） */
  gap: 20px;
}
.group {
  width: 100%;
}
.group-left, .group-right {
  width: 100%; /* スマホ時は幅いっぱい */
  margin: 0 auto;
}
.anim-box {
  opacity: 0;
  transform: scale(0.8);
}
.group-btn {
  width: 60%; /* スマホでボタンが大きすぎないように調整 */
  margin: 10px auto;
}
.group-btn img {
  width: 100%;
}
/* 最下部ロゴ：スマホ時は動画の下 */
.btm-skbmana {
  position: static;
  width: 60%;
  margin: 20px auto;
}
/*------------------------------------------------------------
PC向け（画面幅768px以上）のスタイル
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  /* PC時は画像グループも動画の上に絶対配置で重ねる */
  .group-box {
    position: absolute;
    top: 50%; /* 動画内の位置（適宜調整してください） */
    left: 50%;
    transform: translate(-50%, -50%); /* 中央寄せ */
    width: 80%;
    flex-direction: row; /* 横並びに戻す */
    gap: 0;
    z-index: 2;
  }
  .group-left, .group-right {
    width: 28%;
    margin: 0 auto;
  }
  .group-btn {
    width: 100%;
    margin: 18px auto;
  }
  /* PC時は最下部ロゴも絶対配置で重ねる */
  .btm-skbmana {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 24%;
    margin: 0;
    z-index: 2;
  }
}
/*------------------------------------------------------------
company（ベース：スマホ向け）fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
recruit
------------------------------------------------------------*/
/*------------------------------------------------------------
recruit_slider　スライダー②
------------------------------------------------------------*/
.carousel {
  position: relative;
  width: 400px;
  overflow: hidden;
  margin: 120px auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.recruit-btn-bg {
  position: relative;
  background-color: #6bd9b9;
  height: auto;
}
.school {
  position: absolute;
  top: -54px;
  width: 17%;
}
.school img {
  width: 100%;
}
.recruit-btn-box {
  width: 30%;
  margin: 0 auto;
  padding: 105px 0px;
}
.recruit-btn-box a img {
  width: 100%;
}
.btn-box {
  width: 20%;
  margin: 50px auto;
}
.recruit_container {
  margin: 138px auto;
}
.recruit-slick {
  width: 100%;
  margin: 15px auto;
  position: relative;
  @include breakpoint(500px) {
    margin: 5% auto;
  }
}
.recruit-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}
.recruit-slick__item img {
  height: auto;
  width: 100%;
}
.recruit-slick button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
  width: 30%;
}
.slick-prev:before, .slick-next:before {
  color: #000066;
}
/* --------------------
   矢印共通
-------------------- */
.slick-prev, .slick-next {
  width: 60px !important;
  height: 60px !important;
  z-index: 10;
}
/* アイコンサイズ */
.slick-prev:before, .slick-next:before {
  display: inline-block;
  transform: scale(0.6);
  opacity: 1;
}
/* スライダー基準 */
.recruit-slick {
  position: relative;
}
/* 矢印共通 */
.slick-prev, .slick-next {
  width: 50px !important;
  height: 50px !important;
  top: 32% !important;
  transform: translateY(-50%);
  z-index: 10;
}
/* 左 */
.slick-prev {
  left: 16%;
}
/* 右 */
.slick-next {
  right: 20%;
}
/* 矢印画像 */
.slick-prev:before {
  content: url("../img/index/arrow-left.png");
  display: inline-block;
  transform: scale(0.45);
  opacity: 1;
}
.slick-next:before {
  content: url("../img/index/arrow-right.png");
  display: inline-block;
  transform: scale(0.45);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .slick-prev {
    left: 8%;
  }
  .slick-next {
    right: 8%;
  }
  .slick-prev:before, .slick-next:before {
    transform: scale(0.3);
  }
}
.slick-prev:before {
  content: url("../img/index/arrow-left.png");
}
.slick-next:before {
  content: url("../img/index/arrow-right.png");
}
@media screen and (max-width: 960px) {
  .slick-prev {
    left: 148px !important;
  }
  .slick-next {
    right: 197px !important;
  }
}
/* =========================
   タブレット
========================= */
@media screen and (max-width: 1024px) {
  .slick-prev {
    left: 140px !important;
  }
  .slick-next {
    right: 190px !important;
  }
  .slick-prev, .slick-next {
    width: 50px !important;
    height: 50px !important;
  }
  .slick-prev:before, .slick-next:before {
    transform: scale(0.5);
  }
}
/* =========================
   スマホ
========================= */
@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    width: 40px !important;
    height: 40px !important;
    top: 40%;
  }
  .slick-prev {
    left: -12px !important;
  }
  .slick-next {
    right: 40px !important;
  }
  .slick-prev:before, .slick-next:before {
    transform: scale(0.35);
  }
}
.slick-slide {
  margin-right: 3vw !important;
  margin-left: 3vw !important;
}
.recruit-slick__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}
.interview-btn {
  margin-top: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.interview-btn {
  margin: 20px auto;
  width: 45%;
}
.slick-prev, .slick-next {
  width: 50px !important;
}
.slick-prev:before {
  content: url("../img/index/arrow-left.png");
  display: inline-block;
  transform: scale(0.5);
  opacity: 1;
}
.slick-next:before {
  content: url(../img/index/arrow-right.png);
  display: inline-block;
  transform: scale(0.5);
  opacity: 1;
}
/*------------------------------------------------------------
recruit_slider　スライダー②/ fin/
------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .school {
    width: 30%;
  }
}
/*------------------------------------------------------------
recruit fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
news
------------------------------------------------------------*/
.recruit-title {
  width: 100%;
  color: #0071bb;
  font-weight: 600;
  font-size: 35px;
  margin: 30px 0 5px 0;
}
.news-article {
  background-color: #fff;
  padding: 12vw 0;
}
.news-article img, .news-article p {
  width: 80%;
  margin-right: 20%;
  padding: 10px 0 0 0;
}
.news-article .btn-box img {
  width: 100%;
}
.news-right, .news-left {
  width: 45%;
  margin: 0 auto;
}
.subject {
  color: #0071bb;
  margin: 0 0 20px 0;
}
.day {
  font-size: 14px;
}
.map-article {
  padding: 0 0 200px;
  background: #fff;
}
.map-bg {
  background: url("../img/index/map-bg.jpg") no-repeat left top / 100%;
  margin: 0 auto;
  height: 57vw;
}
@media only screen and (max-width: 1400px) {
  .map-bg {
    background: url("../img/index/sp-map-bg.jpg") no-repeat left top / 100%;
    margin: 0 auto;
    height: 70vw;
  }
}
.map-title h3 {
  font-size: 54px;
  text-align: center;
  padding: 6vw 0 0;
  margin: 0;
  letter-spacing: 0.2em;
  ont-weight: 600;
}
@media only screen and (max-width: 1400px) {
  .map-title h3 {
    font-size: 52px;
    font-weight: bold;
  }
  .summary {
    font-size: 16px;
  }
}
.location {
  font-size: 18px;
  font-weight: bold;
}
.summary {
  font-size: 20px;
  margin: 30px auto 50px;
  width: 30%;
}
.summary p {
  margin: 10px 0;
  text-align: center;
}
.map-box {
  width: 70%;
  margin: 0 auto;
}
.map-box p {
  margin: 8px 0;
  line-height: 1.5;
}
.map-left, .map-right {
  margin: 0 auto;
  width: 40%;
  border-top: 1px solid #000;
  padding: 20px 0;
}
.map-left .map {
  margin: 38px 0;
}
.map-right .map {
  margin: 38px 0;
}
.map iframe {
  width: 100%;
  height: 20vw;
}
@media only screen and (max-width: 1070px) {
  .map iframe {
    width: 100%;
    height: 44vw;
  }
}
@media only screen and (max-width: 840px) {
  .map iframe {
    width: 100%;
    height: 35vw;
  }
}
@media only screen and (max-width: 1070px) {
  .news-article .flex {
    display: block;
  }
  .news-list {
    display: flex !important;
  }
  .news-right, .news-left {
    width: 93%;
    margin: 0 auto;
  }
  .map-article .flex {
    display: block;
  }
  .map-bg {
    height: 179vw;
  }
  .map-left, .map-right {
    width: 78%;
    ;
  }
  .R-news-left, .R-news-right, .G-news-left, .G-news-right {
    width: 50%;
  }
}
/*------------------------------------------------------------
news fin//
------------------------------------------------------------*/
/*------------------------------------------------------------
index_responsive (max-width: 1200px)
------------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
  .catch {
    float: none;
    width: 82%;
    margin: 0 auto;
  }
  .message-area h2 {
    font-size: 28px;
  }
  .title-img {
    float: none;
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 960px) {
  .bg-logo {
    top: 4%;
  }
  .message-area h2 {
    font-size: 36px;
  }
  .message-article {
    margin-bottom: 0;
    min-height: 700px;
  }
  .message-area p {
    width: 90%;
    font-size: 18px;
    line-height: 2.0;
    letter-spacing: 0.1em;
    text-align: justify;
  }
  .message-img {
    width: 38%;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -280px;
    animation: bounce 2s ease-in-out infinite;
  }
  .title-box {
    display: flex;
  }
  h3.title {
    width: 60%;
    margin: 0;
  }
  .group-text {
    width: 50%;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.2em;
    margin: 15px auto;
  }
  .school {
    width: 18%;
  }
  .recruit-btn-box {
    width: 45%;
  }
  .btn-box {
    width: 38%;
  }
  .map-title h3 {
    font-size: 38px;
  }
  .summary {
    width: 56%;
  }
  .footer-list {
    width: 77%;
    margin: 0 auto;
  }
  li a {
    padding: 8px 62px;
  }
  .footer-list ol {
    padding: 0 46px;
  }
  .footer-bnr {
    padding: 20px 0 0;
  }
  .fix_btn {
    width: 17%;
  }
}
/*------------------------------------------------------------
index_responsive (max-width: 760px)
------------------------------------------------------------*/
@media only screen and (max-width: 760px) {
  .group-left, .group-right {
    width: 90%;
    margin: 0px auto;
  }
  h3.title {
    width: 100%;
    margin: 20px 0;
  }
  .group-text {
    width: 90%;
    margin: 48px auto 3px;
    color: #000;
    font-size: clamp(22px, 3vw, 36px);
  }
  .group-box {
    display: flex;
  }
  .group-left, .group-right {
    width: 90%;
    margin: 0 auto;
  }
  .group-btn {
    width: 100%;
    margin: 23px auto;
  }
  .flex {
    display: block;
  }
  .message-article {
    min-height: 850px;
  }
  .message-img {
    width: 46%;
    bottom: -47%;
  }
  .school {
    width: 26%;
  }
}
@media only screen and (max-width: 660px) {
  .group-text {
    margin: 40px auto 3px;
    font-size: clamp(18px, 2.2vw, 24px);
  }
  .message-article {
    min-height: 900px;
  }
  .message-img {
    width: 60%;
    bottom: -40%;
  }
}
/*------------------------------------------------------------
index_responsive (max-width: 580px)
------------------------------------------------------------*/
@media only screen and (max-width: 580px) {
  .message-article {
    min-height: 1100px;
  }
  .message-img {
    width: 60%;
    bottom: -37%;
  }
}
/*------------------------------------------------------------
index_responsive (max-width: 500px)
------------------------------------------------------------*/
@media only screen and (max-width: 500px) {
  .fix_btn {
    width: 25%;
  }
  .title-Box {
    padding: 50px 0 0;
  }
  .title-img {
    width: 90%;
  }
  .catch {
    width: 90%;
    margin: 0 auto;
  }
  .recruit-text {
    width: 90%;
    font-size: 20px;
  }
  .text-right {
    font-size: 15px;
  }
  .message-area h2 {
    font-size: 30px;
    margin: 20px 0 60px;
  }
  .message-area p {
    font-size: 16px;
    line-height: 1.6;
  }
  .message-article {
    height: 1000px;
    padding: 10% 0 30%;
  }
  .message-img {
    width: 53%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -22%;
  }
  .group-text {
    width: 90%;
    margin: 5px auto 3px;
    color: #fff;
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

  }
  .title-box {
    width: 100%;
  }
  .recruit_container {
    margin: 45px auto 64px;
  }
.recruit-slick button {
  width: 70%;
}
  .school {
    width: 30%;
  }
  .interview-btn {
    width: 50%;
  }
  .recruit_container {
    overflow: hidden;
  }
  .recruit-btn-box {
    width: 70%;
  }
  .news-list {
    display: block !important;
  }
  .R-news-left, .R-news-right, .G-news-left, .G-news-right {
    width: 100%;
	margin: 0 0 30px 0;
  }
  .news-article img, .news-article p {
    width: 100%;
    margin-right: 0;
  }
  .subject {
  margin: 0;
  }
  .btn-box {
    width: 60%;
  }
  .map-title h3 {
    font-size: 23px;
    font-weight: bold;
    padding: 3vw 0 0;
  }
  .summary {
    font-size: 14px;
    margin: 15px auto 15px;
    width: 70%;
  }
  .summary p {
    margin: 5px 0;
  }
  .map-article {
    padding: 0 0 80px;
  }
  .map-box {
    margin: 8px auto;
    line-height: 1.5;
    font-size: 9px;
  }
  .map-left .map, .map-right .map {
    margin: 5px 0;
  }
  .map-box p {
    margin: 8px 0;
  }
  .location {
    font-size: 10px;
  }
}
/*------------------------------------------------------------
index_responsive (max-width: 500px)
------------------------------------------------------------*/