@charset "UTF-8";

html, body {
  color: #141517;
  letter-spacing: 0.6px;
  font-size: 14px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "Open Sans", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

p {
  line-height: 2;
}

p + p {
  margin-top: 1rem;
}

.service-subttl {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #666;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .service-subttl {
    text-align: center;
  }
}

.wrap {
  width: 100%;
}

.section {
  padding: 60px 0;
}
@media screen and (min-width: 769px) {
  .section {
    padding: 70px 0;
  }
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 769px) {
  .container {
    padding: 0 40px;
  }
}

.container-slim {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/*nav*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

.nav .inner-nav {
  position: relative;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.nav .inner-nav .sp-menu {
  display: none;
}

@media screen and (max-width: 970px) {
  .nav .inner-nav .sp-menu {
    display: block;
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translate(0, -50%);
  }
}

.nav .inner-nav .sp-menu .nav-icon {
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav .inner-nav .sp-menu .nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 80%;
  background: #a2a2a2;
  border-radius: 30px;
  opacity: 1;
  left: 10%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.nav .inner-nav .sp-menu .nav-icon span:nth-child(1) {
  top: 3px;
  transform-origin: left center;
}

.nav .inner-nav .sp-menu .nav-icon span:nth-child(2) {
  top: 11px;
  transform-origin: left center;
}

.nav .inner-nav .sp-menu .nav-icon span:nth-child(3) {
  top: 19px;
  transform-origin: left center;
}

.nav .inner-nav .sp-menu .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 3px;
  left: 7px;
}

.nav .inner-nav .sp-menu .nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav .inner-nav .sp-menu .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 7px;
}

.nav .nav-logo {
  width: 204px;
  display: flex;
  align-items: center;
}

.nav .inner-nav img {
  width: 100%;
}

.nav .inner-nav ul {
  display: flex;
}

@media screen and (max-width: 970px) {
  .nav .inner-nav ul {
    display: none;
  }
}

.nav .inner-nav ul li a {
  display: block;
  margin: 0;
  padding: 23px 12px;
  font-size: 12px;
}

.nav .inner-nav ul li a:hover {
  background: #ddd;
}

.nav + section {
  padding-top: 120px !important;
}

.inner-spnav {
  display: none;
  text-align: center;
}

.inner-spnav ul {
  border-bottom: 1px solid #f1f1f1;
}

.inner-spnav ul li a {
  display: block;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  border-top: 1px solid #f1f1f1;
}

/*kv*/
.kv {
  padding-top: 66px;
  background-image: url("../img/kv-pc.jpg?digest=20210812");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .kv h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 320px) {
  .kv h2 {
    font-size: 24px;
  }
}

.kv .logo-kv {
  width: 70%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

/*TOP　NEWSカルーセル*/
.news-wrap {
  margin-bottom: 70px;
}

.swiper-container {
  margin-top: 30px;
  overflow: hidden;
}

.swiper-wrapper {
  margin-bottom: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #222;
  top: 25%;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}

.swiper-pagination {
  position: unset;
}

.swiper-pagination-bullet-active {
  background: #222;
}

.news-card > a {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.news-card > a:hover {
  opacity: 0.7;
}

.news-card-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-card .category {
  background: #C7A213;
  padding: 2px 5px;
  border-radius: 4px;
  color: #fff;
  letter-spacing: 0;
  font-size: 12px;
}

.news-card .img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  background-color: #eee;
}

.news-card .img-wrap::before {
  content:"";
  display: block;
  padding-top: 53%;
}

.news-card .img-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 477 / 253;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.top-news .news-card .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 10px;
}

/*NEWSページ*/
.card-list {
  display: flex;
  flex-wrap: wrap;
}

.card-list .news-card {
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .card-list .news-card {
    width: 33.333%;
    margin-bottom: 30px;
  }
}

/*MISSION*/
.mission {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
}

.mission-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mission-container {
    flex-direction: row;
  }
}

.mission .text {
  letter-spacing: 2px;
  font-weight: 600;
}

.mission-container .text {
  background-color: #fff;
  max-width: 700px;
  padding: 30px 20px
}

.mission .text h4 {
  font-weight: 600;
}

.mission-number {
  width: 70px;
}

.philosophy {
  background-size: cover;
  position: relative;
  background-position: center;
  padding: 0;
}

.philosophy-background {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .philosophy-background {
    height: 450px;
    max-width: 700px;
  }
}

@media screen and (min-width: 768px) {
  .philosophy .text {
    background-color: #fff;
    padding: 70px 50px;
  }
}

.vision {
}
@media screen and (min-width: 768px) {
  .vision {
  }
}

.vision .img {
  position: relative
}

.vision .vision-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*service*/
.section-description {
  margin-bottom: 50px;
  line-height: 2;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 2% 4%;
  background: #f3f3f3;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .section-description {
    font-size: 14px;
  }
}

.section .block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 100px;
}

.section .block:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .section .block {
    flex-direction: row;
  }
}

.section .block .img {
  width: 100%;
  margin-bottom: 30px;
}

.section .block .img img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .section .block .img {
    width: 40%;
    margin-right: 60px;
    margin-bottom: 0;
  }
}

.section .block .text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .section .block .text {
    width: 600px;
  }
}

.section .img-right {
  flex-direction: row-reverse;
}

.service .block {
  align-items: flex-start;
}


.service h3 img {
  max-width: 220px;
}

.service .others-list {
  width: 100%;
  padding: 15px;
  border-radius: 4px;
  background: #f3f3f3;
}

.service .others-list:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .service .others-list {
    width: 33%;
    text-align: center;
    padding: 40px 15px;
  }

  .service .others-list:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.service .others-ttl {
  margin-bottom: 10px;
  font-size: 19px;
  letter-spacing: 0px;
}

.service .others-list-txt {
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .order-2 {
    order: 2;
  }

  .order-1 {
    order: 1;
  }
}

/*media*/
.media {
  background: linear-gradient(120deg, white, #f8f8ff);

}

.media-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.media-list:not(:last-child) {
  margin-bottom: 40px;
}

.media-list:last-child {
  margin-bottom: 80px;
}

.media-list img {
  width: 96px;
  height: 55px;
  padding: 5px;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .media-list img {
    width: 150px;
    height: 70px;
    padding: 10px;
  }
}

/*media kit*/
.mediakit {
  text-align: center;
}
.mediakit .lead {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .mediakit .lead {
    text-align: center;
  }
}
.mediakit h5 {
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 16px;
  background: #eee;
  border-radius: 30px;
  margin-bottom: 30px;
}

.mediakit .kit > a {
  position: relative;
  display: block;
  border: 5px solid #eee;
  padding: 10px;
}

.mediakit .kit {
  margin: 0 auto 30px;
  max-width: 700px;
  position: relative;
}

.mediakit .kit > figcaption {
  padding-top: .5rem;
  text-align: right;
}

.mediakit .kit.kit-slim {
  max-width: 300px;
}

.mediakit .kit a img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: auto;
}
.mediakit .kit a img.is-slim {
  max-width: 300px;
}

.mediakit .kit > a::before {
  display: block;
  content: '';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background-color: rgba(50, 50, 50, 0.6);
  background-image: url(../img/icon-dl.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 17px 17px;
  z-index: 99;
}

.c-list-disc {
  margin-left: 1em;
}

.c-list-disc li {
  list-style: disc;
}

.c-listLowerAlpha {
  list-style-type: lower-alpha;
  margin-left: 1em;
}

.c-listLowerAlpha .c-listLowerAlpha_item {
  list-style: lower-alpha;
}

.c-listLowerAlpha .c-listLowerAlpha_attention {
  font-size: 0.8em;
}

.u-one-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.privacy h3 {
  text-align: left;
}

.privacy-lead + .privacy-section {
  margin-top: 40px;
}

.privacy-section + .privacy-section {
  margin-top: 40px;
}

/*movie*/
.movie-wrap .movie-inner {
  position: relative;
  width: 100%;
}

.movie-wrap .movie-inner::before {
  content:"";
  display: block;
  padding-top: 56.25%;
}

.movie-wrap .movie-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-wrap .text {
  margin-top: 10px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .movie-wrap {
    width: 70%;
    margin: 0 auto;
  }
}

/*member*/
.member-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.member-card {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.member-card img {
  width: 100%;
  margin-bottom: 20px;
}

.member-card .text {
  width: 100%;
}

.member-card h5 {
  text-align: center;
  margin-bottom: 5px;
}

.member-card h4 {
  text-align: center;
  margin-bottom: 15px;
}

.member-card p {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .member-list {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .member-card {
    width: calc(32% - 20px);
  }

  .member-card:not(:nth-child(3n)) {
    margin-right: 35px;
  }
}

/*recruit*/
.recruit .wantedly-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.recruit .wantedly-list iframe {
  width: 400px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .recruit .wantedly-list iframe {
    max-width: calc(33.3% - 10px);
    width: 100%;
    min-width: 350px;
  }

  .recruit .wantedly-list iframe:not(:last-child) {
    margin-right: 10px;
  }
}

/*company*/
.company table {
  margin: 0 auto 30px;
}

.company table tr {
  border-top: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.company table tr th {
  min-width: 100%;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .company table tr {
    flex-direction: row;
  }

  .company table tr th {
    min-width: 170px;
    margin-bottom: 0;
  }
}

/*footer*/
footer {
  background: #242629;
  padding: 20px;
}

footer .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

footer .sns-list a {
  display: block;
}

footer .sns-list a:not(:last-child) {
  margin-right: 15px;
}

footer .sns-list a img {
  width: 100%;
  width: 40px;
  height: 40px;
}

footer .copy {
  font-size: 11px;
  color: #fff;
  text-align: center;
}

/*modules*/
h2 {
  margin-bottom: 50px;
  font-size: 3rem;
  font-family: "open sans";
  text-align: center;
  line-height: 1.3;
  letter-spacing: 4px;
}

h2 span {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 2px;
}

h2 .line {
  display: block;
  width: 50px;
  height: 1px;
  margin: 30px auto 0;
  background-color: #111;
}

h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

h4 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}

.btn {
  position: relative;
  display: block;
  width: 300px;
  height: 60px;
  margin-top: 40px;
  line-height: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.btn + .btn {
  margin-top: 15px;
}

.btn:hover {
  opacity: 0.9;
  box-shadow: none;
}

.btn:before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 16px;
  width: 27px;
  height: 1px;
  background: #fff;
}

.btn:after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 16px;
  width: 14px;
  height: 1px;
  background: #fff;
  transform: rotate(30deg);
}

.btn-red {
  background: #c30d23;
}

.btn-brown {
  background: #c39551;
}

.btn-black {
  background: linear-gradient(120deg, #383a40, #141517);
}

.btn-yellow {
  background: #ebc329;
}

.btn-text {
  margin-top: 20px;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
}

.btn-text {
  position: relative;
  padding-right: 17px;
  margin-top: 10px;
}

.btn-text:before {
  position: absolute;
  content: "";
  top: 4px;
  right: 3px;
  width: 8px;
  height: 1px;
  background: #666;
  transform: rotate(40deg);
}

.btn-text:after {
  position: absolute;
  content: "";
  top: 9px;
  right: 3px;
  width: 8px;
  height: 1px;
  background: #666;
  transform: rotate(-40deg);
}

.p-buttons {
  width: 80%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;

  margin: 0 auto;

  .btn {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-buttons {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.pagination-btn {
  position: relative;
  display: block;
  width: 300px;
  height: 60px;
  margin-top: 40px;
  line-height: 60px;
  color: #fff;
  background: #c39551;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.pagination-btn + .pagination-btn {
  margin-left: 30px;
}

.pagination-btn-disabled {
  background: #c39551;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .btn-text {
    text-align: right;
  }
}

.bg-gray {
  background: #f3f3f3;
}

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

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

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.background-img {
  background-image: url(../img/background-img.jpg);
  background-size: contain;
  position: relative;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 200px;
}

.background-img::before {
  content:'';
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .background-img {
    background-size: cover;
    background-position: center;
  }
}
.p-recruit_container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.p-recruit_nav {
  display: flex;
  justify-content: center;
  position: static;
  top: unset;
  left: unset;
  width: 100%;
  z-index: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  background: transparent;
}
.p-recruit_speakerdeck {
  max-width: 500px;
  margin: 50px auto 0;
}
.p-recruitList_list > li {
  margin-bottom: 14px;
}

.p-recruit-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-recruitCard {
  display: block;
  border: 1px solid #e3e3e3;
}
.c-recruitCard_container {
  margin: 0;
}
.c-recruitCard_container > figcaption {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  padding: 14px 14px 5px 14px;
  color: rgba(0, 0, 0, 0.84);
}
.c-recruitCard_container > p {
  color: #666;
  font-size: 11px;
  line-height: 1.5;
  padding: 0 10px 0 14px;
}
.c-recruitCard_container > img {
  width: 100%;
  height: 50vw;
  object-fit: cover;
  object-position: 0 -40px;
  margin-top: 14px;
}
.c-recruitCard_footer {
  display: flex;
  justify-content: flex-end;
  background: white;
}
.c-navNews {
  margin-bottom: 1rem;
}
.c-navNews_list {
  display: flex;
}
.c-navNews_list > li {
  flex: 0 0 50%;
  padding: 15px 5px;
}
.c-navNews_list > li > a {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border-bottom: 2px solid #ddd;
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-navNews_list > li {
    padding: 15px;
  }
  .c-navNews_list > li > a {
    padding: 1rem;
    font-size: 24px;
  }
}
.c-navNews_list > li > a:hover:not(.is-active) {
  background-color: #ddd;
}
.c-navNews_list > li > a.is-active {
  border-color: #141517;
  cursor:default;
}
.c-btn {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 9999px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.c-btn-large {
  display:flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  font-size: 14px;
  font-weight: 600;
}
.c-btn-rightArrow {
  position: relative;
}
.c-btn-rightArrow:before {
    position: absolute;
    content: "";
    top: calc(50% - 1px);
    right: 16px;
    width: 27px;
    height: 1px;
    background: white;
}
.c-btn-rightArrow:after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 16px;
  width: 14px;
  height: 1px;
  background: white;
  transform: rotate(30deg);
}
.c-btn-inversion {
  background: linear-gradient(120deg, #383a40, #141517);
  color: white;
}
.c-btn-herp {
  min-width: 90px;
  background-color: #0b2b50;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Roboto, メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.c-btn-meety {
  background: linear-gradient(120deg, #fb584f, #fc3f64);
  color: white;
}

@media screen and (min-width: 768px) {
  .p-recruit_container {
    max-width: 800px;
    padding: 0 40px;
  }
  .p-recruitList_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .p-recruit_speakerdeck {
    max-width: 500px;
    margin: 50px auto 0;
  }
  .p-recruitList_list > li {
    flex: 0 0 49.9%;
    width: 100%;
    max-width: 50vw;
    min-width: 295px;
    padding: 0 5px 14px 5px;
  }
  .c-recruitCard {
    width: 100%;
  }
  .c-recruitCard_container > figcaption {
    min-height: 4em;
    font-size: 19px;
    padding-bottom: 8px;
  }
  .c-recruitCard_container > p {
    padding: 0 5px 0 14px;
    min-height: 4.5em;
    font-size: 14px;
  }
  .c-recruitCard_container > img {
    height: 10vw;
  }
}

@media screen and (min-width: 1280px) {
  .p-recruit_container {
    max-width: 1600px;
  }
  .p-recruitList_list > li {
    flex: 0 0 24.9%;
    max-width: 25vw;
  }
}

/* privacy.html 向け */
.c-privacyInnerSection {
  margin-top: 40px;
  padding-left: 20px;
}

.c-privacyInnerSection__title {
  font-weight: normal;
}

.c-privacyInnerSection__textIndent {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .c-privacyInnerSection {
    padding-left: 0;
  }
}

.c-privacyListAlpha {
  padding-left: 25px;
}

.c-privacyListAlpha > li {
  list-style: lower-alpha;
  list-style-position: inside;
  margin: 5px 0;
}

.c-privacyListParentheses__item {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  padding-left: 1.5em;
  text-indent: -2em;
}

.c-privacyListParentheses {
  padding-left: 25px;
}

.c-privacyListParentheses__item:not(:last-child) {
  margin-bottom: 5px;
}

.c-privacyListParentheses__item:last-child {
  margin-bottom: 10px;
}

.c-privacyListParentheses__item::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}


.publication-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #f3f3f3;
  padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  .publication-card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #f3f3f3;
    padding: 30px;
  }
}

.publication-card {
  padding: 25px 30px;
  background: #ffffff;
}

.publication-card__category {
  color: #c7a213;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;

  text-align: center;
}

.publication-card__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;

  margin-top: 10px;
}

.publication-card__day {
  color: #858585;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;

  text-align: center;

  margin-top: 10px;
}

.p-privacyPolicyForTools {
  margin: 16px;

  .p-privacyPolicyForTools__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;

    th {
      font-weight: normal;
    }

    th,
    td {
      padding: 8px;
      border: 1px solid #f2f2f2;
      text-align: left;
    }

    td .list-disc {
      margin-left: 1.5em;
    }
  }

  .p-privacyPolicyForTools__column--narrow {
    min-width: 60px;
  }

  .p-privacyPolicyForTools__column--wide {
    min-width: 95px;
  }
}
