@charset "UTF-8";
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  background-color: #111111;
  color: #FFFFFF;
  min-width: 1040px; }
  @media screen and (max-width: 768px) {
    html,
    body {
      min-width: 320px; } }

.top {
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center; }

* {
  box-sizing: border-box; }

a {
  color: #FFFFFF; }

.top_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 32px 40px; }
  @media screen and (max-width: 768px) {
    .top_header {
      display: none; } }

.top_header_logo {
  height: 24px;
  margin: 0; }

.top_header_logo img {
  width: auto;
  height: 100%; }

.header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 32px 40px; }

.header_logo {
  height: 24px;
  margin: 0; }

.header_logo img {
  width: auto;
  height: 100%; }

.share {
  display: grid;
  grid-template-columns: 1fr 32px 32px 32px;
  grid-gap: 20px;
  align-items: center;
  font-family: "Athelas";
  font-size: 24px; }
  @media screen and (max-width: 768px) {
    .share {
      grid-gap: 16px; } }

.share_title {
  display: grid;
  grid-template-columns: 100px 52px;
  grid-gap: 32px;
  align-items: center;
  justify-content: end;
  margin: 0;
  text-align: right; }
  @media screen and (max-width: 768px) {
    .share_title {
      grid-template-columns: 100px 36px;
      grid-gap: 16px; } }

.share_title:after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: #FFFFFF; }
  @media screen and (max-width: 768px) {
    .share_title:after {
      width: 32px; } }

.share_icon {
  margin: 0; }

.hero {
  text-align: center; }

.hero_title {
  width: 888px;
  margin: 0 auto;
  padding: 180px 0 0; }
  @media screen and (max-width: 768px) {
    .hero_title {
      width: 280px;
      padding: 104px 0 0; } }

.hero_title img {
  width: 100%;
  height: auto; }

.hero_subtitle {
  margin: 80px auto 0;
  font-family: "YuMincho", "Yu Mincho";
  font-weight: 400;
  font-size: 56px;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 768px) {
    .hero_subtitle {
      margin: 48px auto 0;
      display: block;
      font-size: 32px;
      line-height: 76px; } }

.hero_subtitle_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%; }

.hero_subtitle_top {
  margin: -30px 4px 0;
  display: block;
  font-size: 72px; }
  @media screen and (max-width: 768px) {
    .hero_subtitle_top {
      font-size: 56px;
      margin: -16px 4px 0; } }

.hero_subtitle_bottom {
  margin: 0 4px -30px;
  display: block;
  font-size: 72px; }
  @media screen and (max-width: 768px) {
    .hero_subtitle_bottom {
      font-size: 56px;
      margin: 0 4px -16px; } }

.hero_text {
  font-family: "YuMincho", "Yu Mincho";
  font-weight: 400;
  font-size: 24px;
  line-height: 48px;
  margin: 46px 0 0 0; }
  @media screen and (max-width: 768px) {
    .hero_text {
      font-size: 16px;
      line-height: 32px;
      margin: 0 16px; } }

@media screen and (max-width: 768px) {
  .hero_text br {
    display: none; } }

.hero_about {
  margin: 24px 0 0; }

.hero_about a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 40px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: .5s;
  font-size: 16px; }

.hero_about a:hover {
  background: #FFFFFF;
  color: #111111; }

.hero_share {
  display: none; }
  @media screen and (max-width: 768px) {
    .hero_share {
      display: flex;
      margin: 64px auto 0;
      justify-content: center; } }

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 104px auto 0;
  justify-content: center;
  gap: 40px;
  width: 1040px; }
  @media screen and (max-width: 768px) {
    .buttons {
      width: auto;
      grid-template-columns: 1fr;
      margin: 80px 24px 0; } }

.button {
  margin: 0;
  text-align: center; }

.button a {
  text-decoration: none;
  color: #FFFFFF;
  padding: 16px 0 20px;
  background: linear-gradient(270deg, rgba(241, 74, 21, 0.3) 0%, #F14A15 48.96%, rgba(241, 74, 21, 0.3) 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  display: block;
  margin: 0;
  transition: background .5s; }
  @media screen and (max-width: 768px) {
    .button a {
      padding: 16px 0 20px;
      display: block; } }

.button a:hover {
  background: #F14A15; }

.button.is-subcolor a {
  background: linear-gradient(270deg, rgba(241, 180, 21, 0.3) 0%, #F1B415 48.96%, rgba(241, 180, 21, 0.3) 100%); }

.button.is-subcolor a:hover {
  background: #F1B415; }

.button_target {
  font-size: 16px;
  background: #FFFFFF;
  padding: 4px 8px;
  color: #F14A15;
  font-weight: bold; }

.button_target.is-subcolor {
  color: #F1B415; }

.button_text {
  display: block;
  font-size: 32px;
  margin: 8px 0 0 0; }
  @media screen and (max-width: 768px) {
    .button_text {
      font-size: 24px; } }

.suffering {
  background: #F14A15;
  padding: 120px 0 160px;
  margin: 120px 0 0;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px)); }

.suffering_title {
  text-align: center;
  font-family: "YuMincho", "Yu Mincho";
  font-size: 32px; }

.suffering_text {
  width: 560px;
  margin: 24px auto 0;
  font-size: 16px;
  line-height: 32px;
  font-weight: bold;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .suffering_text {
      width: auto;
      margin: 24px 24px 0; } }

.suffering_strong {
  background: #FFFFFF;
  color: #111111;
  padding: 4px 8px;
  margin: 0 8px; }

.mission {
  background: #FFFFFF;
  width: 900px;
  margin: -80px auto;
  z-index: 1;
  position: relative;
  box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: #111111;
  padding: 120px 0; }
  @media screen and (max-width: 768px) {
    .mission {
      width: auto;
      margin: -80px 24px 0;
      padding: 120px 24px; } }

.mission_title {
  font-family: "YuMincho", "Yu Mincho";
  margin: 0;
  font-size: 32px; }

.mission_logo {
  margin-right: 16px; }

.mission_text {
  font-size: 16px;
  line-height: 32px;
  margin: 24px 0 0;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    .mission_text {
      text-align: left; } }

.mission_strong {
  background: #111111;
  color: #FFFFFF;
  padding: 4px 8px;
  margin: 0 8px; }
  @media screen and (max-width: 768px) {
    .mission_strong {
      margin: 0; } }

.system {
  background: #111111;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
  padding: 160px 0 160px;
  margin: -80px 0 0;
  position: relative; }
  @media screen and (max-width: 768px) {
    .system {
      padding: 160px 24px; } }

.system:before {
  content: '';
  background-color: rgba(68, 68, 68, 0.5);
  background-image: url("/img/n.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }
  @media screen and (max-width: 768px) {
    .system:before {
      background-size: 140% auto;
      background-position: center 80px; } }

.system_title {
  text-align: center;
  font-family: "YuMincho", "Yu Mincho";
  font-size: 32px; }

.system_text {
  width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 32px;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .system_text {
      width: auto; } }

.features {
  list-style: none;
  width: 1040px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 320px 320px 320px;
  padding: 0;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .features {
      width: auto;
      display: block; } }

.feature:nth-child(3n-1) {
  margin-top: 24px; }

.feature:nth-child(3n) {
  margin-top: 48px; }

.feature_visual {
  background: #FFFFFF;
  width: 320px;
  text-align: center;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 calc(100% - 20px)); }
  @media screen and (max-width: 768px) {
    .feature_visual {
      width: 100%; } }

.feature_title {
  font-family: "YuMincho", "Yu Mincho";
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
  margin: 32px 0 0; }

.feature_text {
  font-size: 16px;
  line-height: 32px;
  text-align: justify; }

.sample {
  background: #111111;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
  padding: 160px 0 160px;
  margin: -80px 0 0;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .sample {
      padding: 160px 24px 160px; } }

.sample_title {
  font-family: "YuMincho", "Yu Mincho";
  font-size: 32px; }

.sample_text {
  margin-top: 40px;
  font-size: 24px; }

.sample_visuals {
  display: grid;
  width: 900px;
  margin: 40px auto 0;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px; }
  @media screen and (max-width: 768px) {
    .sample_visuals {
      width: auto; } }

.sample_visual img {
  width: 100%; }

.sample_cv a {
  display: grid;
  grid-template-columns: 136px 1fr;
  align-items: center;
  font-size: 24px;
  text-align: left;
  width: 900px;
  margin: 40px auto 0;
  column-gap: 24px;
  color: #FFFFFF;
  text-decoration: none; }
  @media screen and (max-width: 768px) {
    .sample_cv a {
      width: auto;
      grid-template-columns: 1fr;
      row-gap: 24px;
      text-align: center; } }

.sample_cv a .sample_cv_text_inner {
  display: inline-block;
  padding: 4px 0;
  position: relative; }

.sample_cv a .sample_cv_text_in:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-bottom: 1px solid #FFFFFF;
  width: 0;
  transition: .5s; }

.sample_cv a:hover .sample_cv_text_in:before {
  width: 100%; }

.sample_cv_visual {
  height: 136px;
  width: 136px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .sample_cv_visual {
      margin: 0 auto; } }

.sample_cv_visual img {
  width: 100%; }

.play a {
  text-decoration: none;
  color: #FFFFFF;
  padding: 24px 0 32px;
  background: linear-gradient(270deg, rgba(241, 74, 21, 0.3) 0%, #F14A15 48.96%, rgba(241, 74, 21, 0.3) 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  display: block;
  margin: 80px auto 0;
  transition: background .5s;
  width: 900px; }
  @media screen and (max-width: 768px) {
    .play a {
      padding: 24px 0 32px;
      display: block;
      width: auto;
      margin: 80px 24px 0; } }

.play a:hover {
  background: #F14A15; }

.play.is-subcolor a {
  background: linear-gradient(270deg, rgba(241, 180, 21, 0.3) 0%, #F1B415 48.96%, rgba(241, 180, 21, 0.3) 100%); }

.play.is-subcolor a:hover {
  background: #F1B415; }

.play_target {
  font-size: 16px;
  background: #FFFFFF;
  padding: 4px 8px;
  color: #F14A15;
  font-weight: bold; }

.play_target.is-subcolor {
  color: #F1B415; }

.play_text {
  display: block;
  font-size: 32px;
  margin: 8px 0 0 0; }
  @media screen and (max-width: 768px) {
    .play_text {
      font-size: 24px; } }

.flow {
  background: #111111;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
  padding: 160px 0 160px;
  margin: -80px 0 0;
  text-align: center;
  position: relative; }

.flow:before {
  content: '';
  background-color: rgba(68, 68, 68, 0.5);
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

.flow_title {
  font-family: "YuMincho", "Yu Mincho";
  font-size: 32px; }

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1040px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .steps {
      width: auto;
      grid-template-columns: 1fr; } }

.step_text {
  margin-top: 40px;
  font-size: 24px; }

.about {
  background: #111111;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
  padding: 160px 0 160px;
  margin: -80px 0 0;
  position: relative; }
  @media screen and (max-width: 768px) {
    .about {
      padding: 160px 24px; } }

.about_title {
  text-align: center;
  font-family: "YuMincho", "Yu Mincho";
  font-size: 32px; }

.about_text {
  width: 560px;
  margin: 24px auto;
  font-size: 16px;
  line-height: 32px;
  text-align: justify; }
  @media screen and (max-width: 768px) {
    .about_text {
      width: auto; } }

.about_visual {
  text-align: center;
  width: 629px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .about_visual {
      width: auto; } }

.about_visual img {
  width: 100%;
  height: auto; }

.top_footer {
  background: #111111;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
  padding: 80px 0 40px;
  margin: -80px 0 0;
  text-align: center; }

.top_footer_menu {
  display: inline-block; }

.top_footer_menu a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 20px; }

.footer {
  background: #111111;
  padding: 80px 0 40px;
  text-align: center; }

.footer_menu {
  display: inline-block; }

.footer_menu a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 20px; }

.main {
  font-size: 16px;
  line-height: 2; }

.main_inner {
  max-width: 900px;
  padding: 0 40px;
  margin: 0 auto; }

.main_title {
  font-size: 48px;
  margin-top: 96px; }

.main_subtitle {
  font-size: 32px;
  margin-top: 64px; }
