:root {
  --color-navy: #0b2d67;
  --color-blue: #28559d;
  --color-gold: #9f874d;
  --color-sand: #f3efe6;
  --color-bg: #f7f8fb;
  --color-line: #d9dee8;
  --color-text: #203049;
  --color-muted: #67758d;
  --color-white: #fff;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --shadow-card: 0 18px 40px rgba(17, 42, 86, 0.08);
  --container: min(1120px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #fff;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* スマホのみ改行 */
.br-sp {
  display: none;
}

/* PCのみ改行 */
.br-pc {
  display: inline;
}

.page {
  overflow: clip;
}

.hero,
.contact {
  position: relative;
  isolation: isolate;
}

.site-header-group {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e4dfd4;
}

.mobile-fixed-cta {
  display: none;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 45, 103, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(17, 42, 86, 0.16);
  color: var(--color-navy);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:hover {
  background: var(--color-navy);
  color: #fff;
}

.pagetop__icon {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
}

.pagetop__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -35%) rotate(-45deg);
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  width: min(1280px, calc(100% - 32px));
}

.site-brand {
  display: block;
  width: min(275px, 28vw);
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__cta-button {
  display: flex;
  align-items: center;
  height: 48px;
}

.site-header__cta-button img {
  display: block;
  width: auto;
  height: 100%;
}

.hero__action img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__cta-button {
  transition: opacity 0.2s ease;
}

.site-header__cta-button:hover {
  opacity: 0.8;
}

.keni-gnav_wrap {
  position: relative;
  border-top: 1px solid #f1ece2;
  background: #f7f5ef;
  z-index: 20;
}

.keni-gnav_outer {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.keni-gnav {
  position: relative;
}

.keni-gnav_inner {
  width: 100%;
}

.keni-gnav_cont {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.keni-gnav_cont > li {
  position: relative;
  min-width: 0;
}

.keni-gnav_cont > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  color: #1f1f1f;
  font-size: 0.95rem;
  font-weight: 500;
  border-right: 1px solid #ece6db;
}

.keni-gnav_cont > li:last-child > a {
  border-right: 0;
}

.keni-gnav_cont > li:nth-last-child(2) > a,
.keni-gnav_cont > li:last-child > a {
  color: #fff;
}

.keni-gnav_cont > li:nth-last-child(2) > a {
  background: #1296d8;
}

.keni-gnav_cont > li:last-child > a {
  background: #b10808;
}

.menu-item-has-children > a {
  cursor: pointer;
}

.sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  display: block;
  width: 284px;
  margin: 0;
  padding: 14px 18px;
  list-style: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(17, 42, 86, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.keni-gnav_cont > li:first-child > .sub-menu {
  left: 0;
  transform: translate(0, 10px);
}

.sub-menu li + li {
  margin-top: 8px;
}

.sub-menu a {
  display: block;
  color: #222;
  font-size: 0.92rem;
  line-height: 1.55;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.keni-gnav_cont > li:first-child:hover > .sub-menu,
.keni-gnav_cont > li:first-child:focus-within > .sub-menu,
.keni-gnav_cont > li:first-child.is-open > .sub-menu {
  transform: translate(0, 0);
}

.keni-gnav-child_btn {
  display: none;
}

.keni-gnav_btn_wrap {
  display: none;
}

.keni-gnav_btn {
  display: none;
}

.hero {
  background: url("../images/hero_bg_pc.png") center top/100% auto no-repeat;
  aspect-ratio: 1563 / 889;
  color: #fff;
  border-top: 1px solid #fff;
}

.hero__inner {
  min-height: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 56px;
}

.hero__copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1.26;
  color: #dbb16c;
  font-family: var(--font-serif);
}

.eyebrow--light {
  color: #d8e6ff;
}

.hero h1,
.section-heading h2,
.briefing__content h3,
.contact h2 {
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 54px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  max-width: 17em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  font-family: var(--font-serif);
}

.hero__actions,
.reasons__actions,
.briefing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  align-self: flex-end;
  justify-content: flex-end;
  gap: 20px;
  transform: translateY(calc(-50% - 20px));
}

.hero__action {
  display: block;
  width: clamp(110px, 17vw, 244px);
  min-width: 0;
}

.hero__action--gold {
  margin-top: 2px;
}

@media (min-width: 1200px) {
  .hero > .container.hero__inner {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero__actions {
    margin-right: clamp(40px, 6vw, 120px);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--color-gold);
  color: #fff;
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.button--blue {
  background: var(--color-blue);
  color: #fff;
}

section {
  padding: 88px 0;
}

.followup,
.faq {
  background: var(--color-bg);
}

.section-heading {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading__shadow {
  margin: 0;
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-family: var(--font-serif);
  line-height: 0.9;
  color: rgba(12, 45, 103, 0.07);
  pointer-events: none;
}

.section-heading h2 {
  position: relative;
  margin: -10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--color-navy);
}

.section-heading--light .section-heading__shadow {
  color: rgba(255, 255, 255, 0.08);
}

.section-heading--light h2 {
  color: #fff;
}

.achievement {
  background: #e0e9f9;
  overflow: hidden;
}

.achievement .section-heading {
  margin-bottom: 18px;
}

.achievement .section-heading__shadow {
  position: relative;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: clamp(5.5rem, 18vw, 13rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.achievement .section-heading h2 {
  margin-top: -46px;
}

.achievement__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.followup__panel,
.reason-card,
.program-card,
.year-card,
.schedule-card,
.briefing__content,
.briefing__media {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.achievement-item {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  min-height: 100%;
}

.achievement-item__visual {
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: 320px;
}

.achievement-item__visual--building img {
  width: min(100%, 277px);
}

.achievement-item__visual--chart img {
  width: min(100%, 486px);
}

.achievement-item__value {
  margin: 10px 0 0;
  color: var(--color-navy);
  font-size: clamp(3rem, 5vw, 4.1rem);
  font-weight: 800;
  line-height: 1;
}

.achievement-item__value span {
  margin-left: 0.1em;
  font-size: 0.42em;
}

.achievement-item__title {
  margin: 48px 0 0;
  color: var(--color-navy);
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.35;
}

.followup__panel {
  overflow: hidden;
  padding: 18px;
}

.followup__panel img,
.briefing__media img {
  border-radius: 18px;
  object-fit: cover;
}

.reasons {
  background: #fff;
}

.reasons .section-heading {
  margin-bottom: 52px;
}

.reasons .section-heading__shadow {
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 600;
  color: rgba(12, 45, 103, 0.07);
}

.reasons .section-heading h2 {
  margin-top: -40px;
  line-height: 1.28;
}

.reasons__list {
  display: grid;
  gap: 56px;
}

.reason-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
}

.reason-feature__content {
  order: 2;
}

.reason-feature__media {
  order: 1;
  overflow: hidden;
}

.reason-feature--reverse .reason-feature__content {
  order: 1;
}

.reason-feature--reverse .reason-feature__media {
  order: 2;
}

.reason-feature__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(11, 45, 103, 0.85);
}

.reason-feature__index {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(4.8rem, 9vw, 7.2rem);
  font-weight: 600;
  line-height: 0.9;
}

.reason-feature__heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.5rem, 2.45vw, 2.2rem);
  line-height: 1.22;
}

.reason-feature__sub {
  margin: 14px 0 0;
  color: var(--color-navy);
  font-size: clamp(1.15rem, 1.75vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
}

.reason-feature__body {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.reason-feature__media img {
  width: 100%;
  aspect-ratio: 700 / 398;
  border-radius: 0;
}

.reason-feature__media video {
  display: block;
  width: 100%;
  aspect-ratio: 700 / 398;
  border-radius: 0;
  background: #000;
}

.reasons__actions {
  justify-content: center;
  margin-top: 56px;
  gap: 12px;
}

.reasons__cta {
  display: block;
  width: min(366px, 32vw);
}

.reasons__cta img {
  width: 100%;
  height: auto;
}

.programs {
  position: relative;
  overflow: hidden;
  background: url("../images/bg_course.jpg") center bottom / cover no-repeat;
}

.programs .section-heading {
  margin-bottom: 56px;
}

.programs .section-heading__shadow {
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 600;
  color: rgba(70, 126, 230, 0.32);
}

.programs .section-heading h2 {
  margin-top: -34px;
  line-height: 1.2;
}

.programs__tracks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.program-track__head {
  margin-bottom: 26px;
  text-align: center;
  color: #fff;
}

.program-track__label {
  margin: 0;
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.program-track__head h3 {
  margin: 8px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  line-height: 1.2;
}

.program-track__desc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 38px;
}

.program-link-card {
  display: block;
  background: #fff;
  color: #13284c;
  box-shadow: 0 18px 30px rgba(3, 18, 53, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 38px rgba(3, 18, 53, 0.28);
}

.program-link-card__art {
  aspect-ratio: 4 / 2.35;
  overflow: hidden;
}

.program-link-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-link-card__body {
  padding: 18px 18px 20px;
}

.program-link-card__body h4 {
  margin: 0;
  color: #627fbf;
  font-size: 1rem;
  line-height: 1.35;
}

.program-link-card__body h4 span {
  display: block;
  font-size: 0.72em;
  margin-bottom: 2px;
}

.program-link-card__body p {
  margin: 14px 0 0;
  color: #22324f;
  font-size: 0.95rem;
  line-height: 1.6;
}


.guide {
  position: relative;
  background:url("../images/bg_guide.jpg") center bottom no-repeat;
  background-size:100%;
}

.guide .container {
  position: relative;
}

.guide .section-heading {
  margin-bottom: 52px;
}

.guide .section-heading__shadow {
  position: relative;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: clamp(5rem, 18vw, 12rem);
  color: rgba(12, 45, 103, 0.08);
  font-weight: 600;
}

.schedule .section-heading__shadow {
  font-weight: 600;
}

.guide .section-heading h2 {
  margin-top: -32px;
  line-height: 1.18;
}

.guide__schedule {
  display: grid;
  gap: 0;
}

.guide-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 42px;
  padding: 26px 8px 30px;
  border-top: 1px solid rgba(20, 58, 128, 0.85);
}

.guide-row:first-child {
  border-top: 0;
}

.guide-row__year {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(3.7rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
}

.guide-row__content {
  min-width: 0;
}

.guide-row__content--stack {
  display: grid;
  gap: 42px;
}

.guide-row__content > h3,
.guide-entry h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.28;
}

.guide-entry__date {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
}

.guide-entry__note {
  margin: 8px 0 0;
  color: var(--color-navy);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.schedule {
  background: #ecf0f7;
}

.schedule-embed__note {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.schedule-embed__note a {
  color: var(--color-blue);
  text-decoration: underline;
}

.schedule-embed__table-wrap {
  overflow-x: auto;
  border: 1px solid #d8e1f0;
  background: #fff;
}

.schedule-embed__table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-embed__table th,
.schedule-embed__table td {
  padding: 14px 12px;
  border: 1px solid #d8e1f0;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}

.schedule-embed__table thead th {
  background: #204b90;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.schedule-embed__table tbody td:first-child,
.schedule-embed__table tbody td:nth-child(2) {
  text-align: left;
}

.schedule-embed__table tbody td:first-child {
  width: 94px;
  font-weight: 700;
  color: var(--color-navy);
  background: #f6f9ff;
}

.schedule-embed__table tbody td:nth-child(2) {
  width: 280px;
}

.schedule-embed__table tbody td:nth-child(n + 3) {
  font-size: 0.9rem;
  color: var(--color-navy);
}

.schedule-embed__table a {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
}

.schedule-embed__table a:hover {
  text-decoration: underline;
}

.schedule-embed__group th {
  background: #edf3ff;
  color: var(--color-navy);
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
}

.schedule-card + .schedule-card {
  margin-top: 22px;
}

.schedule-card {
  overflow: hidden;
  border: 1px solid #ebeff6;
}

.schedule-card__head {
  padding: 22px 28px;
  color: #fff;
}

.schedule-card__head h3,
.schedule-card__head p {
  margin: 0;
}

.schedule-card__head p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.schedule-card__head--blue {
  background: #9cb6de;
}

.schedule-card__head--green {
  background: #98bb85;
}

.schedule-card__head--orange {
  background: #de9c58;
}

.schedule-card__head--yellow {
  background: #c9b125;
}

.schedule-card__body {
  padding: 16px 20px 22px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--color-muted);
  font-size: 0.86rem;
  background: #fbfcfe;
}

.briefing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.briefing .section-heading {
  margin-bottom: 46px;
}

.briefing .section-heading__shadow {
  position: relative;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: clamp(5.2rem, 17vw, 12rem);
  color: rgba(12, 45, 103, 0.07);
  font-weight: 600;
}

.briefing .section-heading h2 {
  margin-top: -28px;
}

.briefing__media {
  overflow: hidden;
  min-height: 100%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.briefing__content {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 28px 0 0;
}

.briefing__content h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.5rem, 2.45vw, 2.2rem);
  line-height: 1.28;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12, 45, 103, 0.8);
}

.briefing__content h3 span {
  font-size: 0.62em;
  font-weight: 400;
}

.briefing__content p {
  margin: 18px 0 0;
  color: var(--color-navy);
  font-size: 1.02rem;
  line-height: 1.95;
}

.briefing__actions {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 56px;
}

.briefing__cta {
  display: block;
  width: min(366px, 32vw);
}

.briefing__cta img {
  width: 100%;
  height: auto;
}

.briefing__media img {
  border-radius: 0;
}

.faq__list {
  display: grid;
  gap: 18px;
}

.faq {
  background: #eef3fb;
}

.faq .section-heading {
  margin-bottom: 56px;
}

.faq .section-heading__shadow {
  position: relative;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  font-size: clamp(5rem, 17vw, 11rem);
  color: rgba(12, 45, 103, 0.06);
  font-weight: 600;
}

.faq .section-heading h2 {
  margin-top: -32px;
}

.faq__groups {
  display: grid;
  gap: 60px;
}

.faq-group__title {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
}

.faq details {
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 18px 72px 18px 28px;
  background: var(--color-navy);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 22px 28px 26px;
  font-size: 1.12rem;
  line-height: 1.9;
}

.contact {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(9, 35, 79, 0.9), rgba(20, 73, 139, 0.78)),
    url("../images/hero-photo.png") center/cover no-repeat;
  color: #fff;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.contact__inner {
  position: relative;
  text-align: center;
}

.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact__lead {
  max-width: 42rem;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact__phone {
  display: inline-block;
  margin-top: 22px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact__meta {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .achievement__grid,
  .guide__timeline,
  .briefing__grid {
    grid-template-columns: 1fr;
  }

  .site-header__top {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .site-header__cta {
    width: 100%;
    justify-content: flex-end;
  }

  .hero__inner {
    padding-bottom: 40px;
  }

  .hero__action {
    width: clamp(96px, 15vw, 200px);
  }

  .programs__tracks {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .program-cards {
    gap: 24px;
  }

  .reason-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason-feature__content,
  .reason-feature__media,
  .reason-feature--reverse .reason-feature__content,
  .reason-feature--reverse .reason-feature__media {
    order: initial;
  }

  .guide-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-row__content--stack {
    gap: 28px;
  }

  .briefing__grid {
    gap: 28px;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100% - 32px, 560px);
  }

  section {
    padding: 68px 0;
  }

  .site-brand {
    width: min(220px, 56vw);
  }

  .site-header__cta-button {
    height: 44px;
  }

  .site-header__top {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .site-brand {
    flex: 1;
    min-width: 0;
  }

  .keni-gnav_wrap {
    border-top: none;
    background: transparent;
  }

  .keni-gnav_wrap:not(.is-open) {
    height: 0;
    overflow: hidden;
  }

  .keni-gnav_wrap.is-open {
    overflow: visible;
    border-top: 1px solid #ece6db;
    background: #f7f5ef;
  }

  .keni-gnav_btn_wrap {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
    order: 3;
    padding: 0;
    border-top: none;
  }

  .keni-gnav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .keni-gnav_btn_icon-open,
  .keni-gnav_btn_icon-open::before,
  .keni-gnav_btn_icon-open::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #173a72;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .keni-gnav_btn_icon-open {
    position: relative;
  }

  .keni-gnav_btn_icon-open::before,
  .keni-gnav_btn_icon-open::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .keni-gnav_btn_icon-open::before {
    top: -7px;
  }

  .keni-gnav_btn_icon-open::after {
    top: 7px;
  }

  .keni-gnav_wrap .keni-gnav_inner {
    display: none;
  }

  .keni-gnav_wrap.is-open .keni-gnav_inner {
    display: block;
  }

  .site-header:has(.keni-gnav_wrap.is-open) .keni-gnav_btn_icon-open {
    background: transparent;
  }

  .site-header:has(.keni-gnav_wrap.is-open) .keni-gnav_btn_icon-open::before {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header:has(.keni-gnav_wrap.is-open) .keni-gnav_btn_icon-open::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .keni-gnav_cont {
    grid-template-columns: 1fr;
  }

  .keni-gnav_cont > li > a {
    justify-content: flex-start;
    min-height: 52px;
    padding: 14px 18px;
    border-right: 0;
    border-top: 1px solid #ece6db;
  }

  .keni-gnav_cont > li:first-child > a {
    border-top: 0;
  }

  .menu-item-has-children {
    position: relative;
  }

  .sub-menu {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    padding: 10px 18px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #fff;
    display: none;
  }

  .menu-item-has-children.is-open > .sub-menu,
  .keni-gnav_cont > li:first-child.is-open > .sub-menu {
    position: static;
    left: auto;
    transform: none;
    display: block;
  }

  .sub-menu a {
    padding: 8px 0;
  }

  .keni-gnav-child_btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 52px;
    height: 52px;
  }

  .keni-gnav-child_btn::before,
  .keni-gnav-child_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #173a72;
    transform: translate(-50%, -50%);
  }

  .keni-gnav-child_btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .menu-item-has-children.is-open > .keni-gnav-child_btn::after {
    opacity: 0;
  }

  .br-sp {
    display: inline;
  }

  .br-pc {
    display: none;
  }

  .hero__inner {
    min-height: 100%;
    padding: 0;
  }

  .hero {
    background: url("../images/hero_bg_sp.png") center top/100% auto no-repeat;
    background-color: #061a48;
    aspect-ratio: 943 / 1668;
  }

  .button {
    min-width: 0;
  }

  .hero__actions {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .site-brand {
    width: min(176px, 44.8vw);
  }

  .mobile-fixed-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #e4dfd4;
    justify-content: center;
    align-items: center;
  }

  .mobile-fixed-cta__button {
    display: block;
    flex: 1;
    min-width: 0;
    transition: opacity 0.2s ease;
  }

  .mobile-fixed-cta__button:hover {
    opacity: 0.8;
  }

  .mobile-fixed-cta__button img {
    display: block;
    width: 100%;
    height: auto;
  }

  .page {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .pagetop {
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .hero__lead {
    margin-top: 34px;
    font-size: 1.35rem;
  }

  .section-heading__shadow {
    font-size: 3.4rem;
  }

  .section-heading h2 {
    margin-top: 0;
    font-size: 1.7rem;
  }

  .achievement__grid {
    gap: 28px;
  }

  .achievement-item__visual {
    min-height: auto;
  }

  .reasons .section-heading {
    margin-bottom: 36px;
  }

  .reasons .section-heading h2 {
    margin-top: -16px;
  }

  .reasons__list {
    gap: 44px;
  }

  .reasons__cta {
    width: min(366px, 100%);
  }

  .reason-feature__heading {
    gap: 12px;
    padding-bottom: 10px;
  }

  .reason-feature__heading h3 {
    font-size: 1.3rem;
  }

  .reason-feature__sub {
    font-size: 1.08rem;
  }

  .reason-feature__body {
    font-size: 1rem;
    line-height: 1.85;
  }

  .guide .section-heading {
    margin-bottom: 34px;
  }

  .guide .section-heading h2 {
    margin-top: -12px;
  }

  .briefing .section-heading {
    margin-bottom: 32px;
  }

  .briefing .section-heading h2 {
    margin-top: -12px;
  }

  .briefing__content {
    padding-top: 0;
  }

  .briefing__content h3 {
    font-size: 1.45rem;
  }

  .briefing__content p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .briefing__actions {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 14px;
  }

  .briefing__cta {
    width: min(366px, 100%);
  }

  .faq .section-heading {
    margin-bottom: 38px;
  }

  .faq .section-heading h2 {
    margin-top: -12px;
  }

  .faq__groups {
    gap: 54px;
  }

  .faq-group__title {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }

  .faq summary {
    padding: 16px 58px 16px 18px;
    font-size: 1.18rem;
  }

  .faq summary::after {
    right: 18px;
    font-size: 2rem;
  }

  .faq details p {
    padding: 18px 18px 22px;
    font-size: 1.04rem;
    line-height: 1.8;
  }

  .guide-row {
    padding: 18px 0 24px;
  }

  .guide-row__year {
    font-size: 3.1rem;
  }

  .guide-row__content > h3,
  .guide-entry h3 {
    font-size: 1.62rem;
  }

  .guide-entry__date {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .guide-entry__note {
    font-size: 0.98rem;
  }

  .year-card {
    padding: 24px;
  }

  .briefing__content {
    padding: 16px 8px;
  }

  .programs .section-heading {
    margin-bottom: 38px;
  }

  .programs .section-heading h2 {
    margin-top: -14px;
  }

  .program-track__head {
    margin-bottom: 18px;
  }

  .program-track__head h3 {
    font-size: 1.35rem;
  }

  .program-track__desc {
    font-size: 0.96rem;
  }

  .program-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .program-link-card__body h4 {
    font-size: 0.96rem;
  }

  .program-link-card__body p {
    font-size: 0.9rem;
  }

  .reason-card__content {
    padding: 24px;
  }

  .schedule-card__head {
    padding: 18px 20px;
  }

  .contact {
    padding: 76px 0;
  }

  .contact__phone {
    font-size: 2.2rem;
  }
}

/*既存サイトCSS*/
#course-list_jts {
  background: #ecf0f7;
}
#course-list_cdp{
  background: #e3e9e0;
}
#course-list_cdpi {
  background: #f8eddf;
}
#course-list_osaka {
  background: #f7f5e1;
}
#course-list_tokyo {
  background: #f7f5e1;
}
#course-list_jts h2, #course-list_cdp h2, #course-list_cdpi h2, #course-list_osaka h2, #course-list_tokyo h2 {
  padding: 10px 20px;
  font-size: 34px;
  line-height: 1.4;
  border-top-right-radius: 15px;
  color:var(--color-white);
}
#course-list_jts h2 span, #course-list_cdp h2 span, #course-list_cdpi h2 span, #course-list_osaka h2 span, #course-list_tokyo h2 span {
  display: inline-block;
  opacity: .8;
  font-size: 16px;
  margin-left: 10px;
}
.schedule th.seminar_title .new{
	display: inline-block;
	background: #cc0000;
	color:#FFF!important;
	padding:1px 5px;
	border-radius: 4px;
	font-size: 12px!important;
}
#course-list_jts h2 {
  background: #a2b5d7 !important;
}
#course-list_cdp h2 {
  background: #98b58a !important;
}
#course-list_cdpi h2 {
  background: #d9883d !important;
}
#course-list_osaka h2 {
  background: #c1ab0a !important;
}
#course-list_tokyo h2 {
  background: #c1ab0a !important;
}
.schedule td {
  width: 4%;
}
.schedule th.table_head {
  background: #a2b5d7;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
#course-list_cdp .schedule th.table_head {
  background: #98b58a;
}
#course-list_cdpi .schedule th.table_head {
  background: #d9883d;
}
#course-list_osaka .schedule th.table_head {
  background-color: #c1ab0a;
}
#course-list_tokyo .schedule th.table_head {
  background-color: #c1ab0a;
}
.schedule th.seminar_title {
  text-align: left;
  font-size: 16px;
  padding: 10px 20px;
}
.schedule th.seminar_title a {
  display: flex;
  text-decoration: none;
  align-items: center;
}
.schedule th.seminar_title a span {
  width: 26px;
  height: 26px;
  background-color: #081156;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  margin-right: 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  color: #fff;
}
#course-list_jts .schedule th.seminar_title a {
  color: #6c88bc;
}
#course-list_cdp .schedule th.seminar_title a {
  color: #79956c;
}
#course-list_cdpi .schedule th.seminar_title a {
  color: #d9883d;
}
#course-list_osaka .schedule th.seminar_title a {
  color: #c1ab0a;
}
#course-list_tokyo .schedule th.seminar_title a {
  color: #c1ab0a;
}
#course-list_jts .schedule th.seminar_title a span {
  background-color: #6c88bc;
}
#course-list_cdp .schedule th.seminar_title a span {
  background-color: #79956c;
}
#course-list_cdpi .schedule th.seminar_title a span {
  background-color: #d9883d;
}
#course-list_osaka .schedule th.seminar_title a span {
  background-color: #c1ab0a;
}
#course-list_tokyo.schedule th.seminar_title a span {
  background-color: #c1ab0a;
}
.schedule th.seminar_title a p {
  line-height: 1.2;
  font-size: 1.1em;
}
.schedule th.seminar_format {
  padding: 15px 20px;
  width: 12%;
}
.schedule th.seminar_format li {
  display: block;
  padding: 5px 10px;
  background: #666;
  color: #fff;
  border-radius: 3px;
  margin-right: 10px;
  font-size: 0.8em;
  line-height: 1.2;
  margin: 5px 0;
}
.schedule tr:first-child th:first-child {
  border-top-left-radius: 10px;
  text-align: center;
}
.schedule tr:first-child th:last-child {
  border-top-right-radius: 10px;
  text-align: center;
}
.schedule tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}
.schedule tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
  text-align: center;
}
.schedule td > span {
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
  display: block;
}
.schedule td > b {
  display: block;
  font-size: 0.9em;
}
.schedule td > b:nth-of-type(2) {
  font-size: 0.7em;
}
.schedule td > a {
  color: #6c88bc;
}
.schedule td > a span {
  font-size: 1.3em;
  line-height: 1;
}
.schedule a {
  text-decoration: none;
}
.d-block[class] {
    display: block !important;
}
.f08em {
    font-size: 0.8em !important;
}
.schedule td {
    width: 4%;
}
.schedule th, .schedule td {
    padding: 10px 0;
    text-align: center;
    vertical-align: middle;
    border: #ecf0f7 1px solid;
    background: #fff;
}
.schedule th.seminar_title {
    text-align: left;
    font-size: 16px;
    padding: 10px 20px;
}
.schedule-scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  .schedule .section-heading {
    margin-bottom: 16px;
  }

  .schedule > .section-heading + section {
    margin-top: 0;
  }

  .schedule .container > h2 {
    margin-bottom: 8px;
  }

  .schedule-scroll-hint {
    display: block;
    margin: 0 0 8px;
    font-size: 0.84rem;
    color: #4d4d4d;
    text-align: center;
    line-height: 1.5;
  }

  .schedule-scroll-hint::before,
  .schedule-scroll-hint::after {
    color: #4d4d4d;
    font-weight: 700;
  }

  .schedule-scroll-hint::before {
    content: "← ";
  }

  .schedule-scroll-hint::after {
    content: " →";
  }

  .schedule_frame {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 2.67vw);
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 45, 103, 0.35) transparent;
  }

  .schedule_frame.is-scrollable:not(.is-scrolled-end) {
    box-shadow: inset -28px 0 18px -18px rgba(11, 45, 103, 0.14);
  }

  .schedule {
    table-layout: auto;
  }
  .schedule th.table_head {
    padding: 10px 15px;
  }
}

/*共通ヘッダ*/
#share_header * {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: none;
    list-style: none;
    text-decoration: none;
}
#share_header {
    padding: 10px 10px 5px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    font-weight: normal;
    font-family: sans-serif;
}
#share_header > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#share_header div a img {
    display: block;
    width: auto;
    height: 30px;
}

#share_header div a, #share_header div a img {
    transition: opacity 0.15s linear;
}



/*
# フッター
*/
.keni-footer_wrap{
	background: #fff;
	line-height: 1.8em;
  font-family: 'Roboto', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif;
}

.keni-footer_wrap section{
padding: 0;
}
.keni-footer_wrap ul{
  list-style: none;
  padding: 0;
  margin: 0;
  }

/* フッターコンテンツ */
.keni-footer-cont_wrap{
	overflow: hidden;
}

.keni-footer-cont{
	margin-left: 0;
	width: auto;
}


/*
# フッターパネル
*/
.keni-footer-panel_wrap{
	z-index: 80;
	width: 100%;
	background: #f7f7f7;
}

.keni-footer-panel{
	position: relative;
	min-height: 43px;
	padding: 0;
}

.keni-footer-panel ul{
	display: table;
	width: 100%;
	margin: 0;
	table-layout: fixed;
	border-top: 1px solid #e8e8e8;
}

.keni-footer-panel li{
	display: table-cell;
	border-right: 1px solid #e8e8e8;
	font-size: 1.2rem;
	text-align: center;
}

.keni-footer-panel li a{
	display: block;
	padding: 5px;
	color: #000;
	text-decoration: none;
}

.keni-footer-panel li span::before{
	font-size: 16px;
}

.fixed-bottom{
	position: fixed;
	bottom: 0;
}

.keni-footer-panel_sns{
	display: none;
	position: absolute;
	bottom: 100%;
	background-color: #f7f7f7;
}

.keni-footer-panel_sns .sns-btn_wrap{
	padding: 5px 0;
	border-top: 1px solid #e8e8e8;
}

.fn-footer-panel {
	position: fixed;
	left: 0;
	bottom: -60px;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.fn-footer-panel.is-active {
	bottom: 0;
}

.btn_share{
	cursor: pointer;
}

/*コピーライト*/
.keni-copyright_wrap{
	padding: 15px;
	border-top: 1px solid #eee;
}

/*Footer-contact*/
.keni-footer .keni-section_wrap {
  margin-bottom: 0px !important;
}
.keni-footer_outer {
  margin: 0;
}
#footer-contact {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/bg_footer_contact.jpg);
  text-align: center;
  position: relative;
  color: #fff;
}
#footer-contact::after {
  content: '';
  background-color: rgba(8, 17, 86, .4);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#footer-contact > div {
  padding: 5em 1.5em;
  max-width: 1200px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
}
#footer-contact > div h2 {
  background: none;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
#footer-contact > div h2 span {
  opacity: 0.4;
  font-size: 3em;
  display: block;
  margin: 0 0 0.5em;
}
#footer-contact > div h2 b {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-weight: bold;
}
#footer-contact > div h2 b::after, #footer-contact > div h2 b::before {
  width: 5em;
  height: 0.03em;
  margin: 0 0.6em;
  background: #fff;
  content: "";
}
#footer-contact > div p:not(.tel_link) {
  font-size: 1.2em;
  margin: 0 0 0.5em;
}
#footer-contact > div p.tel_link {
  margin: 0;
  font-size: 1.6em;
  font-weight: bold;
}
#footer-contact > div p.tel_link a {
  text-decoration: none;
  color: #fff;
}

#footer-contact > div p.tel_link .tel_link__text a {
  pointer-events: none;
  font-size: 1.8em;
}

#footer-contact > div p.tel_link .tel_link__btn {
  display: none;
}
#footer-contact > div > p span {
  font-size: 0.8em;
}
#footer-contact .contact-btn {
  margin-top: 2em;
  display: flex;
  justify-content: center;
}
#footer-contact .contact-btn a {
  position: relative;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  transition: .3s;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: visible;
  margin: 0.5em 1em;
  width: 26%;
}
#footer-contact .contact-btn a:before {
  position: absolute;
  top: 50%;
  left: 0;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  transform: translateY(-50%);
  content: '';
}
#footer-contact .contact-btn a span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 18px 20px;
  display: inline-block;
  position: relative;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  transition: .4s;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #fff;
  width: 100%;
  backface-visibility: hidden;
}
#footer-contact .contact-btn a span:after {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-text);
  padding: 18px 20px;
  background-color: #fff;
  display: inline-block;
  transform-origin: 50% 0%;
  transform: translate3d(0, 100%, 0) rotateX(-90deg);
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px #fff;
  color: #081156;
  width: 100%;
  backface-visibility: hidden;
}
#footer-contact .contact-btn a:hover span {
  transform: translate3d(0, 0, -60px) rotateX(90deg);
}
#footer-contact > div p:not(.tel_link) a {}
@media (max-width: 768px) {
  #footer-contact > div h2 b {
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 1.2em;
    letter-spacing: 0.05em;
  }

  #footer-contact > div h2 b::after,
  #footer-contact > div h2 b::before {
    width: 2em;
    margin: 0 0.4em;
    flex-shrink: 0;
  }
  #footer-contact > div p:not(.tel_link) {
    font-size: 1.0em;
  }
  #footer-contact > div p.tel_link {
    font-size: 1.4em;
  }

  #footer-contact > div p.tel_link .tel_link__text {
    display: none;
  }

  #footer-contact > div p.tel_link .tel_link__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 280px);
    padding: 14px 28px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.4;
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }

  #footer-contact > div p.tel_link .tel_link__btn:hover {
    opacity: 0.85;
    background-color: rgba(255, 255, 255, 0.12);
  }
  #footer-contact .contact-btn {
    flex-direction: column;
  }
  .keni-footer_outer .footer-menu .menu {
    flex-direction: column;
    align-items: center;
    padding: 0 1em;
  }
  .keni-footer_outer .footer-menu li {
    width: 100% !important;
  }
  .keni-footer_outer .footer-menu li a {
    padding: 5px 0 !important;
  }
  #footer-contact .contact-btn a {
    width: 100%;
    margin: 0.5em 0;
  }
}
/*Footer-navi*/
.footer_navi {
  background: #eee;
}
.footer_navi > div {
  padding: 30px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer_navi > div a {
  text-decoration: none;
  color: #505050;
}
.footer_navi > div a:hover {
  opacity: 0.6;
}
.footer_navi > div > div:first-child {
  display: flex;
  flex: 1;
}
.footer_navi > div > div:first-child > ul {
  font-weight: bold;
  margin: 0 4rem 0 0;
}
.footer_navi > div > div:first-child > ul ul {
  margin: 0.5em 0 0 0.5em;
}
.footer_navi > div > div:first-child > ul > li li {
  margin-bottom: 0.2em;
  font-weight: normal;
  font-size: 0.8em;
}
.footer_navi > div > div:first-child > ul a {
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
}
.footer_navi > div > div:first-child > ul a::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #505050;
  border-right: solid 1px #505050;
  position: absolute;
  left: 0;
  top: 8px;
  transform: rotate(45deg) translateY(-50%);
}
.footer_navi > div > div:last-child {
  width: 30%;
}
.footer_navi > div > div:last-child figure {
  margin: 0 0 0.5em;
}
.footer_navi > div > div:last-child a {
  margin: 0 2rem 0 0;
}
.footer_navi > div > div:last-child a:first-of-type {
  pointer-events: none;
}
@media (max-width: 768px) {
  .footer_navi > div {
    flex-direction: column;
  }
  .footer_navi > div > div:first-child {
    flex-direction: column;
  }
  .footer_navi > div > div:last-child {
    width: 100%;
    margin-top: 20px;
  }
  .footer_navi > div > div:first-child > ul {
    margin: 0;
  }
}
/*Footer_copyright*/
.keni-copyright_wrap {
  border-top: none;
  background: #081156;
  color: #fff;
  text-align: center;
}