@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgb(255, 255, 255);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 950px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
.hoge{
	@include size(width, 1440);
}
*/
html {
  scroll-behavior: inherit;
}

.sp, .-sp {
  display: none !important;
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
}

.yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.yt iframe {
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.remodal-close {
  left: auto;
  right: 0;
  top: -35px;
}
.remodal-close:before {
  font-size: 35px;
}

#activatorsPage {
  padding-bottom: 80px;
  /*
    og
  */
  /*
    /og
  */
}
#activatorsPage .pc, #activatorsPage .-pc {
  display: block !important;
}
#activatorsPage .kvSec {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: #fff;
}
#activatorsPage .kvSec h1 {
  padding: 0;
  margin: 0;
}
#activatorsPage .kvSec__img {
  line-height: 0;
  position: relative;
}
#activatorsPage .kvSec__img img {
  width: 100%;
}
#activatorsPage .kvSec__txtBlock {
  position: absolute;
  left: 2.9166666667vw;
  bottom: 11.25vw;
  font-size: 4.1666666667vw;
}
@media all and (max-width: 1200px) {
  #activatorsPage .kvSec__txtBlock {
    left: 35px;
    bottom: 135px;
    font-size: 50px;
  }
}
#activatorsPage .kvSec__txtBlock__txt {
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 1.3; /* 42.553% */
}
#activatorsPage .kvSec__bnr {
  background: #fff;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  right: 40px;
  bottom: 40px;
  height: 72px;
}
#activatorsPage .kvSec__bnr__img {
  height: 100%;
}
#activatorsPage .kvSec__bnr__img img {
  width: auto;
  height: 100%;
}
#activatorsPage .kvSec__bnr__txt {
  color: var(--blk, #000);
  font-size: 16px;
  font-weight: 700;
  line-height: 190%; /* 30.4px */
  letter-spacing: 0.32px;
  padding: 0 25px;
}
#activatorsPage .kvSec__bnr__txt:after {
  content: "";
  background: url(../../img/shared/arw.svg) center center/100% auto no-repeat;
  display: inline-block;
  width: 14px;
  height: 9px;
  margin-left: 12px;
}
#activatorsPage .lclNav {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  background: #F6F6F6;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  padding: 40px 30px;
}
#activatorsPage .lclNav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  gap: 30px;
}
#activatorsPage .topBnr {
  text-align: center;
  line-height: 0;
  padding-top: 50px;
}
#activatorsPage .topBnr a {
  display: inline-block;
  margin: 0 auto;
  width: 600px;
}
#activatorsPage .topBnr a img {
  width: 100%;
}
#activatorsPage .l-cnt {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 960px;
  margin: 0 auto;
}
#activatorsPage .sec {
  padding-top: 80px;
}
#activatorsPage .sec__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}
#activatorsPage .sec__list {
  max-width: 960px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 48px 30px;
}
#activatorsPage .sec__list .thum {
  width: calc(33.33% - 20px);
}
#activatorsPage .moreBlock {
  margin-top: 48px;
}
#activatorsPage .moreBlock .moreBtn a {
  cursor: pointer;
  display: block;
  border: 1px solid #DDD;
  text-align: center;
  color: #757575;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 20px 0;
}
#activatorsPage .moreBlock .sec__list {
  display: none;
}
#activatorsPage .thum a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  gap: 16px;
}
#activatorsPage .thum a[href=""] {
  pointer-events: none;
}
#activatorsPage .thum a:hover figure img:not([class=-ico]) {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.6;
}
#activatorsPage .thum a img.pdficon {
  display: none;
}
#activatorsPage .thum figure {
  background: #000;
  overflow: hidden;
  position: relative;
}
#activatorsPage .thum figure img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#activatorsPage .thum figure .-ico {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 56px;
}
#activatorsPage .thum__infoClm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#activatorsPage .thum__type {
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  padding: 0 10px;
  border-radius: 50px;
  color: #fff !important;
  font-family: "Helvetica Neue";
  font-size: 12px;
  line-height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
}
#activatorsPage .thum__date {
  color: #757575;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-weight: 500;
  line-height: 1; /* 100% */
}
#activatorsPage .thum__ttl {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.28px;
}
#activatorsPage .thum__txt {
  font-size: 12px;
  line-height: 1.5;
}
#activatorsPage .thum__tagList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5em;
}
#activatorsPage .thum__addLink {
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.24px;
  margin-top: 1em;
}
#activatorsPage .thum__addLink a {
  text-decoration: underline;
  line-height: normal;
  display: inline-block;
}
#activatorsPage .thum__addLink a img {
  width: 2em;
}
#activatorsPage .thum__addBtn {
  margin-top: 15px;
  font-size: 12px;
}
#activatorsPage .thum__addBtn a {
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  background: #757575;
  color: #fff;
  padding: 0.3em 1.5em;
}
#activatorsPage .thum .js-ymodal figure {
  background: #000;
}
#activatorsPage .thum .js-ymodal figure .-movThum {
  opacity: 0.5;
}
#activatorsPage .aboutSec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#activatorsPage .aboutSec__txtarea {
  width: 630px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
#activatorsPage .recruitCnt {
  margin-top: -5px;
}
#activatorsPage .recruitCnt__topTxt {
  font-size: 16px;
  font-weight: 400;
}
#activatorsPage .recruitCnt__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
#activatorsPage .recruitCnt__clm .recruitBox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F6F6F6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 42px 32px;
  border-radius: 4px;
  gap: 13px;
  width: calc(50% - 15px);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#activatorsPage .recruitCnt__clm .recruitBox__txtarea p {
  margin-bottom: 12px;
}
#activatorsPage .recruitCnt__clm .recruitBox__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7; /* 170% */
}
#activatorsPage .recruitCnt__clm .recruitBox__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75; /* 175% */
}
#activatorsPage .recruitCnt__clm .recruitBox__note {
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.66; /* 166.667% */
}
#activatorsPage .recruitCnt__clm .recruitBox__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#activatorsPage .recruitCnt__clm .recruitBox__btn a {
  font-weight: 700;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 7px 15px 7px 25px;
  font-size: 12px;
}
#activatorsPage .og-box-link {
  width: 100%;
  border: 1px solid #e5e5e5;
}
#activatorsPage .link-hover:hover {
  opacity: 0.7;
}
#activatorsPage .og-box .og-box-image {
  min-width: auto;
}
#activatorsPage .og-box .og-box-image .image-item {
  width: 270px;
  height: auto;
}
#activatorsPage .og-box-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0px;
  width: calc(100% - 270px);
  padding-left: 30px;
  padding-right: 30px;
  border: none;
  border-left: 1px solid #e5e5e5;
}
#activatorsPage .og-box .og-title {
  padding-bottom: 0;
  line-height: 1.4;
}
#activatorsPage .og-box .og-tag {
  color: #757575 !important;
  font-size: 14px;
}
#activatorsPage .og-box-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  gap: 5px;
}
#activatorsPage .og-box-date {
  color: #757575 !important;
  font-size: 14px;
}
#activatorsPage .og-box-cat {
  background: #000;
  color: #fff !important;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 12px;
}
#activatorsPage .og-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
#activatorsPage .og-box-link {
  display: inline-block;
}
#activatorsPage .og-box-image {
  min-width: 300px;
}
#activatorsPage .og-box-text {
  max-width: 660px;
  padding: 18px 2.43vw 17px 2.08vw;
}
#activatorsPage .og-box .og-title {
  font-size: 20px;
  line-height: 38px;
  font-weight: 500;
}
#activatorsPage .og-box .og-text {
  font-size: 14px;
  color: #757575 !important;
}/*# sourceMappingURL=substyle.css.map */