@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
body {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dispPC {
  display: block;
}
@media screen and (max-width: 1070px) {
  .dispPC {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .dispPC {
    display: none;
  }
}

.dispSP {
  display: none;
}
@media screen and (max-width: 1070px) {
  .dispSP {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .dispSP {
    display: block;
  }
}

.dispTB {
  display: none;
}
@media screen and (min-width: 1071px) {
  .dispTB {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .dispTB {
    display: none;
  }
}

/* ------------------------
html body基本設定
------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
  color: #3d3d3d;
}
html body {
  position: relative;
  font-size: 0.9375rem;
  line-height: 2.4em;
  font-weight: 600;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  word-break: normal;
  min-height: 100vh;
  max-width: 100vw;
  width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  html body {
    font-size: 0.875rem;
  }
}
html body.active {
  overflow: hidden;
}
html body .container {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1070px) {
  html body .container {
    padding: 0 5%;
  }
}
html body .inner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1070px) {
  html body .inner {
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  html body .inner {
    padding: 0 13.33%;
  }
}
html main {
  position: relative;
}

header {
  max-height: 77px;
  padding: 12px 0 16px 0;
  position: relative;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  position: sticky;
  top: 0;
  /* ハンバーガーメニュークリック後のスタイル */
}
@media screen and (max-width: 768px) {
  header {
    max-height: 60px;
    padding: 18px 0 18px 0;
    position: sticky;
    top: 0;
  }
}
header .header_item-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
header .header_item-wrap .logo {
  width: 160px;
}
header .header_item-wrap .logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  header .header_item-wrap .logo {
    width: 96px;
  }
  header .header_item-wrap .logo img {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header .global-nav {
    display: none;
  }
}
header .global-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 34px;
       column-gap: 34px;
  margin-right: 18px;
}
header .global-nav ul li {
  font-size: 0.9375rem;
}
header .global-nav ul li a {
  display: block;
  transition: 0.5s;
}
header .global-nav ul li a:hover {
  opacity: 0.6;
  transition: 0.5s;
}
header .hamburger {
  display: none;
  width: 30px;
}
@media screen and (max-width: 768px) {
  header .hamburger {
    display: block;
  }
}
header .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #3d3d3d;
  position: relative;
  transition: ease 0.2s;
  display: block;
}
header .hamburger span:nth-child(1) {
  top: 0;
}
header .hamburger span:nth-child(2) {
  margin: 8px 0;
}
header .hamburger span:nth-child(3) {
  top: 0;
}
header .sp-header__nav.active {
  transform: translateX(0);
  display: block;
}
header .sp-header__nav.active ul li a {
  display: block;
  transition: 0.3s;
}
header .sp-header__nav.active ul li a:hover {
  background-color: #3d3d3d;
  color: #ffffff;
}
header .hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}
header .sp-header__nav {
  position: absolute;
  top: 60px;
  z-index: 101;
  display: none;
  transform: translateX(100%);
  transition: ease 0.4s;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  background-color: #f5f5f5;
  width: 100vw;
  text-align: center;
}
header .sp-header__nav ul li {
  line-height: 60px;
  border-top: 1px solid rgba(61, 61, 61, 0.25);
}
@media screen and (max-width: 768px) {
  header .sp-header__nav {
    display: none;
  }
}

header.active {
  background-color: #f5f5f5;
}

footer {
  padding: 80px 0;
  background-color: #dbdedf;
}
footer .footer_item-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media screen and (max-width: 768px) {
  footer .footer_item-wrap {
    display: block;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column-reverse;
  }
}
footer .footer_item-wrap .company-name {
  min-width: 260px;
}
footer .footer_item-wrap .company-name h2 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 1.58em;
}
footer .footer_item-wrap .company-name h2 .company-name-en {
  margin-left: -8px;
}
footer .footer_item-wrap .company-name p {
  font-size: 0.625rem;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  footer .footer_item-wrap .footer-nav {
    display: block;
    width: 100%;
    margin-bottom: 80px;
  }
}
footer .footer_item-wrap .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 42px;
       column-gap: 42px;
}
@media screen and (max-width: 1070px) {
  footer .footer_item-wrap .footer-nav ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_item-wrap .footer-nav ul {
    display: block;
  }
}
footer .footer_item-wrap .footer-nav ul li {
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  footer .footer_item-wrap .footer-nav ul li {
    font-size: 0.75rem;
    line-height: 1em;
    padding: 23px 0;
    text-align: center;
    border-top: 1px solid rgba(61, 61, 61, 0.25);
  }
  footer .footer_item-wrap .footer-nav ul li:nth-last-of-type(1) {
    border-bottom: 1px solid rgba(61, 61, 61, 0.25);
  }
}
footer .footer_item-wrap .footer-nav ul li a {
  display: block;
  transition: 0.5s;
}
footer .footer_item-wrap .footer-nav ul li a:hover {
  opacity: 0.6;
  transition: 0.5s;
}

#fadeLayer {
  position: absolute;
  /*top: 60px;*/
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #3d3d3d;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}

#fadeLayer.active {
  opacity: 0.6;
  z-index: 2;
}

main .link__btn {
  border-radius: 5px;
  max-width: 313px;
  display: block;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  main .link__btn {
    max-width: 100%;
    width: 100%;
  }
}
main .link__btn a {
  text-align: center;
  display: block;
  line-height: 1em;
  padding: 20px 0;
  position: relative;
  transition: 0.5s;
}
main .link__btn a:hover {
  color: #ffffff;
  transition: 0.5s;
}
main .link__btn a:hover span::before {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transition: 0.5s;
}
main .link__btn a span::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  bottom: 0;
  right: 18px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #3d3d3d;
  border-right: 1px solid #3d3d3d;
  transform: rotate(45deg);
  transition: 0.5s;
}
main .link__btn-white {
  background-color: #ffffff;
  transition: 0.5s;
}
main .link__btn-white:hover {
  background-color: #9a9fa1;
  transition: 0.5s;
}
main .link__btn-gray {
  background-color: #dbdedf;
  transition: 0.5s;
}
main .link__btn-gray:hover {
  background-color: #9a9fa1;
  transition: 0.5s;
}
main .top_section__item-ttl,
main .sub-page_mv-ttl {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 1.25rem;
}
main .top_section__item-ttl span,
main .sub-page_mv-ttl span {
  display: block;
  font-size: 4.0625rem;
  line-height: 1em;
  font-family: garamond-premier-pro-display, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  main .top_section__item-ttl span,
  main .sub-page_mv-ttl span {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  main .top_section__item-ttl,
  main .sub-page_mv-ttl {
    font-size: 0.9375rem;
  }
}
main .sub-page_mv-ttl {
  margin-bottom: 0;
  color: #ffffff;
}
main .sub-page_mv__padding {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  main .sub-page_mv__padding {
    padding: 80px 0;
  }
}
main .sub-page_contents-layout {
  padding: 160px 0;
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  main .sub-page_contents-layout {
    padding: 80px 0;
  }
}
main .sub-page_contents-layout.adjust {
  padding-top: 0;
}
main .sub-page_contents-ttl {
  font-size: 2.25rem;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main .sub-page_contents-ttl {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
}
main .sub-page_base-text {
  letter-spacing: 0.015em;
}
main .sub-page_item-wrap {
  background-color: #ffffff;
  border-radius: 5px;
}

main #top_mv {
  padding: 80px 0;
  margin-bottom: 160px;
  height: 600px;
  background-image: url("../images/top-mv-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1070px) {
  main #top_mv {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv {
    padding: 56px 0;
    height: 667px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 420px) {
  main #top_mv {
    background-image: url("../images/top-mv-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main #top_mv .top_mv-item-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: end;
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 7%;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-ttl {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl {
    margin-bottom: 55px;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .firstLine {
  height: 95px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1070px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .firstLine {
    height: 85px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .firstLine {
    height: 53px;
    margin-bottom: 30px;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .secondLine {
  height: 130px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1070px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .secondLine {
    height: 110px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .secondLine {
    height: 82px;
    margin-bottom: 10px;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .thirdLine {
  height: 95px;
}
@media screen and (max-width: 1070px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .thirdLine {
    height: 85px;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 .thirdLine {
    height: 54px;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-ttl h1 p {
  font-family: garamond-premier-pro-display, serif;
  font-weight: 500;
  font-size: 8.125rem;
  line-height: 1em;
  letter-spacing: 0.11em;
  color: rgba(243, 241, 242, 0.4);
}
@media screen and (max-width: 1070px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 p {
    font-size: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-ttl h1 p {
    font-size: 5.125rem;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-copy {
  color: #ffffff;
}
main #top_mv .top_mv-item-wrap .top_mv-copy h2 {
  font-size: 2.25rem;
  letter-spacing: 0.17em;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 1070px) {
  main #top_mv .top_mv-item-wrap .top_mv-copy h2 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-copy h2 {
    font-size: 1.25rem;
    line-height: 1.875em;
  }
}
main #top_mv .top_mv-item-wrap .top_mv-copy p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55em;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  main #top_mv .top_mv-item-wrap .top_mv-copy p {
    font-size: 0.8125rem;
    line-height: 2em;
  }
}
main #top-company {
  background-color: #ededed;
}
main #top-service .item-wrap {
  flex-direction: row-reverse;
}
main #top-company .item-wrap,
main #top-service .item-wrap {
  padding: 160px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  main #top-company .item-wrap,
  main #top-service .item-wrap {
    padding: 80px 0;
    flex-direction: column-reverse;
  }
}
main #top-company .item-wrap .item-text-wrap,
main #top-service .item-wrap .item-text-wrap {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main #top-company .item-wrap .item-text-wrap,
  main #top-service .item-wrap .item-text-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 1070px) {
  main #top-company .item-wrap .item-text-wrap .top_section__item-txt,
  main #top-service .item-wrap .item-text-wrap .top_section__item-txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  main #top-company .item-wrap .item-text-wrap .top_section__item-txt,
  main #top-service .item-wrap .item-text-wrap .top_section__item-txt {
    margin-bottom: 60px;
  }
}
main #top-company .item-wrap .item-image-wrap,
main #top-service .item-wrap .item-image-wrap {
  max-width: 49%;
}
@media screen and (max-width: 768px) {
  main #top-company .item-wrap .item-image-wrap,
  main #top-service .item-wrap .item-image-wrap {
    max-width: 100%;
    margin-bottom: 80px;
  }
}
main #top-company .item-wrap .item-image-wrap img,
main #top-service .item-wrap .item-image-wrap img {
  width: 100%;
}
main #top-contact {
  margin-bottom: 5px;
  background-image: url("../images/top-contact-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
@media screen and (max-width: 768px) {
  main #top-contact {
    background-image: url("../images/top-contact-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main #top-recruit {
  background-image: url("../images/top-recruit-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
@media screen and (max-width: 768px) {
  main #top-recruit {
    background-image: url("../images/top-recruit-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main #top-contact,
main #top-recruit {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  main #top-contact,
  main #top-recruit {
    padding: 27px 0;
  }
}
main #top-contact .item-wrap,
main #top-recruit .item-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main #top-contact .item-wrap,
  main #top-recruit .item-wrap {
    display: block;
  }
}
main #top-contact .item-wrap .top_section__item-ttl,
main #top-recruit .item-wrap .top_section__item-ttl {
  color: #ffffff;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main #top-contact .item-wrap .top_section__item-ttl span,
  main #top-recruit .item-wrap .top_section__item-ttl span {
    font-size: 1.625rem;
    display: inline-block;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  main #top-contact .item-wrap .top_section__item-ttl,
  main #top-recruit .item-wrap .top_section__item-ttl {
    font-size: 0.75rem;
    margin-bottom: 20px;
    display: inline-block;
  }
}
main #top-contact .item-wrap .link__btn,
main #top-recruit .item-wrap .link__btn {
  max-width: 100%;
  width: 313px;
}
@media screen and (max-width: 768px) {
  main #top-contact .item-wrap .link__btn,
  main #top-recruit .item-wrap .link__btn {
    width: 100%;
  }
}

main #company-page_mv {
  background-image: url("../images/company-mv-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  main #company-page_mv {
    background-image: url("../images/company-mv-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main #company-page_contents .sub-page_item-wrap__padding--company {
  padding: 120px 15%;
}
@media screen and (max-width: 768px) {
  main #company-page_contents .sub-page_item-wrap__padding--company {
    padding: 80px 5%;
  }
}
main #company-page_contents .company-page_contents__margin {
  margin-bottom: 80px;
}
main #company-page_contents address dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
main #company-page_contents address dt {
  width: 14%;
}
@media screen and (max-width: 768px) {
  main #company-page_contents address dt {
    width: 25%;
  }
}
main #company-page_contents address dd {
  width: 80%;
}
@media screen and (max-width: 768px) {
  main #company-page_contents address dd {
    width: 72%;
  }
}
main #company-page_contents address dt,
main #company-page_contents address dd {
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  main #company-page_contents address dt,
  main #company-page_contents address dd {
    line-height: 1.875em;
  }
}
@media screen and (max-width: 768px) {
  main #company-page_contents address .adress_company-name-sp_adjust {
    font-size: 0.6875rem;
    margin-left: -8px;
  }
}
main #company-page_contents address .office-name {
  display: inline-block;
  line-height: 1em;
  margin-bottom: 10px;
}
main #company-page_contents address .office-address {
  display: inline-block;
  line-height: 1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main #company-page_contents address .office-address {
    line-height: 1.875em;
  }
}
main #company-page_contents address .office-address:nth-last-of-type(1) {
  margin-bottom: 0;
}

.sub-page_item-wrap__padding--service,
.sub-page_item-wrap__padding--privacy {
  padding: 120px 11%;
}
@media screen and (max-width: 768px) {
  .sub-page_item-wrap__padding--service,
  .sub-page_item-wrap__padding--privacy {
    padding: 80px 6%;
  }
}

main #service-page_mv {
  background-image: url("../images/service-mv-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  main #service-page_mv {
    background-image: url("../images/service-mv-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main .sub-page_contents-ttl_adjust {
  margin-left: 35px;
}
@media screen and (max-width: 1070px) {
  main .sub-page_contents-ttl_adjust {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main .sub-page_contents-ttl_adjust {
    font-size: 1.25rem;
    display: block;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 80px;
  }
}
main .sub-page_item-service {
  border-bottom: 1px solid #b2b2b3;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main .sub-page_item-service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
main .sub-page_item-service:nth-of-type(1) {
  padding-top: 0;
}
main .sub-page_item-service:nth-last-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
}
main .sub-page_item-service h3 {
  font-size: 1.625rem;
  line-height: 1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main .sub-page_item-service h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}
main .sub-page_item-service p {
  line-height: 2.4em;
}

.privacy-header {
  background-color: #f5f5f5;
}

main #privacy-page_contents {
  background-color: #f5f5f5;
  padding: 100px 0 160px 0;
}
main #privacy-page_contents .sub-page_contents-ttl__privacy {
  font-size: 2.25rem;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .sub-page_contents-ttl__privacy {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
}
main #privacy-page_contents .privacy-page_contents__margin {
  margin-bottom: 80px;
}
main #privacy-page_contents .sub-page_item-privacy-wrap {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .sub-page_item-privacy-wrap {
    margin-bottom: 80px;
  }
}
main #privacy-page_contents .sub-page_item-privacy-wrap:nth-last-of-type(1) {
  margin-bottom: 0;
}
main #privacy-page_contents .sub-page_item-privacy {
  border-bottom: 1px solid #b2b2b3;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .sub-page_item-privacy {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
main #privacy-page_contents .sub-page_item-privacy:nth-of-type(1) {
  padding-top: 0;
}
main #privacy-page_contents .sub-page_item-privacy h3 {
  text-align: center;
  font-size: 1.625rem;
  line-height: 1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .sub-page_item-privacy h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
  }
}
main #privacy-page_contents .sub-page_item-privacy .fsNumber {
  font-size: 1.25rem;
}
main #privacy-page_contents .sub-page_item-privacy h4 {
  font-size: 1.25rem;
  line-height: 1em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .sub-page_item-privacy h4 .fsSP {
    font-size: 1.125rem;
  }
}
main #privacy-page_contents .sub-page_item-privacy p {
  line-height: 2.4em;
}
main #privacy-page_contents .sub-page_item-privacy address {
  text-align: right;
}
main #privacy-page_contents .sub-page_item-privacy .privacy-indent {
  text-indent: -1em;
  padding-left: 1em;
}
main #privacy-page_contents .sub-page_item-privacy .privacy-point {
  margin-bottom: 18px;
}
main #privacy-page_contents .sub-page_item-privacy .privacy-align {
  text-align: right;
}
main #privacy-page_contents .privacy-contact_wrap {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 22px;
       column-gap: 22px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  main #privacy-page_contents .privacy-contact_wrap {
    display: block;
  }
  main #privacy-page_contents .privacy-contact_wrap h5 {
    display: block;
    text-align: center;
  }
}
main #privacy-page_contents .privacy-contact_wrap .privacy-contact_adress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  align-items: flex-start;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
main #privacy-page_contents .privacy-contact_wrap .privacy-contact_adress dt,
main #privacy-page_contents .privacy-contact_wrap .privacy-contact_adress dd {
  font-weight: 600;
}

main #recruit-page_mv {
  background-image: url("../images/recruit-mv-pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  main #recruit-page_mv {
    background-image: url("../images/recruit-mv-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
main .sub-page_item-wrap__padding--recruit {
  padding: 120px 15%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 1070px) {
  main .sub-page_item-wrap__padding--recruit {
    padding: 80px 6%;
    gap: 60px;
  }
}
main .sub-page_item-wrap__padding--recruit .link__btn {
  width: 313px;
}
@media screen and (max-width: 768px) {
  main .sub-page_item-wrap__padding--recruit .link__btn {
    width: 100%;
  }
}

main #recruit-post-page_contents .sub-page_item-wrap__padding--recruit-post-page {
  padding: 120px 10%;
}
@media screen and (max-width: 768px) {
  main #recruit-post-page_contents .sub-page_item-wrap__padding--recruit-post-page {
    padding: 80px 6%;
  }
}
main #recruit-post-page_contents .description dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
main #recruit-post-page_contents .description dt {
  width: 15%;
}
@media screen and (max-width: 768px) {
  main #recruit-post-page_contents .description dt {
    width: 33%;
  }
}
main #recruit-post-page_contents .description dd {
  width: 80%;
}
@media screen and (max-width: 768px) {
  main #recruit-post-page_contents .description dd {
    width: 55%;
  }
}
main #recruit-post-page_contents .description dt,
main #recruit-post-page_contents .description dd {
  line-height: 1.6em;
}/*# sourceMappingURL=styles.css.map */