@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: rgb(26, 26, 26);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.025em;
  line-height: 2;
  font-size: 15px;
}
@media (768px <= width) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
}

img,
svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

iframe {
  vertical-align: bottom;
}

a {
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/****************************************** 
  COMMON STYLE
/******************************************/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-button {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform 0.3s;
}
.c-button span {
  font-size: 14px;
  transition: color 0.3s;
  color: #666;
}
.c-button i {
  width: 56px;
  height: 56px;
  display: block;
  border: 1px solid pink;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: pink;
  transition: color 0.3s, background 0.3s;
}
.c-button:hover {
  transform: translateX(4px);
}
.c-button:hover span {
  color: pink;
}
.c-button:hover i {
  background: pink;
  color: #fff;
}

.important-section {
  background: rgb(248, 248, 248);
  max-width: 1200px;
  margin-inline: auto;
  padding: 48px 0;
  margin-top: 64px;
}
@media (768px <= width) {
  .important-section {
    border-radius: 16px;
    padding: 64px 0;
  }
}

#main {
  padding-top: 56px;
}
@media (768px <= width) {
  #main {
    padding-top: 62px;
  }
}

#contact {
  margin-top: 48px;
  width: calc(100% - 48px);
  max-width: 1280px;
  margin-inline: auto;
}
@media (768px <= width) {
  #contact {
    margin-top: 80px;
  }
}
#contact a {
  background: rgb(1, 62, 110);
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 16px;
}
#contact a > div {
  margin-inline: auto;
  padding: 32px 24px;
}
@media (768px <= width) {
  #contact a > div {
    padding: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#contact a > div .content p {
  margin-bottom: 0;
}
#contact a > div .accent {
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: relative;
  transition: border 0.3s;
  width: 50px;
  height: 50px;
  margin-top: 16px;
  margin-left: auto;
}
@media (768px <= width) {
  #contact a > div .accent {
    font-size: 15px;
    margin-top: 0;
  }
}
#contact a > div .accent::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
}
@media (768px <= width) {
  #contact a > div .accent::after {
    width: 8px;
    height: 8px;
  }
}
#contact a > div .accent img {
  position: absolute;
  right: 24px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (768px <= width) {
  #contact a > div .accent img {
    width: 8px;
    height: 12px;
  }
}
#contact a:hover > div .accent {
  border: 1px solid #fff;
}
#contact a:hover > div .accent::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) scale(1.5);
}
#contact a:hover > div .accent img {
  opacity: 0;
}

#footer {
  margin-top: 48px;
  margin-bottom: 48px;
}
#footer > div {
  width: calc(100% - 48px);
  max-width: 1280px;
  margin-inline: auto;
}
@media (768px <= width) {
  #footer > div .body {
    display: grid;
    grid-template-columns: auto 3fr;
    gap: 64px;
  }
}
#footer > div .body h2 {
  margin: 0;
}
#footer > div .body nav {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.6;
}
@media (768px <= width) {
  #footer > div .body nav {
    display: flex;
    gap: 48px;
    margin-top: 0;
    justify-content: flex-end;
  }
}
#footer > div .body nav ul li + li {
  margin-top: 4px;
}
#footer > div .body nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer > div .body nav > ul + ul {
  margin-top: 16px;
}
@media (768px <= width) {
  #footer > div .body nav > ul + ul {
    margin-top: 0;
  }
}
#footer > div .body nav > ul > li .parent-link {
  font-weight: bold;
}
#footer > div .body nav > ul > li a {
  display: inline-block;
  text-decoration: none;
}
#footer > div .body nav > ul > li > ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
#footer > div .body nav > ul > li > ul > li > ul {
  list-style: none;
  padding-left: 1em;
}
#footer > div .body nav .sns-list {
  margin-top: 32px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
}
@media (768px <= width) {
  #footer > div .body nav .sns-list {
    margin-top: 0;
  }
}
#footer > div .body nav .sns-list li + li {
  margin-top: 8px;
}
#footer > div .body nav .sns-list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer > div .body nav .sns-list li a i {
  font-size: 18px;
  line-height: 1;
}
@media (768px <= width) {
  #footer > div .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding-top: 32px;
    margin-top: 32px;
  }
}
#footer > div .footer .link-list {
  margin-top: 32px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 1.6;
  list-style: none;
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
}
@media (768px <= width) {
  #footer > div .footer .link-list {
    margin-top: 0;
  }
}
#footer > div .footer .link-list li a {
  text-decoration: none;
}
#footer > div .footer .copyright {
  margin-top: 32px;
}
@media (768px <= width) {
  #footer > div .footer .copyright {
    margin-top: 0;
    order: -1;
  }
}
#footer > div .footer .copyright small {
  font-size: 12px;
  color: #999;
}

.client-note {
  border-left: 8px solid crimson;
  background: hsl(348, 83%, 97%);
  padding: 0.6em 1em;
  margin: 1em 0;
  font-size: 0.9em;
  color: crimson;
  font-weight: bold;
  opacity: 0.9;
}
.client-note::before {
  content: "確認事項: ";
  opacity: 0.7;
}

.dev-note {
  border-left: 8px solid #0075c2;
  background: hsl(204, 100%, 97%);
  padding: 0.6em 1em;
  margin: 1em 0;
  font-size: 0.9em;
  color: #0075c2;
  font-weight: bold;
  opacity: 0.9;
}
.dev-note::before {
  content: "開発メモ: ";
  opacity: 0.7;
}

/*
<div class="client-note">
  挨拶文必要
</div>

<div class="dev-note">
  未実装
</div>
*/
.c-filter > div {
  background: #f8f8f8;
  padding: 16px;
}
@media (768px <= width) {
  .c-filter > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 32px;
  }
}
.c-filter > div h2 {
  font-size: 12px;
  opacity: 0.7;
}
@media (768px <= width) {
  .c-filter > div h2 {
    font-size: 14px;
  }
}
.c-filter > div form {
  margin-top: 8px !important;
  font-size: 14px;
}
@media (768px <= width) {
  .c-filter > div form {
    margin-top: 0px !important;
    display: grid;
    grid-template-columns: 1fr 1fr 160px;
    gap: 8px;
    font-size: 15px;
  }
}
.c-filter > div form select {
  display: block;
  width: 100%;
  padding: 2px;
  font-size: inherit;
  font-family: inherit;
}
.c-filter > div form select + select {
  margin-top: 8px;
}
@media (768px <= width) {
  .c-filter > div form select + select {
    margin-top: 0;
  }
}
.c-filter > div form button {
  background: rgb(1, 62, 110);
  color: #fff;
  padding: 4px 8px;
  margin-top: 8px;
  font-size: 12px;
  border-radius: 4px;
}
@media (768px <= width) {
  .c-filter > div form button {
    margin-top: 0;
    font-size: 14px;
  }
}

.c-news-list .news-list {
  list-style: none;
  padding: 0;
}
@media (768px <= width) {
  .c-news-list .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.c-news-list .news-list > li + li {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
@media (768px <= width) {
  .c-news-list .news-list > li + li {
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
}
.c-news-list .news-list > li a {
  display: block;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 16px;
}
@media (768px <= width) {
  .c-news-list .news-list > li a {
    padding: 24px;
    background: rgb(248, 248, 248);
  }
}
.c-news-list .news-list > li a .thumbnail {
  aspect-ratio: 1/1;
}
.c-news-list .news-list > li a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.c-news-list .news-list > li a .content .info {
  align-items: center;
  font-size: 12px;
  line-height: 1.6;
}
.c-news-list .news-list > li a .content .info time {
  font-family: "Inter", sans-serif;
  color: #666;
}
.c-news-list .news-list > li a .content .info span {
  padding: 2px 6px;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  color: rgb(1, 62, 110);
}
.c-news-list .news-list > li a .content .title {
  display: block;
  margin-top: 8px;
  line-height: 1.6;
}
.c-news-list .news-list > li a .content .tags {
  margin-top: 8px;
  font-size: 11px;
  list-style: none;
  padding: 0;
  color: #aaa;
  display: block;
}
.c-news-list .news-list > li a .content .tags li {
  display: inline-block;
}
.c-news-list .news-list > li a .content .tags li span::before {
  content: "#";
}
.c-news-list .news-list > li a .accent {
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 50%;
  position: relative;
  transition: border 0.3s;
  width: 50px;
  height: 50px;
}
@media (768px <= width) {
  .c-news-list .news-list > li a .accent {
    font-size: 15px;
  }
}
.c-news-list .news-list > li a .accent::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: rgb(45, 94, 139);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
}
@media (768px <= width) {
  .c-news-list .news-list > li a .accent::after {
    width: 8px;
    height: 8px;
  }
}
.c-news-list .news-list > li a .accent img {
  position: absolute;
  right: 24px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (768px <= width) {
  .c-news-list .news-list > li a .accent img {
    width: 8px;
    height: 12px;
  }
}
.c-news-list .news-list > li a:hover .accent {
  border: 1px solid rgb(45, 94, 139);
}
.c-news-list .news-list > li a:hover .accent::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) scale(1.5);
}
.c-news-list .news-list > li a:hover .accent img {
  opacity: 0;
}

.c-news-single .single-hero div h1 {
  font-size: 24px;
}
.c-news-single .single-hero div dl > div {
  display: grid;
  grid-template-columns: 72px 1fr;
}
.c-news-single .single-hero div dl > div + div {
  margin-top: 4px;
}
.c-news-single .single-hero div dl > div dt {
  font-size: 12px;
  opacity: 0.7;
}
.c-news-single .single-hero div dl > div dd {
  margin: 0;
  font-size: 14px;
}
.c-news-single .single-hero div dl > div dd ul {
  list-style: none;
  padding: 0;
}
.c-news-single .single-navigation {
  border-top: 1px solid #ccc;
  padding-top: 48px;
  margin-top: 48px;
}
.c-news-single .single-navigation > div section + section {
  margin-top: 48px;
}
.c-news-single .single-navigation > div section h2 {
  font-weight: bold;
}
.c-news-single .single-navigation > div section ul {
  list-style: none;
  padding: 0;
}
.c-news-single .single-navigation > div section ul li + li {
  margin-top: 16px;
}
.c-news-single .single-navigation > div section ul li a {
  display: block;
  text-decoration: none;
  line-height: 1.4;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 4px;
}
.c-news-single .single-navigation > div section ul li a .meta time {
  font-size: 12px;
  opacity: 0.7;
}
.c-news-single .single-navigation > div section ul li a .meta h3 {
  margin-top: 8px;
  font-size: 15px;
}
.c-news-single .single-navigation > div section ul li a .thumb img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.c-news-single .single-navigation > div .back-list {
  text-align: center;
  margin-top: 48px;
}

.voice-profile {
  margin: 40px 0;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
}

.voice-profile__title {
  font-weight: bold;
  margin-bottom: 20px;
}

.voice-profile__list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.voice-profile__item {
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}
@media (768px <= width) {
  .voice-profile__item {
    display: grid;
    grid-template-columns: 240px 1fr;
  }
}

.voice-profile__item:last-child {
  border-bottom: none;
}

.voice-profile__item dd {
  color: #111827;
  line-height: 1.6;
  margin: 0;
}

.voice-content {
  margin: 48px auto;
}

.voice-content__title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: bold;
}

.voice-content__body {
  line-height: 1.8;
  color: #111827;
}

.voice-content__body p + p {
  margin-top: 1.4em;
}

.voice-content__body h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  font-weight: 700;
}

.voice-content__body h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  font-weight: 600;
}

.voice-content__body ul,
.voice-content__body ol {
  margin: 16px 0 16px 20px;
}

.voice-content__body a {
  color: #1e40af;
  text-decoration: underline;
}

.c-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (768px <= width) {
  .c-links {
    grid-template-columns: repeat(auto-fill, 365.3333333333px);
    gap: 32px;
  }
}
.c-links li a {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid #eee;
}
.c-links li a img {
  aspect-ratio: 1.4/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-links li a div {
  padding: 16px;
}
.c-links li a div i {
  color: #cbb04e;
}
.c-policy > div h2 {
  font-size: 1.2em;
  font-weight: bold;
}
.c-policy > div h2 + * {
  margin-top: 1em !important;
}

.c-lead p {
  margin: 0;
}
.c-lead p + p {
  margin-top: 16px;
}

.c-lead.c-lead--color-white {
  color: #fff;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

/* ページネーション全体 */
.navigation,
.pagination,
.wp-pagenavi {
  text-align: center;
  margin: 56px 0;
}

/* 個々のリンク */
.page-numbers {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* ホバー */
.page-numbers:hover {
  background: #f2f2f2;
  border-color: #bbb;
}

/* 現在のページ */
.page-numbers.current {
  background: #013e6e; /* Eurekaのブランドネイビー */
  color: #fff;
  border-color: #013e6e;
  cursor: default;
}

/* 「次へ」「前へ」 */
.c-heading2 {
  line-height: 1.6;
}
.c-heading2__english {
  font-size: 14px;
  color: #cbb04e;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
}
@media (768px <= width) {
  .c-heading2__english {
    font-size: 14px;
  }
}
.c-heading2__japanese {
  font-size: 24px;
  margin-top: 4px;
}
@media (768px <= width) {
  .c-heading2__japanese {
    font-size: 48px;
    margin-top: 8px;
  }
}

.c-heading2--has-background .c-heading2__japanese,
.c-heading2--has-background .c-heading2__english {
  color: rgb(255, 255, 255);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgb(248, 248, 248);
}
@media (1024px <= width) {
  #header {
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  }
}
@media print {
  #header {
    display: none;
  }
}
@media (1024px <= width) {
  #header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
}
#header > div .header {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (1024px <= width) {
  #header > div .header {
    display: initial;
    justify-content: initial;
  }
}
#header > div .header h1 {
  height: 100%;
}
#header > div .header h1 a {
  display: block;
  background: rgb(1, 62, 110);
  padding: 12px 16px 16px 16px;
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
}
@media (1024px <= width) {
  #header > div .header h1 a img {
    width: 144px;
    height: auto;
  }
}
@media (1024px <= width) {
  #header > div .header #nav-trigger {
    display: none;
  }
}
#header > div .header #nav-trigger > div .borders {
  width: 24px;
  height: 12px;
  position: relative;
}
#header > div .header #nav-trigger > div .borders span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgb(45, 94, 139);
  border-radius: 99px;
  position: absolute;
  left: 0;
}
#header > div .header #nav-trigger > div .borders span:nth-child(1) {
  top: 0;
}
#header > div .header #nav-trigger > div .borders span:nth-child(2) {
  top: calc(50% - 1px);
}
#header > div .header #nav-trigger > div .borders span:nth-child(3) {
  top: calc(100% - 2px);
}
#header > div .header #nav-trigger > div .text {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: bold;
  line-height: 1;
  color: rgb(45, 94, 139);
}
#header > div #nav-content {
  overflow-y: scroll;
  height: calc(100vh - 64px);
}
@media (1024px <= width) {
  #header > div #nav-content {
    height: 100%;
    overflow: initial;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (1024px <= width) {
  #header > div #nav-content > div {
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    height: 100%;
    justify-self: end;
    align-items: center;
  }
}
#header > div #nav-content > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#header > div #nav-content > div ul a {
  display: block;
  text-decoration: none;
  width: 100%;
}
#header > div #nav-content > div section h3 {
  text-transform: uppercase;
  color: #aaa;
  font-size: 14px;
  display: none;
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav {
    font-size: 15px;
  }
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav > ul {
    display: flex;
    gap: 24px;
  }
}
#header > div #nav-content > div .main-nav > ul > li {
  border-top: 1px solid #ddd;
  padding: 8px 0;
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav > ul > li {
    border-top: initial;
    padding: 0;
    position: relative;
  }
  #header > div #nav-content > div .main-nav > ul > li:hover > ul {
    opacity: 1;
    pointer-events: initial;
  }
}
#header > div #nav-content > div .main-nav > ul > li .parent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px 16px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav > ul > li .parent {
    padding: 0;
  }
}
#header > div #nav-content > div .main-nav > ul > li .parent i {
  color: rgb(1, 62, 110);
  font-size: 12px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav > ul > li .parent i {
    display: none;
  }
}
#header > div #nav-content > div .main-nav > ul > li .parent span {
  flex: 1;
}
@media (1024px <= width) {
  #header > div #nav-content > div .main-nav > ul > li > ul {
    position: absolute;
    width: 320px;
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    top: 30px;
    left: calc(50% - 160px);
    opacity: 0;
    pointer-events: none;
  }
}
#header > div #nav-content > div .main-nav > ul > li > ul > li a {
  padding: 4px 16px 4px 36px;
}
#header > div #nav-content > div .main-nav > ul > li > ul > li > ul {
  padding-left: 16px;
}
#header > div #nav-content > div .sub-nav {
  padding: 16px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav {
    font-size: 14px;
    padding: 0;
    height: 100%;
  }
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav > ul {
    display: flex;
    height: 100%;
  }
}
#header > div #nav-content > div .sub-nav > ul li + li {
  margin-top: 8px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav > ul li + li {
    margin-top: 0;
  }
}
#header > div #nav-content > div .sub-nav > ul li a {
  display: flex;
  gap: 8px;
  align-items: center;
  background: gray;
  line-height: 1.4;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: bold;
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav > ul li a {
    padding: 12px 18px;
    gap: 12px;
    height: 64px;
    border-radius: 0;
  }
}
#header > div #nav-content > div .sub-nav > ul li a br {
  display: none;
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav > ul li a br {
    display: initial;
  }
}
#header > div #nav-content > div .sub-nav > ul li a.guide {
  color: rgb(255, 255, 255);
  background: #cbb04e;
}
#header > div #nav-content > div .sub-nav > ul li a.contact {
  color: rgb(255, 255, 255);
  background: rgb(1, 62, 110);
}
#header > div #nav-content > div .sub-nav > ul li a i {
  font-size: 18px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .sub-nav > ul li a i {
    font-size: 16px;
  }
}
#header > div #nav-content > div .others-nav {
  padding: 16px;
}
@media (1024px <= width) {
  #header > div #nav-content > div .others-nav {
    display: none;
  }
}

#header .header {
  height: 64px;
}
#header #nav-content {
  background: rgb(248, 248, 248);
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
@media (1024px <= width) {
  #header #nav-content {
    position: initial;
    transition: initial;
    transform: initial;
    opacity: initial;
    pointer-events: initial;
  }
}

#header.is-open #nav-content {
  position: absolute;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
@media (1024px <= width) {
  #header.is-open #nav-content {
    position: initial;
  }
}

.c-section {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (768px <= width) {
  .c-section {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.c-section > div {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin-inline: auto;
}
.c-section > div h2 + * {
  margin-top: 16px;
}
@media (768px <= width) {
  .c-section > div h2 + * {
    margin-top: 32px;
  }
}

.c-section--bg-blue,
.c-section--bg-gold,
.c-section--bg-gray,
.c-section--bg-online {
  padding-top: 48px;
  padding-bottom: 48px;
  margin: 0;
}
@media (768px <= width) {
  .c-section--bg-blue,
  .c-section--bg-gold,
  .c-section--bg-gray,
  .c-section--bg-online {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.c-section--bg-gold {
  background: #f7f5f2;
}
.c-section--bg-gold + .c-section--bg-gold {
  border-top: 1px dashed #cbb04e;
}

.c-section--bg-gray {
  background: rgb(248, 248, 248);
}
.c-section--bg-gray + .c-section--bg-gray {
  border-top: 1px dashed rgb(26, 26, 26);
}

.c-section--bg-blue {
  background: rgb(1, 62, 110);
}
.c-section--bg-blue + .c-section--bg-blue {
  border-top: 1px dashed rgb(1, 62, 110);
}

.c-section--bg-online {
  background: #c9171e;
}
.c-section--bg-online + .c-section--bg-online {
  border-top: 1px dashed #c9171e;
}

.c-section--wide > div {
  max-width: 1280px;
}

.c-section--narrow > div {
  max-width: 720px;
}

.c-button-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(45, 94, 139, 0.3);
  padding: 10px 56px 10px 24px;
  border-radius: 999px;
  position: relative;
  transition: border 0.3s;
  background: rgba(255, 255, 255, 0.3);
}
@media (768px <= width) {
  .c-button-link {
    font-size: 15px;
  }
}
.c-button-link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: rgb(45, 94, 139);
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
}
@media (768px <= width) {
  .c-button-link::after {
    width: 8px;
    height: 8px;
  }
}
.c-button-link img {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (768px <= width) {
  .c-button-link img {
    width: 8px;
    height: 12px;
  }
}
.c-button-link:hover {
  border: 1px solid rgb(45, 94, 139);
}
.c-button-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
}
.c-button-link:hover img {
  opacity: 0;
}

.c-sub-hero {
  position: relative;
}
.c-sub-hero .c-breadcrumb {
  max-width: 1160px;
  list-style: none;
  padding: 0;
  font-size: 13px;
  display: flex;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}
@media (768px <= width) {
  .c-sub-hero .c-breadcrumb {
    padding: 0;
    margin: 0 auto;
  }
}
.c-sub-hero .c-breadcrumb li + li {
  margin-left: 8px;
}
.c-sub-hero .c-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}
.c-sub-hero .c-breadcrumb li a {
  text-decoration: none;
}
.c-sub-hero__content {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin-inline: auto;
  padding: 48px 0;
}
@media (768px <= width) {
  .c-sub-hero__content {
    padding: 48px 0;
  }
}
.c-sub-hero__content .grid {
  margin-top: 24px;
}
@media (768px <= width) {
  .c-sub-hero__content .grid {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 80px;
    margin-top: 32px;
  }
}
.c-sub-hero__heading {
  font-size: 1.87rem;
  line-height: 1.6;
}
@media (768px <= width) {
  .c-sub-hero__heading {
    font-size: 48px;
  }
}
.c-sub-hero__heading::before {
  content: attr(data-subtitle);
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  color: pink;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
}
.c-sub-hero__nav {
  margin-top: 24px;
}
@media (768px <= width) {
  .c-sub-hero__nav {
    margin-top: 0;
  }
}
.c-sub-hero__nav ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.c-sub-hero__nav ul li + li {
  margin-top: 8px;
}
.c-sub-hero__nav ul li a {
  text-decoration: none;
  border-radius: 4px;
  align-items: center;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}
.c-sub-hero__nav ul li a i {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-sub-hero--image {
  padding-top: 48px;
}
@media (768px <= width) {
  .c-sub-hero--image {
    padding-top: 48px;
  }
}
.c-sub-hero--image .image {
  margin-top: 48px;
}
@media (768px <= width) {
  .c-sub-hero--image .image {
    margin-top: 48px;
  }
}
.c-sub-hero--image .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.4/1;
}
@media (768px <= width) {
  .c-sub-hero--image .image img {
    aspect-ratio: 16/7;
  }
}
.c-sub-hero--image .c-breadcrumb {
  max-width: 1160px;
  list-style: none;
  padding: 0 24px;
  font-size: 13px;
  display: flex;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}
@media (768px <= width) {
  .c-sub-hero--image .c-breadcrumb {
    padding: 0;
    margin: 0 auto;
  }
}
.c-sub-hero--image .c-breadcrumb li + li {
  margin-left: 8px;
}
.c-sub-hero--image .c-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}
.c-sub-hero--image .c-breadcrumb li a {
  text-decoration: none;
}
.c-sub-hero--image .header {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin-inline: auto;
  margin-top: 16px;
}
@media (768px <= width) {
  .c-sub-hero--image .header {
    margin-top: 32px;
  }
}
@media (768px <= width) {
  .c-sub-hero--image .header > div {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 80px;
  }
}
.c-sub-hero--image .header > div .english-decorate {
  text-transform: uppercase;
  font-family: "Outfit";
  line-height: 1.6;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-sub-hero--image .header > div .english-decorate::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 2px;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div .english-decorate {
    font-size: 16px;
  }
}
.c-sub-hero--image .header > div .english-decorate.eureka::before {
  background: rgb(1, 62, 110);
}
.c-sub-hero--image .header > div .english-decorate.school::before {
  background: #95d624;
}
.c-sub-hero--image .header > div .english-decorate.gakudou::before {
  background: #006581;
}
.c-sub-hero--image .header > div .english-decorate.online::before {
  background: #c9171e;
}
.c-sub-hero--image .header > div h1 {
  font-size: 36px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div h1 {
    align-items: center;
    font-size: 64px;
  }
}
.c-sub-hero--image .header > div h1 .main-title,
.c-sub-hero--image .header > div h1 .sub-title {
  width: 100%;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div h1 .main-title,
  .c-sub-hero--image .header > div h1 .sub-title {
    width: initial;
  }
}
.c-sub-hero--image .header > div h1 .main-title br,
.c-sub-hero--image .header > div h1 .sub-title br {
  display: none;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div h1 .main-title br,
  .c-sub-hero--image .header > div h1 .sub-title br {
    display: initial;
  }
}
.c-sub-hero--image .header > div h1:has(.sub-title) .main-title {
  color: #ccc;
  order: 1;
  font-size: 18px;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div h1:has(.sub-title) .main-title {
    margin-left: 16px;
    font-size: 32px;
  }
}
.c-sub-hero--image .header > div nav {
  margin-top: 24px;
}
@media (768px <= width) {
  .c-sub-hero--image .header > div nav {
    margin-top: 0;
  }
}
.c-sub-hero--image .header > div nav ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.c-sub-hero--image .header > div nav ul li + li {
  margin-top: 8px;
}
.c-sub-hero--image .header > div nav ul li a {
  text-decoration: none;
  border-radius: 4px;
  align-items: center;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}
.c-sub-hero--image .header > div nav ul li a i {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-voice-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (768px <= width) {
  .c-voice-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-voice-cards li a {
  display: block;
  text-decoration: none;
}
.c-voice-cards li .image {
  background: #eee;
  padding: 48px 24px 0;
  position: relative;
}
.c-voice-cards li .image img {
  border-radius: 16px;
  max-height: 160px;
  display: block;
  margin-inline: auto;
}
.c-voice-cards li .image .person-type {
  line-height: 1.4;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
}
@media (768px <= width) {
  .c-voice-cards li .image .person-type {
    font-size: 12px;
  }
}
.c-voice-cards li .image .person-type.student {
  background: #f4e9d8;
  color: #5a4635;
  border: 1px solid #c8b8a4;
}
.c-voice-cards li .image .person-type.graduated-student {
  background: #d9f3e4;
  color: #2e5a46;
  border: 1px solid #9fc9b6;
}
.c-voice-cards li .image .person-type.guardian {
  background: #ced7e4;
  color: #2f4053;
  border: 1px solid #a2adbb;
}
.c-voice-cards li .image .course {
  line-height: 1.4;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000;
  color: #fff;
}
@media (768px <= width) {
  .c-voice-cards li .image .course {
    font-size: 12px;
  }
}
.c-voice-cards li .image .course.gakudou {
  background: #d6e8eb;
  color: #003a46;
  border: 1px solid #a1c1c8;
}
.c-voice-cards li .image .course.kids, .c-voice-cards li .image .course.adult {
  background: #e7f6d0;
  color: #4a6e16;
  border: 1px solid #bbdfa0;
}
.c-voice-cards li .header {
  margin-top: 16px;
}
.c-voice-cards li .header span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.4;
}
.c-voice-cards li .header h2 {
  margin-top: 8px;
  font-weight: bold;
}

.c-news-content img {
  max-width: 100%;
  height: auto;
}
.c-news-content p,
.c-news-content ol,
.c-news-content ul,
.c-news-content dl,
.c-news-content .wp-block-table,
.c-news-content .importantBox,
.c-news-content .wp-block-quote,
.c-news-content .fukidashi,
.c-news-content .flowW,
.c-news-content .code_preview,
.c-news-content pre,
.c-news-content .btn,
.c-news-content .accordion,
.c-news-content .reference,
.c-news-content .sgl-box,
.c-news-content .twitter-tweet,
.c-news-content h2,
.c-news-content h3,
.c-news-content h4,
.c-news-content h5 {
  margin-bottom: 0em;
  margin-top: 1em;
}
@media (768px <= width < 1024px) {
  .c-news-content p,
  .c-news-content ol,
  .c-news-content ul,
  .c-news-content dl,
  .c-news-content .wp-block-table,
  .c-news-content .importantBox,
  .c-news-content .wp-block-quote,
  .c-news-content .fukidashi,
  .c-news-content .flowW,
  .c-news-content .code_preview,
  .c-news-content pre,
  .c-news-content .btn,
  .c-news-content .accordion,
  .c-news-content .reference,
  .c-news-content .sgl-box,
  .c-news-content .twitter-tweet,
  .c-news-content h2,
  .c-news-content h3,
  .c-news-content h4,
  .c-news-content h5 {
    margin-bottom: 0em;
    margin-top: 1em;
  }
}
.c-news-content .wp-block-image,
.c-news-content .youtube,
.c-news-content .instagram-media,
.c-news-content iframe,
.c-news-content .wp-block-gallery,
.c-news-content .toc,
.c-news-content #toc {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (768px <= width < 1024px) {
  .c-news-content .wp-block-image,
  .c-news-content .youtube,
  .c-news-content .instagram-media,
  .c-news-content iframe,
  .c-news-content .wp-block-gallery,
  .c-news-content .toc,
  .c-news-content #toc {
    margin-bottom: 2em;
    margin-top: 2em;
  }
}
.c-news-content .youtube iframe {
  margin: 0;
}
.c-news-content a {
  color: rgb(26, 26, 26);
  text-decoration: underline;
  transition: 0.4s;
}
.c-news-content a:hover {
  opacity: 0.5;
}
.c-news-content h2,
.c-news-content h3,
.c-news-content h4,
.c-news-content h5 {
  margin-bottom: 0px;
  line-height: 1.4;
}
.c-news-content h3,
.c-news-content h4,
.c-news-content h5 {
  margin-top: 2em;
}
.c-news-content h2 {
  color: rgb(26, 26, 26);
  padding: 0.5em 0 0.5em 0.8em;
  margin-top: 60px;
  font-size: 1.5em;
  /*border-left: 6px solid $text-color1;*/
  margin-left: 0px;
  /*background: linear-gradient(135deg, rgba(246, 255, 0, 0.3) 0%, rgba(0, 229, 108, 0.3) 100%);*/
  background-color: #eee;
  border-radius: 5px;
}
@media (768px <= width < 1024px) {
  .c-news-content h2 {
    font-size: 1.15em;
  }
}
.c-news-content h3 {
  border-bottom: 2px solid #eee;
  padding: 0.3em 0;
  font-size: 1.25em;
}
@media (768px <= width < 1024px) {
  .c-news-content h3 {
    font-size: 1.1em;
  }
}
.c-news-content h4 {
  font-size: 1.15em;
  border-left: 3px solid rgb(26, 26, 26);
  padding-left: 0.8em;
  color: rgb(26, 26, 26);
}
@media (768px <= width < 1024px) {
  .c-news-content h4 {
    font-size: 1.1em;
  }
}
.c-news-content h5 {
  font-size: 1.15em;
  color: rgb(26, 26, 26);
}
@media (768px <= width < 1024px) {
  .c-news-content h5 {
    font-size: 1.1em;
  }
}
.c-news-content .bold {
  font-weight: bold;
}
.c-news-content b,
.c-news-content em,
.c-news-content strong {
  font-style: normal;
  font-weight: bold;
}
.c-news-content .keiko_yellow {
  background: linear-gradient(transparent 60%, #ffff7f 60%);
  font-weight: bold;
  /*background-color: #ffedab;*/
}
.c-news-content .keiko_purple {
  background: linear-gradient(transparent 30%, rgba(165, 105, 189, 0.3) 30%);
  font-weight: bold;
}
.c-news-content .youtube {
  padding-bottom: 57%;
  height: 0px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (768px <= width < 1024px) {
  .c-news-content .youtube {
    width: 100%;
  }
}
.c-news-content .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.c-news-content .wp-block-separator {
  height: 0; /*高さをリセット*/
  padding: 0; /*パディングをリセット*/
  border: 0; /*ボーダーをリセット*/
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #eee;
}
.c-news-content .wp-block-image {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (768px <= width < 1024px) {
  .c-news-content .wp-block-image {
    width: 100%;
  }
}
.c-news-content .wp-block-image img {
  max-width: 100%;
  height: auto; /*box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);*/
}
.c-news-content .wp-block-image figcaption {
  text-align: center;
  color: #868686;
  font-style: italic;
  margin-top: 0.2em !important;
  margin-bottom: 0 !important;
  font-size: 0.9em;
}
.c-news-content .wp-block-table {
  border-collapse: collapse;
  width: 100%;
  margin-left: 0;
  line-height: 1.5;
  font-size: 0.9em;
}
.c-news-content .wp-block-table table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (768px <= width < 1024px) {
  .c-news-content .wp-block-table table {
    width: 100%;
  }
}
.c-news-content .wp-block-table td {
  border: 1px solid #ddd;
  padding: 0.5em;
  background-color: #fff;
}
.c-news-content .wp-block-table th {
  border: 1px solid #ddd;
  padding: 0.5em;
  background-color: #f3f3f3;
}
.c-news-content .table_number {
  text-align: right;
}
@media (width < 768px) {
  .c-news-content .responsive_table table,
  .c-news-content .responsive_table tbody {
    display: block;
  }
  .c-news-content .responsive_table tr,
  .c-news-content .responsive_table td,
  .c-news-content .responsive_table th {
    display: block;
  }
  .c-news-content .sp_scrollX table {
    width: 100%;
    min-width: 350px;
  }
  .c-news-content .sp_scrollX {
    display: block;
    overflow-x: auto;
    margin: 2em auto;
  }
  .c-news-content .m0p0 {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.c-news-content .wp-block-quote {
  padding: 0px 0em;
  background-color: #fff;
  border-left: 3px solid #eee;
  position: relative;
  font-size: 0.95em;
  margin-left: 0;
  margin-right: 0;
}
.c-news-content .wp-block-quote p {
  padding: 0 0 0 1.5em;
  font-style: italic;
  margin-bottom: 1em !important;
}
.c-news-content .wp-block-quote cite {
  display: block;
  margin: 0 0 0 1.5em;
  color: rgb(26, 26, 26);
  font-style: normal;
}
.c-news-content .wp-block-quote cite a {
  color: rgb(26, 26, 26);
}
/*# sourceMappingURL=style.css.map */