: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%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: auto;
  & > img {
    display: none !important;
  }
}

body {
  margin: 0;
  color: var(--color-text-primary);
  background: #ffffff;
  line-height: 1.6;
}

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

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

main {
  overflow-x: hidden;
}

picture {
  display: contents;
  & source {
    display: contents;
  }
}

.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;
  }
}

hgroup.heading-component {
  position: relative;
  padding-top: 0;
  overflow: visible;
  width: 100%;
  z-index: 1;

  @media (max-width: 768px) {
		width: 100%;
    overflow: hidden;
    padding-top: 0;
	}

  @media (max-width: 472px) {
		overflow: initial;
	}

  .english {
    position: absolute;
    font-family: "futura-pt-bold", sans-serif;
    font-weight: bold;
    font-style: normal;
    text-transform: lowercase;
    line-height: 1.3;
    background: linear-gradient(90deg, rgba(249, 192, 255, 0.25) 50%, #CCE4FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: max-content;
    top: 0;
    left: -100%;
    right: -100%;
    margin: auto;
    transform: skewX(-10deg);
    z-index: -1;
    &:first-letter {
      text-transform: uppercase;
    }

    @media (max-width: 768px) {
      top: calc(100vw * (6 / 375));
    }
  }

  .heading {
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    @media (max-width: 768px) {
      font-size: calc(100vw * (26 / 375));
      gap: calc(100vw * (16 / 375))
    }
    
    &::after {
      content: '';
      display: block;
      background-color: #1a1a1a;
      width: 64px;
      height: 4px;
      @media (max-width: 768px) {
        width: calc(100vw * (40 / 375));
        height: calc(100vw * (2 / 375));
      }
    }

    small {
      font-size: 20px;
    }

    &.application {
      color: #000000;
      font-size: 24px;
      line-height: 1.6em;
      @media (max-width: 768px) {
        font-size: calc(100vw * (20 / 375));
      }

      &::after {
        content: '';
        display: block;
        background-color: #000000;
        width: 40px;
        height: 2px;
      }
    }
  }
}

.section-sub-title {
  font-size: 3.2rem;
  line-height: 1.6em;
  font-weight: bold;
  background: linear-gradient(90deg, #CA95DB 20%, #1D3381 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;

  @media (max-width: 768px) {
    font-size: calc(100vw * (23 / 375));
  }

  .sp_only {
    display: none;

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

  .pc_only {
    @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) {
    letter-spacing: -0.05em;
    font-size: calc(100vw * (14 / 375));
  }

  .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;

  &.white {
    .english {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.11) 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: calc(100vw * (24 / 375));
  }

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

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

.pc_only {
  display: none;
  @media (min-width: 769px) {
    display: block;
  }
}