@charset "UTF-8";
a:hover {
  color: #ff8000;
}

html body {
  font-feature-settings: "palt";
}
html body > a.floating {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  background-color: #FFC300;
  border-radius: 0.5rem;
  border: 1px solid black;
  padding: 1rem 2rem;
  bottom: 1rem;
  right: 1rem;
  max-width: 300px;
}
html body > a.floating:hover {
  opacity: 0.7;
}
html body > a.floating .text {
  width: 50%;
  color: white;
  text-shadow: 0 0 0.5em black;
  padding-right: 0.5em;
}
html body > a.floating .thumb {
  width: 50%;
}
html body > a.floating .thumb img {
  display: block;
}
html body img {
  max-width: 100%;
  height: auto;
}
html body header {
  container-type: inline-size;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.8);
  container-type: inline-size;
  display: flex;
  align-items: center;
  padding: 2cqw;
  border-bottom: 1px solid black;
}
html body header nav.gnav {
  margin-left: auto;
}
html body header nav.gnav .menu-logo {
  display: none;
}
html body header nav.gnav ul.menu {
  display: flex;
  align-items: center;
}
html body header nav.gnav ul.menu li {
  margin-left: 3cqw;
}
html body header nav.gnav ul.menu li a {
  padding: 0.5cqw 1cqw;
  border: 1px solid black;
  border-radius: 100rem;
  font-size: 1cqw;
  font-weight: 600;
  line-height: 1;
}
html body header nav.gnav ul.menu li a:hover {
  background-color: #ff8000;
  color: white;
}
html body header nav.gnav ul.menu li.contact {
  margin-left: 5rem;
}
html body header nav.gnav ul.menu li.contact a {
  border-radius: 0.5rem;
  background-color: #ff8000;
  color: white;
}
html body header nav.gnav ul.menu li.contact a:hover {
  opacity: 0.7;
}
html body header nav.gnav ul.menu li.top {
  display: none;
}
html body main section.mainvi {
  position: relative;
  border-bottom: 1px solid black;
  container-type: inline-size;
}
html body main section.mainvi .inner {
  height: 100%;
  padding-top: 3cqw;
  padding-bottom: 3cqw;
  position: relative;
}
html body main section.mainvi .inner .mainvi-main {
  display: flex;
  justify-content: center;
  height: 100%;
  text-align: center;
}
html body main section.mainvi .inner .mainvi-main img.mainvi-image {
  max-width: 45cqw;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 1rem;
  border: 1px solid black;
}
html body main section.mainvi .inner .mainvi-main img.dot {
  width: 12cqw;
}
html body main section.mainvi .inner .mainvi-main img.dot.left {
  margin-right: 2cqw;
  margin-bottom: auto;
}
html body main section.mainvi .inner .mainvi-main img.dot.right {
  margin-left: 2cqw;
  margin-top: auto;
  transform: scale(-1, 1);
}
html body main section.mainvi .inner .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 12vw;
  text-align: left;
}
html body main section.mainvi .inner .text h1 {
  position: absolute;
  left: 0;
  bottom: 6cqw;
  width: 100%;
  padding: 0 12vw;
}
html body main section.mainvi .inner .text h1 span {
  display: inline-block;
  background-color: #ff8000;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 4cqw;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid black;
}
html body main section.mainvi .inner .text .sub-text {
  position: absolute;
  right: 12vw;
  top: 6cqw;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-size: 2.5cqw;
  font-weight: 500;
}
html body main section.mainvi img {
  max-height: 100%;
}
html body main section.mainvi.back h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3cqw;
  font-weight: 500;
}
html body main section.mainvi.back h2 span {
  display: block;
  color: #ff8000;
  font-weight: 800;
}
html body main section.mainvi.back .mainvi-main {
  margin-top: 1.5cqw;
}
html body main section.mainvi.back .mainvi-main img {
  border-radius: 0.5cqw;
  border: 1px solid black;
}
html body main section.mainvi {
  /* FVの下中央に固定表示（FV内の親に position:relative がある前提） */
}
html body main section.mainvi .scroll-indicator {
  position: absolute; /* FV内に置くなら absolute */
  top: 50%;
  right: 100px;
  transform: translateX(-50%);
  width: 64px;
  height: 96px;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 10;
}
html body main section.mainvi {
  /* 縦ライン（矢印も含めて表現） */
}
html body main section.mainvi .scroll-indicator__line {
  position: relative;
  width: 2px;
  height: 64px;
  background: #111; /* 矢印の色 */
  border-radius: 999px;
  animation: scrollLine 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
html body main section.mainvi {
  /* 矢印の先端（三角） */
}
html body main section.mainvi .scroll-indicator__line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #111; /* 矢印の色 */
}
html body main section.mainvi {
  /* 下のオレンジリング（画像の丸） */
}
html body main section.mainvi .scroll-indicator__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 35px;
  height: 35px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid #ff8000;
  opacity: 0;
  animation: dropDot 1.6s ease-in-out infinite;
}
@keyframes dropDot {
  0% {
    top: -15px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    top: 40px; /* ライン下端付近 */
    opacity: 0.8;
  }
  100% {
    top: 47px;
    opacity: 0;
  }
}
html body main section.mainvi {
  /* リングがほんの少し膨らんで薄くなる */
}
@keyframes ringPulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
  60% {
    transform: translateX(-50%) scale(1.15);
    opacity: 0.45;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
}
html body main section.mainvi {
  /* ユーザーが動きを減らす設定の場合 */
}
@media (prefers-reduced-motion: reduce) {
  html body main section.mainvi .scroll-indicator__line,
  html body main section.mainvi .scroll-indicator__line::before {
    animation: none;
  }
}
html body main .content-wrap {
  container-type: inline-size;
  border-bottom: 1px solid black;
}
html body main .content-wrap .inner {
  padding-top: 3cqw;
  padding-bottom: 3cqw;
}
html body main .content-wrap.bg-gray {
  background-color: #f5f5f5;
}
html body main .content-wrap.top-loop {
  padding: 3cqw 0;
}
html body main .content-wrap.top-loop ul.top-loop-wrap li {
  padding: 0 0.8cqw;
}
html body main .content-wrap.top-loop ul.top-loop-wrap li img {
  width: 20cqw;
  object-fit: cover;
  aspect-ratio: 440/484;
  border-radius: 0.5rem;
  border: 1px solid black;
}
html body main .content-wrap .top-col2 {
  display: flex;
  gap: 2cqw;
}
html body main .content-wrap .top-col2.reverse {
  flex-direction: row-reverse;
}
html body main .content-wrap .top-col2 + .top-col2 {
  margin-top: 8cqw;
}
html body main .content-wrap .top-col2 > div {
  width: calc((100% - 2cqw) / 2);
}
html body main .content-wrap .top-col3 {
  container-type: inline-size;
  display: flex;
  align-items: center;
}
html body main .content-wrap .top-col3 .img-wrap img {
  display: block;
  position: relative;
  border-radius: 1cqw;
  border: 1px solid black;
}
html body main .content-wrap .top-col3 .img-wrap-l {
  width: 45cqw;
  display: flex;
  align-items: start;
}
html body main .content-wrap .top-col3 .img-wrap-l img:nth-child(1) {
  width: 40%;
  z-index: 1;
}
html body main .content-wrap .top-col3 .img-wrap-l img:nth-child(2) {
  width: 70%;
  margin-left: -10%;
  margin-top: 10cqw;
}
html body main .content-wrap .top-col3 .details {
  width: 35cqw;
  display: flex;
  flex-direction: column;
  padding: 0 4cqw;
}
html body main .content-wrap .top-col3 .details h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3.2cqw;
  font-weight: 500;
}
html body main .content-wrap .top-col3 .details h3 {
  font-family: "Poppins", sans-serif;
  font-size: 3cqw;
  font-weight: 900;
  color: #ff8000;
}
html body main .content-wrap .top-col3 .details p {
  padding: 2cqw 0;
}
html body main .content-wrap .top-col3 .img-wrap-s {
  width: 20cqw;
  align-self: start;
}
html body main .content-wrap .top-col3.reverse {
  flex-direction: row-reverse;
}
html body main .content-wrap .top-col3.reverse .img-wrap-l {
  align-items: end;
}
html body main .content-wrap .top-col3.reverse .img-wrap-l img:nth-child(2) {
  margin-left: -10%;
  margin-top: 0;
  margin-bottom: 10cqw;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap .title {
  width: 70cqw;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap .title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3.2cqw;
  font-weight: 500;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap .title h3 {
  font-family: "Poppins", sans-serif;
  font-size: 3cqw;
  font-weight: 900;
  color: #ff8000;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap .text {
  width: 30cqw;
}
html body main .content-wrap.top-team .top-team-wrap .title-wrap .text p {
  text-align: right;
}
html body main .content-wrap.top-team .top-team-wrap .details {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-top: 2cqw;
}
html body main .content-wrap.top-team .top-team-wrap .details a {
  display: block;
  width: calc(33.33333% - 1.3333333333cqw);
  height: 100%;
  margin-right: 2cqw;
  position: relative;
  border-radius: 0.5rem;
  border: 1px solid black;
  overflow: hidden;
}
html body main .content-wrap.top-team .top-team-wrap .details a:last-child {
  margin-right: 0;
}
html body main .content-wrap.top-team .top-team-wrap .details a img {
  object-fit: cover;
  display: block;
}
html body main .content-wrap.top-team .top-team-wrap .details a .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5cqw;
  font-size: 1.2cqw;
  line-height: 1;
  color: white;
}
html body main .content-wrap.top-team .top-team-wrap .details a .title:after {
  content: "";
  background-image: url(../img/icon-arrow-right-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  right: 1.5cqw;
  top: 50%;
  width: 1.2cqw;
  aspect-ratio: 1;
  transform: translateY(-50%);
}
html body main .content-wrap.top-team .top-team-wrap .details a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1cqw;
  color: white;
}
html body main .content-wrap.top-team .top-team-wrap .details a .text p {
  line-height: 1.3;
}
html body main .content-wrap.top-team .top-team-wrap .details a .text p:nth-child(1) {
  font-size: 1.2cqw;
  padding-bottom: 0.5em;
}
html body main .content-wrap.top-team .top-team-wrap .details a .text p:nth-child(2) {
  font-size: 0.8cqw;
}
html body main .content-wrap.top-joinourteam .top-col2 {
  padding: 0 2cqw;
  background-color: #ff8000;
  border-radius: 0.5cqw;
  border: 1px solid black;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap {
  display: flex;
  gap: 1cqw;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap .vertical-slide {
  width: calc((100% - 1cqw) / 2);
  height: 35vw;
  overflow: hidden;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap .vertical-slide .slick-list li {
  padding: 0.5cqw 0;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap .vertical-slide .slick-list li img {
  border-radius: 0.5cqw;
  border: 1px solid #000;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap .vertical-slide .right-slider .slick-list {
  transform: rotate(180deg) !important;
}
html body main .content-wrap.top-joinourteam .top-col2 .vertical-slide-wrap .vertical-slide .right-slider .slick-list li {
  transform: rotate(180deg) !important;
}
html body main .content-wrap.top-joinourteam .top-col2 .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
html body main .content-wrap.top-joinourteam .top-col2 .details h3 {
  font-family: "Poppins", sans-serif;
  font-size: 3cqw;
}
html body main .content-wrap.top-joinourteam .top-col2 .details p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1cqw;
  margin: 2cqw 0;
}
html body main .content-wrap.back-ourwork, html body main .content-wrap.back-ourteam {
  position: relative;
}
html body main .content-wrap.back-ourwork .interview_loop_text, html body main .content-wrap.back-ourteam .interview_loop_text {
  display: flex;
  position: absolute;
  top: 4cqw;
  z-index: -1;
}
html body main .content-wrap.back-ourwork .interview_loop_text li, html body main .content-wrap.back-ourteam .interview_loop_text li {
  padding: 1rem;
  width: 867px;
}
html body main .content-wrap.back-ourwork, html body main .content-wrap.back-ourteam {
  font-family: "Poppins", sans-serif;
}
html body main .content-wrap.back-ourwork .text .num, html body main .content-wrap.back-ourteam .text .num {
  margin-bottom: 0.3cqw;
  font-size: 1.3cqw;
  line-height: 1;
}
html body main .content-wrap.back-ourwork .text .detail, html body main .content-wrap.back-ourteam .text .detail {
  margin-top: 1.5cqw;
  line-height: 1.4;
  font-size: 1.1cqw;
}
html body main .content-wrap.back-ourwork .img-wrap img, html body main .content-wrap.back-ourteam .img-wrap img {
  border-radius: 0.5cqw;
  border: 1px solid #000;
}
html body main .content-wrap.back-ourwork {
  font-family: "Poppins", sans-serif;
  position: relative;
}
html body main .content-wrap.back-ourwork .back-loop-wrap {
  position: relative;
  padding-bottom: 3cqw;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-track {
  display: flex;
  gap: 2cqw;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-track li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18cqw;
  padding: 3cqw 1cqw;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0.5cqw;
  height: auto !important;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-track li img {
  width: 8cqw;
  border-radius: 100rem;
  border: 1px solid black;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-track li p {
  font-size: 1cqw;
  line-height: 1.3;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-track li p.ttl {
  margin: 0.6cqw 0;
  font-size: 1.2cqw;
  font-weight: bold;
  line-height: 1.6;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-arrow {
  position: absolute;
  top: -100px;
  right: 12vw;
  width: 50px;
  height: 50px;
  background-color: #ff8000;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: 2.5rem;
  line-height: 1.3;
  transition: all 0.3s;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-arrow:hover {
  color: #fff;
  background-color: #000;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-arrow:before {
  display: none;
}
html body main .content-wrap.back-ourwork .back-loop-wrap .slick-arrow.slider-prev {
  left: auto;
  right: 16vw;
}
html body main .content-wrap.back-ourwork .merit {
  display: flex;
  gap: 1cqw;
  margin: 3cqw 0 0;
}
html body main .content-wrap.back-ourwork .merit > div {
  display: flex;
  flex-direction: column;
  gap: 1cqw;
  width: calc((100% - 1cqw) / 3);
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(1) .head {
  background-color: #33C4D7;
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(1) .detail {
  background-image: url(../img/ourwork_arrow_01.webp);
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(2) .head {
  background-color: #FF8000;
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(2) .detail {
  background-image: url(../img/ourwork_arrow_02.webp);
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(3) .head {
  background-color: #FF6F61;
}
html body main .content-wrap.back-ourwork .merit > div:nth-child(3) .detail {
  background-image: url(../img/ourwork_arrow_03.webp);
}
html body main .content-wrap.back-ourwork .merit > div .head {
  text-align: center;
  padding: 0.5cqw;
  border: 1px solid #000;
  border-radius: 0.5cqw;
  color: #fff;
}
html body main .content-wrap.back-ourwork .merit > div .detail {
  border: 1px solid #000;
  padding: 2cqw;
  border-radius: 0.5cqw;
  background-size: cover;
  font-size: 1cqw;
}
html body main .content-wrap.back-ourwork .merit > div .detail ul li {
  display: flex;
  align-items: center;
  gap: 1cqw;
}
html body main .content-wrap.back-ourwork .merit > div .detail ul li:before {
  content: "";
  width: 0.8cqw;
  height: 0.8cqw;
  background-color: #000;
  border-radius: 50%;
}
html body main .content-wrap.back-ourwork .merit > div .detail ul li:last-child {
  justify-content: flex-end;
}
html body main .content-wrap.back-ourwork .merit > div .detail ul li:last-child:before {
  display: none;
}
html body main .content-wrap.back-ourwork .table-wrap {
  margin: 3cqw 0;
  padding: 0 12vw;
}
html body main .content-wrap.back-ourwork .table-wrap .table th, html body main .content-wrap.back-ourwork .table-wrap .table td {
  border: 1px solid #000;
}
html body main .content-wrap.back-ourwork .table-wrap .table th {
  color: #fff;
  background-color: #ff8000;
}
html body main .content-wrap.back-ourwork .table-wrap ul {
  display: flex;
  gap: 1cqw;
}
html body main .content-wrap.back-ourwork .table-wrap ul li {
  width: calc((100% - 2cqw) / 3);
  padding: 0.6cqw;
  color: #fff;
  text-align: center;
  font-size: 1.1cqw;
  border: 1px solid #000;
  background-color: #ff8000;
}
html body main .content-wrap.back-ourwork .table-wrap p {
  margin-top: 1cqw;
  text-align: right;
  font-weight: bold;
}
html body main .content-wrap.back-ourwork .qa {
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1.5cqw;
  margin: 3cqw 0;
  padding: 0 12vw;
}
html body main .content-wrap.back-ourwork .qa > div {
  display: flex;
  gap: 1cqw;
  border: 1px solid #000;
  padding: 1cqw;
  border-radius: 0.5cqw;
  background-color: #fff;
}
html body main .content-wrap.back-ourwork .qa > div .initial span {
  color: #ff8000;
}
html body main .content-wrap.back-ourwork .qa > div .detail .question {
  font-size: 1.3cqw;
  font-weight: 700;
}
html body main .content-wrap.back-ourwork .qa > div .detail .answer {
  font-size: 1.1cqw;
}
html body main .content-wrap.back-ourwork.ourwork-bg {
  background-image: url(../img/ourwork_bg.webp);
  background-position: center bottom;
  background-size: contain;
}
html body main .content-wrap.back-ourteam {
  overflow: hidden;
}
html body main .content-wrap.back-ourteam .top-col2 {
  align-items: center;
}
html body main .content-wrap.back-ourteam .top-col2 .text .catch {
  margin-bottom: 2cqw;
}
html body main .content-wrap.back-ourteam .interview {
  display: flex;
  flex-wrap: wrap;
  gap: 1cqw;
  margin: 1cqw 0 5cqw;
}
html body main .content-wrap.back-ourteam .interview > div {
  width: calc((100% - 1cqw) / 2);
}
html body main .content-wrap.back-ourteam .interview > div .question {
  display: flex;
  align-items: center;
  margin: 1cqw 0;
  font-size: 1.3cqw;
  font-weight: 700;
}
html body main .content-wrap.back-ourteam .interview > div .question:before {
  content: "";
  width: 3cqw;
  height: 1px;
  margin-right: 1cqw;
  background-color: #000;
}
html body main .content-wrap.back-ourteam .interview > div .answer {
  font-size: 1cqw;
  line-height: 1.3;
}
html body main .content-wrap.back-ourteam .message {
  position: relative;
  display: flex;
  gap: 0.6cqw;
}
html body main .content-wrap.back-ourteam .message .bg-main-txt {
  margin-bottom: -2rem;
}
html body main .content-wrap.back-ourteam .message p {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
html body main .content-wrap.back-ourteam .message img {
  width: calc((100% - 4cqw) / 5);
  border-radius: 0.5cqw;
  border: 1px solid #000;
}
html body main .content-wrap.back-workplace .schedule {
  margin-top: 2cqw;
  padding: 2cqw 0;
  background-color: #fffaf6;
  border-radius: 0.5cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 {
  position: relative;
  padding: 0 8cqw 3cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 + .top-col2 {
  margin-top: 0;
}
html body main .content-wrap.back-workplace .schedule .top-col2:before, html body main .content-wrap.back-workplace .schedule .top-col2:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #ff8000;
}
html body main .content-wrap.back-workplace .schedule .top-col2:before {
  top: 0;
  left: 6cqw;
  width: 3px;
  height: 100%;
}
html body main .content-wrap.back-workplace .schedule .top-col2:after {
  top: 0.3cqw;
  left: 5.35cqw;
  width: 1.5cqw;
  height: 1.5cqw;
  border-radius: 50%;
}
html body main .content-wrap.back-workplace .schedule .top-col2:first-child:before {
  height: 83%;
  top: auto;
  bottom: 0;
}
html body main .content-wrap.back-workplace .schedule .top-col2:first-child:after {
  top: 3.3cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2:first-child .thumb {
  padding-top: 3cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2:last-child:before {
  height: 7%;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail {
  padding-right: 8cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .time {
  display: flex;
  flex-wrap: wrap;
  gap: 1cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .time li {
  width: calc((100% - 1cqw) / 2);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .time li:nth-child(odd) {
  background-color: #ff6f61;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .time li:nth-child(even) {
  background-color: #496eb1;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .ttl {
  margin: 1cqw 0;
  font-size: 1.3cqw;
  font-weight: 800;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .detail .text {
  line-height: 1.3;
  font-size: 1cqw;
}
html body main .content-wrap.back-workplace .schedule .top-col2 .thumb img {
  border: 1px solid #000;
  border-radius: 0.5cqw;
}
html body main .content-wrap.back-workplace .numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 1cqw;
  margin-top: 3cqw;
}
html body main .content-wrap.back-workplace .numbers > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc((100% - 2cqw) / 3);
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0.5cqw;
  background-position: center;
  background-size: cover;
  aspect-ratio: 519/360.5;
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(1) {
  background-image: url("../img/workplace_bg_01.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(2) {
  background-image: url("../img/workplace_bg_02.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(3) {
  background-image: url("../img/workplace_bg_03.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(4) {
  background-image: url("../img/workplace_bg_04.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(5) {
  background-image: url("../img/workplace_bg_05.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(6) {
  background-image: url("../img/workplace_bg_06.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(7) {
  background-image: url("../img/workplace_bg_07.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(8) {
  background-image: url("../img/workplace_bg_08.webp");
}
html body main .content-wrap.back-workplace .numbers > div:nth-child(9) {
  background-image: url("../img/workplace_bg_09.webp");
}
html body main .content-wrap.back-workplace .numbers > div p {
  font-family: "Poppins", sans-serif;
}
html body main .content-wrap.back-workplace .numbers > div p.name {
  font-size: 1.6cqw;
  font-weight: 700;
}
html body main .content-wrap.back-workplace .numbers > div p.number {
  display: flex;
  align-items: flex-end;
  padding: 0.5cqw 0;
}
html body main .content-wrap.back-workplace .numbers > div p.number span {
  line-height: 1.2;
}
html body main .content-wrap.back-workplace .numbers > div p.number span:nth-child(1) {
  font-size: 1.6cqw;
  font-weight: 700;
}
html body main .content-wrap.back-workplace .numbers > div p.number span:nth-child(2) {
  color: #ff8000;
  font-size: 5cqw;
  font-weight: 700;
  line-height: 0.8;
}
html body main .content-wrap.back-workplace .numbers > div p.number span:nth-child(2).small {
  font-size: 5cqw;
}
html body main .content-wrap.back-workplace .numbers > div p.number span:nth-child(2).large {
  font-size: 7cqw;
}
html body main .content-wrap.back-workplace .numbers > div p.number span:nth-child(3) {
  font-size: 2.3cqw;
  font-weight: 500;
}
html body main .content-wrap.back-workplace .numbers > div p.caption {
  color: #8c8c8c;
  font-size: 1.1cqw;
  font-weight: 600;
}
html body main .content-wrap.back-workplace .requirements {
  margin-top: 5cqw;
  padding: 0 12vw;
}
html body main .content-wrap.back-workplace .requirements .table tr th, html body main .content-wrap.back-workplace .requirements .table tr td {
  border-bottom: 1px solid #000;
}
html body main .content-wrap.back-workplace .requirements .table tr th {
  width: 30%;
  font-size: 1.2cqw;
  font-weight: 700;
  vertical-align: middle;
}
html body main .content-wrap.back-workplace .requirements .table tr td {
  font-size: 1cqw;
}
html body main .content-wrap.back-workplace .requirements .table tr:first-child th, html body main .content-wrap.back-workplace .requirements .table tr:first-child td {
  border-top: 1px solid #000;
}
html body main .content-wrap.back-contact .contact-wrap {
  padding: 0 12vw;
}
html body main .content-wrap.back-contact .contact-wrap .explanation {
  font-size: 1.1cqw;
}
html body main .content-wrap.back-contact .contact-wrap form {
  margin-top: 3cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group {
  display: flex;
  align-items: center;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group + .form-group {
  margin-top: 3cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .form-label {
  width: 30%;
  margin-bottom: 0;
  font-size: 1.1cqw;
  font-weight: 700;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .form-label .required,
html body main .content-wrap.back-contact .contact-wrap form .form-group .form-label .free {
  padding: 0.1cqw 0.4cqw;
  color: #fff;
  font-size: 0.9cqw;
  font-weight: 400;
  background-color: #ff8000;
  border-radius: 0.3cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .form-label .free {
  background-color: #8a8685;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .radio-group {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .radio-group .radio-item {
  display: flex;
  align-items: center;
  width: 50%;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .radio-group .radio-item input {
  margin-right: 0.6cqw;
  transform: scale(1.4);
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .radio-group .radio-item span {
  font-size: 1.1cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .input-group {
  flex: 1;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group .input-group input, html body main .content-wrap.back-contact .contact-wrap form .form-group .input-group textarea {
  border: 1px solid #000;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .checkbox-item {
  display: flex;
  align-items: center;
  width: fit-content;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .checkbox-item input {
  transform: scale(1.3);
  margin-right: 0.5cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .checkbox-item span {
  font-size: 1.1cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .policy-note {
  margin: 1cqw 0 1.5cqw;
  font-size: 1.1cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .policy-box {
  height: 20cqw;
  padding: 1.5cqw;
  font-size: 1.1cqw;
  overflow: auto;
  border: 1px solid #000;
  border-radius: 0.5cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .policy-box p {
  margin-top: 1.5cqw;
}
html body main .content-wrap.back-contact .contact-wrap form .form-group.policy-group .policy-wrap .policy-box p:first-child {
  margin-top: 0;
}
html body main .content-wrap.back-contact .contact-wrap .confirm table {
  margin-top: 3cqw;
}
html body main .content-wrap.back-contact .contact-wrap .confirm table tr th, html body main .content-wrap.back-contact .contact-wrap .confirm table tr td {
  padding: 1.5cqw 1cqw;
  font-size: 1cqw;
}
html body main .content-wrap.back-contact .contact-wrap .confirm .conf-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
html body main .content-wrap.back-contact .contact-wrap .confirm .conf-btn .form-submit button {
  margin: 0 auto;
}
html body main .content-wrap.back-contact .contact-wrap .btn-wrap a {
  width: 25cqw;
  margin: 0 auto;
}
html body main .content-wrap .bg-dot {
  position: absolute;
  width: 10cqw;
}
html body main .content-wrap .bg-dot.right {
  top: 3cqw;
  right: 9cqw;
  transform: scale(-1, 1);
}
html body main .content-wrap .bg-dot.left {
  left: 9cqw;
  bottom: 3cqw;
}
html body main .content-wrap .bg-main-txt {
  display: flex;
  flex-direction: column;
  gap: 0.8cqw;
  margin-bottom: 2cqw;
}
html body main .content-wrap .bg-main-txt span {
  display: block;
  width: fit-content;
  padding: 0.5cqw 0.4cqw;
  color: #fff;
  font-size: 2.5cqw;
  font-weight: 700;
  line-height: 1;
  background-color: #ff8000;
  border: 1px solid #000;
  white-space: nowrap;
}
html body main .content-wrap .bg-main-txt.bg-none span {
  color: inherit;
  font-weight: 800;
  border: 0;
  background-color: transparent;
}
html body main .content-wrap .bg-main-txt.small {
  gap: 0.6cqw;
}
html body main .content-wrap .bg-main-txt.small span {
  font-size: 1.8cqw;
}
html body main .content-wrap .bg-main-txt.main span {
  color: #ff8000;
  background-color: transparent;
  border: 0;
}
html body main .content-wrap .btn-wrap a,
html body main .content-wrap .btn-wrap button,
html body main .content-wrap .form-submit a,
html body main .content-wrap .form-submit button {
  display: block;
  background-color: #ff8000;
  color: white;
  border: 1px solid black;
  border-radius: 0.5cqw;
  padding: 1cqw;
  position: relative;
}
html body main .content-wrap .btn-wrap a:after,
html body main .content-wrap .btn-wrap button:after,
html body main .content-wrap .form-submit a:after,
html body main .content-wrap .form-submit button:after {
  content: "";
  position: absolute;
  right: 1cqw;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100rem;
  background-image: url(../img/icon-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1rem;
  background-color: white;
  border: 1px solid black;
}
html body main .content-wrap .btn-wrap button,
html body main .content-wrap .form-submit button {
  width: 25cqw;
  margin: 3cqw auto 5cqw;
  text-align: left;
  font-size: 1.4cqw;
}
html body main .content-wrap .btn-wrap.white a,
html body main .content-wrap .form-submit.white a {
  color: #000;
  background-color: #fff;
}
html body main .content-wrap .btn-wrap.white a::after,
html body main .content-wrap .form-submit.white a::after {
  background-image: url(../img/icon-arrow-right-main.svg);
  background-size: cover;
  border: 0;
}
html body main .content-wrap .text-main {
  color: #ff8000;
}
html body main > footer .footer-wrap {
  display: flex;
  justify-content: space-between;
}
html body main > footer .footer-wrap .logo img {
  width: 20vw;
}
html body main > footer .footer-wrap .menu ul {
  display: flex;
  gap: 2cqw;
}
html body main > footer .footer-wrap .menu ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2cqw;
}
html body main > footer .footer-wrap .menu .btn-wrap {
  font-family: "Poppins", sans-serif;
  margin-top: 1cqw;
}
html body main > footer .company-name {
  font-family: "Poppins", sans-serif;
  margin-top: 2cqw;
  font-size: 8.6cqw;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
html body .inner-l {
  padding: 0 3vw;
}
html body .inner-m {
  padding: 0 12vw;
}
html body .inner-s {
  padding: 0 21vw;
}/*# sourceMappingURL=pc.css.map */