:root {
  --themecolor: #005eaa;
  --themecolor2: #036300;
  --font-montserrat: "Montserrat", sans-serif;
}

::after,
::before,
* {
  --font-size: calc((var(--fsz) / 16) * 1rem);
  font-size: var(--font-size);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 80px;
  }
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

body {
  margin-top: 0 !important;
  font-family: "Noto Sans JP", sans-serif;
  min-width: auto;
  --fsz: 15;
}

body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1150px !important;
}

.gNav .gNav__item > a {
  font-size: 15px;
}
.nav-inner {
  display: flex;
  gap: 30px;
}

.nav-inner ul {
  display: flex;
  gap: 40px;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .nav-inner ul {
    gap: 20px;
  }
}

.header,
header {
  min-width: auto;
  min-height: auto;
}

@media (max-width: 991px) {
  .header {
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0;
  }
}

.header__inner {
  width: 100%;
  padding-left: 15px;
}

@media (max-width: 991px) {
  .header__inner {
    padding-top: 15px;
  }
}

.header-sub {
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.header-sub.fixed-sub-btn {
  position: fixed;
  right: 0;
  top: 250px;
  flex-direction: column;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 12;
  transition: 0.3s;
}

.header-sub.fixed-sub-btn.show {
  opacity: 1;
  visibility: visible;
}

.header-sub.fixed-sub-btn a {
  writing-mode: vertical-lr;
  min-width: 50px;
  width: 100%;
  height: auto;
  border-radius: 3px 0 0 3px;
  padding: 10px;
  transition: none;
  --fsz: 14;
  background-color: #fff;
}

@media (max-width: 991px) {
  header .header-sub {
    display: none;
  }
}

.header__sub__btn .header__sub__btn--member {
  background-color: #fff;
  border: 1px solid #005eaa;
  color: #005eaa;
}

.header__sub__btn .header__sub__btn--class {
  background-color: #fff;
  border: 1px solid #036300;
  color: #036300;
}

.gnav-menu {
  display: flex;
  justify-content: flex-end;
  padding-left: 0;
  margin-bottom: 0;
}

.gnav-menu-item {
  border-right: 1px solid #bfbfbf;
  display: flex;
  align-items: center;
}

.gnav-menu-item:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  header .gnav-menu-item {
    border-right: none;
    border-bottom: 1px dashed #bfbfbf;
  }
  header .gnav-menu-item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.gnav-menu-item a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 5px 15px;
  text-align: center;
}

@media (max-width: 1200px) {
  .gnav-menu-item a {
    padding: 5px 10px;
    --fsz: 14;
  }
}

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

.nav-menu {
  display: none;
}

@media (max-width: 991px) {
  header .gnav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    /* transition: 0.3s; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
  }
  header .nav-menu {
    display: block;
    cursor: pointer;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 1100;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: -3px 3px 15px -5px rgba(0, 0, 0, 0.45);
  }
  .nav-menu span {
    display: block;
    height: 3px;
    background: var(--themecolor);
    border-radius: 2px;
    transition: 0.3s;
    position: absolute;
    width: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-menu span:nth-child(1) {
    top: 14px;
  }
  .nav-menu span:nth-child(2) {
    top: 21px;
  }
  .nav-menu span:nth-child(3) {
    top: 28px;
  }
  .nav-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translateX(-66%);
    top: 7px;
  }
  .nav-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu.active span:nth-child(3) {
    transform: rotate(45deg) translateX(-65%);
    top: 35px;
  }

  .gnav.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    flex-direction: column;
    margin-top: 65px;
    overflow: auto;
    padding-top: 30px;
    padding-bottom: 50px;
  }
  header .gnav-menu {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    padding-right: 30px;
    padding-left: 30px;
    min-width: 375px;
    margin-bottom: 15px;
  }
  header .gnav-menu-item a {
    color: #000;
    padding-bottom: 10px;
  }
  header .gnav-menu br {
    display: none;
  }
}

.header__logo {
  width: 260px;
  position: relative;
  z-index: 11;
}

.header__logo h1 {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .header__logo {
    width: 160px;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  width: 120px;
  height: 110px;
  background-color: var(--themecolor);
  color: #fff;
  border-radius: 0 0 0 30px;
  --fsz: 14;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

#fixed-header .header-contact {
  border-radius: 0;
}

@media (max-width: 991px) {
  .header-contact {
    min-width: 315px;
    height: auto;
    border-radius: 10px;
    padding: 5px 0;
    height: 46px;
    line-height: 46px;
    border: 1px solid var(--themecolor);
    border-radius: 23px;
    flex-direction: row-reverse;
  }
}

.header-contact span {
  display: block;
}

@media (min-width: 992px) {
  .header__inner {
    padding-top: 0;
  }
}

.header {
  border: none;
  margin-bottom: 60px;
}

.toppage .header {
  margin-bottom: 10px;
}

.lowerpage .header {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 40px;
  }
  .lowerpage .header {
    margin-bottom: 15px;
  }
}

.header-wrapper {
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

@media (min-width: 1921px) {
  .header-wrapper {
    max-width: 1920px;
  }
}

@media (max-width: 991px) {
  .header-wrapper {
    margin-left: 0;
  }
}

.header-sub {
  gap: 10px;
}

.header-sub {
  margin-right: 170px;
}

.header-sub-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 23px;
  height: 46px;
  width: 155px;
  position: relative;
  text-align: center;
  transition: none;
  --fsz: 14;
  line-height: calc(15 / 14);
  font-weight: 500;
}

.header-sub-btn-member {
  color: var(--themecolor);
  border: 1px solid var(--themecolor);
}

.header-sub-btn-member::after {
  content: "";
  display: block;
  background-image: url(../img/common/icon-member.svg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 12px;
  height: 11px;
  background-size: cover;
}

.header-sub-btn-class {
  color: var(--themecolor2);
  border: 1px solid var(--themecolor2);
}

.header-sub-btn-class::after {
  content: "";
  display: block;
  background-image: url(../img/common/icon-class.svg);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  background-size: cover;
}

@media (max-width: 991px) {
  .header-sub-btn {
    width: 315px;
    margin-right: auto;
    margin-left: auto;
  }
  .header-sub-btn a {
    width: 100%;
    min-width: 100%;
  }
}

.fv {
  /* overflow: hidden; */
  position: relative;
  padding-bottom: 80px;
}

/* @media (min-height: 900px) {
  .fv{
    height: calc(100vh - 210px);
  }
} */

@media (max-width: 991px) {
  .fv {
    padding-bottom: 20px;
  }
}

.fv-inner {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  height: 100%;
}

@media (max-width: 991px) {
  .fv-inner {
    padding: 0;
  }
}

.fv-inner img {
  width: 100%;
}

@media (min-width: 1441px) {
  .fv-inner {
  }
}

.fv-inner::before {
  content: "";
  display: block;
  background-image: url(../img/top/fv-bird.svg);
  background-repeat: no-repeat;
  width: 178px;
  height: 100px;
  position: absolute;
  left: 25%;
  top: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .fv-inner::before {
    width: 100px;
    height: 50px;
    background-size: cover;
    left: 20px;
  }
}

.fv-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
}

.fv-bottom img {
  width: 100%;
}

@media (min-width: 1920px) {
  .fv-bottom {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}

.fv-title {
  position: absolute;
  top: 11%;
  width: auto;
  /* right: calc(50% - 500px); */
  right: 10%;
  z-index: 2;
}

.fv-title h1 {
  --fsz: 48;
  letter-spacing: 0.05em;
  line-height: calc(70 / 48);
  font-weight: 700;
  font-size: var(--font-size);
  text-shadow: 1px 1px 6px rgba(255, 255, 255, 1);
  text-align: left;
}

.fv-title span {
  font-size: var(--font-size);
  --fsz: 14;
  display: block;
  font-weight: 500;
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 1);
}

@media (min-width: 1921px) {
  .fv-title h1 {
    --fsz: 80;
  }
  .fv-title span {
    --fsz: 20;
  }
}

@media (max-width: 991px) {
  .fv-title {
    right: 15px;
    top: 50px;
  }
  .fv-title h1 {
    --fsz: 30;
  }
  .fv-title span {
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .fv-title {
    top: 20px;
  }

  .fv-title span {
    --fsz: 12;
  }
}

@media (max-width: 575px) {
  .fv-title {
    top: -20px;
  }
}

@media (max-width: 768px) {
  .fv-title h1 {
    --fsz: 24;
    line-height: 1.3;
  }
}

.top-content {
  margin-top: 80px;
  margin-bottom: 120px;
  overflow: hidden;
}

.top-section-title {
  color: var(--themecolor);
  font-size: var(--font-size);
  --fsz: 20;
  font-weight: 700;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .top-section-title {
    margin-bottom: 30px;
  }
}

.top-section-title .top-section-title-en {
  display: block;
  font-size: var(--font-size);
  --fsz: 60;
  font-family: var(--font-montserrat);
  font-style: italic;
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .top-section-title .top-section-title-en {
    --fsz: 35;
  }
  .pageheader .top-section-title .top-section-title-en {
    --fsz: 30;
  }
}

.top-section-text {
  margin-bottom: 60px;
  line-height: calc(27 / 15);
  --fsz: 18;
}

@media (max-width: 991px) {
  .top-section-text {
    --fsz: 15;
  }
}

@media (max-width: 768px) {
  .top-section-text {
    margin-bottom: 20px;
  }
}

.common-btn {
  display: block;
  border-radius: 5px;
  background-color: var(--themecolor);
  color: #fff;
  width: 315px;
  text-align: center;
  padding: 15px 5px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .top-section-grid-text .common-btn {
    margin: auto;
  }
}

.bg-rectangle {
  position: relative;
}

.bg-rectangle:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-color: #e5f4ff;
  width: 100%;
  height: 370px;
  width: 100%;
  bottom: -80px;
  left: calc(50% - 300px);
}

@media (max-width: 768px) {
  .bg-rectangle:before {
    bottom: -30px;
  }
}

.top-activity.bg-rectangle:before {
  right: calc(50% - 300px);
  left: auto;
}

.top-about {
  margin-bottom: 170px;
}

@media (max-width: 768px) {
  .top-about {
    margin-bottom: 100px;
  }
}

.top-section-grid {
  display: flex;
  gap: 70px;
  align-items: flex-end;
}

.top-section-grid-text {
  max-width: 460px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .top-section-grid-text {
    width: 50%;
  }
  .top-section-grid-img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .top-section-grid {
    gap: 30px;
  }
  .top-section-grid-text {
    width: 100%;
    max-width: 100%;
  }
}

.top-news {
  margin-bottom: 130px;
}

@media (max-width: 768px) {
  .top-news {
    margin-bottom: 100px;
  }
}

.link-arrow {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.link-arrow::after {
  content: "";
  display: block;
  background-image: url(../img/common/right-arrow.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
}

.news-lists {
  margin-top: 25px;
  padding-left: 0;
}

.news-lists li {
  border-bottom: 1px dashed #acacac;
  display: flex;
  padding-left: 35px;
}

@media (min-width: 769px) {
  .news-lists li {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .news-lists li {
    flex-direction: column;
    padding-right: 20px;
    padding: 10px;
  }
  .archive-news-lists li {
    padding-right: 0;
  }
}

.news-lists li:first-child {
  border-top: 1px dashed #acacac;
}

.archive-news-lists li {
  padding-left: 0;
}

.top-newsArticle__date {
  color: var(--themecolor);
  flex-shrink: 0;
  width: 100px;
}

@media (max-width: 768px) {
  .top-newsArticle__date {
    margin-bottom: 0px;
  }
}

.news-lists li a {
  text-decoration: none;
  display: block;
  color: #000;
  line-height: 1.5;
  width: 100%;
  padding: 35px 0;
}

@media (max-width: 768px) {
  .news-lists li a {
    padding: 10px 0;
    padding-bottom: 0;
  }
}

.news-list-date {
  color: var(--themecolor);
  --fsz: 14;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
}

.news-lists.archive-news-lists a {
  position: relative;
  padding-right: 80px;
  width: 100%;
}

@media (max-width: 991px) {
  .news-lists.archive-news-lists a {
    padding-right: 0;
  }
}

.news-lists.archive-news-lists a::after {
  content: "";
  display: block;
  background-image: url(../img/common/right-arrow.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .news-lists.archive-news-lists a::after {
    content: none;
  }
}

.archive-news-lists {
  margin-bottom: 70px;
}

.top-activity {
  margin-bottom: 250px;
}

@media (max-width: 768px) {
  .top-activity {
    margin-bottom: 100px;
  }
}

.footer {
  background-color: var(--themecolor);
  padding-bottom: 30px;
  padding-top: 100px;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}

.footer-container {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.footer address {
  color: #fff;
  margin-bottom: 45px;
  line-height: calc(28 / 15);
}

.footer .common-btn {
  background-color: #fff;
  color: #000;
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

@media (max-width: 991px) {
  .footer .common-btn {
    margin: auto;
    border-radius: 23px;
    height: 46px;
  }
}

.footer .gnav-menu-item {
  font-size: var(--font-size);
  --fsz: 13;
}

.footer .gnav-menu-item a {
  color: #fff;
  text-align: left;
  padding-right: 8px;
  padding-left: 8px;
}

.footer .header-sub-btn a {
  background-color: #fff;
  color: var(--themecolor);
  transition: none;
}

.footer .header-sub-btn .header-sub-btn-class {
  color: #036300;
}

.footer .header-sub {
  margin-right: 0;
}

@media (max-width: 991px) {
  .footer .header-sub {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .footer .gnav-menu-item {
    width: 31%;
    border: none;
  }
  .footer .gnav-menu {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 575px) {
  .footer .gnav-menu-item {
    width: calc((100% - 10px) / 2);
  }
  .footer .gnav-menu {
    max-width: 300px;
  }
}

.top-sky-inner::after {
  content: "";
  display: block;
  background-image: url(../img/top/top-sky-bgv2.svg);
  background-repeat: no-repeat;
  width: 780px;
  height: 440px;
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: -250px;
}

.top-sky-inner {
  position: relative;
}

.top-sky-inner::before {
  content: "";
  display: block;
  background-image: url(../img/top/fv-bird.svg);
  background-repeat: no-repeat;
  width: 178px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: -1;
}

@media (max-width: 768px) {
  .top-sky-inner::before {
    width: 100px;
    height: 50px;
    background-size: cover;
    left: 20px;
  }
}

.top-sky .top-section-title-en {
  --fsz: 20;
  font-style: italic;
}

.top-sky .top-section-title {
  --fsz: 40;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .top-sky .top-section-title {
    --fsz: 24;
  }
}

.top-sky-text {
  --fsz: 18;
  margin-bottom: 35px;
  text-align: center;
}

@media (max-width: 991px) {
  .top-sky-text {
    --fsz: 15;
  }
}

.top-sky-img {
  max-width: 595px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .top-sky-img {
    margin-bottom: 30px;
  }
}

.copyright {
  --fsz: 13;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .copyright {
    margin-top: 30px;
  }
}

.pageheader {
  margin-bottom: 30px;
  position: relative;
}

.pageheader img {
  width: 100%;
}

.pageheader::after {
  content: "";
  display: block;
  background-image: url(../img/top/fv-bird.svg);
  background-repeat: no-repeat;
  width: 178px;
  height: 100px;
  position: absolute;
  right: 200px;
  top: 50px;
}

@media (max-width: 991px) {
  .pageheader::after {
    top: -14px;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .pageheader {
    margin-bottom: 15px;
  }
  .pageheader::after {
    right: 15px;
    width: 100px;
    height: 55px;
    background-size: cover;
  }
}

.pageheader .top-section-title {
  max-width: 1000px;
  margin: auto;
  padding-left: 15px;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  font-size: var(--font-size);
}

.breadcrumbs a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs span {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .breadcrumbs {
    --fsz: 14;
    flex-wrap: wrap;
  }
}

.breadcrumbs > *:not(:last-child)::after {
  content: "";
  display: block;
  background-image: url(../img/common/icon-breadcrumb.svg);
  width: 6px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-calendar {
  margin-bottom: 50px;
}

.sidemenu-title {
  padding-left: 0;
  color: #000;
  font-size: 17px;
  font-weight: bold;
}

.sidemenu-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--themecolor);
  margin-top: 15px;
}

.sub-sideMenu:before {
  content: none;
}

.sub-sideMenu ul {
  margin-left: 0;
  padding-left: 0;
}

.sub-sideMenu ul li {
  list-style: none;
}

.sub-sideMenu ul li > a {
  padding-left: 0;
}

.sub-sideMenu ul li > a::before {
  content: none;
}

.sub-sideMenu {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sub-sideMenu {
    margin-bottom: 0;
  }
}

h3.news-list-title {
  font-size: var(--font-size);
  --fsz: 18;
  font-weight: 600;
  margin-bottom: 15px;
}

.pagination {
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.pagination a {
  text-decoration: none;
  color: #000;
}

.pagination .current {
  border-bottom: 3px solid var(--themecolor);
}

.pagination .page-numbers {
  padding-right: 5px;
  padding-left: 5px;
  color: #000;
}

@media (min-width: 992px) {
  .download-list {
    scroll-margin-top: -30px;
  }
}

.bge-contents .sub-container:not(.column2) .mod-hl-01 {
  background-color: transparent;
  border: none;
  padding-left: 0 !important;
}

.bge-contents .sub-container:not(.column2) .member-list__item ul {
  padding-left: 0;
  margin-bottom: 0;
}

.bge-contents .sub-container:not(.column2)h2,
.title-underline {
  background-color: transparent;
  border-left: none;
}

.member-content [data-bgb="wysiwyg2"] .bgt-grid [data-bgt] > :last-child {
  margin-bottom: 0;
}

.mod-btn-03 {
  background-color: var(--themecolor);
  border: none;
  border-radius: 5px;
}

.mod-btn-03:hover {
  background-color: var(--themecolor);
  color: #fff;
}

.member-list__item .item-name {
  --fsz: 18;
}

.member-list__item .item-name:only-child {
  margin-bottom: 0;
}

.bge-contents .sub-container:not(.column2) .member-list__item {
  width: 100%;
}

.sub-container {
  max-width: 930px;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 80px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .sub-container {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

/* .sub-pgNav-4clm li {
  width: calc((100% - (22px * 4)) / 5);
} */

/* .bge-contents .sub-container:not(.column2) ul > .sub-pgNav-4clm li {
  margin-bottom: 22px;
} */

@media (max-width: 800px) {
  .sub-pgNav {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .sub-pgNav-4clm li {
    width: calc((100% - (10px)) / 2);
  }
}

.single-news-title::before {
  content: none;
}

.single-news-title {
  padding-left: 5px;
  font-size: var(--font-size);
  --fsz: 20;
}

@media (max-width: 768px) {
  .single-news-title {
    --fsz: 18;
  }
}

.news-sgTime {
  color: var(--themecolor);
}

.single-news-btn {
  margin: auto;
  text-align: center;
}

.l-main {
  width: 720px;
}

@media (max-width: 991px) {
  .l-sub {
    width: 100%;
  }
  .l-main {
    width: 100%;
    margin-bottom: 80px;
  }
}

.bge-contents .sub-container:not(.column2) .mod-hl-04:before {
  background-image: none;
}

.download-categoryNav .sub-pgNav-4clm {
  padding-left: 0;
  gap: 10px;
}

.download-categoryNav .sub-pgNav-4clm li {
  margin-left: 0;
  width: calc((100% - (10px * 3)) / 4);
}

@media (max-width: 768px) {
  .download-categoryNav .sub-pgNav-4clm li {
    width: calc((100% - (10px)) / 2);
  }
}

.download-categoryNav .sub-pgNav-4clm a {
  --fsz: 14;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 1000;
  box-shadow: 0px 5px 5px -5px #000;
}

@media (max-width: 991px) {
  #fixed-header {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
  }
}

.lectureClass-content--box .hl {
  width: auto;
}

.lectureClass-content--box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 768px) {
  .lectureClass-content--box {
    flex-direction: column;
    gap: 0;
  }
}

.lectureClass-content--box .list {
  width: 100%;
}

.lectureClass-content--box .list li:before {
  color: var(--themecolor);
}

.contact-formBtn:after {
  content: none;
}

.page-top {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  display: block;
  right: calc((100vw - 1200px) / 2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border-radius: 50%;
  border: 1px solid #fff;
}

@media (max-width: 1200px) {
  .page-top {
    right: 15px;
  }
}

@media (max-width: 991px) {
  .page-top {
    max-width: 50px;
    bottom: 30px;
  }
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

.sub-sideMenu h6 {
  background-color: var(--themecolor);
}

.mod-btn-01 {
  background-color: var(--themecolor);
  border: none;
  border-radius: 5px;
}

[data-bgt-button-kind="link"] .bgt-btn {
  background-color: var(--themecolor);
  color: #fff;
  border: none;
}

[data-bgt-button-kind="link"] .bgt-btn:hover,
[data-bgt-button-kind="link"] .bgt-btn:active,
[data-bgt-button-kind="link"] .bgt-btn:focus {
  background-color: var(--themecolor);
}

.memberCalendar-sgTitle:before {
  background-color: transparent;
}

.bge-contents ul {
  margin-bottom: 70px;
  margin-top: 0;
  margin-left: 0;
}

@media (max-width: 768px) {
  .bge-contents ul {
    margin-bottom: 30px;
  }
}

.sub-sideMenu ul {
  margin-bottom: 0;
}

.tel-link {
  text-decoration: none;
  color: #fff !important;
}

@media (min-width: 992px) {
  .tel-link {
    pointer-events: none;
  }
}

@media (min-width: 769px) {
  .column4 .column-report__item {
    width: 23%;
  }
}
/* 
.bgb-custom1 h4 {
  margin-top: 45px;
} */

.bgb-custom1:has(h4),
.bgb-wysiwyg:has(h4) {
  margin-top: 70px;
}
#post-detail .bgb-custom1:has(h4),
.bgb-wysiwyg:has(h4) {
  margin-top: 30px;
}

.bgb-title2:not(:first-child):has(h3) {
  margin-top: 120px !important;
}

#post-detail .bgb-title2:not(:first-child):has(h3) {
  margin-top: 30px !important;
}

@media (max-width: 768px) {
  .bgb-custom1:has(h4),
  .bgb-wysiwyg:has(h4),
  .bgb-title2:not(:first-child):has(h3) {
    margin-top: 50px !important;
  }
}

.bge-contents .lectureClass-content--box .list ul {
  padding-left: 0;
  margin-left: 0;
}

.lectureClass-content--box .list ul:not(:last-child) {
  margin: 0 0 70px 0;
}

@media (max-width: 768px) {
  .lectureClass-content--box .list ul:not(:last-child) {
    margin: 0 0 35px 0;
  }
}

.mod-form-hissuTag {
  --fsz: 12;
  font-weight: 500;
  margin-left: 10px;
}

.overview-content .bgb-table caption {
  display: none;
}

.overview-container {
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .report-content .bgb-image-text4 .bgt-grid {
    margin-bottom: 30px;
  }

  .overview-container {
    padding-bottom: 50px;
  }
}

.member-calendar {
  border-collapse: separate;
  border-spacing: 10px 0;
}

.member-calendar .sunday {
  color: #ff7070;
}

.member-calendar .satday {
  color: var(--themecolor);
}

.member-calendar .date {
  font-size: var(--font-size);
  --fsz: 23;
  font-weight: 600;
  flex-shrink: 0;
}

.member-calendar .day {
  border: none;
}

.member-calendar th {
  border-bottom: 2px solid;
}

.member-calendar .day th span,
.member-calendar .day th.sunday span {
  background-color: transparent;
  font-weight: 600;
}

.member-calendar .week td {
  padding-bottom: 10px;
}

.member-calendar .year,
.member-calendar .month span:first-child,
.member-calendar .month span:last-child {
  font-size: var(--font-size);
  --fsz: 23;
}

.member-calendar .year,
.member-calendar .year span,
.member-calendar .month span {
  margin-right: 0;
  color: var(--themecolor);
}

.member-calendar__head {
  align-items: center;
}

.member-calendar .month span:last-child {
  display: none;
}

.member-calendar .month span {
  display: flex;
  align-items: baseline;
}

.member-calendar .month span:first-child::before {
  content: ".";
  display: block;
  font-size: 23px;
}

.newsIsNew {
  position: static;
  display: inline-block;
  margin-right: 5px;
}

.member-calendar .day th span {
  padding-bottom: 0;
  margin-bottom: 0;
}

.bge-contents .sub-container:not(.column2) h2 {
  border-color: var(--themecolor);
}

.swiper {
  height: 100%;
}

.swiper .swiper-slide {
  aspect-ratio: 1440 / 670;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 768px) {
  .swiper .swiper-slide {
    aspect-ratio: 3 / 2;
  }
}

.swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  background: linear-gradient(to top, transparent 0%, transparent 85%, #fff 98%);
  pointer-events: none;
}

.swiper .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.swiper .swiper-slide .obj-contain {
  object-fit: contain;
  background-color: #fff;
}

.fixed-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

@media (min-width: 1920px) {
  .fixed-header-wrapper {
    max-width: 1920px;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  top: 30%;
  right: 5%;
  bottom: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

@media (min-width: 1700px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 27%;
  }
}

@media (max-width: 991px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    right: 15px;
    top: 36%;
    gap: 10px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

@media (max-width: 991px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--themecolor);
}

.swiper-fixed {
  position: absolute;
  bottom: 0;
  left: -50px;
  z-index: 10;
  width: 29%;
}

@media (min-width: 1700px) {
  .swiper-fixed {
    width: 28%;
  }
}

@media (max-width: 991px) {
  .swiper-fixed {
    width: 26%;
    left: -20px;
  }
}

@media (max-width: 768px) {
  .swiper-fixed {
    width: 34%;
  }
}

.bge_content h2,
#post-detail h2 {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  padding: 15px 10px 14px 22px;
  background-color: #e1e1e1;
  border-left: 7px solid #0041a8;
  margin-bottom: 25px;
}

.report-content .bgb-title2 + .bgb-wysiwyg {
  margin-top: 0;
}

@media (max-width: 768px) {
  .report-content .bgb-title2 + .bgb-wysiwyg {
    margin-top: 0 !important;
  }
  .report-content .bgt-grid p {
    text-align: center;
  }
}

.link-content .clearfix {
  display: flex;
  gap: 30px;
}

.link-content .clearfix::after {
  content: none;
}

.link-content .clearfix .link-list--box {
  padding-left: 0;
  float: none;
  width: calc((100% - 15px) / 2);
}

.link-content .clearfix .link-list--box:first-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .link-content .clearfix {
    flex-direction: column;
    gap: 0;
  }
  .link-content .clearfix .link-list--box {
    width: 100%;
    margin-bottom: 0;
  }
}

.link-content .link-list--box {
  padding-left: 0;
}

@media (max-width: 768px) {
  .bgb-text-float-image2 .bgt-image-container {
    margin-bottom: 15px;
  }
}

.kouken-title {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .kouken-title {
    margin-top: 50px;
  }
}
