@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  width: 100% !important;
  font-family: "Century Gothic", sans-serif;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* ふわっと上に */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 初期状態（透明） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* JavaScriptで.visibleクラスが追加されたら発火 */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  width: 100%;
  overflow: hidden;
}

ul {
  margin: 0;
}

/*********************************

デバイス

**********************************/
@media screen and (max-width: 768px) {
  .spnone {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .pcnone {
    display: none !important;
  }
}
@media screen and (min-width: 1300px) {
  .pc-1none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1299px) {
  .tab-spnone {
    display: none !important;
  }
}
.fade {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  /* transition: 0.3s ease-in-out;*/
}

.fade:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

.flex {
  display: flex;
  justify-content: space-between;
}

.relative {
  position: relative;
}

.img {
  width: 100%;
  vertical-align: middle;
}

.container-recruit {
  max-width: 1000px;
  width: 73.206vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container-recruit {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container-recruit {
    max-width: 100%;
    width: 88.267vw;
  }
}

.content {
  max-width: 880px;
  width: 64.421vw;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .content {
    max-width: 100%;
    width: 76.533vw;
  }
}

@media screen and (max-width: 768px) {
  .container.sp-content {
    max-width: 100%;
    width: 76.533vw;
  }

  .content.sp-container {
    max-width: 100%;
    width: 88.267vw;
  }
}
h2.recruit {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  h2.recruit {
    font-size: 35px;
    margin-bottom: 40px;
  }
}
h2.recruit span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  color: #2c2c2c;
}
h2.recruit span::before {
  content: "";
  background-image: url("../img/recruit/h2-span.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 11.62px;
  height: 11.78px;
  margin-right: 8px;
}
h2.recruit.center.workplace-decoration span.h2-span-white::before{
	  content: "";
  background-image: url("../img/recruit/h2-span-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 11.62px;
  height: 11.78px;
  margin-right: 8px;
}
h2.recruit.mgb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  h2.recruit.mgb30 {
    margin-bottom: 30px;
  }
	h2.recruit.mgb50 {
  margin-bottom: 30px;
}
}

.bgc {
  width: 100%;
  background-color: #f0f0e6;
}

a.btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 294px;
  height: 60px;
  background: #fae600;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 61px;
  text-align: left;
  color: #2c2c2c;
  border-radius: 30px;
  padding-left: 50.6px;
}
a.btn:hover{
	background-color: #FFF;
	outline: 1px solid #fae600;
}
a.btn::after {
  content: "";
  width: 5.42px;
  height: 9.37px;
  background: transparent;
  background-image: url("../img/recruit/right-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 12px;
}
a.btn.sp{
	margin: 0 auto;
}
a.btn.mg-auto {
  width: 223.4px;
  height: 56px;
  padding-left: 20px;
  margin: 0 auto;
}
a.btn.mg-auto:hover{
	background-color: #FFF;
	outline: 1px solid #fae600;
}
a.btn.after::after {
  margin-left: 44px;
}

@media screen and (max-width: 767px) {
  .sp-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

header {
  position: fixed;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  header {
    height: 73px;
  }
}
header .header-inner {
	position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  height: 100%;
  padding: 0 100px 0 45px;
}
@media screen and (max-width: 767px) {
  header .header-inner {
    display: block;
    padding: 0 19px 0 23px;
  }
}
header .h1-box {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  header .h1-box {
    width: 262px;
    gap: 8px;
  }
}
header h1 {
  width: 151px;
  height: 77px;
}
@media screen and (max-width: 767px) {
  header h1 {
    width: 119px;
    height: 61px;
  }
}
header h1 a {
  width: 100%;
  height: 100%;
}
header p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 104px;
  text-align: left;
  color: #333;
}
@media screen and (max-width: 767px) {
  header p {
    line-height: 73px;
    white-space: nowrap;
  }
}
header nav ul.gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 803px;
}
@media screen and (max-width: 1270px) {
  header nav ul.gnav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header nav ul.gnav {
    display: none;
  }
}
header nav ul.gnav li {
  list-style: none;
}
header nav ul.gnav li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 19px;
  text-align: left;
  color: #333;
}
header .above-gnav {
  position: absolute;
  top: 10px;
  right: 100px;
  width: 415px;
}
@media screen and (max-width: 1239px) {
  header .above-gnav {
    display: none;
  }
}
header .above-gnav a {
  width: 200px;
  height: 43px;
  display: block;
}
header .above-gnav a:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 19.1px;
  border-radius: 21.5px;
  background: #3c3c4a;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 30px;
  text-align: left;
  color: #fff;
}
header .above-gnav a:first-child::before {
  content: "";
  background-image: url("../img/recruit/icon_tel.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 19.25px;
  height: 19.25px;
  margin-right: 2.6px;
  margin-top: 4px;
}
header .above-gnav a:first-child:hover {
  background: #fae600;
  color: #2c2c2c;
}
header .above-gnav a:first-child:hover::before {
  background-image: url("../img/recruit/icon_tel-hover.svg");
}
header .above-gnav a:last-child {
  display: flex;
  align-items: center;
  border-radius: 21.5px;
  background: #fae600;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 17px;
  text-align: left;
  color: #2c2c2c;
  padding-left: 35px;
}
header .above-gnav a:last-child::before {
  content: "";
  background-image: url("../img/recruit/icon_mail.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 25.63px;
  height: 17.79px;
  margin-right: 5.6px;
}
header .above-gnav a:last-child::after {
  content: "";
  background-image: url("../img/recruit/right-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.42px;
  height: 9.37px;
  margin-left: 15.3px;
}
header .above-gnav a:last-child:hover {
  background: #2c2c2c;
  color: #fff;
}
header .above-gnav a:last-child:hover::before {
  background-image: url("../img/recruit/icon_mail-hover.svg");
}
header .above-gnav a:last-child:hover::after {
  background-image: url("../img/recruit/right-arrow-hover.svg");
}

.recruit-mv {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-mv {
    padding-top: 73px;
	height: auto;
  }
}
.recruit-mv::before {
  content: '';
  position: absolute;
  height: 100%;
  top: 73px;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
z-index: 2;
}
.recruit-mv p {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 86px;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-mv p {
    width: 82.13%;
    top: 38%;
    font-size: 73px;
    line-height: 74px;
    text-align: left;
    color: #fff;
  }
}
.recruit-mv p span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.03em;
  line-height: 50px;
  text-align: center;
  color: #fff;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .recruit-mv p span {
    text-align: left;
    margin-top: 0;
	  line-height: 1;
  }
}
.recruit-mv a {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 284px;
  height: 99px;
  background-color: #fae600;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.03em;
  line-height: 32px;
  text-align: left;
  color: #2c2c2c;
  border-radius: 50px;
  padding-right: 40px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .recruit-mv a {
    bottom: 21px;
    right: 44px;
  }
}
.recruit-mv a::before {
  content: "";
  background-image: url("../img/recruit/circle_woman.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 81px;
  height: 81px;
}
.recruit-mv a:hover {
  background-color: #FE7D78;
}

.swipertop {
  width: 100%;
  height: calc(100vh - 100px);
}

.swipertop .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-active .swiper-slide__item,
.swiper-slide-duplicate-active .swiper-slide__item,
.swiper-slide-prev .swiper-slide__item {
  animation: zoomanime 10s linear 0s normal both;
}

@keyframes zoomanime {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
footer {
  width: 100%;
  background-color: #3c3c4a;
  padding: 82px 0 118px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 60px 0 80px;
  }
}
footer a.footer-logo {
  width: 234.73px;
  height: 120.09px;
  background: transparent;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  footer a.footer-logo {
    width: 213.07px;
    height: 109.01px;
    margin-bottom: 30px;
  }
}
footer .footer-inner {
  align-items: flex-start;
  padding-bottom: 17px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner {
    display: block;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-inner_left {
    margin-bottom: 30px;
  }
}
footer .footer-inner .footer-inner_left p.footer-inner_details {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: #fff;
  margin-bottom: 19.9px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-inner_left p.footer-inner_details {
    margin-bottom: 19.9px;
  }
}
footer .footer-inner .footer-inner_left p.footer-inner_contact {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 19px;
  text-align: left;
  color: #fff;
  margin-bottom: 6px;
}
footer .footer-inner .footer-inner_left .footer-inner_matter {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 19px;
  text-align: left;
  color: #fff;
}
footer .footer-inner .footer-inner_left .footer-inner_matter span {
  display: block;
  font-weight: 500;
  font-size: 12px;
}
footer .footer-inner .footer-inner_left a.footer_tel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 46px;
  text-align: left;
  color: #fff;
  margin-bottom: 7px;
}
footer .footer-inner .footer-inner_left a.footer_tel::before{
  content: "";
  background-image: url("../img/recruit/icon_tel-footer.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 12px;
width: 27.79px;
height: 27.79px;
}
footer .footer-inner .footer-nav {
  width: 554px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav {
    width: 100%;
  }
}
footer .footer-inner .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 18px 0;
  margin-top: 45.9px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul {
    gap: 10px 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
footer .footer-inner .footer-nav ul li {
  margin-right: 41px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul li {
    margin-right: 55px;
  }
}
footer .footer-inner .footer-nav ul li.mgr13 {
  margin-right: 13px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul li.mgr13 {
    margin-right: 39px;
  }
}
footer .footer-inner .footer-nav ul li.mgr37 {
  margin-right: 37px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul li.mgr37 {
    margin-right: 0;
  }
}
footer .footer-inner .footer-nav ul li.mgr25 {
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul li.mgr25 {
    margin-right: 22px;
  }
}
footer .footer-inner .footer-nav ul li.mgr0 {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-nav ul li.mgr41 {
    margin-right: 0;
  }
}
footer .footer-inner .footer-nav ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 19px;
  text-align: left;
  color: #fff;
}
footer .footer-inner .footer-nav ul li a::before {
  content: "";
  width: 12px;
  height: 0px;
  background: transparent;
  border: 2px solid #fae600;
  margin-right: 5px;
}
footer small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 12px;
    margin-top: 20px;
  }
}

section#aboutus {
  width: 100%;
	position: relative;
	z-index: 2;
}
section#aboutus .bgc.aboutus {
  padding: 160px 0 120px;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus {
    padding: 70px 0 0;
  }
}
section#aboutus .bgc.aboutus .sp-aboutus-img {
  width: 100%;
  height: 255px;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  section#aboutus .bgc.aboutus .sp-aboutus-img {
    object-fit: cover;
  }
}
img.aboutus-decoration01{
	position: absolute;
bottom: -121px;
    right: -182px;
	width: 514px;
	height: 523px;
}
@media screen and (max-width: 767px) {
	img.aboutus-decoration01{
	bottom: -30px;
    right: -92px;
		width: 329px;
	height: 339px;
	}
}
section#aboutus .bgc.aboutus .content.box {
  position: relative;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus .content.box {
    margin-bottom: 40px;
  }
}
section#aboutus .bgc.aboutus .content.box p.aboutus-strengths {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.03em;
  line-height: 50px;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  section#aboutus .bgc.aboutus .content.box p.aboutus-strengths {
    width: 60.5%;
  }
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus .content.box p.aboutus-strengths {
    width: 100%;
    font-size: 27px;
    line-height: 37px;
    margin-bottom: 30px;
	 letter-spacing: 0;
  }
}
section#aboutus .bgc.aboutus .content.box p.aboutus-strengths-text {
  width: 56.477%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 38px;
  text-align: left;
  color: #383e44;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus .content.box p.aboutus-strengths-text {
    width: 100%;
    line-height: 33px;
    margin-bottom: 40px;
  }
}
section#aboutus .bgc.aboutus .content.box .image-box img:nth-of-type(1) {
  position: absolute;
  top: 26px;
  right: -180px;
  width: 250px;
  height: 190px;
  border-radius: 20px;
}
section#aboutus .bgc.aboutus .content.box .image-box img:nth-of-type(2) {
  position: absolute;
  top: 136px;
  right: 110px;
  width: 200px;
  height: 155px;
  border-radius: 20px;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  section#aboutus .bgc.aboutus .content.box .image-box img:nth-of-type(2) {
    right: 90px;
  }
}
section#aboutus .bgc.aboutus .content.box .image-box img:nth-of-type(3) {
  position: absolute;
  top: 258px;
  right: -242px;
  width: 480px;
  height: 370px;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  section#aboutus .bgc.aboutus .content.box .image-box img:nth-of-type(3) {
    width: 50%;
    height: auto;
    right: -180px;
  }
}
section#aboutus .bgc.aboutus .content.box .sp-image-box img:nth-of-type(1) {
  width: 75.5%;
  height: auto;
  border-radius: 10%;
  margin-left: 0;
  margin-bottom: 25px;
}
section#aboutus .bgc.aboutus .content.box .sp-image-box img:nth-of-type(2) {
  display: block;
  width: 60.4%;
  height: auto;
  border-radius: 10%;
  margin-left: auto;
}

section#aboutus .bgc.aboutus .aboutus-middle-image {
  width: 100%;
  height: 530px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus .aboutus-middle-image {
    height: 350px;
  }
section#aboutus .bgc.aboutus .content.box .sp-image-box img.absolute-diamond {
  position: absolute;
  bottom: -98px;
  left: -92px;
  overflow: hidden;
  z-index: -1;
  width: 270.34px;
  height: 274.04px;
}
}
section#aboutus .bgc.aboutus .aboutus-middle-image img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
section#aboutus .bgc.aboutus h3.white-box {
  position: relative;
  width: 78.33%;
  max-width: 1070px;
  height: 202px;
  border-radius: 20px;
  background: #fff;
  margin: -101px auto 0;
  padding: 46px 0 52px;
}
@media screen and (max-width: 910px) {
  section#aboutus .bgc.aboutus h3.white-box {
    width: 88.267vw;
	  height:auto; 
    max-width: 100%;
    margin: -99px auto 0;
    padding: 31px 0 29px;
  }
}
section#aboutus .bgc.aboutus h3.white-box::before {
  content: "“";
  position: absolute;
  top: 22px;
  left: 108px;
  width: 32px;
  height: 91px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 63px;
  letter-spacing: 0.03em;
  line-height: 113px;
  text-align: center;
  color: #eceae3;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus h3.white-box::before {
    top: -20px;
    left: 10px;
    width: 28px;
    height: 79px;
    font-size: 54px;
    letter-spacing: 0.03em;
    line-height: 97px;
  }
}
section#aboutus .bgc.aboutus h3.white-box span.cl-red {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0.03em;
  line-height: 50px;
  text-align: center;
  color: #fe7d78;
  border-bottom: 3px dotted #fe7d78;
  width: max-content;
  margin: 0 auto 14.3px;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus h3.white-box span.cl-red {
    font-size: 20px;
    letter-spacing: 0.03em;
    line-height: 42px;
  }
}
section#aboutus .bgc.aboutus h3.white-box span.cl-black {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.03em;
  line-height: 50px;
  text-align: center;
  color: #383e44;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus h3.white-box span.cl-black {
    font-size: 25px;
    letter-spacing: 0.03em;
    line-height: 32px;
  }
}
section#aboutus .bgc.aboutus h3.white-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 29px;
  background-image: url("../img/recruit/download.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus h3.white-box::after {
    width: 46px;
    height: 21px;
    bottom: -31px;
  }
}
section#aboutus .bgc.aboutus ul.aboutus-ul {
  width: 100%;
  padding-top: 69px;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus ul.aboutus-ul {
    padding-top: 41px;
    display: block;
    padding-bottom: 80px;
  }
}
section#aboutus .bgc.aboutus ul.aboutus-ul li {
  position: relative;
  width: calc((100% - (21px * 3)) / 4);
  text-align: center;
}
@media screen and (max-width: 767px) {
  section#aboutus .bgc.aboutus ul.aboutus-ul li {
    width: 234px;
    margin: 0 auto 30px;
  }
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div {
  height: 240px;
  border-radius: 20px;
  background: #fff;
  padding-top: 22px;
  margin-bottom: 20px;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 28px;
  text-align: center;
  color: #2c2c2c;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div.img-01::after {
  content: "";
  position: absolute;
  top: 89px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/recruit/aboutus-woman01.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 117.5px;
  height: 168px;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div.img-02::after {
  content: "";
  position: absolute;
  top: 78.7px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/recruit/aboutus-woman02.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 161.01px;
  height: 152.75px;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div.img-03::after {
  content: "";
  position: absolute;
  top: 96.7px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/recruit/aboutus-woman03.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 139.95px;
  height: 133.02px;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li div.img-04::after {
  content: "";
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/recruit/aboutus-woman04.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 188.7px;
  height: 142.38px;
}
section#aboutus .bgc.aboutus ul.aboutus-ul li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 25px;
  text-align: left;
  color: #2c2c2c;
}
section#aboutus .futures-wrap {
  width: 100%;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap {
    padding-top: 80px;
  }
}
section#aboutus .futures-wrap img.futures-main {
  width: 91.04px;
  height: 24.18px;
  margin: 0 auto 22.8px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap img.futures-main {
    margin-bottom: 19.8px;
  }
}
div.decoration-aboutus{
	position: absolute;
	bottom: -66px;
	left: -130px;
width: 455px;
height: 455px;
}
div.decoration-aboutus img.decoration-aboutus{
	width: 100%;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	div.decoration-aboutus{
		width: 301px;
height: 300px;
		z-index: 1;
		bottom: 32px;
    left: -74px;
	}
}
section#aboutus .futures-wrap h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.03em;
  line-height: 50px;
  text-align: center;
  color: #383e44;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap h3 {
    font-size: 25px;
    letter-spacing: 0.03em;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
section#aboutus .futures-wrap h3::before {
  content: "";
  background-image: url("../img/recruit/aboutus_futures-left.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 39.68px;
  height: 46.46px;
  margin-right: 16.3px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap h3::before {
    width: 34.7px;
    margin-right: 13.6px;
    background-image: url("../img/recruit/sp-aboutus_futures-left.svg");
    height: 57.94px;
  }
}
section#aboutus .futures-wrap h3::after {
  content: "";
  background-image: url("../img/recruit/aboutus_futures-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 39.68px;
  height: 46.46px;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap h3::after {
    width: 34.7px;
    height: 57.94px;
    margin-left: 13.6px;
    background-image: url("../img/recruit/sp-aboutus_futures-right.svg");
  }
}
section#aboutus .futures-wrap p {
  width: 821px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #383e44;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap p {
    width: 100%;
    line-height: 33px;
    margin: 0 auto 20px;
  }
}
section#aboutus .futures-wrap img.aboutus_futures-people {
  position: relative;
  z-index: 2;
  width: 553.45px;
  height: 194px;
  background: transparent;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section#aboutus .futures-wrap img.aboutus_futures-people {
    width: 100%;
    height: auto;
  }
}


.parallax-box-1 {
  clip-path: inset(0);
  width: 100%;
  height: 670px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .parallax-box-1 {
    height: 250px;
  }
}

.parallax-box-1::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/hero-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .parallax-box-1::after {
    background-image: url("../img/top/hero-sp3.jpg");
    background-position: center;
  }
}

section#work {
  width: 100%;
  margin-top: -96px;
position: relative;
    z-index: 0;
}
@media screen and (max-width: 767px) {
  section#work {
    margin-top: -180px;
  }
}
section#work .bgc.work {
  padding: 219px 0 120px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work {
    padding: 180px 0 79.8px;
  }
}
section#work .bgc.work h2.recruit.center {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work h2.recruit.center {
    margin-bottom: 30px;
  }
}
h2.recruit.work-decoration::before{
	content: "";
	position: absolute;
	top: -19px;
    left: 300px;
	width: 53.83px;
height: 72.04px;
background-image: url("../img/recruit/work-star_left.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
h2.recruit.work-decoration span::after{
	content: "";
		position: absolute;
	top: 57px;
	right: 304px;
width: 34.78px;
height: 34.78px;
background-image: url("../img/recruit/work-star_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

section#work .bgc.work h2.recruit.center span {
  justify-content: center;
}
section#work .bgc.work p.work-about {
  width: 787px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #383e44;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
	h2.recruit.work-decoration::before{
	content: "";
	position: absolute;
	top: -19px;
left: 72.1px;
    width: 39.04px;
    height: 52.25px;
		background-image: url("../img/recruit/work-star_left.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
h2.recruit.work-decoration span::after{
	content: "";
		position: absolute;
	top: 28px;
	right: 72.1px;
width: 25.23px;
height: 25.23px;
	background-image: url("../img/recruit/work-star_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

  section#work .bgc.work p.work-about {
    width: 100%;
    line-height: 33px;
    margin: 0 0 29.9px;
  }
}
section#work .bgc.work ul.work-wrap {
  width: 100%;
  align-items: center;
  gap: 15.8px;
  margin: 0 0 90px;
}
section#work .bgc.work ul.work-wrap::before{
	content: "";
	position: absolute;
	top: 0;
width: 19.04px;
height: 19.05px;
background-image: url("../img/recruit/work-list-dec-left.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
section#work .bgc.work ul.work-wrap::after{
	content: "";
	position: absolute;
	bottom: 0;
    right: -44px;
width: 42.93px;
height: 44.44px;
background-image: url("../img/recruit/work-list-dec-right.svg");
	background-repeat: no-repeat;
	background-size: contain;

}

@media screen and (max-width: 1280px) {
  section#work .bgc.work ul.work-wrap {
    flex-wrap: wrap;
    width: 60%;
    gap: 50px 100px;
    margin: 0 auto 90px;
  }
}
@media screen and (max-width: 767px) {
  section#work .bgc.work ul.work-wrap {
    display: block;
    margin: 0 auto 60px;
	  width: 100%;
  }
	section#work .bgc.work ul.work-wrap::after{
	content: "";
	position: absolute;
	bottom: 0;
    right: -5.9px;
width: 42.93px;
height: 44.44px;
background-image: url("../img/recruit/work-list-dec-right.svg");
	background-repeat: no-repeat;
	background-size: contain;

}
}
section#work .bgc.work ul.work-wrap li {
  width: 238.25px;
  height: 238.25px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work ul.work-wrap li {
    display: block;
    margin: 0 auto 20px;
  }
}
section#work .bgc.work ul.work-wrap li div.bgc-yellow {
  height: 93.2px;
  background: #fae600;
}
section#work .bgc.work ul.work-wrap li div.bgc-white {
  height: 60.88%;
  background: #fff;
  padding: 13px 0 23px;
}
section#work .bgc.work ul.work-wrap li p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 35px;
  text-align: center;
  color: #2c2c2c;
  padding-top: 15px;
  padding-bottom: 5.3px;
}
section#work .bgc.work ul.work-wrap li p span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.03em;
  line-height: 42px;
  text-align: center;
  color: #fff;
}
section#work .bgc.work ul.work-wrap li .list-text {
  width: 184px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 22px;
  text-align: center;
  color: #2c2c2c;
  margin: 0 auto;
  padding: 0;
}
section#work .bgc.work .work-box {
  max-width: 1000px;
  border-radius: 30px;
  background: #fff;
  outline: 3px solid #fae600;
  overflow: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box {
    max-width: 100%;
    margin-bottom: 50px;
  }
}
section#work .bgc.work .work-box:last-child {
  margin-bottom: 0;
}
section#work .bgc.work .work-box .work-box-title {
  position: relative;
  width: 100%;
  height: 106.8px;
  background: #fae600;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .work-box-title {
    height: 70px;
  }
}
section#work .bgc.work .work-box .work-box-title::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  background-image: url("../img/recruit/work_box-title-star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 57.86px;
  height: 52.61px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .work-box-title::after {
    top: 11.1px;
    right: 12.2px;
    width: 29.99px;
    height: 29.85px;
  }
}
section#work .bgc.work .work-box .work-box-title h3.h3-ja {
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 38px;
  letter-spacing: 0.03em;
  line-height: 106.8px;
  text-align: left;
  color: #2c2c2c;
  padding: 0 75px 0 70px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .work-box-title h3.h3-ja {
    font-size: 22px;
    letter-spacing: 0.03em;
    line-height: 70px;
    padding: 0 40px 0 21px;
  }
}
section#work .bgc.work .work-box .work-box-title h3.h3-ja span.h3-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 60px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: right;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 7.8px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .work-box-title h3.h3-ja span.h3-en {
    font-size: 30px;
    letter-spacing: 0.03em;
    line-height: 70px;
    margin-bottom: 0;
  }
}
section#work .bgc.work .work-box .pd60 {
  padding: 60px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 {
    padding: 30px 22px 50px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-inner {
  align-items: flex-start;
  width: 100%;
}
section#work .bgc.work .work-box .pd60 .work-box-inner.mgb {
	margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-inner {
    display: block;
    margin-bottom: 20px;
  }
	section#work .bgc.work .work-box .pd60 .work-box-inner.mgb {
	margin-bottom: 20px;
}

}
section#work .bgc.work .work-box .pd60 .work-box-inner img {
  width: 390px;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-inner img {
    width: 100%;
	  height: 250px;
    margin-bottom: 30px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text {
  display: flex;
  flex-wrap: wrap;
  gap: 14.2px;
  width: 450px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text {
    display: block;
    width: 100%;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 28px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text p {
    margin-bottom: 20px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job {
  width: 100%;
  border-radius: 20px;
  background: rgba(250, 230, 0, 0.15);
  padding: 20px 14.7px 20px 30px;
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job.pd2 {
  padding: 30px 45.7px 25px 30.3px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job {
    padding: 30px 20px 32px;
  }
	section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job.pd2 {
  padding: 30px 20px 32px;
}

}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 15px;
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job ul.custom-list {
  list-style: none;
  padding-left: 0;
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job ul.custom-list li {
  position: relative;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 25px;
  text-align: left;
  color: #333;
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job ul.custom-list li:last-child {
  margin-bottom: 0;
}
section#work .bgc.work .work-box .pd60 .work-box-inner .work-box-text .main-job ul.custom-list li::before {
  content: "●";
  color: #FE7D78;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 15px;
padding-right: 4px;
}
section#work .bgc.work .work-box .pd60 h4.h4-flow {
  width: 120px;
  height: 35px;
  border-radius: 17.5px;
  background: rgba(250, 230, 0, 0.8);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 35px;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 20px;
}
section#work .bgc.work .work-box .pd60 ul.schedule {
  align-items: center;
  width: 100%;
  margin-bottom: 28px;
}
@media screen and (max-width: 988px) {
  section#work .bgc.work .work-box .pd60 ul.schedule {
    overflow-x: auto;
  }
}
section#work .bgc.work .work-box .pd60 ul.schedule li {
  width: 155px;
}
@media screen and (max-width: 988px) {
  section#work .bgc.work .work-box .pd60 ul.schedule li {
    flex-shrink: 0;
    margin-right: 26px;
  }
}
section#work .bgc.work .work-box .pd60 ul.schedule li p.schedule-time {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 29px;
  background: #fae600;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 29px;
  text-align: center;
  color: #2c2c2c;
  border-radius: 10px 0 10px 0;
}
section#work .bgc.work .work-box .pd60 ul.schedule li img {
  width: 100%;
  height: 120px;
  border-radius: 10px 10px 0px 0px;
  object-fit: cover;
}
section#work .bgc.work .work-box .pd60 ul.schedule li p.schedule-text {
  width: 155px;
  height: 98px;
  background: rgba(250, 230, 0, 0.15);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #333;
  padding: 15px 15px 0 14px;
  border-radius: 0px 0px 10px 10px;
}
section#work .bgc.work .work-box .pd60 ul.schedule li::after {
  content: "";
  position: absolute;
  top: 66px;
  right: -18.88px;
  background-image: url("../img/recruit/right-arrow.svg");
  background-size: cover;
  width: 10.88px;
  height: 18.81px;
}
section#work .bgc.work .work-box .pd60 ul.schedule li:last-child::after {
  display: none;
}
section#work .bgc.work .work-box .pd60 .work-box-faq {
  width: 100%;
  border-radius: 20px;
  background: rgba(240, 240, 230, 0.5);
  padding: 34px 40px 49px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-faq {
    width: 100%;
    padding: 50px 20px 30px;
    margin-bottom: 40px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-faq p.question {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-faq p.question {
    margin-bottom: 10px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-faq p.question span.q {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #fae600;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 28px;
  text-align: center;
  color: #2c2c2c;
  margin-right: 11px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-faq p.question span.q {
    margin-right: 12px;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-faq p.answer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 25px;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  section#work .bgc.work .work-box .pd60 .work-box-faq p.answer {
    margin-bottom: 20px;
    letter-spacing: 0;
  }
}
section#work .bgc.work .work-box .pd60 .work-box-faq p.answer:last-child {
  margin-bottom: 0;
}

#interview {
  width: 100%;
  background-image: linear-gradient(to left, #fae600 74.89%, white 74.89%);
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  #interview {
    padding: 80px 0;
  }
}
#interview p.interview-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #383e44;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #interview p.interview-copy {
    line-height: 33px;
    margin-bottom: 30px;
  }
}
#interview .interview-wrap {
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 60px 60px 70px;
	margin: 0 auto;}
	@media screen and (min-width: 768px) and (max-width: 1020px){
		  #interview .interview-wrap {
			  max-width: 98%;}
	}
@media screen and (max-width: 767px) {
  #interview .interview-wrap {
    max-width: 100%;
    width: 88.267vw;
    padding: 50px 22px;
  }
}
#interview .interview-wrap .interview-box {
  align-items: flex-start;
  padding-bottom: 40px;
  width: 880px;
  background: transparent;
  border-bottom: 3px dotted #fae600;
  margin-bottom: 40px;
}
	@media screen and (min-width: 768px) and (max-width: 1020px){
		  #interview .interview-wrap .interview-box {
			  width: 100%;
    gap: 16px;}
	}

@media screen and (max-width: 767px) {
  #interview .interview-wrap .interview-box {
    display: block;
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
#interview .interview-wrap .interview-box:last-child {
  margin-bottom: 0;
}
#interview .interview-wrap .interview-box img {
  width: 280px;
  height: 265px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #interview .interview-wrap .interview-box img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
#interview .interview-wrap .interview-box .interview-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 570px;
}
@media screen and (max-width: 767px) {
  #interview .interview-wrap .interview-box .interview-text {
    display: block;
    width: 100%;
  }
}
#interview .interview-wrap .interview-box .interview-text h3.job-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 17px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  #interview .interview-wrap .interview-box .interview-text h3.job-name span {
    display: block;
    line-height: 30px;
    margin-bottom: 15px;
  }
#interview .interview-wrap .interview-box .interview-text h3.job-name span.inline-block {
    display: inline-block;
  }
}
#interview .interview-wrap .interview-box .interview-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 28px;
  text-align: left;
  color: #2c2c2c;
}

section#workplace {
  width: 100%;
  background: rgba(250, 230, 0, 0.86);
  padding: 138.8px 0 120px;
}
@media screen and (max-width: 767px) {
  section#workplace {
    padding: 80px 0;
  }
}
section#workplace h2.center {
  text-align: center;
  margin-bottom: 63px;
}
h2.workplace-decoration::before{
	content: "";
	position: absolute;
	top: -19px;
    left: 241px;;
	width: 53.83px;
height: 72.04px;
background-image: url("../img/recruit/workplace-star_left.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
h2.workplace-decoration span::after{
	content: "";
		position: absolute;
	top: 57px;
	right: 242px;;
width: 34.78px;
height: 34.78px;
background-image: url("../img/recruit/workplace-star_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 767px) {
h2.workplace-decoration::before{
	content: "";
	position: absolute;
	top: -18px;
    left: 0;
width: 39.04px;
height: 52.25px;
background-image: url("../img/recruit/workplace-star_left-sp.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
h2.workplace-decoration span::after{
	content: "";
		position: absolute;
	top: 28px;
	right: 0;
width: 34.78px;
height: 34.78px;
background-image: url("../img/recruit/workplace-star_right-sp.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
	
	
}

@media screen and (max-width: 767px) {
  section#workplace h2.recruit.center {
    margin-bottom: 43px;
  }
}
section#workplace h2.recruit.center span {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  section#workplace h2.recruit.center span {
    padding-right: 19.62px;
  }
}
section#workplace ul.ul-workplace {
  align-items: flex-start;
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1010px) {
  section#workplace ul.ul-workplace {
    flex-wrap: wrap;
    gap: 80px;
    width: 60%;
    margin: 0 auto 113px;
  }
}
@media screen and (max-width: 767px) {
  section#workplace ul.ul-workplace {
    display: block;
    margin-bottom: 50px;
  }
}
section#workplace ul.ul-workplace li {
  position: relative;
  width: 230px;
  border-radius: 20px;
  background: #fff;
  padding: 34px 22px 27px 23px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section#workplace ul.ul-workplace li {
    margin: 0 auto 43px;
  }
}
section#workplace ul.ul-workplace li:nth-of-type(2), section#workplace ul.ul-workplace li:nth-of-type(3) {
  padding: 34px 22px 52px 23px;
}
section#workplace ul.ul-workplace li:nth-of-type(2), section#workplace ul.ul-workplace li:nth-of-type(4) {
  margin-top: 63px;
}
@media screen and (max-width: 767px) {
  section#workplace ul.ul-workplace li:nth-of-type(2), section#workplace ul.ul-workplace li:nth-of-type(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1010px) {
  section#workplace ul.ul-workplace li:nth-of-type(2), section#workplace ul.ul-workplace li:nth-of-type(4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  section#workplace ul.ul-workplace li:nth-of-type(2):last-child, section#workplace ul.ul-workplace li:nth-of-type(4):last-child {
    margin-bottom: 0;
  }
}
section#workplace ul.ul-workplace li p.li-top {
  position: absolute;
  top: -21.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-align: center;
  color: #fe7d78;
}
section#workplace ul.ul-workplace li p.li-top span {
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-left: 5px;
}
section#workplace ul.ul-workplace li img {
  width: 183px;
  height: 135px;
  background: #dddada;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  section#workplace ul.ul-workplace li img {
    margin: 0 auto 15px;
  }
}
section#workplace ul.ul-workplace li h3 {
  margin-bottom: 16px;
}
section#workplace ul.ul-workplace li h3 mark {
  background: linear-gradient(transparent 70%, #ff6 70%);
  /* 改行時に背景を分割して適用する */
  -webkit-box-decoration-break: clone;
  /* Webkitブラウザ用 */
  box-decoration-break: clone;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0;
  line-height: 32px;
  text-align: center;
  color: #2c2c2c;
}
section#workplace ul.ul-workplace li p {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 25px;
  text-align: left;
  color: #2c2c2c;
  margin: 0 auto;
}
section#workplace .workplace-message {
  width: 1000px;
  gap: 66px;
  border-radius: 30px;
  background: #fff;
  padding: 100px 80px;
}
@media screen and (max-width: 767px) {
  section#workplace .workplace-message {
    display: block;
    width: 100%;
    padding: 40px 22px;
  }
}
section#workplace .workplace-message img {
  width: 340px;
  height: 440px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  section#workplace .workplace-message img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }
}
section#workplace .workplace-message .workplace-message-inner {
  flex-wrap: wrap;
  gap: 29.9px;
  width: 455px;
}
@media screen and (max-width: 767px) {
  section#workplace .workplace-message .workplace-message-inner {
    display: block;
    width: 100%;
  }
}
section#workplace .workplace-message .workplace-message-inner h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.03em;
  line-height: 38px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  section#workplace .workplace-message .workplace-message-inner h3 {
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 24px;
letter-spacing: 0.03em;
line-height: 35px;
text-align: left;
color: #2c2c2c;
white-space: nowrap;
    margin-bottom: 30px;
  }
}
section#workplace .workplace-message .workplace-message-inner ul.message-list {
	    position: relative;
    z-index: 2;
  padding-left: 0;
}
section#workplace .workplace-message .workplace-message-inner ul.message-list li {
  position: relative;
  padding-left: 40.8px;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 27px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  section#workplace .workplace-message .workplace-message-inner ul.message-list li {
	font-family: "Noto Sans JP", sans-serif;
font-weight: 600;
font-size: 16px;
letter-spacing: 0.03em;
line-height: 27px;
text-align: left;
color: #2c2c2c;
    margin-bottom: 20px;
	padding-left: 39.8px;
  }
}
section#workplace .workplace-message .workplace-message-inner ul.message-list li:last-child {
  margin-bottom: 0;
}
section#workplace .workplace-message .workplace-message-inner ul.message-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #FE7D78;
  width: 28px;
  height: 28px;
  background-image: url("../img/recruit/mark_check.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

img.message-kirara-logo {
  position: absolute;
  bottom: 5.5px;
  right: 2.5%;
  width: 422.92px;
  height: 216.37px;
}
@media screen and (max-width: 767px) {
  img.message-kirara-logo {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 261.69px;
    height: 133.88px;
    background: transparent;
  }
}

section#faq {
  width: 100%;
  background-color: rgba(240, 240, 230, 0.86);
  padding: 120px 0 266.3px;
  /* inputのチェックボックスを非表示 */
  /* 見出しボタン部分 */
  /* Q&A追加 */
}
@media screen and (max-width: 767px) {
  section#faq {
    padding: 80px 0 126.3px;
  }
}
img.faq-decoration01{
	position: absolute;
	top: 46.9px;
	right: -134px;
	width: 432.64px;
height: 438.56px;
overflow: hidden;
}
img.faq-decoration02{
	position: absolute;
	top: 400px;
	left: -161px;
	width: 505px;
height: 509px;
overflow: hidden;
}
section#faq .accordion {
  width: 100%;
}
section#faq .accordion-hidden {
  display: none;
}
section#faq .accordion-hidden:checked + .accordion-open {
  margin: 0;
  border-radius: 10px 10px 0px 0px;
}
section#faq .accordion-hidden:checked + .accordion-open::after {
  transform: translateY(-50%) rotate(0);
}
section#faq .accordion-hidden:checked + .accordion-open + .accordion-inner {
  height: auto;
  opacity: 1;
  padding: 16px 61px 15px 58px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
	img.faq-decoration01{
	position: absolute;
top: 0;
    right: -145px;
		width: 270.34px;
    height: 274.04px;
    z-index: -2;
		overflow: hidden;
}
img.faq-decoration02{
	position: absolute;
    width: 305px;
    height: 338px;
    top: 330px;
    left: -91px;
	overflow: hidden;
}
  section#faq .accordion-hidden:checked + .accordion-open + .accordion-inner {
    padding: 18px 39px 18px 53px;
  }
}
.accordion_qa section#faq .accordion-hidden:checked {
  padding: 10px 10px 10px 2.5em;
}
section#faq .accordion-open {
  display: block;
  border-radius: 10px;
  padding: 16px 61px 15px 58px;
  background: #fae600;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
  /* ＋アイコン */
  /* アイコンのー */
}
@media screen and (max-width: 767px) {
  section#faq .accordion-open {
    padding: 10px 2em 10px 3.5em;
  }
}
section#faq .accordion-open span.q {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 28px;
  text-align: left;
  color: #2c2c2c;
}
section#faq .accordion-open::before, section#faq .accordion-open::after {
  content: '';
  width: 21px;
  height: 0px;
  background: transparent;
  border: 2px solid #fe7d78;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  section#faq .accordion-open::before, section#faq .accordion-open::after {
    width: 15px;
    right: 15px;
  }
}
section#faq .accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
section#faq .accordion-open.last {
  margin-bottom: 0;
}
section#faq .accordion_qa .q::before,
section#faq .accordion_qa .a::before {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #fe7d78;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 69px;
  text-align: center;
  color: #fff;
}
section#faq .accordion_qa .q::before {
  content: 'Q';
  position: absolute;
  top: 50%;
  left: 20px;
}
section#faq .accordion_qa .a::before {
  content: 'A';
  position: absolute;
  top: 32px;
  left: 20px;
}

/* アコーディオン中身部分 */
label.accordion-inner {
  position: relative;
  display: block;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}
label.accordion-inner span.a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 24px;
  text-align: left;
  color: #2c2c2c;
}

section#message {
  width: 100%;
  border-radius: 80px 80px 0px 0px;
  background: #fff;
  margin-top: -163px;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  section#message {
    background: linear-gradient(to bottom, #f0f0e6 122.1px, #f0f0e6 122.1px, #FFFFFF 6%, #FFFFFF 100%);
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  section#message h2.recruit.after {
    margin-bottom: 126.2px;
  }
}
img.message-decoration01{
		position: absolute;
	top: 226px;
	right: -45px;
	width: 505px;
height: 502px;
overflow: hidden;
z-index: -1;
}
section#message h2.recruit.after::after {
  content: "";
  background-image: url("../img/recruit/enjoy-work.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 341.41px;
  height: 211.25px;
  position: absolute;
  top: -47px;
  right: -60px;
}
@media screen and (max-width: 767px) {
	img.message-decoration01{
		position: absolute;
top: 377px;
width: 317px;
    height: 317px;
    right: -38px;
		overflow: hidden;
z-index: -1;
}
  section#message h2.recruit.after::after {
    width: 177.32px;
    height: 212.84px;
    right: 0;
    top: -33.7px;
    background-image: url(../img/recruit/enjoy-work-sp.png);
    background-size: contain;
  }
}
@media screen and (max-width: 1280px) {
  section#message h2.recruit.after::after {
    width: 177.32px;
    height: 212.84px;
    right: 0;
    top: -37px;
    background-image: url(../img/recruit/enjoy-work-sp.png);
  }
}
section#message h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.03em;
  line-height: 38px;
  text-align: left;
  color: #2c2c2c;
  margin-bottom: 49.9px;
}
@media screen and (max-width: 767px) {
  section#message h3 {
    line-height: 35px;
    margin-bottom: 30px;
  }
}
section#message p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 36px;
  text-align: left;
  color: #383e44;
  margin-bottom: 60px;
width: 88.978%;
}
@media screen and (max-width: 767px) {
  section#message p {
    margin-bottom: 60px;
	  width: 100%;
  }
}
section#message img.message-image {
  width: 100%;
  height: 530px;
  border-radius: 30px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  section#message img.message-image {
    width: 328px;
    height: 250px;
  }
}

section#guideline {
  padding: 120px 0 0;
  width: 100%;
  background: #f0f0e6;
}
@media screen and (max-width: 767px) {
  section#guideline {
    padding: 80px 0 0;
  }
}
section#guideline .flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
section#guideline .flex-start img {
  width: 317.97px;
  height: 98.93px;
  margin: -14px 0 0 84px;
}
@media screen and (max-width: 767px) {
  section#guideline .flex-start img {
    width: 121.66px;
    height: 67.81px;
    margin: -16px 0 0 33.9px;
  }
}

/*タブ切り替え全体のスタイル*/
.guideline_tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 5px;
  margin-top: 50px;
  width: 100%;
  margin: 0 auto;
}
img.guideline-decoration01{
position: absolute;
	top: 371.2px;
	left: 60.3px;
width: 46.8px;
height: 46.8px;
}
@media screen and (max-width: 767px) {
img.guideline-decoration01{
position: absolute;
        top: inherit;
        bottom: 17.9px;
        left: 23.2px;
        width: 40.95px;
        height: 40.95px;
        z-index: 2;
	}
	
}
img.guideline-decoration02{
position: absolute;
	top: 125.2px;
	right: 93.4px;
width: 34.78px;
height: 34.78px;
}
img.guideline-decoration03{
position: absolute;
	bottom: 364.9px;
	left: 107.1px;
width: 34.78px;
height: 34.78px;
}
img.guideline-decoration04{
position: absolute;
	bottom: 882.2px;
	right: 65.6px;
width: 46.8px;
height: 46.8px;
}

/*タブのスタイル*/
.tab_item {
  width: 257px;
  height: 70px;
  border-radius: 12px 12px 0px 0px;
  background: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 70px;
  text-align: center;
  color: #2c2c2c;
  display: block;
  float: left;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .tab_item {
    width: 107px;
    height: 54px;
    font-size: 16px;
    line-height: 54px;
  }
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.guideline-box {
  display: none;
  width: 100%;
  background: #fae600;
  padding: 80px 0 120px;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .guideline-box {
    padding: 40px 0 80px;
  }
}

.tab_contents_description {
  width: 64.421vw;
  border-radius: 30px;
  background: #fff;
  padding: 80px 60px;
}
@media screen and (max-width: 767px) {
  .tab_contents_description {
    width: 88.267vw;
    border-radius: 30px;
    padding: 50px 22px;
  }
}
.tab_contents_description table {
  display: block;
  border-top: solid 1px #bebebe;
  padding-bottom: 40px;
}
.tab_contents_description table tbody{
width: 100%;
    display: block;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table {
    padding-bottom: 30px;
  }
}
.tab_contents_description table tr {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 17px 0;
  border-bottom: solid 1px #bebebe;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table tr {
    width: 100%;
    display: block;
  }
}
.tab_contents_description table tr th {
  width: 110px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 26px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table tr th {
    width: 100%;
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    color: #2c2c2c;
    margin-bottom: 13px;
  }
}
.tab_contents_description table tr td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tab_contents_description table tr td p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 26px;
  text-align: left;
  color: #2c2c2c;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table tr td p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    color: #2c2c2c;
  }
}
.tab_contents_description table tr td p.mgb {
  margin-bottom: 30px;
}
.tab_contents_description table tr td p span {
  text-decoration: underline;
}
.tab_contents_description table tr td p.map-content {
  padding-bottom: 452px;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table tr td p.map-content {
    padding-bottom: 180px;
  }
}
.tab_contents_description table tr iframe.map-iframe {
  width: 100%;
  height: 384px;
  position: absolute;
  top: 87px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .tab_contents_description table tr td iframe.map-iframe {
    width: 100%;
    height: 150px;
    top: 144px;
  }
}
.tab_contents_description table tr td a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: left;
  color: #ff6478;
  position: absolute;
  left: 0;
  width: 100%;
  height: 24px;
  bottom: 17px;
}

/*選択されているタブのコンテンツのみを表示*/
#sales:checked ~ #sales_content,
#designer:checked ~ #designer_content,
#coder:checked ~ #coder_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.guideline_tabs input:checked + .tab_item {
  background-color: #fae600;
  color: #2c2c2c;
}

section#form {
  width: 100%;
  background: #f0f0e6;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  section#form {
    padding: 45px 0 80px;
  }
}
section#form h2.recruit.h2-form {
  width: fit-content;
  margin: 0 auto 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 35px;
  letter-spacing: 0.03em;
  line-height: 61px;
  text-align: center;
  color: #2c2c2c;
  background: linear-gradient(transparent 60%, #FAE600 60%);
}
@media screen and (max-width: 767px) {
  section#form h2.recruit.h2-form {
    font-size: 30px;
    letter-spacing: 0.03em;
    line-height: 51px;
    margin-bottom: 30px;
  }
}
section#form p.form-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 35px;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  section#form p.form-text {
    line-height: 30px;
    margin-bottom: 30px;
	  text-align: left;
  }
}

@media screen and (max-width: 768px) {
  div.contact-form_wrap {
    width: 100%;
    height: auto;
padding: 0;
	}
}
.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

div.nyuryoku-wrap {
  width: 100%;
}

div.formtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-align: left;
  color: #181818;
  margin-bottom: 30px;
}

div.formtitle.box {
  margin-bottom: 30px;
}

span.hisu {
  border-radius: 100vh;
  background: #fae600;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  text-align: center;
  color: #2c2c2c;
  margin-left: 10px;
  padding: 5px 15px;
}
span.hisu.pp{
white-space: nowrap;
    padding: 10px 15px;
    line-height: 1;
}
span.any {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #bebebe;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  text-align: center;
  color: #bebebe;
  margin-left: 10px;
  padding: 5px 15px 7px;
}

@media screen and (max-width: 768px) {
  div.formtitle {
font-family: "Noto Sans JP", sans-serif;
font-weight: 600;
font-size: 15px;
line-height: 26px;
text-align: left;
color: #2c2c2c;
    margin-bottom: 16px;
  }

  div.formtitle.box {
    margin-bottom: 16px;
  }

  span.hisu {
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 13px;
line-height: 10px;
text-align: center;
color: #2c2c2c;
    margin-left: 8px;
    padding: 0 11px 0 10px;
  }

  span.any {
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 13px;
line-height: 10px;
text-align: center;
color: #bebebe;
    margin-left: 8px;
    padding: 0 11px 0 10px;
  }
}
.wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}

.wpcf7-list-item.last {
  margin-bottom: 50px;
}

div.flex-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

div.inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

div.inner-flex.end {
  margin-top: 12px;
}

div.inner-flex.zip {
  gap: 0;
  margin-bottom: 12px;
}

div.flex-item.start {
  justify-content: flex-start;
}

div.nyuryokubox-item p {
  width: 449px;
  height: 60px;
  background: #fff;
  padding: 16px 25px 20px;
}

div.nyuryokubox-item.small {
  width: 433px;
}

p.is-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: #181818;
}

p.is-item.mg {
  margin-right: 15px;
}

div.contact__block {
  margin-bottom: 50px;
}

div.nyuryokubox {
  width: 100%;
  background: #fff;
  padding: 20px 40px;
}

div.nyuryokubox.pd {
  height: 308px;
  overflow: auto;
  padding: 30px 40px 34px 40px;
}
div.nyuryokubox.pd p{
	font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 32px;
text-align: left;
color: #2c2c2c;

}
div.nyuryokubox.mg {
  margin-bottom: 32px;
}

div.nyuryokubox.last {
margin-bottom: 80px;
    height: 300px;
    word-wrap: break-word;
}

div.nyuryokubox.zip {
  width: 969px;
}

span.wpcf7-list-item-label {
	display: inline-flex;
    align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  color: #181818;
}
	.policy-text{
		font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 32px;
text-align: left;
color: #2c2c2c;

		margin-bottom: 40px;
	}
@media screen and (max-width: 768px) {
  .container-recruit.ct-sp {
    width: 88.3%;
  }

  .wpcf7-list-item {
    display: block;
    margin: 0 0 12px;
  }

  .wpcf7-list-item.last {
    margin-bottom: 32px;
  }

  div.flex-item {
    display: block;
  }

  div.inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  div.inner-flex.end {
    margin-top: 12px;
  }

  div.inner-flex.zip {
    gap: 0;
    margin-bottom: 12px;
  }

  div.flex-item.start {
    justify-content: flex-start;
  }

  div.nyuryokubox-item {
	 display: flex;
    width: 100%;
    height: 41px;
    padding: 10px 22px 10px 25px;
    background: #fff;
  }
	div.nyuryokubox.pd {
height: 429px;
    padding: 40px 41.2px 31px 21.8px;}

div.nyuryokubox-item p {
  width: 100%;
  height: 41px;
  background: #fff;
  padding: 10px 22px 10px 25px;
display: contents;
}
  div.nyuryokubox-item.small {
    width: 100%;
    height: 41px;
padding: 10px 0 10px 23px;
	  background: #fff;
  }
	div.nyuryokubox-item.small span.wpcf7-form-control-wrap{
		line-height: 1;
	}
  p.is-item {
font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
font-size: 15px;
line-height: 22px;
text-align: left;
color: #2c2c2c;
    width: 13.6%;
  }

  p.is-item.zip {
    width: auto;
  }

  div.contact__block {
    margin-bottom: 32px;
  }

  div.nyuryokubox {
    width: 100%;
	height: 41px;
    background: #fff;
    padding: 6px 0 10px 25px;
  }
	.policy-text{
		margin-bottom: 24px;
	}
  div.nyuryokubox.last {
    max-height: none;
    field-sizing: content;
    margin-bottom: 50px;
    padding: 10px 22px;
	 height: 174px;
  }

  div.nyuryokubox.zip {
    width: 86.4%;
    height: 41px;
    padding: 10px 0 10px 25px;
    background: #fff;
  }

  span.wpcf7-list-item-label {
font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
font-size: 16px;
line-height: 32px;
text-align: left;
color: #2c2c2c;
	display: inline-flex;
    align-items: center;
  }
}
p.pp-recruit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
	    height: 30px;
  margin: 30px 0 50px;
}

p.pp-recruit a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-decoration: underline;
  font-size: 17px;
  line-height: 41px;
  text-align: center;
  color: #000;
  margin-left: 14px;
white-space: nowrap;
}

p.pp-recruit .wpcf7-form-control-wrap {
  position: relative;
  display: inline-block;
}
p.pp-recruit label.req{
	line-height: 1;
}
p.pp-recruit label.req span.wpcf7-list-item{
	margin: 0;
}
@media screen and (max-width: 768px) {
  p.pp-recruit {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 25px 0 30px;
  }

  p.pp-recruit a {
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
text-decoration: underline;
font-size: 15px;
line-height: 41px;
text-align: center;
color: #2c2c2c;
    margin-left: 0;
  }

  p.pp-recruit .wpcf7-form-control-wrap {
    position: relative;
    display: inline-block;
  }
}
/*wpデフォルト調整*/
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  width: 100%;
  border: none;
}

input.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  width: 100%;
  border: none;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
height: 240px;
  border: none;
font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    color: #2c2c2c;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  border: none;
}

.hidden-fields-container {
  display: none;
}

@media screen and (max-width: 768px) {
  /*テキストエリアの高さ調整*/
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 174px;
  }
	input.wpcf7-form-control.wpcf7-text {
		display: flex;
	}
}
/*ボタン*/
div.check-btn {
	position: relative;
width: 223.4px;
height: 56px;
  margin: 0 auto;
	cursor: pointer;
}
div.check-btn.mg {
margin-bottom: 20px;
}
.check-btn .wpcf7-form-control.wpcf7-submit.has-spinner.btn.bl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
width: 223.4px;
height: 56px;
border-radius: 28px;
background: #fae600;
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 18px;
letter-spacing: 0.03em;
line-height: 1;
text-align: left;
color: #2c2c2c;
	border: none;
	padding-left: 20px;
}
.check-btn .wpcf7-form-control.wpcf7-submit.has-spinner.btn.bl:hover{
	background-color: #FFF;
	outline: 1px solid #fae600;
}

div.check-btn::after {
  content: "";
	position: absolute;
	top: 45%;
	right: 20px;
  width: 5.42px;
  height: 9.37px;
  background: transparent;
  background-image: url("../img/recruit/right-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 12px;
}
.check-btn .wpcf7-form-control.wpcf7-previous {
  display: flex;
  justify-content: center;
  align-items: center;
width: 223.4px;
height: 56px;
border-radius: 28px;
background: #fae600;
font-family: "Noto Sans JP", sans-serif;
font-weight: bold;
font-size: 18px;
letter-spacing: 0.03em;
line-height: 1;
text-align: left;
color: #2c2c2c;
	border: none;
	padding-left: 20px;
}
.check-btn .wpcf7-form-control.wpcf7-previous:hover{
	background-color: #FFF;
	outline: 1px solid #fae600;
}


/*
@media screen and (max-width: 768px) {
  div.check-btn {
    width: 58%;
    height: 57px;
  }

  div.check-btn.mg {
    margin-bottom: 30px;
  }

}
*/
/* チェックボックスデザイン */
input[type="checkbox"] {
  cursor: pointer;
  padding-left: 30px;
  /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
  margin-right: 10px;
}

input[type="checkbox"]::before, input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 100vh;
  width: 18px;
  /*チェックボックスの横幅*/
  height: 18px;
  /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: -2px;
}

input[type="checkbox"]::after {
  border-bottom: 3px solid #2c2c2c;
  /*チェックの太さ*/
  border-left: 3px solid #2c2c2c;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  width: 16px;
  /*チェックの横幅*/
  height: 11.03px;
  /*チェックの高さ*/
  transform: rotate(-45deg);
  /*top: 0px; チェック時の位置調整*/
  /*left: 5px; チェック時の位置調整*/
  top: -10px;
  bottom: 0;
  right: 10px;
}

@media screen and (max-width: 768px) {
  input[type="checkbox"]::before {
    background-color: #fff;
    width: 15px;
    /*チェックボックスの横幅*/
    height: 15px;
    /*チェックボックスの縦幅*/
    transform: translateY(-50%);
    top: 50%;
    left: -2px;
  }

  input[type="checkbox"]::after {
    border-bottom: 2px solid #2c2c2c;
    /*チェックの太さ*/
    border-left: 2px solid #2c2c2c;
    /*チェックの太さ*/
    opacity: 0;
    /*チェック前は非表示*/
    width: 12.63px;
    height: 8.71px;
    transform: rotate(-45deg);
    /*top: 0px; チェック時の位置調整*/
    /*left: 5px; チェック時の位置調整*/
    top: -7px;
    bottom: 0;
    right: 15px;
  }
}
input[type="checkbox"]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}

/*プライバシーポリシー同意のチェックボックス*/
p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"]::before {
  border: 1px solid #2c2c2c;
  border-radius: 0%;
  width: 30px;
  /*チェックボックスの横幅*/
  height: 30px;
  /*チェックボックスの縦幅*/
  background: #fff;
  transform: translateY(-50%);
  top: 5px;
  left: 0;
border: none;
}

p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"]::after {
  border-bottom: 3px solid #2c2c2c;
  /*チェックの太さ*/
  border-left: 3px solid #2c2c2c;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 10px;
  /*チェックの高さ*/
  width: 20px;
  /*チェックの横幅*/
  transform: rotate(-45deg);
  /*top: 0px; チェック時の位置調整*/
  /*left: 5px; チェック時の位置調整*/
  top: -5px;
  bottom: 0;
  right: 1px;
}
p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}
@media screen and (max-width: 768px) {
  p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"]::before {
    width: 25.22px;
    height: 25.22px;
    top: 3px;
    left: 10px;
  }

  p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"]::after {
    border-bottom: 2px solid #2c2c2c;
    /*チェックの太さ*/
    border-left: 2px solid #2c2c2c;
    /*チェックの太さ*/
    opacity: 0;
    /*チェック前は非表示*/
    width: 12.63px;
    height: 8.71px;
    transform: rotate(-45deg);
    /*top: 0px; チェック時の位置調整*/
    /*left: 5px; チェック時の位置調整*/
    top: -2px;
    bottom: 0;
    right: 0;
  }
}
/*プレースホルダー*/
input::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  color: #bebebe;
}

@media screen and (max-width: 768px) {
  input::placeholder {
font-family: "Noto Sans JP", sans-serif;
font-weight: 500;
font-size: 15px;
line-height: 25px;
text-align: left;
color: #bebebe;
word-wrap: break-word;
  }
}
/*ios対策*/
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

p span.wpcf7-form-control-wrap input[name="checkbox-367[]"], p span.wpcf7-form-control-wrap input[name="checkbox-941[]"], p.pp-recruit span.wpcf7-form-control-wrap input[name="privacycheck"] {
  width: auto;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  padding-right: 0;
}

.date-of-birth {
  display: flex;
  align-items: end;
  gap: 20px;
}
.sp-flex{
		display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
	}

.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
width: 95px;
height: 42px;
	background: #fff;
  padding: 9px 0 9px 10px;
	font-family: "Noto Sans JP";
font-weight: 500;
font-size: 16px;
line-height: 32px;
text-align: left;
color: #333;

}
div.select-box .wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required{
	width: 130px;
height: 42px;
background: #fff;
  padding: 9px 0 9px 10px;
font-family: "Noto Sans JP";
font-weight: 500;
font-size: 16px;
line-height: 32px;
text-align: left;
color: #2c2c2c;

}
span.span-item {
  margin-left: 10px;
}

.wpcf7-list-item-label {
  display: flex;
}
@media screen and (max-width: 768px) {
	.date-of-birth {
  display: block;
}
	.sp-flex{
		display: flex
;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
	}
	.nyuryokubox-item p span.wpcf7-form-control-wrap{
		line-height: 1.2;
	}
	
}
.wpcf7-form.validating .wpcf7-response-output{
	display: none;
}
.wpcf7-form-control {
  outline: none;
}
/*# sourceMappingURL=recruit.css.map */
