html {
  scroll-margin-top: 260px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

  40%,
  100% {
    opacity: 1;
  }
}


body {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

:root {
  scroll-padding: 180px;
  scroll-behavior: smooth;
}

h1 {
  margin: 0;
}

#top h1 {
  line-height: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

a:hover {
  opacity: 0.65;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sp-hidden {
  display: none;
}


@media (max-width: 768px) {
  .pc-hidden {
    display: none !important;
  }

  .sp-hidden {
    display: block;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
  }
}

main {
  padding-top: 80px;
}

ul.normal-list {
  padding-left: 0;
}

ul.normal-list li {
  color: #000;
  position: relative;
  list-style: none;
  margin-bottom: 10px;
  padding-left: 18px;
  font-weight: 400;
}

ul.normal-list li::before {
  position: absolute;
  left: 0;
  top: 0.8em;
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}



.btn-group {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.btn {
  background: #e6ff00;
  border: none;
  padding: 12px 32px;
  margin: 0 8px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn.active,
.btn:hover {
  background: #b2e000;
}



.course-list {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.course-list li {
  background: #f0f8ff;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: bold;
}

.course-detail {
  margin-top: 24px;
}

.course-box {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  background: #000;
  color: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.9rem;
}


@media (max-width: 600px) {
  .course-list {
    flex-direction: column;
    gap: 8px;
  }

  .btn-group {
    flex-direction: column;
    gap: 8px;
  }
}

.fixed-buttons {
  max-width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(5px);
  z-index: 999;
}

.fixed-buttons-inner {
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin: auto;
  padding: 24px 0;
  transition: opacity 0.2s;
}


.fixed-buttons-list {
  display: flex;
  justify-content: center;
  gap: 21px;
  width: 100%;
  max-width: 1200px;
  pointer-events: none;
  padding: 0 16px;
}

.fixed-buttons .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
  min-width: 30%;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 10px;
  border: 1px solid #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
}

.fixed-buttons .btn-yellow {
  background: #CCFF13;
  color: #000;
}

.fixed-buttons .btn-green {
  background: #09CD86;
  color: #000;
}

.fixed-buttons .btn-blue {
  background: #00A3FF;
  color: #000;
}

.fixed-buttons .btn:hover {
  opacity: 0.65;
  transition: 0.2s;
}

.fixed-buttons .icon {
  display: flex;
  align-items: center;
  margin-right: 8px;
}


/* ヘッダー */

header {
  width: 100%;
  height: 80px;
  position: fixed;
  background-color: #fff;
  z-index: 10000;

  border-bottom: 1px solid #000;
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  top: 0;
}

.header-left {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 3%;
}

.tokyo-icon {
  display: flex;
  align-items: center;
  width: 99.234px;
  height: 100%;
  flex-shrink: 0;
}

.tokyo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tokyo-label {
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
  margin-right: 16px;
}

.academy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  width: 280px;
  height: 42px;
  flex-shrink: 0;
}

.academy-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #00025a;
  letter-spacing: 0.01em;
}

.academy-accent {
  color: #00bfff;
}

.academy-desc {
  font-size: 0.85rem;
  color: #000;
  margin-top: 2px;
}

.header-right {
  display: flex;
  align-items: stretch;
  height: 80px
}

.header-lang {
  display: flex;
  align-items: center;
  padding: 0 18px;
  min-width: 90px;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
}

.lang-icon {
  display: flex;
  align-items: center;
  margin-right: 6px;
  width: 24px;
  height: 24px;
}

.header-search {
  background: #d6d6d6;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


.overflow .header,
.overflow main {
  overflow-y: scroll;
}

#search-icon {
  cursor: pointer;
}

.search-box {
  height: 56px;
  display: none;
  position: fixed;
  align-items: center;
  top: 80px;
  right: 0;
  background: #fff;
  box-sizing: border-box;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.search-box.active {
  display: flex;
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.search-box .search-input {
  display: flex;
  align-items: center;
  width: 200px;
  margin-left: 5px;
  padding: 5px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.search-box img {
  width: 16px;
  height: 16px;
}

.search-input-box {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-box .search-close {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  color: #6D6D6D;
  transition: all 0.5s;
}

.search-box .search-close:hover {
  color: red;
}

.search-box input[type="submit"i] {
  border: none;
  background: url(../images/icon-search.png);
  background-size: cover;
  width: 16px;
  height: 16px;
}


.header-menu {
  background: #111;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-left: 1px solid #000;
  box-sizing: border-box;
}



.header-menu span {
  position: absolute;
  display: block;
  width: 44px;
  height: 2px;
  transition: all .3s;
  background-color: #fff
}

.header-menu .drawer-menu-icon {
  position: relative;
  width: 43px;
  height: 14px;
}

.header-menu span:first-of-type {
  top: 0px
}

.header-menu span:nth-of-type(2) {
  top: 6px
}

.header-menu span:nth-of-type(3) {
  bottom: 0px;
}

.header-menu.close span:first-of-type {
  top: 6px;
  rotate: 18deg;
}

.header-menu.close span:nth-of-type(2) {
  display: none;
}

.header-menu.close span:nth-of-type(3) {
  bottom: 6px;
  rotate: -18deg;
}

.underline {
  text-decoration: underline;
}

.accordion {
  width: 100%;
  position: relative;
}

.accordion .accordion-toggle {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
}

.drawer-menu {
  position: fixed;
  inset: 0;
  background: #00aaff;
  z-index: 20000;
  display: none;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  top: 80px;
}

.drawer-menu.open {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.drawer-menu-inner {
  background: #fff;
  margin: 40px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  width: 90vw;
  max-width: 960px;
  padding: 0;
  position: relative;
}

.drawer-accordion-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: #00aaff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-accordion-btn::before,
.drawer-accordion-btn::after {
  content: '';
  position: absolute;
  left: 7px;
  width: 14px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}

.drawer-accordion-btn::before {
  top: 13px;
  /* 横棒（常に表示） */
}

.drawer-accordion-btn::after {
  top: 13px;
  /* 縦棒（＋の縦線） */
  transform: rotate(90deg);
  opacity: 1;
}

/* アコーディオンが開いているときは縦棒を消す（＝「－」だけ） */
.drawer-accordion-btn.open::after {
  opacity: 0;
}


.accordion-content {
  padding: 8px 0;
}


.tab-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
}

.tab {
  color: #000;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1;
  padding: 2px 10px;
  border-right: 1px solid #d5d5d5;
}

.tab:last-of-type {
  border-right: 0;
  padding-right: 0;
}


.tab.disabled {
  color: #bbb;
  pointer-events: none;
}

.tab:hover {
  opacity: 0.65;
}

.accordion-content {
  display: none;
  padding: 8px 0;
}

.accordion-content.open {
  display: block
}

.accordion-header {
  font-weight: bold;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}

.tab-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}


.drawer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu-list li {
  border-bottom: 1px solid #000;
  padding: 12px 16px;
  font-size: 1.3rem;
  color: #111;
  background: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.drawer-menu-list li a {
  display: flex;
  align-items: center;
  width: 100%;

}

.drawer-link-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background: url('../images/blank.svg');
  background-size: cover;
  background-repeat: no-repeat;
}



.main-visual-hero {
  position: relative;
  max-width: 100vw;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 30px 0 0 0
}

.main-visual-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: url('../images/ellipse-bg.svg') no-repeat left 60px;
  background-size: 85%;
}

.main-visual-grid {
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  background-image:
    linear-gradient(to right, #e5e5e5 2px, transparent 1px),
    linear-gradient(to bottom, #e5e5e5 2px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}


.main-visual-square.blue {
  background: #00aaff;
}

.main-visual-square.green {
  background: #1ed495;
}

.main-visual-square.purple {
  background: #a18fff;
}

.main-visual-inner {
  position: relative;
  width: 100%;
  padding: 80px 0 135px;
  margin: auto;
}

.main-visual-center {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1600px;
  margin: auto;
}

.main-visual-content {
  position: relative;
  z-index: 10;
  max-width: 50%;
}

.main-visual-title-group {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 1vw;
}

.main-visual-tokyo {
  color: #1ed495;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

.main-visual-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-visual-features {
  display: flex;
  gap: 12px;
}

.main-visual-feature {
  background: #fff;
  border-radius: 10px;
  max-width: 32%;
  position: relative;
  font-size: 1.1rem;
}

.main-visual-person .main-visual-squares {
  position: absolute;
  left: 0px;
  top: 0;
  object-fit: cover;
  z-index: 5;
  /* 楕円より上、コンテンツより下 */
  pointer-events: none;
}


.main-visual-period {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  margin-top: 1.5vw;
  margin-left: 0;
  letter-spacing: 0;
  text-align: left;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  line-height: 1.1;
}

.main-visual-period .period-label {
  width: max-content;
  display: flex;
  align-items: center;
  font-size: 1.2vw;
  font-weight: bold;
  margin-top: 16px;
  margin-right: 2vw;
  letter-spacing: 0;
  background: #000;
  padding: 5px 8px;
  color: #fff;
}

.period-date-group {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.period-date-notice {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-top: 5px;
}

.period-year {
  font-size: 2vw;
  font-weight: 500;
}

.period-big {
  font-size: 3.3vw;
}

.period-tilde {
  font-size: 2vw;
  font-weight: 500;
  line-height: 1;
  margin: 10px;
  position: relative;
}

.period-tilde::before {
  content: "\FF5E";
}

.period-en {
  font-weight: bold;
}

.main-visual-period .period-date {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.main-visual-period .period-date .period-en {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.main-visual-person {
  position: relative;
  z-index: 20;
  margin-left: 30px;
}

.main-visual-person img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* セクションタイトル（青四角＋太字） */
.section-title {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin-top: 50px;
  margin-bottom: 22px;
  padding-left: 0;
  color: #000;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
}

.section-title-bar {
  display: inline-block;
  width: 5px;
  height: 28px;
  background: #00aaff;
  border-radius: 2px;
  margin-right: 10px;
}

.section-title .heading-box {
  margin-right: 12px;
}


.target {
  max-width: 900px;
  padding: 10px 49px;
  gap: 10px;
  background: #F8F8F8;
  box-sizing: border-box;
}

/* 青丸付きリスト */
.target-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.target-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: #000;
  line-height: 1.7;
}

.target-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 12px;
  height: 12px;
  background: #00aaff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.target-note {
  display: block;
  font-size: 0.95em;
  color: #555;
  margin-left: 0;
  margin-top: 2px;
}

/* コース選択ボタンリスト */
.course-select-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 70px 0 24px 0;
  justify-content: flex-start;
}

.course-select-list li {
  flex: 1 1 0;
  width: 24%;
  display: flex;
}

.course-select-btn {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #000;
  font-size: 1rem;
  font-weight: bold;
  padding: 0 5%;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
  box-shadow: none;
  letter-spacing: 0.02em;
  position: relative;
  outline: none;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.course-select-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
}

.course-select-btn a:hover {
  opacity: 0.65;
  transition: opacity 0.15s;
  cursor: pointer;
}

.course-select-btn-text {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.course-label {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.3;
}

.arrow {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
  top: 18px;
  right: 8px;
  font-size: 1em;
  color: #000;
  flex-shrink: 0;
}




.course-detail-list {
  max-width: 960px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.course-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 0;
}

.course-detail-left,
.course-detail-right {
  background: #fff;
  border: none;
  padding: 0;
}

.course-detail-left {
  flex: 1.1;
}

.course-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Noto Sans JP";
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 342.857% */
  letter-spacing: 0.42px;
}

.course-detail-title {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0.96px;
  margin-bottom: 35px;
}

.course-detail-desc {
  max-width: 440px;
  font-size: 1rem;
  color: #000;
  margin-bottom: 0;
  line-height: 2;
}

.course-detail-right {
  flex: 1.2;
  min-width: 320px;
  max-width: 465px;
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #F8F8F8;
  padding: 25px;
  box-sizing: border-box;
}

.course-detail-tag {
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  width: 180px;
  height: 32px;
  margin: 20px auto;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-detail-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-detail-list-ul li {
  position: relative;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #000;
  line-height: 1.7;
}

.course-detail-list-ul li .course-detail-list-text {
  display: block;
  padding-left: 10px;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
  margin: 10px 0 20px
}


.course-detail-list-ul li b {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP";
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.5;
  font-weight: 900;
}

.course-detail-list-ul li b:before,
.course-detail-dot {
  content: '';
  display: block;
  min-width: 12px;
  min-height: 12px;
  background: #00aaff;
  margin-right: 10px;
}

.course-detail-list-ul-li {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}




.course-detail-list-ul-li-text {
  width: 95%;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
}


.course-detail-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00aaff;
  position: absolute;
  top: 8px;
  left: 0;
  transform: none;
}

@media (max-width: 900px) {
  .course-detail-row {
    flex-direction: column;
    gap: 18px;
  }

  .course-detail-left,
  .course-detail-right {
    min-width: 0;
  }
}

.pmp-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin-top: 50px;
  margin-left: 10px;
  padding-top: 2px;
  line-height: 20px;
  /* 142.857% */
}

.pmp-list li {
  list-style: none;
  font-family: "Noto Sans JP";
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.pmp-list::before {
  content: '※';
  position: absolute;
  left: -20px;
  top: 0;
}

.program-flow {
  margin: 56px auto 0 auto;
  padding: 0 16px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border: 1px solid #000;
  padding: 24px 4% 18px;
  position: relative;
  box-sizing: border-box;
  min-height: 120px;
  box-shadow: none;
}

.flow-step-header {
  width: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.flow-step-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.flow-step-icon svg,
.flow-step-icon img {
  display: block;
}

.flow-step-body {
  max-width: 71%;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  line-height: 1.7;
}

.flow-step-body.long {
  padding: 20px 0
}

.flow-step-body span {
  display: block;
  margin-top: 30px;
  font-size: 0.9rem;
}

.flow-step-body p a {
  color: #0033CC;
}

.flow-step-body p a:hover {
  text-decoration: underline;
}

.flow-step-bottom {
  text-align: left;
}

.flow-step-period {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 6px 18px;
  margin-top: 8px;
}

.flow-arrow {
  text-align: center;
  margin: 0;
}

.flow-arrow-icon {
  width: 30px;
  height: 30px;
  background: url('../images/Polygon.png') no-repeat center center;
  background-size: 100%;
  display: inline-block;
  color: #00aaff;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}



.learning-flow-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.briefing-session {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 16px 100px;
}

.briefing-session-img {
  max-width: 48%;
}

#top .briefing-session h3 {
  border-left: 0;
  padding-left: 0;
}

#top .briefing-session h3 .heading-box {
  margin-right: 10px;
}

.briefing-session-content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
}

.briefing-session-content h3 {
  margin-top: 0;
  margin-bottom: 40px;
}

.briefing-session-text {
  color: #000;
  max-width: 440px;
  line-height: 1.7;
  font-weight: 500;
}

.briefing-session-text p {
  margin-top: 0;
}

.briefing-list {
  list-style: none;
  padding: 0;
  margin: 73px 0 32px 0;
  font-weight: 500;
}

.briefing-list>li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.briefing-list-dot {
  list-style: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00aaff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}

.briefing-list .briefing-list-dot {
  top: 12px
}

.briefing-list-title {
  font-weight: 900;
  font-size: 1.3rem;
  margin-right: 12px;
}

.briefing-list-sub {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 1rem;
  color: #000;
}

.briefing-list-sub.normal-list li {
  margin-bottom: 2px;
  font-weight: 500;
}


.briefing-form-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.briefing-form-btn {
  display: inline-block;
  background: #1ed495;
  color: #111;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 60px;
  padding: 23px 0;
  width: 100%;
  max-width: 520px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 3px solid #1ed495;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #000;
}


.briefing-form-btn.btn-yellow {
  background-color: #CCFF13;
}


.careerup-visual {
  max-width: 100vw;
  position: relative;
  background: #F8F8F8;
  overflow: hidden;
  margin: 0;
  padding: 100px 0 0 0;
  min-height: 600px;
}

.careerup-visual-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.careerup-title {

  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  margin: 100px 0 50px;
  color: #000;
  letter-spacing: 0.04em;
  position: relative;

}

.careerup-title-text.pc-hidden {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.careerup-title-text h2 {
  display: inline-block;
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.careerup-title p {
  margin: 0
}

.careerup-title-bar {
  position: absolute;
  display: inline-block;
  width: 45px;
  height: 3px;
  background: #0099ff;
  border-radius: 2px;
  margin: 0;
  margin-top: 10px;
  vertical-align: middle;
  transform: rotate(70deg);
  left: -8%;
}

.careerup-title-bar:last-of-type {
  transform: rotate(-70deg);
  left: auto;
  right: -8%;
}

.careerup-balloons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px 4%;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.careerup-balloon {
  color: #000;
  text-align: center;
  position: relative;
}

.careerup-balloon.balloon1 {
  max-width: 32%;
}

.careerup-balloon.balloon2 {
  max-width: 30%;
}

.careerup-balloon.balloon3 {
  max-width: 26%;
}

.careerup-balloon.balloon4 {
  max-width: 26%;
  margin-right: -10%;
}

.careerup-balloon.balloon5 {
  max-width: 26%;
  margin-left: -5%;
}


.careerup-person {
  padding-top: -10px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.careerup-person img {
  max-width: 345px;
}

.careerup-support {
  margin-top: -230px;
  position: relative;
  width: 100%;
  background: #00aaff;
  clip-path: polygon(0 0, 100% 0, 50% 50%, 0 0, 0 100%, 100% 100%, 100% 0);
  z-index: 1;
}

.careerup-support-inner {
  max-width: 848px;
  padding-top: 280px;
  padding-bottom: 40px;
  margin: 0 auto;
  position: relative;
}

.careerup-support img {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.footer {
  background: #000;
  color: #fff;
  margin-top: 0;
  font-size: 1rem;
}

.footer-upper {
  background: #d5d5d5;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: 48px 0 32px 0;
  position: relative;
}

.footer-upper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}

.footer-buttons {
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #000;
  padding: 17px 39px;
  min-width: 225px;
  min-height: 56px;
  margin-bottom: 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: filter 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  padding: 10px;
  box-sizing: border-box;
}

.footer-btn-icon {
  width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer-btn-yellow {
  width: 100%;
  height: 64px;
  background: #d6ff2a;
  color: #000;
}

.footer-btn-green {
  width: 48%;
  font-size: 0.9rem;
  background: #1ed495;
  color: #000;
}

.footer-btn-blue {
  width: 48%;
  background: #3db6ff;
  color: #000;
}

.footer-btn:hover {
  filter: brightness(0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-btn-icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.footer-menu {
  margin-top: 8px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.footer-menu ul li::before {
  display: none;
}

.footer-menu li {
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-menu a {
  color: #111;
  text-decoration: none;
  font-size: 1rem;
}

.footer-totop-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.footer-lower {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 259px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  margin-top: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
}

.footer-logo-tokyo {
  width: 220px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 14px 55.25px 13.281px 55px;
  font-weight: bold;
  font-size: 1.1rem;
  box-sizing: border-box;
}



.footer-links {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a::after {
  content: '|';
  margin: 10px;
}

.footer-links a:last-child::after {
  content: '';
}

.footer-copyright {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 8px;
}

.footer-copyright p {
  margin: 0;
}


/* 追従ボタンをフッター上で非表示にする */
@media (min-width: 0px) {
  .fixed-buttons.hide-on-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}


body.overflow {
  overflow: hidden;
}


#overlay {
  position: relative
}

#overlay.active {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow: hidden;
}

.global-nav {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  border-bottom: 1px solid #000;
}

.global-nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: #fff;
  margin: 0 auto;
  box-sizing: border-box
}

.global-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.global-nav li {
  margin: 0;
  padding: 0;
}

.global-nav a {
  display: block;
  color: #111;
  font-size: 0.95em;
  font-weight: 500;
  text-decoration: none;
  padding: 0 4px;
  letter-spacing: 0.01em;
}

.global-nav a:hover,
.global-nav a:focus {
  opacity: 0.65;
}

@media (max-width: 900px) {
  .global-nav ul {
    gap: 13px;
    font-size: 0.95rem;
  }
}


.project-summary {
  background: #fff;
  padding: 100px 0 0 0;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}



.project-summary-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 10px 16px;
  position: relative;
  z-index: 1;
}

.project-summary-movie-label {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000;
}

.project-summary-movie {
  max-width: 600px;
  max-height: 340px;
  width: 100%;
  margin: 0 auto 100px auto;
}

.project-summary-movie iframe {
  max-width: 600px;
  height: 340px;
}

.project-summary-size-label {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  padding: 2px 16px;
  margin: 12px 0 18px 0;
}

.project-summary-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.heading-box {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #00aaff;
  border-radius: 2px;
}

.heading-box.purple {
  background-color: #AF72FF;
}

.heading-box.big {
  width: 24px;
  height: 24px;
}

.project-summary-title-label {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #000;
  letter-spacing: 0.04em;
  margin: 0px
}

.project-summary-title-label span {
  font-size: 3.8rem;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.04em;
  line-height: 0;
}


.project-summary-main-title {
  font-size: 3.4rem;
  font-weight: 900;
  margin: 18px 0 32px 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.project-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 18px;
  border: 2px solid #ccc;
  background: #fff;
  padding: 48px 32px;
  margin: 50px auto;
  max-width: 730px;
  min-height: 70px;
  box-sizing: border-box;
  background: #FFF;
  border-radius: 5px;
}

.project-summary-tokyo-icon {
  width: 160px;
  object-fit: contain;
}

.project-summary-box-text {
  max-width: 350px;
  text-align: left;
}

.project-summary-box-title {
  font-weight: bold;
  color: #000;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.project-summary-box-desc {
  color: #000;
  font-size: 0.95rem;
}



.target-summary {
  position: relative;
  background: #fff url('../images/ellipse-bg.svg') no-repeat center center;
  background-size: 75%;
  background-position: left bottom 2%;
  padding: 0 0 55px;
  overflow: hidden;
  text-align: left;
}


.target-summary-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0px 16px 40px 16px;
  position: relative;
  z-index: 1;
}

.target-summary-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 36px;
  line-height: 2;
}

.target-summary-box {
  margin: 40px 0 32px;
  box-sizing: border-box;
}

.target-summary-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  color: #000;
}

.target-summary-title-box {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #00aaff;
  border-radius: 2px;
  margin-right: 10px;
}

.target-summary-desc {
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}


.target-summary-desc p {
  font-size: 1rem;
  margin: 30px 0
}

.target-summary-list {
  margin: 18px 0 0 0;
  padding-left: 0;
}

.target-summary-list li {
  color: #000;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-left: 1.2em;
  list-style: none;
}

.target-summary-list li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #00aaff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
}

.target-summary-note {
  font-size: 0.9em;
}

.more-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.more-btn {
  display: inline-block;
  max-width: 376px;
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}

.more-btn a {
  display: block;
  padding: 16px 48px;
}

.more-btn:hover {
  opacity: 0.65;
}

@media (max-width: 700px) {
  .target-summary-inner {
    max-width: 98vw;
    padding: 0 2vw 60px 2vw;
  }

  .target-summary-box {
    padding: 18px 8px;
    max-width: 98vw;
  }
}

.features {
  background: #00aaff;
  padding: 5%;
}

.features-bg {
  background: #fff;
  margin: 0 auto 0px;
  padding-bottom: 90px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 0;
  padding: 90px 0 0px;
}

.features-inner p.center {
  display: flex;
 justify-content: center;
  font-size: 1rem;
  margin: 60px auto 0;
  font-weight: 700;
}

.features-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.features-title-bar {
  display: inline-block;
  width: 32px;
  height: 8px;
  background: #00aaff;
  border-radius: 4px;
}

.features-title-label {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.04em;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 100px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 0;
  position: relative;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}



.feature-num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  font-size: 6.9rem;
  font-weight: bold;
  color: #00aaff;
  min-width: 60px;
  text-align: center;
  line-height: 0.8;
}

.feature-content {
  min-width: 45%;
  height: 100%;
  min-height: 289px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1.5;
}

.feature-content.first {
  justify-content: space-evenly;
}

.feature-item-title {
  display: flex;
  align-items: center;
}

.feature-item-title.labels {
  height: 100%;
  justify-content: space-evenly;
  gap: 16px;
}

.feature-heading {
  font-size: 1.75rem;
  font-weight: 900;
  color: #111;
  margin-top: 10px;
  margin-left: 25px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.feature-desc {
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin-top: 10px;
  margin-bottom: 8px;
  width: 80%;
  justify-content: flex-end;
  margin-left: auto;
}

.feature-labels {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 0;
  padding: 28px 20px;
  margin-top: 24px;
  font-size: 1rem;
  font-weight: normal;
  width: 80%;
  justify-content: flex-end;
  margin-left: auto;
  height: 48px;
  min-width: 340px;
  box-sizing: border-box;
}

.feature-labels .feature-label {
  background: none;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 0;
  padding: 0;
  font-weight: bold;
  border: none;
  display: flex;
  align-items: center;
  height: 48px;
  line-height: 1;
  margin-right: 10px;
}

.feature-labels .feature-label.normal {
  font-size: 0.8rem;
  font-weight: normal;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-left: 16px;
  padding: 0;
  white-space: pre-line;
}


.feature-image {
  flex: 1;
  min-width: 45%;
  max-height: 289px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  object-fit: cover;
}

.features-support {
  max-width: 960px;
  border: 1.5px solid #000;
  margin: 100px auto 0px auto;
  padding: 0px 32px 10px 32px;
  text-align: center;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.features-support-title {
  width: max-content;
  background: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: 18px;
  color: #000;
  line-height: 1.8;
}

.features-support-strong {
  font-size: 2rem;
  font-weight: bold;
  color: #111;
  margin-top: 8px;
}

.features-support-labels {
  max-width: 700px;
  margin: 0 auto;
  gap: 18px 32px;
  justify-content: center;
  margin-top: 32px;
  align-items: center;
}

.features-support-label-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 30px 0;
}

.features-support-label-group:not(:last-child) {
  border-bottom: 1px solid #D5D5D5;
}

.features-support-label {
  background: #111;
  color: #fff;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  display: flex;
  align-items: center;
  min-width: 120px;
  justify-content: center;
  letter-spacing: 0.02em;
}

.features-support-label:first-child {
  margin-right: 1%;
  padding: 10px 4%;
}

.features-support-label.checked {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  color: #000;
  position: relative;
  padding-left: 40px;
}

.features-support-label.checked::before {
  width: 19px;
  height: 16px;
  position: absolute;
  content: "";
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  background: url('../images/check.png') no-repeat center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.support-system .briefing-list,
.reskilling .briefing-list {
  margin-top: 30px;
}


.support-system .briefing-list>li,
.reskilling .briefing-list>li {
  color: #000;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.support-system .briefing-list-dot,
.reskilling .briefing-list-dot {
  top: 8px
}

.top-blue {
  background: #00aaff;
  padding: 0 5% 5% 5%;
}

.top-purple {
  background: #a18fff;
  padding: 5%;
}

.top-purple .heading-box {
  background: #09CD86
}

.voices-section {
  max-width: 1100px;
  margin: 0 auto 20px;
}

.voices-list-container {
  display: flex;
  flex-direction: column;
  gap: 4%;
}

.voices-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 0;
}

.voices-title-bar {
  display: inline-block;
  width: 32px;
  height: 10px;
  background: #00aaff;
  border-radius: 4px;
}

.voices-title-label {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.04em;
}

.voices-list {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  box-sizing: border-box;
}

.swiper-slide{
  display: flex;
  width: 49%;
}

.voice-card {
  background: #fff;
  border: 1px solid #888;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  min-height: 360px;
  box-sizing: border-box;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.20);
}

.voice-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;

}


.voice-icon {
  width: 70px;
  height: 70px;
  padding: 12px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #00aaff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 2.1rem;
  color: #fff;
}

.voice-icon img {
  object-fit: contain;
}

.voice-icon.green {
  background: #1ed495;
}

.voice-icon.purple {
  background: #a18fff;
}

.voice-title {
  font-size: 0.98rem;
  font-weight: bold;
  margin-bottom: 2px;
  color: #000;
  text-align: right;
}

.voice-meta {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #111;
  text-align: right;
}

.voice-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0;
}

.voice-text span {
  display: inline-flex;
  justify-content: right;
  margin-top: 10px;
  width: 100%;
  font-size: 0.8rem;
}



.top-purple .normal-list {
  margin-top: 30px;
  margin-bottom: 10px;
  padding-left: 0;
}

.top-purple .normal-list>li {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  list-style: disc;
  padding: 0;
  margin-left: 20px;
  /* 200% */
}

.top-purple .normal-list>li::before {
  display: none;

}


.faq-section {
  background: #F8F8F8;
}

.faq-inner {
  max-width: 960px;
  margin: 0px auto 0 auto;
  padding: 100px 16px 80px 16px;
}

.faq-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.faq-title-bar {
  width: 16px;
  height: 16px;
  background: #00aaff;
  border-radius: 2px;
  display: inline-block;
}

.faq-title-label {
  font-size: 2.1rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.04em;
}



.faq-item {
  border-bottom: 2px solid #d5d5d5;
  padding: 24px 0;
}

/* 
.faq-item.open{
  transition: all 0.5s;
} */


.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-weight: bold;
  font-size: 1.08rem;
  color: #111;
  position: relative;
  cursor: pointer;
}

.faq-q::before {
  content: "Q.";
  position: absolute;
  color: #111;
  font-weight: bold;
  margin-right: 8px;
}

.faq-q-text {
  width: 80%;
  display: block;
  margin-left: 30px;
  flex: 1;
  line-height: 1.6;
}

.accordion-toggle {
  width: 32px;
  height: 32px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00aaff;
  position: relative;
  padding: 5px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.accordion-toggle.plus::before,
.accordion-toggle.plus::after,
.accordion-toggle.minus::before {
  content: "";
  position: absolute;
  background: #000;
  border-radius: 2px;
}

.accordion-toggle.plus::before,
.accordion-toggle.minus::before {
  width: 22px;
  height: 2px;
  left: 5px;
  top: 14px;
}

.accordion-toggle.plus::after {
  width: 2px;
  height: 22px;
  left: 15px;
  top: 5px;
}

.accordion-toggle.minus::after {
  display: none;
}


.faq-a {
  width: 100%;
  display: none;
  margin-top: 12px;
  font-size: 1.08rem;
  color: #000;
  line-height: 1.7;
}

.faq-a::before {
  content: "A.";
  position: absolute;
  font-weight: bold;
  margin-right: 8px;
}

.faq-a-text {
  width: 84%;
  display: block;
  margin-left: 30px;
  flex: 1;
  line-height: 1.6;
  font-weight: 500;
}





.news-section {
  max-width: 960px;
  margin: 80px auto 0 auto;
  padding: 0 16px 80px 16px;
  background: #fff;
}

.news-title-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.news-title-bar {
  width: 16px;
  height: 16px;
  background: #00aaff;
  border-radius: 2px;
  display: inline-block;
}

.news-title-label {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.04em;
}



.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 2px solid #eee;
  padding: 24px 0;
  font-size: 1rem;
}

.news-item-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-date {
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 8px;
}

.news-label {
  display: inline-block;
  background: #fff;
  color: #111;
  border: 1px solid #111;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 2px 18px;
  margin-right: 12px;
  box-sizing: border-box;
}

.news-text {
  color: #111;
  font-size: 1.05rem;
  font-weight: bold;
  flex: 1;
}

.news-more-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.news-more-btn {
  background: #111;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 16px 48px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.1em;
}

.news-more-btn:hover {
  background: #00aaff;
  color: #fff;
}

.top-btn {
  position: absolute;
  top: -65px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  height: 50px;
  margin: 40px auto;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  background: #F8F8F8;
  border: none;
  z-index: 99;
  padding: 10px 0;
  box-sizing: border-box;
}

.top-btn-line {
  display: block;
  width: 30px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.top-btn-arrow {
  display: block;
  width: 24px;
  height: 2px;
  position: relative;
  margin-bottom: 4px;
}

.top-btn-arrow::before,
.top-btn-arrow::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  top: 10px;
}

.top-btn-arrow::before {
  left: 0;
  transform: rotate(-40deg);
}

.top-btn-arrow::after {
  right: 0;
  transform: rotate(40deg);
}

.top-btn-text {
  position: absolute;
  bottom: 5px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 4px;
}


.footer #msta_langArea {
  display: none;
}

@media (min-width: 2200px) {
  .header-inner {
    max-width: 1600px;
  }


  .global-nav-inner {
    max-width: 1600px;
  }


  .fixed-buttons-inner {
    max-width: 1600px;
  }

  .main-visual-bg,
  .target-summary {
    background: url(../images/ellipse-bg_big.svg);
    background-position: center;
    background-repeat: no-repeat;
  }

  .main-visual-period .period-label {
    font-size: 2rem;
  }

  .main-visual-period .period-label {
    font-size: 1.5rem;
    margin-right: 20px
  }

  .main-visual-period {
    margin-top: 1.5rem;
  }

  .period-year {
    font-size: 2rem;
    font-weight: 500;
  }

  .period-year {
    font-size: 2rem;
  }

  .period-big {
    font-size: 3.8rem;
  }

  .careerup-support {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
  }

  .period-tilde {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    margin: 10px;
    position: relative;
  }

  .features,
  .top-purple {
    max-width: 1400px;
    margin: auto;
    padding: 80px;
    box-sizing: border-box;
  }

  .top-blue {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px 80px 80px;
    box-sizing: border-box;
  }

  .faq-section,
  .footer {
    max-width: 1400px;
    margin: auto;
  }
}


@media (max-width: 1200px) and (min-width: 769px) {

  .main-visual-center{
    width: 100%;
  }
  .main-visual-period .period-label{
    margin-right: 1vw;
  }


  .global-nav ul {
    gap: 30px;
  }


  .course-select-list {
    gap: 10px;
  }

  .course-select-list li {
    width: 50%;
  }

  .main-visual-hero {
    min-height: auto;
  }

  .main-visual-inner {
    width: 95%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    padding-bottom: 10%;
  }

  .careerup-support-inner {
    max-width: 90%;
  }


  .features-inner,
  .features-support {
    max-width: 92%;
  }

  .footer-upper {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0 24px 0;
    align-items: flex-start;
  }

  
  .footer-upper-inner {
    max-width: 960px;
    width: 95%;
  }

  .footer-buttons {
    gap: 10px;

  }

  .voice-text,
  .voice-meta {
    font-size: 1.7vw;
  }



  .main-visual-period .period-label {
    margin-top: 0px;
  }

}

@media (max-width: 1000px) and (min-width: 769px) {

  .tab-menu {
    width: 90%;
    flex-wrap: wrap;
  }

  .tab {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .careerup-title-text{
   font-size: 1.5vw;
  }

  .careerup-visual-inner{
    max-width: 95%;
  }

  .voice-card{
    padding: 16px;
  }

.voice-title{
  font-size: 1.4vw;
}

  .global-nav ul {
    gap: 15px;
  }

  .global-nav li a {
    font-size: 0.78rem;
  }

  .course-select-btn {
    font-size: 0.8rem;
  }

 

  .course-detail-desc,
  .course-detail-right {
    max-width: 100%;
  }

  .feature-labels .feature-label {
    font-size: 0.8rem;
  }

  .features-support-label{
    font-size: 1rem;
  }

  .fixed-buttons .btn{
    font-size: 0.9rem;
  }



  .footer-menu a{
    font-size: 0.9rem;
  }

  .footer-btn{
    min-width: auto;
    font-size: 0.7rem;
  }
}

/* SPメニュー */

@media (max-width: 768px) {

  .overflow .header,
  .overflow main {
    overflow: hidden;
  }

  body {
    padding: 0;
    margin: 0;
    font-size: 15px;
    background: #fff;
  }

  .header {
    height: auto;
    margin-bottom: 0;
  }

  .header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }


  .tokyo-icon {
    width: 60px;
  }

  .academy {
    width: 120px;
    justify-content: center;
  }

  .header-lang {
    display: none;
  }

  .header-left,
  .header-right {
    flex-direction: row;
    height: auto;
  }

  .header-menu,
  .header-search {
    padding: 10px;
  }

  .header-search,
  .header-menu {
    width: 70px;
    height: 70px;
    box-sizing: border-box;
    border: none;
  }

  .academy img {
    max-width: 180px;
    height: auto;
  }

  .drawer-menu {
    top: 70px
  }

  .drawer-menu-list li {
    font-size: 0.9rem;
    padding: 14px 10px;
  }


  .drawer-menu-inner {
    background: #fff;
    margin: 40px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    width: 90vw;
    max-width: 960px;
    padding: 0 0 0;
    position: relative;
  }

  .drawer-accordion-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: #00aaff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .drawer-link-icon{
    background-size: contain;
  }

  .accordion .accordion-toggle {
    top: -5px;
    right: 5px
  }

  .tab-menu {
    width: 90%;
    flex-wrap: wrap;
  }

  .tab {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .tab:nth-of-type(3),
  .tab:nth-of-type(5) {
    border: none
  }

  .main-visual-inner {
    padding: 0;
  }

  .main-visual-grid {
    padding: 32px 0 16px 0;
    background-size: 32px 32px;
  }

  .main-visual-title {
    font-size: 1.2rem;
    padding: 0 12px;
    text-align: center;
  }

  .main-visual-hero {
    margin: 0;
    padding: 0;
    min-height: auto;
  }

  .main-visual-inner {
    display: block;
    width: 100%;
    justify-content: center;
  }

  .main-visual-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
    background: url('../images/ellipse-bg_sp.png') no-repeat left 180px;
    background-size: 90%;
  }
  .main-visual-person {
    margin: 30px 0
  }

  .main-visual-about {
    font-size: 1rem;
    margin-top: 8px;
  }

  .global-nav {
    display: none;
  }

  .main-visual-inner {
    padding-top: 0;
    padding-bottom: 0px;
  }

  .main-visual-content {
    max-width: 95%;
    margin: auto;
    padding: 30px 0;
  }

  .main-visual-tokyo {
    width: 95%;
    margin: auto
  }

  .main-visual-period {
    font-weight: bold;
    margin-top: 30px;
  }

  .main-visual-period .period-label {
    font-size: 1rem;
    margin: 10px;
  }

  .main-visual-features {
    justify-content: center;
    width: 100%;
    margin: auto;
    gap: 5px;
  }

  .main-visual-period {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    letter-spacing: 0.01em;

  }

  .period-year {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .period-tilde {
    font-size: 2rem;
    font-weight: bold;
  }

  .period-tilde::before {
    content: "\FF5E";
  }

  .period-date-group {
    justify-content: center;
    margin-top: 10px;
    gap: 3px;
  }

  .period-date-notice {
    font-size: 14px;
  }

  .main-visual-period .period-date.period-big {
    font-size: 2.4rem;
  }

  .main-visual-period .period-label {
    margin: 0;
  }



  .fixed-buttons {
    background: none;
  }

  .fixed-buttons-inner{
    background: none;
    padding: 10px 0;
  }

  .fixed-buttons-list {
    padding: 0;
    gap: 5px;
  }

  .fixed-buttons .btn {
    min-width: 33%;
    height: auto;
    border-radius: 0;
    border: none;
    flex-direction: column;
    font-size: 2.8vw;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
  }

  .fixed-buttons .btn-yellow {
    min-width: 33%;
    margin: 0;
  }


  .fixed-buttons .btn-green {
    min-width: 40%;
  }

  .fixed-buttons .btn-blue {
    min-width: 22%;
    margin: 0;
  }

  .fixed-buttons .drawer-link-icon {
    background-size: contain;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 1px;
  }

  .heading-box {
    width: 20px;
    height: 20px;
  }

  .careerup-visual {
    padding-top: 40px;
  }

  .careerup-visual-inner {
    width: 90%;
    margin: 0 auto;
  }


  .careerup-title {
    position: relative;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
  }

  .careerup-title span {
    font-size: 1.2rem;
  }

  .careerup-title-text {
    position: relative;

  }

  .careerup-title-bar {
    position: absolute;
  }

  .careerup-title-text h2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .careerup-title-bar:nth-of-type(1) {
    bottom: 30px;
    left: -50px;
  }

  .careerup-title-bar:last-of-type {
    bottom: 30px;
    right: -50px;
    transform: rotate(-70deg);
  }



  .careerup-balloon {
    margin-bottom: -30px;
    width: 100%;
  }

  .careerup-balloons {
    margin: auto;
    max-width: 465px;
    width: 100%;
    gap: 3px;
  }

  .careerup-support {
    margin-top: -110px;
    margin-bottom: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 20%, 0 0, 0 100%, 100% 100%, 100% 0);
  }


  .careerup-support-inner {
    max-width: 90%;
    position: relative;
    z-index: 2;
    height: 200px;
    margin-top: 100px;
    padding-top: 10%;
    padding-bottom: 0;
  }


  .careerup-support img {
    margin-top: 50px;
    top: 0;
    z-index: 2;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }



  .section-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 50px;
  }

  .support-system .briefing-list>li {
    font-size: 1rem;
    padding-left: 20px;
  }

  .course-select-list {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
  }

  .course-select-list li {
    width: 95%;
    margin: 0 auto;
  }

  .course-select-btn {
    max-width: 465px;
    margin: auto;
    height: 58px;
    font-size: 1rem;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    font-weight: 900;

  }

  .course-select-btn-text{
    justify-content: flex-start;
  }

  .course-select-btn a {
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    /* 187.5% */
  }



  .arrow {
    font-size: 1.2em;
  }



  .project-summary-inner {
    max-width: 90%;
    padding-bottom: 0;
  }

  .project-summary-box {
    max-width: 465px;
    flex-direction: row;
    padding: 40px 12px;
    margin:20px auto 30px;
    border: 1px solid #000;
    border-radius: 0;
    box-shadow: 5px 5px 0px 0px;
  }

  .project-summary-tokyo-icon {
    width: 99px;
  }

  .project-summary-box-text {
    width: 174px;
  }

  .project-summary-movie iframe {
    max-width: 400px;
    height: 210px;
  }

  .project-summary-main-title {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .project-summary-movie {
    margin-bottom: 50px;
  }

  .target-summary {
    padding-bottom: 0;
    background: none;
  }

  .target-summary-inner {
    max-width: 100%;
    padding: 0;
  }

  .target-summary-lead {
    font-size: 1rem;
    width: 90%;
    margin: 0 auto 30px;
  }

  .target-summary-box-inner {
    width: 100%;
    margin: 0 0 0 5%;
  }

  .target-summary-title {
    font-size: 1.4rem;
    font-weight: 900;
  }

  .more-btn-wrap {
    width: 90%;
    margin: 30px auto
  }

  .target-summary-list li {
    font-size: 1rem;
    color: #000;
  }

  .briefing-list {
    margin-top: 30px;
  }

  .briefing-session {
    margin: 0 auto;
  }

  .briefing-session-text{
    max-width: 100%;
  }

  .briefing-session-content {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1rem;
  }

  .briefing-list-title {
    font-size: 1.2rem;
  }

  .briefing-list .briefing-list-dot {
    top: 8px;
  }

  .briefing-list>li {
    padding-left: 0;
  }

  .support-system .briefing-list>li,
  .reskilling .briefing-list>li {
    padding-left: 20px;
    font-size: 1rem;
  }

  .briefing-list-dot {
    top: 8px;
    left: 0;
  }

  .briefing-list>li {
    color: #000;
    margin-bottom: 15px;
    padding-left: 20px;
    font-size: 1rem;
    font-weight: 500;
  }

  .briefing-form-inner {
    width: 90%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .briefing-form-inner h3 {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .briefing-form-inner p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .briefing-form-inner input,
  .briefing-form-inner textarea {
    width: calc(100% - (2 * var(--padding)));
    padding: var(--padding);
    border-radius: var(--border-radius);
    border: none;
    background-color: #f8f8f8;
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: #000;
    box-sizing: border-box;
  }

  .briefing-form-inner input::placeholder,
  .briefing-form-inner textarea::placeholder {
    color: #aaa
  }

  .briefing-form-btn {
    font-size: 1rem;
    margin-top: 30px;
  }

  .briefing-session-content h3 {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .briefing-session-img {
    max-width:465px;
    width: 100%;
    margin: auto;
  }

  .project-summary {
    padding-top: 0
  }

  .project-summary-title-group {
    margin-bottom: 5px;
    gap: 16px
  }

  .project-summary-title-label {
    font-size: 1.4rem;
    line-height: 28px;
    margin: 0
  }

  .project-summary-title-label span {
    font-size: 2.9rem;
  }

  .heading-box.big {
    width: 20px;
    height: 20px;
  }

  .features {
    margin: 0;
    padding: 15% 5%;
  }

  .features-bg {
    padding-bottom: 50px;
    margin-bottom: 0;
  }

  .features-list {
    margin-top: 30px;
    gap: 50px;
  }

  .feature-item,
  .feature-item.reverse {
    flex-direction: column-reverse;
    gap: 0px;
  }

  .feature-item-title {
    margin-left: 0;
  }

  .feature-content {
    width: 85%;
    margin: 0 auto;
    min-height: 220px;
  }

  .feature-image {
    max-width: 465px;
    width: 85%;
    max-height: 100%;
    margin: 0 auto;
  }

  .feature-num {
    font-size: 4rem;
  }

  .feature-heading {
    margin-top: 20px;
    margin-left: 0;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 900;
    line-height: 32px;
    /* 133.333% */
    letter-spacing: 0.72px;
  }

  .feature-item-title {
    margin-left: -5%;
    margin-bottom: 20px;
  }

  .feature-desc {
    width: 100%;
    margin: 0 auto;
  }

  .feature-labels {
    min-width: auto;
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    padding: 4%;
  }

  .feature-labels .feature-label {
    width: 47%;
    font-size: 1rem;
  }



  .feature-label:last-child {
    width: 50%;
  }

  .features-support-strong {
    font-size: 1.4rem;
  }

  .feature-labels svg {
    height: 50px;
  }

  .feature-labels .feature-label.normal {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.42px;
    margin-left: 10px;
    margin-right: 0;
  }

  .features-support {
    max-width: 450px;
    width: 85%;
    margin: 90px auto 50px;
    padding: 0 0;
    border: 3px solid;
  }

  .features-support-title {
    width: 80%;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .features-support-label-group {
    width: 90%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px auto 0px;
    gap: 5px
  }

  .features-support-label {
    min-width: auto;
    width: 80%;
  }

  .features-support-label:first-child {
    font-size: 1.1rem;
    width: max-content;
    margin-right: 0;
    margin: 10px auto;
    padding: 8px 20px;
  }

  .features-support-label.checked {
    width: max-content;
    font-size: 1rem;
    margin-left: 10%;
  }

  .target-summary-box {
    background: url('../images/ellipse-bg_sp.png') no-repeat left 0px;
    background-size: 100%;
    border-radius: 10px;
    padding: 0;
    max-width: 90%;
    margin: 10% 0;
  }

  .top-blue .features-inner {
    padding: 50px 15px 0
  }

  .top-blue {
    padding: 5%;
    margin-bottom: 0;
  }

  .top-purple {
    padding: 5% 5% 20%;
    margin-bottom: 0;
  }

  .top-purple .features-bg {
    padding: 20px;
  }

  .top-purple .features-inner {
    padding: 40px 2%;
  }

  .top-purple .normal-list {
    padding: 0;
  }

  .swiper-slide{
    display: block;
  }

  .voices-section {
    padding: 0 1%;
  }

  .voices-title-label,
  .faq-title-label,
  .news-title-label {
    font-size: 1.5rem;
  }

  .voice-card-header {
    flex-direction: column;
  }

  .voices-section {
    padding: 0;
  }

  .voice-card {
    width: 98%;
    max-width: 400px;
    min-height: 400px;
    margin:20px auto 0;
    padding: 20px;
    height: auto;
    box-sizing: border-box;
    border: 1px solid #000;
    box-shadow: none;
  }

  .voice-title,
  .voice-meta {
    font-size: 1rem;
    font-weight: 900;
    text-align: center;
    margin-top: 3px;
  }


  .voices-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 3px;
  }

  .voice-text {
    font-size: 1rem;
  }

  .voice-text span {
    margin-top: 10px;
    font-size: 0.7rem;
  }

  .course-detail-list {
    margin-top: 30px;
  }

  .course-detail-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .course-detail-left,
  .course-detail-right {
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }


  .course-detail-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 40px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.42px;
  }

  .course-detail-title {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
    line-height: 32px;
    /* 133.333% */
  }

  .course-detail-right {
    margin-top: 30px;
    padding: 20px
  }

  .course-detail-tag {
    width: max-content;
    font-size: 1rem;
    padding: 10px;
    box-sizing: border-box;
    letter-spacing: 0.8px;
  }

  .course-detail-list-ul li b {
    font-size: 20px;
  }

  .course-detail-list-ul-li-text {
    font-size: 1rem;
  }

  .course-detail-list {
    gap: 20px;
    margin-bottom: 30px;
  }

  .course-detail-list-ul li .course-detail-list-text {
    color: #000;
    padding-left: 15px;
  }


  .course-detail-desc {
    display: block;
    margin: auto;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
  }

  .course-detail-list-ul-li-text {
    width: 90%;
  }

  .pmp-list {
    width: 85%;
    margin: 0 auto 60px;
    font-weight: 500;
  }

  .top-purple .normal-list>li {
    margin-bottom: 30px;
  }

  .features-inner {
    padding-top: 60px;
  }

  .features-inner p.center {
    max-width: 465px;
    margin-top: 30px;
  }

  .faq-title-group,.news-title-group{
    margin: 0;
  }

  .faq-inner {
    padding: 50px 5%
  }

  .faq-a {
    width: 90%;
    margin-top: 30px;
    margin-left: 10px;
  }

  .faq-a-label {
    margin-right: 0;
  }

  .faq-a-text {
    width: 85%;
    font-size: 1rem;
    line-height: 1.5;
  }



  .flow-steps {
    gap: 0;
    margin-top: 40px;
    padding: 0 3%;
  }
  .flow-step {
    flex-direction: column;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 10%;
  }

  .flow-step-header {
    width: 100%;
    margin: 0 auto;
  }

  .flow-step-body {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    font-weight: 500;
  }

  .flow-arrow-icon {
    margin: 20px
  }

  .learning-flow-img,
  .credit-system-img {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
    padding-bottom: 20px;
  }

  .search-box {
    top: 70px;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    margin-bottom: 20px;
    justify-content: space-between;
  }

  .learning-flow-img img,
  .credit-system-img img {
    width: 200%;
  }

  .flow-arrow {
    margin: 0 auto 8px auto;
  }



  .btn {
    width: 100%;
    font-size: 1rem;
    height: 44px;
    border-radius: 6px;
  }

  .footer-upper-inner {
    width: 80%;
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
  }

  .footer-buttons {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    width: 100%;
    margin: 0
  }

  .footer-btn {
    display: flex;
    margin: auto;
    width: 90%;
    font-size: 1rem;
    height: 44px;
    border-radius: 6px;
    justify-content: center;
  }

  .footer-btn-yellow {
    width: 100%;
  }

  .footer-menu ul {
    text-align: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }

  .footer-lower {
    height: auto;
    padding: 52px 8px;
    font-size: 0.85rem;
  }

  .footer-logo-tokyo {
    margin-bottom: 10px;
  }

  .footer-logos {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    width: 80%;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .footer-links a {
    margin-top: 10px;
  }

  .footer-copyright {
    width: 80%;
    margin: 20px auto;
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5
  }

  .footer-copyright p {
    margin-top: 3px
  }


  ::-webkit-scrollbar {
    height: 32px;
    border-radius: 20px;
  }

  ::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 20px;
    border: 3px solid #d5d5d5;

  }

  ::-webkit-scrollbar-thumb {
    background: #d5d5d5;
    border-radius: 20px;
    border: 8px solid transparent;
    background-clip: padding-box;
  }



}


@media (max-width: 400px) {

  .voice-card{
    min-height: 435px;
  }
}


