@charset "UTF-8";
/* ===============================
   Reset CSS（モダン寄り・安全版）
================================ */
/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin 初期化 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* body */
body {
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* list */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* link */
/* button */
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* img */
img,
picture {
  max-width: 100%;
  display: block;
}

/* form */
input,
button,
textarea,
select {
  font: inherit;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* address */
address {
  font-style: normal;
}

@media (max-width: 768px) {
  body {
    line-height: 1.4;
  }
}
/* borderradius */
/* breakpoint */
/* maxwidth */
/* Font */
/* line-height */
/* font-size */
main {
  background: #f7efe4;
}

.mv {
  padding: 0.6%;
  background: #ffffff;
}
.mv__inner img {
  width: 100%;
}

#top-news {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.tiles {
  padding: 100px 0;
  background: #f7efe4;
}

.tile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tile-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 25px 30px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1c1c1c;
  overflow: hidden;
}
.tile-card:focus-visible {
  outline: 3px solid rgba(179, 19, 27, 0.35);
  outline-offset: 0px;
}
.tile-card:hover .tile-card__recruite::before, .tile-card:focus-visible .tile-card__recruite::before {
  transform: scale(1.2);
}
.tile-card:hover .tile-card__avatar::before, .tile-card:focus-visible .tile-card__avatar::before {
  transform: scale(1.2);
}
.tile-card__recruite {
  width: 145px;
  height: 116px;
  position: relative;
}
.tile-card__recruite::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("/top/image/recruit-pic.png");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  background-position: center;
}
.tile-card__avatar {
  width: 122px;
  height: 122px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.tile-card__avatar::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("/top/image/x-pic.png");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  background-position: center;
}
.tile-card__body {
  flex: 1;
}
.tile-card__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}
.tile-card__title small {
  font-size: 0.8em;
}
.tile-card__text {
  margin: 6px 0 0;
  font-size: 17px;
}
.tile-card__text small {
  font-size: 14px;
}
.tile-card__arrow, .tile-card__ext {
  color: #b41d23;
  text-align: right;
}

.tile-card-box {
  display: flex;
  gap: 40px;
  align-items: center;
}

.corner-title__recruit {
  background: #b41d23;
  color: #ffffff;
  text-align: center;
  width: 65px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: block;
  font-size: 17px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.corner-title__recruit span {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  display: block;
  position: absolute;
  top: 30%;
  left: 30%;
}
.corner-title__official {
  background: #22294d;
  color: #ffffff;
  text-align: center;
  width: 65px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: block;
  font-size: 17px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.corner-title__official span {
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  display: block;
  position: absolute;
  top: 30%;
  left: 30%;
}

.cta {
  background: #ffffff;
  padding: 70px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

@media (max-width: 1200px) {
  .tile-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 580px;
    margin-inline: auto;
  }
  .tile-card__recruite {
    max-width: 122px;
    max-height: 122px;
  }
}
@media (max-width: 768px) {
  .mv {
    padding: 0 2.6% 2.6%;
  }
  #top-news {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .tiles {
    padding: 55px 0;
  }
  .tile-card {
    border-radius: 16px;
    padding: 25px 10px 25px 25px;
  }
  .tile-card__recruite {
    width: 26vw;
    height: 20vw;
  }
  .tile-card__avatar {
    max-width: 122px;
    max-height: 122px;
    width: 26vw;
    height: 26vw;
  }
  .tile-card__title {
    font-size: 22px;
  }
  .tile-card__text {
    font-size: 14px;
  }
  .tile-card-box {
    gap: 20px;
  }
  .corner-title__recruit {
    font-size: 12px;
    width: 50px;
  }
  .corner-title__official {
    font-size: 12px;
    width: 50px;
  }
  .badge {
    font-size: 12px;
    padding: 3px 10px;
  }
  .cta {
    padding: 40px 0 60px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}/*# sourceMappingURL=top.css.map */