/*--------------------------------------------------------
固定ページ(メッセージ、ひとtoひとのMVV、会社概要、転職相談、プライバシーポリシー)専用CSS
----------------------------------------------------------*/
/* 共通 */
.sub-page-btn-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.sub-page-btn-container .default-btn {
  min-width: 220px;
}
.section-1 .inner {
  padding: 60px 0 0;
}

@media only screen and (max-width: 1080px) {
  .sub-page-btn-container {
    gap: 15px 30px;
    flex-wrap: wrap;
  }
  .section-1 .inner {
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .sub-page-btn-container {
    gap: 10px 10px;
  }
  .sub-page-btn-container .default-btn {
    min-width: 160px;
    padding: 12px 20px 12px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  .sub-page-btn-container .default-btn span.arrow-circle {
    width: 15px;
    height: 15px;
    right: 3px;
  }
  .sub-page-btn-container .default-btn span.arrow-circle::before {
    width: 6px;
  }
  .sub-page-btn-container .default-btn span.arrow-circle::after {
    width: 4px;
    height: 4px;
  }
  .section-1 .inner {
    padding: 20px 0 0;
  }
}

/* メッセージ */
.page-message .section-1 .inner {
  max-width: 1080px;
  padding-bottom: 0;
}
.message-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.message-container .message-text {
  width: 60%;
}
.message-type p {
  margin-bottom: 15px;
}
.message-container .message-text h3 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  border: none;
  padding: 0;
  margin-bottom: 20px;
}
.message-container .message-text h3::after {
  display: none;
}
.message-container .message-img {
  width: 40%;
  position: relative;
  padding: 0 0 30px 20px;
}
.message-container .message-img::before {
  content: "";
  width: 120px;
  height: 120px;
  background-image: url(../img/dots-3.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0px;
  bottom: 10px;
  z-index: 0;
}
.message-container .message-img img {
  width: 100%;
  border-radius: 30px;
}
.daihyo {
  width: fit-content;
  margin-left: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.daihyo p {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.daihyo img.yakushoku {
  width: 150px;
}
.daihyo img.daihyo-name {
  width: 240px;
}

@media only screen and (max-width: 1080px) {
  .page-message .section-1 .inner {
    max-width: 690px;
  }
  .message-container {
    margin-top: 30px;
    flex-direction: column;
  }
  .message-container .message-text {
    width: 100%;
  }
  .message-container .message-img {
    width: 100%;
  }
  .daihyo {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .message-container .message-text h3 {
    font-size: 1.2rem;
  }
  .message-container {
    margin-top: 20px;
  }
  .message-container .message-text p {
    font-size: 0.9rem;
  }
  .message-container .message-img::before {
    width: 80px;
    height: 80px;
  }
  .daihyo p {
    font-size: 1.3rem;
  }
  .daihyo img.yakushoku {
    width: 120px;
  }
  .daihyo img.daihyo-name {
    width: 180px;
  }
}
/* ひとtoひとのMVV */
.page-vision .section-1 .inner {
  padding-bottom: 0;
}
.page-vision .vision-content {
  margin-top: 40px;
  position: relative;
}
.page-vision .vision-content .cercle-blue {
  position: absolute;
  width: 20vw;
  height: 20vw;
  max-width: 360px;
  max-height: 360px;
  background-color: var(--color-blue);
  border-radius: 50%;
  right: -12vw;
  top: -14vw;
  z-index: -1;
}
.page-vision .vision-content .cercle-blue::before {
  content: "";
  width: 6vw;
  height: 6vw;
  background-image: url(../img/dots-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -1vw;
  bottom: -1vw;
  z-index: 0;
}
.page-vision .vision-content h3 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  color: var(--color-blue);
  margin-top: 0px;
}
.page-vision .vision-content h3::after {
  display: none;
}
.page-vision .vision-content p {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.page-vision .vision-content p.medium-text {
  font-size: 1.3rem;
  font-weight: 600;
}
.page-vision .vision-content p span.title-text {
  font-size: 1.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 1080px) {
  .page-vision .vision-content {
    margin-top: 30px;
  }
  .page-vision .vision-content h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .page-vision .vision-content {
    margin-top: 20px;
  }
  .page-vision .vision-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .page-vision .vision-content p {
    font-size: 0.9rem;
  }
  .page-vision .vision-content p.medium-text {
    font-size: 1rem;
  }
  .page-vision .vision-content p span.title-text {
    font-size: 1rem;
  }
}
/* 会社概要 */
.page-company .section-1 .inner {
  max-width: 1080px;
  padding-bottom: 0;
}
.company-table {
  margin-top: 40px;
}
.company-table table thead th {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}
.company-table table tbody tr {
  background-color: var(--color-white);
}
.company-table table tbody tr th,
.company-table table tbody tr td {
  border: none;
}
.company-table table tbody tr th {
  width: 30%;
  padding: 20px 10px 20px 50px;
}
.company-table table tbody tr td {
  width: 70%;
  padding: 20px 10px 20px 0;
  line-height: 2;
}
.company-table table tbody tr:nth-child(odd) {
  background: var(--color-lightgray);
}
.page-company .access-map {
  margin-top: 40px;
}
.page-company .access-map h3:after {
  border-bottom: 1px solid var(--color-blue);
}
.page-company .access-map iframe {
  width: 100%;
  max-height: 350px;
}
@media only screen and (max-width: 1080px) {

}
@media only screen and (max-width: 767px) {
  .company-table {
    margin-top: 20px;
  }
  .company-table table thead th {
    font-size: 1rem;
    padding: 15px;
    border-radius: 15px 15px 0 0;
  }
  .company-table table tbody tr th {
    width: 25%;
    padding: 15px 10px 15px 15px;
  }
  .company-table table tbody tr td {
    width: 75%;
    padding: 15px 10px 15px 0;
  }
  .page-company .access-map {
    margin-top: 20px;
  }
  .page-company .access-map iframe {
    max-height: 220px;
  }
  .page-company .access-map h3 {
    font-size: 1.1rem;
  }
}
/* 転職相談 */
.page-contact .section-1 .inner {
  padding-bottom: 0;
}
.contact-form {
  margin-top: 40px;
  background-color: var(--color-lightgray);
  border-radius: 30px;
  padding: 50px 0 20px;
}
.contact-form .contact-inner {
  width: 70%;
  margin: 0 auto;
}
.contact-form table tbody tr td .form-control {
  max-width: 100%;
}
.contact-form p {
  margin: 0;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  width: 100%;
  height: 55px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  line-height: 55px;
  transition: background-color 0.24s ease-in-out;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}
.inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding: 20px 5px 20px 20px;
  width: 30%;
  background: #fff;
  border: solid 1px #DDDDDD;
  border-right: none;
}
.inquiry td {
  font-size: 13px;
  border: solid 1px #DDDDDD;
  border-left: none;
  background: #fff;
  padding: 20px;
}
.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #DDDDDD;
}
.haveto {
  font-size: 12px;
  padding: 5px;
  background: var(--color-blue);
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px
}
.any {
  font-size: 12px;
  padding: 5px;
  background: var(--color-bluegray);
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px
}
.verticallist .wpcf7-list-item {
  display: block
}
#formbtn {
  display: block;
  padding: 25px 15px;
  width: 350px;
  background: var(--color-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  border-radius: 15px;
  margin: 35px auto 0;
  line-height: 1;
  border: 2px solid var(--color-blue);
}
#formbtn:hover {
  background: #fff;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}
th {
  font-weight: 400;
  text-transform: uppercase;
  padding: 13px
}
td {
  border-top: 1px solid #ededed;
  padding: 12px
}
input,
select,
textarea {
  border: 1px solid #dfdfdf;
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none
}
select.form-control,
textarea.form-control {
  background-color: #eff1f5;
  border: none;
  font-size: 0.9rem;
}
.contact-form table tbody tr td select.form-control {
  max-width: 350px;
  height: 50px;
  min-height: 50px;
  padding: 15px;
  box-sizing: border-box;
}
.husei {
  margin-top: 30px;
}
.husei .wpcf7-form-control-wrap {
  margin-top: 5px;
  display: inline-block;
}

@media only screen and (max-width: 1080px) {
  .contact-form .contact-inner {
    width: 90%;
  }
  .contact-form {
    border-radius: 20px;
    padding: 35px 0 20px;
  }
}
@media only screen and (max-width: 767px) {

  .contact-form {
    border-radius: 15px;
    padding: 25px 0 10px;
    margin-top: 20px;
  }
  .inquiry td,
  .inquiry th {
    display: block;
    width: 100%;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  table.inquiry {
    border-top: none;
  }
  .inquiry td {
    padding: 5px 15px 15px;
  }
  .inquiry th {
    padding: 15px 15px 0;
  }
  .inquiry tbody tr td select.form-control {
    font-size: 0.8rem;
  }
}
/* プライバシーポリシー */
.page-privacy .inner{
  width: 60%;
  padding: 60px 0 80px;
}
.privacy_content {
  margin-top: 40px;
}
.privacy_content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0;
  border: 0;
}
.privacy_content h3::after {
  display: none;
}
.privacy_content .desc {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1080px) {
  .page-privacy .inner{
    width: 80%;
    padding: 40px 0 60px;
  }
  .privacy_content {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .page-privacy .inner{
    width: 90%;
    padding: 30px 0 40px;
  }
  .privacy_content {
    margin-top: 20px;
  }
  .privacy_content h3 {
    font-size: 1.1rem;
  }
  .privacy_content .desc {
    font-size: 0.9rem;
  }
}