@charset "utf-8";

/* element
--------------------------*/
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", "Zen Kaku Gothic Antique", serif;
  font-feature-settings: "palt";
  color: #221f20;
  max-width: 2000px;
  margin: auto;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  display: block;
  cursor: pointer;
}

/* page layout
--------------------------*/
.page-contents {
  display: flex;
}

.page-contents main {
  width: 75%;
  margin-left: auto;
}

.page-contents #form-area {
  width: 25%;
  position: fixed;
  left: 0;
}

.bg-top {
  background: url("../img/bg_top.png") no-repeat center top / cover;
}

.bg-bottom {
  background: url("../img/bg_bottom.png") no-repeat center top / cover;
}

@media screen and (max-width: 768px) {
  .page-contents {
    flex-direction: column;
  }

  .page-contents main {
    width: 100%;
    margin-left: initial;
  }

  .page-contents #form-area {
    width: 100%;
    position: initial;
  }

  .bg-top {
    background: url("../img/bg_top_sp.png") no-repeat center top / cover;
  }

  .bg-bottom {
    background: url("../img/bg_bottom_sp.png") no-repeat center top / cover;
  }
}

/* common selector
--------------------------*/
.title-lg {
  font-size: clamp(28.5px, 7.454px + 2.737vw, 60px);
  font-weight: 900;
}

.title-md {
  font-size: clamp(20px, 1.293px + 2.433vw, 48px);
  font-weight: 700;
}

.title-sm {
  font-size: clamp(16px, -0.035px + 2.085vw, 40px);
  font-weight: 700;
}

.title-xs {
  font-size: clamp(10px, 0.980px + 1.173vw, 23.5px);
  font-weight: 700;
}

.text-xl-pc {
  font-size: clamp(14px, 1.974px + 1.564vw, 32px);
  font-weight: 700;
}

.text-lg-pc {
  font-size: clamp(12px, -0.026px + 1.564vw, 30px);
  font-weight: 700;
}

.text-md-pc {
  font-size: clamp(10px, 0.646px + 1.216vw, 24px);
  font-weight: 700;
}

.text-sm-pc {
  font-size: clamp(9px, 1.651px + 0.956vw, 20px);
  font-weight: 500;
}

.text-xs-pc {
  font-size: clamp(8px, 1.319px + 0.869vw, 18px);
  font-weight: 500;
  line-height: 1.77;
}

.en-lg {
  font-size: clamp(25px, 1.616px + 3.041vw, 60px);
  font-weight: 700;
}

.en-md {
  font-size: clamp(20px, 1.293px + 2.433vw, 48px);
  font-weight: 400;
  font-style: italic;
}

.en-sm {
  font-size: clamp(17.5px, 3.804px + 1.781vw, 38px);
  font-weight: 400;
  font-style: italic;
}

.color-text {
  color: #df2027;
}

.border-line {
  width: clamp(60px, 6.551px + 6.95vw, 140px);
  height: clamp(6px, -0.013px + 0.782vw, 15px);
  border-bottom: solid 1px #221f20;
  margin: auto;
}

.shadow-box {
  box-shadow: 0px 0px 12.5px #221F2033;
}

.shadow-png {
  filter: drop-shadow(0px 0px 12.5px #221F2033);
}

.opacity-50 {
  opacity: 0.5;
}

.receive {
  position: relative;
}

.overlay {
  position: absolute;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .title-lg {
    font-size: clamp(33px, 1.511px + 8.397vw, 66px);
  }

  .title-md {
    font-size: clamp(25px, 1.145px + 6.361vw, 50px);
  }

  .title-sm {
    font-size: clamp(21px, 0.962px + 5.344vw, 42px);
  }

  .title-xs {
    font-size: clamp(15px, 0.687px + 3.817vw, 30px);
  }

  .text-xl-sp {
    font-size: clamp(20px, 0.916px + 5.089vw, 40px);
    font-weight: 700;
  }

  .text-lg-sp {
    font-size: clamp(18px, 0.824px + 4.58vw, 36px);
    font-weight: 700;
  }

  .text-md-sp {
    font-size: clamp(16px, 0.733px + 4.071vw, 32px);
    font-weight: 700;
  }

  .text-sm-sp {
    font-size: clamp(13px, 0.595px + 3.308vw, 26px);
    font-weight: 500;
  }

  .text-xs-sp {
    font-size: clamp(11px, 0.504px + 2.799vw, 22px);
    font-weight: 500;
  }

  .en-lg {
    font-size: clamp(41px, 1.878px + 10.433vw, 82px);
  }

  .en-md {
    font-size: clamp(25px, 1.145px + 6.361vw, 50px);
  }

  .en-sm {
    font-size: clamp(21px, 0.962px + 5.344vw, 42px);
  }

  .border-line {
    width: clamp(67.5px, 3.092px + 17.176vw, 135px);
    height: clamp(15px, 0.687px + 3.817vw, 30px);
  }

  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }
}

/* mainvisual
--------------------------*/
#mainvisual {
  margin-bottom: clamp(20px, 3.297px + 2.172vw, 45px);
}

@media screen and (max-width: 768px) {
  #mainvisual {
    margin-bottom: 0;
  }

}

/* overview
--------------------------*/
#overview {
  margin-bottom: clamp(90px, 3.145px + 11.295vw, 220px);
}

#overview .title-lg,
#overview .title-xs,
#overview .text-xs-pc {
  text-align: center;
}

#overview .title-lg {
  margin-bottom: 1.5%;
}

#overview .border-line {
  border-bottom: solid 1px #6D0C0F;
}

#overview .text-xs-pc {
  margin-top: 5%;
  margin-bottom: 3.5%;
}

#overview .first,
#overview .second {
  width: 54.5%;
  margin: 0 auto 3.5%;
}

@media screen and (max-width: 768px) {
  #overview {
    padding-top: clamp(125px, 5.725px + 31.807vw, 250px);
    margin-bottom: clamp(125px, 5.725px + 31.807vw, 250px);
  }

  #overview .text-sm-sp {
    margin-top: 7.5%;
    margin-left: 7.5%;
    margin-bottom: 7.5%;
    text-align: left;
  }

  #overview .first,
  #overview .second {
    width: 84.5%;
    margin: 0 auto 7.5%;
  }

}


/* career
--------------------------*/
#career {
  padding-bottom: clamp(90px, 3.145px + 11.295vw, 220px);
}

#career .en-md,
#career .title-md,
#career .title-xs {
  text-align: center;
}

#career .en-md {
  margin-bottom: 1.25%;
}

#career .title-md {
  margin-bottom: 2%;
}

#career .card-group {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 7.5% auto 0;
}

#career .card-group .card-item {
  width: 48.5%;
  padding: 0 4% 3.5%;
  margin-bottom: 5%;
  border-radius: 25px;
  background-color: #ffffff;
}

#career .card-group .card-item .overlay {
  top: -11%;
}


#career .card-group img {
  width: 75%;
  margin: -8.5% auto 3.5%;
}

#career .card-group .text-md-pc {
  text-align: center;
  margin-bottom: 3.5%;
}

@media screen and (max-width: 768px) {
  #career {
    padding-bottom: clamp(125px, 5.725px + 31.807vw, 250px);
  }

  #career .en-md {
    margin-bottom: 2.5%;
  }

  #career .card-group {
    width: 84.5%;
    flex-direction: column;
    margin: 12.5% auto 0;
  }

  #career .card-group .card-item {
    width: 100%;
    padding: 0 7.5% 5%;
    margin-bottom: 12.5%;
    border-radius: 25px;
  }

  #career .card-group .card-item .overlay {
    top: -10%;
  }
}

/* case
--------------------------*/
#case {
  padding-top: 25px;
  margin-bottom: clamp(110px, 3.102px + 13.901vw, 270px);
  background: url("../img/bg_case.png") no-repeat center top / contain;
}

#case .en-md,
#case .title-md,
#case .title-xs {
  text-align: center;
}

#case .title-md,
#case .title-xs {
  color: #ffffff;
}

#case .en-md {
  margin-bottom: 1.25%;
}

#case .title-md {
  margin-bottom: 2%;
}

.slick-slider {
  width: 100%;
  margin-top: 7.5%;
  position: relative;
  left: 15%;
}

.slick-track {
  display: flex;
  gap: clamp(13.5px, 2.476px + 1.434vw, 30px);
}

.slick-list {
  padding-bottom: 2.5% !important;
}

.slide-item {
  width: clamp(235px, 64.631px + 22.155vw, 490px) !important;
  height: clamp(315px, 74.479px + 31.277vw, 675px);
  padding: clamp(12px, 4.985px + 0.912vw, 22.5px) clamp(35px, 24.978px + 1.303vw, 50px) 0;
  background-color: #E2E2E2;
  border-radius: 25px;
  box-shadow: 0px 0px 6.5px #221F2033;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(30px, -0.065px + 3.91vw, 75px);
  height: clamp(30px, -0.065px + 3.91vw, 75px);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
  opacity: 1 !important;
  visibility: visible;
  transition: none;
}

.slick-prev {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  opacity: 0 !important;
}

.slick-next {
  left: calc(clamp(12.5px, 5.819px + 0.869vw, 22.5px) * -1);
  background: url("../img/button_slider.png") no-repeat center center / cover !important;
}

.slide-item .text-sm-pc {
  color: #ffffff;
  width: fit-content;
  padding: 2% 5.5%;
  text-align: center;
  border-radius: 50px;
  background-color: #7D1F22;
}

.slide-item .text-lg-pc {
  padding: 10% 0;
  margin-bottom: 5%;
  text-align: center;
  border-bottom: 1px solid #AEADAE;
}

.slide-item .text-md-pc {
  font-weight: 400;
  margin-bottom: 5%;
  display: flex;
  align-items: center;
  gap: 2.5%;
}

.slide-item img {
  width: 11.5%;
}

.slide-item .text-group {
  margin-bottom: 5%;
}

.slide-item .text-group .first {
  width: fit-content;
  padding: 0.25% 3.5%;
  margin-bottom: 2.5%;
  border: 0.75px solid #df2027;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  #case {
    margin-bottom: clamp(162.5px, 7.443px + 41.349vw, 325px);
    background: url("../img/bg_case_sp.png") no-repeat center top / contain;
  }

  #case .en-md {
    margin-top: 12.5%;
    margin-bottom: 1.25%;
  }

  .slick-slider {
    margin-top: 7.5%;
    left: 10%;
  }

  .slide-item {
    width: clamp(262.5px, 12.023px + 66.794vw, 525px) !important;
    height: clamp(400px, 18.321px + 101.781vw, 800px);
    padding: clamp(12px, 4.985px + 0.912vw, 22.5px) clamp(15px, 0.687px + 3.817vw, 30px) 0;
    border-radius: 20px;
  }

  .slick-prev,
  .slick-next {
    top: 50%;
    width: clamp(40px, 1.832px + 10.178vw, 80px);
    height: clamp(40px, 1.832px + 10.178vw, 80px);
  }

  .slick-next {
    left: -7.5%;
  }

  .slide-item img {
    width: 12.5%;
  }

}


/* support
--------------------------*/
#support {
  padding-bottom: clamp(62.5px, 20.743px + 5.43vw, 125px);
  margin-bottom: clamp(110px, 3.102px + 13.901vw, 270px);
  background: url("../img/bg_support.png") no-repeat center bottom / contain;
}

#support .en-md,
#support .title-md,
#support .title-xs {
  text-align: center;
}

#support .en-md {
  margin-bottom: 1.25%;
}

#support .title-md {
  margin-bottom: 2%;
}

#support .card-group {
  width: 72.5%;
  margin: 7.5% auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#support .card-group .card-item {
  width: 47.5%;
  height: clamp(335px, 0.943px + 43.44vw, 835px);
  padding: 4.5% 2.5% 0;
  border-radius: 25px;
  background-color: #ffffff;
}

#support .card-group .overlay {
  width: 8.5%;
  top: 45%;
  left: calc(50% - 4.25%);
}

#support .card-group .card-item .text-xl-pc {
  text-align: center;
  margin-bottom: 7.5%;
}

#support .card-group .card-item .text-xs-pc {
  margin-bottom: 6.5%;
}

#support .card-group .card-item img {
  width: 95%;
  margin: auto;
}



@media screen and (max-width: 768px) {
  #support {
    margin-bottom: clamp(132.5px, 6.069px + 33.715vw, 265px);
    background: url("../img/bg_support_sp.png") no-repeat center bottom / contain;
  }

  #support .card-group {
    width: 76.8%;
    margin: 7.5% auto 0;
    flex-direction: column;
  }

  #support .card-group .card-item {
    width: 100%;
    height: auto;
    padding: 10% 7.5% 7.5%;
    margin-bottom: 10%;
    border-radius: 20px;
    background-color: #ffffff;
  }

  #support .card-group .overlay {
    width: 16.5%;
    top: 45.5%;
    left: calc(50% - 8.25%);
  }

  #support .card-group .card-item img {
    width: 100%;
  }

}

/* recommend
--------------------------*/
#recommend {
  margin-bottom: clamp(90px, -0.195px + 11.729vw, 225px);
}

#recommend .en-md,
#recommend .title-md,
#recommend .title-xs {
  text-align: center;
}

#recommend .en-md {
  margin-bottom: 1.25%;
}

#recommend .title-md {
  margin-bottom: 2%;
}

#recommend .card-group {
  width: 54.5%;
  margin: 7.5% auto 0;
}

#recommend .card-group .card-item {
  padding: 4.5% 2.5% 4.5% 0;
  margin-bottom: 5%;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
}

#recommend .card-group .card-item .text-group {
  margin-left: 2.5%;
}

#recommend .card-group .card-item .text-lg-pc {
  margin-bottom: 2.5%;
}

#recommend .card-group .card-item img {
  width: 30%;
  margin-left: -10%;
}

@media screen and (max-width: 768px) {
  #recommend {
    margin-bottom: clamp(132.5px, 6.069px + 33.715vw, 265px);
  }

  #recommend .card-group {
    width: 76.5%;
    margin: 12.5% auto 0;
  }

  #recommend .card-group .card-item {
    padding: 4.5% 5% 6.5% 5%;
    margin-bottom: 15%;
    flex-direction: column;
    text-align: center;
  }

  #recommend .card-group .card-item img {
    width: 30%;
    margin-top: -12%;
    margin-left: 0%;
    margin-bottom: 5%;
  }

  #recommend .card-group .card-item .text-lg-pc {
    margin-bottom: 5%;
  }

}


/* flow
--------------------------*/
#flow .en-md,
#flow .title-md {
  text-align: center;
}

#flow .en-md {
  margin-bottom: 1.25%;
}

#flow .title-md {
  margin-bottom: 2%;
}

#flow img {
  width: 70%;
  margin: 10% auto 0;
}

@media screen and (max-width: 768px) {
  #flow img {
    width: 43.5%;
  }
}

/* message
--------------------------*/
#message {
  padding: clamp(130px, 16.421px + 14.77vw, 300px) 0;
  background: url("../img/bg_message.png") no-repeat center bottom / cover;
}

#message .text-group {
  width: 70%;
  margin: auto;
}

#message .en-md {
  margin-bottom: 2.5%;
}

#message .title-md {
  margin-bottom: 1.5%;
}

#message .title-xs {
  margin-bottom: 5%;
}

#message .text-xl-pc {
  line-height: 1.5;
  margin-bottom: 5%;
}

#message .text-md-pc {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #message {
    padding: clamp(130px, 16.421px + 14.77vw, 300px) 0;
    background: url("../img/bg_message_sp.png") no-repeat center bottom / cover;
  }

  #message .text-group {
    width: 85%;
  }

  #message .title-xs {
    margin-bottom: 10%;
  }

  #message .text-xl-pc {
    margin-bottom: 10%;
  }

}

/* closing
--------------------------*/
#closing {
  padding-top: clamp(120px, 19.783px + 13.032vw, 270px);
  padding-bottom: clamp(75px, 4.848px + 9.123vw, 180px);
  margin-top: -10%;
  margin-bottom: clamp(85px, 8.167px + 9.991vw, 200px);
  background: url("../img/bg_closing.png") no-repeat center bottom / cover;
  position: relative;
  z-index: -1;
}

#closing .title-sm {
  font-style: italic;
  color: #ffffff;
  margin-bottom: 7.5%;
  text-align: center;
}

#closing .card-group {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#closing .card-group .card-item {
  width: 31.25%;
  height: clamp(155px, -2.007px + 20.417vw, 390px);
  text-align: center;
  background-color: #ffffff;
  border-radius: 20px;
}

#closing .card-group .card-item img {
  width: 15%;
  margin: -8.5% auto 7.5%;
}

#closing .card-group .text-md-pc {
  font-style: italic;
  line-height: 1.5;
  padding-bottom: 3.5%;
}

#closing .card-group .border-line {
  border-bottom: solid 2.5px #787F7F;
}

#closing .card-group .text-xs-pc {
  margin-top: 5%;
}

@media screen and (max-width: 768px) {
  #closing {
    padding-top: clamp(80px, 26.551px + 6.95vw, 160px);
    padding-bottom: clamp(112.5px, 37.337px + 9.774vw, 225px);
    margin-top: -13.5%;
    margin-bottom: clamp(132.5px, 6.069px + 33.715vw, 265px);
    background: url("../img/bg_closing_sp.png") no-repeat center top / cover;
  }

  #closing .card-group {
    margin-top: 15%;
    width: 76.5%;
    flex-direction: column;
  }

  #closing .card-group .card-item {
    width: 100%;
    height: auto;
    padding-bottom: 10%;
    margin-bottom: 15%;
    border-radius: 20px;
  }

  #closing .card-group .card-item img {
    width: 13.5%;
    margin: -8.5% auto 5%;
  }
}

/* faq
--------------------------*/
#faq {
  margin-bottom: clamp(85px, 1.486px + 10.86vw, 210px);
}

#faq .title-md,
#faq .en-md {
  text-align: center;
}

#faq .en-md {
  color: #FFDDDE;
  margin-bottom: 7.5%;
}

#faq .box-group {
  width: 58.5%;
  margin: auto;
}

#faq .box-group .text-box {
  padding: 2.5% 1.5% 3.5%;
  margin-bottom: 2.5%;
  border: 1px solid #221f20;
}

#faq .box-group .text-box .first {
  padding-left: 1.5%;
  padding-right: 3.5%;
  padding-bottom: 2.5%;
  margin-bottom: 2.5%;
  border-bottom: 1px solid #221f20;
}

#faq .box-group .text-box .second {
  padding-left: 1.5%;
  padding-right: 3.5%;
  display: flex;
}

#faq .box-group .text-box .second {
  padding-left: 1.5%;
  padding-right: 3.5%;
  display: flex;
}

#faq .box-group .text-box .second .en-sm {
  margin-top: -3.5%;
}

#faq .box-group .text-box .en-sm {
  margin-right: 2.5%;
}

@media screen and (max-width: 768px) {
  #faq {
    margin-bottom: clamp(115px, 5.267px + 29.262vw, 230px);
  }

  #faq .box-group {
    width: 85%;
  }
}

/* footer
--------------------------*/

footer {
  background-color: #F1F2F2;
}

footer .box {
  width: 75%;
  padding: 3.5% 2.5% 1.5% 2.5%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .box .image-group {
  width: 50%;
}

footer .box .image-group img {
  min-width: 150px;
  width: 27.5%;
}

footer .box .image-group .service {
  margin-bottom: 5%;
}

footer .box .image-group .logo-group {
  display: flex;
  align-items: center;
  gap: 5%;
}

footer .box .text-group {
  display: flex;
  align-items: center;
  gap: 8.5%;
}

footer .box .image-group .logo-group p,
footer .box .text-group a {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  footer .box {
    width: 100%;
    padding: 12.5% 2.5% 5% 2.5%;
    margin-left: initial;
    flex-direction: column;
    align-items: center;
  }

  footer .box img {
    width: 40%;
    margin-bottom: 2%;
  }

  footer .box .image-group {
    min-width: initial;
    width: 100%;
    margin-bottom: 7.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .box .image-group img {
    width: 40%;
  }

  footer .box .image-group .logo-group {
    flex-direction: column;
    gap: 5%;
  }

  footer .box .image-group .service {
    margin-bottom: 7.5%;
  }

  footer .box .image-group .logo {
    margin-bottom: 1.5%;
  }

}

/* 固定ボタン
--------------------------*/
.button-fixed {
  position: fixed;
  z-index: 90;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.button-fixed.hide {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 768px) {
  .button-fixed {
    display: flex;
    width: 100%;
  }
}

.button-fixed a {
  display: block;
  width: 85%;
}

/* 応募フォーム
--------------------------*/

#form-area .box {
  width: 85.5%;
  height: 95.75vh;
  padding: 15% 7.25%;
  margin: 5% auto 0;
  border-radius: 20px;
  background-color: #ffffff;
}

#form-area .box img {
  width: 63.5%;
  margin: 0 auto 3.5%;
}

#form-area .box .text-md-pc {
  color: #032C50;
  margin-bottom: 15%;
  text-align: center;
}

@media (max-width: 768px) {
  #form-area {
    padding: clamp(82.5px, 3.779px + 20.992vw, 165px) 0;
    background: url("../img/bg_red.png") no-repeat center top / cover;
  }

  #form-area .box {
    height: auto;
    margin: 0% auto 0;
  }

  #form-area .box img {
    width: 62.5%;
  }
}


/* thanksページ
--------------------------*/

.thanks-contents {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.thanks-contents>.text-group {
  padding-top: 8.5vh;
}

.thanks-contents>.text-group .en-md {
  margin-bottom: 2.5%;
  text-align: center;
}

.thanks-contents>.text-group .title-md {
  margin-bottom: 1.5%;
  text-align: center;
}

.thanks-contents>.text-group .border-line {
  border-bottom: solid 1px #6D0C0F;
}

.thanks-contents>.text-group .text-xs-pc {
  margin-top: 5%;
  margin-bottom: 3.5%;
  text-align: center;
}

.thanks-contents footer .box {
  margin: auto;
}

@media screen and (max-width: 768px) {
  .thanks-contents>.text-group {
    width: 90%;
    margin: 0 auto;
  }

  .thanks-contents>.text-group .text-xs-pc {
    text-align: left;
  }

  .thanks-contents>.text-group .text-xs-pc {
    margin-top: 12.5%;
  }
}