h2.ttl {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
h2.ttl + p.caption {
  margin: 10px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #666;
}

article > *:first-child {
  margin-top: 0;
}
article > *:last-child {
  margin-bottom: 0;
}

hr.common_hr {
  margin: 100px 0;
  border: none;
  height: 1px;
  background: #999;
}

#kv {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
#kv::before {
  content: "";
  width: calc(100% + 40px);
  height: 10px;
  box-shadow: 0 0 100px rgb(0, 0, 0);
  display: block;
  position: absolute;
  top: -10px;
  left: -20px;
}
#kv::after {
  content: "";
  width: calc(100% + 40px);
  height: 10px;
  box-shadow: 0 0 100px rgb(0, 0, 0);
  display: block;
  position: absolute;
  bottom: -10px;
  left: -20px;
}
#kv .bg {
  width: 100%;
  height: 100%;
}
#kv .bg picture {
  width: 100%;
  height: 100%;
  display: block;
}
#kv .bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
#kv .content {
  width: 100%;
  height: 100%;
  padding: 4vw;
  padding-top: var(--header-height-pc);
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 0;
  top: 0;
}
#kv .content .set {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
#kv .content .set h1 {
  margin: 0;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
#kv .content .set p.caption {
  margin: 20px 0 0;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

#greeting {
  margin: 160px 0;
}
#greeting .flex_set {
  gap: 4vw;
}
#greeting .flex_set .ttl_set h2 {
  line-height: 1.8;
  margin-bottom: 2em;
}
#greeting .flex_set .main {
  width: 50%;
  flex: none;
}
#greeting .flex_set .main article p {
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
}

#content .kv {
  margin: 160px 0 -300px;
}
#content .kv picture {
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
#content .kv picture img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#content .kv.blur picture img {
  filter: blur(4px);
}
#content .summary .ttl_set {
  flex: none;
  width: 320px;
}
#content .summary .ttl_set h2.ttl {
  line-height: 1;
}
#content .summary .detail article + .common_link {
  margin-top: 40px;
}
#content ul.content_list {
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
#content ul.content_list li {
  flex: 1;
  position: relative;
}
#content ul.content_list li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#content ul.content_list li .set {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#content ul.content_list li .set .img {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  background: #fff;
}
#content ul.content_list li .set .img::before {
  content: "Read more";
  color: #fff;
  background: var(--theme01);
  padding: 1em 1.5em;
  border-radius: 4px;
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
#content ul.content_list li .set .img picture {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#content ul.content_list li .set .img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s, opacity 0.4s, filter 0.4s;
}
#content ul.content_list li .set .detail {
  padding: 10px;
}
#content ul.content_list li .set .detail .ttl h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--theme02);
  line-height: 1.5;
  transition: color 0.2s;
}
#content ul.content_list li .set .detail .txt {
  margin-top: 10px;
}
#content ul.content_list li .set .detail .txt p {
  margin: 0;
  color: #333;
  transition: color 0.2s;
}
#content ul.content_list li:not(.nolink):hover .set .img::before {
  opacity: 1;
}
#content ul.content_list li:not(.nolink):hover .set .img picture img {
  opacity: 0.6;
  transform: scale(1.05);
  filter: blur(4px);
}
#content ul.content_list li:not(.nolink):hover .set .detail .ttl h3 {
  color: var(--theme01);
}
#content ul.content_list li:not(.nolink):hover .set .detail .txt p {
  color: var(--theme01);
}
#content ul.content_list li:not(.nolink):hover > a {
  pointer-events: inherit;
}

#interview .summary {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}
#interview .summary .detail {
  flex: none;
}
#interview .interview_set {
  width: calc(100% - (100dvw - 1200px) / 2);
  max-width: calc(100cqw - 4vw);
  margin: 40px 0 40px auto;
  padding-right: 4vw;
  padding-bottom: 40px;
}
#interview .interview_set ul.interview_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#interview .interview_set ul.interview_list li {
  width: 400px;
  position: relative;
}
#interview .interview_set ul.interview_list li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#interview .interview_set ul.interview_list li .set .img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
#interview .interview_set ul.interview_list li .set .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s, opacity 0.4s;
}
#interview .interview_set ul.interview_list li .set .txt .ttl {
  margin: 16px 0;
}
#interview .interview_set ul.interview_list li .set .txt .ttl h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.2s;
}
#interview .interview_set ul.interview_list li .set .txt .detail {
  line-height: 1.5;
  color: #666;
  transition: color 0.2s;
}
#interview .interview_set ul.interview_list li .set .txt .detail .company + .human {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#interview .interview_set ul.interview_list li:hover .set .img img {
  transform: scale(1.05);
  opacity: 0.8;
}
#interview .interview_set ul.interview_list li:hover .set .txt .ttl h3 {
  color: var(--theme01);
}
#interview .interview_set ul.interview_list li:hover .set .txt .detail span {
  color: var(--theme01);
}
#interview .interview_set .swiper-horizontal > .swiper-scrollbar, #interview .interview_set .swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
#interview .interview_set:hover .swiper-horizontal > .swiper-scrollbar, #interview .interview_set:hover .swiper-scrollbar.swiper-scrollbar-horizontal {
  opacity: 1;
}

#news {
  margin: 100px 0 0;
  padding: 60px 0;
  background: #fafafa;
}
#news .news_wrap .ttl_set {
  flex: none;
  width: 320px;
  padding-right: 4vw;
}
#news .news_wrap .ttl_set .common_link {
  margin-top: 100px;
}
#news .news_wrap .main ul.news_list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
#news .news_wrap .main ul.news_list li {
  padding: 20px 10px;
  position: relative;
  border-top: 1px solid #ddd;
  transition: padding 0.4s;
}
#news .news_wrap .main ul.news_list li:first-child {
  border-top: none;
}
#news .news_wrap .main ul.news_list li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#news .news_wrap .main ul.news_list li .set {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 10px 20px;
}
#news .news_wrap .main ul.news_list li .set .date {
  grid-row: 1/2;
  grid-column: 1/2;
}
#news .news_wrap .main ul.news_list li .set .date span {
  color: var(--theme01);
  font-weight: 600;
}
#news .news_wrap .main ul.news_list li .set .cat {
  grid-row: 1/2;
  grid-column: 2/3;
}
#news .news_wrap .main ul.news_list li .set .cat span {
  padding: 0.0625em 0.25em;
  display: inline-block;
  border: 1px solid #999;
  font-size: 0.875rem;
  transition: color 0.2s, border-color 0.2s;
}
#news .news_wrap .main ul.news_list li .set .cat span + span {
  margin-left: 10px;
}
#news .news_wrap .main ul.news_list li .set .ttl {
  grid-row: 2/3;
  grid-column: 1/3;
  line-height: 1.5;
  font-size: 1rem;
  transition: color 0.2s;
}
#news .news_wrap .main ul.news_list li:hover {
  padding-left: 15px;
  padding-right: 5px;
}
#news .news_wrap .main ul.news_list li:hover .set .cat span {
  color: var(--theme01);
  border-color: var(--theme01);
}
#news .news_wrap .main ul.news_list li:hover .set .ttl {
  color: var(--theme01);
}

@media screen and (max-width: 1023.98px) {
  #kv .content {
    padding-top: var(--header-height-sp);
  }
  #greeting {
    margin: 80px 0;
  }
  #greeting .flex_set {
    max-width: 720px;
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
  }
  #greeting .flex_set .ttl_set h2 {
    font-size: 1.75rem;
    margin-bottom: 2em;
  }
  #greeting .flex_set .main {
    width: 100%;
    flex: none;
  }
  #greeting .flex_set .main article p {
    font-size: 1rem;
  }
  #content .kv {
    margin: 80px 0 0;
  }
  #content .kv picture {
    height: 200px;
    position: relative;
  }
  #content .kv picture::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #content .kv + .container {
    margin-top: -200px;
  }
  #content .kv + .container .summary:first-child .ttl_set {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #content .summary {
    flex-direction: column;
  }
  #content .summary .ttl_set {
    width: 100%;
  }
  #content .summary .ttl_set h2.ttl + p.caption {
    color: #111;
  }
  #content .summary .detail {
    margin-top: 40px;
  }
  #content ul.content_list {
    max-width: 720px;
    margin: 40px 0 0 -4vw;
    gap: 0;
    flex-direction: column;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
  #content ul.content_list li {
    width: 100%;
    position: relative;
    background: #fff;
    transition: width 0.4s, box-shadow 0.4s;
    z-index: 0;
  }
  #content ul.content_list li .set {
    gap: 0;
  }
  #content ul.content_list li .set .detail {
    padding: 30px 4vw;
    transition: padding 0.2s;
    position: relative;
  }
  #content ul.content_list li .set .detail img {
    z-index: -1;
  }
  #content ul.content_list li .set .detail .txt {
    margin-top: 16px;
  }
  #content ul.content_list li:not(.nolink):hover {
    width: calc(100% + 2vw);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  #content ul.content_list li:not(.nolink):hover .set .detail {
    padding-left: 6vw;
  }
  #interview .summary {
    flex-direction: column;
    gap: 20px;
  }
  #interview .interview_set {
    max-width: 100cqw;
    margin: 40px 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
  #interview .interview_set .swiper-horizontal > .swiper-scrollbar, #interview .interview_set .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: calc(100% - 4vw);
    left: 2vw;
  }
  #news {
    margin: 80px 0 0;
  }
  #news .news_wrap {
    flex-direction: column;
  }
  #news .news_wrap .ttl_set {
    width: 100%;
    padding-right: 0;
  }
  #news .news_wrap .ttl_set .common_link {
    margin-top: 20px;
  }
  #news .news_wrap .main {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  hr.common_hr {
    margin: 60px 0;
  }
  #kv {
    height: 60vh;
  }
  #kv .content {
    padding-bottom: 40px;
  }
  #kv .content .set h1 {
    font-size: 1.875rem;
  }
  #kv .content .set p.caption {
    margin-top: 10px;
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=home.css.map */