:root {
  color-scheme: light;
  --color-text-primary: #242533;
  --color-accent: #f47808;
  --color-border: #d8d8d8;
  --hiring-header-height-pc: 80px;
  --hiring-header-height-sp: 60px;
  --color-black-100: #111321;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Lato", sans-serif;
  color: var(--color-text-primary);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  overflow-x: hidden;
}

.orange_btn {
  background-color: #f47808;
	color: #ffffff;
  border: 1px solid #f47808;

  &:hover {
    background-color: #ffffff;
	  color: #f47808;
    transition: all 0.2s ease-out;
    opacity: 1;
  }
}

.white_btn {
  background-color: #ffffff;
	color: #f47806;
  border: 1px solid #ffffff;

  &:hover {
    background-color: #f47806;
	  color: #ffffff;
    transition: all 0.2s ease-out;
    opacity: 1;
  }
}

.heading {
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;

  @media (max-width: 768px) {
    font-size: 26px;
  }

  &::after {
    content: '';
    display: block;
    background-color: #1a1a1a;
    width: 80px;
    height: 3px;
  }
}

.section-sub-title {
  font-size: 2.8rem;
  line-height: 1.6em;
  font-weight: bold;
  color: #1E293B;
  text-align: center;

  @media (max-width: 768px) {
    /* font-size: 6.4vw; */
    font-size: 2.1rem;
  }

  .sp_only {
    display: none;

    @media (max-width: 768px) {
      display: block;
    }
  }

  .pc_only {
    display: block;

    @media (max-width: 768px) {
      display: none;
    }
  }
}

.section-description {
  font-size: 1.6rem;
  line-height: 1.6em;
  text-align: center;
  color: #1a1a1a;

  /* @media (max-width: 768px) {
    font-size: 4.26666667vw;
  } */

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

  .pc_only {
    @media (max-width: 768px) {
      display: none;
    }
  }
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;

  &.large {
    max-width: 1200px;
  }

  &.white {
    .english {
      background: linear-gradient(90deg, rgba(0, 161, 255, 0.20) -6.62%, rgba(255, 48, 206, 0.20) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .heading {
      color: #ffffff;

      &::after {
        background-color: #ffffff;
      }
    }

    .section-description {
      color: #ffffff;
    }
  }
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 40px;

  /* @media (max-width: 768px) {
    gap: 10.6666667vw;
  } */

  &.small {
    @media (max-width: 768px) {
      gap: 32px;
    }
  }
}

.design-grade {
  display: inline-block;
  background: linear-gradient(270deg, #3B82F6 0%, #8B5CF6 50.42%, #EC4899 100%);
  line-height: 41px;
  height: 41px;
  color: #FFFFFF;
  padding-inline: 7px;

  @media (max-width: 768px) {
    line-height: 33.47px;
    height: 33.47px;

  }

  & ~ .design-grade {
    margin-top: 4px;
  }
}

.sp_only {
  display: none;

  @media (max-width: 768px) {
    display: block;
  }
}

.pc_only {
  display: block;

  @media (max-width: 768px) {
    display: none;
  }
}