@charset "utf-8";

/*------------------------------ 共通 ------------------------------*/
.pc {
  display: none;
}

.line-heading {
  font-size: 1.8rem;
  padding-left: 69px;
  margin-bottom: 24px;
}

.line-heading::before {
  width: 50px;
  height: 4px;
}

.main-link:hover::after {
  top: 3px;
  left: 3px;
}


/*------------------------------ ヘッダー ------------------------------*/
header {
  height: 60px;
}

header .container nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100vw;
  height: calc(100vh + 64px);
  padding-top: 178px;
  opacity: 0;
  pointer-events: none;
}

header .container nav.active {
  transition: .5s;
  opacity: 1;
  pointer-events: auto;
  display: block;
}

header .container nav ul {
  flex-direction: column;
  gap: 48px 0;
  align-items: center;
}

header .container nav ul .logo {
  margin-bottom: 32px;
}

header .container nav ul li .not-main-link {
  font-size: 2.2rem;
  color: #2B2B2B;
}

header .container nav ul li .main-link {
  font-size: 1.7rem;
  color: #fff;
}

header .container nav ul li .main-link.seminar:hover {
  color: #0099D5;
}

header .container nav ul .sp-spread {
  width: 100%;
}

header .container nav ul .sp-spread .entry {
  width: 66%;
  min-width: 220px;
  margin-inline: auto;
}

header .container .logo {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

header .container .logo img {
  width: 215px;
}

header .hamburger {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

header .hamburger span {
  position: absolute;
  height: 2px;
  background-color: #0099D5;
  left: 10px;
  transition: .5s;
  width: 30px;
}

header .hamburger.active span {
  background-color: #0099D5;
}

header .hamburger span:first-of-type {
  top: 16px;
}

header .hamburger.active span:first-of-type {
  transform: rotate(45deg) translateY(-6px);
  transform-origin: left top;
  width: 35px;
}

header .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

header .hamburger span:last-of-type {
  top: 32px;
}

header .hamburger.active span:last-of-type {
  transform: rotate(-45deg) translateY(6px);
  transform-origin: left bottom;
  width: 35px;
}


/*------------------------------ ファーストビュー ------------------------------*/
#top .fv {
  padding: 96px 0 48px;
}

#top .fv .container .heading-img {
  flex-direction: column;
}

#top .fv .container .heading-img .heading {
  padding-top: 4%;
}

#top .fv .container .heading-img .heading h1 {
  margin-bottom: 5%;
}

#top .fv .container .heading-img .heading h1 span:first-of-type {
  font-size: clamp(2.1rem, 7vw, 5rem);
}

#top .fv .container .heading-img .heading h1 span:nth-of-type(2) {
  font-size: clamp(4.5rem, 14vw, 11rem);
}

#top .fv .container .heading-img .heading h1 span:last-of-type {
  font-size: clamp(3.3rem, 9vw, 8rem);
}

#top .fv .container .heading-img .heading .triangle3 {
  display: none;
}

#top .fv .container .sp-introduction p {
  width: max-content;
  line-height: 1;
  color: #fff;
  background-color: #242424;
  font-weight: 700;
}

#top .fv .container .sp-introduction p:last-of-type {
  margin-bottom: 0;
}

#top .fv .container .sp-introduction {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  top: -20px;
  z-index: 1;
}

#top .fv .container .sp-introduction p {
  font-size: clamp(1.6rem, 1.7vw, 3.4rem);
  padding: 2% 3%;
  margin-bottom: 1%;
}

@media screen and (max-width: 400px) {
  #top .fv .container .sp-introduction p {
    font-size: 1.4rem;
  }
}

#top .fv .container .news {
  padding: 15px 20px;
  top: 99%;
  width: 100%;
}

#top .fv .container .news .each-news {
  flex-direction: column;
  font-size: 1.4rem;
}

#top .fv .container .news .each-news:first-of-type {
  margin-bottom: 10px;
}

#top .management {
  padding: 240px 0 56px;
}

#top .management .inner h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

@media screen and (max-width: 400px) {
  #top .management .inner h2 {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 350px) {
  #top .management .inner h2 {
    font-size: 1.8rem;
  }
}

#top .management .inner .overview-point {
  flex-direction: column;
  gap: 24px 0;
  align-items: center;
}

#top .management .inner .overview-point .overview h3 {
  font-size: 1.8rem;
  justify-content: flex-start;
  margin-bottom: 8px;
}

#top .management .inner .overview-point .overview p {
  font-size: 1.4rem;
}

@media screen and (max-width: 500px) {
  #top .management .inner .overview-point .point {
    left: -10px;
  }
}

#top .management .inner .overview-point .point .each-point {
  width: 230px;
  height: 230px;
  padding-top: 50px;
}

@media screen and (max-width: 500px) {
  #top .management .inner .overview-point .point .each-point {
    width: 170px;
    height: 170px;
    padding-top: 40px;
  }
}

#top .management .inner .overview-point .point .each-point:first-of-type {
  right: -30px;
}

@media screen and (max-width: 500px) {
  #top .management .inner .overview-point .point .each-point:first-of-type {
    right: -20px;
  }
}

#top .management .inner .overview-point .point .each-point h3 {
  font-size: 2.2rem;
  padding: 0 15px;
  margin-bottom: 27px;
}

@media screen and (max-width: 500px) {
  #top .management .inner .overview-point .point .each-point h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

#top .management .inner .overview-point .point .each-point p {
  font-size: 1.6rem;
}

@media screen and (max-width: 500px) {
  #top .management .inner .overview-point .point .each-point p {
    font-size: 1.4rem;
  }
}

#top .entry {
  padding: 56px 0;
}

#top .entry .inner {
  padding: 20px 22px;
  margin-bottom: 32px;
  max-width: 1100px;
}

#top .entry .inner dl {
  flex-direction: column;
  gap: 8px 0;
  margin-bottom: 16px;
}


#top .entry .inner dl dt {
  width: 120px;
  height: 40px;
  font-size: 1.6rem;
}

#top .entry .inner dl dd {
  width: calc(100% - 209px);
}

@media screen and (max-width: 1000px) {
  #top .entry .inner dl dd {
    width: 100%;
  }
}

#top .entry .inner dl dd .content {
  font-size: 1.4rem;
}

#top .entry .inner dl dd .note {
  font-size: 1.4rem;
}

#top .entry .left-person-img {
  width: 7rem;
}

#top .entry .right-person-img {
  width: 12rem;
  top: -4%;
}

#top .entry.program .left-person-img {
  width: 7rem;
}

#top .entry.program .right-person-img {
  width: 11rem;
  top: -5%;
}

#top .seminar {
  padding: 56px 0;
}

#top .seminar h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

#top .seminar .representative {
  margin-bottom: 48px;

  flex-direction: column;
  gap: 4rem 0;
}

@media screen and (max-width: 500px) {
  #top .seminar .representative {}
}

#top .seminar .representative figure {
  width: 100%;
  /* border-radius: 6px; */
  padding: 32px 24px 40px;

  max-width: 350px;
  margin-inline: auto;
}

@media screen and (max-width: 500px) {
  #top .seminar .representative figure {
    padding: 32px 20px 40px;

  }
}

#top .seminar .representative figure:first-of-type {
  border-radius: 6px 0 0 6px;
}

#top .seminar .representative figure:last-of-type {
  border-radius: 0 6px 6px 0;
}

#top .seminar .representative figure .img {
  margin-bottom: 19px;
}

#top .seminar .representative figure .img img {
  /* max-width: 80%; */
  max-width: 50%;
}

#top .seminar .representative figure figcaption h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

@media screen and (max-width: 500px) {
  #top .seminar .representative figure figcaption h3 {
    font-size: 1.6rem;
  }
}

#top .seminar .representative figure figcaption p {
  font-size: 1.6rem;
}

#top .seminar .detail {
  margin-bottom: 48px;
}

#top .seminar .detail dl {
  gap: 8px 0;
  margin-bottom: 16px;
  flex-direction: column;
}

#top .seminar .detail dl dt {
  width: 120px;
  height: 40px;
  font-size: 1.6rem;
}

#top .seminar .detail dd .content {
  font-size: 1.4rem;
}

#top .seminar .detail dd .note {
  font-size: 1.3rem;
}

#top .seminar .detail dd ul li {
  font-size: 1.4rem;
}

#top .seminar .seminar-contents table tbody tr th {
  width: 96px;
}

@media screen and (max-width: 500px) {
  #top .seminar .seminar-contents table tbody tr th {
    width: 66px;
  }
}

#top .seminar .seminar-contents table tbody tr td {
  width: calc(100% - 96px);
  padding: 12px 22px;
}

@media screen and (max-width: 500px) {
  #top .seminar .seminar-contents table tbody tr td {
    width: calc(100% - 66px);
    padding: 12px 15px;
    font-size: 1.4rem;
  }
}

#top .value {
  padding: 56px 0;
}

#top .value .inner h2 {
  margin-bottom: 32px;
  font-size: 2.2rem;
  display: block;
}

#top .value .inner .each-value h3 {
  height: 60px;
  padding: 0 15px;
  font-size: 1.8rem;
}

#top .value .inner .each-value .content-obligation {
  flex-direction: column;
}

#top .value .inner .each-value .content-obligation dl {
  width: 100%;
  padding: 20px 20px 0;
}

#top .value .inner .each-value .content-obligation dl dt {
  width: 120px;
  height: 40px;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

#top .value .inner .each-value .content-obligation dl dd {
  font-size: 1.4rem;
}

#top .value .inner .each-value .content-obligation dl:last-of-type dt {
  width: 184px;
}

#top .value .inner .each-value .content-obligation dl:last-of-type dd {
  padding-bottom: 20px;
}

#top .schedule {
  padding: 56px 0;
}

#top .schedule .each-schedule {
  margin-bottom: 40px;
  gap: 12px 0;
  flex-direction: column;
}

#top .schedule .each-schedule .season {
  width: 160px;
  height: 40px;
  font-size: 1.6rem;
}

#top .schedule .each-schedule .idea {
  position: relative;
}

#top .schedule .each-schedule .idea::after {
  position: absolute;
  line-height: 1;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  height: 30px;
  padding: 0 13px;
  color: #2B2B2B;
  background-color: #f4f4f4;
  align-items: center;
  justify-content: center;
  display: flex;
  white-space: nowrap;
}

#top .schedule .each-schedule .season2::after,
#top .schedule .each-schedule .season3::after {
  content: "アイディア発想";
}

#top .schedule .each-schedule .season4::after,
#top .schedule .each-schedule .season5::after {
  content: "ビジネスプラン構想";
}

#top .schedule .each-schedule .season6::after,
#top .schedule .each-schedule .season7::after {
  content: "仮説検証";
}

#top .schedule .each-schedule .content {
  width: 100%;
}

#top .schedule .each-schedule .content .heading {
  gap: 0 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  #top .schedule .each-schedule .content .heading {
    gap: 8px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

#top .schedule .each-schedule .content .heading h3 {
  display: block;
  font-size: 1.8rem;
}

@media screen and (max-width: 500px) {
  #top .schedule .each-schedule .content .heading h3 {
    max-width: none;
  }
}

#top .schedule .each-schedule .content .heading .idea {
  font-size: 1.2rem;
  height: 30px;
  width: 108px;
}

@media screen and (max-width: 500px) {
  #top .schedule .each-schedule .content .heading .idea {
    margin-left: auto;
  }
}

#top .schedule .each-schedule .content p {
  font-size: 1.4rem;
}


/*------------------------------ フッター ------------------------------*/
footer {
  padding: 65px 0;
}

footer .inner .img {
  margin-bottom: 24px;
  width: 215px;
}

footer .inner p:first-of-type {
  font-size: 1.4rem;
  margin-bottom: 48px;
}

footer .inner .copy small {
  font-size: 1.2rem;
}


/*------------------------------ 404 ------------------------------*/
#not-found {
  padding: 127px 0 95px;
}

#not-found .inner p {
  font-size: 12rem;
}

#not-found .inner h1 {
  font-size: 1.8rem;
}


/*------------------------------ お知らせ一覧 ------------------------------*/
#news {
  padding-top: 60px;
}

#news h1 {
  font-size: 4rem;
  height: 200px;
}

#news .inner .news-wrap {
  max-width: 874px;
  margin-bottom: 34px;
}

#news .inner .news-wrap a {
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#news .inner .news-wrap a {
  font-size: 1.8rem;
}

#news .inner .news-wrap a.hover-border::after {
  bottom: 15px;
}


/*------------------------------ お知らせ詳細 ------------------------------*/
#single-news {
  padding: 60px 0 90px;
}

#single-news h1 {
  font-size: 4rem;
  height: 200px;
}

#single-news .inner h2 {
  font-size: 2rem;
}

#single-news .inner .txt {
  font-size: 1.6rem;
}

#single-news .inner .prev-next .prev {
  margin-bottom: 39px;
}

#single-news .inner .prev-next a {
  flex-direction: column;
  gap: 13px 0;
}

@media screen and (max-width: 500px) {
  #single-news .inner .links {
    gap: 0 34px;
  }
}


/*------------------------------ ページネーション ------------------------------*/
.pagination {
  gap: 20px;
}

.pagination .current {
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
}

.pagination a.page-numbers {
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
}


/*------------------------------ パートナー（共通） ------------------------------*/
.partner .inner {
  padding: 56px 0;
}

.partner .inner dl {
  margin-bottom: 48px;
}

.partner .inner dl:last-of-type {
  margin-bottom: 40px;
}

.partner .inner dl dt {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.partner .inner dl dd {
  font-size: 1.8rem;
}

.partner .inner .recruitment {
  font-size: 1.4rem;
}

.partner .inner dl .each-partner .small-text {
  font-size: 1.4rem;
}


/*------------------------------ お問い合わせ（共通） ------------------------------*/
#contact {
  padding: 56px 0;
}

#contact .inner h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

#contact .inner p:first-of-type {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

#contact .inner p:last-of-type {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

@media screen and (max-width: 400px) {
  #contact .inner p:last-of-type {
    font-size: 1.5rem;
  }
}

#contact .inner a {
  font-size: 2.2rem;
}