/*
- 目次
1. ResetのCSS
2. job-infoのCSS
3. front-pageのCSS
4. cultureのCSS
5. aboutのCSS
6. jobのCSS
7. projectのCSS
8. interview-singleのCSS
9. blobのCSS
10. cloudのCSS
11. lottery
*/

/* ===================================
  1. ResetのCSS start
===================================== */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
}

main {
  overflow: hidden;
}

header li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===================================
  1. ResetのCSS start
===================================== */

.navbar {
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6rem 2.4rem;
  background-color: #fff;
  box-shadow: 3px 1px 30px #cccccc7a;
}

.navbar .container-1000 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

.navbar-sub {
  background-color: #fff;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #101010;
  transition: all 0.3s ease-in-out;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item {
  margin-left: 2.8rem;
}

.nav-link.btn-cta {
  width: 160px;
  min-height: 50px;
  font-size: 1.4rem;
  line-height: calc(20 / 16);
}

.menu-mini {
  font-size: 12px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.3s ease;
}

.logo {
  min-width: 200px;
  max-width: 200px;
}

@media only screen and (width <= 1200px) {
  .nav-menu {
    position: fixed;
    top: 89px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 27px rgb(0 0 0 / 5%);
    transition: 0.3s;
  }

  .navbar {
    padding: 0;
  }

  .navbar-sub .nav-menu {
    background: #fff;
  }

  .active {
    left: 0;
    z-index: 99999999;
  }

  .nav-item {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

.container {
  position: relative;
}

.background {
  position: sticky; /* Use sticky positioning */
  top: 0; /* Sticks to the top of the viewport */
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.background:first-child {
  background-image: url("https://artclick.biz/lopia-new-recruit/assets/img/main1.jpg");
}

.background:nth-child(2) {
  background-image: url("https://artclick.biz/lopia-new-recruit/assets/img/main2.jpg");
}

.background:nth-child(3) {
  background-image: url("https://artclick.biz/lopia-new-recruit/assets/img/main3.jpg");
}

.background:nth-child(2) .content-wrapper {
  padding-top: 80px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
  text-align: center;
}

.content-title {
  font-size: 10vh;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.content-title-eng {
  margin-bottom: 40px;
  font-size: 18.5rem;
  line-height: 1.05;
  text-transform: unset;
  letter-spacing: 0.08em;
}

.content-subtitle {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.39;
}

@media only screen and (width <= 1200px) {
  .navbar .container-1000 {
    padding: 20px;
  }
}

@media only screen and (width <= 768px) {
  .content-title {
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

.grid-center {
  display: grid;
  place-content: center;
  min-height: 100vh;
}

.wrapper {
  width: min(100% - 2rem, 60rem);
  margin-inline: auto;
}

section p {
  font-size: clamp(1.6rem, 0.375rem + 1.714vw, 1.6rem);
}

section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 0.375rem + 1.714vw, 2.2rem);
  text-transform: uppercase;
}

.section-sticky {
  --text-clr: black;

  position: relative;
  display: flex;
  overflow: hidden;
  font-weight: bold;
}

.section-sticky h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 9.6rem;
  line-height: 1.35;
  text-align: left;
  letter-spacing: 0.035em;
  -webkit-box-orient: vertical;
}

.section-sticky .msg-text {
  font-size: 2.6rem;
  line-height: 1.75;
  letter-spacing: 0.14em;
}

.section-sticky .msg-text-underline {
  display: -webkit-box;
  width: fit-content;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-decoration: underline;
  -webkit-box-orient: vertical;
}

.section-sticky .msg-text-right {
  font-size: 2.3rem;
  line-height: 2.47;
  color: #fff;
  letter-spacing: 0.075em;
}

.section-sticky .msg-text-right span {
  font-size: 3.7rem;
  line-height: 1.54;
  letter-spacing: 0.075em;
}

/* Responsive adjustments */
@media (width <= 767px) {
  .section-sticky {
    flex-direction: column;
  }

  .grid-center {
    min-height: 50vh;
  }

  section p {
    font-size: clamp(1.5rem, 0.375rem + 1.714vw, 1.5rem);
  }
}

@media (width <= 676px) {
  .left,
  .right {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .left {
    transform: unset;
  }
}

.left,
.right {
  width: 100%;
  height: 100vh;
  transition: all 0.25s linear;
}

.left {
  transform: translateY(-100%);
}

.background-blue {
  background-color: #a0c1d1;
}

.background-blue,
.background-yellow {
  width: 100%;
  border: 1px solid hsl(228deg 5% 22% / 40%);
}

.background-blue p,
.background-yellow p {
  font-size: clamp(1.6rem, 0.375rem + 1.714vw, 3rem);
}

.background-white {
  background-color: #fff;
}

.background-yellow {
  background-color: #f4f1bb;
}

.background-red {
  background: #df0045;
}

.background-red .btn-red-wrap {
  color: #fff;
}

.msg-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px;
  word-break: break-all;
}

/* Media Queries */
@media (width <= 767px) {
  .section-sticky {
    flex-direction: column;
  }

  .msg-text-container {
    min-height: 50vh;
    padding: 20px 40px;
  }
}

@media (width <= 676px) {
  .left,
  .right {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .left {
    transform: unset;
  }
}

/* =========== */
.img-fluid {
  width: 100%;
}

.container-1000 {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.container-1200 {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.para-big {
  font-size: 2rem;
}

.para {
  line-height: 1.8;
  letter-spacing: 1px;
}

.para-bold {
  font-weight: bold !important;
}

.font-12 {
  font-size: 1.2rem;
}

.font-14 {
  font-size: 1.4rem;
}

.font-18 {
  font-size: 1.8rem;
}

.font-25 {
  font-size: 2.5rem;
}

.font-32 {
  font-size: 3.2rem;
}

.font-30 {
  font-size: 3rem;
}

.mt30 {
  margin-top: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (width <= 500px) {
  .mb50 {
    margin-bottom: 25px;
  }

  .font-12 {
    font-size: 1rem;
  }

  .font-14 {
    font-size: 1.2rem;
  }

  .font-18 {
    font-size: 1.6rem;
  }

  .font-25 {
    font-size: 2rem;
  }

  .font-32 {
    font-size: 2.4rem;
  }

  .font-30 {
    font-size: 2.2rem;
  }
}

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

.sec-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-size: 6rem;
  color: #fff;
  text-align: center;
}

.hero-content {
  position: absolute;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee_container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.2rem 0;
  margin-top: -150px;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
}

.marquee {
  display: inline-block;
  display: flex;
  gap: 20px;
  font-size: 5rem;
  animation: marquee 30s linear infinite;
}

.marquee p {
  font-size: 6rem;
  color: transparent; /* Makes the text fill transparent */
  -webkit-text-stroke: 1px #fff;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.sec-1 {
  padding-top: 120px;
  margin-top: -200px;
}

.sec-1 .text1-wrap {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.sec1-content {
  margin-top: 30px;
}

.content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-wrap2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.content-wrap .left-area {
  position: relative;
  width: 100%;
  max-width: 50vw;
}

.content-wrap2 .left-area {
  max-width: 70vw;
}

.content-wrap .right-area {
  margin-right: 15%;
}

.content-wrap2 .right-area {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 40vw;
  margin-right: 0;
  margin-left: 15%;
}

.content-wrap .top-title {
  font-size: 6vw;
  color: #df0045;
}

.content-wrap .mini-text {
  position: relative;
  display: block;
  margin-left: 100px;
  font-size: 14px;
  font-weight: bold;
  color: #df0045;
}

.content-wrap .mini-text::before {
  position: absolute;
  top: 10px;
  left: -90px;
  width: 80px;
  height: 1px;
  content: "";
  background-color: #df0045;
}

.btn-wrap a,
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-wrap a {
  width: 100%;
  max-width: 500px;
  transition: 0.3s ease;
}

.btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5;
  color: #fff;
  letter-spacing: 0.05em;
  background-color: #df0045;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.btn-cta .btn-arrow {
  position: absolute;
  top: inherit;
  right: 20px;
  width: 20px;
}

.btn-cta:hover .btn-arrow img {
  transition: all 2s ease;
  animation: rotate 2s linear infinite;
}

.btn-wrap .btn-cta.btn1 {
  max-width: 500px;
}

.btn-cta > span {
  font-size: 1.2rem;
}

.btn-cta.btn-cta--line {
  color: #df0045;
  border: 1px solid #df0045;
}

.btn-cta--gray {
  pointer-events: none;
  background-color: #b3b3b3;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(360deg);
  }
}

@media screen and (width <= 500px) {
  .btn-cta {
    min-height: 60px;
  }
}

.sec-message-1 {
  position: relative;
  padding-top: 150px;
  padding-bottom: 200px;
}

.message-container {
  max-width: 620px;
}

.message-text .title {
  margin-bottom: 50px;
  line-height: 1.8;
  color: #df0045;
  letter-spacing: 1px;
}

.message-container .para {
  text-align: justify;
}

.signature {
  text-align: right;
}

.sec-job {
  position: relative;
  z-index: 5;
  height: auto;
  min-height: 900px;
  padding-top: 200px;
}

.sec-job .job-img-blob {
  position: absolute;
  top: 120px;
  right: 0;
  width: 60vw;
  max-width: 800px;
}

.sec-job .top-wrap {
  margin-top: 80px;
}

.six-job {
  width: 100%;
  max-width: 90%;
  padding: 30px;
  margin: 0 auto;
  margin-bottom: 50px;
  background-color: #fff7eb;
  border-radius: 20px;
}

.job-topic,
.sec-topic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 50px;
}

.job-title {
  font-size: 7rem;
  color: #df0045;
}

.job-topic .para-big {
  margin-top: -20px;
}

.job-text {
  margin-bottom: 80px;
  text-align: center;
}

.job-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 40px;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 80%);
}

.popup-content {
  position: relative;
  box-sizing: border-box; /* Ensures padding doesn't add extra size */
  max-width: 70%; /* Adjust width for smaller screens */
  max-height: 70vh;
  padding: 20px 30px; /* Adjusted padding */
  margin-top: 120px;

  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  overflow-y: auto;
  background-color: #fff;
  border-radius: 8px;
}

.close-btn-up {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.popup-content .pop-img {
  width: 100%;
  padding-top: 0;
  margin: 30px auto;
  object-fit: contain;
}

.popup-content .pop-img img {
  max-width: 250px;
  margin-top: -15px;
}

.popup-content .pop-img h3 {
  margin-top: 20px;
}

.popup-content .pop-img h3 span {
  font-size: 3.5rem;
}

.popup-content .pop-img6,
.popup-content .pop-img4,
.popup-content .pop-img3 {
  max-width: 280px;
}

.popup-content .pop-text {
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}

.btn-wrap-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px;
}

.close-btn-below {
  cursor: pointer;
  background: transparent;
  border: none;
}

.close-btn-below img {
  max-width: 400px;
}

.mb30 {
  margin-bottom: 30px;
}

.font-red {
  color: #df0045;
}

/* .shake:hover{
  animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    cursor: pointer;
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
*/

.culture-sec2 .culture-types {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.culture-content {
  padding-bottom: 50px;
}

.sec-job3 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.interview-page .interview-people {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  padding: 0 30px 45px;
  margin-top: 130px;
}

.sec-interview {
  position: relative;
  z-index: 999;
  margin-top: -100px;
}

.pg-2main {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  min-height: 750px;
  max-height: 100vh;
  margin-bottom: 50px;
  background-image: url("../img/common/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pg-2main .img-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 99;
  width: 100%;
  max-height: 130px;
}

.pg-2main .blobtop1 {
  position: absolute;
  bottom: 30px;
  left: 10%;
  z-index: 999;
  max-width: 160px;
}

.pg-2main .blobtop2 {
  position: absolute;
  right: 10%;
  bottom: -30px;
  z-index: 999;
  max-width: 200px;
}

.pg-2main .interview-slider {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
}

.pg-2main .interview-slider .slide-img {
  width: auto;
  max-width: 910px;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
}

.pg-2main .interview-slider .slide-img.w500 {
  max-width: 500px;
}

.pg-2main .interview-slider .slide-img13 {
  max-width: 800px;
}

.pg-2main .interview-swiper-slide .right-area {
  position: absolute;
  right: 0;
  bottom: 40px;
}

.pg-2main .interview-swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  min-height: 750px;
  max-height: 1020px;
  margin-top: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.interview-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  height: 100vh;
  padding: 0 20px;
  margin: 0 auto;
}

.interview-main .interview-solo {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 80px;
}

.interview-main .interview-solo .left-area .catch,
.interview-swiper-slide .left-area .catch {
  display: inline-flex;
  padding: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #000;
  word-break: keep-all;
  background-color: #fff;
}

.interview-main .interview-solo .left-area {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: auto 0;
}

.interview-main .interview-solo .right-area {
  position: absolute;
  right: 0;
  bottom: 80px;
}

.interview-swiper-slide .left-area {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.interview-main .interview-solo .left-area .catch-sub {
  padding: 3px 6px;
  margin-top: -10px;
  font-size: 2.4rem;
  line-height: 1.85;
  color: #fff;
  background-color: #333;
}

.interview-swiper-slide .left-area .catch-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  margin-top: 10px;
  font-size: 2.4rem;
  color: #fff;
  background-color: #df0045;
}

.slide-img13 {
  max-width: 400px;
}

.swiper-slide-active .left-area {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.interview-swiper-slide .slide-img {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s;
}

.swiper-slide-active .slide-img {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.interview-sub .img-person {
  width: auto;
  max-width: 1010px;
  height: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.pg-2main .interview-slider .img-person {
  max-width: 400px;
}

.interview-solo .para {
  color: #fff;
}

.pg-interview-sub .interview-slider {
  width: 100%;
  max-width: 800px;
}

.pg-interview-sub {
  position: relative;
  display: flex;
  align-items: center;
  height: auto;
  min-height: 830px;
  margin-bottom: 50px;
  overflow: hidden;
  background-image: url("../img/interview/common/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.span-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 15px 0;
}

.span-wrap .name-short {
  margin-top: -10px;
  font-size: 22px;
  color: #fff;
}

.interview-solo .left-area {
  padding-bottom: 80px;
}

.green-blob {
  position: absolute;
  right: 7%;
  bottom: -50px;
  z-index: 999;
  width: 300px;
}

.sec-solo-interview {
  margin-top: 30px;
  margin-bottom: 60px;
  background-color: #fff;
}

.sec-solo-interview .content-wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 50px;
}

.sec-solo-interview .content-wrap-reverse {
  flex-direction: row-reverse;
}

.sec-solo-interview .content-wrap .right-area {
  width: 100%;
  max-width: 45%;
  margin-right: 0;
}

.sec-solo-interview .content-wrap-reverse .right-area {
  margin-right: 0;
}

.sec-solo-interview .content-wrap .left-area {
  width: 100%;
  max-width: 55%;
}

.sec-solo-int3 {
  position: relative;
  width: 100%;
  padding-top: 50px;
  background-color: #fff5e1;
  background-image:
    linear-gradient(to right, #ffddc9 1px, transparent 1px),
    linear-gradient(to bottom, #ffddc9 1px, transparent 1px);
  background-position: center center;
  background-size: 3.5rem 3.5rem;
}

.sec-solo-int3 .img-wave2 {
  position: absolute;
  bottom: 0;
  max-height: 150px;
}

.int-slider1 {
  padding-bottom: 150px;
}

.int-slider1 .swiper-wrapper {
  align-items: flex-end;
}

.interview-sub .int-slider1 {
  position: relative;
  z-index: 9992;
  overflow: hidden;
}

.int-content-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 20px;
}

.int-content-wrap .int-pop {
  max-width: 180px;
  margin-bottom: 30px;
}

.int-content-wrap .int-text {
  max-width: 200px;
  margin-bottom: 20px;
}

.int-content-wrap .int-cta {
  width: 200px;
}

.int-content-wrap .int-slide-img {
  max-width: 310px;
}

.int-content-wrap .swiper-wrapper {
  width: 100%;
  max-width: 700px;
  padding-bottom: 30px;
}

.sec-project2 {
  padding-bottom: 200px;
}

.sec-project .swiper-button-next::after,
.sec-project .swiper-rtl .swiper-button-prev::after,
.int-content-wrap .swiper-button-next::after,
.int-content-wrap .swiper-rtl .swiper-button-prev::after {
  width: 100px;
  height: 100px;
  content: "";
  background-color: transparent;
  background-image: url("../img/common/int-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
  background-size: contain;
}

.sec-project .swiper-button-prev,
.sec-project .swiper-rtl .swiper-button-next,
.sec-project .swiper-button-next,
.sec-project .swiper-rtl .swiper-button-prev,
.int-content-wrap .swiper-button-prev,
.int-content-wrap .swiper-rtl .swiper-button-next,
.int-content-wrap .swiper-button-next,
.int-content-wrap .swiper-rtl .swiper-button-prev {
  width: 60px;
}

.sec-project .swiper-button-prev::after,
.sec-project .swiper-rtl .swiper-button-next::after,
.int-content-wrap .swiper-button-prev::after,
.int-content-wrap .swiper-rtl .swiper-button-next::after {
  width: 60px;
  height: 60px;
  content: "";
  background-color: transparent;
  background-image: url("../img/common/int-right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px;
  background-size: contain;
  transform: rotate(180deg);
}

.int-content-wrap .int-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  margin-right: 15%;
}

.int-content-wrap .swiper-button-next,
.int-content-wrap .swiper-button-prev {
  position: relative;
  left: unset;
}

.int-content-wrap .swiper-horizontal > .swiper-pagination-bullets,
.int-content-wrap .swiper-pagination-bullets.swiper-pagination-horizontal,
.int-content-wrap .swiper-pagination-custom,
.swiper-pagination-fraction {
  max-width: 200px;
}

.int-content-wrap .swiper-pagination {
  position: relative;
}

.int-content-wrap .int-controls .int-controls-right {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 130px;
  height: 10px;
}

.int-content-wrap .swiper-pagination-bullet {
  width: 10px;
  height: 5px;
  background-color: #fff;
  border: 1px solid #df0045;
  border-radius: 0;
}

.int-content-wrap .swiper-pagination-bullet-active {
  background-color: #df0045;
}

.mt-80 {
  margin-top: 80px;
}

.interview-last {
  position: relative;
}

.interview-last .green-blob-bottom {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 100%;
  max-width: 50vw;
}

.about-page .sec-about .content-wrap2 {
  margin-top: 140px;
}

.text-underline {
  text-align: center;
  text-decoration: underline;
}

.para-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.para-flex span {
  line-height: 2;
}

.sec-topic {
  margin-bottom: 50px;
}

.about-page .sec-about2 .sec-topic {
  margin-bottom: 0;
}

.about-page .sec-about2 .about-text {
  margin-bottom: 80px;
}

.about-page .content-title {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0;
}

.sec-about3 .sec-topic {
  margin-top: 0;
}

.about-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

.about-chart img {
  max-width: 700px;
}

.about-content .img6 {
  max-width: 400px;
  margin-bottom: 50px;
}

.about-content {
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.about-content .content-2 .para {
  margin: 30px 0;
  text-align: center;
}

.about-content .content-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.sec-about5 .about5-img {
  width: 100%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.sec-about5 .about5-img .about5-chart {
  margin-bottom: 25px;
}

.about5-chart-double {
  display: flex;
  gap: 25px;
  align-items: center;
}

.sec-project3 {
  padding-bottom: 250px;
}

.sec-project .font-yellow {
  background: rgb(2 0 36);
  background: linear-gradient(
    180deg,
    rgb(2 0 36 / 0%) 60%,
    rgb(255 255 0 / 100%) 60%
  );
  background: linear-gradient(
    180deg,
    rgb(2 0 36 / 0%) 60%,
    rgb(255 255 0 / 100%) 60%
  );
  background: linear-gradient(
    180deg,
    rgb(2 0 36 / 0%) 60%,
    rgb(255 255 0 / 100%) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#ffff00",GradientType=1);
}

.sec-project .project-text1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px;
  color: #df0045;
}

.sec-project .project-text1 h2 {
  font-size: 26px;
}

.sec-project .project-text-wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.sec-project .project-text2 {
  margin-bottom: 50px;
}

.sec-project .img-title1 {
  max-width: 550px;
}

.sec-project .img-title2 {
  max-width: 420px;
}

.sec-project .img-title3 {
  max-width: 540px;
}

.sec-project .title-area {
  margin-bottom: 10px;
}

.sec-project .img-area {
  margin-bottom: 10px;
}

.sec-project .catch-area h3 {
  margin-bottom: 0;
  font-size: 3.6rem;
  font-feature-settings: "palt";
  color: #df0045;
}

.sec-project .catch-area .para {
  font-size: 2.2rem;
  color: #df0045;
}

.sec-project .catch-area {
  margin-bottom: 30px;
}

.sec-project .font-blue {
  color: #006cff;
}

.sec-project .font-orange {
  color: #f15a24;
}

.sec-project .talk-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.sec-project .left-area {
  flex-shrink: 0;
  min-width: 75px;
  max-width: 75px;
}

.sec-project .right-area {
  width: 100%;
}

.sec-project .project-inner-loop {
  margin-bottom: 80px;
}

.sec-project .wave {
  margin-bottom: -10px;
}

.sec-project2 .img-6-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.sec-project2 .img-6-wrap img {
  max-width: 700px;
}

.sec-project {
  position: relative;
  z-index: 3;
  padding-top: 150px;
  background-color: #fff7eb;
}

.sec-project .blob1 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 20vw;
}

.sec-project .blob2 {
  position: absolute;
  top: -15%;
  right: -10%;
  z-index: 1;
  width: 30vw;
  transform: rotate(110deg);
}

.sec-project .blob3 {
  position: absolute;
  top: 45%;
  left: 0%;
  width: 20vw;
  transform: rotate(-170deg);
}

.sec-project .blob4 {
  position: absolute;
  right: 0;
  bottom: 20%;
  width: 20vw;
  transform: rotate(80deg);
}

.sec-project .blob5 {
  position: absolute;
  bottom: -2%;
  left: -20%;
  z-index: 1;
  width: 45vw;
}

.project-text-wrap,
.sec-project .img-wrap {
  position: relative;
  z-index: 10;
}

.front-page .sec-project {
  padding: 60px 20px;
}

.front-page .sec-project .btn-wrap .btn-cta {
  margin-top: 0;
}

.front-page .sec-project .btn-wrap {
  justify-content: center;
}

.front-page .sec-project .para-big {
  font-size: 16px;
}

.right-title-wrap {
  margin-bottom: 20px;
}

.right-title-wrap .para-title-red {
  font-size: 1.8rem;
  font-weight: bold;
  color: #df0045;
}

.right-title-wrap .para-title-red .red-big {
  font-size: 30px;
}

.interview-page .right-content-wrap .para {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
}

.job-info-page .btn-cta-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.job-info-page .btn-cta-wrap .btn-cta {
  max-width: 330px;
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: center;
}

.job-info-page .requirement-table {
  width: 82.1%;
  margin: 0 auto;
}

.footer {
  position: relative;
  padding: 50px 0;
  padding: 50px 20px 130px;
  color: #fff;
  text-align: center;
  object-fit: cover;
  background-image: url("../img/common/footer-bg1.jpg");
  background-position: center;
}

.footer .footer-ilust svg {
  position: absolute;
  top: -20%;
  right: 13.13%;
  z-index: 3;
  max-width: 300px;
}

.footer .content-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: bold;
}

.footer .content-footer .footer-title {
  position: relative;
  z-index: 50;
  margin-bottom: 10px;
  font-size: 6vw;
}

.footer .content-footer .para-big {
  font-size: 18px;
}

.footer-btn {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.footer-btn .btn-footer {
  max-width: 330px;
  color: #df0045;
  background-color: #fff;
}

.footer-btn .btn-cta {
  line-height: 1.5;
  text-align: center;
}

.footer-btn-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0;
}

.footer-btn-bottom .btn-cta2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.footer-btn-bottom .btn-cta2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin-bottom: -10px;
  content: "";
  background-color: #fff;
}

.footer-btn-bottom .btn-cta2 .btn-arrow {
  position: absolute;
  top: 1px;
  right: -50px;
  margin-left: 10px;
}

.footer-btn-bottom .btn-cta2 .btn-arrow img {
  width: 40px;
  height: 40px;
}

@media only screen and (width <= 768px) {
  .footer-btn {
    flex-direction: column;
    gap: 10px;
  }

  .job-info-page .btn-cta-wrap {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .footer-btn .btn-cta {
    justify-content: flex-start;
    padding-left: 10px;
    line-height: 1.3;
  }

  .footer-btn .btn-cta:nth-child(1) {
    padding-left: 20px;
  }

  .footer-btn-bottom .btn-cta2 {
    font-size: 16px;
  }

  .footer-btn-bottom .btn-cta2 .btn-arrow {
    top: 2px;
    right: -40px;
  }

  .footer-btn-bottom .btn-cta2 .btn-arrow img {
    width: 30px;
    height: 30px;
  }

  .footer-btn-bottom {
    max-width: 350px;
  }
}

@media only screen and (width <= 440px) {
  .footer-btn-bottom {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 20px;
  }
}

.copyright {
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #000;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.interview-page .sec-interview .interview-people .int-slide-block {
  display: flex;
  align-items: flex-end;
  min-height: 400px;
  transition: transform 0.2s;

  /* transform-origin: 50% 0; */
  animation: card 1s ease-out;
}

.interview-page .sec-interview .interview-people .int-slide-block:hover {
  transform: rotate(3deg);
  animation: unset;
}

@keyframes card {
  0% {
    transform: rotate(3deg);
  }

  30% {
    transform: rotate(-2deg);
  }

  60% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@media only screen and (width <= 1200px) {
  .sec-hero {
    padding-top: 100px;
  }

  .footer .footer-ilust svg {
    right: 0;
  }
}

@media only screen and (width <= 1100px) {
  .int-content-wrap .swiper-wrapper {
    max-width: 600px;
  }
}

@media only screen and (width <= 1000px) {
  .sec-job {
    min-height: 700px;
  }
}

@media only screen and (width <= 900px) {
  .int-content-wrap .swiper-wrapper {
    max-width: 400px;
  }

  .interview-main .interview-solo {
    flex-direction: column;
  }

  .interview-main .interview-solo .right-area {
    position: unset;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}

@media only screen and (width <= 900px) {
  .p-culture .six-job.culture-sec2 {
    margin-top: 120px;
  }

  .job-info-page .requirement-table {
    margin-top: 30px;
  }

  .right-title-wrap .para-title-red {
    font-size: 16px;
  }

  .right-title-wrap .para-title-red .red-big {
    font-size: 26px;
  }

  .sec-1 {
    margin-top: -100px;
  }

  .sec-hero {
    height: auto;
  }

  .marquee p {
    font-size: 3rem;
  }

  .main-visual {
    height: auto;
    object-fit: cover;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-content {
    top: 140px;
  }

  .marquee_container {
    margin-top: -140px;
    opacity: 0.7;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .content-wrap .top-title {
    font-size: 10vw;
  }

  .content-wrap {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .content-wrap2 {
    flex-direction: column;
  }

  .footer .footer-ilust svg {
    top: -90px;
    width: 180px;
  }

  .content-wrap2 .right-area,
  .content-wrap .left-area {
    max-width: 100%;
    padding: 0 20px;
  }

  .content-wrap .right-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    margin-right: unset;
  }

  .content-wrap2 .right-area {
    flex-direction: column;
    justify-content: flex-end;
    margin-left: unset;
  }

  .sec-message-1 .content-wrap {
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .sec-message-1 .msg1 {
    max-width: 50vw;
  }

  .sec-message-1 .msg2 {
    max-width: 40vw;
  }

  .logo {
    max-width: 180px;
  }

  .six-job .job-types {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .job-text,
  .six-job .job-topic {
    margin-bottom: 30px;
  }

  .six-job .job-text {
    text-align: left;
  }

  .six-job {
    padding: 0;
  }

  .sec-job .content-wrap {
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .sec-job {
    height: auto;
    min-height: 50vh;
    margin-bottom: 50px;
  }

  .culture-sec2 .culture-types {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }

  .popup-content .pop-text {
    width: 100%;
    max-width: unset;
  }

  .int-content-wrap .int-pop {
    width: 80px;
  }

  .interview-page .interview-people {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 35px 20px;
    margin-top: 90px;
  }

  .pg-2main {
    height: auto;
    min-height: 50vh;
    max-height: unset;
    padding: 40px 0 0;
  }

  .interview-page .pg-2main {
    padding-top: 150px;
  }

  .sec-interview {
    margin-top: -30px;
  }

  .interview-swiper-slide .left-area .catch {
    font-size: 18px;
  }

  .pg-2main .interview-slider .slide-img {
    max-width: unset;
    max-height: 550px;
    margin-top: -70px;
  }

  .interview-swiper-slide .left-area .catch-sub {
    font-size: 1.8rem;
  }

  .int-content-wrap {
    flex-direction: column;
  }

  .int-content-wrap .int-text {
    max-width: 350px;
  }

  .int-content-wrap .int-cta {
    width: 100%;
    max-width: 250px;
  }

  .interview-swiper-slide .left-area {
    width: 100%;
    padding-bottom: 10px;
  }

  .pg-2main .interview-swiper-slide {
    flex-direction: column;
    min-height: unset;
    max-height: 600px;
    margin-top: 0;
  }

  .pg-2main .interview-swiper-slide .right-area {
    position: unset;
  }

  .sec-solo-interview .content-wrap {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .sec-solo-interview .content-wrap .right-area {
    max-width: 100%;
  }

  .green-blob {
    bottom: -20px;
    width: 140px;
  }

  .sec-solo-interview .content-wrap .left-area {
    max-width: 100%;
  }

  .pg-interview-sub {
    align-items: flex-start;
    padding-top: 80px;
  }

  .interview-solo .left-area {
    padding-bottom: 35px;
  }

  .interview-main .interview-solo .left-area {
    margin-bottom: 0;
  }

  .interview-main .interview-solo .right-area img {
    max-width: 320px;
    max-height: 550px;
  }

  .interview-main {
    height: fit-content;
  }

  .about5-chart-double {
    flex-direction: column;
  }

  .about-page .sec-about .content-wrap2 {
    margin-top: 70px;
  }

  .job-topic,
  .sec-topic {
    margin-top: 0;
  }

  .about-page .six-job {
    padding: 20px 0;
  }

  .sec-topic {
    margin-bottom: 20px;
  }

  .about-content .img6 {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .mt-0 {
    margin-top: 0;
  }

  .sec-solo-int3 .int3-content {
    margin-bottom: -50px;
  }

  .pg-2main .img-wave {
    bottom: -20px;
  }

  .para-footer {
    text-align: center;
  }

  .front-page .sec-project {
    padding: 50px 0;
  }

  .sec-project .top-wrap .para-big {
    position: relative;
    z-index: 80;
  }

  .sec-project3 {
    padding-bottom: 50px;
  }
}

@media only screen and (width <= 500px) {
  .sec-job .job-img-blob {
    width: 100%;
  }

  .interview-main .interview-solo .right-area img.zoom,
  .pg-2main .interview-slider .slide-img.zoom {
    zoom: 1.3;
  }

  .pg-2main .interview-slider .slide-img.zoom {
    margin-left: -40px;
  }

  /* .interview-main .interview-solo .right-area img,
  .pg-2main .interview-slider .slide-img {
    max-height: 350px;
    min-height: unset;
  }
  .interview-main .interview-solo .right-area {
    justify-content: center;
  } */
  .interview-main .interview-solo .font-32 {
    font-size: 2rem;
  }

  .interview-main .interview-solo .left-area .catch-sub {
    font-size: 2rem;
  }

  .interview-main .interview-solo .left-area .para-big {
    font-size: 1.5rem;
  }

  .para-footer {
    margin-top: 10px;
    line-height: 1.3;
    text-align: center;
  }

  .footer .footer-ilust svg {
    top: -60px;
    width: 120px;
  }

  .interview-page .interview-people {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .int-content-wrap .int-slide-img {
    width: 100%;
    max-width: unset;
  }

  .sec-solo-interview .content-wrap {
    gap: 0;
    margin-bottom: 100px;
  }

  .sec-solo-interview .content-wrap .left-area,
  .sec-solo-interview .content-wrap .right-area {
    width: 100%;
    padding: 0;
  }

  .pg-2main .interview-slider .img-person {
    max-width: 260px;
  }

  .about-content .content-3 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
  }

  .para-flex {
    margin: 15px 0;
  }

  .pg-2main .blobtop1 {
    width: 100px;
  }

  .pg-2main .blobtop2 {
    width: 140px;
  }

  .sec-job-info .requirement-content {
    padding: 0;
  }

  .job-title {
    font-size: 4rem;
  }

  .job-info-page .six-job {
    padding: 50px 0 20px;
  }

  .about-page .six-job .job-title {
    margin-top: -55px;
  }

  .job-lopian {
    margin-bottom: 0;
  }

  .footer .content-footer .footer-title {
    font-size: 10vw;
  }

  .about-page .culture-content {
    padding-bottom: 0;
  }

  .sec-about5 {
    margin-bottom: 50px;
  }

  .para-big {
    font-size: 16px;
  }

  .sec-project .project-text1 h2 {
    font-size: 20px;
  }

  .sec-project .catch-area h3 {
    font-size: 18px;
  }

  .interview-main .interview-solo {
    padding-bottom: 0;
    margin-top: 10px;
  }

  .popup-content {
    max-width: calc(100% - 40px);
    padding: 15px;
  }

  .interview-main .interview-solo .right-area img.no-zoom,
  .pg-2main .interview-slider .slide-img.no-zoom {
    zoom: unset;
  }
}

@media only screen and (width <= 450px) {
  .pg-2main .interview-slider .slide-img {
    max-width: unset;
    max-height: 400px;
  }
}

/* ===================================
  2. job-infoのCSS start
===================================== */

.sec-job-info .img1 {
  max-width: 400px;
}

.sec-job-info .content-wrap-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-job-info .blob1 {
  right: -20%;
  z-index: -1;
  width: 100%;
  max-width: 50vw;
}

.sec-job-info {
  min-height: unset;
  padding-top: 80px;
  padding-bottom: 100px;
  margin-bottom: 50px;
}

.job-lopian {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.sec-job-info .sec-topic h2 {
  margin-bottom: 0;
}

.sec-job-info .requirement-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-job-info .requirement-content:not(:first-child) {
  margin-top: 94px;
}

.sec-job-info3,
.sec-job-info2 {
  position: relative;
}

.sec-job-info2 .blob2 {
  position: absolute;
  top: -50%;
  left: -25%;
  z-index: -1;
  width: 100%;
  max-width: 50vw;
}

.sec-job-info3 .blob3 {
  position: absolute;
  top: 5%;
  left: -25%;
  z-index: -1;
  width: 100%;
  max-width: 50vw;
}

.sec-job-info3 .blob4 {
  position: absolute;
  top: 5%;
  right: -48%;
  z-index: -1;
  width: 100%;
  max-width: 70vw;
}

.sec-job-info3 .blob5 {
  position: absolute;
  bottom: -10%;
  left: -20%;
  z-index: -1;
  width: 100%;
  max-width: 50vw;
}

.sec-job-info3 {
  margin-bottom: 0;
}

#p-job-info .p-jobinfo__table {
  width: 100%;
  padding: 35px;
  background-color: #fff;
  border: 1px dotted #000;
  border-radius: 30px;
}

#p-job-info .requirement-table .p-jobinfo__table {
  padding: 20px 35px;
}

#p-job-info .p-jobinfo__item {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0 20px;
}

#p-job-info .p-jobinfo__item:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px dotted #000;
}

#p-job-info .p-jobinfo__item:not(:first-child) {
  padding-top: 30px;
}

#p-job-info .p-jobinfo__table .para {
  font-weight: normal;
  font-feature-settings: "palt";
}

#p-job-info .p-jobinfo__itemsb p + p {
  display: flex;
  gap: 80px;
  align-items: center;
}

#p-job-info .p-jobinfo__item h3 {
  width: 13%;
}

#p-job-info .p-jobinfo__item > *:last-child {
  width: calc(87% - 25px);
  margin: auto 0;
}

#p-job-info .p-jobinfo__item > p span {
  font-size: 1.2rem;
}

#p-job-info .p-jobinfo__itemsb {
  display: flex;
  gap: 20%;
  align-items: center;
}

#p-job-info .p-jobinfo__item1 {
  display: flex;
  gap: 20px;
}

#p-job-info .p-jobinfo__item1:not(:first-child) {
  margin-top: 20px;
}

#p-job-info .p-jobinfo__item1 span {
  display: block;
  flex-shrink: 0;
  width: 10%;
  max-width: 72px;
}

#p-job-info .p-jobinfo__item > p span > span {
  font-family: Arial, sans-serif;
}

#p-job-info .p-jobinfo__row {
  display: flex;
  flex-wrap: wrap;
}

#p-job-info .p-jobinfo__row > * {
  padding: 0 2%;
  font-feature-settings: "palt";
}

#p-job-info .p-jobinfo__row:not(:first-child) {
  padding-top: 18px;
}

#p-job-info .p-jobinfo__row:not(:last-of-type) {
  padding-bottom: 18px;
  border-bottom: 1px dotted #000;
}

#p-job-info .p-jobinfo__row .col1 {
  width: 13.75%;
}

#p-job-info .p-jobinfo__row .col2 {
  width: 29.45%;
  text-align: center;
}

#p-job-info .p-jobinfo__row .col2:not(.font-red) {
  border-right: 1px dotted #000;
}

#p-job-info .p-jobinfo__desc {
  font-size: 1.2rem;
  text-align: right;
}

#p-job-info .p-jobinfo__row .col3 {
  width: 56.8%;
}

#p-job-info .p-jobinfo__row .col3:not(:last-child) {
  width: 21.88%;
  text-align: center;
}

#p-job-info .p-jobinfo__row > p:last-child {
  padding: 0 35px;
}

#p-job-info .p-jobinfo__row p:not(:last-child).col3:not(.font-red) {
  border-right: 1px dotted #000;
}

#p-job-info .p-jobinfo__row .col4 {
  width: 34.92%;
  text-align: center;
}

#p-job-info .p-jobinfo__row .col1.para-bold {
  padding-right: 0;
  padding-left: 18px;
  line-height: 1;
}

#p-job-info .p-jobinfo__row .col1.para-bold span {
  font-size: 1.4rem;
}

@media only screen and (width <= 500px) {
  #p-job-info .p-jobinfo__item > *:last-child,
  #p-job-info .p-jobinfo__item h3 {
    width: 100%;
  }

  #p-job-info .p-jobinfo__item1 span {
    display: inline;
    flex-shrink: unset;
  }

  #p-job-info .p-jobinfo__item1 {
    display: block;
  }

  #p-job-info .p-jobinfo__item {
    gap: 0;
    padding: 0 13px;
  }

  #p-job-info .p-jobinfo__table {
    padding: 30px 15px;
  }

  #p-job-info .requirement-table .p-jobinfo__table {
    padding: 15px;
  }

  #p-job-info .p-jobinfo__item:not(:first-child) {
    padding-top: 20px;
  }

  #p-job-info .p-jobinfo__item:not(:last-child) {
    padding-bottom: 20px;
  }

  #p-job-info .p-jobinfo__item1:not(:first-child) {
    margin-top: 5px;
  }

  #p-job-info .p-jobinfo__item > p span > span span:not(:first-child) {
    display: none;
  }

  #p-job-info .p-jobinfo__row .col1.para-bold {
    width: 100%;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .job-info-page .requirement-table {
    width: 100%;
  }

  .sec-job-info .requirement-content:not(:first-child) {
    margin-top: 30px;
  }

  #p-job-info .p-jobinfo__row h3 {
    font-size: 1.5rem;
  }

  #p-job-info .p-jobinfo__row .para:not(.font-18) {
    font-size: 1.3rem;
  }

  #p-job-info .p-jobinfo__row > p:last-child {
    padding: 0 10px;
  }

  #p-job-info .p-jobinfo__row > * {
    padding: 0 5px;
  }

  #p-job-info .p-jobinfo__row:not(:first-child) {
    padding-top: 9px;
  }

  #p-job-info .p-jobinfo__row:not(:last-child) {
    padding-bottom: 9px;
  }

  #p-job-info .p-jobinfo__row .col3 span {
    font-size: 1rem;
  }

  #p-job-info .p-jobinfo__row .col2 {
    width: 34.6%;
  }

  #p-job-info .p-jobinfo__row .col3:not(:last-child) {
    width: 25.83%;
  }

  #p-job-info .p-jobinfo__row .col4 {
    width: 39.57%;
  }

  #p-job-info .p-jobinfo__row .col3 {
    width: 65.4%;
  }
}

/* ===================================
  2. job-infoのCSS end
===================================== */

/* ===================================
  3. front-pageのCSS start
===================================== */

.front-page,
.message-page {
  font-weight: bold;
}

.front-page .sec1-content .btn-cta {
  max-width: 500px;
  margin-top: 50px;
}

.int-content-wrap .left-area {
  width: 31%;
}

.int-content-wrap .right-area {
  width: calc(69% - 40px);
}

.int-content-wrap .right-area > * {
  width: 120.5%;
}

@media screen and (width <= 1600px) {
  .int-content-wrap .right-area > * {
    width: 100%;
  }
}

.int-slider1 .btn-cta {
  margin-top: 50px;
}

/* interview sliders */
.int-slide-block .int-modal-img {
  position: absolute;
  right: 0;
  bottom: 5px;
  transition: all 0.3s ease;
}

.int-slide-block {
  position: relative;
  transition: 0.3s all ease;
}

.int-slide-block .int-slide-img {
  border-radius: 20px;
}

/* .int-slide-block:hover .int-modal-img {
  width: 105%;
}
.int-slide-block:hover {
  opacity: 1;
} */
.int-slide-content {
  position: absolute;
  bottom: 10%;
  z-index: 1;
}

.int-slide-txt span {
  padding: 0 5px;
  font-size: 14px;
  color: #000;
  background-color: #fff;
}

.int-slide-tag {
  width: fit-content;
  padding: 0 10px;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #fff;
  background-color: #df0045;
}

.int-content-wrap .swiper-button-prev::after,
.int-content-wrap .swiper-rtl .swiper-button-next::after {
  mix-blend-mode: difference;
}

/* project sliders */
.front-page .sec-project .js-project-swiper {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}

.front-page .sec-project .swiper-button-next,
.front-page .sec-project .swiper-button-prev {
  top: calc(626.55 / 1200 * 65%);
  background-color: inherit;
  border: 0;
}

.front-page .sec-project .swiper-button-next {
  left: calc(100% - 45px);
}

.front-page .sec-project .swiper-button-prev {
  left: -15px;
}

.front-page .sec-project .swiper-horizontal > .swiper-pagination-bullets {
  bottom: calc(626.55 / 1200 * 73%);
}

.front-page .sec-project .swiper img {
  aspect-ratio: 1200 / 626.55;
}

.front-page .sec-project .swiper-wrapper {
  margin-top: 0;
}

.front-page .sec-project .swiper-pagination-bullet-active {
  background-color: gray;
}

@media screen and (width <= 1000px) {
  .front-page .sec-project .swiper-horizontal > .swiper-pagination-bullets {
    bottom: 0;
  }

  .front-page .sec-project .js-project-swiper {
    padding-bottom: 50px;
  }
}

@media screen and (width <= 800px) {
  .int-content-wrap .left-area {
    width: 50%;
  }

  .int-content-wrap .right-area {
    width: calc(100% - 40px);
  }

  .sec-project .swiper-button-prev,
  .sec-project .swiper-rtl .swiper-button-next,
  .sec-project .swiper-button-next,
  .sec-project .swiper-rtl .swiper-button-prev,
  .sec-project .swiper-button-next::after,
  .sec-project .swiper-rtl .swiper-button-prev::after,
  .sec-project .swiper-button-prev::after,
  .sec-project .swiper-rtl .swiper-button-next::after {
    width: 30px;
    height: 30px;
  }

  .front-page .sec-project .swiper-button-next,
  .front-page .sec-project .swiper-button-prev {
    top: calc(626.55 / 1200 * 53%);
    background-color: inherit;
    border: 0;
  }

  .front-page .sec-project .swiper-button-next {
    left: calc(100% - 20px);
  }

  .front-page .sec-project .swiper-button-prev {
    left: -10px;
  }
}

@media screen and (width <= 500px) {
  .int-content-wrap .left-area,
  .int-content-wrap .right-area {
    width: 100%;
  }

  .int-content-wrap .int-controls {
    margin-right: 0;
  }

  .swiper-wrapper {
    margin-top: 0;
  }

  .front-page .sec-1 .font-30 {
    font-size: 1.7rem;
  }

  .front-page .sec-project .swiper-wrapper {
    margin-top: 0;
  }

  .front-page .sec-project .swiper-button-next::after,
  .front-page .sec-project .swiper-button-prev::after {
    font-size: 2rem;
  }

  .front-page .sec-project .swiper-button-next,
  .front-page .sec-project .swiper-button-prev {
    top: calc(626.55px / 12 + 45px);
  }
}

/* ===================================
  3. front-pageのCSS end
===================================== */

/* ===================================
  4. cultureのCSS start
===================================== */

.p-culture .sec-job2 .culture-types h3 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.p-culture .sec-job2 .culture-types .para {
  font-size: 1.4rem;
}

.p-culture .sec-subttl {
  font-size: 2.3rem;
}

.p-culture .sec-job3__txt {
  font-size: 2.8rem;
}

@media screen and (width <= 800px) {
  .p-culture .six-job .job-title {
    margin-top: -55px;
  }
}

@media screen and (width <= 500px) {
  .p-culture .sec-job3__txt {
    font-size: 1.6rem;
  }

  .job-topic,
  .sec-topic {
    margin-bottom: 25px;
  }

  .p-culture .six-job .job-title {
    margin-top: -35px;
  }
}

/* ===================================
  4. cultureのCSS end
===================================== */

/* ===================================
  5. aboutのCSS start
===================================== */

.about-page .sec-about3 .reveal-content {
  padding-top: 50px;
  padding-bottom: 180px;
}

.history-timeline {
  max-width: 750px;
  margin: 80px auto 0;
}

.history-timeline .timeline {
  display: flex;
  margin-bottom: 30px;
  color: #000;
}

.history-timeline .timeline-year {
  position: relative;
  width: 90px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.85;
}

.history-timeline .timeline-year::after {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 1px;
  height: calc(100% - 43px);
  content: "";
  background-color: #000;
}

.history-timeline .timeline-year span {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 2.39;
  letter-spacing: 0.14em;
}

.history-timeline .timeline-wrap {
  width: calc(100% - 90px);
}

.history-timeline .timeline-wrap h3 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 2.26;
}

.history-timeline .timeline-flex {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 20px;
  margin-top: 5px;
  background-color: #fff;
  border: 1px dotted #000;
  border-radius: 5px;
}

.history-timeline .timeline-flex .timeline-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  min-width: 45px;
  height: 46px;
  margin-right: 20px;
}

.history-timeline .timeline4 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  background-color: #fff;
  border: 1px solid #df0045;
  border-radius: 5px;
}

.six-job .job-title {
  margin-top: -85px;
}

.reveal-content {
  max-width: 750px;
  margin: 0 auto;
}

.reveal-content .reveal-content-top {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px dotted #000;
}

.reveal-content .reveal-content-item {
  width: calc(100% / 3);
  padding: 10px 20px 10px 30px;
  font-feature-settings: "palt";
}

.reveal-content .reveal-content-item:first-child {
  padding-left: 0;
}

.reveal-content .reveal-content-item:last-child {
  padding-right: 0;
}

.reveal-content .reveal-philosophy h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 5px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  letter-spacing: -0.005em;
}

.reveal-content .reveal-philosophy h3 img {
  flex-shrink: 0;
  height: 20px;
}

.reveal-content .reveal-philosophy p {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.13em;
}

.reveal-content .timeline-flex p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.13em;
}

.reveal-content .reveal-content-flex {
  display: flex;
  margin-top: 20px;
}

.reveal-content .reveal-content-item:not(:first-child) {
  border-left: 1px dotted #000;
}

.reveal-content .reveal-content-top .reveal-content-img {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.reveal-content .reveal-content-flex .reveal-content-img img {
  max-width: 100px;
  height: 31px;
}

.reveal-content .reveal-content-img {
  padding-left: 5px;
}

.reveal-content-wrap {
  padding: 40px 50px;
  margin-top: 30px;
  font-feature-settings: "palt" 1;
  background-color: #fff;
  border: 1px dotted #000;
  border-radius: 10px;
}

.reveal-content .reveal-feature-oic {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.32;
  color: #000;
  letter-spacing: 0.05em;
}

.reveal-content .reveal-feature-oic span {
  font-size: 5.8rem;
}

.reveal-content .reveal-feature-oic .reveal-feature-vertical {
  writing-mode: vertical-rl;
}

.column-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

.column-content .box-content {
  width: 100%;
  padding: 20px;

  /* max-width: calc(50% - 10px); */
  background-color: #fff;
  border-radius: 13px;
}

.column-content .box-content-title {
  position: relative;
  margin-bottom: 15px;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: calc(55.77 / 18);
  letter-spacing: 0.05em;
}

.column-content .box-content-title::after {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 10px);
  width: 25px;
  height: 1px;
  content: "";
  background-color: #000;
}

.data-content {
  max-width: 700px;
  margin: 0 auto;
}

.goal-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 20px;
  margin: auto;
  font-size: 2.4rem;
  color: #fff;
  background-color: #df0045;
}

.goal-wrap span {
  font-size: 1.2rem;
}

.chart-wrap {
  padding: 20px;
  margin-bottom: 30px;
  background-color: #fff7eb;
  border-radius: 20px;
}

.chart-number_wrap .circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 100px;
  color: white;
  text-align: center;
  background-color: #df0045;
  border-radius: 50%;
}

.chart-number_wrap .circle-number {
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
}

.chart-number_wrap .circle-number .age {
  font-size: 20px;
  font-weight: 600;
}

.chart-number_wrap .circle-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.chart-number_wrap .circle-area {
  gap: 5px;
}

.chart-number_wrap .circle-text-span {
  font-size: 1.4rem;
  font-weight: bold;
}

.chart-number_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.chart-number_wrap .chart-left-side,
.chart-number_wrap .chart-right-side {
  width: 100%;
  max-width: calc(50% - 10px);
  min-height: 242px;
}

@media screen and (width <= 800px) {
  .chart-number_wrap .chart-left-side,
  .chart-number_wrap .chart-right-side {
    max-width: 100%;
  }
}

.chart-white {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff7eb;
  border-radius: 10px;
}

.chart-number_wrap .para-big {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.circle-area {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.chart-number_wrap .mini-text {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 15px;
  text-align: center;
}

.chart-number_wrap .para-medium {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.chart-number_wrap .chart-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.chart-number_wrap .chart-price .chart-price-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
  border-right: 1px dotted #ccc;
}

.chart-number_wrap .chart-price .chart-price-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}

.chart-number_wrap .chart-price .price-red {
  font-size: 2rem;
  font-weight: 600;
  color: #df0045;
}

.chart-number_wrap .chart-price .price-red-span {
  font-size: 1.4rem;
}

.chart-number_wrap .chart-red-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  text-align: center;
  background-color: #df0045;
}

.chart-number_wrap .chart-red-bg .para-medium {
  color: #fff;
}

.grap {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.circle-index {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
}

.circle-index .title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.19em;
  transform: translate(-50%, -50%);
}

.circle-index .imgarea {
  width: 100%;
  height: 100%;
}

.circle-index .imgarea img {
  width: 100%;
  animation: textRotation 20s linear infinite;
}

.gap-title,
.grap h2 {
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(39 / 27);
  color: #000;
  text-align: left;
  letter-spacing: 0.08em;
}

.graph {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.graph-item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #df0045;
  border-radius: 10px;
}

.graph-item .title {
  padding-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(25 / 19);
  color: #df0045;
  text-align: center;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #df0045;
}

.graph-item .desc {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: calc(21 / 14);
  color: #df0045;
  text-align: center;
  letter-spacing: 0;
}

.graph-item::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 9px;
  height: 12px;
  content: "";
  background-color: #df0045;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}

.graph-item:last-child::after {
  display: none;
}

.graph-item:last-child {
  flex: 1;
}

.notesbox {
  margin-top: 40px;
  background-color: #fff;
  border: 1px dotted #000;
  border-radius: 10px;
}

.notesbox-wrapper {
  padding: 30px;
}

.notesbox .notesbox-desc {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: calc(20 / 14);
  color: #000;
  letter-spacing: 0.14em;
}

.notesbox-heading {
  display: flex;
  gap: 15px;
  align-items: center;
}

.notesbox-heading .imgarea {
  flex-shrink: 0;
  width: 33px;
}

.notesbox-heading .imgarea img {
  width: 100%;
}

.notesbox-heading .contentarea .question {
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(36 / 16);
  color: #000;
}

.notesbox-heading .contentarea .title {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: calc(26 / 18);
  color: #000;
  text-align: left;
}

.about-page .sec-about4 .about-type {
  width: 100%;
  max-width: 750px;
  padding: 50px 20px;
  background-color: #fff;
  border-radius: 30px;
}

.about-page .sec-about4 .about-type__item {
  display: flex;
  gap: 70px;
  justify-content: center;
}

.about-page .sec-about4 .about-type__item > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31.47%;
  height: 100%;
  aspect-ratio: 1;
  color: #fff;
  background-color: #df0045;
  border-radius: 50%;
}

.content-wrap3 {
  display: flex;
  flex-direction: unset;
  gap: 40px;
  max-width: 750px;
  padding: 30px 20px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border: 1px dotted #000;
  border-radius: 30px;
}

.content-wrap3 img {
  max-width: 125px;
}

.content-wrap3__ttl {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.mt200 {
  margin-top: 200px;
}

/* .chart-wrap2{
  cursor: pointer;
} */
.lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none; /* hidden by default */
  width: 100%;
  max-width: 80vw;
  height: 100%;
  max-height: 80vh;
  padding: 40px;
  margin: 50px auto;
  overflow-x: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow:
    0 10px 30px rgb(0 0 0 / 40%),
    0 20px 60px rgb(0 0 0 / 30%);
  transform: translate(-50%, -50%);
}

.lightbox-content {
  width: 100%;
  height: 100%;
  overflow: auto hidden;

  /* display: flex;
  justify-content: center;
  align-items: center; */
}

/* Centered image */
.lightbox img {
  display: block;
  max-width: 75vw;
  max-height: 70vh;
  margin: auto;
  animation: fadeIn 0.3s ease;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10001; /* above lightbox */
  font-size: 40px;
  color: #000;
  cursor: pointer;
  user-select: none;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes textRotation {
  100% {
    transform: rotate(360deg);
  }
}

@media (width <= 768px) {
  .mt200 {
    margin-top: 100px;
  }

  .lightbox {
    width: 100vw;
    max-width: 90vw;
    height: auto;
    padding: 10px;
    margin-top: 50px;
    white-space: nowrap;
  }

  .lightbox img {
    display: inline-block;
    width: auto;
    max-width: none;
    height: 100vh;
  }
}

@media screen and (width <= 1024px) {
  .graph {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .left-box-title p,
  .about-page .left-box-title p {
    font-size: 2.2rem;
  }

  .graph-item::after {
    right: -10px;
  }

  .column-content {
    justify-content: center;
  }
}

.banner {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 30px;
  margin-top: 50px;
  margin-bottom: 30px;
  background-color: #fff7eb;
  border-radius: 10px;
}

.banner .circle-icon {
  flex-shrink: 0;
}

.banner .circle-icon img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.banner .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.banner .item {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
}

.banner .text {
  font-size: 20px;
  font-weight: 600;
  color: #df0045;
  white-space: nowrap;
}

.banner .etc {
  position: absolute;
  right: 0;
  bottom: -30px;
  font-size: 14px;
}

.checkbox {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid #df0045;
  border-radius: 4px;
}

.checkbox svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #df0045;
  stroke-width: 3;
}

/* Responsive */
@media (width <= 640px) {
  .banner {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .circle-icon img {
    width: 140px;
    height: 140px;
  }

  .content {
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (width <= 680px) {
  .about-page .sec-about4 .about-type__item > * {
    width: 50%;
    font-size: 1.4rem;
  }
}

@media screen and (width <= 500px) {
  .history-timeline .timeline4 {
    font-size: 2rem;
  }

  .history-timeline .timeline-wrap h3,
  .history-timeline .timeline-year {
    font-size: 1.8rem;
  }

  .history-timeline .timeline-flex {
    align-items: flex-start;
  }

  .history-timeline .timeline-year span {
    font-size: 1.3rem;
  }

  .history-timeline .timeline-year {
    width: 60px;
  }

  .history-timeline .timeline-wrap {
    width: calc(100% - 60px);
  }

  .content-wrap2 {
    flex-direction: column;
  }

  .reveal-content .reveal-content-top {
    flex-direction: column;
  }

  .reveal-content .reveal-content-flex {
    flex-direction: column;
    margin-top: 0;
  }

  .reveal-content .reveal-content-item {
    width: 100%;
    padding: 20px 0;
  }

  .reveal-content .reveal-content-item:not(:first-child) {
    border: 0;
  }

  .reveal-content .reveal-content-item:not(:last-child) {
    border-bottom: 1px dotted #000;
  }

  .reveal-content-wrap {
    padding: 20px;
  }

  .about-page .sec-about3 .reveal-content {
    padding-top: 25px;
    padding-bottom: 90px;
  }

  .reveal-content .reveal-content-top .reveal-content-img.pc-only {
    display: none;
  }

  .about-page .sec-about4 .about-type {
    padding: 20px;
  }

  .about-page .sec-about4 .about-type__item {
    gap: 20px;
  }

  .reveal-content .reveal-feature-oic span {
    font-size: 3rem;
  }

  .reveal-content .reveal-feature-oic {
    font-size: 2.6rem;
  }

  .column-content .box-content,
  .chart-number_wrap .chart-left-side,
  .chart-number_wrap .chart-right-side {
    max-width: 100%;
  }

  .graph {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .graph-item {
    width: fit-content;
    margin: auto;
  }

  .graph-item::after {
    top: unset;
    right: unset;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .gap-title,
  .grap h2 {
    font-size: 2rem;
    color: #df0045;
    letter-spacing: 0.03em;
  }

  .grap {
    gap: 5px;
  }

  .notesbox-wrapper {
    padding: 20px;
  }

  .notesbox .notesbox-desc {
    text-align: justify;
  }

  .goal-wrap {
    flex-direction: column;
    font-size: 1.8rem;
  }
}

/* ===================================
  5. aboutのCSS end
===================================== */

/* ===================================
  6. jobのCSS start
===================================== */

.job-item__leftarea {
  display: flex;
  gap: 19%;
  align-items: center;
  justify-content: flex-end;
}

.job-item__leftarea .title,
.popup-content .pop-img .title {
  margin: 0 auto;
  font-size: 4rem;
  line-height: calc(69 / 40);
  text-align: left;
  letter-spacing: 0.13em;
  writing-mode: vertical-lr;
}

.job-item__leftarea .sub,
.popup-content .pop-img .sub {
  letter-spacing: 0.13em;
}

.job-item__leftarea img {
  max-width: 53%;
  margin-top: -30px;
  margin-right: -25px;
}

.job-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
  background-color: #fff;
  border-radius: 30px;
}

.c-btnviewmore01 .job-type-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  margin-right: 25px;
  margin-left: auto;
}

.c-btnviewmore01 .job-type-link img {
  width: 60px;
}

.sec-job2__ttl {
  font-size: 2.3rem;
}

.job-item__rightarea {
  margin-top: 30px;
}

.job-item__rightarea .para {
  font-size: 1.4rem;
  letter-spacing: 0;
}

.job-item__rightarea .title {
  font-size: 1.7rem;
}

.job-item__rightarea span {
  font-size: 2.1rem;
}

.p-job .six-job {
  padding-bottom: 150px;
}

.p-job .btn-cta.btn-cta--line {
  max-width: 500px;
}

.p-job .sec-subttl {
  font-size: 2.3rem;
}

@media only screen and (width <= 800px) {
  .job-info-page .six-job .job-title {
    margin-top: -55px;
  }

  .job-info-page .job-title {
    font-size: clamp(4rem, 10vw, 7rem);
  }

  .p-job .six-job .job-title {
    margin-top: -55px;
  }

  .job-info-page .job-lopian {
    padding-bottom: 20px;
  }
}

@media screen and (width <= 600px) {
  .job-info-page .job-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
  }

  .job-info-page .six-job .job-title {
    margin-top: -30px;
  }
}

@media screen and (width <= 500px) {
  .job-item__leftarea {
    gap: 20px;
  }

  .job-item__leftarea img {
    max-width: 70%;
  }

  .job-item__leftarea .title,
  .popup-content .pop-img .title {
    font-size: 3rem;
  }

  .sec-job2__ttl {
    font-size: 2rem;
  }

  .job-item__rightarea {
    margin-top: 20px;
  }

  .job-item__rightarea .title {
    font-size: 1.5rem;
  }

  .job-item__rightarea span {
    font-size: 1.8rem;
  }

  .c-btnviewmore01 .job-type-link {
    margin-right: 0;
  }

  .c-btnviewmore01 .job-type-link img {
    width: 40px;
  }

  .p-job .six-job {
    padding: 20px 0;
  }

  .popup-content .pop-img h3 span {
    font-size: 2.2rem;
  }

  .six-job h3 {
    font-size: 4.5vw;
  }
}

/* ===================================
  6. jobのCSS end
===================================== */

/* ===================================
  7. projectのCSS start
===================================== */
.project-page .content-wrap2 {
  padding: 40px;
}

.project-page .content-wrap2 img {
  max-width: 153px;
}

.project-page .project-inner-loop .title-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.project-page .project-inner-loop .title-area h3 {
  padding: 10px 10px 10px 20px;
  font-size: 2.3rem;
  line-height: 1.4;
  background-color: #fff;
  border: 4px solid #df0045;
  border-radius: 25px;
}

.project-page .project-inner-loop .title-area img {
  width: auto;
  height: 74px;
}

.sec-project .project-text2 img {
  position: relative;
  z-index: 3;
  max-width: 25.75%;
  margin-top: -15%;
}

.sec-project .project-text2 p {
  width: 75%;
  padding: 40px;
  margin-left: 22%;
  background-color: #fff;
  border: 5px solid #df0045;
  border-radius: 20px;
  box-shadow: 5px 5px 0 #0000006c;
}

.content-wrap-project .content-wrap--800 {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrap-project {
  position: relative;
}

.content-wrap-project .img1part {
  position: absolute;
  left: -100px;
  width: 100%;
  max-width: 230px;
}

.line-height-dif2 {
  line-height: 1.5;
}

.para .line-height-dif {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.margintopnew {
  margin-top: 50px;
}

.project-text2,
.font-relative {
  position: relative;
}

.sec-project .project-text2 .msg-arrow {
  position: absolute;
  bottom: -30px;
  left: 50px;
  width: 40px;
}

@media screen and (width <= 900px) {
  .sec-project .content-wrap {
    margin-bottom: 20px;
  }
}

@media screen and (width <= 500px) {
  .project-page .content-wrap2 {
    padding: 20px;
  }

  .sec-project .project-text2 p {
    width: 100%;
    padding: 30px;
    margin-left: auto;
  }

  .sec-project .project-text2 img {
    margin-top: 0;
  }

  .project-page .project-inner-loop .title-area h3 {
    padding: 15px 20px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .sec-project .content-wrap {
    margin-bottom: 10px;
  }

  .sec-project .left-area {
    min-width: 50px;
    max-width: 50px;
  }

  .sec-project .talk-wrap {
    margin-bottom: 25px;
  }

  .sec-project2 {
    padding-bottom: 20px;
  }

  .project-page .blob1 {
    top: 5%;
  }

  .sec-project .project-text2 .msg-arrow {
    left: 120px;
  }
}

/* ===================================
  7. projectのCSS end
===================================== */

/* ===================================
  8. interview-singleのCSS start
===================================== */
.interview-page .sec-solo-int3 {
  padding-bottom: 50px;
  overflow: hidden;
}

.interview-page .sec-solo-int3 .container-1200 {
  max-width: 1440px;
}

.interview-page .sec-solo-int3 .int3-content__wrap {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: auto;
}

.sec-solo-int3__schedule {
  width: fit-content;
  margin: auto;
}

.sec-solo-int3__schedule p {
  font-size: 2.2rem;
}

.sec-solo-int3__time {
  display: flex;
  gap: 20px;
}

.sec-solo-int3__time .para + .circle {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  background-color: #fff;
  border: 1px solid #df0045;
  border-radius: 50%;
}

.sec-solo-int3__time .circle {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 30px;
}

.sec-solo-int3__time .para + .circle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  content: "";
  background-color: #df0045;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sec-solo-int3__time:not(:last-child) {
  position: relative;
}

.sec-solo-int3__time:not(:last-child)::before {
  position: absolute;
  top: 8px;
  left: 92px;
  z-index: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #df0045;
}

.sec-solo-int3__time:not(:last-child) .para + .circle::before {
  top: 100%;
}

.sec-solo-int3__hour {
  flex-shrink: 0;
  width: 60px;
  text-align: right;
}

.sec-solo-int3 .int3-content {
  position: relative;
  padding-bottom: 350px;
}

.sec-solo-int3__blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-solo-int3__blob {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 50px;
  color: #fff;
}

.sec-solo-int3__blob:nth-child(1) {
  top: 10%;
  left: 0;
  background: linear-gradient(to right, #d26464 0%, #de8d8d 100%);
  animation: blobby 30s infinite alternate ease;
}

.sec-solo-int3__blob:nth-child(2) {
  bottom: 12%;
  left: 3%;
  background: linear-gradient(to right, #dc7528 0%, #fab464 100%);
  animation: blobby1 30s infinite alternate ease;
}

.sec-solo-int3__blob:nth-child(3) {
  top: 0;
  right: 0;
  background: linear-gradient(to right, #468cd2 0%, #96b4d2 100%);
  animation: blobby2 30s infinite alternate ease;
}

.sec-solo-int3__blob:nth-child(4) {
  right: 0;
  bottom: 25%;
  background: linear-gradient(to right, #8cbe50 0%, #b4dca0 100%);
  animation: blobby3 30s infinite alternate ease;
}

.sec-solo-int3__blobs .img-person {
  position: absolute;
  right: 20%;
  bottom: 0;
  z-index: 1;
  height: auto;
  max-height: 400px;
}

.sec-solo-int3__blob svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-solo-int3__blobtxt {
  position: relative;
  z-index: 1;
}

.sec-solo-int3__blob:nth-child(2) svg {
  transform: rotate(45deg);
}

.sec-solo-int3__blob:nth-child(3) svg {
  transform: rotate(45deg);
}

.sec-solo-int3__blob:nth-child(4) svg {
  transform: rotate(20deg);
}

.sec-solo-int3__blobmini {
  font-size: 0.8rem;
}

@media screen and (width <= 1200px) {
  .sec-solo-int3__time {
    gap: 10px;
  }

  .sec-solo-int3__schedule p {
    font-size: 1.8rem;
  }

  .sec-solo-int3__time .circle {
    height: 15px;
  }

  .sec-solo-int3__blobs,
  .sec-solo-int3__blobs .img-person,
  .sec-solo-int3__blob {
    position: relative;
  }

  .sec-solo-int3__blobs .img-person {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }

  .sec-solo-int3__blob {
    max-width: 355px;
    max-height: 280px;
    margin: 0 auto;
  }

  .sec-solo-int3__blob:not(:first-child) {
    margin-top: 50px;
  }

  .sec-solo-int3 .int3-content {
    padding-bottom: 0;
  }

  .sec-solo-int3__blob svg {
    width: calc(100% + 40px);
    height: auto;
    margin-top: -40px;
    margin-left: -20px;
  }

  .sec-solo-int3__time .para + .circle {
    margin-top: 5px;
  }

  .sec-solo-int3__time:not(:last-child)::before {
    left: 82px;
  }
}

/* ===================================
  8. interview-singleのCSS end
===================================== */

/* ===================================
  9. blobのCSS start
===================================== */

/* front-page blobs */
.main-visual {
  position: relative;
}

.link-to-entry {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999999;
  display: block;
}

.banner-entry {
  width: 100%;
  max-width: 200px;
}

@media screen and (width <= 768px) {
  .banner-entry {
    max-width: 150px;
  }

  .link-to-entry {
    right: 5px;
    bottom: 5px;
  }
}

.main-visual__wave {
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 250px;
  background: url("../img/top/main-wave.png") 0 0 repeat-x;
  background-size: cover;
  animation: wave 30s infinite reverse linear;
}

.main-visual__blobimg {
  position: absolute;
  z-index: 1;
  animation: blobby 30s infinite alternate ease;
}

.main-visual__blobimg:nth-child(1) {
  top: 0;
  left: 13.13%;
  width: 21.72%;
}

.main-visual__blobimg:nth-child(2) {
  top: 0;
  right: 13.13%;
  width: 25.31%;
  transition-delay: 0.5s;
}

.main-visual__blobimg:nth-child(3) {
  right: 15%;
  bottom: 10%;
  width: 22.29%;
  transition-delay: 1s;
}

.main-visual__blobimg:nth-child(4) {
  bottom: 25%;
  left: 38%;
  z-index: 1;
  width: 15.05%;
  transition-delay: 1.5s;
}

.main-visual__blobs > svg {
  position: absolute;
  width: 428px;
}

.main-visual__blobs > svg:nth-child(1) {
  top: -10%;
  width: 25%;
}

.main-visual__blobs > svg:nth-child(2) {
  top: -20%;
  right: 20%;
  width: 35%;
}

.main-visual__blobs > svg:nth-child(3) {
  top: 20%;
  right: -12%;
  transform: rotate(45deg);
}

.main-visual__blobs > svg:nth-child(4) {
  right: 8%;
  bottom: 0;
  z-index: 1;
  width: 15%;
}

.main-visual__blobs > svg:nth-child(5) {
  bottom: 0;
  left: 25%;
  width: 30%;
}

.main-visual__blobs > svg:nth-child(6) {
  bottom: 5%;
  left: 10%;
  z-index: 1;
  width: 12%;
}

.main-visual__blobs > svg:nth-child(7) {
  bottom: 10%;
  left: -18%;
}

.main-visual__blobs > svg:nth-child(8) {
  bottom: 10%;
  left: -18%;
}

.front-page .main-visual {
  width: 100%;
  height: 90vh;
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 800px 0;
  }
}

@keyframes blobby {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes blobby1 {
  0%,
  100% {
    border-radius: 50% / 50%;
  }

  25% {
    border-radius: 40% 60% / 60% 40%;
  }

  50% {
    border-radius: 60% 40% / 40% 60%;
  }

  75% {
    border-radius: 45% 55% / 55% 45%;
  }
}

@keyframes blobby2 {
  0%,
  100% {
    border-radius: 65% 35% 55% 45% / 55% 45% 65% 35%;
  }

  25% {
    border-radius: 80% 20% 70% 30% / 30% 70%;
  }

  50% {
    border-radius: 55% 45% 60% 40% / 60% 40%;
  }

  75% {
    border-radius: 50% / 50%;
  }
}

@keyframes blobby3 {
  0%,
  100% {
    border-radius: 75% 25% 65% 35% / 65% 35% 75% 25%;
  }

  25% {
    border-radius: 55% 45% 60% 40% / 60% 40%;
  }

  50% {
    border-radius: 65% 35% 50% 50% / 50%;
  }

  75% {
    border-radius: 40% 60% 50% 50% / 50%;
  }
}

.content-wrap .left-area img {
  animation: blobby 30s infinite alternate ease;
}

.container-hidden {
  overflow: hidden;
}

.content-wrap .left-area svg {
  position: absolute;
  top: -16%;
  z-index: -1;
}

.content-wrap .left-area .img-1 {
  display: block;
  width: 93.75%;
  margin-left: auto;
}

.content-wrap .left-area .img-2 {
  width: 91.4%;
}

.content-wrap .left-area .img-3 {
  display: block;
  width: 80%;
  margin-left: auto;
}

.content-wrap .left-area .img-4 {
  width: 77.42%;
}

.content-wrap .left-area .imglogo {
  position: relative;
}

.content-wrap .left-area .imglogo::after {
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 26%;
  height: auto;
  aspect-ratio: 242 / 176;
  content: "";
  background: url("../img/top/top4-1.png") no-repeat center center / contain;
}

.sec-1 .content-wrap {
  margin-top: 150px;
}

.sec-1 .content-wrap:nth-child(2n + 1) .left-area svg {
  left: -33%;
  width: 125%;
}

.sec-1 .content-wrap:nth-child(3) .left-area svg {
  top: -30%;
  left: -25%;
  width: 120%;
  transform: rotate(-170deg);
}

.sec-1 .content-wrap:nth-child(2n) .left-area svg {
  top: -30%;
  right: -25%;
  width: 100%;
  transform: rotate(25deg);
}

.sec-1 .content-wrap:nth-child(4) .left-area svg {
  top: -45%;
}

.front-page .sec-1 {
  padding-bottom: 150px;
}

.front-page .sec-project .blob2 {
  right: -13%;
}

.front-page .sec-project .blob2 svg {
  transform: rotate(30deg);
}

@media screen and (width <= 800px) {
  .front-page .main-visual {
    height: 38vh;
    min-height: 340px;
  }
}

@media screen and (width <= 500px) {
  .sec-project .blob2 {
    top: -7%;
    right: -5%;
  }

  .sec-1 .content-wrap:nth-child(4) .left-area svg {
    top: -25%;
  }

  .sec-1 .content-wrap:nth-child(1) .left-area svg {
    top: -35%;
  }

  .sec-project .blob5 {
    bottom: -2%;
    left: -10%;
  }

  .interview-last .green-blob-bottom {
    bottom: 0;
    left: -10%;
  }

  .mt-80 {
    margin-top: 50px;
  }

  .int-slider1 {
    padding-bottom: 50px;
  }

  .sec-1 .content-wrap .left-area svg {
    width: 80%;
  }

  .content-wrap .right-area {
    margin-top: 30px;
  }

  .sec-1 .content-wrap {
    margin-top: 100px;
  }

  .main-visual__wave {
    bottom: -1px;
    height: 100px;
  }

  .main-visual__blobimg:nth-child(3) {
    right: -10px;
    bottom: 5%;
    width: 48%;
  }

  .main-visual__blobimg:nth-child(4) {
    bottom: 10%;
    left: -10%;
    width: 48%;
  }

  .main-visual__blobs > svg:nth-child(3) {
    top: -10%;
    width: 30%;
  }

  .main-visual__blobs > svg:nth-child(1) {
    left: -10%;
    width: 40%;
  }

  .main-visual__blobs > svg:nth-child(4) {
    right: -15%;
    bottom: -8%;
    display: none;
    width: 50%;
  }

  .main-visual__blobs > svg:nth-child(5) {
    bottom: 30%;
    left: -20%;
    width: 50%;
  }

  .main-visual__blobs > svg:nth-child(6) {
    width: 20%;
  }

  .main-visual__blobs > svg:nth-child(7) {
    display: none;
  }

  .front-page .content-wrap .left-area img {
    width: 100%;
  }
}

/* message blobs */
.sec-message-1 .msg1 {
  position: absolute;
  top: -5%;
  left: -35%;
  width: 100%;
  max-width: 60vw;
  transform: rotate(-60deg);
}

.sec-message-1 .msg2 {
  position: absolute;
  right: -35%;
  bottom: -10%;
  width: 100%;
  max-width: 60vw;
}

.message-page .sec-message-1 {
  overflow: hidden;
}

@media screen and (width <= 500px) {
  .sec-message-1 .msg1 {
    top: -9%;
    left: -41%;
    width: 121%;
    max-width: unset;
  }

  .sec-message-1 .msg2 {
    right: -20%;
    bottom: -8%;
    max-width: 80vw;
  }

  .sec-job-info3 .blob5 {
    bottom: -2%;
  }
}

/* project blobs */
.project-page .blob1 {
  left: -20%;
  width: 50vw;
}

.project-page .blob2 {
  top: 23%;
  right: -25%;
  width: 50vw;
}

.project-page .blob3 {
  left: -25%;
  width: 50vw;
}

.project-page .blob4 {
  right: -20%;
  bottom: 10%;
  width: 50vw;
}

.project-page .blob5 {
  bottom: 0;
  left: -25%;
}

.sec-project .container-1000 > * {
  position: relative;
  z-index: 2;
}

/* job blobs */
.p-job .content-wrap .left-area,
.p-culture .content-wrap .left-area,
.about-page .content-wrap .left-area {
  margin-top: 100px;
  margin-left: auto;
}

.p-job .content-wrap .left-area svg,
.p-culture .content-wrap .left-area svg,
.about-page .content-wrap .left-area svg {
  right: -20%;
  width: 48vw;
}

.p-job .content-wrap .left-area svg {
  top: -22%;
  right: -15%;
  width: 52vw;
}

.p-culture .content-wrap .left-area svg {
  transform: rotate(-170deg);
}

.about-page .content-wrap .left-area svg {
  transform: rotate(30deg);
}

.sec-about3 .orange-blob svg {
  transform: rotate(110deg);
}

.p-job .sec-project,
.p-culture .sec-project {
  padding: 0;
  background: inherit;
}

.p-job .sec-project {
  z-index: 4;
}

.p-job .sec-project .six-job {
  position: relative;
  z-index: 3;
}

.p-job .sec-project .blob1,
.p-culture .sec-project .blob1 {
  top: -10%;
  left: -30%;
  width: 50vw;
}

.p-job .sec-project .blob2,
.p-culture .sec-project .blob2 {
  top: 0%;
}

.p-job .sec-project .blob4,
.p-culture .sec-project .blob4 {
  right: -20%;
  bottom: -5%;
  width: 40vw;
}

@media screen and (width <= 800px) {
  .p-job .sec-project {
    margin-top: 120px;
  }

  .sec-job-info .top-wrap {
    margin-top: 100px;
  }

  .sec-job-info2 .blob2,
  .sec-job-info .blob1 {
    display: none;
  }
}

@media screen and (width <= 500px) {
  .p-job .content-wrap .left-area,
  .p-culture .content-wrap .left-area,
  .about-page .content-wrap .left-area {
    margin-top: 50px;
  }

  .p-job .content-wrap .left-area svg,
  .p-culture .content-wrap .left-area svg,
  .about-page .content-wrap .left-area svg {
    width: 100%;
  }

  .sec-job .top-wrap {
    margin-top: 190px;
  }

  .sec-job-info .top-wrap {
    margin-top: 100px;
  }

  .p-job .sec-project .blob1,
  .p-culture .sec-project .blob1 {
    top: -100px;
  }

  .p-job .sec-project .blob2,
  .p-culture .sec-project .blob2 {
    top: -20px;
  }

  .p-job .sec-project .blob4,
  .p-culture .sec-project .blob4 {
    bottom: -100px;
  }
}

/* culture blobs */
.p-culture .content-wrap .left-area .img-3 {
  width: 93%;
  margin-left: 0;
}

.p-culture .sec-project > section,
.p-culture .sec-job {
  position: relative;
  z-index: 2;
}

.p-culture .sec-project .blob3 {
  top: 40%;
  left: -35%;
  width: 50vw;
}

@media screen and (width <= 500px) {
  .p-culture .sec-project .blob3 {
    top: 82%;
  }
}

/* about blobs */
.sec-about2 {
  position: relative;
  margin-bottom: 80px;
}

.sec-about2 .six-job.culture-sec2 {
  margin-top: 120px;
}

.sec-about2 .red-blob {
  position: absolute;
  top: -25%;
  left: -20%;
  z-index: -1;
  width: 100%;
  max-width: 40vw;
}

.sec-about3 {
  position: relative;
}

.sec-about3 .orange-blob {
  position: absolute;
  top: 0;
  right: -20%;
  z-index: -1;
  width: 100%;
  max-width: 40vw;
}

.sec-about5 {
  position: relative;
  margin-bottom: 100px;
}

.sec-about5 .green-blob2 {
  position: absolute;
  bottom: -23%;
  left: -18%;
  z-index: -1;
  width: 100%;
  max-width: 50vw;
}

.sec-about5 .green-blob {
  position: absolute;
  right: -20%;
  bottom: 20%;
  z-index: -1;
  width: 100%;
  max-width: 40vw;
  transform: rotate(80deg);
}

@media screen and (width <= 500px) {
  .sec-about2 .red-blob {
    top: -5%;
  }

  .sec-about3 .orange-blob {
    top: 50%;
  }

  .sec-about5 .green-blob {
    bottom: 50%;
  }

  .sec-about5 .green-blob2 {
    bottom: -7%;
  }
}

/* interview blobs */
.interview-page .content-wrap .left-area img {
  animation: unset;
}

.interview-page .main-visual__wave {
  z-index: 1;
  height: 300px;
}

.sec-interview .blob1 {
  position: absolute;
  top: 0;
  left: -20%;
  width: 100%;
  max-width: 40vw;
}

.sec-interview .blob2 {
  position: absolute;
  top: 10%;
  right: -25%;
  z-index: 1;
  width: 100%;
  max-width: 50vw;
  transform: rotate(90deg);
}

.sec-interview .blob3 {
  position: absolute;
  bottom: -25%;
  left: -35%;
  z-index: 0;
  width: 100%;
  max-width: 50vw;
  transform: rotate(45deg);
}

.sec-interview .blob5 {
  position: absolute;
  bottom: -5%;
  left: -20%;
  z-index: 1;
  width: 100%;
  max-width: 50vw;
}

.sec-interview .blob4 {
  position: absolute;
  right: -20%;
  bottom: 20%;
  z-index: 0;
  width: 100%;
  max-width: 40vw;
  transform: rotate(80deg);
}

.interview-page .main-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-page .main-visual__blobs > svg:nth-child(4),
.interview-page .main-visual__blobs > svg:nth-child(6) {
  z-index: 2;
}

@media screen and (width <= 1000px) {
  .p-job .sec-project .blob1,
  .p-culture .sec-project .blob1 {
    top: -2%;
  }
}

@media screen and (width <= 760px) {
  .interview-page .main-visual__wave {
    z-index: 1;
    height: 170px;
  }

  .p-job .sec-project .blob1,
  .p-culture .sec-project .blob1 {
    display: none;
  }

  .sec-job .job-img-blob {
    position: relative;
    width: 100%;
  }

  .sec-job {
    padding-top: 20px;
  }
}

@media screen and (width <= 500px) {
  .interview-page .main-visual__wave {
    z-index: 1;
    height: 150px;
  }

  .interview-page .main-visual__blobs > svg:nth-child(2) {
    top: 8%;
    right: -8%;
  }

  .interview-page .main-visual__blobs > svg:nth-child(4) {
    right: 5%;
    bottom: 5%;
    display: none;
    width: 40%;
  }

  .interview-page .main-visual__blobs > svg:nth-child(5) {
    width: 80%;
  }

  .interview-page .main-visual__blobs > svg:nth-child(6) {
    bottom: 15%;
    left: 10%;
    display: none;
  }

  .interview-page .main-visual__blobs > svg:nth-child(7) {
    bottom: 14.5%;
    left: 9.5%;
  }

  .sec-interview .blob1 {
    top: 0;
  }

  .sec-interview .blob2 {
    top: 20%;
  }

  .sec-interview .blob3 {
    bottom: 0;
  }

  .sec-interview .blob5 {
    bottom: -2%;
  }

  .sec-interview .blob4 {
    bottom: 30%;
  }
}

svg rect {
  width: 100%;
  height: 100%;
}

/* ===================================
  9. blobのCSS end
===================================== */

/* ===================================
  10. cloudのCSS start
===================================== */
.goo {
  position: absolute;
  top: -40%;
  right: -20%;
  z-index: 0;
  width: 43vw;
  aspect-ratio: 942 / 863;
  filter: url("style.css");
}

.cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 100px 100px rgb(90 160 200 / 25%));
  animation: float 4s ease alternate infinite;
}

.cloud span {
  position: absolute;
  display: block;
  width: 70%;
  height: auto;
  aspect-ratio: 1;
  background: linear-gradient(to right, #62c67b 0%, #ffdc00 100%);
  border: 4px solid #9696c8bf;
  border-radius: 1000px;
  box-shadow: 0 6px 12px #5aa0c840;
  filter: drop-shadow(0 100px 100px #5aa0c840);
  animation: puffy 12s linear alternate infinite;
}

.cloud span:nth-child(1) {
  bottom: 15%;
  left: 0;
  width: 60%;
  animation: none;
}

.cloud span:nth-child(2) {
  top: -5px;
  right: 0;
  animation-delay: 200ms;
}

.cloud span:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 500ms;
}

@keyframes float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(20px);
  }
}

@keyframes puffy {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg) scale(0.8);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (width <= 500px) {
  .goo {
    width: 53vw;
  }
}

/* ===================================
  10. cloudのCSS end
===================================== */

/* ===================================
  11. lottery のCSS 
===================================== */
.lottery-sec {
  position: relative;
  padding: 40px 0;
  background-color: #df0045;
  background-image: url("../img/lottery/red-bg.jpg");
  background-position: center;
  background-size: cover;
}

.lottery-sec .press-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  cursor: pointer;
}

.lottery-sec .result-box img {
  width: 100%;
  max-width: 630px;
}

.lottery-gif {
  width: 100%;
  max-width: 600px;
}

.lottery-sec .gifimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lottery-sec video {
  width: 100%;
}

.lottery-sec .lottery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup styles */
.lottery-sec #popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  padding: 30px;
  margin-top: 40px;
  overflow: auto;
  text-align: center;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  transform: translate(-50%, -50%);
}

.lottery-sec #overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
}

.lottery-sec #result {
  margin-top: 20px;
  font-size: 24px;
}

.lottery-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottery-sec #closeButton {
  max-width: 400px;
}

.lottery-sec #closeButton:hover {
  cursor: pointer;
}

.lottery-method .exchange {
  max-width: 250px;
  margin: 20px 0;
}

.lottery-method .method-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.lottery-method .exchange-inner {
  width: 100%;
}

.lottery-content .note {
  font-size: 12px;
  color: #df0045;
}

.lottery-again {
  margin-bottom: 50px;
  cursor: pointer;
}

.lottery-content .screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.lottery-content .screenshot-img {
  width: 60%;
  max-width: 400px;
  margin-bottom: 30px;
}

.gifimg img {
  width: 100%;
  max-width: 500px;
}

#popup {
  position: relative;
  z-index: 9999;
  overflow: hidden;
}

.canvas-confetti {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#loadingImage {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}

#loadingImage img {
  width: 100%;
  max-width: 250px;
}

#lotteryVideo {
  position: relative;
  z-index: 9999;
  width: 100%;
  max-width: 500px;
}

@media screen and (width <= 600px) {
  .lottery-method .method-inner {
    flex-direction: column;
  }

  .lottery-method .exchange {
    max-width: 180px;
    margin-bottom: 15px;
  }

  .lottery-content .screenshot-img {
    width: 100%;
  }
}
