@charset "UTF-8";
body.no-scroll {
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}
body.no-scroll::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 3;
}

@media screen and (min-width: 769px) {
  .l-header {
    position: relative;
  }
}

.l-header__head,
.l-header__body {
  top: 0;
  position: fixed;
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s;
  z-index: 99999;
}

@media screen and (max-width: 768px) {
  .l-header__body {
    top: 40px;
    width: 100%;
  }
}
.l-header__head.hidden,
.l-header__body.hidden {
  opacity: 0;
  transform: translateY(-120%);
}

.l-fixed__body.-top .l-header {
  top: 0;
}
.l-fixed__body.-top .l-header.scrolled {
  top: 0;
}
@media screen and (max-width: 768px) {
  .l-fixed__body.-top .l-header.scrolled {
    top: 0;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .l-header__inner {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .l-header__head {
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 9;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header__head {
    width: 100%;
    height: 40px;
    display: flex;
    padding: 0;
  }
}
.l-header__logo {
  background: #202451;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 20px 0;
  width: 143px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.l-header__logo .sm {
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #202451;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 25px;
}
.l-header__logo .lg {
  font-size: 22px;
  line-height: 1.2272727273;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-header__logo--flex {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: calc(100% - 59px);
    height: 100%;
    border-radius: unset;
    border: unset;
    flex-direction: row;
    gap: 13px;
    padding: 0 calc(15px - 0.5em) 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo .lg {
    letter-spacing: 0.5em;
    font-size: clamp(16px, 5.5vw, 22px);
    text-indent: 0.5em;
    margin-top: -2px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo .sm {
    border-radius: 5px;
    letter-spacing: 0.5em;
    font-size: clamp(15px, 4vw, 17px);
    flex-shrink: 0;
    padding: 0 5px;
    text-indent: 0.5em;
    width: auto;
  }
}

.l-header__logo--flex {
  gap: 10px 0;
}

@media screen and (min-width: 769px) {
  .l-header__logo--flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
}
@media screen and (min-width: 769px) {
  .l-header__logo .sm {
    text-indent: 0.15em;
  }
}
@media screen and (min-width: 769px) {
  .l-header__logo .lg {
    text-align: justify;
    width: 100px;
    display: block;
    -moz-text-align-last: justify;
         text-align-last: justify;
    letter-spacing: normal;
  }
}

.l-header__body {
  display: flex;
}
@media (min-width: 769px) {
  .l-header__body {
    position: fixed;
    right: 0;
    top: -1px;
    z-index: 9;
  }
}

.l-header__buttonbox {
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-header__buttonbox {
    width: 100%;
    overflow: hidden;
    height: 40px;
  }
}
.l-header__button {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 2px;
  border: 2px solid;
  background: #fff;
  border-radius: 0 0 20px 20px;
  border-top: 0;
  padding-bottom: 2px;
}
.l-header__button.-opencampus {
  width: 120px;
  border-color: #f7a700;
  color: #f7a700;
}
.l-header__button.-opencampus:hover {
  background: #f7a700;
  color: #fff;
}
.l-header__button.-request {
  width: 81px;
  border-color: #43cc7d;
  color: #43cc7d;
}
.l-header__button.-request:hover {
  background: #43cc7d;
  color: #fff;
}
.l-header__button.-contact {
  border-color: #b36cd3;
  color: #b36cd3;
  width: 81px;
}
.l-header__button.-contact:hover {
  background: #b36cd3;
  color: #fff;
}
.l-header__button p {
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .l-header__button {
    flex-direction: row;
    font-size: 12px;
    justify-content: flex-start;
    row-gap: unset;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 0 0 20px 20px;
  }
  .l-header__button p {
    width: calc(100% - 40px);
    font-size: clamp(10px, 3vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .l-header__button.-opencampus {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__button.-request {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__button.-contact {
    width: 30%;
  }
}
.l-header__buttonimg {
  border-radius: 100%;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .l-header__buttonimg {
    width: 100%;
    border-radius: 0 100% 100% 0;
    width: 40px;
  }
}

.c-nav {
  background: #202451;
  border-radius: 0 0 0 20px;
  position: fixed;
  transition: 0.7s;
  right: -100vw;
  z-index: 99999;
  top: -41px;
  width: calc(100% - 7px);
}
@media screen and (min-width: 769px) {
  .c-nav {
    width: 100vw;
    top: -1px;
  }
}
.c-nav.in {
  right: 0;
}

@media screen and (max-width: 768px) {
  .c-nav.in {
    right: -7px;
  }
}
.c-nav__inner {
  max-width: 1030px;
  padding: 11px 30px 70px;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .c-nav__inner {
    padding: 26px 27px 150px 20px;
  }
}
.c-nav__list {
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  line-height: 1.2307692308;
  margin-left: -36px;
  margin-top: 35px;
  overflow: hidden;
}
.c-nav__list a {
  color: #fff;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .c-nav__list {
    flex-direction: column;
    margin-left: unset;
  }
}
.c-nav__list3 {
  display: none;
}

.c-nav__item {
  width: calc(33.33333% - 36px);
  margin-left: 36px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #fff;
  height: -moz-fit-content;
  height: fit-content;
}
.c-nav__item:nth-child(-n+1) {
  border-top: 1px solid #fff;
}
.c-nav__item p {
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .c-nav__item:nth-child(-n+3) {
    border-top: 1px solid #fff;
  }
}

@media screen and (max-width: 768px) {
  .c-nav__item {
    width: 100%;
    margin-left: unset;
  }
}
.c-nav__item--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.c-nav__item--flex a {
  padding: 11px 0;
  width: calc(100% - 50px);
  display: flex;
  min-height: 50px;
  align-items: center;
}

/* 初期状態 */
/* 非表示状態のスタイル設定 */
.c-nav__item--a {
  opacity: 0;
  max-height: 0;
  display: block;
  overflow: hidden;
}

/* 展開状態のスタイル設定 */
.c-nav__item--a.active {
  opacity: 1;
  max-height: 1500px;
}

.c-nav__item--q2.active .c-nav__item--flex .close .plus {
  display: none;
}
.c-nav__item--q2.active .c-nav__item--flex .close .minus {
  display: block;
  padding-bottom: 5px;
  padding-right: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-nav__item--q2.active .close {
  background-color: #fff;
}
.c-nav__item--q2.active .close .minus {
  color: #00b3ff;
}

.c-nav__item--q2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  border-left: 1px dotted rgba(255, 255, 255, 0.8);
}
.c-nav__item--q2 .c-nav__item--flex {
  justify-content: center;
}

.c-nav__list2 {
  padding-left: 20px;
  border-top: 1px dashed #fff;
}

.c-nav__item2 {
  border-top: 1px dashed #fff;
}
.c-nav__item2 > a {
  display: flex;
  align-items: center;
  height: 50px;
}

.c-nav__item2:first-child {
  border-top: none;
}

.c-nav__item2--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0px 20px;
}
.c-nav__item2--flex.active .close .plus {
  display: none;
}
.c-nav__item2--flex.active .close .minus {
  display: block;
  padding-bottom: 5px;
  padding-right: 1px;
}

.c-nav__item3 {
  background: #104da3;
  border-top: 1px dashed #fff;
}
.c-nav__item3 > a {
  padding: 11px 0;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 40px;
}

.c-nav .close {
  border: 1px solid #fff;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
}
.c-nav .close .plus {
  display: block;
  padding-bottom: 2px;
}
.c-nav .close .minus {
  display: none;
}
.c-nav .close svg {
  padding-bottom: 1px;
}

.c-nav__buttonbox {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

@media screen and (max-width: 768px) {
  .c-nav__buttonbox {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
}
.c-nav__button {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  height: 45px;
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  padding: 0 20px 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 700;
}
.c-nav__button.-opencampus {
  background: #fff;
  color: #f8a100;
  border-color: #f8a100;
}
.c-nav__button.-opencampus svg path {
  fill: #f8a100;
}
.c-nav__button.-opencampus svg text {
  fill: #fff;
}
.c-nav__button.-request {
  background: #fff;
  color: #43cc7d;
  border-color: #43cc7d;
  width: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.c-nav__button.-request svg path {
  fill: #43cc7d;
}
.c-nav__button.-request svg text {
  fill: #fff;
}
.c-nav__button.-contact {
  background: #fff;
  color: #b36dd3;
  border-color: #b36dd3;
  width: 160px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.c-nav__button.-contact svg path {
  fill: #b36dd3;
}
.c-nav__button.-contact svg text {
  fill: #fff;
}
.c-nav__button:hover {
  background: #fff;
}
.c-nav__button:hover.-opencampus {
  color: #fff;
  background: #f8a100;
}
.c-nav__button:hover.-opencampus svg path {
  fill: #fff;
}
.c-nav__button:hover.-opencampus svg text {
  fill: #f8a100;
}
.c-nav__button:hover.-request {
  color: #fff;
  background: #43cc7d;
}
.c-nav__button:hover.-request svg path {
  fill: #fff;
}
.c-nav__button:hover.-request svg text {
  fill: #43cc7d;
}
.c-nav__button:hover.-contact {
  color: #fff;
  background: #b36dd3;
}
.c-nav__button:hover.-contact svg path {
  fill: #fff;
}
.c-nav__button:hover.-contact svg text {
  fill: #b36dd3;
}
.c-nav__button p {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .c-nav__button {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-nav__button.-opencampus {
    flex-grow: 1;
  }
}
@media screen and (max-width: 768px) {
  .c-nav__button.-request {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .c-nav__button.-contact {
    width: calc(50% - 5px);
    padding: 0 15px 0 15px;
  }
}
.c-burger {
  width: 72px;
  background: #202451;
  border-radius: 0 0 0 20px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  width: 72px;
  height: 71px;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
}
.c-burger:hover {
  background: #fff;
  border-color: #202451;
}

.c-burger:hover .c-burger__text {
  color: #202451;
}

@media screen and (max-width: 768px) {
  .c-burger {
    width: 59px;
    height: 40px;
    border: unset;
    border-left: 1px solid #fff;
    border-radius: unset;
    transition: 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .c-burger.c-burger-nav:hover .c-burger--top,
  .c-burger.c-burger-nav:hover .c-burger--bottom {
    background: #fff;
  }
}
.c-burger--top,
.c-burger--mid,
.c-burger--mid-2,
.c-burger--bottom {
  position: absolute;
  width: 39px;
  height: 3px;
  background: #fff;
  display: block;
  left: 15px;
}

.c-burger {
  transition: 0.4s;
}
.c-burger:hover .c-burger--top,
.c-burger:hover .c-burger--mid,
.c-burger:hover .c-burger--mid-2,
.c-burger:hover .c-burger--bottom {
  background: #202451;
}

@media screen and (max-width: 768px) {
  .c-burger--top,
  .c-burger--mid,
  .c-burger--mid-2,
  .c-burger--bottom {
    width: 32px;
    height: 2px;
  }
}
.c-burger--top {
  top: 9px;
}

@media screen and (max-width: 768px) {
  .c-burger--top {
    top: 9px;
  }
}
.c-burger--mid {
  top: 32%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-burger--mid {
    top: 39%;
  }
}
.c-burger--mid-2 {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-burger--mid-2 {
    display: block;
    bottom: 15px;
  }
}
.c-burger--bottom {
  bottom: 35px;
}

@media screen and (max-width: 768px) {
  .c-burger--bottom {
    bottom: 17px;
  }
}
.c-burger-nav {
  border: unset;
  margin-left: auto;
}
.c-burger-nav .c-burger--top {
  rotate: 45deg;
  top: 34px;
}
.c-burger-nav .c-burger--bottom {
  rotate: -45deg;
  width: 39px;
  bottom: 34px;
}

@media screen and (max-width: 768px) {
  .c-burger-nav .c-burger--top {
    top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .c-burger-nav .c-burger--bottom {
    width: 32px;
    bottom: 13px;
  }
}
.c-nav__item--q3 {
  width: 50px;
}
.c-nav__item--q3 .c-nav__item--flex {
  justify-content: center;
}

/* 初期状態 */
/* 非表示状態のスタイル設定 */
.c-nav__list2 {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

/* 展開状態のスタイル設定 */
.c-nav__item--a.active .c-nav__list2 {
  opacity: 1;
  max-height: 1500px;
}

.c-nav-header {
  top: 0;
  transition: 0.3s ease;
  right: 0 !important;
  transform: translateX(100vw);
}
.c-nav-header.in {
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .c-burger-nav .c-burger--top {
    top: 25px;
  }
}

.c-nav,
.l-footer {
  background: rgba(0, 179, 255, 0.95);
}

@media screen and (max-width: 768px) {
  .c-nav .c-burger {
    width: 57px;
    height: 50px;
    background: rgba(0, 179, 255, 0.95);
  }
  .c-nav .c-burger-nav .c-burger--top,
  .c-nav .c-burger-nav .c-burger--bottom {
    top: 0;
    bottom: 0;
    left: -5px;
    right: 0;
    margin: auto;
  }
}
.c-burger__text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  padding-bottom: 10px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .c-burger__text {
    font-size: 8px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 769px) {
  .l-header__box {
    max-width: 1180px;
    width: 100%;
    position: fixed;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    z-index: 999;
  }
  .l-header__logo {
    border-left: 2px solid #fff;
    border-radius: 0 0 20px 20px;
  }
  .c-burger {
    border-right: 2px solid #fff;
    border-radius: 0 0 20px 20px;
  }
  .c-burger-nav {
    border: unset !important;
    margin-left: auto;
    background: none;
  }
}
@media screen and (min-width: 769px) {
  .l-header__button {
    margin-right: -2px;
  }
}
.l-header__button.-school_list {
  width: 71px;
  background: #202451;
  border-radius: 0 0 20px 20px;
  border: 2px solid #fff;
  border-top: 0;
}
.l-header__button.-school_list div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  row-gap: 2px;
}
.l-header__button.-school_list svg {
  width: 24px;
  height: 32px;
}
.l-header__button.-school_list:hover {
  background: #fff;
  border-color: #202451;
  color: #202451;
}
.l-header__button.-school_list:hover * {
  fill: #202451;
}

.u-md-hidden {
  display: block;
}

.u-md-only {
  display: none;
}

.u-tablet {
  display: none;
}

@media screen and (max-width: 1024px) {
  .u-tablet {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .u-md-hidden {
    display: none;
  }
  .u-tablet {
    display: none;
  }
  .u-mobile {
    display: none;
  }
  .u-md-only {
    display: block;
  }
}
.l-header__school-listbtn {
  background: #202451;
  border-left: 1px solid #fff;
  flex-shrink: 0;
  width: 47px;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.l-header__school-listbtn:hover {
  background: #fff;
  border-color: #202451;
}
.l-header__school-listbtn:hover .l-header__school-listbtn--text {
  color: #202451;
}
.l-header__school-listbtn:hover * {
  fill: #202451;
}
.l-header__school-listbtn .l-header__school-listbtn--text {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-header__school-listbtn {
    display: flex;
    flex-direction: column;
  }
}
.l-header__school-listbtn svg {
  width: 15px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__school-listbtn--text {
    font-size: 8px;
    color: #fff;
    font-weight: 900;
  }
}
.c-burger {
  flex-shrink: 0;
}

.c-nav__buttonbox2 {
  margin: 40px auto 0;
  max-width: 666px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30.5px;
}

.c-nav__buttonbox2-item {
  position: relative;
  max-width: 317.5px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: #56b3ff;
}

.c-nav__buttonbox2-item.c-nav__buttonbox2-item--zennichi {
  padding-left: 28px;
  justify-content: initial;
  font-size: 14px;
}

.c-nav__buttonbox2-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  width: 20.5px;
  height: 20.5px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url(../images/icon-arrow-white.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: left center;
}

@media (max-width: 900px) {
  .p-visitor-content__list {
    gap: 15px 50px;
  }
  .p-visitor-content__btn {
    font-size: 16px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi {
    font-size: 14px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hs2::before {
    width: 35px;
    height: 42px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hogosya::before {
    width: 45px;
    height: 37px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--ryugaku::before {
    width: 38px;
    height: 37px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi::before {
    width: 25px;
    height: 37px;
  }
  .p-visitor-content__btn::after {
    width: 15px;
    height: 8px;
  }
}
@media (max-width: 768px) {
  .p-top-listbox.-admission {
    margin-top: 235px;
  }
  .p-top-listbox.-support {
    margin-top: 228px;
  }
  .p-top-listbox.-campuslife {
    margin-top: 263px;
  }
  .p-top-listbox.-information {
    margin-top: 263px;
  }
  .p-top-listbox.-archivement {
    margin-top: 263px;
  }
  .p-visitor-content {
    margin-top: 122px;
    padding: 66px 20px;
  }
  .p-visitor-content__list {
    max-width: initial;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .p-visitor-content__btn {
    font-size: 17px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi {
    padding: 0 45px 0 65px;
    font-size: 15px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hs2::before {
    width: 40px;
    height: 47px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hogosya::before {
    width: 50px;
    height: 42px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--ryugaku::before {
    width: 43px;
    height: 42px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi::before {
    width: 30px;
    height: 42px;
  }
  .p-visitor-content__btn::after {
    width: 18px;
    height: 9px;
  }
  .c-nav__buttonbox2 {
    margin-top: 30px;
    max-width: initial;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .c-nav__buttonbox2-item {
    max-width: initial;
  }
  .c-nav__buttonbox2-item.c-nav__buttonbox2-item--zennichi {
    padding-left: 0;
    justify-content: center;
  }
}
@media (max-width: 390px) {
  .p-visitor-content__btn {
    font-size: 16px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi {
    font-size: 14px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hs2::before {
    width: 35px;
    height: 42px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--hogosya::before {
    width: 45px;
    height: 37px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--ryugaku::before {
    width: 38px;
    height: 37px;
  }
  .p-visitor-content__btn.p-visitor-content__btn--zennichi::before {
    width: 25px;
    height: 37px;
  }
  .p-visitor-content__btn::after {
    width: 15px;
    height: 8px;
  }
  .c-nav__buttonbox2-item {
    font-size: 12.5px;
  }
  .c-nav__buttonbox2-item.c-nav__buttonbox2-item--zennichi {
    font-size: 12px;
  }
  .c-nav__buttonbox2-item::after {
    right: 15px;
    width: 18px;
    height: 18px;
    background-size: 12px;
  }
}
.c-nav__item--q {
  background-color: #56b3ff;
}

.c-nav__list2 {
  background-color: #6abdff;
}

.c-nav__item--q2 .close {
  border: none;
}
.c-nav__item--q2 .close .plus,
.c-nav__item--q2 .close .minus {
  display: none;
}

.c-nav__item--q2.active .close {
  background-color: transparent;
}

.c-nav__item--q2 .close::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.2s, margin-bottom 0.2s;
  margin: auto;
  margin-bottom: 9px;
}

.c-nav__item--q2.active .close::after {
  transform: rotate(-135deg);
  margin-bottom: 4px;
}

.c-nav__item--q2 .c-nav__item--flex {
  transition: background-color 0.1s;
}

a.c-nav__item--flex {
  padding-left: 20px;
}

.c-nav__item--flex a {
  padding-left: 20px;
}

.c-nav__item--q2.active .c-nav__item--flex {
  background-color: #008cf4;
}

.c-nav__item--q2.active .c-nav__item--flex .close .minus {
  display: none;
}

.c-nav__list2 {
  padding-left: 0;
}

.c-nav__item2 a {
  padding: 0 10px 0 40px;
}

@media (max-width: 1024px) {
  a.c-nav__item--flex {
    padding-left: 10px;
  }
  .c-nav__item--flex a {
    padding-left: 10px;
  }
  .c-nav__item2 a {
    padding: 0 5px 0 25px;
  }
}
@media (max-width: 768px) {
  a.c-nav__item--flex {
    padding-left: 20px;
  }
  .c-nav__item--flex a {
    padding-left: 20px;
  }
  .c-nav__item2 a {
    padding: 0 10px 0 40px;
  }
}
.l-footer {
  width: 100%;
  padding: 0px 0px 20px;
  position: relative;
  z-index: 3;
  border-radius: 40px 40px 0 0;
}

.c-nav.-footer {
  position: unset;
  border-radius: 20px 20px 0 0;
  width: 100%;
}
.c-nav.-footer .c-nav__inner {
  max-width: 1030px;
  padding: 50px 30px 0px;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: hidden;
}
.c-nav.-footer a:hover {
  opacity: 1;
}
.c-nav.-footer .c-nav__list {
  margin-top: unset;
}
.c-nav.-footer .c-nav__item--a {
  position: unset;
}
@media (min-width: 769px) {
  .c-nav.-footer .c-nav__inner {
    overflow: visible;
  }
  .c-nav.-footer .c-nav__item--a .c-nav__list2 {
    display: none;
    max-height: unset;
  }
  .c-nav.-footer .c-nav__item--a.active .c-nav__list2 {
    display: block;
    max-height: unset;
  }
}

@media screen and (max-width: 768px) {
  .c-nav.-footer .c-nav__inner {
    padding: 50px 27px 19px 27px;
  }
}
.l-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  color: #fff;
  font-size: 10px;
  margin: 30px auto;
}
.l-footer__list a {
  color: #fff;
}
.l-footer__list a:nth-of-type(1), .l-footer__list a:nth-of-type(6) {
  width: 170px;
}
.l-footer__list a:nth-of-type(2), .l-footer__list a:nth-of-type(7) {
  width: 160px;
}
.l-footer__list a:nth-of-type(3), .l-footer__list a:nth-of-type(8) {
  width: 220px;
}
.l-footer__list a:nth-of-type(4), .l-footer__list a:nth-of-type(9) {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .l-footer__list {
    flex-direction: column;
    font-size: 13px;
    margin: 26px auto 30px;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list a:nth-of-type(1), .l-footer__list a:nth-of-type(6) {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list a:nth-of-type(2), .l-footer__list a:nth-of-type(7) {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list a:nth-of-type(3), .l-footer__list a:nth-of-type(8) {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__list a:nth-of-type(4), .l-footer__list a:nth-of-type(9) {
    width: auto;
  }
}
.l-footer small {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8333333333;
  text-align: center;
  margin: 0 auto;
  display: block;
}

/*---------

to-top

----------------------------**/
#oh-to-top {
  position: fixed;
  right: 0;
  z-index: 50;
}

#oh-to-top:hover {
  opacity: 0.6;
}

@media not all and (min-width: 769px) {
  #oh-to-top {
    bottom: 16%;
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 769px) {
  #oh-to-top {
    bottom: 4%;
    width: 64px;
    height: 64px;
  }
}
/* 20250902ナビゲーションのサイズ調整 */
@media screen and (max-width: 768px) {
  .c-nav-header {
    width: 90vw;
  }
  .c-nav__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .c-nav__button {
    font-size: 14px;
  }
}/*# sourceMappingURL=nav.css.map */