@charset "UTF-8";
body {
  position: relative;
  padding-top: 4.2rem;
}

.sp {
  display: none;
}

/* ヘッダー */
.header {
  width: 100%;
  padding: 0.4rem 0 0.4rem 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
}
.header nav {
  display: flex;
  position: relative;
}
.header nav ul {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 7rem 0.8rem 0;
}
.header nav ul a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px; /* テキストと下線の間隔 */
  background-image: linear-gradient(#2b5983, #2b5983);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}
.header nav ul a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 2px; /* 下線の横幅を100%にする */
}
.header nav .nav-contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 5rem;
  position: absolute;
  right: 0;
  top: -0.4rem;
  background: #2b5983;
  z-index: 2;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.header nav .nav-contact a span {
  font-size: 0.7rem;
}
.header nav .nav-contact a:hover {
  background: #03406d;
}

.hm_wrap {
  display: none;
}

/* フッター */
footer .footer {
  padding: 3rem 0 2rem;
}
footer .footer-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .footer-inner--info {
  width: 33%;
  display: flex;
  gap: 1.6rem;
}
footer .footer-inner--info .logo {
  width: 30%;
}
footer .footer-inner--info .text {
  width: calc(70% - 1.6rem);
}
footer .footer-inner--info .text p {
  font-size: 0.7vw;
  padding-top: 0.3rem;
  line-height: 1.4;
}
footer .footer-inner--info .text p a {
  color: #000;
  text-decoration: none;
}
footer .footer-inner--nav {
  display: flex;
  gap: 3vw;
  font-size: 0.88vw;
}
footer .footer-inner--nav ul li {
  padding: 0.3vw 0;
}
footer .footer-inner--nav ul li a {
  text-decoration: none;
  color: #2b5983;
}
footer .footer-inner--nav ul li a:hover {
  text-decoration: underline;
}
footer .footer-inner--nav ul li.privacy {
  padding-top: calc(1.6vw + 0.6rem);
}
footer .footer .copyright {
  padding: 1rem 4% 0;
  font-size: 0.8vw;
}

/*　----- トップページ ----- */
.top .slick-slider {
  position: relative;
}
.top .slick-slider div {
  position: relative;
}
.top .slick-slider div .main-catch {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 4%;
}
.top-news {
  padding: 3rem 0 12rem;
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.top-news::after {
  content: "";
  width: 100%;
  max-width: 1440px;
  padding-top: 7.875%;
  background: url(../img/top/precision-press.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.top-news h2 {
  width: 12%;
  font-weight: 700;
  font-size: 1.6rem;
  padding-right: 2rem;
  border-right: solid 1px #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-news h2 span {
  font-size: 0.8rem;
  font-weight: 500;
}
.top-news--list {
  width: 88%;
  padding-left: 2rem;
}
.top-news--list ul li a {
  display: block;
  padding: 0.4rem;
  text-decoration: none;
  transition: 0.3s;
  color: #000;
}
.top-news--list ul li a:hover {
  background: #f5f5f5;
}
.top-news--list ul li a .date {
  display: inline-block;
  font-size: 0.9rem;
  margin-right: 1rem;
}
.top-news--list p {
  padding-top: 0.3rem;
  text-align: right;
}
.top-news--list p a {
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: #2b5983;
}
.top-news--list p a:hover {
  text-decoration: underline;
}
.top-business {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.top-business .col {
  width: 50%;
  padding-top: 21.08%;
  position: relative;
}
.top-business .col a {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.top-business .col a h2 {
  width: 64%;
  height: 72%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top-business .col a h2 span {
  font-size: 0.8rem;
  font-weight: 500;
}
.top-business .col a h2::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #2b5983;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 2px;
  bottom: 6px;
  transition: 0.3s;
}
.top-business .col a:hover h2 {
  box-shadow: 0px 0px 18px 0px rgba(255, 255, 255, 0.8);
}
.top-business .col a:hover h2::after {
  border-bottom: 12px solid #fff;
  right: -3px;
  bottom: 2px;
}
.top-business .col.business {
  background: url(../img/top/business.jpg);
  background-size: cover;
}
.top-business .col.products {
  background: url(../img/top/products.jpg);
  background-size: cover;
}
.top-strength {
  padding-top: 6rem;
  padding-bottom: 20rem;
  position: relative;
  min-height: 40%;
}
.top-strength::before {
  content: "";
  width: 100%;
  height: 70%;
  background: url(../img/top/strength.jpg);
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  bottom: 0;
}
.top-strength--inner {
  width: 92%;
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
}
.top-strength--inner h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.top-strength--inner h2 span {
  display: block;
  font-size: 0.96rem;
  font-weight: 500;
  padding-top: 0.3rem;
}
.top-strength--inner---bn {
  padding-top: 2rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.top-strength--inner---bn .col {
  width: 32%;
}
.top-strength--inner---bn .col a {
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
}
.top-strength--inner---bn .col a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #2b5983;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 2px;
  bottom: 6px;
  transition: 0.3s;
}
.top-strength--inner---bn .col a:hover {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.8);
}
.top-strength--inner---bn .col a:hover::after {
  right: -3px;
  bottom: 2px;
}
.top-strength--inner---bn .col a h3 {
  height: 8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
}
.top-strength--inner---bn .col a h3 span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}
.top-about {
  background: #2b5983;
  padding-bottom: 6rem;
}
.top-about--inner {
  width: 92%;
  max-width: 1280px;
  position: relative;
  margin: -12rem auto 0;
}
.top-about--inner h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.top-about--inner h2 span {
  display: block;
  font-size: 0.96rem;
  font-weight: 500;
  padding-top: 0.3rem;
}
.top-about--inner---bn01 {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.top-about--inner---bn01 .col {
  width: 49%;
}
.top-about--inner---bn01 .col a {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}
.top-about--inner---bn01 .col a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #2b5983;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 2px;
  bottom: 6px;
  transition: 0.3s;
}
.top-about--inner---bn01 .col a:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.6);
}
.top-about--inner---bn01 .col a:hover::after {
  right: -3px;
  bottom: 2px;
}
.top-about--inner---bn01 .col a .image {
  width: 50%;
}
.top-about--inner---bn01 .col a h3 {
  width: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
.top-about--inner---bn01 .col a h3 span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}
.top-about--inner---bn02 {
  padding-top: 3rem;
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
}
.top-about--inner---bn02 .col {
  width: 100%;
}
.top-about--inner---bn02 .col a {
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}
.top-about--inner---bn02 .col a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #2b5983;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 2px;
  bottom: 6px;
  transition: 0.3s;
}
.top-about--inner---bn02 .col a:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.6);
}
.top-about--inner---bn02 .col a:hover::after {
  right: -3px;
  bottom: 2px;
}
.top-about--inner---bn02 .col a .image {
  width: 50%;
}
.top-about--inner---bn02 .col a h3 {
  width: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
}
.top-about--inner---bn02 .col a h3 span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
}

/* 下層のページ */
.main {
  background: #f2f2f2;
  position: relative;
  padding-bottom: 4rem;
}
.main::after {
  content: "";
  width: 100%;
  max-width: 1600px;
  padding-top: 7.833%;
  background: url(../img/main.png);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.main-content {
  position: relative;
  width: 92%;
  max-width: 1200px;
  background: #fff;
  margin: -16vw auto 0;
  padding-bottom: 12vw;
}
.main-content--block {
  width: 90%;
  margin: 0 auto;
  padding-top: 6rem;
}
.main-content--block h2 {
  text-align: center;
  font-size: 1.8rem;
}
.main-content--block h3 {
  color: #2b5983;
  font-size: 1.6rem;
  line-height: 1.4;
}

/* カバー */
.cover {
  position: relative;
}
.cover::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.cover h1 {
  width: 100%;
  position: absolute;
  top: 6vw;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.cover h1 span {
  display: block;
  padding-top: 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.cover h2 {
  width: 92%;
  max-width: 1200px;
  position: absolute;
  bottom: 20vw;
  left: 6%;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

/* ページ内のナビゲーション */
.page-nav {
  width: 100%;
  display: flex;
  gap: 2px;
}
.page-nav .col {
  width: calc(100% - 1.3333333333px);
}
.page-nav .col a {
  display: block;
  text-align: center;
  padding: 0.6rem;
  background: #666;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.page-nav .col a:hover {
  background: #2b5983;
}
.page-nav .col a.current {
  background: #2b5983;
}

/* 会社案内 */
.company .greeting {
  display: flex;
  flex-direction: row-reverse;
  gap: 6%;
  padding-top: 4rem;
}
.company .greeting .image {
  width: 24%;
}
.company .greeting .image .name {
  padding-top: 0.6rem;
  width: 56%;
  margin: 0 0 0 auto;
}
.company .greeting .text {
  width: 70%;
}
.company .greeting .text p {
  padding-top: 2rem;
}
.company .philosophy h3 {
  padding-top: 3rem;
  text-align: center;
}
.company .philosophy h3 span {
  display: block;
}
.company .philosophy p {
  padding-top: 3rem;
}
.company .philosophy ol {
  font-size: 1.4rem;
  padding-top: 3rem;
  padding-left: 1.6rem;
  color: #2b5983;
  list-style: decimal;
}
.company .philosophy ol li {
  padding-bottom: 0.6rem;
  line-height: 1.6;
}
.company .quality {
  text-align: center;
}
.company .quality h3 {
  padding-top: 2.6rem;
}
.company .quality p {
  padding-top: 0.6rem;
}
.company .environment {
  padding-top: 1rem;
}
.company .environment-list {
  padding-top: 2rem;
  display: flex;
  gap: 3%;
}
.company .environment-list h3 {
  font-size: 1rem;
  color: #000;
  width: 32%;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
}
.company .environment-list p {
  width: 65%;
  display: flex;
  align-items: center;
}
.company .compliance p {
  padding-top: 3rem;
}
.company .compliance p span {
  display: block;
  text-align: center;
}
.company .compliance-table {
  padding-top: 3rem;
}
.company .compliance-table table {
  border-top: solid 1px #2b5983;
}
.company .compliance-table table th {
  white-space: nowrap;
  border-bottom: solid 1px #2b5983;
  color: #2b5983;
  text-align: right;
  padding: 0.8rem 1.6rem;
  vertical-align: middle;
}
.company .compliance-table table td {
  border-bottom: solid 1px #2b5983;
  padding: 0.8rem 1.6rem;
  vertical-align: middle;
}
.company .profile {
  padding-top: 3rem;
}
.company .profile table {
  border-top: solid 1px #0f0f0f;
}
.company .profile table th {
  white-space: nowrap;
  border-bottom: solid 1px #0f0f0f;
  background: #f2f2f2;
  vertical-align: top;
  padding: 0.6rem 1.6rem;
  width: 22%;
}
.company .profile table td {
  border-bottom: solid 1px #0f0f0f;
  vertical-align: top;
  padding: 0.6rem 1.6rem;
}
.company .access {
  padding-top: 3rem;
}
.company .access iframe {
  width: 100%;
  height: 480px;
}
.company .history {
  padding-top: 3rem;
}
.company .history table {
  border-top: solid 1px #161515;
}
.company .history table th {
  border-bottom: solid 1px #161515;
  vertical-align: top;
  width: 22%;
  padding: 1rem 2rem;
  white-space: nowrap;
}
.company .history table td {
  border-bottom: solid 1px #161515;
  vertical-align: top;
  padding: 1rem 2rem;
}

/* 事業案内 */
.business h3 {
  color: #2b5983;
  font-size: 1.4rem;
  font-weight: 600;
}
.business h3.facility {
  text-align: center;
  padding-top: 6rem;
}
.business h4 {
  color: #2b5983;
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 3rem;
}
.business p {
  padding-top: 0.6rem;
}
.business-box {
  width: 90%;
  margin: 0 auto;
  padding-top: 6rem;
  display: flex;
  gap: 6%;
}
.business-box.facility {
  padding-top: 4rem 0 2rem;
}
.business-box.reverse {
  flex-direction: row-reverse;
}
.business-box .image {
  width: 47%;
}
.business-box .text {
  width: 47%;
}
.business-box .text .table {
  padding-bottom: 1rem;
}
.business-box .text .table table {
  width: 100%;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 0.96rem;
}
.business-box .text .table table th {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  background: #d4dee6;
  text-align: center;
  padding: 0.6rem;
}
.business-box .text .table table td {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  text-align: center;
  padding: 0.6rem;
}
.business-box02 {
  width: 90%;
  margin: 0 auto;
  padding-top: 6rem;
}
.business-3cols {
  width: 90%;
  margin: 0 auto;
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.business-3cols .col {
  width: 31.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.96rem;
}
.business-3cols .col table {
  width: 100%;
  height: 89%;
  border-left: solid 1px #ccc;
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
}
.business-3cols .col table th {
  white-space: nowrap;
  padding: 0.8rem 1rem;
  border-bottom: solid 1px #ccc;
  background: #f2f2f2;
}
.business-3cols .col table td {
  padding: 0.8rem 1rem;
  border-bottom: solid 1px #ccc;
}
.business-3cols .col table td span {
  display: inline-block;
}
.business .facility-table {
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
}
.business .facility-table table {
  width: 100%;
  border-left: solid 1px #ccc;
  border-top: solid 1px #ccc;
  font-size: 0.96rem;
  line-height: 1.4;
}
.business .facility-table table th {
  white-space: nowrap;
  padding: 0.8rem 1rem;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  background: #d4dee6;
}
.business .facility-table table th.center {
  text-align: center;
}
.business .facility-table table td {
  padding: 0.8rem 1rem;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
}
.business .facility-table table td.center {
  text-align: center;
}
.business .facility-table table td.right {
  text-align: right;
}
.business .facility-table table td span {
  display: inline-block;
}

/* よくあるご質問 */
.faq-box {
  padding-top: 6rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.faq-box.reverse {
  flex-direction: row-reverse;
}
.faq-box .image {
  width: 22%;
}
.faq-box .text {
  width: 78%;
}
.faq-box .text h3 {
  color: #2b5983;
  font-size: 1.4rem;
  border-bottom: solid 1px #2b5983;
  padding: 0 2rem 0.4rem;
  display: flex;
  gap: 0.8rem;
}
.faq-box .text h3 span {
  font-weight: 700;
  font-size: 1.8rem;
  display: inline-block;
}
.faq-box .text .answer {
  padding: 1.6rem 4% 0 4rem;
  display: flex;
  gap: 3%;
}
.faq-box .text .answer span {
  font-size: 1.6rem;
  font-weight: 700;
}
.faq-box .text .answer .faq-img {
  display: block;
  margin: 3rem auto;
  width: 90%;
}

/* 製品情報 */
.products-inner {
  width: 90%;
  margin: 0 auto;
  padding-top: 4rem;
}
.products-inner h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
.products-inner h2 span {
  display: inline-block;
}
.products-inner--box {
  padding-top: 3rem;
}
.products-inner--box h3 {
  background: #2b5983;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.4rem;
}
.products-inner--box---cols2 {
  display: flex;
  gap: 4%;
  padding: 3rem 2%;
}
.products-inner--box---cols2 .image {
  width: 64%;
}
.products-inner--box---cols3 {
  display: flex;
  gap: 3%;
  padding: 0 0 2rem;
}
.products-inner--box---cols3 .col {
  width: 31.3333333333%;
  text-align: center;
  padding-bottom: 2rem;
}
.products-inner--box---cols3 .col img {
  display: block;
  margin: 2rem 0 0.8rem;
}
.products-inner--images .image01 {
  width: 48%;
  margin: 0 auto;
}
.products-inner--images .image02 {
  display: flex;
  gap: 12%;
  width: 90%;
  margin: 0 auto;
  padding-top: 3rem;
}
.products-inner--images .image02 .left,
.products-inner--images .image02 .right {
  text-align: center;
}
.products-inner--images .image02 .left img,
.products-inner--images .image02 .right img {
  display: block;
  margin-bottom: 1.2rem;
}
.products-inner--bottom {
  padding-top: 4rem;
  color: #2b5983;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
}
.products-inner--bottom span {
  display: inline-block;
}

/* 千葉精密プレスの強み */
.strength h2 {
  padding: 6rem 3% 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.strength h2 span {
  display: inline-block;
}
.strength-inner {
  width: 90%;
  margin: 0 auto;
}
.strength-inner h3 {
  font-size: 1.4rem;
  padding-top: 3rem;
}
.strength-inner h3 span {
  display: inline-block;
}
.strength-inner p {
  padding-top: 1rem;
}
.strength-inner .strength01-image {
  display: flex;
  gap: 2%;
  padding-top: 4rem;
}
.strength-inner .strength01-image .col01 {
  width: 39%;
}
.strength-inner .strength01-image .col02 {
  width: 59%;
}
.strength-inner .strength02-image {
  display: flex;
  gap: 2%;
  align-items: center;
  padding-top: 2rem;
}
.strength-inner--section {
  padding-top: 4rem;
}
.strength-inner--section h3 {
  text-align: center;
}
.strength-inner--section .table {
  padding-top: 3rem;
}
.strength-inner--section .table table {
  width: 100%;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 0.96rem;
}
.strength-inner--section .table table th {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  background: #d4dee6;
  text-align: center;
  padding: 0.5rem;
}
.strength-inner--section .table table td {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.3;
}
.strength-inner--section .table table td span {
  display: inline-block;
}
.strength-inner .strength03 {
  display: flex;
  gap: 4%;
  flex-direction: row-reverse;
  padding-top: 3rem;
}
.strength-inner .strength03 .image {
  width: 46%;
}
.strength-inner .strength03 .text {
  width: 50%;
}
.strength-inner .strength03 .text h3 {
  padding-top: 0;
}
.strength-inner .strength03-image {
  display: flex;
  gap: 2%;
  align-items: center;
  padding-top: 4rem;
}

/* 採用情報 */
.recruit-content {
  padding-top: 6rem;
  width: 92%;
  margin: 0 auto;
}
.recruit-content h3 {
  text-align: center;
  color: #2b5983;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 2rem;
}
.recruit-content h3 span {
  display: inline-block;
  margin-top: 0.6rem;
  padding-top: 0.4rem;
  font-size: 0.96rem;
  border-top: solid 1px #2b5983;
  width: 320px;
}
.recruit-content h3::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 16px solid #2b5983;
  border-bottom: 0;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-left: -8px;
}
.recruit-content P {
  padding-top: 1rem;
  text-align: center;
}
.recruit-content P span {
  display: inline-block;
}
.recruit-content--point {
  width: 92%;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3%;
}
.recruit-content--point .col {
  width: 48.5%;
  background: #2b5983;
  padding: 2rem;
  color: #fff;
  border-radius: 12px;
}
.recruit-content--point .col h4 {
  text-align: center;
}
.recruit-content--point .col p {
  padding-top: 0.6rem;
  text-align: left;
}
.recruit-content--features {
  width: 100%;
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.recruit-content--features h4 {
  font-size: 1.6rem;
  width: 8rem;
  height: 8rem;
  border: solid 2px #2b5983;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b5983;
}
.recruit-content--features p {
  padding-top: 0;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #2b5983;
}
.recruit-content--features p span {
  display: inline-block;
}
.recruit-content--interview {
  padding-top: 3rem;
  max-width: 960px;
  margin: 0 auto;
}
.recruit-content--interview a {
  display: block;
  position: relative;
  transition: 0.3s;
}
.recruit-content--interview a:hover {
  opacity: 0.8;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
}
.recruit-content--interview a .inner {
  width: 30%;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.6rem;
}
.recruit-content--interview a .inner::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #2b5983;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 0;
  bottom: 0.4rem;
}
.recruit-content--interview a .inner h4 {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: solid 1px #2b5983;
  padding-bottom: 0.8rem;
}
.recruit-content--interview a .inner h4 span {
  font-size: 4.2rem;
  font-weight: 700;
  color: #2b5983;
}
.recruit-content--interview a .inner h4 p {
  padding-top: 0.3rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000;
}
.recruit-content--interview a .inner p {
  text-align: left;
  color: #2b5983;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}
.recruit-content--interview a .inner p span {
  display: block;
}
.recruit-content--interview a .inner.right {
  top: 0;
  right: 8%;
}
.recruit-content--interview a .inner.left {
  top: 0;
  left: 8%;
}
.recruit-content--flow {
  padding-top: 3rem;
  max-width: 640px;
  margin: 0 auto;
}
.recruit-content--flow h4 {
  text-align: center;
  padding-bottom: 1rem;
  color: #2b5983;
}
.recruit-content--flow .entry {
  padding-top: 3rem;
}
.recruit-content--flow .entry a {
  display: block;
  position: relative;
  padding: 1.6rem;
  text-align: center;
  background: #2b5983;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.recruit-content--flow .entry a:hover {
  background: #03406d;
}
.recruit-content--flow .entry a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #fff;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 0;
  bottom: 0.4rem;
}
.recruit-photo {
  padding-top: 4rem;
}

.requirements {
  padding: 3rem 4%;
}
.requirements h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.requirements-table {
  padding-top: 2rem;
}
.requirements-table table {
  width: 100%;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 0.96rem;
}
.requirements-table table th {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  background: #d4dee6;
  padding: 0.8rem 1rem;
  width: 28%;
}
.requirements-table table td {
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  padding: 0.8rem 1rem;
}
.requirements-table table td span {
  display: inline-block;
}

/* 社員インタビュー */
.interview .main-content {
  margin: -7vw auto 0;
}
.interview .main-content h1 {
  padding: 1.6rem;
  display: flex;
  gap: 4%;
}
.interview .main-content h1 .number {
  color: #2b5983;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.interview .main-content h1 .number span {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
}
.interview .main-content h1 .title span {
  font-size: 0.96rem;
}
.interview .main-content h1 .title p {
  padding-top: 1rem;
  font-weight: 600;
  color: #2b5983;
  font-size: 1.4rem;
}
.interview-box {
  padding-top: 6rem;
  display: flex;
}
.interview-box.reverse {
  flex-direction: row-reverse;
}
.interview-box .image {
  width: 50%;
}
.interview-box .image-small {
  padding-top: 1rem;
  width: 56%;
}
.interview-box .text {
  width: 50%;
  padding: 0 4%;
}
.interview-box .text h2 {
  font-size: 1.3rem;
  position: relative;
  padding-left: 3rem;
}
.interview-box .text h2::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 1px;
  background: #000;
  top: 1rem;
  left: 0;
}
.interview-box .text p {
  padding: 0.8rem 0 3rem;
  line-height: 1.6;
}
.interview .slide {
  padding-top: 6rem;
}
.interview .slide .slick-slider div {
  padding: 0 16px;
}
.interview .slide .slick-slider div a {
  transition: 0.3s;
}
.interview .slide .slick-slider div a:hover {
  opacity: 0.7;
}
.interview-image {
  width: 92%;
  margin: 0 auto;
  padding-top: 4rem;
  display: flex;
  gap: 2%;
}

/* プライバシーポリシー */
.policy h3 {
  padding-top: 2rem;
}
.policy p {
  padding-top: 0.8rem;
}
.policy ul {
  padding-left: 1.4rem;
  list-style: disc;
}

/* お知らせ */
.news {
  padding: 4rem 4% 0;
}
.news h2 {
  font-size: 1.6rem;
  border-bottom: dotted 1px #ccc;
  padding-bottom: 0.4rem;
}
.news .date {
  padding-top: 0.4rem;
  font-size: 0.96rem;
  color: #666;
}
.news-content {
  padding-top: 2rem;
}
.news-content p {
  padding-top: 1rem;
}
.news-back {
  padding-top: 2rem;
  text-align: right;
}
.news-back a {
  text-decoration: none;
}
.news-back a:hover {
  text-decoration: underline;
}
.news-list {
  border-top: dotted 1px #ccc;
}
.news-list li {
  border-bottom: dotted 1px #ccc;
}
.news-list li a {
  display: block;
  text-decoration: none;
  padding: 0.6rem;
  transition: 0.3s;
}
.news-list li a:hover {
  background: #f5f5f5;
}

.pagenav {
  padding-top: 2em;
}

.pagenav .page-numbers {
  width: 94%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pagenav .page-numbers li {
  display: inline-block;
  padding: 0 0.1em;
  width: 2.2em;
}

.pagenav .page-numbers li a {
  display: block;
  width: 2em;
  line-height: 2em;
  text-align: center;
  background: #666;
  border: solid 1px #666;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  padding: 0;
}

.pagenav .page-numbers li a:hover {
  background: #fff;
  color: #666;
}

.pagenav .page-numbers li span.current {
  display: block;
  width: 2em;
  line-height: 2em;
  text-align: center;
  background: #999;
  border: solid 1px #fff;
  border-radius: 4px;
  color: #fff;
}

.pagenav .page-numbers li a.prev,
.pagenav .page-numbers li a.next {
  background: none;
  border: none;
  color: #666;
  width: 3em;
}

.pagenav .page-numbers li a:hover {
  background: none;
}

/* お問い合わせ */
.contact {
  padding: 3rem 4% 0;
}
.contact p {
  padding-bottom: 1.6rem;
}

/* コンタクトフォーム */
table.CF7_table {
  width: 100%;
  margin: 0 auto;
  border: 3px solid #e5e5e5;
}

table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}
table.CF7_table tr th,
table.CF7_table tr td {
  padding: 1.2rem 0.8rem;
  font-size: 1rem;
}
table.CF7_table tr th input,
table.CF7_table tr td input {
  padding: 0.6rem;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.CF7_table input,
.CF7_table textarea {
  border: 1px solid #d8d8d8;
}

.CF7_table ::-moz-placeholder {
  color: #797979;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #ebedf5; /*ブルーグレー*/
  }
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
  table.CF7_table {
    width: 100%;
    margin-top: 1.6rem;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #ebedf5;
  }
  table.CF7_table tr th {
    padding: 0.3rem 0.4rem;
  }
  table.CF7_table tr td {
    padding: 0.8rem 0.4rem;
  }
  table.CF7_table tr td input,
  table.CF7_table tr td textarea {
    width: 100%;
  }
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #f79034; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  border-radius: 6px;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}/*# sourceMappingURL=pc-style.css.map */