@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

:root {
  --color-white: #ffffff;
  --color-bg: #F5F3EA;
  --color-card-bg-beige: #f5f5f5;
  --color-card-bg-gray: #E8EDF0;
  --color-card-bg-gold: #DED6C2;
  --color-accent: #BEAF87;
  --color-btn: #F28E2B;
  --color-btn-hover: #E67E18;
  --color-text-footer: #194A61;
  --color-text-footer-sp: #17465c;
  --color-text-content: #2B2B2B;
  --header-height-pc: 96px;
  --header-height-sp: 60px;
}


/* 共通 -------------------- */
html {
  scroll-behavior: smooth;
}

.container-lg {
  width: calc(100% - 40px);
  max-width: 1252px;
  margin: 0 auto;
}

.container-md {
  width: calc(100% - 40px);
  max-width: 1096px;
  margin: 0 auto;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.text-box-sm {
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  text-align: left;
}

.card-title {
  background: var(--color-text-footer);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-weight: normal;
  padding: 8px 0;
}


.text-bold {
  font-weight: 700;
}

main h2 {
  font-size: 36px;
  color: var(--color-text-footer);
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: bold;
  padding: 120px 0 40px;
}

main h3 {
  font-size: 20px;
  color: var(--color-text-content);
  text-align: center;
  font-weight: normal;
}

/* 共通(ボタン) -------------------- */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--color-white);
  background: var(--color-btn);

  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);

  position: relative;
  transition: 0.3s;
}

.btn:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.15);
}

.btn::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

/* PC版 -------------------- */
.fixBtn-sp {
  display: none;
}

.sp-br-fv-h2 {
  display: none;
}

.sp-br-fv-h3h4 {
  display: none;
}

.sp-br {
  display: none;
}

.sp-h4 {
  display: none;
}

#cta-sp {
  display: none;
}

.cause-arrow-sp {
  display: none;
}

.model-arrow-sp {
  display: none;
}

.training-img-sp {
  display: none;
}

.footer.sp-only {
  display: none;
}

/* header -------------------- */
h1 {
  line-height: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  width: 100%;
  height: var(--header-height-pc);
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header img {
  width: 220px;
  margin-left: 40px;
}

header .btn {
  width: 336px;
  height: 54px;
  margin: 0 40px 0 auto;
  font-size: 24px;
  letter-spacing: 0.1em;
}

/* main -------------------- */
main {
  padding-top: var(--header-height-pc);
}

/* fv -------------------- */
#fv {
  background: url("img/fv-bg.png") 80% center / cover no-repeat;
  padding: 124px 0 40px;
  height: 800px;
  box-sizing: border-box;
  position: relative;
}

#fv h2 {
  font-size: 32px;
  position: absolute;
  top: 124px;
  left: 96px;
  text-align: left;
  line-height: 1.8;
  padding-top: 0;
  padding-bottom: 0;
  letter-spacing: 0.1em;
  color: #222222;
}

#fv h3 {
  font-size: min(2vw, 24px);
  color: #222222;
  position: absolute;
  top: 250px;
  left: 96px;
  text-align: left;
  line-height: 1.7;
}

#fv h4 {
  font-size: min(2vw, 20px);
  position: absolute;
  bottom: 240px;
  left: 96px;
  color: #222222;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 2;
  font-weight: normal;
}

#fv .btn {
  position: absolute;
  bottom: 120px;
  left: 96px;
  width: 540px;
  height: 90px;
  line-height: 1.4;
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.1em;
}



.video-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* about -------------------- */
.about-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 96px 96px 0 auto;
}

.about-1 img {
  width: 47%;
  margin-left: auto;
}

.about-1 h2 {
  font-size: min(3vw, 36px);
  text-align: left;
  line-height: 1.5;
  margin: 0 auto 0 96px;
  padding-top: 0px;
  padding-bottom: 0px;

}

.about-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}

.about-2-txt {
  width: 50%;
  margin: 40px 84px 0 auto;
}

.about-2-txt-nomal {
  line-height: 1.7;
}

.about-2-txt-bold {
  margin-top: 24px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.7;
}

.about-2 img {
  width: 23%;
  margin-right: auto;
}

/* question -------------------- */
#question {
  background: url(img/question-bg.png) center / cover no-repeat;
  position: relative;
  padding-bottom: 80px;
}

#question::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: var(--color-text-footer);
}


#question h2 {
  padding: 120px 0 80px;
  color: var(--color-text-content);
}

#question article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.question-list {
  padding-left: 40px;
  margin-bottom: 24px;
  font-size: min(2.3vw, 20px);
}

.question-list li {
  position: relative;
  padding-left: 32px;
  list-style: none;
}

.question-list li+li {
  margin-top: 40px;
}

.question-list li::before {
  content: "";
  background: url(img/check-box.png) center / contain no-repeat;
  width: 25px;
  height: 29px;
  position: absolute;
  top: 3px;
  left: 0px;
}

#question article img {
  max-width: 260px;
  margin-right: 64px;
}

.question-end {
  margin-top: 80px;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: var(--color-text-footer);
  line-height: 1.6;
}

/* cause -------------------- */
#cause h2 {
  padding-top: 80px;
}

#cause h3 {
  font-size: 16px;
  padding-bottom: 40px;
}

.cause-result {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cause-box {
  width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cause-card {
  display: flex;
  align-items: center;
  border: .5px solid var(--color-text-footer);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  height: 216px;
  position: relative;
  padding: 0 180px 0 40px;
}

#cause .card-title {
  width: 144px;
  margin-bottom: 24px;
}

.cause-img {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.cause-img img {
  width: 120px;
}

.cause-txt p {
  font-size: 24px;
  color: var(--color-text-footer);
  font-weight: bold;
}

.cause-arrow {
  width: 6%;
}

.result-box {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: .5px solid var(--color-text-footer);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.result-box p {
  font-size: 24px;
  color: var(--color-text-footer);
  font-weight: bold;
  text-align: center;
  padding: 40px 80px;
}

.result-img img {
  padding-bottom: 40px;
  width: 160px;
}

.cause-section-end {
  margin: 80px auto 48px;
}

/* solution -------------------- */
#solution {
  background: url(img/solution-bg.png) top / cover no-repeat;
}

#solution h2 {
  padding-top: 240px;
}

.solution-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.solution-card:nth-child(1) {
  transform: translateY(128px);
}

.solution-card:nth-child(2) {
  transform: translateY(64px);
}

.solution-card {
  width: 30%;
  height: 488px;
  background: var(--color-white);
  border: .5px solid var(--color-text-footer);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.solution-card h4 {
  font-size: 32px;
  text-align: center;
  color: var(--color-text-footer);
  font-weight: bold;
}

.solution-card p {
  text-align: center;
}


.solution-card .solution-number {
  width: 96px;
  position: absolute;
  top: 0;
  left: 0;
}

.solution-card .solution-image {
  width: 196px;
  display: block;
  margin: 64px auto 40px;
}

.solution-text1 {
  padding: 176px 0 40px;
}

.solution-text2 {
  font-size: 32px;
  color: var(--color-text-footer);
  font-weight: bold;
  margin-bottom: 32px;
}

.solution-comment-pc {
  font-size: 32px;
  color: var(--color-text-footer);
  font-weight: bold;
  padding-bottom: 32px;
}

.solution-result {
  max-width: 800px;
  margin: 0 auto 24px;
  border: 2px solid var(--color-accent);
  background: var(--color-white);
  padding: 56px 40px 32px;
}

.solution-result-count {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;

  border-bottom: 12px solid var(--color-btn);
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.solution-result h4,
.solution-result-sub {
  font-size: 32px;
}

.solution-result h4 {
  margin-bottom: 40px;
}

.solution-result-number {
  font-size: 64px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.solution-result-text {
  max-width: 760px;
  line-height: 2;
}

.solution-text3 {
  padding-bottom: 80px;
}

/* work -------------------- */
#work .text-box-sm {
  padding-bottom: 40px;
}


/* 共通(card)  -------------------- */
.cards,
.work-4-subtxt-wrap,
.work-txts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 840px;
}

.card {
  width: calc((100% - 32px) / 2);
  height: 12em;
  border: .5px solid var(--color-text-content);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
  position: relative;
}

.work-txt {
  width: calc((100% - 32px) / 2);
}

.work-4-subtxt {
  margin: 0 0 24px auto;
}

.card-number {
  width: 96px;
  position: absolute;
  top: 0;
  left: 0;
}

.card h4 {
  font-size: 24px;
  color: var(--color-text-footer);
  text-align: center;
  padding-top: 48px;
  padding-bottom: 16px;
}

.card p {
  text-align: center;
  margin: 0 auto;
}

.card-3,
.card-4 {
  margin-top: 32px;
}

.card-1,
.card-4 {
  background: var(--color-card-bg-beige);
}

.card-2,
.card-3 {
  background: var(--color-card-bg-gray);
}

.work-end {
  font-size: 24px;
  color: var(--color-text-footer);
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
  margin: 32px 0 0 40px;

}

.work img {
  display: block;
}

/* model -------------------- */
#model .text-box-sm {
  padding-bottom: 40px;
}

.model-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.model-card {
  width: 44%;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.model-black {
  border: .5px solid var(--color-text-content);
}

.model-gold {
  border: .5px solid var(--color-accent);
}

#model .card-title {
  width: 196px;
  margin: 32px auto 48px;
}

.model-description {
  font-size: 16px;
}

#model .model-end {
  padding: 40px 0 80px;
}

.model-card-left {
  font-size: 20px;
  border: .5px solid var(--color-text-footer);
  padding: 24px 72px;
  margin-top: 32px;
}

.model-card-right-top,
.model-card-right {
  font-size: 20px;
  border: .5px solid var(--color-text-footer);
  margin-top: 32px;
  box-sizing: border-box;
  width: 196px;
  padding: 16px 0;
  text-align: center;
}

#model .triangle-layout {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#model .triangle-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.model-card-right {
  background: var(--color-card-bg-gold);
}

/* training -------------------- */
#training {
  background: url(img/training-bg.png) bottom / cover no-repeat;
}

#training .text-box-sm {
  padding-bottom: 40px;
}

#training .training-img {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.training-sub-title {
  font-size: 32px;
  color: var(--color-text-footer);
  font-weight: bold;
  margin: 104px 0 40px;
}

.training-img-pc {
  display: block;
  width: 60%;
  min-width: 450px;
  max-width: 800px;
  margin: 0 auto;
}

.training-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1142px;
  width: calc(100% - 40px);
  height: 200px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.training-card+.training-card {
  margin-top: 40px;
}

#training .card-title {
  width: 20%;
  margin-left: 40px;
}

#training .card-txt {
  width: 30%;
}

.training-card img {
  width: 320px;
  height: 180px;
  margin-right: 40px;
}

#training .card-sub-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.training-card-2,
.training-card-4 {
  margin: 40px 0 0 auto;
}

.training-end {
  padding: 40px 0 160px;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  text-align: left;
}

/* career-growth -------------------- */
#career-growth {
  background: url(img/career-growth-bg-img.png) top / cover no-repeat;
}

#career-growth h2 {
  padding-top: 40px;
}

#career-growth .text-box-sm {
  padding-bottom: 40px;
}

.career-growth-end {
  padding: 54px 0 80px;
  text-align: center;
}

/* interview-------------------- */
#interview {
  background: var(--color-bg);
  padding-bottom: 120px;
}

#interview .text-box-sm {
  padding-bottom: 40px;
}

#interview article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  padding: 40px;
}

#interview article+article {
  margin-top: 32px;
}

#interview video {
  width: 44%;
  /* padding: 48px 0 84px 80px; */
}

#interview img {
  width: 44%;
  padding: 84px 0 84px 80px;
}

.interview-article-txt {
  width: 52%;
}

#interview h4 {
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--color-text-footer);
  color: var(--color-white);

  font-weight: bold;
  font-size: min(2.5vw, 24px);
  height: 64px;
  width: 50%;

  margin-bottom: 16px;
}

.interview-name {
  font-size: 32px;
  color: var(--color-text-footer);
}

.interview-busyo {
  font-size: min(2.5vw, 24px);
  color: var(--color-text-footer);
  margin-bottom: 8px;
}

.interview-catchphrase {
  font-size: 16px;
  color: var(--color-text-content);
}

/* message-------------------- */
#message {
  background: #f4f4f4;
  padding-bottom: 120px;

}

#message article {
  width: calc(100% - 40px);
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 54px;
}

#message img {
  width: 50%;
}

/* entry-------------------- */
#entry {
  padding-bottom: 120px;
}

#entry article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 840px;
  margin: 24px auto 0;
}

#entry article h3 {
  font-size: 20px;
  width: 50%;
  text-align: left;
  line-height: 1.7;
  margin-right: 24px;
}

#entry article img {
  width: 50%;
}

#entry .btn {
  width: 336px;
  height: 54px;
  margin: 64px auto 0;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.entry-sub-title {
  font-size: 32px;
  color: var(--color-text-footer);
  font-weight: bold;
  margin-top: 96px;
  letter-spacing: 4.5px;
}

.entry-table {
  width: 736px;
  margin: 64px auto 0;
  border: .5px solid var(--color-text-footer);
  border-collapse: collapse;
}

#entry th,
#entry td {
  border: solid .5px #d9d9d9;
}

#entry th {
  background-color: #E8EDF0;
  width: 20%;
  color: var(--color-text-footer);
  font-weight: bold;
  letter-spacing: 5px;
}

#entry td {
  padding: 24px 0 24px 56px;
}

/* footer-------------------- */
footer {
  height: 120px;
  background: var(--color-text-footer);
  text-align: center;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer a,
.footer p {
  color: var(--color-white);
  margin: 16px;
}

@media(max-width:1300px) {

  .sp-br-fv-h2 {
    display: block;
  }

  #fv h2 {
    top: 50px;
  }

  #fv h3 {
    top: 240px;
  }
}

@media(max-width:1024px) {

  main h2 {
    padding: 40px 0 24px;
    letter-spacing: 0;
  }

  .about-1 h2 {
    margin: 0 auto 0 40px;
  }

  .about-1 img {
    margin-left: 0;
  }

  .about-2 {
    margin-bottom: 64px;
  }

  .about-2-txt {
    width: 80%;
    margin: 40px 39px 0 3px;
  }

  .about-2 img {
    width: 30%;
  }

  #question {
    padding-bottom: 32px;
  }

  .question-end {
    margin-top: 40px;
  }

  #question article {
    gap: 0;
  }

  #question article img {
    max-width: 240px;
  }

  #cause h2 {
    padding-top: 32px;
  }


  .cause-txt p {
    font-size: 20px;
  }

  .cause-card {
    padding: 0 180px 0 24px;
  }

  .cause-img img {
    width: 100px;
  }

  .cause-arrow-pc img {
    width: 70%;
    margin-left: 24px;
  }

  .result-box p {
    font-size: 20px;
    width: 180px;
  }

  .result-img img {
    width: 100px;
  }

  .solution-card {
    height: 400px;
  }

  .solution-card h4 {
    font-size: 24px;
  }

  #training .card-txt {
    width: 38%;
  }

  .training-end {
    width: 640px;
  }

  .training-card img {
    margin-right: 16px;
  }

  .model-card-left {
    padding: 24px 40px;
  }

  .model-card-right-top,
  .model-card-right {
    font-size: 16px;
    width: 120px;
    padding: 16px 0;
  }

  .model-arrow {
    width: 6%;
  }

  .work-card p {
    margin: 0 32px auto 32px;
  }

  .work-txts {
    margin: 24px auto 40px;
  }
}


@media(max-width:820px) {

  .sp-br-fv-h2 {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

  .pc-h4 {
    display: none;
  }

  .sp-h4 {
    display: block;
  }

  .text-box-sm {
    font-size: 16px;
    width: 400px;
  }

  header img {
    width: 150px;
    margin-left: 20px;
  }

  #fv {
    background: url("img/fv-bg-sp.png") 80% center / cover no-repeat;
  }

  #fv h2 {
    font-size: 32px;
    left: 40px;
  }

  #fv h3 {
    font-size: 16px;
    left: 40px;
  }

  #fv h4 {
    font-size: 16px;
    left: 40px;
    line-height: 1.5;
  }

  #fv .btn {
    left: 40px;
  }

  #question article img {
    margin-right: 32px;
  }

  .question-end {
    margin: 40px auto;
    width: 550px;
  }

  .solution-card .solution-image {
    width: 130px;
  }

  .solution-card {
    height: 340px;
  }

  .cards,
  .work-4-subtxt-wrap,
  .work-txts {
    width: 96%;
  }

  .card-number {
    width: 80px;
  }

  .training-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 24px 8px;
    box-sizing: border-box;
    gap: 24px;
  }

  #training .card-title {
    width: 40%;
    height: auto;
    margin: 0;
  }

  #training .card-txt {
    width: 100%;
    height: auto;
    margin: 0;
    text-align: center;
  }

  #training .card-sub-title {
    text-align: center;
    margin: 8px auto;
  }

  .card-sub-txt {
    text-align: center;
    width: 100%;
    margin: 0 auto 16px;
    line-height: 1.8;
    font-size: 14px;
  }

  .training-card-1,
  .training-card-2,
  .training-card-3,
  .training-card-4 {
    margin: 40px auto;
  }

  .training-end {
    font-size: 16px;
    width: 400px;
  }

  #career-growth {
    background: none;
  }

  #work .pc-bg {
    display: none;
  }

  #work {
    position: relative;
    padding-bottom: 24px;
  }

  #work::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: var(--color-text-footer);
  }

  .work-end {
    margin: 32px auto;
    width: 65%;
  }


  #message img {
    width: 45%;
  }

  #message article {
    gap: 24px;
  }

  #entry article {
    width: 90%;
  }

  #entry article h3 {
    width: 60%;
  }

  #entry article img {
    width: 40%;
  }

  #entry article h3 {
    font-size: 16px;
    width: 50%;
    text-align: left;
    line-height: 1.7;
    margin-right: 24px;
  }


}

@media(max-width:768px) {
  .pc-br-fv {
    display: none;
  }

  .sp-br-fv-h3h4 {
    display: block;
  }

  #fv .btn {
    left: 40px;
    width: 450px;
    font-size: 20px;
  }

  .question-end {
    width: 75%;
    font-size: 24px;
  }

  #cause h3 {
    padding-bottom: 16px;
  }

  .cause-arrow-pc {
    display: none;
  }

  .cause-arrow-sp {
    display: block;
    margin: 16px 0 14px;
  }

  .cause-result {
    flex-direction: column;
    gap: 0;
  }

  .cause-box {
    width: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cause-img {
    right: 20px;
  }

  .cause-img img {
    width: 80px;
  }

  .cause-txt p {
    width: 190px;
  }

  .cause-card {
    height: 132px;
  }

  #cause .card-title {
    margin-bottom: 8px;
  }

  .result-box {
    width: 340px;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
    padding-right: 100px;
    box-sizing: border-box;
  }

  .result-img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .result-img img {
    width: 80px;
    padding: 0;
  }

  .result-box p {
    text-align: left;
    padding: 24px 0 24px 24px;
    width: 190px;
  }

  .cause-section-end {
    margin: 24px auto 24px;
  }

  .card h4 {
    font-size: 20px;
  }

  .model-cards {
    display: block;
  }

  .model-card {
    width: 320px;
    margin: 0 auto;
    height: 240px;
  }

  .model-black {
    height: 190px;
  }

  #model .card-title {
    margin: 16px auto 16px;
  }

  .model-card-left {
    font-size: 16px;
    padding: 16px 32px;
    margin-top: 16px;
  }

  .model-card-right-top,
  .model-card-right {
    padding: 8px 0;
    margin-top: 16px;
  }

  .model-arrow-pc {
    display: none;
  }

  .model-arrow-sp {
    display: flex;
  }

  .model-arrow-sp img {
    width: 100px;
    margin: 16px auto;
  }

  #model .model-end {
    padding: 16px 0 24px;
  }

  .solution-card h4 {
    font-size: 20px;
  }

  #interview article {
    padding: 24px;
  }

  .entry-table {
    width: 100%;
    margin: 0;
  }

}

@media(max-width:500px) {

  .pc-header-btn {
    display: none;
  }

  .text-box-sm {
    width: 90%;
  }

  main h2 {
    font-size: 30px;
    color: var(--color-text-footer);
    text-align: center;
    letter-spacing: 0;
    font-weight: bold;
    padding: 32px 0 24px;
  }

  header {
    height: var(--header-height-sp);
  }

  main {
    padding-top: var(--header-height-sp);
  }

  .pc-fv-btn {
    display: none;
  }

  #fv {
    background: url("img/fv-bg-sp.png") 80% center / cover no-repeat;
    height: 560px;
  }

  #fv h2 {
    font-size: 20px;
    top: 20px;
    left: 20px;
  }

  #fv h3 {
    top: 135px;
    left: 20px;
  }

  #fv h4 {
    font-size: 16px;
    left: 20px;
    top: 280px;
    bottom: auto;
    padding: 0 8px;
  }

  #cta-sp {
    display: block;
    width: 100%;
  }

  #cta-sp .btn {
    width: calc(100% - 40px);
    max-width: 320px;
    height: 54px;
    margin: 0 auto;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }

  .about-1 {
    flex-direction: column-reverse;
    margin: 16px auto;
  }

  .about-2 {
    display: block;
  }

  .about-1 h2 {
    font-size: 32px;
    text-align: left;
    margin: 0 auto;
    letter-spacing: 0;
  }

  .about-1 img {
    width: 100%;
  }

  .about-2-txt {
    width: 100%;
    margin: 0 auto;
  }

  .about-2-txt-bold {
    margin: 16px auto;
    font-size: 20px;
    line-height: 1.4;
  }

  .about-2 img {
    width: 100%;
  }

  .about-2 {
    margin-bottom: 0px;
  }

  #question {
    padding-bottom: 8px;
  }

  #question h2 {
    padding: 32px 0;
    font-size: 24px;
  }

  #question article {
    display: block;
    margin: 0 auto;
  }

  .question-list li+li {
    margin-top: 16px;
  }

  #question article img {
    display: block;
    width: 50%;
    margin: 0 auto;

  }

  .question-list {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 16px;
  }

  .question-list li::before {
    width: 21px;
    height: 21px;
    top: 1px;
    left: 5px;
  }

  .question-end {
    margin: 16px auto;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    width: 90%;
  }


  #solution {
    margin-top: -110px;
  }

  #solution h2 {
    padding-top: 160px;
  }

  #solution .pc-h3 {
    display: none;
  }

  #solution .sp-h3 {
    display: block;
  }

  .solution-cards {
    flex-direction: column;
  }

  .solution-card:nth-child(1) {
    transform: translateY(0);
  }

  .solution-card:nth-child(2) {
    transform: translateY(0);
  }

  .solution-card {
    width: 100%;
  }

  .solution-card .solution-image {
    width: 160px;
    display: block;
    margin: 24px auto;
  }

  .solution-card {
    height: 300px;
    margin-bottom: 24px;
  }

  #solution .solution-text1 {
    padding: 0;
  }

  .solution-comment-sp {
    font-size: 24px;
    padding-top: 24px;
  }

  .solution-result {
    padding: 24px;
  }

  .solution-result h4 {
    margin-bottom: 16px;
  }

  .solution-result h4,
  .solution-result-sub {
    font-size: 24px;
  }

  .solution-result-number {
    font-size: 40px;
  }

  .solution-text3 {
    padding-bottom: 16px;
  }


  .solution-text2 {
    font-size: 24px;
    margin-top: 24px;
  }

  .solution-result-text {
    line-height: 1.1;
  }

  .work-4-subtxt {
    margin: 0;
    font-size: 14px;
  }

  .work-txt {
    width: 90%;
  }

  .work-end {
    margin: 0;
  }

  #work .text-box-sm {
    padding-bottom: 16px;
  }

  .cards,
  .work-4-subtxt-wrap,
  .work-txts {
    flex-direction: column;
  }

  .card {
    width: 100%;
    height: 10em;
  }

  .card h4 {
    padding-top: 32px;
  }

  .card-2,
  .card-3,
  .card-4 {
    margin-top: 16px;
  }

  .card-1,
  .card-3 {
    background: var(--color-card-bg-beige);
  }

  .card-2,
  .card-4 {
    background: var(--color-card-bg-gray);
  }


  .work-txts {
    margin: 16px auto 24px;
  }

  .work-txt {
    width: 100%;
  }

  .work-end {
    font-size: 24px;
    width: 80%;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 8px auto;
  }

  .work-end.sp-only {
    display: block;
  }

  #work img.pc-only {
    display: none;
  }

  #training .text-box-sm {
    padding-bottom: 16px;
  }

  .training-img-pc {
    display: none;
  }

  .training-img-sp {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .training-card+.training-card {
    margin-top: 16px;
  }

  .training-sub-title {
    font-size: 24px;
    margin: 32px 0 16px;
  }

  .training-card-1,
  .training-card-2,
  .training-card-3,
  .training-card-4 {
    margin: 0px auto 16px;
  }

  .training-card img {
    width: 280px;
    height: auto;
    margin-right: 0;
  }

  #training .card-title {
    width: 75%;
  }

  #training .card-sub-title {
    font-size: 20px;
  }


  .training-card {
    gap: 0px;
  }

  .training-end {
    width: 90%;
  }

  .training-end {
    padding: 8px 0 120px;
  }

  #career-growth h2 {
    padding-top: 0;
  }

  #career-growth .text-box-sm {
    padding-bottom: 16px;
  }

  .career-growth-end {
    padding: 16px 0 24px;
    font-size: 14px;
  }

  #interview {
    padding-bottom: 24px;
  }

  #interview .text-box-sm {
    padding-bottom: 16px;
  }


  #interview article {
    display: block;
    padding: 16px;
  }

  .interview-article-txt {
    width: 100%;
  }

  #interview video {
    width: 100%;
  }

  #interview h4 {
    font-weight: bold;
    font-size: 16px;
    height: 40px;
    width: 45%;
    margin: 8px auto 8px 0;
  }

  .interview-name {
    font-size: 20px;
    /* margin-bottom: 4px; */
  }

  .interview-busyo {
    font-size: 16px;
    width: 100%;
  }

  #message article {
    width: 90%;
    margin: 0 auto;
    display: block;
    gap: 0;
  }

  #message img {
    width: 90%;
    margin: 0 auto 16px;
    display: block;
  }

  #message {
    padding-bottom: 24px;
  }


  #entry {
    padding-bottom: 24px;
  }

  #entry article {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  #entry article h3 {
    font-size: 16px;
    width: 90%;
    line-height: 1.5;
    margin: 0 0 16px 0;
  }

  #entry article img {
    width: 70%;
  }


  #entry .btn {
    margin: 24px auto 0;
    font-size: 20px;
    letter-spacing: 0;
  }

  .entry-sub-title {
    font-size: 24px;
    margin-top: 24px;
    letter-spacing: 3.5px;
  }

  #entry td {
    padding: 16px 8px;
  }

  #entry th {
    width: 25%;
    letter-spacing: 0;
  }

  table,
  th,
  td {
    font-size: 14px;
  }

  #entry th,
  #entry td {
    border: solid 1px var(--color-text-footer-sp);
  }

  footer {
    height: 80px;
  }

  .footer.pc-only {
    display: none;
  }

  .footer.sp-only {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-link-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer a,
  .footer p {
    margin: 4px;
  }

  /* fixBtn -------------------- */
  body {
    padding-bottom: 80px;
  }

  .fixBtn-sp {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;

    width: 100%;
    height: 54px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;

    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 8px;
    box-sizing: border-box;
  }

  .fixBtn-sp .btn {
    width: 336px;
    height: 54px;

    display: flex;
    justify-content: center;
    align-items: center;
    background: #D97A21;
  }

  .fixBtn-sp .btn:hover {
    background: #C96D17;
  }

}

/* ===== 追加：応募ボタン群（フォーム＋LINE併設） ===== */
.entry-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 64px auto 0;
}

#entry .entry-btn-group .btn {
  margin: 0;
  width: 336px;
  height: 54px;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.entry-btn-line {
  background: #06C755 !important;
}

.entry-btn-line:hover {
  background: #05B14A !important;
}

/* ===== 追加：会社概要セクション ===== */
#company {
  padding: 96px 0;
  background: var(--color-bg);
}

#company h2 {
  font-size: 32px;
  color: var(--color-text-footer);
  text-align: center;
  font-weight: bold;
  letter-spacing: 4.5px;
  margin-bottom: 48px;
}

.company-table {
  width: 736px;
  max-width: 90%;
  margin: 0 auto;
  border: .5px solid var(--color-text-footer);
  border-collapse: collapse;
  background: var(--color-white);
}

.company-table th,
.company-table td {
  border: solid .5px #d9d9d9;
  padding: 20px;
  font-size: 15px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}

.company-table th {
  background-color: #E8EDF0;
  color: var(--color-text-footer);
  font-weight: bold;
  letter-spacing: 3px;
  width: 28%;
  white-space: nowrap;
}

.company-table ul {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}

.company-table ul li {
  padding: 2px 0;
}

.company-table a {
  color: var(--color-text-footer);
  text-decoration: underline;
}

/* ===== 追加：プライバシーポリシーセクション ===== */
#privacy {
  padding: 96px 0;
  background: var(--color-white);
}

#privacy .container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

#privacy h2 {
  font-size: 32px;
  color: var(--color-text-footer);
  text-align: center;
  font-weight: bold;
  letter-spacing: 4.5px;
  margin-bottom: 48px;
}

#privacy h3 {
  font-size: 18px;
  color: var(--color-text-footer);
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}

#privacy p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-content);
  margin-bottom: 12px;
}

.privacy-lead {
  margin-bottom: 32px;
}

.privacy-list {
  margin: 12px 0 12px 1.5em;
  padding-left: 0;
  list-style: decimal;
}

.privacy-list li {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.privacy-contact {
  width: 100%;
  margin-top: 16px;
  border: .5px solid var(--color-text-footer);
  border-collapse: collapse;
  background: var(--color-bg);
}

.privacy-contact th,
.privacy-contact td {
  border: solid .5px #d9d9d9;
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.privacy-contact th {
  background-color: #E8EDF0;
  color: var(--color-text-footer);
  font-weight: bold;
  width: 100px;
  white-space: nowrap;
}

.privacy-date {
  margin-top: 32px;
  font-size: 13px;
  color: #666;
  text-align: right;
}

/* サブページ共通：トップに戻るリンク */
.subpage-back {
  margin-top: 48px;
  text-align: center;
  font-size: 15px;
}

.subpage-back a {
  color: var(--color-text-footer);
  text-decoration: underline;
}

.subpage-back a:hover {
  opacity: 0.7;
}

/* ===== 応募フォーム ===== */
#entry-form {
  padding: 96px 0;
  background: var(--color-bg);
}

#entry-form .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

#entry-form h2 {
  font-size: 32px;
  color: var(--color-text-footer);
  text-align: center;
  font-weight: bold;
  letter-spacing: 4.5px;
  margin-bottom: 32px;
}

.form-lead {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-content);
  line-height: 1.9;
  margin-bottom: 48px;
}

.recruit-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-text-footer);
  margin-bottom: 8px;
}

.required {
  display: inline-block;
  padding: 2px 8px;
  background: #d9534f;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 1px;
}

.optional {
  display: inline-block;
  padding: 2px 8px;
  background: #999;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  border-radius: 3px;
  margin-left: 6px;
  letter-spacing: 1px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="date"],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fafafa;
  box-sizing: border-box;
  font-family: inherit;
  line-height: 1.6;
}

.form-row input[type="text"]:focus,
.form-row input[type="tel"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="date"]:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-text-footer);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.radio-group-vertical {
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  display: inline-flex !important;
  align-items: center;
  font-size: 15px;
  font-weight: normal !important;
  color: var(--color-text-content) !important;
  margin: 0 !important;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
  transform: scale(1.2);
}

.form-privacy-note {
  margin: 32px 0 24px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
}

.form-privacy-note a {
  color: var(--color-text-footer);
  text-decoration: underline;
}

.form-submit {
  margin-top: 32px;
  text-align: center;
}

.form-submit-btn {
  width: 280px;
  height: 56px;
  font-size: 18px;
  letter-spacing: 0.1em;
  background: var(--color-btn);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  font-weight: bold;
  font-family: inherit;
}

.form-submit-btn:hover {
  background: var(--color-btn-hover);
  transform: translateY(-2px);
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== 送信完了ページ ===== */
#thanks {
  padding: 96px 0;
  background: var(--color-bg);
  min-height: 60vh;
}

#thanks .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

#thanks h2 {
  font-size: 32px;
  color: var(--color-text-footer);
  text-align: center;
  font-weight: bold;
  letter-spacing: 4.5px;
  margin-bottom: 48px;
}

.thanks-message {
  background: var(--color-white);
  padding: 48px 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.thanks-lead {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-footer);
  margin-bottom: 24px;
  line-height: 1.7;
}

.thanks-message p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--color-text-content);
}

.thanks-note {
  margin-top: 32px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.7 !important;
}

.thanks-tel {
  margin-top: 24px;
  font-size: 20px !important;
  font-weight: bold;
  color: var(--color-text-footer) !important;
}

.thanks-tel a {
  color: var(--color-text-footer);
  text-decoration: none;
}

/* SP対応 */
@media (max-width: 768px) {
  #entry-form,
  #thanks {
    padding: 64px 0;
  }
  #entry-form h2,
  #thanks h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .recruit-form {
    padding: 24px 20px;
  }
  .form-lead {
    font-size: 14px;
    text-align: left;
  }
  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
  .form-submit-btn {
    width: 100%;
    max-width: 280px;
  }
  .thanks-message {
    padding: 32px 20px;
  }
  .thanks-lead {
    font-size: 17px;
  }
}

/* SP対応 */
@media (max-width: 768px) {
  #company {
    padding: 64px 0;
  }
  #company h2,
  #privacy h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .company-table {
    width: 100%;
    max-width: 100%;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
  }
  .company-table th {
    width: 100%;
    white-space: normal;
  }
  #privacy {
    padding: 64px 0;
  }
  #privacy .container {
    padding: 0 16px;
  }
  #privacy h3 {
    font-size: 16px;
  }
  #privacy p,
  .privacy-list li {
    font-size: 14px;
  }
  .privacy-contact th {
    width: 80px;
    font-size: 13px;
  }
  .privacy-contact td {
    font-size: 13px;
  }
  .entry-btn-group {
    gap: 12px;
  }
  #entry .entry-btn-group .btn {
    width: 90%;
    max-width: 336px;
  }
}
