@charset "utf-8";

/* general
-------------------------------------------------------------- */
#sv h1 {
  top: calc(50% + 40px);
  max-width: 1520px;
  text-align: left;
  /*text-shadow: 0 0 16px var(--color-pink);*/
  text-shadow: 0 0 16px #ff7501;
}

#sv h1 .jp {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 2px;
}

#sv h1 small {
  display: inline-block;
  margin-top: 32px;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.7;
}

.footer-link {
  padding-bottom: 144px;
}

.footer-link .pagelink-recruit ul {
  margin-bottom: 80px;
}

@media (max-width: 1600px) {
  #sv h1 .jp {
    font-size: 2.9rem;
    line-height: 1.5;
  }

  #sv h1 small {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media (max-width: 1200px) {
  #sv h1 .jp {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  #sv h1 small {
    margin-top: 16px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

@media (max-width: 1000px) {
  #sv h1 .jp {
    font-size: 1.6rem;
  }

  #sv h1 small {
    margin-top: 8px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  #sv h1 {
    top: calc(50% + 10px);
  }

  #sv h1 .jp {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  #sv h1 small {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .footer-link {
    padding-bottom: 50px;
  }

  .footer-link ul {
    margin: 60px 0;
  }
}

/* message
-------------------------------------------------------------- */
#message {
  padding: 160px 0 80px;
  overflow: hidden;
}

#message figure {
  width: 48.5%;
}

.interview02 #message .other figure,
.interview03 #message .other figure,
.interview04 #message .other figure {
  width: 31.5%;
}

#message .txt-area {
  width: 48%;
}

.interview02 #message .other .txt-area,
.interview03 #message .other .txt-area,
.interview04 #message .other .txt-area {
  width: 65%;
}

#message h2 {
  padding-bottom: 30px;
  /*color: var(--color-pink);*/
      background: linear-gradient(90deg, #ff7501 0%, #ff0244 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.6;
}

#message p {
  padding-bottom: 16px;
  font-weight: 300;
  line-height: 1.7;
}

#message .sec02 {
  padding: 80px 0;
}

#message .sec02 figure {
  order: 1;
}

#message .profile {
  margin-top: 8px;
  max-width: 600px;
  width: 50%;
}

.interview01 #message .profile {
  margin-top: -40px;
}

#message .profile h3 {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-green);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 3px;
}

#message .profile p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  #message {
    padding: 80px 0 50px;
  }

  #message figure,
  .interview02 #message .other figure,
  .interview03 #message .other figure,
  .interview04 #message .other figure {
    width: 100%;
    order: 1;
  }

  #message .txt-area,
  .interview02 #message .other .txt-area,
  .interview03 #message .other .txt-area,
  .interview04 #message .other .txt-area {
    width: 100%;
  }

  #message h2 {
    padding-bottom: 20px;
    font-size: 2rem;
  }

  #message .sec02 {
    padding: 50px 0;
  }

  #message .profile {
    margin-top: 20px;
    width: 100%;
  }

  .interview01 #message .profile {
    margin-top: -20px;
  }

  #message .profile h3 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  #message .profile p {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}

/* tab
-------------------------------------------------------------- */
.tab-menu button {
  flex: 1;
  padding: 16px;
  border: none;
  background: url(../img/common/sv_bg_pc.jpg);
  opacity: .5;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-menu button span {
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 2px;
}

.tab-menu button.on span {
  /*color: var(--color-pink);*/
  background: linear-gradient(90deg, #ff7501 0%, #ff0244 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tab-menu button.off span {
  background: linear-gradient(90deg, #0A7E77, #006699);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tab-menu button:hover,
.tab-menu button.active {
  opacity: 1;
}

.tab-content {
  display: none;
  padding: 96px 0;
  margin-bottom: 96px;
  background: url(../img/common/sv_bg_pc.jpg);
}

.tab-content.active {
  display: block;
}

@media (max-width: 767px) {
  .tab-menu button {
    padding: 15px;
  }

  .tab-menu button span {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .tab-content {
    padding: 50px 0;
    margin-bottom: 60px;
  }
}


/* time
-------------------------------------------------------------- */
#time #tab1 .office {
  padding-bottom: 96px;
}

#time #tab1 .ttl {
  padding-bottom: 32px;
  color: var(--color-blue);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}

#time #tab1 .remort .ttl {
  color: var(--color-lightgreen);
}

#time #tab1 dl {
  border-top: 1px solid var(--color-gray);
}

#time #tab1 dt {
  align-items: center;
  padding: 32px 16px;
  width: 96px;
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-blue);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
}

#time #tab1 .remort dt {
  color: var(--color-lightgreen);
}

#time #tab1 dd {
  padding: 32px 16px;
  width: calc(100% - 96px);
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-gray);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
}

#time #tab2 .flex {
  padding: 32px 0;
  align-items: center;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

#time #tab2 .txt-area {
  width: 48%;
}

#time #tab2 .txt-area p {
  color: var(--color-gray);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
}

#time #tab2 figure {
  width: 46.8%;
}

@media (max-width: 767px) {
  #time #tab1 .office {
    padding-bottom: 60px;
  }

  #time #tab1 .ttl {
    padding-bottom: 20px;
    font-size: 2rem;
  }

  #time #tab1 dt {
    padding: 20px 10px;
    width: 80px;
    font-size: 2rem;
  }

  #time #tab1 dd {
    padding: 20px 0;
    width: calc(100% - 80px);
    font-size: 1.4rem;
  }

  #time #tab2 .flex {
    padding: 20px 0;
  }

  #time #tab2 .txt-area {
    padding-bottom: 20px;
    width: 100%;
  }

  #time #tab2 .txt-area p {
    font-size: 1.5rem;
  }

  #time #tab2 figure {
    width: 100%;
  }
}