@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  color: #111111;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  flex-direction: column;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

.page__wrapper {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
}
.page__wrapper > p {
  margin-bottom: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a,
button {
  display: inline-block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
}

img {
  display: inline-block;
  height: auto;
}

ul,
li {
  list-style: none;
}

.m-0 {
  margin: 0 !important;
}

.mt-xs {
  margin-top: 8px !important;
}

.mb-xs {
  margin-bottom: 8px !important;
}

.mr-xs {
  margin-right: 8px !important;
}

.ml-xs {
  margin-left: 8px !important;
}

.mt-sm {
  margin-top: 16px !important;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.mr-sm {
  margin-right: 16px !important;
}

.ml-sm {
  margin-left: 16px !important;
}

.mt-md {
  margin-top: 24px !important;
}

.mb-md {
  margin-bottom: 24px !important;
}

.mr-md {
  margin-right: 24px !important;
}

.ml-md {
  margin-left: 24px !important;
}

.mt-lg {
  margin-top: 32px !important;
}

.mb-lg {
  margin-bottom: 32px !important;
}

.mr-lg {
  margin-right: 32px !important;
}

.ml-lg {
  margin-left: 32px !important;
}

.mt-xl {
  margin-top: 48px !important;
}

.mb-xl {
  margin-bottom: 48px !important;
}

.mr-xl {
  margin-right: 48px !important;
}

.ml-xl {
  margin-left: 48px !important;
}

.mt-2xl {
  margin-top: 64px !important;
}

.mb-2xl {
  margin-bottom: 64px !important;
}

.mr-2xl {
  margin-right: 64px !important;
}

.ml-2xl {
  margin-left: 64px !important;
}

.mt-3xl {
  margin-top: 80px !important;
}

.mb-3xl {
  margin-bottom: 80px !important;
}

.mr-3xl {
  margin-right: 80px !important;
}

.ml-3xl {
  margin-left: 80px !important;
}

.mt-4xl {
  margin-top: 120px !important;
}

.mb-4xl {
  margin-bottom: 120px !important;
}

.mr-4xl {
  margin-right: 120px !important;
}

.ml-4xl {
  margin-left: 120px !important;
}

.pc-flex {
  display: flex !important;
}

.md {
  display: none !important;
}

.sp {
  display: none !important;
}

.sp-flex {
  display: none !important;
}

@media screen and (min-width:768px) and (max-width:1079px) {
  .md {
    display: block !important;
  }
}
@media screen and (max-width:767px) {
  .pc {
    display: none !important;
  }
  .pc-flex {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-flex {
    display: flex !important;
  }
}
.radius-sm {
  border-radius: 4px !important;
}
.radius-md {
  border-radius: 8px;
}
.radius-lg {
  border-radius: 16px;
}
.radius-circle {
  border-radius: 50%;
}

.text-lg {
  font-size: 2.1rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-sm {
  font-size: 1.2rem;
}
.text-xs {
  font-size: 1rem;
}
.text-center {
  text-align: center;
}
.text-bold {
  font-weight: bold;
}
.text-animation {
  position: relative;
}
.text-animation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transition: 0.5s transform ease;
  transform-origin: right center;
}
.text-animation:hover::after {
  transform-origin: left bottom;
  transform: scaleX(1);
}
.text-animation-opacity {
  position: relative;
}
.text-animation-opacity::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111111;
  opacity: 0;
  transition: 0.5s opacity ease;
}
.text-animation-opacity:hover::after {
  opacity: 1;
}

strong {
  color: #4774cc;
  font-weight: bold;
}

em {
  color: #d9219b;
  font-style: normal;
}

.has-black-color {
  color: #000000;
}

.has-cyan-bluish-gray-color {
  color: #abb8c3;
}

.has-white-color {
  color: #ffffff;
}

.has-pale-pink-color {
  color: #f78da7;
}

.has-vivid-red-color {
  color: #cf2e2e;
}

.has-luminous-vivid-orange-color {
  color: #ff6900;
}

.has-luminous-vivid-amber-color {
  color: #fcb900;
}

.has-light-green-cyan-color {
  color: #7bdcb5;
}

.has-vivid-green-cyan-color {
  color: #00d084;
}

.has-pale-cyan-blue-color {
  color: #8ed1fc;
}

.has-vivid-cyan-blue-color {
  color: #0693e3;
}

.has-vivid-purple-color {
  color: #9b51e0;
}

.has-black-background-color {
  background-color: #000000;
}

.has-cyan-bluish-gray-background-color {
  background-color: #abb8c3;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-pale-pink-background-color {
  background-color: #f78da7;
}

.has-vivid-red-background-color {
  background-color: #cf2e2e;
}

.has-luminous-vivid-orange-background-color {
  background-color: #ff6900;
}

.has-luminous-vivid-amber-background-color {
  background-color: #fcb900;
}

.has-light-green-cyan-background-color {
  background-color: #7bdcb5;
}

.has-vivid-green-cyan-background-color {
  background-color: #00d084;
}

.has-pale-cyan-blue-background-color {
  background-color: #8ed1fc;
}

.has-vivid-cyan-blue-background-color {
  background-color: #0693e3;
}

.has-vivid-purple-background-color {
  background-color: #9b51e0;
}

.link-blank {
  display: inline-flex;
  align-items: center;
}
.link-blank::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  margin-left: 4px;
}
.link-nav {
  display: flex;
  align-items: center;
  position: relative;
}
.link-nav::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 4px;
  height: 8px;
  margin-top: 3px;
  margin-right: 6px;
}
.link-parent {
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
  cursor: pointer;
}
.link-parent::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 8px;
  height: 4px;
  transform: rotate(180deg);
  margin-top: 3px;
  margin-right: 6px;
  transition: all 0.5s;
}
.link-parent.is-active::before {
  transform: rotate(0deg);
}
.link-parent.is-active::after {
  opacity: 1;
}
.link-anchor {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}
.link-anchor::before, .link-anchor::after {
  position: absolute;
  left: 0;
  width: 9px;
}
.link-anchor::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  top: 10px;
  height: 6px;
}
.link-anchor::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-border.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  top: 18px;
  height: 2px;
}
.link-file {
  display: flex;
  gap: 4px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  padding: 24px 0;
  position: relative;
}
.link-file::before {
  width: 40px;
  height: 32px;
  flex-shrink: 0;
}
.link-file.word::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-file-word.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.link-file.excel::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-file-excel.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.link-file.pdf::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-file.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.link-file.pdf::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-file-pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  background-size: auto 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 32px;
}
.link-file.others::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-file.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.link-file .title {
  margin-bottom: 4px !important;
}

.button {
  position: relative;
  cursor: pointer;
  line-height: 1;
  font-size: 1.6rem;
  border-radius: 999px;
  background-color: #4774cc;
  color: #ffffff;
  padding: 16px 40px 18px 24px;
  border: 1px solid #4774cc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.button::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../images/icon/icon-arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .button:hover {
    background-color: #ffffff;
    color: #4774cc;
  }
  .button:hover::after {
    background-image: url(../images/icon/icon-arrow-right-blue.svg);
  }
}
.button.secondary {
  padding: 12px 40px 12px 24px;
}
.button.tertiary {
  font-size: 1.4rem;
  padding: 8px 32px 8px 8px;
}
.button.tertiary::after {
  right: 8px;
}
.button.blank::after {
  background-image: url(../images/icon/icon-blank-white.svg);
}
@media (hover: hover) {
  .button.blank:hover::after {
    background-image: url(../images/icon/icon-blank-blue.svg);
  }
}
.button__wrapper {
  display: flex;
}

.heading__wrapper {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}
.heading__wrapper-h3 {
  align-items: flex-end;
  gap: 10px;
}
.heading-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width:767px) {
  .heading-h1 {
    font-size: 3.6rem;
  }
}
.heading-h1 span {
  display: block;
  margin-bottom: 10px;
  font-size: 2.1rem;
}
@media screen and (max-width:767px) {
  .heading-h1 span {
    font-size: 1.8rem;
  }
}
.heading-h2 {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 0 0 8px;
  line-height: 1.3;
  border-bottom: 6px solid #4774cc;
}
@media screen and (max-width:767px) {
  .heading-h2 {
    font-size: 2.4rem;
  }
}
.heading-h3 {
  font-size: 2.1rem;
  font-weight: 700;
  padding: 0 0 5px;
  line-height: 1.3;
  border-bottom: 5px solid #4774cc;
}
@media screen and (max-width:767px) {
  .heading-h3 {
    font-size: 1.8rem;
  }
}
.heading-h3 + span {
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.3019607843);
  font-size: 1.4rem;
}
.heading-h4 {
  font-size: 1.6rem;
  padding: 4px 16px;
  border-right: 1px solid #111111;
  border-left: 1px solid #111111;
}

.news-list {
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.news-list__wrapper {
  width: min(100%, 1092px);
  margin: 0 auto 64px;
}
.news-list__item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width:767px) {
  .news-list__item {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
  }
}
.news-list__item .date {
  font-size: 1.2rem;
}
@media screen and (max-width:767px) {
  .news-list__item .date {
    display: block;
  }
}
.news-list__item .unipa {
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 4px;
}
.news-list__item .news-list__text {
  position: relative;
  background-image: linear-gradient(90deg, #111111, #111111);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: 0.5s background-size ease;
}
.news-list__item.important .news-list__text::before {
  content: "【緊急】";
  display: inline-block;
  color: #ef4444;
  font-weight: 700;
}
.news-list__item.blank .news-list__text::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  margin-left: 4px;
}
.news-list__item:hover .news-list__text {
  background-size: 100% 2px;
  background-position: left bottom;
}
.news-list__button {
  margin: 32px 0 0;
  display: flex;
  justify-content: flex-start;
}

.search-results-list {
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.search-results-list__wrapper {
  margin: 0 auto 64px;
}
.search-results-list__item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
}
@media screen and (max-width:767px) {
  .search-results-list__item {
    padding: 8px 0;
  }
}
.search-results-list__item .date {
  font-size: 1.2rem;
}
.search-results-list__item .title {
  margin: 4px 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.search-results-list__item .text {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
}
.banner-list__item {
  padding-top: 55.8%;
  position: relative;
  overflow: hidden;
}
.banner-list__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width:767px) {
  .banner-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}

.menu-list {
  padding: 0 0 0 24px;
  margin: 0 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width:767px) {
  .menu-list {
    padding: 0;
    margin: 0;
  }
}
.menu-list:not(:first-child) {
  border-left: 1px solid rgba(17, 17, 17, 0.3019607843);
}
@media screen and (max-width:767px) {
  .menu-list:not(:first-child) {
    border-left: none;
  }
}
.menu-list__wrapper {
  width: min(100%, 1092px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width:767px) {
  .menu-list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}

.card-list {
  display: grid;
  flex-wrap: wrap;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width:767px) {
  .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card-list .card__item {
  display: block;
  margin: 0;
}
.card-list .card__item::before {
  display: none;
}
.card-list .card__item-body {
  margin: 24px 0 0;
}
.card-list .card__item-body ul li {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.card-list .card__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}
.card-list .card__image-wrapper {
  width: 100%;
  padding-top: 55.8%;
  position: relative;
  overflow: hidden;
}
.card-list.course {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width:767px) {
  .card-list.course {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bullet-list {
  margin-bottom: 24px;
}
.bullet-list li {
  display: flex;
  margin-bottom: 24px;
}
.bullet-list li::before {
  content: "・";
  margin-right: 0.5em;
}
.bullet-list li:last-child {
  margin-bottom: 0;
}
.bullet-list.small li {
  margin-bottom: 4px;
}
.bullet-list.small li:last-child {
  margin-bottom: 0;
}

.caution-list .caution-list__item {
  display: block;
  margin-bottom: 4px;
}
.caution-list .caution-list__item:before {
  content: "※";
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
}

.file-list {
  display: block;
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.file-list li {
  display: block !important;
  margin-bottom: 0 !important;
}
.file-list li::before {
  display: none;
}

.schedule-list {
  display: table;
}
.schedule-list dl {
  display: table-row;
  line-height: 2;
}
.schedule-list dt,
.schedule-list dd {
  display: table-cell;
}
.schedule-list dt {
  text-align: right;
  padding-right: 8px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.tab-list__item {
  text-align: center;
  padding: 10px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width:767px) {
  .tab-list__item {
    text-align: left;
    padding: 10px 4px;
  }
}
.tab-list__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111111;
}
.tab-list__item.is-active::after {
  height: 4px;
}

.tab-article {
  display: none;
}
.tab-article.is-active {
  display: block;
}

.search-form {
  width: 640px;
  height: 50px;
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: rgba(71, 116, 204, 0.1490196078) !important;
  border-radius: 999px;
}
@media screen and (max-width:767px) {
  .search-form {
    width: 100%;
  }
}
.search-form input {
  width: calc(100% - 50px);
  height: 100%;
  padding: 8px 16px;
  background-color: transparent !important;
  opacity: 1 !important;
  border: none;
  outline: none;
}
.search-form input:-webkit-autofill, .search-form input:-webkit-autofill:hover, .search-form input:-webkit-autofill:focus {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  color: inherit !important;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}
.search-form input:-moz-autofill {
  background-color: transparent !important;
  color: inherit !important;
}
.search-form input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.search-form button {
  position: relative;
  width: 50px;
  height: 100%;
  background-color: transparent !important;
}
.search-form button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-search.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 14px;
  height: 14px;
  padding: 8px;
}

.header {
  display: flex;
  width: 100%;
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  z-index: 20;
}
.header.is-blur {
  background: hsla(0, 0%, 97%, 0.6);
}
.header.is-blur .header__inner {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header.is-blur .header__nav-item.has-child.is-active + .child {
  background: hsla(0, 0%, 97%, 0.6);
}
@media screen and (max-width:767px) {
  .header.is-blur .header__nav-item.has-child.is-active + .child {
    background: transparent;
  }
}
.header.is-blur .header__backdrop {
  display: block;
}
@media screen and (max-width:767px) {
  .header.is-blur .header__backdrop {
    display: none;
  }
}
.header.is-active {
  background: hsla(0, 0%, 97%, 0.6);
}
.header.is-active .header__inner {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media screen and (max-width:767px) {
  .header.is-active .header__backdrop {
    display: block;
    height: calc(100vh - 60px) !important;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header__logo {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-right: 1px solid rgba(17, 17, 17, 0.3019607843);
}
@media screen and (max-width:767px) {
  .header__logo {
    padding: 16px 12px;
    border-right: none;
  }
}
.header__logo img {
  width: 200px;
}
@media screen and (max-width:767px) {
  .header__logo img {
    width: 120px;
  }
}
.header__hamburger {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  border-left: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 1px;
  background-color: #111111;
  transition: all 0.3s;
}
.header__hamburger span:first-child {
  transform: translate(-50%, calc(-50% - 8px));
}
.header__hamburger span:last-child {
  transform: translate(-50%, calc(-50% + 8px));
}
.header__hamburger.is-active span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__menu {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width:767px) {
  .header__menu {
    display: none;
    position: fixed;
    top: 62px;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    z-index: 1;
    overflow: scroll;
  }
}
.header__menu.is-active {
  display: block;
  background: hsla(0, 0%, 97%, 0.6);
}
.header__nav {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 16px 24px 0;
}
@media screen and (max-width:767px) {
  .header__nav {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 0 24px 180px;
    gap: 24px;
  }
}
.header__nav-list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width:767px) {
  .header__nav-list {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .header__nav-list:first-child {
    gap: 16px;
  }
}
@media screen and (max-width:767px) {
  .header__nav-list:last-child {
    border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
    gap: 0;
  }
}
@media screen and (max-width:767px) {
  .header__nav-list:last-child .header__nav-item {
    border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  }
}
.header__nav-item {
  padding: 14px 0;
}
@media screen and (max-width:767px) {
  .header__nav-item::after {
    display: none;
  }
}
.header__nav-item.child {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  padding: 32px 56px 16px 264px;
  justify-content: flex-end;
  gap: 8px 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  z-index: 20;
}
@media screen and (max-width:767px) {
  .header__nav-item.child {
    position: relative;
    gap: 14px;
    padding: 4px 0 28px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__nav-item.child .close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
}
@media screen and (max-width:767px) {
  .header__nav-item.child .close-btn {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .header__nav-item.has-child.is-active {
    border-bottom: none;
  }
}
.header__nav-item.has-child.is-active + .child {
  display: flex;
}
.header__search {
  width: 56px;
  height: 100%;
  border-left: 1px solid rgba(17, 17, 17, 0.3019607843);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .header__search {
    width: 100%;
    height: auto;
    padding: 24px;
    border: none;
  }
}
.header__search::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-search.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width:767px) {
  .header__search::after {
    display: none;
  }
}
.header__backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  z-index: -1;
}

.footer {
  margin-top: auto;
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
  width: 100%;
}
.footer__inner {
  margin: 0 auto;
  padding: 64px 0 16px;
  width: min(100% - 32px, 740px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav {
  margin: 64px auto;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width:767px) {
  .footer__nav-list {
    flex-direction: column;
  }
}
.footer__nav-list li:last-child {
  padding-left: 24px;
  border-left: 1px solid rgba(17, 17, 17, 0.3019607843);
}
@media screen and (max-width:767px) {
  .footer__nav-list li:last-child {
    padding-left: 0;
    border-left: none;
    padding-top: 24px;
    position: relative;
  }
  .footer__nav-list li:last-child:before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(17, 17, 17, 0.3019607843);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer__address {
  display: flex;
  gap: 16px;
}
@media screen and (max-width:767px) {
  .footer__address {
    flex-direction: column;
    gap: 8px;
  }
}
.footer__copyright {
  margin-top: 16px;
}

.breadcrumb {
  padding: 14px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 2px 4px 0;
}

.page__navigation ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  justify-content: space-between;
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
}
@media screen and (max-width:767px) {
  .card {
    flex-direction: column;
  }
}
.card__title {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .card__title {
    font-size: 2.4rem;
  }
}
.card__image {
  flex-shrink: 0;
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width:767px) {
  .card__image {
    width: 100%;
  }
}
.card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.card.manager {
  border-top: none;
}
.card.manager .card__image {
  width: 16.9811320755%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .card.manager .card__image {
    width: 100%;
    padding: 0 22%;
  }
}
.card.manager .card__image img {
  width: 100%;
  margin-bottom: 0;
}
.card.manager .card__manager-position {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.card.manager .card__manager-name {
  font-weight: bold;
}

.pageNavi {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pageNavi__wrapper {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
  padding: 24px 0;
}
.pageNavi .page-numbers {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
}
.pageNavi .page-numbers::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transition: 0.5s transform ease;
  transform-origin: right center;
}
.pageNavi .page-numbers.current::after {
  transform: scaleX(1);
}
.pageNavi .page-numbers.dots::after {
  display: none;
}
.pageNavi .page-numbers:not(.current):hover::after {
  transform-origin: left bottom;
  transform: scaleX(1);
}
.pageNavi .page-numbers.prev::before, .pageNavi .page-numbers.next::before {
  width: 12px;
  height: 12px;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pageNavi .page-numbers.prev::before, .pageNavi .page-numbers.next::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.pageNavi .page-numbers.prev {
  margin: 0 8px 0 0;
}
.pageNavi .page-numbers.prev::before {
  transform: rotate(180deg);
}
.pageNavi .page-numbers.next {
  margin: 0 0 0 8px;
}

.table-wrapper {
  width: 100%;
  margin-bottom: 24px;
  overflow-x: auto;
  overflow-y: hidden !important;
}
.table-wrapper table {
  width: auto;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.table-wrapper table tr th,
.table-wrapper table tr td {
  border: 1px solid rgba(17, 17, 17, 0.3019607843);
  padding: 24px;
}
.table-wrapper table tr th:empty,
.table-wrapper table tr td:empty {
  border: none;
  padding: 0;
}
.table-wrapper table + figcaption {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.table-type--both tr:first-child td:not(:empty) {
  background-color: rgba(17, 17, 17, 0.2);
  font-weight: bold;
}
.table-type--both tr td:first-child:not(:empty) {
  background-color: rgba(17, 17, 17, 0.0980392157);
  font-weight: bold;
}
.table-type--row tr:first-child td {
  background-color: rgba(17, 17, 17, 0.0980392157);
  font-weight: bold;
}
.table-type--column tr td:first-child {
  background-color: rgba(17, 17, 17, 0.0980392157);
  font-weight: bold;
}

.accordion {
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
}
.accordion__item {
  display: block !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  padding: 0 4px;
  margin: 0 !important;
}
.accordion__item::before {
  display: none !important;
}
.accordion__item-head {
  padding: 16px 28px 16px 0;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
.accordion__item-head::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 8px;
  height: 4px;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.accordion__item-head.is-active::after {
  transform: translateY(-50%) rotate(0deg);
}
.accordion__item-head.is-active + .accordion__item-body {
  height: auto;
  opacity: 1;
  padding: 0 0 16px 16px;
}
.accordion__item-body {
  padding: 0 0 0 16px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.accordion.faq .accordion__item-head {
  display: flex;
  gap: 8px;
}
.accordion.faq .accordion__item-head::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-faq-question.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.accordion.faq .accordion__item-head span {
  padding-top: 3px;
}
.accordion.faq .accordion__item-body {
  display: flex;
  gap: 8px;
  padding-left: 0;
}
.accordion.faq .accordion__item-body::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-faq-answer.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.page__section {
  position: relative;
  padding-top: 100px;
  margin-top: -100px;
  margin-bottom: 100px;
}
@media screen and (max-width:767px) {
  .page__section {
    padding-top: 65px;
    margin-top: -65px;
    margin-bottom: 65px;
  }
}
.page__section-inner {
  padding-left: 48px;
}
@media screen and (max-width:767px) {
  .page__section-inner {
    padding-left: 0;
  }
}
.page__section-inner a:not([class]) {
  color: #4774cc;
  text-decoration: underline;
  transition: all 0.3s;
}
.page__section-inner a:not([class]):hover {
  text-decoration: none;
}
.page__section-inner img {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.page__section-inner p:not(:last-child) {
  margin-bottom: 24px;
}
.page__section-inner ul {
  margin-bottom: 24px;
}
.page__section-inner ul li {
  display: flex;
  margin-bottom: 24px;
}
.page__section-inner ul li::before {
  content: "・";
  margin-right: 0.5em;
}
.page__section-inner ul li:last-child {
  margin-bottom: 0;
}

.flow {
  display: grid;
  align-items: stretch;
  background-color: rgba(17, 17, 17, 0.0980392157);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
@media screen and (max-width:767px) {
  .flow {
    grid-template-columns: 1fr;
  }
}
.flow__item {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width:767px) {
  .flow__item {
    display: block;
  }
}
.flow__item-inner {
  padding: 48px;
}
.flow__item-inner p:first-child {
  text-align: center;
}
.flow__item:not(:last-child)::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/flow-divider.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 100%;
}
@media screen and (max-width:767px) {
  .flow__item:not(:last-child)::after {
    content: "";
    background-size: contain;
    background-image: url("../images/icon/flow-divider-sp.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    left: 0;
    top: 100%;
    transform: translateY(-50%);
    width: 100%;
    height: 84px;
  }
}

#bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  transform: translateY(-75%);
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  #bg-wrap {
    aspect-ratio: 1/1;
    transform: translateY(-25%);
  }
}
#bg-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}
@media screen and (max-width:767px) {
  #bg-wrap::after {
    height: 15%;
  }
}
#bg-wrap__grd {
  width: 100%;
  height: 100%;
}

.top__header {
  margin: 100px 0 0;
}
@media screen and (max-width:767px) {
  .top__header {
    margin: 80px 0 0;
  }
}
.top__header-inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width:767px) {
  .top__header-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.top__header-kv {
  max-width: 850px;
  flex-grow: 1;
}
.top__header-kv img {
  width: 100%;
  height: auto;
}
.top__header-links {
  white-space: nowrap;
  gap: 16px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width:767px) {
  .top__header-links {
    align-items: center;
  }
}
.top__news {
  margin: 100px 0 0;
}
.top__banner {
  margin: 100px 0 0;
}
.top__menu {
  margin: 100px 0 0;
}
.top__menu-item {
  margin: 0 0 100px;
}

.news-search {
  position: relative;
  display: inline-block;
  margin: 0 0 32px;
}
.news-search select {
  position: relative;
  width: 142px;
  border: 2px solid rgba(17, 17, 17, 0.3019607843);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none !important;
  cursor: pointer;
}
.news-search::after {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-bottom.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.details__head-image {
  width: min(100%, 946px);
  margin: 0 auto;
}
.details__head-image img {
  width: 100%;
  height: auto;
  display: block;
}

.details__body {
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
  margin: 24px 0;
  padding: 24px 0;
}
.details__body.club {
  border-top: none;
  margin: 32px auto;
  padding: 0;
  width: min(100%, 900px);
}

.details__navi {
  border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
  border-bottom: 1px solid rgba(17, 17, 17, 0.3019607843);
  padding: 16px 0;
  margin: 0 0 24px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width:767px) {
  .details__navi {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.details__navi::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background-color: rgba(17, 17, 17, 0.3019607843);
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:767px) {
  .details__navi::after {
    display: none;
  }
}
.details__navi-item {
  display: flex;
  align-items: center;
  max-width: calc((100% - 40px) / 2);
  gap: 16px;
}
@media screen and (max-width:767px) {
  .details__navi-item {
    max-width: 100%;
    width: 100%;
    padding: 16px 0;
  }
}
.details__navi-item::before {
  content: "";
  background-size: contain;
  background-image: url("../images/icon/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media screen and (max-width:767px) {
  .details__navi-item + .details__navi-item {
    margin-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, 0.3019607843);
  }
}
.details__navi-item.prev::before {
  transform: rotate(180deg);
}
.details__navi-item.next {
  flex-direction: row-reverse;
}
.details__navi-item span {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.search-area {
  margin: 0 0 48px;
}

.search-results__count {
  margin: 0 0 48px;
  line-height: 1;
}
.search-results__count span {
  margin: 0 4px;
}

.error .error__title {
  text-align: center;
  margin: 0 0 0.48rem;
}
@media screen and (max-width:767px) {
  .error .error__title {
    margin: 0 0 0.32rem;
  }
}
.error .error__message {
  text-align: center;
  line-height: 1.75;
}
.error .error__backButton {
  margin: 0.8rem 0 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width:767px) {
  .error .error__backButton {
    margin: 0.64rem 0 0;
  }
}