@charset "UTF-8";

.header {
  padding-top: 2.5rem;
  position: fixed;
  z-index: 20;
  width: 100%;
  padding-left: 6.3rem;
  padding-right: 4.5rem;
}

@media screen and (max-width: 768px) {
  .header {
    padding-left: 2rem;
    padding-right: 0;
  }
}

.header-wapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 21.4rem;
  aspect-ratio: 214/36;
}

@media screen and (max-width: 768px) {
  .header-logo img {
    width: 18rem;
  }
}

.header-nav {
  height: 4.2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media screen and (max-width: 768px) {
  .header-nav {
    width: 100%;
    position: fixed;
    height: 100svh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 3.6rem;
    align-items: center;
    justify-content: center;
    display: none;
  }
}

.header-nav__inner {
  height: 100%;
  padding-right: 4rem;
  padding-left: 4rem;
  gap: 3.6rem;
  background-color: #fafffb;
  border-radius: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav__inner--recruit {
  background-color: #e1bb32;
  padding-right: 0;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .header-nav__inner--recruit {
    display: none;
  }
}

.header-nav__inner--recruit a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding-right: 4rem;
  padding-left: 4rem;
}

.header-nav__inner--contact {
  background-color: #2a4198;
  padding-right: 0;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  .header-nav__inner--contact {
    display: none;
  }
}

.header-nav__inner--contact a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding-right: 4rem;
  padding-left: 4rem;
}

@media screen and (max-width: 768px) {
  .header-nav__inner {
    flex-direction: column;
    background-color: unset;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__item {
    background-color: #fafffb;
    width: 24rem;
    min-height: 4.2rem;
    height: fit-content;
    border-radius: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__item>a {
    height: 4.2rem;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

.header-nav__item>a::after {
  content: "＋";
  width: 1em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .header-nav__item>a::after {
    content: none;
  }
}

.header-nav__item--current>a::after {
  content: "−";
  width: 1em;
}

.header-nav__item--recruit {
  background-color: #e1bb32;
}

.header-nav__item--recruit a {
  color: #fff;
}

.header-nav__item--recruit a::after {
  display: none;
}

.header-nav__item--contact {
  background-color: #2a4198;
}

.header-nav__item--contact a {
  color: #fff;
}

.header-nav__item--contact a::after {
  display: none;
}

.header-modal {
  margin-top: 5rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 88.2%;
  background-color: #fff;
}

.header-modal--aboutus li {
  width: 18.3%;
}

@media screen and (max-width: 768px) {
  .header-modal--aboutus li {
    width: 100%;
  }
}

.header-modal--service li {
  width: 23%;
}

@media screen and (max-width: 768px) {
  .header-modal--service li {
    width: 100%;
  }
}

.header-modal--product li {
  width: 18.3%;
}

@media screen and (max-width: 768px) {
  .header-modal--product li {
    width: 100%;
  }
}

.header-modal>span {
  padding-left: 4rem;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .header-modal>span {
    display: none;
  }
}

.header-modal ul {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

@media screen and (max-width: 768px) {
  .header-modal ul {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
}

.header-modal a {
  display: flex;
  flex-direction: column;
}

.header-modal a.header-nav__item-mainlink {
  display: inline-block;
}

.header-modal a>span {
  margin-left: 1rem;
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header-modal a>span {
    margin-left: 0;
  }
}

.header-modal a>span::after {
  content: "";
  background: url(../images/common/arrow-b.png) no-repeat center center/cover;
  display: block;
  width: 1rem;
  min-width: 1rem;
  aspect-ratio: 25/29;
  margin-right: 1rem;
}

@media screen and (max-width: 768px) {
  .header-modal a>span::after {
    margin-right: 0;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .header-modal img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-modal {
    position: static;
    transform: unset;
    width: 100%;
    background-color: unset;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }
}

.header-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* 黒50%透明 */
  display: none;
  /* 初期は非表示 */
  z-index: 10;
  /* モーダルより下に */
}

.header-modal {
  display: none;
  position: absolute;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .header-modal {
    position: static;
    justify-content: center;
  }
}

.header-modal.is-active {
  display: block;
}

.head-en {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .head-en {
    font-size: 3rem;
  }
}

.head-jp {
  color: #fff;
  margin-top: 2.1rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .head-jp {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

.bread-crumb {
  padding-left: 2.8rem;
  padding-top: 3.1rem;
  padding-bottom: 4.7rem;
  font-weight: 100;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .bread-crumb {
    padding-top: 0;
    padding-bottom: 2rem;
    padding-left: 1.6rem;
  }
}




/* keyvisual */

.keyvis {
  padding-top: 80.7vw;
  padding-bottom: 10.7rem;
  position: relative;
  /* background: url(../images/product/product-kv.png) no-repeat center top/100% auto; */
  background-color: #7dbc53;
}

@media screen and (max-width: 768px) {
  .keyvis {
    /* background: url(../images/product/product-kv.png) no-repeat 44% top/auto 72%; */
    background-color: #7dbc53;
    padding-top: 60rem;
  }
}

.keyvis .tagline {
  font-weight: 700;
  letter-spacing: 0.075em;
}

.keyvis .tagline-head {
  position: absolute;
  top: 22rem;
  right: 13.8rem;
  font-weight: 500;
  font-size: 3.6rem;
  letter-spacing: 0.01em;
  writing-mode: vertical-rl;
  /* 縦書き（右から左へ） */
}

@media screen and (max-width: 768px) {
  .keyvis .tagline-head {
    right: 2.8rem;
  }
}

.keyvis .tagline-txt {
  position: absolute;
  top: 11.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 2rem;
  writing-mode: vertical-rl;
  line-height: 2;
}

.keyvis .keyword {
  padding-top: 13rem;
  padding-left: 6.3rem;
  padding-right: 6.3rem;
  margin-right: 5.4%;
  margin-left: 5.4%;
  border-radius: 1rem;
  background-color: #f3faf3;
  padding-bottom: 5.3rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword {
    padding-top: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
  }
}

.keyvis .keyword::before {
  top: -0.7rem;
  left: 10.8%;
  position: absolute;
  content: "";
  display: block;
  width: 16.6rem;
  aspect-ratio: 166/69;
  background: url(../images/common/rec-chr01.png) no-repeat center center/cover;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword::before {
    width: 11rem;
  }
}

.keyvis .keyword::after {
  top: -5.3rem;
  right: 9.7%;
  position: absolute;
  content: "";
  display: block;
  width: 13.9rem;
  aspect-ratio: 139/145;
  background: url(../images/common/rec-chr02.png) no-repeat center center/cover;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword::after {
    width: 8rem;
    top: -4rem;
  }
}

.keyvis .keyword-inner {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  background-color: #fff;
  border-radius: 1.5rem;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword-inner {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

.keyvis .keyword-head {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 10%;
  margin-bottom: 4.3rem;
}

.keyvis .keyword-tags {
  display: flex;
  flex-wrap: wrap;
  padding-left: 7%;
  padding-right: 10%;
  row-gap: 1.6rem;
}

.keyvis .keyword-tag-block {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

@media screen and (max-width: 768px) {
  .keyvis .keyword-tag-block {
    width: 100%;
  }
}

.keyvis .keyword-tag-img {
  width: 250px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword-tag-img {
    display: none;
  }
}

.keyvis .keyword-tag {
  font-size: 1.4rem;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  margin-left: 3.5%;
  border: 1px solid #000;
  border-radius: 1.6rem;
  height: 3.4rem;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .keyvis .keyword-tag {
    width: 100%;
    height: auto;
    line-height: 1.333;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}


.footer {
  position: relative;
  padding-top: 8.4rem;
  min-height: 175.5rem;
  background: url(../images/common/footer-bg01.jpg) no-repeat center top/cover;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 4rem;
    min-height: unset;
  }
}

.footer .recruitment {
  display: flex;
  width: 86.5%;
  aspect-ratio: 1047/584;
  margin-right: auto;
  margin-left: auto;
  background: url(../images/index/recruitment.png) no-repeat center center/cover;
}

.footer .recruitment-left {
  width: 47.6%;
}

@media screen and (max-width: 768px) {
  .footer .recruitment-left {
    width: 100%;
  }

  .footer .recruitment-left::before {
    position: absolute;
    top: 9.6rem;
    left: 3rem;
    content: "";
    display: block;
    width: 7rem;
    aspect-ratio: 97/67;
    background: url(../images/common/rec-chr03.png) no-repeat center center/cover;
  }

  .footer .recruitment-left::after {
    position: absolute;
    top: 10.6rem;
    left: 25rem;
    content: "";
    display: block;
    width: 4rem;
    aspect-ratio: 49/50;
    background: url(../images/common/rec-chr04.png) no-repeat center center/cover;
  }
}

.footer .recruitment-head {
  margin-top: 61%;
}

@media screen and (max-width: 768px) {
  .footer .recruitment-head {
    margin-top: 0;
  }
}

.footer .recruitment .head-en {
  text-align: center;
  color: #000;
}

.footer .recruitment .head-jp {
  text-align: center;
  color: #000;
}

.footer .recruitment-right {
  width: 52.4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.2rem;
  margin-top: 9vw;
}

@media screen and (max-width: 768px) {
  .footer .recruitment-right {
    width: 100%;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    gap: 1.6rem;
    margin-top: 5rem;
  }
}

.footer .recruitment-item {
  border-radius: 0.7rem;
  padding-right: 1em;
  padding-left: 1em;
  width: 84%;
  height: 9.42vw;
  background-color: #e3f4e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer .recruitment-item {
    width: 100%;
    height: 6rem;
  }
}

.footer .recruitment-item span {
  font-size: 2.47vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  display: block;
  width: 46%;
}

@media screen and (max-width: 768px) {
  .footer .recruitment-item span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .footer .recruitment {
    border-radius: 3.2rem;
    width: 88%;
    flex-direction: column;
    background: unset;
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
  }

  .footer .recruitment::before {
    position: absolute;
    top: -1.4rem;
    left: 3rem;
    content: "";
    display: block;
    width: 10rem;
    aspect-ratio: 166/69;
    background: url(../images/common/rec-chr01.png) no-repeat center center/cover;
  }

  .footer .recruitment::after {
    position: absolute;
    top: -3.4rem;
    left: 25rem;
    content: "";
    display: block;
    width: 6rem;
    aspect-ratio: 139/145;
    background: url(../images/common/rec-chr02.png) no-repeat center center/cover;
  }
}

.footer-content {
  margin-top: 45rem;
  padding-left: 5.6rem;
  padding-right: 5.6rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 768px) {
  .footer-content {
    margin-top: 70rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: 3rem;
  }
}

.footer-content * {
  color: #fff;
}

.footer-logo {
  display: block;
}

.footer-logo img {
  width: 23.4rem;
  aspect-ratio: 234/54;
}

.footer-wrap {
  margin-top: 6.4rem;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    margin-top: 2.4rem;
  }
}

.footer-company {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-address {
  margin-top: 1.5rem;
  line-height: 1.6;
}

.footer-tel {
  margin-top: 2rem;
  line-height: 1.6;
}

.footer-map {
  margin-top: 2rem;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 6rem;
  padding-left: 3rem;
  width: 70%;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    margin-top: 3rem;
    width: 100%;
    column-gap: 2rem;
    padding-left: 0;
    row-gap: 3rem;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
}

.footer-menu ul {
  margin-top: 2.5rem;
  margin-left: 0.2rem;
  padding-left: 1rem;
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer-menu ul {
    margin-top: 1.6rem;
  }
}

.footer-menu li {
  width: 15.5rem;
}

.footer-menu li:not(:last-child) {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .footer-menu li:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}

.footer-menu li a {
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .footer-menu li a {
    line-height: 1.2;
  }
}

.footer-menu--first li {
  width: 11rem;
}

.footer-menu--second li {
  width: 17.5rem;
}

.footer-menu--third li {
  width: 13rem;
}

.footer-menu--last a {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .footer-menu--last a::before {
    content: "・";
  }
}

.footer-menu--last a:not(:last-child) {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .footer-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 3rem;
  }
}

.footer-copy p {
  padding-left: 5.6rem;
  padding-right: 5.6rem;
  position: absolute;
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 0.02em;
  color: #fff;
  bottom: 4.6rem;
}

@media screen and (max-width: 768px) {
  .footer-copy p {
    position: relative;
    bottom: unset;
  }
}

.footer-copy p:nth-child(1) {
  left: 0;
}

@media screen and (max-width: 768px) {
  .footer-copy p:nth-child(1) {
    left: unset;
  }
}

.footer-copy p:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .footer-copy p:nth-child(2) {
    margin-top: 0.8rem;
    left: unset;
    transform: unset;
  }
}

/*# sourceMappingURL=common.css.map */