@charset "UTF-8";

:root {
  --color-main: #02ABE9;
  --color-dark: #2c2c2c;
  --color-grad: linear-gradient(to right, #56C2F0, #EE6BAE);
}

body {
  margin: 0;
  font-family: 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  letter-spacing: 1.5px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  body {
    font-size: 14px;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 550px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .sp-1200 {
    display: none !important;
  }
}

main {
  margin-top: 80px;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  main {
    margin-top: 60px;
  }
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
    color: var(--color-main);
  }
}

/* コンテンツ幅 */
.inner_1100 {
  max-width: 1148px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

/* コンテンツ幅 */
.inner_1200 {
  max-width: 1248px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

/* コンテンツ幅 */
.inner_1600 {
  max-width: 1648px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .inner_1100 {
    padding: 0 18px;
  }

  .inner_1200 {
    padding: 0 18px;
  }

  .inner_1600 {
    padding: 0 18px;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.white {
  color: #fff !important;
}

/* fadeInUp */
.fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease-out;
}

.fadeInUp.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* sectionのmargin */
[class*="_sec"] {
  margin: 120px auto;
}

@media screen and (max-width: 768px) {
  [class*="_sec"] {
    margin: 60px auto;
  }
}

.headLine {
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: #02ABE9;
  line-height: 1.2;
  margin-bottom: 72px;
}

.headLine span {
  display: block;
  font-size: 20px;
  letter-spacing: 6%;
  color: var(--color-dark);
  font-weight: 800;
}

.headLine.small {
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #02ABE9;
  line-height: 1.6;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .headLine {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .headLine span {
    font-size: 14px;
  }

  .headLine.small {
    font-size: 24px;
  }
}


.sub_ttl {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 22px;
}

.sub_ttl:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 4px;
  background: var(--color-main);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .sub_ttl {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
}

.main_button a {
  display: inline-block;
  background: var(--color-grad);
  color: #fff;
  padding: 22px 40px;
  width: 280px;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
  border-radius: 100px;
  position: relative;
  transition: transform 1s, opacity 0.3s;
}

.main_button a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 5px;
  background: url(../img/button_arrow.svg)no-repeat center / contain;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.main_button a:hover {
  opacity: 0.7;
}

.main_button a:hover:before {
  right: 20px;
}

.main_button:hover {
  color: #fff;
}

/* ------------------------------
   ヘッダー
------------------------------ */

header {
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

header .header_logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  box-sizing: border-box;
}

header .header_logo img {
  height: 100%;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  transition: 0.3s;
  gap: 10px;
}

header nav ul {
  display: flex;
  gap: 10px;
}

header nav ul li a {
  padding: 10px;
  font-weight: bold;
}

header .header_contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 30px;
}

header .header_contact a {
  padding: 0 66px;
  height: 53px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-grad);
  display: flex;
  box-sizing: border-box;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  position: relative;
}

header .header_contact a:after {
  position: absolute;
  content: "";
  height: calc(100% - 14px);
  aspect-ratio: 1;
  background: #fff url(../img/mail-icon.svg) no-repeat center / 22px 15px;
  top: 7px;
  left: 7px;
  border-radius: 50%;
}

@media screen and (min-width: 769px) {
  header .header_contact a:hover {
    opacity: 0.6;
  }
}

header .header_trial a img {
  width: 32px;
  margin-right: 14px;
}

header .site_logo img {
  height: 36px;
  width: auto;
  display: block;
}

@media screen and (min-width: 1251px) {
  header.scroll {
    height: 60px;
  }
}

@media screen and (max-width: 1250px) {
  header {
    height: 60px;
  }

  header .header_logo {
    height: 100%;
    padding: 9px 10px;
  }
}

.menu {
  width: 80px;
  margin-left: auto;
  transition: 0.3s;
}

header.scroll .menu {
  width: 60px;
}

.menu .menu_btn {
  background: #fff;
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  z-index: 100;
}

.menu .menu_btn label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.menu .menu_btn input {
  display: none;
}

.menu .menu_btn span {
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--color-dark);
  left: 50%;
  transform: translate(-50%, 0);
  top: 35%;
  transition: 0.3s;
  opacity: 1;
  border-radius: 3px;
}

.menu .menu_btn span:nth-child(2) {
  top: 50%;
}

.menu .menu_btn span:nth-child(3) {
  top: 65%;
}

.menu:has(:checked) .menu_btn span:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu:has(:checked) .menu_btn span:nth-child(2) {
  opacity: 0;
  left: 60%;
}

.menu:has(:checked) .menu_btn span:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu ul {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background: #fff;
  transition: 0.5s;
}

.menu:has(:checked) ul {
  transform: translateX(0);
}

.menu ul {
  width: 500px;
  height: 100vh;
  max-width: 100%;
  padding: 117px 40px 40px;
  box-sizing: border-box;
}

.menu ul li a {
  padding: 25px 10px;
  position: relative;
  border-top: 1px solid #ccc;
}

.menu ul li a:has(img) {
  padding: 25px 0;
}

.menu ul li.instagram a img {
  width: 30px;
}

.menu ul li.instagram a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 0;
}

.menu ul li:last-child a {
  border-top: none;
}


.menu ul li a:before {
  position: absolute;
  content: ">";
  font-size: 20px;
  font-weight: 300;
  height: 16px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.3s;
  line-height: 0.8;
}

.menu ul li a:has(img):before {
  content: none;
}

@media screen and (min-width: 769px) {
  .menu ul li a:hover {
    padding-left: 20px;
  }

  .menu ul li a:has(img):hover {
    padding-left: 0;
  }

  .menu ul li a:hover:before {
    right: 10px;
  }
}

@media screen and (max-width: 1250px) {

  header nav,
  header .header_contact {
    display: none;
  }
}

@media screen and (min-width: 1251px) {
  .menu {
    display: none;
  }
}

@media screen and (max-width: 1250px) {
  .menu {
    width: 60px;
  }
}




/* ------------------------------
   フッター
------------------------------ */

footer {
  background: #B5C8C9;
  padding: 60px 0 0;
}

footer a {
  color: #fff;
}

footer .footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 100px;
  padding-bottom: 60px;
}

footer .footer_wrap .footer_lB {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 36px;
}

footer .footer_wrap .footer_lB .footer_logo img {
  width: 125px;
}

footer .footer_company h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

footer .footer_company p {
  font-size: 14px;
}

footer .footer_wrap .footer_rB {
  display: flex;
  flex-wrap: wrap;
  gap: 0 60px;
}

footer .footer_wrap .footer_rB ul li a {
  padding: 10px;
}

.footer_instagram {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.footer_instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
}

.footer_instagram a figure {
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer_instagram a figure img {
  width: 50%;
}

.footer_bar {
  background: #678C8E;
  padding: 22px 0;
}

.footer_bar_wrap {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}


@media screen and (max-width: 768px) {
  footer {
    padding: 37px 0 0;
  }

  .footer_content {
    padding: 50px 20px 180px;
  }

  footer .footer_wrap .footer_lB {
    padding: 0 20px;
  }

  .footer_instagram {
    justify-content: flex-start;
    padding: 0 20px;
  }

  footer .footer_company h3 {
    font-size: 16px;
    font-weight: normal;
  }

  footer .footer_company h3 small {
    font-size: 16px;
  }

  footer .footer_company p {
    font-size: 12px;
  }

  .footer_bar {
    font-size: 10px;
    padding: 16px 20px;
  }
}

@media screen and (max-width: 500px) {
  footer .footer_wrap {
    flex-direction: column;
    padding-bottom: 47px;
  }

  footer .footer_wrap .footer_rB {
    flex-direction: column;
  }

  footer .footer_wrap .footer_rB ul li a {
    padding: 10px 20px;
  }

  footer .footer_wrap h3 {
    padding: 0 20px;
  }

  footer .footer_wrap p {
    padding: 0 20px;
  }
}


/* TOP */

/* メインビジュアル */

.top_mv {
  position: relative;
  margin-bottom: 100px;
}

.top_mv:before {
  position: absolute;
  content: "";
  width: 17%;
  aspect-ratio: 307 / 142;
  background: url(../img/top_mv_deco.png) no-repeat center / cover;
  top: 28%;
  left: 1%;
  z-index: 1;
}

.top_mv_img {
  width: 95%;
  max-height: calc(100vh - 80px);
  min-height: 80vh;
  margin-left: auto;
  mask: url(../img/top_mv_mask.jpg)no-repeat center / cover;
  border-radius: 25vw 0 0 0;
  overflow: hidden;
}

.top_mv img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: 80% 100%;
  transform: scale(1);
  transform-origin: 80% 100%;
  animation: 3s mv_anime forwards ease-in-out;
}

@keyframes mv_anime {
  100% {
    transform: scale(1.08);
  }
}

.top_mv .top_mv_txt {
  position: absolute;
  bottom: 10%;
  left: 25%;
  transform: translateX(-25%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.top_mv .top_mv_txt h2 {
  line-height: 1;
  background: linear-gradient(to right, #018BD5, #17B9F7);
  padding: 13px 9px 7px 30px;
  font-size: clamp(22px, calc(8px + 3.167vw), 46px);
  font-weight: 800;
  color: #fff;
}

.top_mv_txt div {
  width: 0%;
  max-width: fit-content;
  overflow: hidden;
  animation: 2s 0.2s mv_txt forwards ease-in-out;
}

.top_mv_txt div:last-child {
  animation-delay: 0.4s;
}

.top_mv_txt div h2 {
  white-space: nowrap;
}

@keyframes mv_txt {
  100% {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {

  .top_mv {
    margin-bottom: 0px;
  }

  .top_mv_img {
    height: 70vh;
  }

  .top_mv img {
    object-position: 65% 100%;
    height: 70vh;
  }

  .top_mv .top_mv_txt {
    top: 10%;
    left: 2.5%;
    transform: none;
  }

  .top_mv:before {
    background-image: url(../img/top_mv_deco_sp.png);
    top: 50%;
    left: 3%;
    aspect-ratio: 111 / 70;
    width: 111px;
  }

  .top_mv .top_mv_txt h2 {
    padding-left: 15px;
    padding-right: 0;
  }
}

.top_mv+.banner_sec {
  margin-top: 0;
}

/* TOPバナー */

.banner_sec a {
  width: 852px;
  max-width: 95%;
  margin: 0 auto;
  background: gray;
  transition: transform 1s, opacity 0.3s;
}

.banner_sec a:hover {
  opacity: 0.7;
}


/* ABOUT US */

.about_sec .about_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 5%;
  position: relative;
}

.about_sec .about_wrap:before {
  position: absolute;
  content: "";
  width: 400px;
  aspect-ratio: 479 / 274;
  background: url(../img/about_deco.png)no-repeat center / cover;
  bottom: 0;
  right: 0;
  transform: translateX(80%);
}

.about_sec .about_wrap .about_txt {
  width: 47.5%;
}

.about_sec .about_wrap .about_txt .about_head {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-main);
}

.about_sec .about_wrap .about_txt p {
  line-height: 2.2;
}

.about_sec .about_wrap img {
  width: 47.5%;
}

@media screen and (max-width: 768px) {

  .about_sec .about_wrap .about_txt,
  .about_sec .about_wrap img {
    width: 100%;
  }

  .about_sec .about_wrap .about_txt .about_head {
    font-size: 28px;
  }

  .about_sec .about_wrap:before {
    background-image: url(../img/about_deco_sp.png);
    aspect-ratio: 279 / 136;
    bottom: -30px;
    width: 140px;
    right: -10px;
    transform: none;
    z-index: 1;
  }
}

/* OUR BUSINESS */

.top_page .business_sec {
  background: linear-gradient(to right, #C1E8FF, #ECFBFF, #C1E8FF);
  padding: 140px 0 20vw;
  width: calc(100% - 50px);
  margin-left: 50px;
  border-radius: 10vw 0 0 0;
  position: relative;
}

.top_page .business_sec .deco {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -3.5vw;
  left: 0;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-size: 13.5vw;
  color: #fff;
  line-height: 1;
  text-align: center;
  letter-spacing: 6%;
  opacity: 0.4;
}

.top_page .business_sec .business_head {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.top_page .business_sec .business_head .headLine {
  margin-bottom: 0;
}

.top_page .business_sec .business_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 38px;
}

.top_page .business_sec .business_wrap .business_box {
  width: calc(50% - 19px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 6px 6px 20px #0092C716;
  padding: 32px;
  box-sizing: border-box;
}

.top_page .business_sec .business_wrap .business_box span {
  background: var(--color-main);
  color: #fff;
  display: inline-block;
  padding: 5px 18px;
  margin-bottom: 27px;
}

.top_page .business_sec .business_wrap .business_box h3 {
  margin-top: 30px;
  color: var(--color-main);
  font-weight: 900;
}

.top_page .business_sec .business_wrap .business_box p {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .top_page .business_sec {
    width: 100%;
    padding-top: 80px;
    margin-left: 0;
    border-radius: 0;
  }

  .top_page .business_sec .business_head {
    margin-bottom: 30px;
    text-align: center;
    justify-content: center;
  }

  .top_page .business_sec .business_wrap {
    margin-bottom: 30px;
  }

  .top_page .business_sec .business_wrap .business_box {
    width: 100%;
  }
}

/* OUR SECRET */

.secret_sec .headLine {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.secret_sec p {
  margin-bottom: 60px;
}

.secret_sec p span {
  font-size: 22px;
  font-weight: 900;
  text-decoration: underline 13px #FDFF9D;
  text-underline-offset: -5px;
  display: inline-block;
}

.secret_sec .secret_slider {
  margin-top: 150px;
}

.secret_sec .secret_slider .slick-slide {
  margin-right: 20px;
}

.secret_slider .slick-slide {
  width: auto !important;
}

.secret_slider .slick-slide>div {
  width: auto !important;
}

.secret_slider img {
  display: block;
  height: 430px;
  width: auto !important;
  max-width: none !important;
}

@media screen and (max-width: 1000px) {
  .secret_sec .secret_slider {
    margin-top: 60px;
  }

  .secret_slider img {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .secret_sec p span {
    margin-bottom: 10px;
  }
}

/* 募集要項 */

.recruit_banner_sec {
  background: url(../img/top_bg.jpg)no-repeat bottom left / cover;
}

.recruit_banner_sec a {
  display: inline-block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 1s, opacity 0.3s;
}

.recruit_banner_sec a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #009CC7, #ffffff01);
  z-index: 1;
  transition: 0.3s;
}

.recruit_banner_sec h2 {
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  transition: 0.3s;
}

.recruit_banner_sec .arrow {
  position: absolute;
  width: 90px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}

.recruit_banner_sec .arrow:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 5px;
  background: var(--color-main);
  mask: url(../img/button_arrow.svg)no-repeat center / cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruit_banner_sec a:hover {
  opacity: 0.7;
}

.recruit_banner_sec a:hover .arrow {
  right: 30px;
}

@media screen and (max-width: 768px) {
  .recruit_banner_sec a {
    width: 100%;
    height: auto;
    aspect-ratio: 31 / 20;
  }

  .recruit_banner_sec a img {
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
  }

  .recruit_banner_sec h2 {
    top: 30px;
    left: 23px;
    transform: none;
  }

  .recruit_banner_sec .arrow {
    width: 60px;
    transform: none;
    top: auto;
    right: auto;
    bottom: 30px;
    left: 23px;
  }
}


/* ------------------------------
   募集要項
------------------------------ */

.recruitPage .introSec {
  margin: 80px 0;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
}

.recruitPage .introSec h1 {
  font-size: 32px;
  font-weight: 600;
}

.recruitPage .introSec p {
  font-size: 24px;
  color: var(--color-main);
  font-weight: 600;
  margin-top: 5px;
}

.recruitPage .recruitment_sec {
  margin: 40px 0;
}

.recruitPage .recruitment_sec h3,
.recruitPage .form_sec h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.recruitPage .recruitment_sec p {
  margin-bottom: 40px;
}

.recruitPage .recruitment_sec img {
  width: 100%;
}


@media screen and (max-width: 768px) {
  .recruitPage .introSec h1 {
    font-size: 24px;
  }

  .recruitPage .introSec p {
    font-size: 20px;
  }

  .recruitPage .recruitment_sec h3,
  .recruitPage .form_sec h3 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}




/* ------------------------------
   採用一覧
------------------------------ */

.recruit_sec .post-group {
  padding-top: 60px;
}

.filter-wrapper {
  max-width: 900px;
  padding: 40px 0;
  box-sizing: border-box;
  border-top: 2px solid #D9D9D9;
  border-bottom: 2px solid #D9D9D9;
  margin: 0 auto;
}

.filter-wrapper .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
}

.filter-wrapper .filter-group+.filter-group {
  margin-top: 26px;
}

.filter-wrapper .filter-group .filter-title {
  width: 80px;
  font-weight: 600;
}

.filter-wrapper .filter-group .filter-items {
  width: calc(100% - 130px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.filter-wrapper .filter-group .filter-items label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.filter-wrapper .filter-group .filter-items input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  background: #D9D9D9;
  border: none;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filter-wrapper .filter-group .filter-items input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 7px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.filter-wrapper .filter-actions {
  margin-top: 30px;
}

.filter-wrapper .filter-actions a {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--color-main);
}

@media screen and (min-width: 769px) {
  .filter-wrapper .filter-actions a:hover {
    background: var(--color-main);
    color: #fff;
  }
}

.post-link {
  margin-bottom: 50px;
}

.post-link h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.post-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-link ul li {
  width: calc(50% - 2.5px);
}

.post-link ul li a {
  position: relative;
  background: #D9D9D9;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  z-index: 1;
}

.post-link ul li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  top: 48%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

.post-link ul li a:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -2;
}

.post-list .post-group-title {
  font-size: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.post-list .post-group-title span {
  font-size: 32px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.post-list .post-group-title span:before,
.post-list .post-group-title span:after {
  position: absolute;
  content: "";
  width: 200px;
  height: 2px;
  background: var(--color-main);
  top: 50%;
}

.post-list .post-group-title span:before {
  left: -20px;
  transform: translate(-100%, -50%);
}

.post-list .post-group-title span:after {
  right: -20px;
  transform: translate(100%, -50%);
}

.post-list .post-group-empty {
  margin: 40px 0 100px;
  font-weight: 600;
  font-size: 24px;
}

.post-list .post-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.post-list .post-group-list .post-list-item {
  width: calc(100% / 3 - 20px);
  border-radius: 15px;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  filter: drop-shadow(0 4px 4px #00000044);
}

.post-list .post-group-list .post-list-item .status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1;
}

.post-list .post-group-list .post-list-item .status {
  color: #fff;
  font-weight: 600;
  background: var(--color-main);
  padding: 10px 20px 8px 10px;
  margin-left: -20px;
  border-radius: 0 20px 20px 0;
}

.post-list .post-group-list .post-list-item .urgent {
  background: #ff0000;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
}

.post-list .post-group-list .post-list-item h3 {
  font-size: 23px;
  margin-bottom: 5px;
  font-weight: 600;
}

.post-list .post-group-list .post-list-item p {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}

.post-list .post-group-list .post-list-item p span {
  display: inline-block;
  width: 70px;
  position: relative;
}

.post-list .post-group-list .post-list-item p span:after {
  position: absolute;
  content: "：";
  right: 0;
  top: 0;
}

.post-list .post-group-list .post-list-item h4 {
  color: var(--color-main);
  font-weight: 600;
  margin-bottom: 20px;
}

.post-list .post-group-list .post-list-item .recruit_button a {
  font-weight: 600;
  display: inline-block;
  padding: 16px 0;
  padding-right: 73px;
  position: relative;
}

.post-list .post-group-list .post-list-item .recruit_button a:before {
  position: absolute;
  content: "";
  width: 58px;
  aspect-ratio: 1;
  background: linear-gradient(to right, #56C2F0, #EE6BAE);
  border-radius: 50%;
  top: 0;
  right: 0;
}

.post-list .post-group-list .post-list-item .recruit_button a:after {
  position: absolute;
  content: "";
  width: 28px;
  aspect-ratio: 8 / 3;
  background: url(../img/button_arrow.svg) no-repeat center / contain;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.post-group-title:has(.post-group-empty) .post-group-list {
  display: none !important;
}

.pickUp_slider .slick-next {
  right: -15px;
}

.pickUp_slider .slick-prev {
  left: -15px;
}

.pickUp_slider .slick-slide {
  margin: 0 15px !important;
}

.pickUp_slider .slick-next:before,
.pickUp_slider .slick-prev:before {
  color: var(--color-main);
}

.pickUp_slider .slick-dots:has(button:first-child:last-child) {
  display: none;
}

@media screen and (max-width: 1150px) {
  .post-list .post-group-list .post-list-item {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 768px) {
  .filter h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
  }

  .filter span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    aspect-ratio: 1;
    border: 2px solid #02ABE9;
    border-radius: 50%;
  }

  .filter h3 span:before,
  .filter h3 span:after {
    background: var(--color-main);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
  }

  .filter h3 span:before {
    height: 14px;
    right: 18px;
    width: 1.5px;
  }

  .filter h3 span:after {
    width: 14px;
    right: 11.5px;
    height: 1.5px;
  }

  .filter h3.close span:before,
  .filter h3.close span:after {
    transform: translateY(-50%) rotate(45deg);
  }

  .filter form {
    opacity: 0 !important;
    block-size: 0;
    transition: 0.5s;
  }

  .filter-wrapper {
    padding: 20px 26px;
  }

  .filter:has(.close) form {
    opacity: 1 !important;
    block-size: auto;
    block-size: calc-size(auto, size);
  }

  .filter-wrapper .filter-group .filter-title {
    width: 100%;
  }

  .filter-wrapper .filter-group .filter-items {
    width: 100%;
  }

  .post-list .post-group-title {
    font-size: 21px;
    margin-bottom: 40px;
  }

  .post-list .post-group-title span {
    font-size: 28px;
  }

  .post-list .post-group-title span:before,
  .post-list .post-group-title span:after {
    width: 50px;
  }

  .post-list .post-group-title span:before {
    left: -10px;
  }

  .post-list .post-group-title span:after {
    right: -10px;
  }

  .post-list .post-group-list .post-list-item {
    width: 100%;
    padding: 20px;
  }

  .post-list .post-group-list .post-list-item h4 {
    font-size: 15px;
  }

  .post-list .post-group-empty {
    font-size: 16px;
    margin: 0 auto 40px;
  }

}


/* 下層ページMV */

.pageVisual {
  position: relative;
  z-index: 1;
}

.pageVisual:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #0092C7 0%, #0092C7 30%, #fff 100%);
  opacity: 0.4;
  z-index: -1;
}

.pageVisual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.pageVisual h1 {
  padding: 150px 0;
  font-size: 64px;
  font-weight: 900;
  color: #fff;
}

.pageVisual h1 span {
  display: block;
  font-size: 30px;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .pageVisual h1 {
    font-size: 30px;
  }

  .pageVisual h1 span {
    font-size: 18px;
  }
}


/* プライバシーポリシー */

.privacy_page .privacy_txt {
  padding-bottom: 60px;
}

.privacy_page .privacy_box {
  padding: 60px 0;
  border-top: 1px solid #D9D9D9;
}

.privacy_page .privacy_box h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--color-main);
}

.privacy_page .privacy_box p {
  letter-spacing: 1px;
}



/* 秘密 */

.secret_page .fv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 3%;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.secret_page .fv .fv_txt {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 2.5% 0;
  position: relative;
  z-index: 1;
}

.secret_page .fv .fv_txt:before {
  position: absolute;
  content: "";
  width: 50%;
  aspect-ratio: 17 / 28;
  background: url(../img/question.png)no-repeat center center / contain;
  top: 0;
  left: 60%;
  z-index: -1;
}

.secret_page .fv .fv_txt>span {
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  color: #02ABE9;
}

.secret_page .fv .fv_txt h1 {
  font-size: clamp(2rem, 1.472rem + 2.254vw, 3.5rem);
  line-height: 1.16;
  font-weight: 600;
  margin: 17px 0;
}

.secret_page .fv .fv_txt h1 span {
  font-size: clamp(3.75rem, 2.826rem + 3.944vw, 6.375rem);
  color: #02ABE9;
}

.secret_page .fv .fv_txt h2 {
  font-size: clamp(1.375rem, 1.023rem + 1.502vw, 2.375rem);
  margin-bottom: 24px;
  font-weight: 600;
}

.secret_page .fv img {
  width: calc(97% - clamp(503.19px, calc(22.868vw + 224.19px), 553.5px) - 3px);
  object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .secret_page .fv {
    justify-content: flex-start;
  }

  .secret_page .fv .fv_txt:before {
    top: 10%;
    right: 70%;
  }

  .secret_page .fv img {
    width: 120%;
    order: -1;
    display: block;
    margin: 0 -10%;
    max-width: initial;
  }

  .secret_page .secret_sec h2 {
    display: none;
  }
}


.secret_page .secret_sec {
  margin-bottom: 0;
  position: relative;
}

.secret_page .secret_sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: 1px;
  left: 0;
  transform: translateY(100%);
  z-index: 1;
}

.secret_page .secret_sec h2 {
  text-align: center;
  font-size: clamp(2rem, 1.384rem + 2.629vw, 3.75rem);
  line-height: 1.25;
}

.secret_page .secret_sec h2 span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #02ABE9;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
}

.secret_page .secret_sec h2 {
  margin-bottom: 50px;
  font-weight: 600;
}

.secret_page .secret_sec h2 strong {
  color: #02ABE9;
}

.secret_page .secret_sec .secret_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 40px;
  width: 900px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.secret_page .secret_sec .secret_wrap .secret_box {
  width: 270px;
  padding: 24px 20px 45px;
  box-sizing: border-box;
  background: #EFFBFF;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  filter: drop-shadow(4px 4px 2px #0085B544);
}

.secret_page .secret_sec .secret_wrap .secret_box:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 17px;
  background: #02ABE9;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.secret_page .secret_sec .secret_wrap .secret_box>span {
  font-size: 50px;
  font-style: italic;
  color: #02ABE9;
  line-height: 1;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
}

.secret_page .secret_sec .secret_wrap .secret_box figure {
  height: 70px;
  text-align: center;
  margin: 18px auto 24px;
}

.secret_page .secret_sec .secret_wrap .secret_box h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.secret_page .secret_sec .secret_wrap .secret_box h3 span {
  color: #02ABE9;
}

.secret_page .compensation_sec {
  background: #E0F7FF;
  margin: 0;
  padding: 320px 0 140px;
}

.secret_page .detail_ttl {
  position: relative;
  display: flex;
  gap: 0 20px;
}

.secret_page .detail_ttl>span {
  font-size: 120px;
  font-style: italic;
  font-weight: 500;
  color: #fff;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-stroke: #02ABE9 2px;
  height: 90px;
  line-height: 1;
}

.secret_page .detail_ttl div {
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  color: #02ABE9;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.secret_page .detail_ttl div span {
  font-weight: 600;
  font-size: 24px;
  color: #222;
  position: relative;
  padding-left: 25px;
}


.secret_page .detail_ttl div span:before {
  position: absolute;
  content: "";
  background: #02ABE9;
  width: 17px;
  aspect-ratio: 1;
  left: 0;
  top: 50%;
  transform: translateY(-67%);
}

.secret_page .compensation_sec .top_txt {
  width: fit-content;
  margin-left: auto;
}

.secret_page .compensation_wrap {
  display: flex;
  max-width: 820px;
  justify-content: center;
  margin: 0 auto;
  gap: 30px 10%;
  position: relative;
}

.secret_page .compensation_wrap:before {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 183 / 86;
  background: url(../img/compensation_arrow.png)no-repeat center center / contain;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.secret_page .compensation_wrap .compensation_box {
  width: 45%;
}

.secret_page .compensation_wrap .compensation_box:last-child {
  margin-top: 80px;
}

.secret_page .compensation_wrap .compensation_box p {
  text-align: center;
  margin-top: 20px;
}

.secret_page .environment_sec {
  background: #F4FCFF;
  margin: 0;
  padding: 60px 0 120px;
  position: relative;
}

.secret_page .environment_sec:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 32 / 3;
  background: url(../img/secret_bg.svg)no-repeat center center / cover;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
}

.secret_page .environment_sec:after {
  position: absolute;
  content: "";
  width: 20%;
  max-width: 300px;
  aspect-ratio: 307 / 142;
  background: url(../img/top_mv_deco.png) no-repeat center / cover;
  top: 0;
  left: 20px;
  transform: translateY(-100%);
}

.secret_page .environment_sec .top {
  width: fit-content;
  margin: 0 auto;
}

.secret_page .environment_sec .top_txt {
  margin-top: 30px;
}

.secret_page .environment_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
  margin-top: 37px;
}

.secret_page .environment_wrap:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 80px;
  background: #77DBFF;
  top: 50%;
  left: 5%;
  z-index: -1;
}

.secret_page .environment_wrap .environment_box {
  width: 30%;
  position: relative;
  z-index: 1;
  padding: 0 20px 10px;
}

.secret_page .environment_wrap .environment_box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 18px;
  filter: drop-shadow(4px 4px 2px #0085B544);
  z-index: -1;
}

.secret_page .environment_wrap .environment_box img {
  width: 55%;
  margin: 0 auto 24px;
}

.secret_page .environment_wrap .environment_box p {
  font-size: 17px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.secret_page .environment_wrap .environment_box p span {
  color: #02ABE9;
}

.secret_page .environment_sec .result {
  text-align: center;
  margin-top: 70px;
  position: relative;
  color: #02ABE9;
  font-weight: 600;
  font-size: 28px;
}

.secret_page .environment_sec .result:before {
  position: absolute;
  content: "";
  width: 67px;
  height: 30px;
  top: -25px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom, transparent, #02ABE9);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.secret_page .benefits_sec {
  background: #EFFBFF;
  position: relative;
  margin: 0;
  padding: 60px 0 170px;
}

.secret_page .benefits_sec:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 32 / 3;
  background: url(../img/secret_bg02.svg)no-repeat center center / cover;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
}

.secret_page .benefits_sec:after {
  position: absolute;
  content: "";
  width: 30%;
  max-width: 400px;
  aspect-ratio: 479 / 274;
  background: url(../img/about_deco.png)no-repeat center / cover;
  top: 0;
  right: 20px;
  transform: translateY(-110%);
}

.secret_page .benefits_sec .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.secret_page .benefits_sec .benefits_box {
  background: #fff;
  border-radius: 15px;
  filter: drop-shadow(4px 4px 2px #0082B233);
  padding: 25px;
  max-width: 930px;
  box-sizing: border-box;
  margin: 0 auto;
}

.secret_page .benefits_sec .benefits_box+.benefits_box {
  margin-top: 30px;
}

.secret_page .benefits_sec .benefits_box h3 {
  color: #02ABE9;
  font-size: 23px;
  font-weight: 600;
}

.secret_page .benefits_sec .benefits_box h3 span {
  background: #02ABE9;
  display: inline-flex;
  width: 45px;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  align-items: center;
  justify-content: center;
  padding-top: 7px;
  margin-right: 12px;
}

.secret_page .benefits_sec .benefits_box h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0;
}

.secret_page .benefits_sec .benefits_box p span {
  color: #02ABE9;
}

.secret_page .interview_sec {
  background: #E8E8E8;
  padding: 120px 0;
  margin-top: -50px;
  border-radius: 50px 50px 0 0;
  z-index: 1;
  position: relative;
}

.secret_page .interview_sec .interview_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.secret_page .interview_sec .interview_wrap .interview_box {
  width: calc(50% - 30px);
  padding: 50px 44px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 6px 6px 18px #0092C716;
}

.secret_page .interview_sec .interview_wrap .interview_box .interview_person {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
}

.secret_page .interview_sec .interview_wrap .interview_box .interview_person img {
  width: 170px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.secret_page .interview_sec .interview_wrap .interview_box .interview_person p {
  font-size: 20px;
  line-height: 1.7;
}

.secret_page .interview_sec .interview_wrap .interview_box .interview_person p span {
  color: var(--color-main);
  font-weight: bold;
}

.secret_page .interview_sec .interview_wrap .interview_box h3 {
  font-size: 23px;
  font-weight: bold;
  color: var(--color-main);
  margin: 30px 0 10px;
  padding-left: 80px;
  position: relative;
}

.secret_page .interview_sec .interview_wrap .interview_box h3:before {
  position: absolute;
  content: "";
  width: 68px;
  height: 2px;
  background: var(--color-main);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.secret_page .interview_sec .interview_wrap .interview_box p {
  line-height: 2.2;
}

.secret_page .message_sec .headLine {
  margin-bottom: 30px;
}

.secret_page .message_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px 40px;
}

.secret_page .message_wrap img {
  width: 325px;
  aspect-ratio: 1;
  border-radius: 20px;
}

.secret_page .message_wrap div {
  width: calc(100% - 365px);
  line-height: 2.2;
}

.secret_page .message_wrap h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}


.secret_page .pickUp_sec {
  background: linear-gradient(to right, #C1E8FF, #ECFBFF, #C1E8FF);
  padding: 160px 0 140px;
  margin-bottom: 0;
}

.secret_page .post-list .post-group-list .post-list-item {
  background: #fff;
}

.secret_page .pickUp_link {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 0 13px;
  width: fit-content;
  margin-left: auto;
  margin-top: 36px;
  transition: opacity 1s, transform 1s, color 0.3s;
}

.secret_page .pickUp_link span {
  display: block;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: 0.3s;
}

.secret_page .pickUp_link span:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 5px;
  background: url(../img/arrow_line.svg)no-repeat center center / contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(0);
  transition: 0.3s;
}

.secret_page .pickUp_link:hover span {
  background: var(--color-main);
}

.secret_page .pickUp_link:hover span:before {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) {

  .secret_page .pageVisual h1 {
    letter-spacing: 0;
  }

  .secret_page .secret_sec .secret_wrap .secret_box {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    flex-direction: row;
    padding-right: 30px;
    padding-bottom: 24px;
    gap: 0 50px;
    align-items: center;
  }

  .secret_page .secret_sec .secret_wrap .secret_box h3 {
    text-align: left;
  }

  .secret_page .secret_sec .secret_wrap .secret_box h3 br {
    display: none;
  }

  .secret_page .secret_sec .secret_wrap .secret_box:before {
    all: unset;
  }

  .secret_page .secret_sec .secret_wrap .secret_box:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 100%;
    background: #EFFBFF;
    border-radius: 15px 0 0 15px;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .secret_page .secret_sec .secret_wrap .secret_box figure {
    margin: 60px 0 0;
    min-width: 80px;
    height: 70px;
  }

  .secret_page .secret_sec .secret_wrap .secret_box img {
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .secret_page .secret_sec .secret_wrap .secret_box>span {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .secret_page .secret_sec {
    padding-bottom: 50px;
  }

  .secret_page .secret_sec:before {
    height: 60px;
  }

  .secret_page .compensation_sec {
    padding: 120px 0 80px;
    position: relative;
  }

  .secret_page .environment_sec {
    padding: 60px 0 80px;
  }

  .secret_page .compensation_sec:before {
    position: absolute;
    content: "";
    width: 30%;
    max-width: 150px;
    aspect-ratio: 479 / 274;
    background: url(../img/about_deco.png) no-repeat center / cover;
    top: 40px;
    right: 20px;
    z-index: 2;
  }

  .secret_page .environment_sec:after {
    position: absolute;
    content: "";
    width: 30%;
    max-width: 150px;
    aspect-ratio: 479 / 274;
    background: url(../img/about_deco.png) no-repeat center / cover;
    top: -40px;
    right: 20px;
    z-index: 2;
    transform: scale(-1, 1);
  }

  .secret_page .detail_ttl {
    flex-direction: column;
  }

  .secret_page .detail_ttl>span {
    font-size: 60px;
    margin-bottom: 10px;
    height: 50px;
  }

  .secret_page .detail_ttl div span {
    font-size: 14px;
    margin: 10px 0 20px;
  }

  .secret_page .compensation_sec .top_txt br {
    display: none;
  }

  .secret_page .compensation_sec .top_txt {
    margin-bottom: 30px;
  }

  .secret_page .compensation_wrap {
    flex-wrap: wrap;
  }

  .secret_page .compensation_wrap:before {
    all: unset;
    position: absolute;
    content: "";
    width: 48px;
    height: 90px;
    background: url(../img/compensation_arrow_sp.png) no-repeat center center / contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .secret_page .compensation_wrap .compensation_box:last-child {
    margin-top: 120px;
  }

  .secret_page .environment_sec .top_txt br {
    display: none;
  }

  .secret_page .environment_wrap:before {
    width: 60px;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .secret_page .environment_wrap .environment_box {
    width: 100%;
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    filter: drop-shadow(4px 4px 2px #0085B544);
    padding: 52px 20px;
    border-radius: 20px;
  }

  .secret_page .environment_wrap .environment_box img {
    margin: 0;
    width: 100px;
  }

  .secret_page .environment_wrap .environment_box p {
    margin: 0;
  }

  .secret_page .environment_wrap .environment_box:before {
    content: none;
  }

  .secret_page .environment_sec .result {
    font-size: 18px;
  }

  .secret_page .benefits_sec .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .secret_page .benefits_sec .benefits_box h4 {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .secret_page .benefits_sec .benefits_box {
    padding: 20px;
  }

  .secret_page .message_wrap div {
    width: 100%;
  }

  .secret_page .message_wrap h3 {
    font-size: 30px;
    line-height: 1.6;
  }

  .secret_page .message_wrap p {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .secret_page .message_wrap img {
    order: -1;
  }

  .secret_page .compensation_wrap .compensation_box {
    width: 80%;
  }

  .secret_page .interview_sec {
    padding: 40px 0;
  }

  .secret_page .interview_sec .interview_wrap .interview_box {
    width: 100%;
  }

  .secret_page .interview_sec .interview_wrap .interview_box {
    padding: 30px 20px;
  }

  .secret_page .interview_sec .interview_wrap .interview_box h3 {
    font-size: 20px;
  }

  .secret_page .interview_sec .interview_wrap .interview_box p {
    font-size: 14px;
  }

  .secret_page .interview_sec .interview_wrap .interview_txt input {
    display: none;
  }

  /* 見出し部分 */
  .secret_page .interview_sec .interview_wrap .interview_txt label {
    display: block;
    cursor: pointer;
    position: relative;
  }

  /* 開閉アイコンなど追加する場合 */
  .secret_page .interview_sec .interview_wrap .interview_txt label:before,
  .secret_page .interview_sec .interview_wrap .interview_txt label:after {
    position: absolute;
    content: "";
    width: 13px;
    height: 2px;
    background: var(--color-main);
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.3s;
  }

  /* 開閉アイコンなど追加する場合 */
  .secret_page .interview_sec .interview_wrap .interview_txt label:after {
    transform: translateY(-50%) rotate(90deg);
  }

  /* 開閉アイコンなど追加する場合 */
  .secret_page .interview_sec .interview_wrap .interview_txt  input:checked+label:before {
    transform: translateY(-50%) rotate(45deg);
  }

  /* 開閉アイコンなど追加する場合 */
  .secret_page .interview_sec .interview_wrap .interview_txt  input:checked+label:after {
    transform: translateY(-50%) rotate(135deg);
  }

  /* 初期状態：非表示 */
  .secret_page .interview_sec .interview_wrap .interview_txt label+p {
    display: none;
  }

  

  /* チェックされた時だけ表示 */
  .secret_page .interview_sec .interview_wrap .interview_txt input:checked+label+p {
    display: block;
  }

  .secret_page .interview_sec .interview_wrap .slick-slide {
    margin: 0 15px;
  }

  .secret_page .interview_sec .interview_wrap .slick-list {
    margin: 0 -15px;
  }

  .secret_page .interview_sec .interview_wrap .interview_box .interview_person img {
    width: 120px;
  }

  .secret_page .interview_sec .interview_wrap .slick-dots li {
    margin: 0;
  }

  .secret_page .interview_sec .interview_wrap .slick-dots li button:before {
    font-size: 10px;
    color: #B6B4B4;
    opacity: 1;
  }

  .secret_page .interview_sec .interview_wrap .slick-dots li.slick-active button:before {
    color: #fff;
  }

  .secret_page .message_wrap img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .secret_page .message_wrap p {
    width: 100%;
  }

  .secret_page .pickUp_sec {
    padding: 80px 0;
  }

  .secret_page .pickUp_link span {
    width: 55px;
  }
}


/* 事業所紹介 */

.business_page .phirosophy_sec {
  margin: 0;
  padding: 120px 0;
  background: #fff;
  border-radius: 0 0 20vw 0;
  position: relative;
  z-index: 1;
}

.business_page .phirosophy_sec .phirosophy_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.business_page .phirosophy_sec .phirosophy_wrap img {
  width: 40%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 40%;
}

.business_page .phirosophy_sec .phirosophy_wrap div {
  width: 55%;
}

.business_page .phirosophy_sec .phirosophy_wrap div p {
  line-height: 2.2;
}

.business_page .business_sec {
  position: relative;
  background: linear-gradient(to right, #C1E8FF, #ECFBFF, #C1E8FF);
  margin: 0;
  padding: 120px 0 240px;
}

.business_page .business_sec>span {
  position: absolute;
  content: "";
  width: 100%;
  bottom: -2vw;
  left: 0;
  font-family: 'Poppins', 'yu-gothic', system-ui, -apple-system, 'yu-gothic-pr6n', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-size: 13.5vw;
  color: #fff;
  line-height: 1;
  text-align: center;
  letter-spacing: 6%;
  opacity: 0.4;
}

.business_page .business_sec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 25vw;
  background: linear-gradient(to right, #C1E8FF, #ECFBFF, #C1E8FF);
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

.business_page .facility_box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}

.business_page .facility_box+.facility_box {
  margin-top: 100px;
}

.business_page .facility_box>h3 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #02ABE9;
  margin-bottom: 10px;
  line-height: 1.2;
}

.business_page .facility_box>p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}


.slick-track {
  padding: 20px 0;
}


/* 事業詳細スライダー */

.facility_box .slick-track {
  display: flex !important;
  height: 100%;
  margin: 0 !important;
}

.facility_box .slick-slide {
  height: auto !important;
  cursor: pointer;
}

.facility_box .slick-slide>* {
  height: 100%;
}

.facility_box .slick-slide img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.facility_box .slick-list {
  height: 100%;
}

.facility_thumb_slider {
  overflow: hidden;
  margin-top: 20px;
}

.facility_thumb_slider .slick-list {
  overflow: visible;
}


.facility_thumb_slider .slick-slide {
  padding: 0 5px;
}



.facility_thumb_slider img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.facility_gallery {
  display: flex;
  flex-direction: column;
}

.facility_gallery .slick-slider {
  flex: 1;
  margin-bottom: 0 !important;
}

.facility_gallery .slick-dots-container {
  height: 20%;
  padding-top: 10px;
}

.facility_gallery .slick-dots-container:has(.slick-active:first-child:last-child) {
  display: none;
}

.facility_main_slider {
  position: relative;
}

.facility_thumb_slider {
  margin-top: 15px;
}

.facility_thumb_slider .slick-list {
  overflow: hidden;
}

.facility_thumb_slider .slick-slide {
  padding: 0 5px;
}

.facility_thumb_slider img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.facility_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: #ffffff40;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.facility_prev {
  left: 10px;
}

.facility_next {
  right: 10px;
}


.facility_prev::before,
.facility_next::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.facility_prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.facility_next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.business_page .pageVisual img {
  object-position: 65%;
}

.business_page .detail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 50px;
}

.business_page .detail .facility_gallery {
  width: 45%;
}

.business_page .detail .detail_txt {
  width: calc(55% - 50px);
}

.business_page .detail .detail_txt h4 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.business_page .detail .detail_txt h4 span {
  font-size: 20px;
}


.business_page .detail .detail_txt table+h4 {
  margin-top: 30px;
}

.business_page .detail .detail_txt table {
  width: 100%;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #d2d2d2;
}

.business_page .detail .detail_txt th {
  width: 120px;
  font-weight: 400;
  padding: 12px 0;
}

.business_page .detail .detail_txt td {
  width: calc(100% - 120px);
  padding: 12px 0;
}

.business_page .detail .other h3 {
  font-size: 24px;
  font-weight: 600;
  padding-left: 27px;
  position: relative;
  margin-bottom: 30px;
}

.business_page .detail .other h3:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  background: #02ABE9;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
}

.business_page .detail .other .other_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 84px;
}

.business_page .detail .other .other_wrap .other_box {
  position: relative;
}

.business_page .detail .other .other_wrap .other_box:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  border-right: 2px dotted #02ABE9;
  top: 0;
  right: -43px;
}

.business_page .detail .other .other_wrap .other_box:last-child:before {
  content: none;
}

.business_page .detail .other .other_wrap .other_box h4 {
  font-size: 24px;
  font-weight: 600;
  color: #02ABE9;
  margin-bottom: 10px;
}

.business_page .detail .other .other_wrap .other_box dl {
  display: flex;
}

.business_page .detail .other .other_wrap .other_box dl+dl {
  margin-top: 5px;
}

.business_page .detail .other .other_wrap .other_box dl dt {
  width: 120px;
  font-weight: 400;
}

.business_page .recruit_banner_sec {
  background: #F4FCFF;
  margin: 0;
  padding: 60px 0 100px;
  position: relative;
}

.business_page .recruit_banner_sec:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 2000 / 129;
  background: url(../img/business_wave.png)no-repeat center center / contain;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
}

.business_page .cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 100px;
  margin-top: 100px;
}

.business_page .cta h3 {
  font-size: clamp(1.25rem, 0.986rem + 1.127vw, 2rem);
  font-weight: 600;
  padding: 10px 0;
  padding-left: 8%;
  line-height: 1.2;
  border-left: 2px solid #02ABE9;
}

.business_page .cta a {
  width: 360px;
  max-width: 50vw;
  min-width: 300px;
}

.business_page .cta a:before {
  background: url(../img/plane.svg)no-repeat center / contain;
  width: 20px;
  height: 18px;
}

@media screen and (max-width: 768px) {

  .business_page .phirosophy_sec .phirosophy_wrap img,
  .business_page .phirosophy_sec .phirosophy_wrap div {
    width: 100%;
  }

  .business_page .phirosophy_sec .phirosophy_wrap div p {
    line-height: 1.8;
    margin-top: 20px;
  }

  .business_page .phirosophy_sec {
    padding: 60px 0;
  }

  .business_page .business_sec {
    padding: 60px 0 20vw;
  }

  .business_page .recruit_banner_sec {
    padding-bottom: 40px;
  }

  .business_page .facility_box {
    padding: 30px 20px;
  }

  .business_page .facility_box>h3 {
    font-size: 18px;
  }

  .business_page .facility_box>p {
    font-size: 16px;
  }

  .business_page .detail .facility_gallery,
  .business_page .detail .detail_txt {
    width: 100%;
  }

  .business_page .detail .detail_txt h4 {
    font-size: 24px;
  }

  .business_page .detail .detail_txt h4 span {
    font-size: 14px;
  }

  .business_page .detail .detail_txt th {
    width: 100px;
  }

  .business_page .detail .other h3 {
    font-size: 18px;
  }

  .business_page .detail .other .other_wrap .other_box h4 {
    font-size: 20px;
  }

  .business_page .detail .other .other_wrap .other_box:before {
    content: none;
  }

  .business_page .cta {
    margin-top: 60px;
  }

}


/* 会社概要 */

.company_page table {
  width: 100%;
  margin-top: 115px;
}

.company_page table th,
.company_page table td {
  padding: 54px 0;
  font-size: 24px;
  line-height: 1.6;
  border-top: 1px solid #D9D9D9;
}

.company_page table tr:first-child th,
.company_page table tr:first-child td {
  border-top: none;
}

.company_page table th {
  padding-inline: 34px;
  width: 400px;
  box-sizing: border-box;
  font-weight: 900;
}

.company_page table td {
  padding-inline: 34px;
}

@media screen and (max-width: 768px) {

  .company_page table th,
  .company_page table td {
    width: 100%;
    display: block;
    padding: 24px 0;
    border-top: none;
    font-size: 18px;
  }

  .company_page table th {
    padding-bottom: 0;
    border-top: 1px solid #d9d9d9;
  }

  .company_page table td {
    padding-top: 0;
  }
}

/* お問合せフォーム */

.recruitment_sec.form_sec h3 {
  border-bottom: none;
  padding-bottom: 0;
}

.contact_page .form_sec {
  margin-top: 60px;
}

.form_sec .wpcf7 {
  display: block !important;
  margin: 0 auto;
  padding: 60px;
  background-color: #F2F2F2;
  border-radius: 10px;
}

.form_sec .wpcf7 .p-contact-list__required {
  color: red;
}

.form_sec .wpcf7 .name_wrap {
  display: flex;
  gap: 20px;
}

.form_sec .wpcf7 .name_box {
  flex: 1;
}

.form_sec .wpcf7 .count {
  font-size: 14px;
  margin-bottom: 0px;
  margin-top: -10px;
}

.form_sec .wpcf7 .count:has(.too-long),
.form_sec .wpcf7 .count:has(span[data-current-value="0"]) {
  color: red;
}

.form_sec .wpcf7 h4 {
  font-size: 16px;
  font-weight: bold;
  color: #242422;
}

.form_sec .wpcf7 h5 {
  font-size: 16px;
  font-weight: bold;
  color: #242422;
  margin-top: 30px;
}

.form_sec .wpcf7 h4::after {
  content: "*";
  color: #CA4732;
}

.form_sec .wpcf7 h5::after {
  content: "*";
  color: #CA4732;
}

.form_sec .wpcf7 h4.notes::after {
  display: none;
  /* content: "*";
    color: #f9f9f9; */
}

.form_sec .wpcf7 h5.notes::after {
  display: none;
  /* content: "*";
    color: #f9f9f9; */
}

.form_sec .wpcf7 .agreement {
  margin-top: 20px;
}

.form_sec .wpcf7 .agreement a {
  color: var(--color-main);
  display: inline-block;
}

.form_sec .wpcf7-list-item {
  /* 既存スタイル打ち消し */
  margin: 0 !important;
}

.form_sec .wpcf7-list-item-label {
  font-size: 14px;
}

.form_sec .wpcf7-list-item-label a {
  color: #12CA57;
  text-decoration: underline;
}

/* 各入力フィールド */
.form_sec .wpcf7 input[type="text"],
.form_sec .wpcf7 input[type="email"],
.form_sec .wpcf7 input[type="tel"],
.form_sec .wpcf7 textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 25px;
  background: #fff;
  border: 1px solid;
  box-sizing: border-box;
  font-size: 14px;
}

.form_sec .wpcf7 .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 10px 0 25px;
}

.form_sec .wpcf7 .wpcf7-radio span {
  padding: 0;
}

/* CheckBoxのスタイル */
.check_h5 {
  margin-bottom: 12px;
}

[type="checkbox"] {
  margin-right: 9px;
  cursor: pointer;
}

.form_sec .wpcf7 input[type="radio"],
.form_sec .wpcf7-list-item-label {
  cursor: pointer;
}

.form_sec .wpcf7-list-item {
  gap: 20px;
  padding-top: 16px;
  padding-right: 16px;
}

.form_sec .wpcf7-list-item:first-child {
  padding-left: 0;
}

/* ラベルのスタイル */
.form_sec .wpcf7 label {
  margin-bottom: 5px;
}

/* 送信ボタン */
.submit_btn {
  width: 245px;
  margin: 0 auto;
  position: relative;
}

.form_sec .wpcf7 input[type="submit"],
.form_sec .wpcf7 .wpcf7-previous {
  background: var(--color-grad);
  color: white;
  border: none;
  padding: 20px 100px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  display: inline-block;
  margin: 40px auto 0;
  opacity: 1;
  transition: opacity 0.3s;
  position: relative;
}

.form_sec .wpcf7 input[type="submit"]:hover,
.form_sec .wpcf7 .wpcf7-previous:hover {
  opacity: 0.8;
}

.form_sec.contact .wpcf7 input[type="submit"] {
  margin-top: 40px;
}

.confirm_sec .wpcf7 .wpcf7-previous {
  background: #5F5F5F;
  border-color: #5f5f5f;
  padding: 22px 60px;
}

.form_sec .wpcf7-spinner {
  /* スタイル打ち消し */
  display: none;
}

.submit_btn::after {
  content: "";
  display: block;
  background: url(../img/submit_btn.svg)no-repeat center center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  /* 高さの50%分、上に移動させて中央に */
}

.form_sec.confirm .wpcf7 .flex_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 32px;
}

.form_sec.confirm .wpcf7 h4,
.form_sec.confirm .wpcf7 h5 {
  margin-bottom: 8px;
}

.form_sec.confirm .wpcf7 .confirm-textarea p:last-child {
  white-space: pre-line;
}

.form_sec .wpcf7 .wpcf7-not-valid-tip {
  /* エラーメッセージ */
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .form_sec .wpcf7 {
    margin-top: 40px;
    padding: 30px 20px;
  }

  .form_sec .wpcf7 {
    border-radius: 0;
  }

  .form_sec.confirm .submit_btn {
    width: 100%;
    height: auto;
  }

  .form_sec.confirm .wpcf7 .flex_wrapper {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .form_sec .wpcf7 input[type="submit"] {
    margin-top: 40px;
  }

  .form_sec .wpcf7 .wpcf7-previous {
    margin: 0 auto;
  }

  .form_sec.confirm .wpcf7 input[type="submit"] {
    margin-top: 0;
  }
}



.confirm_page h3 {
  font-size: 24px;
}

.confirm_page .confirm-area {
  margin-top: 70px;
}

.confirm_page .confirm-area {
  border-top: 1px solid #D9D9D9;
}

.confirm_page .confirm-area dl {
  display: flex;
  flex-wrap: wrap;
}

.confirm_page .confirm-area dt,
.confirm_page .confirm-area dd {
  border-bottom: 1px solid #D9D9D9;
  padding: 30px 45px;
  box-sizing: border-box;
}

.confirm_page .confirm-area dt {
  width: 45%;
  text-align: right;
}

.confirm_page .confirm-area dd {
  width: 55%;
}

.confirm_page .p-contact-list__required {
  color: #b70000;
}

.confirm_page .confirm-area input {
  display: inline-block;
  background: var(--color-grad);
  color: #fff;
  padding: 22px 98px;
  line-height: 1.4;
  border-radius: 100px;
  position: relative;
  transition: transform 1s, opacity 0.3s;
}

@media screen and (min-width: 769px) {
  .confirm_page .confirm-area .form-btn input:hover {
    opacity: 0.7;
  }
}

.confirm_page .confirm-area .form-btn p {
  margin: 50px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 3%;
}

.confirm_page .confirm-area .form-btn .wpcf7-submit {
  max-width: 100%;
}

.confirm_page p.agreement {
  display: none;
}

.confirm_page .confirm-area .form-btn .c-back-btn {
  background: #929292;
  border-color: #929292;
}

.confirm_page .confirm-area .wpcf7-spinner {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}


.wpcf7-form-control-wrap {
  >.wpcf7-not-valid-tip {
    display: none;
    margin-top: 10px;
  }

  &.is-show {
    >.wpcf7-not-valid-tip {
      display: block;
    }
  }
}

.thanks_sec p {
  margin-bottom: 30px;
}


@media screen and (max-width: 768px) {
  .confirm_page h3 {
    font-size: 18px;
  }

  .confirm_page .confirm-area dt {
    width: 100%;
    text-align: left;
    padding-bottom: 0;
    border-bottom: none;
  }

  .confirm_page .confirm-area dd {
    width: 100%;
  }

}