@charset "UTF-8";
:root {
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
}

* {
  font-family: var(--sans);
}

body.top .secInner {
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}
body.top .secTtl {
  text-align: center;
}
body.top .secTtl h3 {
  font-size: 5.4rem;
  font-weight: 600;
  color: #0071BA;
}
body.top .secTtl .subttl {
  font-size: 2.4rem;
}
body.top .secTtl.white * {
  color: #fff;
}
body.top .linkbtn {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #0071BA;
  border: 1px solid #0071BA;
  display: table;
  padding: 15px 45px;
  margin: 0 auto;
  border-radius: 9999px;
}
body.top .linkbtn.sm {
  padding: 5px 20px;
}
body.top .linkbtn:hover {
  opacity: 1;
  color: #0071BA;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body.top .secTtl h3 {
    font-size: 3.6rem;
  }
  body.top .secTtl .subttl {
    font-size: 2rem;
  }
}
body.top .secMv {
  height: 80vh;
  background: url(../img/top/mv.jpg) center/cover no-repeat;
  position: relative;
}
body.top .secMv h2 {
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  body.top .secMv {
    height: 40vh;
  }
  body.top .secMv h2 {
    font-size: 2.4rem;
  }
}
body.top .secNews {
  padding-top: 80px;
  padding-bottom: 110px;
  position: relative;
}
body.top .secNews .fig {
  width: 900px;
  height: 900px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  aspect-ratio: 1/1;
  animation: parallax linear;
  animation-timeline: scroll();
}
@keyframes parallax {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(2500px);
  }
}
body.top .secNews .secTtl {
  margin-bottom: 70px;
}
body.top .secNews .newsWrap {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 60px;
  padding: 0 40px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
body.top .secNews .newsWrap .post {
  font-size: 2rem;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.top .secNews .newsWrap .post:nth-of-type(n+2) {
  border-top: 1px dashed #000;
}
@media screen and (max-width: 768px) {
  body.top .secNews .fig {
    width: 300px;
    height: 300px;
  }
  @keyframes parallax {
    from {
      transform: translateY(0px);
    }
    to {
      transform: translateY(3000px);
    }
  }
  body.top .secNews .secTtl {
    margin-bottom: 40px;
  }
  body.top .secNews .newsWrap {
    margin: 0 auto 40px;
  }
  body.top .secNews .newsWrap .post {
    font-size: 1.6rem;
    padding: 15px 0;
  }
}
body.top .secSDGs {
  padding-bottom: 110px;
}
body.top .secSDGs .blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.top .secSDGs .blk .img {
  width: 60%;
}
body.top .secSDGs .blk .txt {
  width: 40%;
}
body.top .secSDGs .blk .txt h4, body.top .secSDGs .blk .txt p {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
body.top .secSDGs .blk .txt h4 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}
body.top .secSDGs .blk .txt p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  body.top .secSDGs .blk {
    flex-direction: column;
    justify-content: center;
  }
  body.top .secSDGs .blk .img {
    width: 90%;
    margin-bottom: 30px;
  }
  body.top .secSDGs .blk .txt {
    width: 90%;
  }
  body.top .secSDGs .blk .txt h4 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  body.top .secSDGs .blk .txt p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
body.top .secItem .blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.top .secItem .blk:nth-of-type(even) {
  flex-direction: row-reverse;
}
body.top .secItem .blk .img {
  width: 50%;
}
body.top .secItem .blk .img img {
  width: 100%;
}
body.top .secItem .blk .txt {
  width: 50%;
}
body.top .secItem .blk .txt h4, body.top .secItem .blk .txt p {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
body.top .secItem .blk .txt h4 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}
body.top .secItem .blk .txt p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  body.top .secItem .blk {
    margin-bottom: 90px;
    flex-direction: column;
    justify-content: center;
  }
  body.top .secItem .blk:nth-of-type(even) {
    flex-direction: column;
  }
  body.top .secItem .blk .img {
    width: 90%;
    margin-bottom: 30px;
  }
  body.top .secItem .blk .txt {
    width: 90%;
  }
  body.top .secItem .blk .txt h4 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  body.top .secItem .blk .txt p {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }
}
body.top .secList {
  padding: 160px 0 120px;
  background: url(../img/top/list-bg.jpg) center/cover no-repeat;
}
body.top .secList .txt {
  display: table;
  margin: 0 auto;
}
body.top .secList .txt h3 {
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  body.top .secList {
    padding: 100px 0 90px;
    margin-bottom: 90px;
  }
  body.top .secList .txt h3 {
    font-size: 2.8rem;
  }
}
body.top .secPhil .blk {
  display: flex;
  justify-content: space-between;
}
body.top .secPhil .blk .img {
  width: 50%;
}
body.top .secPhil .blk .img img {
  width: 100%;
}
body.top .secPhil .blk .txt {
  width: 50%;
  background: #F5911E;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.top .secPhil .blk .txt h4, body.top .secPhil .blk .txt p {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
body.top .secPhil .blk .txt h4 {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 40px;
}
body.top .secPhil .blk .txt p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  body.top .secPhil .blk {
    flex-direction: column;
  }
  body.top .secPhil .blk .img {
    width: 100%;
  }
  body.top .secPhil .blk .txt {
    width: 100%;
    padding: 20px;
  }
  body.top .secPhil .blk .txt h4 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  body.top .secPhil .blk .txt p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
body.top .secRecruit {
  padding-top: 70px;
}
body.top .secRecruit .secTtl {
  margin-bottom: 60px;
}
body.top .secRecruit .blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.top .secRecruit .blk .img {
  width: 60%;
}
body.top .secRecruit .blk .txt {
  width: 40%;
}
body.top .secRecruit .blk .txt p {
  font-size: 1.8rem;
  line-height: 2;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  body.top .secRecruit {
    padding-bottom: 90px;
  }
  body.top .secRecruit .secTtl {
    margin-bottom: 40px;
  }
  body.top .secRecruit .blk {
    flex-direction: column;
    justify-content: center;
  }
  body.top .secRecruit .blk .img {
    width: 90%;
    margin-bottom: 30px;
  }
  body.top .secRecruit .blk .txt {
    width: 90%;
  }
  body.top .secRecruit .blk .txt p {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

body.page .secMv {
  padding: 180px 0 160px;
}
body.page .secMv h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  display: table;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.page .secMv {
    padding: 80px 0;
  }
  body.page .secMv h1 {
    font-size: 3.2rem;
  }
}

body.company h2 {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  color: #0071BA;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  body.company h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}
body.company .secInfo {
  padding-top: 60px;
  padding-bottom: 150px;
}
body.company .secInfo table {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
body.company .secInfo table th, body.company .secInfo table td {
  font-size: 2.2rem;
  font-weight: 400;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
body.company .secInfo table th {
  width: 240px;
  padding-left: 40px;
}
body.company .secInfo table td {
  width: calc(100% - 240px);
}
body.company .secInfo .table1 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  body.company .secInfo {
    padding-bottom: 90px;
  }
  body.company .secInfo table tr {
    display: flex;
    flex-direction: column;
  }
  body.company .secInfo table th, body.company .secInfo table td {
    font-size: 2rem;
    padding: 10px 0;
  }
  body.company .secInfo table th {
    font-weight: 600;
    width: 100%;
    padding-left: 0;
  }
  body.company .secInfo table td {
    width: 100%;
    border-bottom: none;
    margin-bottom: 20px;
  }
}
body.company .secAccess {
  background-color: #ECECEC;
  padding-top: 80px;
  padding-bottom: 80px;
}
body.company .secAccess .info {
  max-width: 960px;
  width: 100%;
  padding: 20px 40px 40px;
  margin: 0 auto;
  background-color: #fff;
}
body.company .secAccess .info p {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
body.company .secAccess .info .map {
  width: 100%;
}
body.company .secAccess .info .map iframe {
  width: 100%;
  height: 540px;
}
@media screen and (max-width: 768px) {
  body.company .secAccess {
    padding-top: 40px;
  }
  body.company .secAccess .info {
    padding: 10px 20px 20px;
  }
  body.company .secAccess .info p {
    font-size: 1.8rem;
  }
  body.company .secAccess .info .map iframe {
    height: 360px;
  }
}

body.product .secRead {
  background: url(../img/product/read-bg.jpg) center/cover no-repeat;
}
body.product .secRead .secInner {
  padding-top: 220px;
  padding-bottom: 220px;
}
body.product .secRead h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  display: table;
  margin: 0 auto 20px;
}
body.product .secRead p {
  font-size: 1.8rem;
  color: #fff;
  display: table;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.product .secRead .secInner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  body.product .secRead h2 {
    font-size: 2.8rem;
  }
}
body.product .secProduct {
  padding-top: 100px;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  body.product .secProduct {
    padding-bottom: 120px;
  }
}
body.product .secProduct .blk {
  margin-bottom: 120px;
}
body.product .secProduct .blk .blkTop {
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 80px;
}
body.product .secProduct .blk .blkTop h3 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 60px;
  padding-left: 10px;
}
body.product .secProduct .blk .blkTop .img {
  margin-bottom: 60px;
}
body.product .secProduct .blk .blkTop .txt {
  font-size: 1.8rem;
  text-align: center;
}
body.product .secProduct .blk .blkBtm {
  max-width: 980px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.product .secProduct .blk .blkBtm > * {
  width: 30.3333333333%;
}
@media screen and (max-width: 768px) {
  body.product .secProduct .blk {
    margin-bottom: 120px;
  }
  body.product .secProduct .blk .blkTop {
    padding: 0;
    margin-bottom: 40px;
  }
  body.product .secProduct .blk .blkTop h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  body.product .secProduct .blk .blkTop .img {
    margin-bottom: 30px;
  }
  body.product .secProduct .blk .blkTop .txt {
    font-size: 1.6rem;
  }
}
body.product .secProduct .blkList {
  margin-bottom: 0;
}
body.product .secProduct .blkList .blkTop {
  margin-bottom: 0;
}
body.product .secProduct .blkList .list {
  padding: 50px 80px;
  background-color: #ECECEC;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, auto);
  grid-gap: 50px 80px;
}
body.product .secProduct .blkList .list > * {
  padding: 5px 0 5px 5px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  body.product .secProduct .blkList .list {
    padding: 40px;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-gap: 30px 20px;
  }
}

body.recruit .secRecruit,
body.contact .secRecruit {
  padding-top: 200px;
}
body.recruit .secRecruit .blk,
body.contact .secRecruit .blk {
  max-width: 860px;
  width: 100%;
  padding: 10px 45px 20px;
  margin: 0 auto 60px;
  background-color: #F6F6F6;
  border-top: 6px solid #0071BA;
}
body.recruit .secRecruit .blk h2,
body.contact .secRecruit .blk h2 {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding: 45px 0;
  border-bottom: 1px solid #AEAEAE;
}
body.recruit .secRecruit .blk .info,
body.contact .secRecruit .blk .info {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.recruit .secRecruit .blk .info .img,
body.contact .secRecruit .blk .info .img {
  max-width: 240px;
  margin-right: 40px;
}
body.recruit .secRecruit .blk .info .txt,
body.contact .secRecruit .blk .info .txt {
  font-size: 2.2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body.recruit .secRecruit,
  body.contact .secRecruit {
    padding-top: 120px;
  }
  body.recruit .secRecruit .blk,
  body.contact .secRecruit .blk {
    padding: 10px 15px 20px;
  }
  body.recruit .secRecruit .blk h2,
  body.contact .secRecruit .blk h2 {
    font-size: 2.2rem;
    padding: 20px 0;
  }
  body.recruit .secRecruit .blk .info,
  body.contact .secRecruit .blk .info {
    padding: 20px 0;
  }
  body.recruit .secRecruit .blk .info .img,
  body.contact .secRecruit .blk .info .img {
    max-width: 140px;
    margin-right: 20px;
  }
  body.recruit .secRecruit .blk .info .txt,
  body.contact .secRecruit .blk .info .txt {
    font-size: 1.6rem;
  }
}
body.recruit .secForm,
body.contact .secForm {
  padding-bottom: 100px;
}
body.recruit .secForm .secInner,
body.contact .secForm .secInner {
  max-width: 860px;
}
body.recruit .secForm .read,
body.contact .secForm .read {
  margin-bottom: 60px;
}
body.recruit .secForm .read .txt,
body.contact .secForm .read .txt {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
}
body.recruit .secForm .read .head,
body.contact .secForm .read .head {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #0071BA;
  display: table;
  padding: 15px 45px;
  margin: 0 auto 10px;
  border-radius: 9999px;
}
body.recruit .secForm .read .tel,
body.contact .secForm .read .tel {
  font-size: 4.5rem;
  font-weight: 600;
  text-align: center;
  color: #0071BA;
  display: block;
}
@media screen and (max-width: 768px) {
  body.recruit .secForm .read .txt,
  body.contact .secForm .read .txt {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  body.recruit .secForm .read .head,
  body.contact .secForm .read .head {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
  body.recruit .secForm .read .tel,
  body.contact .secForm .read .tel {
    font-size: 3.2rem;
  }
}
body.recruit .secForm .note,
body.contact .secForm .note {
  margin-bottom: 10px;
}
body.recruit .secForm .formWrap,
body.contact .secForm .formWrap {
  padding: 40px 40px 50px;
  margin-bottom: 80px;
  background-color: #D9D9D9;
}
body.recruit .secForm .formWrap .blk:nth-of-type(n+2),
body.contact .secForm .formWrap .blk:nth-of-type(n+2) {
  margin-top: 30px;
}
body.recruit .secForm .formWrap .blk .item,
body.contact .secForm .formWrap .blk .item {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
body.recruit .secForm .formWrap .blk .item .must,
body.contact .secForm .formWrap .blk .item .must {
  color: #9B272D;
  margin-left: 5px;
}
body.recruit .secForm .formWrap .blk input, body.recruit .secForm .formWrap .blk textarea,
body.contact .secForm .formWrap .blk input,
body.contact .secForm .formWrap .blk textarea {
  font-size: 2rem;
  width: 100%;
  background-color: #fff;
  padding: 0.3em 0.6em;
}
body.recruit .secForm .formWrap .blk select,
body.contact .secForm .formWrap .blk select {
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
  padding: 0.3em 0.6em;
  max-width: 200px;
  width: 100%;
}
body.recruit .secForm .formWrap .blk span[data-name=want-job],
body.contact .secForm .formWrap .blk span[data-name=want-job] {
  position: relative;
}
body.recruit .secForm .formWrap .blk span[data-name=want-job]:after,
body.contact .secForm .formWrap .blk span[data-name=want-job]:after {
  content: "▼";
  font-size: 1.6rem;
  position: absolute;
  transform: translateY(-50%);
  top: 58%;
  right: 10px;
}
@media screen and (max-width: 768px) {
  body.recruit .secForm .formWrap,
  body.contact .secForm .formWrap {
    padding: 20px 20px 50px;
    margin-bottom: 40px;
  }
  body.recruit .secForm .formWrap .blk .item,
  body.contact .secForm .formWrap .blk .item {
    font-size: 1.6rem;
  }
  body.recruit .secForm .formWrap .blk input, body.recruit .secForm .formWrap .blk textarea,
  body.contact .secForm .formWrap .blk input,
  body.contact .secForm .formWrap .blk textarea {
    font-size: 1.6rem;
    padding: 0.3em 0.6em;
  }
  body.recruit .secForm .formWrap .blk select,
  body.contact .secForm .formWrap .blk select {
    font-size: 1.6rem;
  }
  body.recruit .secForm .formWrap .blk span[data-name=want-job]:after,
  body.contact .secForm .formWrap .blk span[data-name=want-job]:after {
    font-size: 1.4rem;
  }
}
body.recruit .secForm .btnWrap input,
body.contact .secForm .btnWrap input {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background-color: #0071BA;
  display: table;
  padding: 10px 60px;
  margin: 0 auto 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: 0.4s;
}
body.recruit .secForm .btnWrap input:hover,
body.contact .secForm .btnWrap input:hover {
  opacity: 0.6;
}
body.recruit .secRead,
body.contact .secRead {
  padding-top: 150px;
  padding-bottom: 90px;
}
body.recruit .secRead .secInner,
body.contact .secRead .secInner {
  max-width: 940px;
}
body.recruit .secRead p,
body.contact .secRead p {
  font-size: 2.4rem;
}
body.recruit .secRead p:first-of-type,
body.contact .secRead p:first-of-type {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  body.recruit .secRead,
  body.contact .secRead {
    padding-top: 80px;
  }
  body.recruit .secRead p,
  body.contact .secRead p {
    font-size: 1.8rem;
  }
  body.recruit .secRead p:first-of-type,
  body.contact .secRead p:first-of-type {
    margin-bottom: 40px;
  }
}
body.recruit .secPrivacy,
body.contact .secPrivacy {
  padding-top: 120px;
  padding-bottom: 120px;
}
body.recruit .secPrivacy .ttl,
body.contact .secPrivacy .ttl {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 60px;
}
body.recruit .secPrivacy .blk,
body.contact .secPrivacy .blk {
  margin-bottom: 40px;
}
body.recruit .secPrivacy .blk .head,
body.contact .secPrivacy .blk .head {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
body.recruit .secPrivacy .blk .txt,
body.contact .secPrivacy .blk .txt {
  font-size: 1.8rem;
}

body.post .secNews {
  padding-top: 90px;
  padding-bottom: 120px;
}
body.post .secNews .newsWrap {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
body.post .secNews .newsWrap .post {
  padding: 20px 30px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
}
body.post .secNews .newsWrap .post:first-of-type {
  border-top: 1px solid #000;
}
body.post .secNews .newsWrap .post .date {
  font-size: 2rem;
  font-weight: 400;
  margin-right: 20px;
}
body.post .secNews .newsWrap .post h2 {
  font-size: 2rem;
  font-weight: 400;
}
body.post .secNews .wp-pagenavi {
  display: table;
  margin: 60px auto 0;
}
body.post .secNews .wp-pagenavi > * {
  font-size: 2rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body.post .secNews {
    padding-bottom: 90px;
  }
  body.post .secNews .newsWrap .post {
    padding: 10px 15px;
  }
  body.post .secNews .newsWrap .post .date {
    font-size: 1.6rem;
  }
  body.post .secNews .newsWrap .post h2 {
    font-size: 1.6rem;
  }
}