@charset "UTF-8";
@keyframes mv_txt {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mv_img {
  0% {
    opacity: 0;
    filter: grayscale(100%) blur(10px);
  }
  10% {
    opacity: 0;
    filter: grayscale(100%) blur(10px);
  }
  50% {
    opacity: 1;
    filter: grayscale(100%) blur(0);
  }
  80% {
    opacity: 1;
    filter: grayscale(0) blur(0);
  }
  100% {
    opacity: 1;
    filter: grayscale(0) blur(0);
  }
}
@keyframes scroll_line {
  0% {
    height: 100%;
    top: auto;
    bottom: 0;
  }
  45% {
    height: 0%;
    top: auto;
    bottom: 0;
  }
  55% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  100% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
}
/* トップ */
#top .top-hero-section {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 8rem;
}
#top .top-hero-section .txt-blk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}
#top .top-hero-section .txt-blk .txt-inner {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 38.0208333333vw;
  opacity: 0;
}
#top .top-hero-section .txt-blk .txt-inner h2 {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 2.9166666667vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-bottom: 1.3020833333vw;
}
#top .top-hero-section .txt-blk .txt-inner p {
  font-size: 1.0416666667vw;
  line-height: 1.6;
}
#top .top-hero-section .txt-blk .txt-inner p .sp-only {
  display: none;
}
#top .top-hero-section .img-blk {
  width: 50%;
  overflow: clip;
}
#top .top-hero-section .img-blk .img-inner {
  opacity: 0;
  filter: grayscale(100%) blur(10px);
}
#top .top-hero-section .img-blk .img-inner img {
  width: 100%;
}
#top .top-hero-section .sns-blk {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 17.3rem;
  left: 1.5rem;
}
#top .top-hero-section .sns-blk ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
#top .top-hero-section .sns-blk ul li {
  width: 3rem;
  height: 3rem;
}
#top .top-hero-section .sns-blk ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #999999;
  border-radius: 50%;
}
#top .top-hero-section .sns-blk ul li a img {
  width: 1.8rem;
}
#top .top-hero-section .scroll-blk {
  width: 0.9rem;
  position: absolute;
  bottom: -5rem;
  left: 2.7rem;
}
#top .top-hero-section .scroll-blk .scroll-line {
  display: block;
  width: 1px;
  height: 13rem;
  margin-left: 0.3rem;
  margin-top: 1.22rem;
  position: relative;
}
#top .top-hero-section .scroll-blk .scroll-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #999999;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: scroll_line 2s ease infinite;
}
#top .top-hero-section.is-loaded .txt-blk .txt-inner {
  animation: mv_txt 5s ease forwards;
}
#top .top-hero-section.is-loaded .img-blk .img-inner {
  animation: mv_img 5s ease forwards;
}
@media (max-width: 750px) {
  #top .top-hero-section {
    display: block;
    margin-bottom: 3rem;
  }
  #top .top-hero-section .txt-blk {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  #top .top-hero-section .txt-blk .txt-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 5.0666666667vw;
    padding-bottom: 7.2vw;
  }
  #top .top-hero-section .txt-blk .txt-inner h2 {
    font-size: 6.9333333333vw;
    line-height: 1.34;
    color: #FFFFFF;
    margin-bottom: 4vw;
  }
  #top .top-hero-section .txt-blk .txt-inner p {
    font-size: 4vw;
    line-height: 1.6;
    color: #FFFFFF;
  }
  #top .top-hero-section .txt-blk .txt-inner p .sp-only {
    display: block;
  }
  #top .top-hero-section .img-blk {
    width: 100%;
  }
  #top .top-hero-section .img-blk .img-inner::before {
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.5) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #top .top-hero-section .sns-blk {
    display: none;
  }
  #top .top-hero-section .scroll-blk {
    bottom: 0;
    left: auto;
    right: 1.3rem;
  }
  #top .top-hero-section .scroll-blk .scroll-line {
    height: 4.5rem;
  }
  #top .top-hero-section .scroll-blk .scroll-line::after {
    background-color: #FFFFFF;
  }
}
#top .top-news-section {
  display: flex;
  width: 100%;
  max-width: 132rem;
  padding-inline: 6rem;
  margin-inline: auto;
  margin-bottom: 10rem;
}
#top .top-news-section .ttl-main {
  width: 20rem;
}
#top .top-news-section .news-blk {
  width: calc(100% - 20rem);
}
#top .top-news-section .news-blk ul {
  border-top: 1px solid #1A1A1A;
}
#top .top-news-section .news-blk ul li {
  border-bottom: 1px solid #1A1A1A;
}
#top .top-news-section .news-blk ul li a {
  display: flex;
  align-items: center;
  padding: 3rem 4.5rem;
  position: relative;
}
#top .top-news-section .news-blk ul li a::before {
  content: "";
  display: block;
  width: 0.53rem;
  height: 0.93rem;
  background-image: url(../img/common/arw_right_simple_b.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}
#top .top-news-section .news-blk ul li a .date {
  width: 11rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
#top .top-news-section .news-blk ul li a .title {
  width: calc(100% - 11rem);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
#top .top-news-section .news-blk .news-link {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 2rem;
}
#top .top-news-section .news-blk .news-link a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.3rem;
  font-weight: 500;
  padding-right: 1.6rem;
  position: relative;
}
#top .top-news-section .news-blk .news-link a::before {
  content: "";
  display: block;
  width: 0.53rem;
  height: 0.93rem;
  background-image: url(../img/common/arw_right_simple_b.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  #top .top-news-section {
    flex-direction: column;
    gap: 2.5rem;
    max-width: 100%;
    padding-inline: 0;
    margin-bottom: 6rem;
  }
  #top .top-news-section .ttl-main {
    width: 100%;
    padding-inline: 2.5rem;
  }
  #top .top-news-section .news-blk {
    width: 100%;
  }
  #top .top-news-section .news-blk ul li a {
    padding: 2.2rem 4rem 2.2rem 2.5rem;
  }
  #top .top-news-section .news-blk ul li a::before {
    right: 2.5rem;
  }
  #top .top-news-section .news-blk ul li a .date {
    width: 9.4rem;
    font-size: 1.2rem;
  }
  #top .top-news-section .news-blk ul li a .title {
    width: calc(100% - 9.4rem);
    font-size: 1.2rem;
  }
  #top .top-news-section .news-blk .news-link {
    margin-right: 2.5rem;
  }
}
#top .top-about-section {
  margin-top: 5.3rem;
}
#top .top-about-section .txt-blk {
  width: 100%;
  max-width: 132rem;
  padding-inline: 6rem;
  margin-inline: auto;
  margin-bottom: -12rem;
  position: relative;
  z-index: 1;
}
#top .top-about-section .txt-blk .txt-inner {
  display: flex;
  width: 100%;
  background-color: #FFFFFF;
  padding: 6rem;
}
#top .top-about-section .txt-blk .txt-inner .ttl-main {
  width: 40rem;
}
#top .top-about-section .txt-blk .txt-inner .txt {
  width: calc(100% - 40rem);
  padding-top: 4.3rem;
}
#top .top-about-section .txt-blk .txt-inner .txt p {
  font-size: 1.5rem;
  margin-bottom: 7rem;
}
#top .top-about-section .txt-blk .txt-inner .txt p .sp-only {
  display: none;
}
#top .top-about-section .txt-blk .txt-inner .txt .btn-main {
  margin-left: auto;
}
#top .top-about-section .img-blk {
  width: 100%;
}
#top .top-about-section .img-blk img {
  width: 100%;
}
@media (min-width: 751px) and (max-width: 1060px) {
  #top .top-about-section .txt-blk .txt-inner {
    flex-direction: column;
  }
  #top .top-about-section .txt-blk .txt-inner .ttl-main {
    width: 100%;
  }
  #top .top-about-section .txt-blk .txt-inner .txt {
    width: 100%;
    padding-top: 4.3rem;
  }
  #top .top-about-section .img-blk {
    width: 100%;
  }
  #top .top-about-section .img-blk img {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #top .top-about-section {
    margin-top: 1.3rem;
  }
  #top .top-about-section .txt-blk {
    padding-inline: 2.5rem;
    margin-bottom: -28rem;
  }
  #top .top-about-section .txt-blk .txt-inner {
    flex-direction: column;
    padding: 3rem;
  }
  #top .top-about-section .txt-blk .txt-inner .ttl-main {
    width: 100%;
  }
  #top .top-about-section .txt-blk .txt-inner .txt {
    width: 100%;
    padding-top: 3rem;
  }
  #top .top-about-section .txt-blk .txt-inner .txt p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  #top .top-about-section .txt-blk .txt-inner .txt p .sp-only {
    display: block;
  }
  #top .top-about-section .txt-blk .txt-inner .txt .btn-main {
    margin-inline: auto;
  }
  #top .top-about-section .img-blk {
    width: 100%;
  }
  #top .top-about-section .img-blk img {
    width: 100%;
  }
}
#top .top-bg-white-left {
  width: calc(100% - 10rem);
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  padding-block: 10rem;
  margin-top: -4.6rem;
  margin-bottom: 20rem;
}
@media (max-width: 750px) {
  #top .top-bg-white-left {
    width: calc(100% - 2.5rem);
    padding-block: 3rem;
    margin-top: -2.7rem;
    margin-bottom: 6rem;
    margin-left: 0;
  }
  #top .top-bg-white-left::after {
    content: none;
  }
}
#top .top-service-section {
  width: 100%;
  max-width: 152rem;
  padding-inline: 6rem;
  margin-inline: auto;
  margin-bottom: 10rem;
}
#top .top-service-section .ttl-main {
  margin-bottom: 4rem;
}
#top .top-service-section h3 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.6;
  border-top: 1px solid #1A1A1A;
  padding-top: 8rem;
  margin-bottom: 3rem;
}
#top .top-service-section h3 br {
  display: none;
}
#top .top-service-section .service-blk ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
}
#top .top-service-section .service-blk ul li {
  width: calc(33.3333333333% - 2.6666666667rem);
  border: 1px solid #DEDEDE;
  padding: 4rem 2rem;
}
#top .top-service-section .service-blk ul li span {
  font-family: "Crimson Text", serif;
  font-style: normal;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  font-size: 1.3rem;
  line-height: 1;
  color: #FFFFFF;
  background-color: #1A1A1A;
  padding-inline: 1.5rem;
  margin-bottom: 2.5rem;
}
#top .top-service-section .service-blk ul li h4 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 6rem;
  margin-bottom: 2.3rem;
  position: relative;
}
#top .top-service-section .service-blk ul li h4::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#top .top-service-section .service-blk ul li p {
  font-size: 1.5rem;
}
#top .top-service-section .service-blk ul li:nth-of-type(1) h4::before {
  background-image: url(../img/top/ico_service_01.png);
}
#top .top-service-section .service-blk ul li:nth-of-type(2) h4::before {
  background-image: url(../img/top/ico_service_02.png);
}
#top .top-service-section .service-blk ul li:nth-of-type(3) h4::before {
  background-image: url(../img/top/ico_service_03.png);
}
#top .top-service-section .service-blk ul li:nth-of-type(4) h4::before {
  background-image: url(../img/top/ico_service_04.png);
}
#top .top-service-section .service-blk ul li:nth-of-type(5) h4::before {
  background-image: url(../img/top/ico_service_05.png);
}
#top .top-service-section .service-blk ul li:nth-of-type(6) h4::before {
  background-image: url(../img/top/ico_service_06.png);
}
@media (min-width: 751px) and (max-width: 1060px) {
  #top .top-service-section h3 {
    font-size: 2.8rem;
  }
  #top .top-service-section .service-blk ul {
    flex-direction: column;
    gap: 2rem;
  }
  #top .top-service-section .service-blk ul li {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #top .top-service-section {
    padding-inline: 2.5rem;
    margin-bottom: 3rem;
  }
  #top .top-service-section .ttl-main {
    margin-bottom: 3rem;
  }
  #top .top-service-section h3 {
    font-size: 2.2rem;
    padding-top: 3rem;
  }
  #top .top-service-section h3 br {
    display: block;
  }
  #top .top-service-section .service-blk ul {
    flex-direction: column;
    gap: 0;
  }
  #top .top-service-section .service-blk ul li {
    width: 100%;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 3rem 0;
  }
  #top .top-service-section .service-blk ul li span {
    margin-bottom: 2.2rem;
  }
  #top .top-service-section .service-blk ul li h4 {
    font-size: 1.8rem;
    padding-left: 4.6rem;
    margin-bottom: 1.8rem;
  }
  #top .top-service-section .service-blk ul li h4::before {
    width: 3rem;
    height: 3rem;
  }
  #top .top-service-section .service-blk ul li p {
    font-size: 1.3rem;
  }
}
#top .top-brandlist-section {
  width: 100%;
  max-width: 152rem;
  padding-inline: 6rem;
  margin-inline: auto;
}
#top .top-brandlist-section .ttl-main {
  margin-bottom: 3rem;
}
#top .top-brandlist-section .brand-blk ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 4rem;
  margin-bottom: 7rem;
}
#top .top-brandlist-section .brand-blk ul li {
  width: calc(33.3333333333% - 2.6666666667rem);
}
#top .top-brandlist-section .brand-blk ul li a {
  display: block;
}
#top .top-brandlist-section .brand-blk ul li a .img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28.5rem;
  border: 1px solid #DEDEDE;
  margin-bottom: 3rem;
}
#top .top-brandlist-section .brand-blk ul li a .img img {
  width: auto;
  max-width: initial;
  height: 14.74rem;
}
#top .top-brandlist-section .brand-blk ul li a .name {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
#top .top-brandlist-section .brand-blk ul li a .name br {
  display: none;
}
#top .top-brandlist-section .brand-blk .btn-main {
  margin-inline: auto;
}
@media (min-width: 751px) and (max-width: 1060px) {
  #top .top-brandlist-section .brand-blk ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem 4rem;
  }
  #top .top-brandlist-section .brand-blk ul li {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 750px) {
  #top .top-brandlist-section {
    padding-inline: 2.5rem;
  }
  #top .top-brandlist-section .brand-blk ul {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  #top .top-brandlist-section .brand-blk ul li {
    width: 100%;
  }
  #top .top-brandlist-section .brand-blk ul li a {
    display: flex;
    gap: 1rem;
  }
  #top .top-brandlist-section .brand-blk ul li a .img {
    width: 11rem;
    height: 10rem;
    margin-bottom: 0;
  }
  #top .top-brandlist-section .brand-blk ul li a .img img {
    width: 8rem;
    max-width: 100%;
    height: auto;
  }
  #top .top-brandlist-section .brand-blk ul li a .name {
    width: calc(100% - 12rem);
    font-size: 1.5rem;
    text-align: left;
  }
  #top .top-brandlist-section .brand-blk ul li a .name br {
    display: block;
  }
  #top .top-brandlist-section .brand-blk .btn-main {
    margin-inline: auto;
  }
}
#top .top-works-section {
  width: 100%;
  max-width: 168rem;
  padding-inline: 6rem;
  margin-inline: auto;
  margin-bottom: 20rem;
}
#top .top-works-section .ttl-blk {
  display: flex;
  margin-bottom: 5rem;
}
#top .top-works-section .ttl-blk .ttl-main {
  width: 22.2rem;
}
#top .top-works-section .ttl-blk p {
  width: calc(100% - 22.2rem);
  font-size: 1.5rem;
  margin-top: 4rem;
}
#top .top-works-section .works-blk ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 7rem;
}
#top .top-works-section .works-blk ul li {
  width: calc(33.3333333333% - 2.6666666667rem);
}
#top .top-works-section .works-blk ul li a {
  display: block;
  position: relative;
}
#top .top-works-section .works-blk ul li a::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #1A1A1A;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url(../img/common/arw_right_simple_b.png);
  background-size: 0.53rem 0.93rem;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
#top .top-works-section .works-blk ul li a .img {
  display: block;
}
#top .top-works-section .works-blk ul li a .img img {
  width: 100%;
}
#top .top-works-section .works-blk .btn-main {
  margin-inline: auto;
}
@media (min-width: 751px) and (max-width: 1060px) {
  #top .top-works-section .works-blk ul li {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 750px) {
  #top .top-works-section {
    padding-inline: 2.5rem;
    margin-bottom: 6rem;
  }
  #top .top-works-section .ttl-blk {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  #top .top-works-section .ttl-blk .ttl-main {
    width: 100%;
  }
  #top .top-works-section .ttl-blk p {
    width: 100%;
    font-size: 1.3rem;
    margin-top: 3rem;
  }
  #top .top-works-section .works-blk ul {
    gap: 1rem;
    margin-bottom: 3rem;
  }
  #top .top-works-section .works-blk ul li {
    width: calc(50% - 0.5rem);
  }
  #top .top-works-section .works-blk ul li a::before {
    width: 2rem;
    height: 2rem;
    background-size: 0.33rem 0.53rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
#top .top-bg-white-right {
  width: calc(100% - 10rem);
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  padding-block: 10rem;
  margin-left: auto;
  margin-bottom: 20rem;
}
@media (max-width: 750px) {
  #top .top-bg-white-right {
    width: calc(100% - 2.5rem);
    padding-block: 3rem;
    margin-bottom: 6rem;
    margin-right: 0;
  }
  #top .top-bg-white-right::after {
    content: none;
  }
}
#top .top-mediasite-section {
  width: 100%;
  max-width: 168rem;
  padding-inline: 6rem;
  margin-inline: auto;
}
#top .top-mediasite-section .ttl-main {
  margin-bottom: 2rem;
}
#top .top-mediasite-section .ttl-main .en {
  margin-bottom: 0;
}
#top .top-mediasite-section .mediasite-blk {
  border-top: 1px solid #1A1A1A;
  padding-top: 4rem;
}
#top .top-mediasite-section .mediasite-blk ul {
  display: flex;
  gap: 6rem;
}
#top .top-mediasite-section .mediasite-blk ul li {
  display: flex;
  flex-direction: column;
  width: calc(50% - 3rem);
}
#top .top-mediasite-section .mediasite-blk ul li h3 {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
}
#top .top-mediasite-section .mediasite-blk ul li .img {
  border: 1px solid #E6E6E6;
  margin-bottom: 3rem;
}
#top .top-mediasite-section .mediasite-blk ul li .img img {
  width: 100%;
}
#top .top-mediasite-section .mediasite-blk ul li p {
  font-size: 1.5rem;
  margin-bottom: 4rem;
}
#top .top-mediasite-section .mediasite-blk ul li .btn-main {
  margin-top: auto;
  margin-inline: auto;
}
@media (min-width: 751px) and (max-width: 1060px) {
  #top .top-mediasite-section .mediasite-blk ul {
    gap: 4rem;
  }
  #top .top-mediasite-section .mediasite-blk ul li {
    width: calc(50% - 2rem);
  }
  #top .top-mediasite-section .mediasite-blk ul li h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 750px) {
  #top .top-mediasite-section {
    padding-inline: 2.5rem;
    margin-inline: auto;
  }
  #top .top-mediasite-section .ttl-main {
    margin-bottom: 1.7rem;
  }
  #top .top-mediasite-section .mediasite-blk {
    padding-top: 3rem;
  }
  #top .top-mediasite-section .mediasite-blk ul {
    flex-direction: column;
    gap: 3rem;
  }
  #top .top-mediasite-section .mediasite-blk ul li {
    display: block;
    width: 100%;
  }
  #top .top-mediasite-section .mediasite-blk ul li h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
  }
  #top .top-mediasite-section .mediasite-blk ul li .img {
    margin-bottom: 2rem;
  }
  #top .top-mediasite-section .mediasite-blk ul li p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  #top .top-mediasite-section .mediasite-blk ul li .btn-main {
    margin-top: 0;
  }
}
#top .top-recruit-section {
  padding-bottom: 4rem;
  position: relative;
}
#top .top-recruit-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 68%;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#top .top-recruit-section .recruit-blk {
  width: 100%;
  max-width: 132rem;
  height: 41rem;
  padding-inline: 6rem;
  margin-inline: auto;
}
#top .top-recruit-section .recruit-blk a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4.3rem 5rem 6rem;
  position: relative;
  overflow: clip;
}
#top .top-recruit-section .recruit-blk a .bg-img {
  width: 100%;
  height: 100%;
  background-image: url(../img/top/img_recruit.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 500ms;
}
#top .top-recruit-section .recruit-blk a .recruit-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 50rem;
  height: 100%;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
#top .top-recruit-section .recruit-blk a .recruit-inner .ttl-main {
  margin-bottom: 4rem;
}
#top .top-recruit-section .recruit-blk a .recruit-inner p {
  font-size: 1.5rem;
}
#top .top-recruit-section .recruit-blk a .recruit-inner .btn {
  display: block;
  font-size: 1.3rem;
  padding-left: 7.5rem;
  margin-top: auto;
  position: relative;
}
#top .top-recruit-section .recruit-blk a .recruit-inner .btn::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  background-image: url(../img/common/arw_right_simple_w.png);
  background-size: 0.53rem 0.93rem;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 300ms;
}
#top .top-recruit-section .recruit-blk a:hover {
  opacity: 1;
}
#top .top-recruit-section .recruit-blk a:hover .bg-img {
  transform: scale(1.1);
}
#top .top-recruit-section .recruit-blk a:hover .recruit-inner .btn::before {
  background-image: url(../img/common/arw_right_simple_b.png);
  background-color: #FFFFFF;
}
@media (max-width: 750px) {
  #top .top-recruit-section {
    padding-bottom: 3rem;
  }
  #top .top-recruit-section::before {
    height: 73%;
  }
  #top .top-recruit-section .recruit-blk {
    max-width: 37.5rem;
    height: 24.5rem;
    padding-inline: 2.5rem;
  }
  #top .top-recruit-section .recruit-blk a {
    padding: 4rem 2rem 5rem;
  }
  #top .top-recruit-section .recruit-blk a .bg-img {
    background-image: url(../img/top/img_recruit_sp.jpg);
  }
  #top .top-recruit-section .recruit-blk a .recruit-inner {
    max-width: 100%;
  }
  #top .top-recruit-section .recruit-blk a .recruit-inner .ttl-main {
    margin-bottom: 0;
  }
  #top .top-recruit-section .recruit-blk a .recruit-inner p {
    display: none;
  }
  #top .top-recruit-section .recruit-blk a .recruit-inner .btn {
    font-size: 1.2rem;
    padding-left: 4.5rem;
  }
  #top .top-recruit-section .recruit-blk a .recruit-inner .btn::before {
    width: 3.5rem;
    height: 3.5rem;
    background-size: 0.43rem 0.73rem;
  }
}/*# sourceMappingURL=top.css.map */