@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

/* 共通
-------------------------------------------------------------------*/

body {
  background-color: #111;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

main,
ul,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.container {
  box-sizing: border-box;
  width: 100%;
  padding: 72px 16px 72px 8px;
}

.wrap {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}

.heading {
  position: relative;
  z-index: 1;
  color: #fff;
  width: fit-content;
  background-image: linear-gradient(135deg, #ff0000 0, #ff7200 100%);
  margin-bottom: 56px;
  padding: 0px 12px 4px 12px;
  transition: all 0.8s ease-out;
}

.heading.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(255, 255, 255);
}

.marker {
  background: linear-gradient(transparent 60%, #ff720033 60%);
  padding-bottom: 2px;
}

.text_box_red {
  color: #fff;
  background-color: #ff0000;
  width: fit-content;
  padding: 0px 4px 1px 4px;
}
.text_box_black {
  color: #fff;
  background-color: #111;
  box-shadow: 4px 4px 0px 0px rgba(128, 128, 128, 1);
  padding: 2px 4px;
}
.text_box_ora {
  color: #fff;
  background-color: #ff7200;
  width: fit-content;
  padding: 0px 4px 1px 4px;
}

.bg01,
.bg02 {
  background-size: cover;
  background-position: top center;
  background-color: #111;
}
.bg01 {
  background-image: url("../images/fv-bg.webp");
}
.bg02 {
  background-image: url("../images/bg.webp");
}

.parallelogram {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.parallelogram img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.tb_only,
.pc_only {
  display: none;
}
.sp_only {
  display: flex;
}

@media (min-width: 768px) {
  .container {
    padding: 80px 16px 80px 8px;
  }
  .sp_only {
    display: none;
  }
  .tb_only {
    display: flex;
  }
  .container {
    padding: 64px 0px;
  }
  .parallelogram {
    transform: skewX(-4deg);
  }
  .parallelogram img {
    transform: translate(-50%, -50%) skewX(4deg) scale(1.2);
  }
}

@media (min-width: 1080px) {
  body {
    font-size: 18px;
  }
  .tb_only {
    display: none;
  }
  .pc_only {
    display: flex;
  }
  .heading {
    margin-bottom: 72px;
  }
  .heading.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(255, 255, 255);
  }
  .container {
    padding: 120px 0px;
  }
  .text_box_black {
    box-shadow: 8px 8px 0px 0px rgba(128, 128, 128, 1);
    padding: 2px 8px;
  }
  .no_whitespace_r {
    padding-right: 0;
  }
  .no_whitespace_l {
    padding-left: 0;
  }
}

/* 文字
-------------------------------------------------------------------*/

h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}
h1,
h3 {
  color: #111;
}

a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

h1 img {
  width: 100%;
  padding-bottom: 12px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

.bold {
  font-weight: 700;
}
.red_text {
  color: #ff0000;
}
.test_strikethrough {
  text-decoration: line-through;
}

@media (min-width: 768px) {
  h1 img {
    width: 58%;
    padding-bottom: 16px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
}

@media (min-width: 1080px) {
  h1 img {
    width: 600px;
    padding-bottom: 16px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 26px;
  }
}

@media (min-width: 1400px) {
  h1 img {
    width: 704px;
  }
}

/* ボタン
-------------------------------------------------------------------*/

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  height: 40px;
  border-radius: 40px;
  width: 256px;
  padding-right: 8px;
}

.red {
  background-color: #ff0000;
  transition: all 0.5s ease-out;
}

.gre {
  background-color: #45b331;
  transition: all 0.5s ease-out;
}
.gre.inview.active {
  box-shadow: 8px 8px 0px 0px rgba(255, 255, 255, 1);
}

.cover_text .btn {
  box-shadow: 8px 8px 0px 0px rgba(255, 255, 255, 1);
}

.btn_decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.decoration {
  display: flex;
  text-shadow: 0px 0px 8px rgba(65, 65, 65, 0.4);
}
p.decoration {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 8px;
}
.decoration::before,
.decoration::after {
  content: "";
  width: 2px;
  height: 24px;
  background-color: #fff;
  display: block;
}
.decoration::before {
  margin-right: 12px;
  margin-top: 4px;
  transform: rotate(-30deg);
}
.decoration::after {
  margin-left: 12px;
  margin-top: 4px;
  transform: rotate(30deg);
}

.circle_bottom {
  position: relative;
  text-decoration: none;
  text-align: center;
}
a.circle_bottom::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
a.circle_bottom::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 23px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2.4px solid #45b331;
  border-right: 2.4px solid #45b331;
  transform: translateY(-2px) rotate(45deg);
  box-sizing: border-box;
}
a.red.circle_bottom::after {
  top: 0px;
  right: 21px;
  border-top: 2px solid #ff0000;
  border-right: 2.4px solid #ff0000;
  transform: translateY(-2px) rotate(135deg);
}

header .gre {
  display: none;
}

@media (min-width: 768px) {
  .btn {
    height: 40px;
    width: 272px;
    font-size: 18px;
  }
  header .gre {
    font-size: 18px;
    display: flex;
    width: 272px;
    height: 40px;
    box-shadow: none;
    padding: 0;
  }
}

@media (min-width: 1080px) {
  .btn {
    height: 48px;
    width: 296px;
    font-size: 20px;
  }
  p.decoration {
    font-size: 18px;
    padding-bottom: 12px;
  }
  header .gre {
    border: 2px solid #45b331;
  }
  .red:hover,
  .gre:hover,
  .cta .btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255);
    transform: translate(8px, 8px);
    transition: 0.5s;
  }
  .btn.gre.inview.active:hover {
    box-shadow: 0px 0px 0px 0px rgb(255, 255, 255);
  }
  .cta .btn.gre.inview.active:hover {
    box-shadow: 0px 0px 0px 0px rgb(0, 0, 0);
  }

  header .gre:hover {
    color: #45b331;
    background-color: #fff;
    transform: translate(0);
    transition: 0.5s;
  }
  header .menu a:hover {
    color: #63e44c;
    transition: 0.5s;
  }
}

/* ヘッダー
-------------------------------------------------------------------*/
header {
  width: auto;
}

.header_line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 16px 8px;
  margin: 0 8px;
  border-bottom: 2px solid #fff;
}
.header_logo img {
  height: 40px;
}

.menu {
  display: none;
}

@media (min-width: 768px) {
  header {
    background-color: rgb(20, 20, 20, 0.2);
  }
}

@media (min-width: 1080px) {
  .header_line {
    padding: 20px 16px;
    margin: 0 16px;
  }
  .header_logo img {
    height: 44px;
  }
}

@media (min-width: 1400px) {
  .header_menu {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .menu {
    display: flex;
    gap: 16px;
    text-shadow: 0px 0px 8px rgba(65, 65, 65, 0.4);
  }
}

/* カバー
-------------------------------------------------------------------*/

.cover .container {
  padding: 0;
}

.cover .wrap {
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.cover_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 56px 16px 80px 16px;
}
.cover_text h2 {
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 600;
}
.cover_text p.text_box_red {
  font-size: clamp(20px, 4.8vw, 28px);
  font-weight: 700;
}
.btn_column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 32px;
  padding-top: 24px;
}

.fv_img {
  width: 100%;
  height: 320px;
  background-image: url("../images/fv-bg.webp");
  background-size: cover;
  background-position: top center;
  padding-bottom: 80px;
}
.fv_img .parallelogram {
  transform: skewY(-8deg);
}
.fv_img .parallelogram img {
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform: translate(-50%, -50%) skewY(8deg) scale(1.2);
}

.fv_img .parallelogram img:nth-child(1) {
  animation: slide01 16s ease-in-out infinite;
}
.fv_img .parallelogram img:nth-child(2) {
  animation: slide02 16s ease-in-out infinite;
}

@keyframes slide01 {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) skewY(8deg) scale(1.2);
  }
  35% {
    opacity: 1;
    transform: translate(-50%, -50%) skewY(8deg) scale(1.2);
  }
  55% {
    opacity: 0;
    transform: translate(-80%, -50%) skewY(8deg) scale(1.2); /* 少しだけ左に滑らせる */
  }
  80% {
    opacity: 0;
    transform: translate(-20%, -50%) skewY(8deg) scale(1.2); /* 少しだけ左に滑らせる */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) skewY(8deg) scale(1.2);
  }
}

@keyframes slide02 {
  0%,
  35% {
    opacity: 0;
    transform: translate(-20%, -50%) skewY(8deg) scale(1.2); /* 少し右で待機 */
  }
  55% {
    opacity: 1;
    transform: translate(-50%, -50%) skewY(8deg) scale(1.2); /* 中央に滑り込みつつ表示 */
  }
  80% {
    opacity: 1;
    transform: translate(-50%, -50%) skewY(8deg) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-80%, -50%) skewY(8deg) scale(1.2); /* 左に滑らせて退場 */
  }
}

@media (min-width: 768px) {
  .cover {
    position: relative;
    height: 720px;
  }
  .cover .container {
    position: absolute;
    z-index: 1;
    padding: 0;
  }
  .cover .wrap {
    flex-direction: row;
    width: 100%;
    max-width: none;
    margin: 0 auto 0 0;
  }
  .cover_text {
    padding: 80px 0px 0px 24px;
  }
  .cover_text h2 {
    font-size: 22px;
  }
  .cover_text p.text_box_red {
    font-size: 26px;
  }
  .btn_column {
    padding-top: 32px;
  }
  .no_whitespace_r {
    padding-right: 0;
  }
  .no_whitespace_l {
    padding-left: 0;
  }
  .fv_img {
    position: absolute;
    height: 720px;
    width: 55%;
    min-width: 480px;
    top: 0;
    right: 32px;
    padding-bottom: 0px;
    background-image: none;
  }
  .fv_img .parallelogram {
    transform: skewX(-4deg);
  }
  .fv_img .parallelogram img {
    transform: translate(-50%, -50%) skewX(4deg) scale(1.75);
  }
  @keyframes slide01 {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(4deg) scale(1.75);
    }
    35% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(4deg) scale(1.75);
    }
    55% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(4deg) scale(1.75); /* 少しだけ左に滑らせる */
    }
    80% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(4deg) scale(1.75); /* 少しだけ左に滑らせる */
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(4deg) scale(1.75);
    }
  }

  @keyframes slide02 {
    0%,
    35% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(4deg) scale(1.75); /* 少し右で待機 */
    }
    55% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(4deg) scale(1.75); /* 中央に滑り込みつつ表示 */
    }
    80% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(4deg) scale(1.75);
    }
    100% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(4deg) scale(1.75); /* 左に滑らせて退場 */
    }
  }
}

@media (min-width: 1080px) {
  .cover {
    position: relative;
    height: 792px;
  }
  .cover .wrap {
    width: auto;
    max-width: none;
    min-width: none;
  }
  .cover_text {
    padding: 60px 0px 0px 56px;
  }
  .cover_text h2 {
    font-size: 26px;
  }
  .cover_text p.text_box_red {
    font-size: 32px;
  }
  .scroll {
    position: absolute;
    height: 300px;
    right: 40px;
    bottom: -8px;
  }
  .scrollbar-text {
    display: inline-block;
    position: absolute;
    bottom: 0;
    padding: 10px 10px 110px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    left: 50%;
    transform: translateX(-50%);
  }
  .scrollbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
  }
  .scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background: #fff;
    animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
  @keyframes liner {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    30% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    70% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

  .fv_img {
    height: 792px;
    width: 60%;
    right: 58px;
  }
  .fv_img .parallelogram {
    transform: skewX(-8deg);
  }
  .fv_img .parallelogram img {
    transform: translate(-50%, -50%) skewX(8deg) scale(1.5);
  }
  @keyframes slide01 {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.5);
    }
    35% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.5);
    }
    55% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(8deg) scale(1.5); /* 少しだけ左に滑らせる */
    }
    80% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(8deg) scale(1.5); /* 少しだけ左に滑らせる */
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.5);
    }
  }

  @keyframes slide02 {
    0%,
    35% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(8deg) scale(1.5); /* 少し右で待機 */
    }
    55% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.5); /* 中央に滑り込みつつ表示 */
    }
    80% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.5);
    }
    100% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(8deg) scale(1.5); /* 左に滑らせて退場 */
    }
  }
}

@media (min-width: 1400px) {
  .cover {
    max-width: 1560px;
    margin: 0 auto;
  }
  .cover_text {
    padding: 64px 0px 0px 96px;
  }
  .fv_img .parallelogram img {
    transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
  }
  @keyframes slide01 {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
    }
    35% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
    }
    55% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(8deg) scale(1.2); /* 少しだけ左に滑らせる */
    }
    80% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(8deg) scale(1.2); /* 少しだけ左に滑らせる */
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
    }
  }

  @keyframes slide02 {
    0%,
    35% {
      opacity: 0;
      transform: translate(-20%, -50%) skewX(8deg) scale(1.2); /* 少し右で待機 */
    }
    55% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.2); /* 中央に滑り込みつつ表示 */
    }
    80% {
      opacity: 1;
      transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
    }
    100% {
      opacity: 0;
      transform: translate(-80%, -50%) skewX(8deg) scale(1.2); /* 左に滑らせて退場 */
    }
  }
}

/* ループテキスト OK
-------------------------------------------------------------------*/

.loop {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  padding: 8px 0;
  background-color: #fff;
}

.loop_text {
  display: flex;
  gap: 20px;
  animation: loop_text 56s linear infinite;
}

.loop_text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #ff0000;
}

@keyframes loop_text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.loop_text .line {
  padding-right: 24px;
  border-right: 2px solid #ff0000;
}

@media (min-width: 768px) {
  .loop_text h2 {
    font-size: 32px;
  }
}

@media (min-width: 1080px) {
  .loop_text h2 {
    font-size: 40px;
  }
}

/* 新しい就活プログラム
-------------------------------------------------------------------*/

.message {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}

.message .container {
  max-width: 424px;
  margin: 0 auto;
  padding: 72px 16px 40px 8px;
}

.message .wrap {
  padding-left: 8px;
  gap: 48px;
}

.message .text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.message .text .p_up {
  font-weight: 700;
}
.text_box_blue {
  flex-direction: column;
  gap: 4px;
}
.text_box_blue p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 6px;
  color: #fff;
  background-color: #271b39;
  padding: 2px 4px;
  width: fit-content;
}
.text_box_blue img {
  width: 18px;
}
.message .text span {
  font-size: 26px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .message .container {
    max-width: 784px;
    padding: 80px 16px 40px 8px;
    margin: 0 auto;
  }
  .message .wrap {
    flex-direction: row-reverse;
    gap: 40px;
  }
  .message .text {
    flex: 1;
  }

  .message_img {
    flex-direction: column;
    display: flex;
    width: 240px;
    height: auto;
    margin: 0 8px;
    padding-left: 8px;
  }
  .message_img .parallelogram {
    width: 90%;
    transform: skewX(-4deg);
    box-shadow: 0px 0px 8px 0px rgba(65, 65, 65, 0.4);
  }
  .message_img .parallelogram:nth-child(2) {
    margin: 0 0 0 auto;
    margin-top: -40px;
  }
  .message_img img {
    width: 100%;
    top: 50%;
    height: auto;
    transform: translate(-50%, -50%) skewX(4deg) scale(1.3);
  }
}

@media (min-width: 1080px) {
  .message .container {
    max-width: 1040px;
    padding: 144px 0px 24px 0px;
  }
  .message .wrap {
    padding-left: 0px;
    gap: 72px;
  }
  .message .heading {
    margin-bottom: 24px;
  }
  .message .text p {
    font-size: 20px;
  }
  .text_box_blue {
    gap: 8px;
  }
  .text_box_blue p {
    gap: 8px;
    padding: 4px 8px;
  }
  .text_box_blue img {
    width: 20px;
  }
  .message .text span {
    font-size: 30px;
  }
  .message_img {
    width: 400px;
    margin: 0;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .message_img .parallelogram {
    width: 90%;
    transform: skewX(-8deg);
  }
  .message_img img {
    transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
  }
}

/* 特徴
-------------------------------------------------------------------*/

.feature .container {
  padding: 40px 0px 80px 0px;
  max-width: 504px;
  margin: 0 auto;
}

.feature .wrap {
  padding-left: 0;
  gap: 40px;
}

.feature .heading {
  margin-left: 8px;
}

.feature .contents {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.feature .box {
  width: auto;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  padding: 28px 16px 24px 16px;
  margin: 0 16px;
  transition: all 0.8s ease-out;
}
.feature .box.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(157, 53, 18, 1);
}
.feature .text_box_red {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1;
  padding-bottom: 2px;
}

.feature .line {
  color: #111;
  border-bottom: 1px solid #c3c3c3;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.feature_img {
  width: 100%;
  height: 240px;
}
.feature_img .parallelogram {
  transform: skewY(-4deg);
}
.feature_img .parallelogram img {
  top: 70%;
  transform: translate(-50%, -50%) skewy(4deg) scale(1.2);
}

@media (min-width: 768px) {
  .feature .container {
    padding: 64px 0px 96px 0px;
    max-width: 824px;
  }
  .feature .wrap {
    gap: 104px;
  }
  .feature .contents {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    height: 400px;
  }
  .feature .heading {
    margin-bottom: 72px;
  }
  .feature .box {
    position: absolute;
    z-index: 1;
    width: 440px;
    padding: 32px 24px;
    margin: 0 16px;
  }

  .feature .text_box_red {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .feature .line {
    padding-bottom: 14px;
    margin-bottom: 16px;
  }

  .feature_img {
    position: absolute;
    width: calc(400px - 16px);
    height: 472px;
  }
  .contents:nth-of-type(even) .feature_img {
    left: 24px;
  }
  .contents:nth-of-type(odd) .feature_img {
    right: 24px;
  }
  .contents:nth-of-type(even) .box {
    right: 0px;
  }

  .feature_img .parallelogram {
    transform: skewX(-4deg);
  }
  .feature_img .parallelogram img {
    top: 50%;
    right: 40%;
    transform: translate(-50%, -50%) skewX(4deg) scale(1.2);
  }
}

@media (min-width: 1080px) {
  .feature .container {
    padding: 120px 0px 120px 0px;
    max-width: 1080px;
  }
  .feature .heading {
    margin-bottom: 64px;
  }
  .feature .wrap {
    gap: 72px;
  }
  .feature .contents {
    height: 512px;
  }
  .feature .box {
    width: 568px;
    padding: 40px 40px;
    margin: 0 16px;
  }
  .feature .box.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(157, 53, 18, 1);
  }
  .feature .text_box_red {
    font-size: 40px;
  }
  .feature_img {
    position: absolute;
    width: calc(560px - 32px);
    height: 512px;
  }
  .feature_img .parallelogram {
    transform: skewX(-8deg);
  }
  .feature_img .parallelogram img {
    top: 50%;
    right: 40%;
    transform: translate(-50%, -50%) skewX(8deg) scale(1.2);
  }
  .contents:nth-of-type(even) .feature_img {
    left: 40px;
  }
  .contents:nth-of-type(odd) .feature_img {
    right: 40px;
  }
}

/* CTA
-------------------------------------------------------------------*/

.cta {
  background-color: #222;
  position: relative;
  height: 440px;
  padding: 1px 0px;
}

.cta .overlap {
  position: absolute;
  z-index: 1;
  top: 28%;
  left: 50%;
  width: calc(100% - 48px);
  box-sizing: border-box;
  transform: translateX(-50%);
}

.cta .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  max-width: 360px;
  box-sizing: border-box;
  padding: 24px 8px 32px 16px;
}
.cta .box::after {
  transform: skewX(-8deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  transition: all 0.8s ease-out;
}
.cta .box.inview.active::after {
  box-shadow: 8px 8px 0px 0px rgb(255, 0, 0, 1);
}

.cta .balloon {
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
  width: calc(100% - 12px);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 12px 4px 12px 8px;
}
.cta .balloon::after {
  transform: skewX(-8deg);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111;
}

.cta .balloon h2 {
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.cta .balloon::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #111;
}

.cta .btn {
  position: relative;
  z-index: 1;
  margin: 24px 20px 0px 0;
}
.cta .btn.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

.loop_image {
  display: flex;
  width: 100%;
  height: 240px;
  overflow: hidden;
  animation: loop_image 80s infinite linear 0.5s both;
}

.loop_image img {
  max-width: none;
  width: auto;
  height: 100%;
  animation: slide1 90s -45s linear infinite;
}

.loop_image img:nth-child(2) {
  animation: slide2 90s linear infinite;
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media (min-width: 768px) {
  .cta {
    height: 424px;
  }
  .cta .overlap {
    top: 22%;
    width: 100%;
  }
  .cta .box {
    max-width: 424px;
  }
  .cta .balloon {
    width: fit-content;
    padding: 12px 16px 12px 24px;
  }
  .cta .balloon h2 {
    font-size: 22px;
  }
  .cta .btn {
    margin: 32px 20px 0px 0;
  }
}

@media (min-width: 1080px) {
  .cta {
    height: 480px;
  }
  .cta .overlap {
    top: 24%;
    left: 50%;
  }

  .cta .box {
    padding: 28px 8px 36px 16px;
    max-width: 440px;
  }
  .cta .box.inview.active::after {
    box-shadow: 16px 16px 0px 0px rgb(255, 0, 0, 1);
  }
  .cta .balloon h2 {
    font-size: 24px;
  }
  .loop_image {
    height: 280px;
  }
}

/* 経路
-------------------------------------------------------------------*/

.plan {
  background-image: url("../images/fv-bg.webp");
  background-size: cover;
  background-position: top center;
}

.plan .container {
  max-width: 420px;
  margin: 0 auto;
}
.campaign {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  background-color: #ff0000;
  padding: 12px 8px;
  margin: 0 0 40px 8px;
}
.campaign::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 64px;
  border: 20px solid transparent;
  border-top: 20px solid #ff0000;
}
.campaign p:first-child {
  font-size: 16px;
  text-decoration: underline;
  width: fit-content;
  padding-bottom: 4px;
}

.plan .wrap {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  gap: 32px;
}

.plan .red-decoration,
.plan .ora-decoration {
  font-size: 56px;
  line-height: 0.9;
  font-weight: 700;
}
.plan .ora-decoration {
  line-height: 0.89;
}
.red-decoration {
  color: #ff0000;
}
.ora-decoration {
  color: #ff7200;
}

.plan .box {
  box-sizing: border-box;
  color: #111;
  background-color: #fff;
  padding: 24px 16px;
  transition: all 0.8s ease-out;
}
.plan .box h3 {
  font-size: 20px;
}

.plan .box.ora_shadow.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(255, 114, 0, 1);
}
.plan .box.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(255, 0, 0, 1);
}

.plan .line {
  padding-bottom: 16px;
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 18px;
}

.plan table {
  font-size: 14px;
  table-layout: fixed;
  border-spacing: 0px;
  padding-top: 16px;
  width: 100%;
}
.plan th {
  padding: 4px 8px;
  color: #fff;
  background-color: #ff0000;
  border-bottom: 4px solid #fff;
  text-align: left;
  width: 48%;
}
.plan td {
  padding: 2px 8px 2px 0px;
  color: #111;
  background-color: #f1f1f1;
  border-bottom: 4px solid #fff;
  text-align: right;
}

.ora_shadow th {
  background-color: #ff7200;
}

@media (min-width: 768px) {
  .plan .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 944px;
    width: 100%;
    padding: 80px 16px;
  }
  .plan .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 8px;
    gap: 24px;
  }
  .plan .contents {
    width: 48%;
  }
}

@media (min-width: 1080px) {
  .plan .container {
    max-width: 1080px;
    padding: 120px 24px;
  }
  .campaign {
    font-size: 18px;
    padding: 16px;
  }
  .campaign::before {
    left: 85px;
  }
  .campaign p:first-child {
    font-size: 20px;
    text-decoration: underline;
    width: fit-content;
  }
  .plan .wrap {
    gap: 40px;
  }
  .plan .red-decoration,
  .plan .ora-decoration {
    font-size: 72px;
  }
  .plan .box {
    padding: 40px;
  }
  .plan .box.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(255, 0, 0, 1);
  }
  .plan .box.ora_shadow.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(255, 114, 0, 1);
  }
  .plan .box h3 {
    font-size: 26px;
    padding-bottom: 4px;
  }
  .plan .box .p_down {
    font-size: 22px;
  }
  .plan .line {
    padding-bottom: 22px;
    margin-bottom: 24px;
  }
  .plan table {
    font-size: 16px;
    padding-top: 24px;
  }
  .plan th {
    width: 40%;
  }
}

/* トライアル求人
-------------------------------------------------------------------*/

.achievement {
  background-color: #f7f7f7;
  border-bottom: 3px solid #222;
}

.achievement .container {
  padding: 72px 0px;
}

.achievement .wrap {
  overflow-x: auto;
  flex-direction: row;
  gap: 16px;
  padding-left: 0px;
}

.achievement .heading {
  margin-bottom: 40px;
  margin-left: 8px;
}
.achievement .heading.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

.achievement .box {
  min-width: 320px;
  background-color: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
  margin: 16px 0 24px 0;
}
.achievement .box:first-child {
  margin-left: 16px;
}
.achievement .box:last-child {
  margin-right: 16px;
}

.achievement h3 {
  font-size: 20px;
  padding-bottom: 8px;
}
.achievement p {
  font-size: 16px;
  color: #222;
}

.achievement .text {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 24px 20px;
}
.achievement .line {
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}
.column_bla_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #f2f2f2;
}
.column_bla_box p {
  color: #111;
}
.column_bla_box p:first-child {
  color: #fff;
  background-color: #111;
  font-size: 18px;
  padding: 2px 4px;
}
.column_bla_box p:last-child {
  font-size: 18px;
  padding: 2px 8px 2px 16px;
}

@media (min-width: 768px) {
  .achievement .container {
    margin: 0 auto;
    padding: 80px 0px;
  }
  .triangle01 {
    background-image: linear-gradient(-240deg, #222 80px, transparent 0),
      linear-gradient(-60deg, #222 80px, transparent 0);
  }
  .achievement .heading {
    margin-bottom: 48px;
  }
  .achievement .wrap {
    gap: 24px;
  }
  .achievement .text {
    padding: 24px;
  }
}

@media (min-width: 1080px) {
  .achievement .container {
    padding: 120px 0px;
  }
  .triangle01 {
    background-image: linear-gradient(-240deg, #222 120px, transparent 0),
      linear-gradient(-60deg, #222 120px, transparent 0);
  }
  .achievement .heading.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(0, 0, 0);
  }
  .achievement .heading {
    margin-bottom: 56px;
    margin-left: 72px;
  }
  .achievement .box:first-child {
    margin-left: 80px;
  }
}

@media (min-width: 1760px) {
  .achievement .container {
    max-width: 1720px;
    margin: 0 auto;
  }
  .achievement .heading {
    margin-left: 0px;
  }
  .achievement .box:first-child {
    margin-left: 8px;
  }
}

/* プロセス
-------------------------------------------------------------------*/

.flow {
  background-color: #f7f7f7;
  border: 3px solid #222;
}
.triangle01 {
  background-image: linear-gradient(98deg, #222 32px, transparent 0),
    linear-gradient(-82deg, #222 32px, transparent 0);
}

.flow .container {
  max-width: 680px;
  margin: 0 auto;
}

.flow .heading.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

.flow .wrap {
  gap: 16px;
}

.flow .box {
  display: flex;
  flex-direction: column;
}

.flow .number {
  display: flex;
  gap: 12px;
  color: #fff;
  line-height: 1.1;
  background-color: #111;
  font-size: 34px;
  font-weight: 800;
  padding: 14px 4px 12px 12px;
}
.flow .box:last-of-type .number {
  background-color: #ff0000;
}

.flow .number img {
  height: 40px;
}

.flow .description {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 16px 12px 20px 12px;
}
.flow .box .column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow .box:last-of-type p.text_box_red {
  margin-top: 4px;
  font-size: 22px;
}

.flow .line {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d9d9d9;
}

.schedule {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 4px;
}

.text_box_red.bold,
.text_box_ora.bold {
  margin-bottom: 4px;
}
.flow .plan_text:first-of-type {
  padding-bottom: 16px;
}

@media (min-width: 520px) {
  .text_box_red br.sp_only {
    display: none;
  }
}

@media (min-width: 768px) {
  .flow .container {
    max-width: 856px;
    padding: 80px 16px;
  }
  .triangle01 {
    background-image: linear-gradient(-240deg, #222 80px, transparent 0),
      linear-gradient(-60deg, #222 80px, transparent 0);
  }
  .flow .box {
    flex-direction: row;
  }
  .flow .number {
    flex-direction: column;
    gap: 16px;
    font-size: 38px;
    padding: 20px 12px 0px 12px;
  }
  .flow .number img {
    width: 100%;
    max-width: 44px;
    height: auto;
  }
  .flow .description {
    padding: 24px 16px 24px 16px;
  }
  .flow .box:last-of-type .description {
    width: 100%;
  }
  .flow .box:last-of-type p.text_box_red {
    font-size: 24px;
  }
}

@media (min-width: 1080px) {
  .flow .container {
    max-width: 1080px;
    padding: 120px 16px;
  }
  .triangle01 {
    background-image: linear-gradient(-240deg, #222 120px, transparent 0),
      linear-gradient(-60deg, #222 120px, transparent 0);
  }
  .flow .heading.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(0, 0, 0);
  }
  .flow .number {
    gap: 16px;
    font-size: 48px;
    padding: 24px 20px 0px 20px;
  }
  .flow .number img {
    width: 100%;
    max-width: 64px;
    height: auto;
  }
  .flow .description {
    padding: 32px;
  }
  .flow .line {
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
  .plan_text {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .plan_text .text_box_red,
  .plan_text .text_box_ora {
    display: flex;
    align-items: center;
    width: 104px;
    height: 96px;
    padding-left: 16px;
  }
  .flow .plan_text:first-of-type {
    padding-bottom: 8px;
  }

  .schedule {
    font-size: 16px;
    gap: 8px;
    padding-top: 8px;
  }

  .flow .box:last-of-type .description {
    align-items: flex-end;
    flex-direction: row;
    padding: 16px 32px 0px 32px;
    gap: 40px;
  }
  .flow .box .column {
    margin: auto 0;
    padding-bottom: 24px;
  }
  .description_img {
    flex: 1;
  }
  .description_img img {
    width: 100%;
    height: auto;
  }
  .flow .box:last-of-type p.text_box_red {
    font-size: 26px;
  }
}

/* FBシート＆報酬体系
-------------------------------------------------------------------*/

.salary {
  background-color: #fff;
  border: 3px solid #222;
}
.salary .container {
  max-width: 480px;
  margin: 0 auto;
}

.triangle02 {
  background-image: linear-gradient(-98deg, #222 32px, transparent 0),
    linear-gradient(82deg, #222 32px, transparent 0);
}
.salary .heading.inview.active {
  box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
}

.salary .wrap {
  padding-left: 8px;
}

@media (min-width: 768px) {
  .salary .container {
    max-width: 960px;
    padding: 80px 16px;
  }
  .triangle02 {
    background-image: linear-gradient(240deg, #222 80px, transparent 0),
      linear-gradient(60deg, #222 80px, transparent 0);
  }
}

@media (min-width: 1080px) {
  .salary .container {
    padding: 120px 0;
  }
  .triangle02 {
    background-image: linear-gradient(240deg, #222 120px, transparent 0),
      linear-gradient(60deg, #222 120px, transparent 0);
  }
  .salary .heading.inview.active {
    box-shadow: 16px 16px 0px 0px rgb(0, 0, 0);
  }
}

/* フッター
-------------------------------------------------------------------*/
footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 64px 0 24px 0;
  color: #fff;
  background: #1c1c1c;
  gap: 16px;
}

footer a {
  color: #fff;
}

.footer-sns {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0;
}
.footer-sns img {
  width: 48px;
}

.footer-sns a:hover {
  opacity: calc(0.6);
}

.footer-logo img {
  height: 48px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  footer {
    padding: 72px 0 40px 0;
  }
  .footer-logo img {
    height: 56px;
    margin-top: 40px;
  }
}
