@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  height: 100vh;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

/* -- header -- */
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  position: fixed;
  top: 0px;
  z-index: 80;
}

#header .logo {
  width: 200px;
  line-height: 0;
}

.header-menu {
  display: flex;
  column-gap: 10px;
  font-size: 15px;
  font-weight: 900;
}

/* navigation-pc */
.main-nav {
  display: flex;
  column-gap: 24px;
  align-items: center;
  background-color: #fff;
  border: 3px solid #ff0000;
  border-radius: 50px;
  padding: 10px 30px;
}

.main-nav a {
  display: block;
  color: #ff0000;
  padding: 0 3px;
}

.main-nav a:hover {
  background-color: #ffeb3a;
}

.header-btn a {
  display: block;
  width: 160px;
  background-color: #ffeb3a;
  border: 3px solid #ff0000;
  border-radius: 50px;
  color: #ff0000;
  text-align: center;
  padding: 10px 0;
}

.header-btn a:hover {
  filter: brightness(1.15);
}

/* hamburger */
.header {
  position: relative;
}

.hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffeb3a;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #ff0000;
  transition: all 0.4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 23px;
}
.hamburger__line:nth-of-type(3) {
  top: 32px;
}

.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #ff0000;
  line-height: 1.4;
  border-bottom: 1px solid #eee;
}

.nav__link .jp {
  font-size: 14px;
}

.nav__link .en {
  font-size: 22px;
  font-family: "Unbounded", sans-serif;
}

/* -- mainvisual -- */
.mainvisual img {
  width: 100vw;
}

/* -- roop -- */
#roop {
  width: 100%;
  height: 60px;
  background: url(../img/points.png) repeat-x;
  background-position: 0 0;
  animation: bgroop 20s linear infinite;
  margin-top: 5px;
}

@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1920px 0;
  }
}

/* -- section -- */
.section-wrapper {
  position: relative;
  border-radius: 40px 40px 0 0;
}

.section-wrapper.normal {
  border-radius: 0;
}

.section-body {
  position: relative;
  max-width: 1140px;
  padding: 100px 20px;
  margin: -100px auto 0;
}

.section-body.normal {
  margin-top: 0;
}

.section-title {
  color: #fff;
  margin-bottom: 40px;
}

.section-title.red {
  color: #ff0000;
}

.section-title h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 62px;
  line-height: normal;
}

.section-title p {
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
}

/* -- button -- */
.apply {
  text-align: center;
}

.apply .text {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 15px;
}

.apply .text.white {
  color: #fff;
}

.btn {
  display: block;
  max-width: 360px;
  background: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 15px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 20px 40px;
  margin: 0 auto;
  position: relative;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  cursor: pointer;
}

.btn.white {
  background: #fff;
  color: #ff0000;
}

.btn:hover {
  background: #fff;
  color: #ff0000;
}

.btn.white:hover {
  background: #ffeb3a;
  color: #ff0000;
}

.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 40px;
  width: 10px;
  height: 10px;
  border-top: 3px solid;
  border-right: 3px solid;
  rotate: 45deg;
  transition: 0.5s;
}

/* -- bg -- */
.bg-box-1,
.bg-box-2 {
  clip-path: inset(0);
  width: 100%;
  height: 550px;
  box-sizing: border-box;
}

.bg-box-1::after,
.bg-box-2::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.bg-box-1::after {
  background-image: url(../img/bg1.jpg);
}

.bg-box-2::after {
  background-image: url(../img/bg2.jpg);
}

/* -- about -- */
#about {
  background-color: #fff;
}

.about-items {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1140px;
  padding: 50px 20px 100px 20px;
  margin: 0 auto;
}

.about-items .title img {
  max-width: 400px;
  margin-bottom: 30px;
}

.about-items .description {
  font-size: 20px;
  font-weight: 900;
}

.about-items .img img {
  max-width: 300px;
}

/* -- benefits -- */
#benefits {
  background-color: #ff0000;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 10px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
}

.card .title {
  color: #ff0000;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
}

.card .img img {
  width: 100%;
}

.box1 {
  grid-column: 1 / 3;
}

.box2,
.box3 {
  background-color: transparent;
  align-items: center;
}

.point-img {
  grid-row: 1 / 4;
}

/* -- features -- */
#features {
  background-color: #f6f6f6;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.grid2 a {
  display: grid;
}

.grid2 a .card2:hover {
  background-color: #ffeb3a;
}

.card2 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px 10px;
}

.card2 .number {
  color: #ff0000;
  font-family: "Unbounded", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.card2 h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
}

.card2 img {
  margin: 0 auto;
}

.card2 img {
  height: 50px;
}

.card2 img.arrow {
  height: 30px;
}

.details {
  margin-bottom: 80px;
}

.features-items {
  background-color: #fff;
  border: 5px solid #ff0000;
  border-radius: 40px;
  padding: 40px;
  margin-bottom: 40px;
}

.features-items:last-child {
  margin-bottom: 0;
}

.main-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.main-item .text .number {
  color: #ff0000;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
  line-height: normal;
}

.main-item .text .title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin: 15px 0;
}

.sub-items {
  display: flex;
  column-gap: 20px;
}

.sub-items .item {
  width: 100%;
  background-color: #ffeb3a;
  border-radius: 20px;
  padding: 20px;
}

.sub-items .item p {
  font-size: 15px;
}

.sub-items .item p.title {
  font-weight: 900;
  margin-bottom: 5px;
}

/* -- requirements -- */
#requirements {
  background-color: #ff0000;
}

.info1,
.info2 {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px;
}

.info1 {
  margin-bottom: 40px;
}

.info2 {
  margin-bottom: 80px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.table th,
.table td {
  vertical-align: top;
  padding: 20px;
}

.table th {
  width: 20%;
  font-weight: 900;
  text-align: left;
}

.table td .break {
  margin-bottom: 10px;
}

.table td .paragraph {
  text-indent: -1em;
  padding-left: 2em;
}

.info2 .title {
  color: #ff0000;
  margin-bottom: 10px;
}

.info2 .title h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  line-height: normal;
}

.info2 .title p {
  font-size: 20px;
  font-weight: 900;
}

.info2 .text {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.info2 .text p,
.info2 .text img {
  width: 100%;
}

/* -- voice -- */
#voice {
  background-color: #f6f6f6;
}

.voice1 {
  margin-bottom: 80px;
}

.profile {
  display: flex;
}

.prolie .img {
  flex-basis: 40%;
}

.profile .text {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ff0000;
}

.profile .text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  padding: 0 40px;
}

.profile .text h3 span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding-top: 20px;
}

.profile .img img {
  border-radius: 80px 0 0 0;
}

.interview1 {
  background-color: #fff;
  border-radius: 0 0 80px 0;
  padding: 60px 0;
}

.interview1 .text {
  margin: 0 60px 40px;
}

.interview1 .text:last-child {
  margin-bottom: 0;
}

.interview1 .text .title {
  color: #ff0000;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.interview1 .text-img {
  display: flex;
  column-gap: 60px;
  align-items: center;
}

.interview1 .text-img .text {
  flex-grow: 1;
  width: 100%;
  margin-right: 0;
}

.interview1 .text-img img {
  width: 100%;
}

.voice2 {
  margin-bottom: 80px;
}

.voice2 h3 {
  color: #ff0000;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.voice2 .interview2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.voice2 li {
  background-color: #fff;
  border-radius: 40px;
  padding: 30px;
}

.interview2 .img {
  text-align: center;
  margin-bottom: 20px;
}

.interview2 .img img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

.interview2 .description {
  font-size: 16px;
}

.interview2 .description .name {
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
}

.interview2 .description .break {
  margin: 10px 0;
}

/* -- company -- */
#company {
  background-color: #fff;
}

.company-info {
  display: flex;
  justify-content: space-between;
}

.company-info .text {
  width: 60%;
}

.company-info .text img {
  max-width: 360px;
  margin: 20px 0;
}

.company-info dt {
  float: left;
}

.company-info dt::after {
  content: "：";
}

.company-info .img {
  width: 35%;
}

/* -- fixed-button -- */
.fix {
  background-color: #f6f6f6;
  padding: 20px;
  position: sticky;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.fix .btn {
  border-radius: 10px;
  padding: 10px 0;
  margin: 0 auto;
}

/* -- footer -- */
#footer {
  background-color: #ff0000;
  color: #fff;
  text-align: center;
  padding: 40px 4%;
}

#footer .logo {
  max-width: 300px;
  margin: 0 auto 10px;
}

#footer .copyright {
  font-size: 12px;
  font-weight: 400;
}

/* -- display -- */
.sp,
.tablet-on {
  display: none;
}

/* ------------------------------
        Tablet
  ------------------------------ */
@media screen and (max-width: 960px) {
  /* -- display -- */
  .tablet-off {
    display: none;
  }

  .tablet-on {
    display: block;
  }

  /* -- header -- */
  #header .logo {
    max-width: 180px;
  }

  /* -- roop -- */
  #roop {
    height: 50px;
    background-size: cover;
  }

  /* -- section -- */
  .section-body {
    padding: 80px 20px;
    margin: -40px auto 0;
  }

  /* -- requirements -- */
  .info2 .text {
    flex-direction: column-reverse;
  }

  .info2 .text p {
    width: 100%;
  }

  .info2 .text .img {
    width: 80%;
  }

  /* -- voice -- */
  .profile .text h3 {
    font-size: 20px;
    padding: 30px;
  }

  .profile .text h3 span {
    font-size: 14px;
  }
}

/* ------------------------------
        Smartphone
  ------------------------------ */

@media screen and (max-width: 767px) {
  /* -- display -- */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* -- roop -- */
  #roop {
    height: 40px;
  }

  /* -- section -- */
  .section-wrapper {
    border-radius: 20px 20px 0 0;
  }

  .section-body {
    padding: 40px 20px;
    margin: -20px auto 0;
  }

  .section-title h2 {
    font-size: 26px;
    line-height: 1.5;
  }

  .section-title p {
    font-size: 14px;
  }

  /* -- button -- */
  .apply .text {
    font-size: 16px;
  }

  .btn {
    max-width: 100%;
    border-radius: 10px;
    padding: 10px 0;
  }

  /* -- about -- */
  .about-items {
    display: block;
    padding: 40px 20px;
  }

  .about-items .title img {
    max-width: 250px;
  }

  .about-items .description {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .about-items .img {
    text-align: center;
  }

  .about-items .img img {
    max-width: 180px;
  }

  /* -- benefits -- */
  #benefits {
    background-color: #ff0000;
  }

  .grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 15px;
  }

  .card .title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .card .description {
    font-size: 14px;
  }

  .box2 {
    order: 8;
  }

  .box3 {
    display: none;
  }

  /* -- features -- */
  #features {
    background-color: #f6f6f6;
  }

  .grid2 {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .card2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    text-align: left;
    padding: 10px;
  }

  .card2 .number {
    font-size: 20px;
    line-height: 1.5;
  }

  .card2 .title {
    font-size: 14px;
  }

  .card2 img {
    display: none;
  }

  .card2 img.arrow {
    display: block;
    height: 20px;
    margin-right: 0;
  }

  .details {
    margin-bottom: 40px;
  }

  .features-items {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .main-item {
    display: block;
    margin-bottom: 40px;
  }

  .main-item .text .number {
    font-size: 40px;
  }

  .main-item .text .title {
    font-size: 18px;
  }

  .main-item .text .description {
    margin-bottom: 15px;
  }

  .sub-items {
    display: block;
  }

  .sub-items .item {
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
  }

  .sub-items .item:last-child {
    margin-bottom: 0;
  }

  .sub-items .item p {
    font-size: 14px;
  }

  /* -- requirements -- */
  .info1,
  .info2 {
    border-radius: 20px;
    padding: 30px 20px;
  }

  .info1 {
    margin-bottom: 20px;
  }

  .info2 {
    margin-bottom: 40px;
  }

  .table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
  }

  .table tr {
    display: block;
    margin-bottom: 20px;
  }

  .table tr:last-child {
    margin-bottom: 0;
  }

  .table th,
  .table td {
    display: inline-block;
    padding: 0;
  }

  .table th {
    width: 100%;
    font-size: 15px;
  }

  .table td {
    font-size: 14px;
  }

  .info2 .title {
    margin-bottom: 10px;
  }

  .info2 .title h3 {
    font-size: 24px;
  }

  .info2 .title p {
    font-size: 14px;
  }

  .info2 .text {
    flex-direction: column-reverse;
  }

  /* -- voice -- */
  .voice1 {
    margin-bottom: 40px;
  }

  .profile {
    display: block;
  }

  .profile .text {
    display: block;
  }

  .profile .text h3 {
    font-size: 18px;
    padding: 20px;
  }

  .profile .img img {
    width: 100%;
    border-radius: 40px 0 0 0;
  }

  .interview1 {
    border-radius: 0 0 40px 0;
    padding: 20px 0;
  }

  .interview1 .text {
    margin: 0 20px 20px;
  }

  .interview1 .text:last-child {
    margin-bottom: 0;
  }

  .interview1 .text .title {
    margin-bottom: 5px;
  }

  .interview1 .text-img {
    display: block;
    margin: 20px;
  }

  .interview1 .text-img .text {
    width: 100%;
    margin: 0 0 10px;
  }

  .voice2 {
    margin-bottom: 40px;
  }

  .voice2 h3 {
    font-size: 18px;
  }

  .voice2 .interview2 {
    grid-template-columns: 1fr;
  }

  .voice2 li {
    border-radius: 20px;
    padding: 20px;
  }

  /* -- company -- */
  .company-info {
    flex-direction: column;
  }

  .company-info .text,
  .company-info .text img,
  .company-info .img {
    width: 100%;
  }

  .company-info .text {
    margin-bottom: 20px;
  }

  /* -- footer -- */
  #footer .logo {
    max-width: 220px;
  }
}

@media screen and (max-width: 320px) {
  .btn::after {
    display: none;
  }
}
