@charset "UTF-8";
/*
 * Mixin printing a linear-gradient
 * as well as a plain color fallback
 * and the `-webkit-` prefixed declaration
 * @access public
 * @param {Keyword | Angle} $direction - Linear gradient direction
 * @param {Arglist} $color-stops - List of color-stops composing the gradient
 *
 * @see https://www.sitepoint.com/building-linear-gradient-mixin-sass/
 */
/*共通*/

@media only screen and (min-width: 768px) {
  .container-inner-900 {
    max-width: 900px;
    margin: 0 auto;
  }

  .container-inner-950 {
    max-width: 950px;
    margin: 0 auto;
  }

  .container-inner-1000 {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.end {
  margin-top: 65px;
  text-align: center;
  color: #ef8a08;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .end {
    margin-top: 20px;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
  }
}

.end-text--mini {
  margin-top: 10px;
  font-size: 18px;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .end-text--mini {
    font-size: 14px;
  }
}

/*ヘッダー*/

/* TOPのSPヘッダー非表示時 */
.sp-header-none .header-logo {
  opacity: 0;
  visibility: hidden;
}

/*トップ*/

.top-message-title--mini {
  font-family: "Noto Serif JP";
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.2em;
  color: #3eb134;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .top-message-title--mini {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0.14em;
  }
}

.top-message-catchcopy {
  font-family: "Noto Serif JP";
  font-size: 26px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .top-message-catchcopy {
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-top: 20px;
  }
}

.top-message-text {
  font-size: 16px;
  line-height: 2.5;
  margin-top: 50px;
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .top-message-text {
    font-size: 15px;
    line-height: 2;
    margin-top: 30px;
    letter-spacing: 0.03em;
  }
}

.top-message-img {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .top-message-img {
    max-width: none;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 48px;
  }
}

.top-vision-img {
  width: 142.66667px;
  margin: 0 auto;
  margin-top: 60px;
}

@media only screen and (max-width: 767px) {
  .top-vision-img {
    width: 85px;
    margin-top: 30px;
  }
}

.top-vision-illust {
  margin: 0 auto;
  width: 241px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .top-vision-illust {
    margin-top: 15px;
    width: 45.3125vw;
  }
}

.top-mission-img {
  width: 183px;
  margin: 0 auto;
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .top-mission-img {
    width: 108px;
    margin-top: 40px;
  }
}

.top-url-img {
  width: 270.33333px;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .top-url-img {
    width: 180px;
  }
}

.top-url-img a {
  display: inline-block;
  position: relative;
  padding: 0 0.2em;
}

.top-url-img a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: -0.1em;
}

/*トップ動画*/

.top-movie {
  width: 560px;
  margin: 0 auto;
  margin-top: 90px;
}

.top-movie iframe {
  width: 560px;
  height: 315px;
}

.top-movie-caption {
  font-size: 16px;
  line-height: 1;
  margin-left: 170px;
}

@media only screen and (max-width: 767px) {
  .top-movie {
    padding-top: 56.25%;
    width: 100%;
    position: relative;
    margin-top: 20px;
  }

  .top-movie iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  .top-movie-caption {
    margin-top: 10px;
    font-size: 10px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 400px) {
  .top-movie-wrap iframe {
    height: 200px;
  }

  .top-movie-caption {
    margin-top: 50px;
  }
}

/*トップボタン*/

/*ノーマル*/

.top-application-button {
  text-align: center;
  display: block;
  color: #3eb134;
  text-decoration: none;
  position: relative;
  background-color: #ffe400;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  font-weight: bold;
}

.top-application-button::after {
  content: "\0203a";
  margin-left: 0.3em;
  position: absolute;
  right: 15px;
}

/***---　スマートフォン　ここから---***/
@media only screen and (max-width: 767px) {
  .top-application-button {
    padding: 10px;
  }

  .top-application-button::after {
    font-size: 28px;
    top: -7px;
  }
}

/***---　//スマートフォン　ここまで---***/
/***---　PC　ここから---***/
@media only screen and (min-width: 768px) {
  .top-application-button {
    letter-spacing: 3px;
    width: 300px;
    padding: 20px 12px;
    transition: opacity 0.3s;
  }

  .top-application-button:hover {
    opacity: 0.7;
  }

  .top-application-button::after {
    font-size: 30px;
    top: -1px;
  }
}

/*長い*/

/*フェアの魅力*/

.feature-heading-catchcopy {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .feature-heading-catchcopy {
    font-size: 17px;
    letter-spacing: 0.04em;
    line-height: 1.6;
  }

  .feature-heading-catchcopy.-lg{
    font-size: 20px;
  }
}

.feature-heading-wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: clamp(25px, 6.25vw, 50px);
}

.feature-heading-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
}

@media only screen and (max-width: 767px) {
  .feature-heading-text {
    font-size: 15px;
    letter-spacing: 0.03em;
  }
}

.feature-section-title {
  margin-top: 60px;
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.14em;
}

@media only screen and (max-width: 767px) {
  .feature-section-title {
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }
}

.feature-section-subtitle {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .feature-section-subtitle {
    font-size: 12px;
    margin-top: 5px;
  }
}

.feature-section-title--line {
  text-align: center;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.14em;
  padding: 20px 0;
  border-top: 1px solid #3eb134;
  border-bottom: 1px solid #3eb134;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .feature-section-title--line {
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-top: 25px;
    padding: 10px 0;
  }
}

.feature-section-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.14em;
  margin-top: 35px;
}

@media only screen and (max-width: 767px) {
  .feature-section-text {
    font-size: 15px;
    letter-spacing: 0.03em;
    margin-top: 20px;
  }
}

/*feature flex*/

.feature-section-flex-wrap {
  margin-top: 35px;
  display: flex;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .feature-section-flex-wrap {
    flex-direction: column;
    margin-top: 20px;
  }
}

.feature-section-flex-wrap img {
  width: 100%;
}

.feature-section-flex-item {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .feature-section-flex-item {
    width: 100%;
  }
}

.feature-section-flex-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .feature-section-flex-title {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.004em;
  }
}

.feature-section-flex-img {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .feature-section-flex-img {
    margin-top: 20px;
  }
}

.feature-message {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-weight: bold;
  padding: 40px 50px;
  background-color: #fcf9c1;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .feature-message {
    font-size: 13px;
    padding: 20px 15px;
    line-height: 2;
  }
}

.support-wrap {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .support-wrap {
    padding-bottom: 50px;
  }
}

/*grid*/

.merit-grid-wrap {
  width: 900px;
  margin-top: 50px;
  display: grid;
  justify-content: center;
  grid-template-columns: 65px 465px 370px;
  grid-template-rows: 70px 180px;
}

@media only screen and (max-width: 767px) {
  .merit-grid-wrap {
    width: 100%;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    margin-top: 25px;
  }
}

.merit-grid-num {
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .merit-grid-num {
    margin-right: 0;
  }
}

/*itemタイトル*/
.merit-grid-title {
  grid-row: 1/2;
  grid-column: 2/3;
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .merit-grid-title {
    margin-right: 50px;
  }
}

/*画像位置*/
.merit-grid-image {
  grid-row: 1/2;
  grid-column: 3/4;
}

@media only screen and (max-width: 767px) {
  .merit-grid-image {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

@media only screen and (max-width: 767px) {
  .merit-grid-image img {
    width: 100%;
  }
}
/*テキスト位置*/
.merit-grid-text {
  grid-row: 2/3;
  grid-column: 2/3;
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .merit-grid-text {
    grid-row: 3/4;
    grid-column: 1/3;
    margin-right: 0px;
  }
}

.merit-num {
  grid-row: 1/2;
  grid-column: 1/2;
  max-width: none;
  display: block;
  width: 70px;
  margin-left: -35px;
}

@media only screen and (max-width: 767px) {
  .merit-num {
    width: 55px;
    margin-left: 0px;
  }
}

/*サポートflex*/

.support-flex-item .feature-section-flex-title {
  position: relative;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .support-flex-item .feature-section-flex-title {
    margin-left: 55px;
    margin-top: 0px;
  }
}

.support-flex-item .feature-section-flex-title::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 95px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -80px;
}

@media only screen and (max-width: 767px) {
  .support-flex-item .feature-section-flex-title::before {
    width: 60px;
    height: 75px;
    left: -55px;
  }
}

/*program*/

.program-section-text {
  font-size: 16.09px;
  letter-spacing: 0.14em;
  line-height: 2;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .program-section-text {
    font-size: 15px;
    letter-spacing: 0.03em;
    letter-spacing: 0.1em;
    margin-top: 15px;
  }
}

.program-section-flex-wrap {
  display: flex;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .program-section-flex-wrap {
    flex-direction: column;
    margin-top: 20px;
  }
}

.program-section-flex-wrap img {
  width: 100%;
}

.program-section-flex-item {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .program-section-flex-item {
    width: 100%;
  }
}

.program-section-flex-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .program-section-flex-title {
    font-size: 18px;
    letter-spacing: 0.08em;
  }
}

.program-section-flex-img {
  margin-top: 20px;
}

/*case*/

.results-info {
  align-items: center;
}

.results-info p {
  line-height: 2.2em;
}

.results-university-title {
  letter-spacing: 0.16em;
}

.h-type01 + .area-voice {
  margin-top: 55px;
}

.area-voice section:not(:first-of-type) {
  padding-top: 30px;
}

.area-voice .voice-text .name {
  font-size: 16px;
}

.area-voice.typeB .voice-text {
  font-weight: normal !important;
}

.area-voice .voice-catch {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .voice-catch {
    letter-spacing: 0em;
  }
}

.voice-heading {
  margin-bottom: 20px;
}

.voice-heading {
  margin-bottom: 30px;
}

.area-voice section {
  padding-bottom: 40px;
}

.area-voice .voice-catch.typeB {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .area-voice .voice-catch.typeB {
    letter-spacing: 0;
    margin-bottom: 10px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .results-info .layout-right .inner {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .area-voice .voice-text .voice-subtitle img {
    width: 25vw;
  }

  .h-type01 + .area-voice {
    margin-top: 15px;
  }

  .area-voice .voice-catch {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .area-voice .voice-text .name {
    font-size: 14px;
  }

  .voice-text {
    margin-bottom: 20px;
  }

  .voice-heading {
    margin-bottom: 20px;
  }
}

/* apply */

.apply-title {
  font-size: 22px;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .apply-title {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}

.flow-list {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .flow-list {
    margin-top: 20px;
  }
}

.flow-item {
  position: relative;
  padding-left: 35px;
  font-size: 16px;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .flow-item {
    padding-left: 30px;
    font-size: 14px;
  }
}

.flow-item:before {
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 8px;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .flow-item:before {
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 5px;
  }
}

.flow-item:first-child:before {
  background-image: url(../images/apply/icon-flow1.png);
}

.flow-item:nth-child(2):before {
  background-image: url(../images/apply/icon-flow2.png);
}

.flow-item:nth-child(3):before {
  background-image: url(../images/apply/icon-flow3.png);
}

.flow-item:nth-child(4):before {
  background-image: url(../images/apply/icon-flow4.png);
}

.flow-item:nth-child(5):before {
  background-image: url(../images/apply/icon-flow5.png);
}

.flow-item:nth-child(6):before {
  background-image: url(../images/apply/icon-flow6.png);
}

.apply-download-link {
  border-bottom: solid 1px #3eb134;
}

.apply-download-text {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-top: 35px;
  padding-left: 0 !important;
}

@media only screen and (max-width: 767px) {
  .apply-download-text {
    padding-left: 30px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}
.marker02 {
  padding: 0 0.1em 0 0.05em;
}

/*ヘッダー周り*/

@media only screen and (max-width: 767px) {
  .sp-header-none {
    background-color: rgba(0, 0, 0, 0);
    border-bottom: none;
    /* transition:0.3s; */
  }

  #js-top-header.js-openNav {
    background-color: #fff;
    border-bottom: 1px solid #3eb134;
    transition: none;
  }


  .sp-header-display {
    background-color: #fff;
    border-bottom: 1px solid #3eb134;
    /* transition:0.3s; */
  }

  .top-header-img {
    display: none;
  }

  .menu_icon_sp {
    margin-top: 7px;
  }

  .menu-img {
    background-color: #fff;
    text-align: center;
  }

  .menu-img img {
    padding: 20px 0 13px 0;
    width: 80px;
  }

  .menu-close-button {
    text-align: center;
    color: #fff;
    padding: 15px 0;
  }

  .header-logo {
    opacity: 1;
  }

  .marker02 {
    padding: 0 0.1em 0.2em 0em;
  }

  .header-menu-display {
    position: absolute;
    width: 80px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .header-close {
    opacity: 1;
    position: relative;
  }

  .header-open {
    opacity: 0;
  }

  .hamburber a img {
    width: 50px;
    margin-top: 2px;
  }

  p.left-text.head2 {
    display: grid;
    width: 120px;
  }

  .globalnav ul li {
    font-size: 16px;
  }

  .menu_icon_sp {
    margin-top: 12px;
  }

  .footer-list {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 16px;
  }

  .rules-text {
    font-size: 15px !important;
    line-height: 2 !important;
    letter-spacing: 0.03em !important;
  }


  .contact-text,
  .magazine-text {
    font-size: 15px !important;
    line-height: 2 !important;
    letter-spacing: 0.03em !important;
  }
}
