@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');
/*base*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

header, footer, nav, section, article {
  position: relative;
  display:block;
}

html{
  font-size: 62.5%;
  overflow-y: scroll;
}

body{
  position: relative;
  font-size: 1.6em;
  color: #333333;
  background: #ffffff;
  font-family: 'Helvetica','Helvetica Neue','Avenir','Arial','メイリオ',sans-serif;
  overflow: hidden;
  line-height: 1.5;
}

img {
  height: auto;
}


/*float*/
.cl{
  clear: both;
}
.clearfix{
  overflow: hidden;
}
* html .clearfix { zoom: 1; }  /* IE6 */
*:first-child+html .clearfix{ zoom: 1; }  /* IE7 */

/*text-align*/
.txt_alignleft {
  text-align: left !important;
}
.txt_alignright {
  text-align: right !important;
}
.txt_aligncenter {
  text-align: center !important;
}

/*vertical-align*/
.txt_aligntop {
  vertical-align: top !important;
}
.txt_alignmiddle {
  vertical-align: middle !important;
}
.txt_alignbottom {
  vertical-align: bottom !important;
}

/*flex-center*/
.flex_center {
  justify-content: center;
  align-items: center;
}

/*heading*/
h2 {
  text-align: center;
}


/*link*/
a img {
  border-style: none;
}

a:link{
  text-decoration: none;
}
a:active{
  text-decoration: none;
}

a:visited{
  color: #232323;
}

a:hover{
  text-decoration: none;
}

/*header*/
header {
  position: relative;
  max-width: 1151px;
  width: 100%;
  height: 90px;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
header .logo img {
  max-width: 210px;
}
header .header_ribbon {
  width: 180px;
}
header .header_ribbon img {
  width: 100%;
}

/*btn*/
a.btn {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-bottom: 5px;
  padding: 25px 30px 25px 60px;
  color: #fff;
  background-color: #c70000;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0;
  font-weight: normal;
  line-height: 2rem;
  border-radius: 5px;
  box-shadow: 0 5px 0 #a40004;
  transition: all 0.18s;
}
a.btn:hover {
  margin-top: 5px;
  margin-bottom: 0px;
  box-shadow: none;
  background-color: #d70004;
}
a.btn::before,
a.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 100px);
  margin: auto;
  vertical-align: middle;
  transition: all 0.18s;
}
a.btn::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
}
a.btn::after {
  width: 4px;
  height: 4px;
  margin-left: 6px;
  border-top: 2px solid #d70004;
  border-right: 2px solid #d70004;
  transform: rotate(45deg);
}
a.btn:hover::after  {
  left: calc(50% - 98px);
}

/*common*/
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 10px;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.content_wrap {
  max-width: 1170px;
  margin: 0 auto;
}
.numbering::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Farro', sans-serif;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  color: #fff;
}
.numbering:nth-child(1)::before {
  content: "1";
}
.numbering:nth-child(2)::before {
  content: "2";
}
.numbering:nth-child(3)::before {
  content: "3";
}
.numbering:nth-child(4)::before {
  content: "4";
}
.highlight {
  background: linear-gradient(transparent 60%, #FFD6D6 60%);
}

/* title style */
.content_sub_title {
  display: block;
  margin-bottom: 13px;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
}
.content_title {
  position: relative;
  display: block;
  margin: 0 auto;
  font-size: 2.4rem;
  color: #0066A9;
}
.content_title sup {
  font-size: 70%;
}
.content_title::before,
.content_title::after {
  content: "";
  width: 2.5px;
  height: 22px;
  background-color: #0066A9;
  transform: skew(30deg);
  border-radius: 30px;
  display: block;
  position: absolute;
  left: -20px;
  top: 7px;
}
.content_title::after {
  right: -20px;
  left: auto;
  transform: skew(-30deg);
}

/* top visual */
.top_visual {
  position: relative;
  height: 500px;
}
.top_visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 9em solid transparent;
  border-right: 9em solid #50c8ff;
  z-index: 1;
}
.top_visual::after {
  content: "大学生協おすすめ";
  display: block;
  position: absolute;
  top: 25px;
  right: 9px;
  width: 76px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  transform: rotate(45deg);
  color: #fff;
  z-index: 2;
}
.top_visual .top_logo {
  width: 100%;
  padding: 30px 10px;
}
.top_visual .top_logo img {
  max-width: 155px;
}
.top_visual .content_wrap {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.top_visual .content_wrap .top_catch_wrap {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100% - 92px);
}
.top_visual .content_wrap .top_catch_area {
  position: relative;
  max-width: 460px;
  padding: 0 50px;
  margin-bottom: 30px;
  text-shadow: 0px 0px 4px rgb(255 255 255 / 80%), 0px 0px 15px rgb(255 255 255 / 80%);
  z-index: 1;
}
.top_visual .content_wrap .top_catch_wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  inset: 0 0 0 0;
  background: url(../img/studentlp8/top_catch_blur.webp) center center no-repeat;
  background-size:contain;
  opacity: 0.7;
  z-index: 0;
}
.no-webp body .top_visual .content_wrap .top_catch_wrap::after {
  background: url(../img/studentlp8/top_catch_blur.png) center center no-repeat;
  background-size:contain;
}
.top_visual .content_wrap .top_catch_wrap .sub_catch {
  margin-bottom: 15px;
  font-size: 2rem;
  letter-spacing: 1px;
}
.top_visual .content_wrap .top_catch_wrap .top_catch {
  font-size: 3.4rem;
  letter-spacing: 5px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
.top_visual .content_wrap .btn {
  z-index: 1;
}
.top_visual .top_background_wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.top_visual .top_background {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
  overflow: hidden;
  background: url(../img/studentlp8/top_visual_bg.webp) top center no-repeat;
  background-size: auto 660px;
  z-index: -1;
  -webkit-animation: background_ani 4s linear;
  animation: background_ani 4s linear;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.no-webp body .top_visual .top_background {
  background: url(../img/studentlp8/top_visual_bg.png) top center no-repeat;
  background-size: auto 660px;
}
@-webkit-keyframes background_ani { 0% { -webkit-transform: scale(1.05); transform: scale(1.05); }
70% { -webkit-transform: scale(1.02); transform: scale(1.02); }
100% { -webkit-transform: scale(1); transform: scale(1); } }

@keyframes background_ani { 0% { -webkit-transform: scale(1.05); transform: scale(1.05); }
70% { -webkit-transform: scale(1.02); transform: scale(1.02); }
100% { -webkit-transform: scale(1); transform: scale(1); } }

_:lang(x)+_:-webkit-full-screen-document, .top_visual .top_background  {
  top: 0;
}
.top_visual .top_mockup {
  width: 400px;
  position: relative;
  bottom: -50px;
}
.top_visual .top_mockup img {
  width: 100%;
}

/* about_analyze */
section.company_logo {
  padding: 30px 0 ;
  background-color: #fff;
}
section.company_logo img {
  width: 100%;
  max-width: 950px;
  padding: 0 30px;
}
.about_analyze {
  background-color: #F1F6FA;
}
.about_analyze .about_analyze_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.about_analyze .about_analyze_list li {
  position: relative;
  width: 32%;
  padding: 32px;
  border-radius: 6px;
  text-align: center;
  background-color: #fff;
}
.about_analyze .about_analyze_list li::before {
  position: absolute;
  top: 20px;
  left: 10px;
  font-family: 'Farro', sans-serif;
  font-size: 4rem;
  color: #247BB5;
  z-index: 1;
}
.about_analyze .about_analyze_list li:nth-child(1)::before {
  content: "01";
}
.about_analyze .about_analyze_list li:nth-child(2)::before {
  content: "02";
}
.about_analyze .about_analyze_list li:nth-child(3)::before {
  content: "03";
}
.about_analyze .about_analyze_list li figure {
  margin-bottom: 10px;
}
.about_analyze .about_analyze_list li .about_analyze_list_title {
  margin-bottom: 16px;
  font-size: 2rem;
}

/* About OfferBox */
.about_ofb .content_wrap {
  display: flex;
  max-width: 880px;
  margin: 48px auto 0;
}
.about_ofb .about_ofb_note {
  margin-top: 10px;
  font-size: 1rem;
}
.about_ofb .about_ofb_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 45px;
  padding-bottom: 35px;
}
.about_ofb .about_ofb_txt .about_logo {
  width: 295px;
  margin-bottom: 20px;
}
.about_ofb .about_ofb_txt sup {
  font-size: 1.2rem;
}
.about_ofb .about_ofb_txt .about_logo img {
  width: 100%;
}
.about_ofb .about_ofb_txt .about_ofb_txt_main {
  margin-bottom: 10px;
  font-size: 2.8rem;
}

/* Merit */
.merit {
  max-width: 1170px;
  margin: 70px auto 20px;
}
.merit .merit_title_wrap {
  position: relative;
  width: 100%;
  bottom: -3px;
  border-bottom: 3px solid #EEE9E8;
}
.merit .merit_title_wrap .merit_title {
  position: relative;
  bottom: -3px;
  display: inline-block;
  padding: 10px;
  border-bottom: 3px solid #002556;
  font-size: 2.2rem;
  line-height: 1.5;
}
.merit .merit_list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.merit .merit_list li {
  position: relative;
  padding: 20px 47px;
  text-align: center;
  flex: 1;
}
.merit .merit_list li figure {
  margin-bottom: 10px;
}
.merit .merit_list li h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.merit .merit_list li + li {
  border-left:2px solid #EEE9E8;
}
.merit .merit_list li::before {
  background-color: #002558;
}
.merit .merit_list li small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  text-align: left;
  line-height: 1.5;
}

/* Step */
.step {
  background-color: #F1F6FA;
}
.step .step_list {
  display: flex;
  padding: 25px 0;
  margin: 33px auto;
  background-color: #fff;
}
.step .step_list li {
  position: relative;
  width: 100%;
  min-width: 25%;
  padding: 20px 35px;
  flex: 1;
  text-align: center;
}
.step .step_list li::after {
  position: absolute;
  margin: auto;
  content: "";
  left: -10px;
  top: 50%;
  width: 35px;
  height: 35px;
  vertical-align: middle;
  box-sizing: border-box;
  border: 25px solid transparent;
  border-left: 25px solid #0066A9;
  transform: translateY(-50%);
}
.step .step_list li:first-child::after {
  content: none;
}
.step .step_list li h3 {
  margin-bottom: 10px;
}
.step .step_list li::before {
  top: 5px;
  left: 15px;
  background-color: #0066A9;
}
.step .step_list li + li {
  border-left:2px solid #EEE9E8;
}
.step .step_list li figure {
  margin-bottom: 10px;
}

/*footer*/
.footer_cta {
  height: 256px;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  background: url(../img/studentlp8/footer_cta_area_bg.webp?20250120) center center no-repeat;
  background-size: cover;
}
.no-webp body .footer_cta {
  background: url(../img/studentlp8/footer_cta_area_bg.png?20250120) center center no-repeat;
  background-size: cover;
}
.footer_cta,
.footer_cta .content_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer_cta .content_wrap {
  padding-right: 100px;
}
.footer_cta .content_wrap p {
  margin-bottom: 15px;
}
.footer {
  background-color: #F3F3F3;
}
.footer .footer_link {
  display: flex;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  height: 104px;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_logo {
  width: 175px;
}
.footer .footer_logo img {
  width: 100%;
}
.footer__nav {
  text-align: center;
}
.footer__nav ul, .footer__nav ul li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footer__nav ul li {
  padding: 0 20px;
  height: 15px;
}
.footer__nav a {
  font-size: 1.4rem;
  color: #0C4771;
}
.footer__nav li.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0 7px;
}
.footer__nav a,
.footer__nav a img {
  width: 100%;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer .c_mark {
  display: block;
  width: 100%;
  margin-bottom: 120px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 3.5;
  background-color: #fff;
}

/*Fixed BTN*/
#cv_btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 15px 0;
  bottom: 0;
  right: auto;
  left: 0;
  width: 100%;
  background-color: rgba(10, 30, 52, 0.8);
}
#cv_btn .fixed_btn {
  text-align: center;
}

/* Fade in Effect */
.animate_wrap .fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 500ms ease-in-out;
}
.analyze_animate_wrap li.fadein {
  opacity: 0;
  animation-duration: 800ms;
  animation-delay : 300ms;
  animation-name: fadein_ani;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transition: all 500ms ease-in-out;
}
@keyframes fadein_ani {
  from { opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px); }
  }
  .analyze_animate_wrap li.fadein:nth-of-type(2) {
    animation-delay : 500ms;
  }
  .analyze_animate_wrap li.fadein:nth-of-type(3) {
    animation-delay : 700ms;
  }
  .animate_wrap .fadein.active {
    opacity: 1;
    transform: translateY(0);
  }
  .animate_wrap .fadein.active:nth-of-type(1) {
    transition-delay: 0s;
  }
  .animate_wrap .fadein.active:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  .animate_wrap .fadein.active:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  .animate_wrap .fadein.active:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  .animate_wrap .fadein.active:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  .animate_wrap .fadein.active:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  .fixed_btn_area .annotation {
    width: 100%;
    font-size: 9px;
    font-weight: normal;
    color: #fff;
  }

  @media screen and (max-width:912px) {
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
    .animate_wrap .fadein,
    .analyze_animate_wrap li.fadein {
      opacity: 1;
    }
    .top_visual {
      height: 90vw;
    }
    .top_visual::before {
      border-bottom: 13em solid transparent;
      border-right: 13em solid #50c8ff;
    }
    .top_visual::after {
      top: 35px;
      right: 5px;
      width: 130px;
      line-height: 1.2;
      font-size: clamp(15px, 3.3vw, 30px);
    }
    .top_visual .top_logo {
      padding: 30px 50px;
    }
    .top_visual .top_logo img {
      max-width: 200px;
    }
    .top_visual .top_background {
      background: url(../img/studentlp8/top_visual_bg_sp.webp) top center no-repeat;
      background-size: cover;
    }
    .no-webp body .top_visual .top_background {
      background: url(../img/studentlp8/top_visual_bg_sp.png) top center no-repeat;
      background-size: cover;
    }
    .top_visual .content_wrap {
      flex-direction: column;
      align-items: baseline;
    }
    .top_visual .content_wrap .top_catch_wrap {
      height: auto;
    }
    .top_visual .content_wrap .top_catch_area {
      max-width: 550px;
    }
    .top_visual .content_wrap .top_catch_wrap .top_catch {
      font-size: clamp(15px, 5vw, 50px);
      text-align: left;
    }
    .top_visual .content_wrap .top_catch_wrap .sub_catch {
      font-size: clamp(15px, 3vw, 23px);
      text-align: left;
    }
    .top_visual .top_mockup {
      position: absolute;
      bottom: 0;
      left: 50px;
      width: 60vw;
    }
    a.btn {
      max-width: 400px;
      padding: 35px 50px 35px 70px;
      font-size: 2rem;
    }
    a.btn::before, a.btn::after {
      left: calc(50% - 17.5vw);
    }
    .mobile_cta .btn {
      margin: 30px auto;
      display: flex;
    }
    section.company_logo {
      padding-top: 10px;
    }
    .about_analyze .about_analyze_list,
    .about_ofb .content_wrap,
    .merit .merit_list,
    .step .step_list {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    .about_analyze .about_analyze_list li {
      width: 100%;
      margin-bottom: 10px;
      max-width: 500px;
    }
    .about_ofb_caption {
      max-width: 500px;
      margin: 0 auto;
      order: 2;
    }
    .about_ofb_caption img {
      width: 100%;
    }
    .about_ofb .about_ofb_txt,
    .merit .merit_list li {
      max-width: 500px;
      margin: 0 auto;
      text-align: center;
    }
    .about_ofb .about_ofb_txt {
      padding: 0 10px 30px 10px;
    }
    .about_ofb .about_ofb_txt .about_ofb_txt_main {
      font-size: 2.6rem;
    }
    .about_ofb .about_ofb_txt .about_logo {
      margin: 0 auto 15px;
    }
    .merit .merit_list {
      margin-top: 30px;
    }
    .merit .merit_list li {
      padding-bottom: 20px;
    }
    .merit .merit_list li + li {
      margin-top: 20px;
      border-top: 2px solid #EEE9E8;
      border-left: 0;
    }
    .step .step_list {
      max-width: 500px;
      padding: 10px 20px 30px 20px;
    }
    .step .step_list li {
      padding: 35px 35px 0px 35px;
    }
    .step .step_list li + li {
      margin-top: 30px;
      border-left: 0;
      border-top: 2px solid #EEE9E8;
    }
    .step .step_list li::before {
      top: 25px;
      left: 5px;
    }
    .step .step_list li::after {
      left: 50%;
      top: -8px;
      width: 25px;
      height: 25px;
      border: 17px solid transparent;
      border-left: 20px solid #0066A9;
      transform: translateX(-50%) rotate(90deg);
      z-index: 1;
    }
    .footer_cta {
      background: none;
    }
    .footer_cta .content_wrap {
      padding-right: 0;
      font-size: clamp(18px, 5vw, 30px);
    }
    .footer_cta, .footer_cta .content_wrap img {
      width: 100%;
      height: 100%;
      padding: 0;
    }
    .footer_cta .content_wrap a.btn {
      margin: 35px auto;
    }
    #cv_btn {
      padding: 10px 0;
    }
    #cv_btn.fixed_btn_area {
      flex-direction: column;
    }
    .fixed_btn_area .annotation {
      margin-top: 5px;
      text-align: center;
    }
  }

  @media screen and (max-width:540px) {
    section {
      padding: 60px 10px 30px 10px;
    }
    a.btn {
      max-width: 350px;
      width: 95%;
      padding: 20px 30px 20px 50px;
      font-size: 1.5rem;
    }
    a.btn::before, a.btn::after {
      left: calc(50% - 105px);
    }
    a.btn:hover::after  {
      left: calc(50% - 103px);
    }
    .top_visual {
      height: 110vw;
    }
    .top_visual::before {
      border-bottom: 6em solid transparent;
      border-right: 6em solid #50c8ff;
    }
    .top_visual::after {
      top: 20px;
      right: 2px;
      width: 60px;
      font-size: 13px;
      line-height: 1.2;
    }
    .top_visual .top_logo {
      padding: 20px;
    }
    .top_visual .top_logo img {
      max-width: 120px;
    }
    .top_visual .top_background {
      background-size: 125vw;
    }
    .top_visual .top_mockup {
      position: absolute;
      bottom: 0;
      left: 20px;
      width: 75vw;
    }
    .top_visual .content_wrap .top_catch_area {
      padding: 0 20px;
    }
    .top_visual .content_wrap .top_catch_wrap .sub_catch {
      font-size: 1.4rem;
    }
    .top_visual .content_wrap .top_catch_wrap .top_catch {
      font-size: clamp(15px, 6vw, 25px);
      letter-spacing: 3px;
    }
    .content_title {
      padding: 0 35px;
    }
    .content_title::before, .content_title::after {
      height: 32px;
      transform: skew(30deg) translateY(-50%);
      left: 25px;
      top: 50%;
    }
    .content_title::after {
      right: 25px;
      left: auto;
      transform: skew(-30deg) translateY(-50%);
    }
    .merit .merit_title_wrap .merit_title {
      font-size: 2rem;
    }
    .merit .merit_list li {
      padding: 20px;
    }

    .footer .footer_link {
      flex-direction: column;
      padding: 60px 20px 40px 20px;
      height: 100%;
    }
    .footer__nav ul, .footer__nav ul li {
      flex-wrap: wrap;
    }
    .footer__nav ul li {
      width: 100%;
      padding: 5px 10px;
    }
    .footer .footer_link .footer_link_company {
      height: 100%;
      order: 5;
    }
    .footer__nav li.footer_sns {
      order: 1;
      margin: 25px 5px 20px 5px;
    }
    .footer .footer_logo {
      width: 200px;
    }
    .footer_cta, .footer_cta .content_wrap img {
      width: 100%;
    }
  }
  @media screen and (max-width:320px) {
    .content_sub_title {
      font-size: 1.4rem;
    }
    .content_title {
      font-size: 1.8rem;
    }
    .about_ofb .about_ofb_txt .about_ofb_txt_main {
      font-size: 2.3rem;
    }
    .merit .merit_title_wrap .merit_title {
      font-size: 1.5rem;
    }
    .merit .merit_list li, .step .step_list li {
      padding: 20px 10px;
    }
    .about_analyze .about_analyze_list li {
      padding: 32px 25px;
    }
  }
