@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #2A2D3C;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}
body main {
  margin-top: 107px;
}
@media (max-width: 1200px) {
  body main {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  body main {
    margin-top: 64px;
  }
}
body a {
  color: #2A2D3C;
  text-decoration: none;
  transition: 0.4s ease;
}
body a:hover {
  opacity: 0.5;
  transition: 0.4s ease;
}
body ul {
  list-style: none;
}
body .inner {
  width: 1048px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  body .inner {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  body .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 375px) {
  body .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
}
header .header-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
header .header-container .header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #eee;
  height: 107px;
  position: relative;
}
@media (max-width: 1280px) {
  header .header-container .header-content {
    height: 80px;
  }
}
@media (max-width: 768px) {
  header .header-container .header-content {
    height: 64px;
    align-items: center;
  }
}
header .header-container .header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 32px;
}
header .header-container .header-logo a img {
  width: auto;
  height: 48px;
}
@media (max-width: 1380px) {
  header .header-container .header-logo a img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  header .header-container .header-logo {
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
  }
  header .header-container .header-logo a img {
    height: 32px;
  }
}
header .header-container .right-box {
  display: flex;
  justify-content: end;
  height: 100%;
}
header .header-container .right-box .gnav-box {
  padding: 24px 32px;
}
@media (max-width: 768px) {
  header .header-container .right-box .gnav-box {
    padding: 0;
  }
}
header .header-container .right-box .gnav-box .utility-nav {
  display: block;
  margin-bottom: 12px;
}
header .header-container .right-box .gnav-box .utility-nav .utility-list {
  display: flex;
  justify-content: end;
  gap: 24px;
}
header .header-container .right-box .gnav-box .utility-nav .utility-list a {
  color: #00AA88;
  font-size: 14px;
}
@media (max-width: 1280px) {
  header .header-container .right-box .gnav-box .utility-nav {
    display: none;
  }
}
header .header-container .right-box .gnav-box .gnav .gnav-list {
  display: flex;
  align-items: center;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li {
  position: relative;
  cursor: pointer;
  padding: 8px 20px;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 34px;
  background: #d7d7d7;
  transform: translateY(-50%);
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li:first-child {
  padding-left: 0;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li:last-child {
  padding-right: 0;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li > a {
  display: block;
  word-break: keep-all;
  padding-bottom: 8px;
  border-bottom: #fff 1px solid;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li > a:hover {
  opacity: 1;
  color: #00AA88;
  border-bottom: #00AA88 1px solid;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li .submenu a {
  position: relative;
  display: block;
  padding: 16px 50px 16px 24px;
  font-size: 16px;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li .submenu a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 16px;
  right: 20px;
  top: calc(50% - 8px);
  background: url(../img/icon-gnav.svg) no-repeat;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li .submenu a:hover {
  opacity: 1;
  background: #00AA88;
  color: #fff;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li .submenu a:hover::after {
  background: url(../img/icon-gnav-hover.svg) no-repeat;
}
header .header-container .right-box .gnav-box .gnav .gnav-list > li:hover .submenu {
  display: block;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1280px) {
  header .header-container .right-box .gnav-box .gnav {
    display: none !important;
    transition: none;
  }
  header .header-container .right-box .gnav-box .gnav.active {
    position: fixed;
    display: block !important;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    overflow-y: auto;
    z-index: 10000;
    transition: left 0.3s ease;
  }
  header .header-container .right-box .gnav-box .gnav.initialized {
    transition: left 0.3s ease;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list {
    flex-wrap: wrap;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li {
    width: 100%;
    padding: 0;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li:last-child {
    margin-bottom: 0;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li::after {
    display: none;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li > a {
    display: block;
    padding: 20px 32px;
    border: 0;
    font-size: 18px;
    font-weight: bold;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li > a::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 24px;
    right: 27px;
    top: calc(50% - 12px);
    background: url(../img/icon-gnav.svg) no-repeat;
    background-size: 14px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li > a:hover {
    color: #2A2D3C;
    border: 0;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu {
    border-bottom: #ddd 1px solid;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a {
    position: relative;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a::after {
    content: "";
    position: absolute;
    width: 23px;
    height: 3px;
    background: #00AA88;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 23px;
    background: #00AA88;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu.active {
    background: #E7FDF8;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu.active > a {
    background: #E7FDF8;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu.active > a::before {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu.active .submenu {
    display: block;
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    background: #E7FDF8;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 0 24px;
    margin: 0;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li {
    margin-bottom: 12px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li:last-child {
    margin-bottom: 24px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li a {
    position: relative;
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    background: #fff;
    border: 1px solid #ddd;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 16px;
    right: 20px;
    top: calc(50% - 8px);
    background: url(../img/icon-gnav.svg) no-repeat;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li a:hover {
    color: #00AA88;
  }
}
@media (max-width: 768px) {
  header .header-container .right-box .gnav-box .gnav.active {
    top: 64px;
    height: calc(100vh - 136px);
  }
}
@media (max-width: 480px) {
  header .header-container .right-box .gnav-box .gnav .gnav-list > li > a {
    font-size: 15px;
    padding: 20px 24px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list > li > a::after {
    width: 10px;
    height: 16px;
    right: 26px;
    top: calc(50% - 8px);
    background: url(../img/icon-gnav.svg) no-repeat;
    background-size: 8px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a {
    font-size: 15px;
    padding: 20px 24px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a::before {
    width: 2px;
    height: 16px;
    right: 31px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu > a::after {
    width: 16px;
    height: 2px;
    right: 24px;
  }
  header .header-container .right-box .gnav-box .gnav .gnav-list .has-submenu .submenu li a {
    font-size: 14px;
  }
}
header .header-container .right-box .btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 100%;
  background: #00AA88;
  color: #fff;
}
header .header-container .right-box .btn-contact .contact-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 4px;
}
header .header-container .right-box .btn-contact .contact-text {
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1380px) {
  header .header-container .right-box .btn-contact {
    width: 120px;
  }
}
@media (max-width: 1280px) {
  header .header-container .right-box .btn-contact {
    display: none;
  }
}
header .header-container .hamburger {
  display: none;
}
@media (max-width: 1280px) {
  header .header-container .hamburger {
    display: block;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10004;
  }
  header .header-container .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #00AA88;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  header .header-container .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header .header-container .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  header .header-container .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
@media (max-width: 768px) {
  header .header-container .hamburger {
    display: none;
  }
}
header .header-container .mobile-contact {
  display: none;
}
header .header-container .mobile-contact .btn-contact .contact-icon {
  display: none;
}
@media (max-width: 1280px) {
  header .header-container .mobile-contact {
    display: block !important;
    opacity: 1;
    visibility: visible;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  header .header-container .mobile-contact .btn-contact {
    position: relative;
    color: #2A2D3C;
    width: 100%;
    padding: 20px 32px;
    text-align: left;
  }
  header .header-container .mobile-contact .btn-contact:hover {
    opacity: 1;
    color: #2A2D3C;
  }
  header .header-container .mobile-contact .btn-contact .contact-text {
    font-size: 18px;
  }
  header .header-container .mobile-contact .btn-contact::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 24px;
    right: 27px;
    top: calc(50% - 12px);
    background: url(../img/icon-gnav.svg) no-repeat;
    background-size: 14px;
  }
}
@media (max-width: 768px) {
  header .header-container .mobile-contact .btn-contact {
    display: block;
    background: #fff;
  }
}
@media (max-width: 480px) {
  header .header-container .mobile-contact .btn-contact {
    padding: 20px 24px;
  }
  header .header-container .mobile-contact .btn-contact::after {
    width: 10px;
    height: 16px;
    right: 26px;
    top: calc(50% - 8px);
    background: url(../img/icon-gnav.svg) no-repeat;
    background-size: 8px;
  }
  header .header-container .mobile-contact .btn-contact .contact-text {
    font-size: 15px;
  }
}

.bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: #fff;
    border-top: 1px solid #E0E0E0;
    z-index: 10001;
  }
  .bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .bottom-nav ul li {
    flex: 1;
    text-align: center;
    position: relative;
  }
  .bottom-nav ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: #E0E0E0;
  }
  .bottom-nav ul li a.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2A2D3C;
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    padding: 14px 4px;
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  .bottom-nav ul li a.nav-link img {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    filter: grayscale(0);
    transition: filter 0.2s ease;
  }
  .bottom-nav ul li a.nav-link span {
    line-height: 1.2;
  }
  .bottom-nav ul li a.nav-link .number {
    position: absolute;
    top: 8px;
    right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    color: #fff;
    font-size: 10px;
    padding: 4px;
    border-radius: 80px;
    background: #F00000;
  }
  .bottom-nav ul li a.nav-link:active {
    opacity: 1;
  }
  .bottom-nav ul li a.nav-link:hover {
    opacity: 1;
  }
  .bottom-nav ul li[data-page=seminar] a.nav-link img, .bottom-nav ul li[data-page=locations] a.nav-link img {
    filter: invert(56%) sepia(33%) saturate(1381%) hue-rotate(118deg) brightness(94%) contrast(101%);
  }
  .bottom-nav ul li.active a.nav-link {
    color: #fff;
    background: #00AA88;
  }
  .bottom-nav ul li.active a.nav-link img {
    filter: brightness(0) invert(1);
  }
  .bottom-nav ul li[data-page=seminar].active a.nav-link img, .bottom-nav ul li[data-page=locations].active a.nav-link img {
    filter: none;
  }
  .bottom-nav ul li.has-badge .badge {
    position: absolute;
    top: 8px;
    right: calc(50% - 20px);
    background: #E53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
}

footer {
  position: relative;
  color: #fff;
  background: #00AA88;
  padding: 56px 0 0;
}
@media (max-width: 768px) {
  footer {
    padding: 40px 0 0;
  }
}
footer .inner {
  position: relative;
}
footer .inner a {
  color: #fff;
  transition: opacity 0.3s ease;
}
footer .inner a:hover {
  opacity: 0.8;
}
footer .inner .footer-main .footer-logo {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 10;
}
footer .inner .footer-main .footer-logo img {
  display: block;
}
footer .inner .footer-main .footer-info .footer-organization .footer-title {
  margin-bottom: 16px;
}
footer .inner .footer-main .footer-info .footer-organization .footer-title img {
  max-width: 100%;
  height: auto;
  display: block;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact {
  display: flex;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact p {
  margin: 0;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact .footer-tel a {
  text-decoration: none;
  color: #fff;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact .footer-tel a:visited {
  color: #fff;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact .footer-tel a .tel-number {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact .footer-tel a:hover .tel-number {
  text-decoration: underline;
  opacity: 0.7;
}
footer .inner .footer-main .footer-info .footer-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 0 8px 12px;
  border-bottom: 1px solid #fff;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p a {
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p a:visited {
  color: #fff;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p a:hover {
  color: #e8fff8;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p::after {
  content: "";
  display: block;
  width: 12px;
  height: 14px;
  background: url("../img/icon-more-btn.svg") no-repeat center;
  flex-shrink: 0;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul {
  list-style: none;
  padding: 16px 12px 0;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul li {
  margin-bottom: 12px;
  line-height: 1;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul li a:visited {
  color: #fff;
}
footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul li a:hover {
  color: #e8fff8;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  footer .inner .footer-main .footer-info .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  footer .inner .footer-main {
    display: grid;
    grid-template-columns: 1fr;
  }
  footer .inner .footer-main .footer-info {
    display: contents;
  }
  footer .inner .footer-main .footer-info .footer-organization {
    grid-row: 1;
    line-height: 1.2;
  }
  footer .inner .footer-main .footer-info .footer-organization .footer-address .footer-contact {
    flex-direction: column;
  }
  footer .inner .footer-main .footer-info .footer-nav {
    grid-row: 3;
    border-top: 1px solid #fff;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column {
    border-bottom: 1px solid #fff;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    padding: 16px 12px;
    border: 0;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column p.active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul {
    display: none;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul.active {
    display: block;
    border-top: 1px solid #fff;
    padding: 24px 12px;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul.active li {
    margin-bottom: 24px;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul.active li:last-child {
    margin-bottom: 0;
  }
  footer .inner .footer-main .footer-info .footer-nav .footer-nav-column ul.active li a {
    font-size: 16px;
  }
  footer .inner .footer-main .footer-logo {
    position: static;
    grid-row: 2;
    padding: 32px 0;
    text-align: center;
  }
  footer .inner .footer-main .footer-logo img {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  footer .inner .footer-main .footer-info .footer-nav {
    grid-template-columns: 1fr;
  }
}
footer .inner .footer-bottom {
  background: #00AA88;
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  padding: 24px 0 24px;
  line-height: 1;
}
footer .inner .footer-bottom .footer-copyright {
  order: 2;
}
footer .inner .footer-bottom .footer-copyright small {
  font-size: 14px;
  color: #fff;
}
footer .inner .footer-bottom .footer-bottom-links {
  order: 1;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .inner .footer-bottom .footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
footer .inner .footer-bottom .footer-bottom-links a:hover {
  color: #e8fff8;
  opacity: 0.7;
}
@media (max-width: 768px) {
  footer .inner .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: none;
    margin-top: 24px;
    padding: 0;
    gap: 20px;
    text-align: center;
  }
  footer .inner .footer-bottom .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 1;
    padding: 0 12px;
  }
  footer .inner .footer-bottom .footer-bottom-links a {
    font-size: 15px;
  }
  footer .inner .footer-bottom .footer-copyright {
    order: 2;
    align-self: center;
    border-top: 1px solid #fff;
    padding: 24px 0;
    width: 100%;
    text-align: center;
    line-height: 1;
  }
  footer .inner .footer-bottom .footer-copyright small {
    font-size: 14px;
    font-weight: 500;
  }
}
footer .scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #fff;
  color: #333;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}
footer .scroll-to-top img {
  width: 48px;
  height: 48px;
  filter: invert(0);
}
footer .scroll-to-top:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  footer .scroll-to-top {
    position: fixed;
    bottom: 16px;
    right: 20px;
  }
}
@media (max-width: 320px) {
  footer .scroll-to-top {
    bottom: 120px;
  }
}

.search-section {
  padding: 80px 0;
  background: url("../img/bg-search-section.jpg") no-repeat center;
  background-size: cover;
}
.search-section .sp {
  display: none;
}
.search-section .hukidashi {
  position: relative;
  width: 472px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  background: #00AA88;
  border-radius: 80px;
  padding: 16px 48px;
  margin: 0 auto -32px;
  z-index: 1;
}
.search-section .hukidashi::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -12px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #00AA88;
}
.search-section .hukidashi + .search-banner {
  padding-top: 72px;
}
.search-section .search-banner {
  text-align: center;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
}
.search-section .search-banner .search-text {
  font-size: 24px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 32px;
}
.search-section .search-banner .search-text .sp-break {
  display: none;
}
.search-section .search-banner .search-text .text-black {
  color: #2A2D3C;
}
.search-section .search-banner .search-text .text-green {
  color: #00AA88;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}
.search-section .search-banner .search-text .search-number {
  font-size: 36px;
  font-weight: 500;
  color: #00AA88;
  line-height: 40px;
  font-family: "Roboto", sans-serif;
}
.search-section .search-banner .search-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.search-section .search-banner .search-buttons .search-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 70px;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #00AA88;
}
.search-section .search-banner .search-buttons .search-btn .btn-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  top: calc(50% - 16px);
  left: 24px;
  filter: brightness(0) invert(1);
}
.search-section .search-banner .search-buttons .search-btn:hover {
  background: #008F73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.search-section .search-banner .search-buttons .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  height: 68px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  background: #00AA88 url(../img/icon-next.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 860px) {
  .search-section .hukidashi + .search-banner .search-text {
    font-size: 18px;
  }
  .search-section .hukidashi + .search-banner .search-text br {
    display: none;
  }
}
@media (max-width: 768px) {
  .search-section {
    padding: 48px 0;
  }
  .search-section .hukidashi {
    width: calc(100% - 48px);
    font-size: 18px;
    text-align: center;
  }
  .search-section .hukidashi + .search-banner {
    padding-top: 56px;
  }
  .search-section .search-banner {
    padding: 24px;
    border-radius: 12px;
  }
  .search-section .search-banner .search-text {
    margin-bottom: 20px;
  }
  .search-section .search-banner .search-text .text-black,
  .search-section .search-banner .search-text .text-green {
    font-size: 18px;
  }
  .search-section .search-banner .search-text .search-number {
    font-size: 24px;
    line-height: 1;
  }
  .search-section .search-banner .search-buttons {
    gap: 16px;
    max-width: 100%;
  }
  .search-section .search-banner .search-buttons .search-btn {
    display: grid;
    flex-wrap: wrap;
    width: 100%;
    height: 112px;
    padding: 20px;
    font-size: 18px;
    border-radius: 8px;
    gap: 8px;
  }
  .search-section .search-banner .search-buttons .search-btn .btn-icon {
    position: inherit;
    left: 0;
    margin: 0 auto;
  }
  .search-section .search-banner .search-buttons .search-btn span {
    display: block;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .search-section .sp {
    display: block;
  }
  .search-section .search-banner .search-text {
    margin-bottom: 24px;
  }
  .search-section .search-banner .search-buttons .contact-btn {
    height: 96px;
  }
}
@media (max-width: 480px) {
  .search-section {
    padding: 40px 8px;
  }
  .search-section .inner {
    padding: 0;
  }
  .search-section .search-banner {
    padding: 16px;
  }
  .search-section .search-banner .search-text .text-black,
  .search-section .search-banner .search-text .text-green {
    font-size: 16px;
  }
  .search-section .search-banner .search-text .search-number {
    font-size: 20px;
  }
  .search-section .search-banner .search-text .sp-break {
    display: block;
  }
  .search-section .search-banner .search-buttons {
    gap: 8px;
  }
}
@media (max-width: 320px) {
  .search-section .search-banner .search-text {
    font-size: 15px;
  }
  .search-section .search-banner .search-text .text-black,
  .search-section .search-banner .search-text .text-green {
    font-size: 15px;
  }
  .search-section .search-banner .search-text .search-number {
    font-size: 18px;
  }
  .search-section .search-banner .search-buttons .search-btn {
    font-size: 16px;
    padding: 15px 10px;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
.modal.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 9998;
}
.modal .modal-content {
  position: relative;
  max-width: 1080px;
  max-height: 90vh;
  width: 100%;
  margin: 10vh auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  z-index: 9999;
  animation: slideDown 0.3s ease;
}
.modal .modal-content .modal-close {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  border: none;
  border-radius: 0 16px 0 16px;
  background: #00AA88;
  transition: all 0.3s ease;
  z-index: 9999;
}
.modal .modal-content .modal-close:hover {
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.modal .modal-content .modal-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 32px 24px;
}
.modal .modal-content .modal-header .modal-title {
  font-size: 32px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
}
.modal .modal-content .modal-body {
  padding: 0 32px 32px;
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}
.modal .modal-content .modal-body .venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.modal .modal-content .modal-body .venue-grid .venue-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid #00AA88;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #fff;
}
.modal .modal-content .modal-body .venue-grid .venue-card:hover {
  opacity: 1;
  background: #E7FDF8;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.15);
}
.modal .modal-content .modal-body .venue-grid .venue-card .venue-day {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 400;
  color: #00AA88;
  background: #D8EFEA;
}
.modal .modal-content .modal-body .venue-grid .venue-card .venue-day.prep {
  width: auto;
  min-width: 28px;
  padding: 0 10px;
  border-radius: 14px;
  font-size: 11px;
  white-space: nowrap;
}
.modal .modal-content .modal-body .venue-grid .venue-card .venue-name {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #2A2D3C;
}
.modal .modal-content .modal-body .venue-grid .venue-card .venue-arrow {
  width: 32px;
  height: 32px;
}
@media (max-width: 1200px) {
  .modal .modal-content {
    width: calc(100% - 48px);
    margin: 5vh auto;
  }
  .modal .modal-content .modal-header {
    padding: 40px 24px;
  }
  .modal .modal-content .modal-header .modal-title {
    font-size: 28px;
  }
  .modal .modal-content .modal-close {
    right: -15px;
  }
  .modal .modal-content .modal-body {
    padding: 0 40px 40px;
  }
  .modal .modal-content .modal-body .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .modal .modal-content {
    margin: 4vh auto;
  }
  .modal .modal-content .modal-close {
    width: 100%;
    top: auto;
    left: 0;
    right: auto;
    border-radius: 0 0 16px 16px;
    bottom: 0;
  }
  .modal .modal-content .modal-header {
    padding: 40px 24px 24px;
  }
  .modal .modal-content .modal-header .modal-title {
    font-size: 24px;
  }
  .modal .modal-content .modal-body {
    padding: 0 16px 88px;
  }
  .modal .modal-content .modal-body .venue-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .modal .modal-content .modal-header {
    padding: 32px 16px 16px;
  }
  .modal .modal-content .modal-body {
    padding: 0 16px 88px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   TOPページ
========================================== */
main.top .important-news-nav {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  background: #E20000;
  z-index: 999;
}
main.top .important-news-nav .inner {
  display: flex;
  gap: 12px;
}
main.top .important-news-nav .inner time {
  color: #fff;
  font-size: 15px;
}
main.top .important-news-nav .inner p {
  color: #fff;
  font-size: 15px;
}
main.top .mv-top {
  padding-top: 112px;
  height: 680px;
  background: url(../img/mv-top.jpg) no-repeat;
  background-size: cover;
}
main.top .mv-top h1 {
  color: #fff;
  font-size: 64px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
main.top .mv-top p {
  color: #fff;
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
main.top .mv-top .sp {
  display: none;
}
main.top .mv-top .youtube-fixed-banner {
  position: fixed;
  right: 0;
  bottom: 24px;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
main.top .mv-top .youtube-fixed-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 768px) {
  main.top .mv-top .youtube-fixed-banner {
    bottom: 80px;
  }
}
@media (max-width: 400px) {
  main.top .mv-top .youtube-fixed-banner {
    width: calc(100% - 16px);
  }
  main.top .mv-top .youtube-fixed-banner img {
    width: 100%;
  }
}
main.top .mv-top .youtube-banner-close {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
  z-index: 1;
  background: none;
}
main.top .mv-top .youtube-banner-close span {
  display: block;
}
main.top .mv-top .btn-youtube {
  display: block;
}
@media (max-width: 768px) {
  main.top .mv-top {
    padding-top: 0;
    height: 750px;
    background: url(../img/mv-top.jpg) no-repeat right 20% bottom;
    background-size: cover;
  }
  main.top .mv-top .inner {
    padding: 80px 40px 40px;
  }
  main.top .mv-top h1 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  main.top .mv-top p {
    font-size: 20px;
  }
  main.top .mv-top .sp {
    display: block;
  }
}
@media (max-width: 480px) {
  main.top .mv-top {
    background: url(../img/mv-top-sp.jpg) no-repeat left bottom;
    background-size: cover;
  }
}
main.top .search-section {
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 0, #E7FDF8 0, #E7FDF8 100%);
}
main.top .search-section .search-banner {
  margin-top: -208px;
}
main.top .title-box {
  display: flex;
  justify-content: space-between;
}
main.top .title-box .btn-box .btn-more {
  width: 240px;
}
@media (max-width: 860px) {
  main.top .title-box {
    justify-content: center;
  }
  main.top .title-box .btn-box .btn-more {
    display: none;
  }
}
main.top .title-h2-box {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  main.top .title-h2-box {
    text-align: center;
  }
}
main.top .title-h2-box::before {
  display: none;
}
main.top .title-h2-box .box-inner {
  padding: 0;
  background: none;
}
main.top .title-h2-box .box-inner h2 {
  font-size: 40px;
}
main.top .title-h2-box .box-inner h2 br {
  display: none;
}
main.top .title-h2-box .box-inner span {
  font-size: 20px;
}
@media (max-width: 768px) {
  main.top .title-h2-box .box-inner h2 {
    font-size: 32px;
  }
  main.top .title-h2-box .box-inner span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  main.top .title-h2-box .box-inner h2 {
    font-size: 28px;
  }
  main.top .title-h2-box .box-inner h2 br {
    display: block;
  }
  main.top .title-h2-box .box-inner span {
    font-size: 16px;
  }
}
main.top .section-morningseminar-slider {
  padding: 96px 0;
}
main.top .section-morningseminar-slider .sp {
  display: none;
}
@media (max-width: 1080px) {
  main.top .section-morningseminar-slider {
    padding: 96px 0 120px;
  }
}
@media (max-width: 860px) {
  main.top .section-morningseminar-slider {
    padding: 64px 0;
  }
  main.top .section-morningseminar-slider .sp {
    display: block;
  }
  main.top .section-morningseminar-slider .sp .btn-box {
    margin-top: 96px;
  }
  main.top .section-morningseminar-slider .sp .btn-box .btn-more {
    width: 240px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  main.top .section-morningseminar-slider {
    padding: 48px 0;
  }
  main.top .section-morningseminar-slider .sp .btn-box {
    margin-top: 80px;
  }
  main.top .section-morningseminar-slider .sp .btn-box .btn-more {
    width: 100%;
  }
}
main.top .section-top-first {
  background: url(../img/bg-section-top-first.jpg) no-repeat center right;
  background-size: contain;
}
@media (max-width: 1360px) {
  main.top .section-top-first {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 20%, rgb(255, 255, 255) 80%), url(../img/bg-section-top-first.jpg) no-repeat center right;
    background-size: contain;
  }
}
@media (max-width: 960px) {
  main.top .section-top-first {
    padding: 96px 0 320px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%), url(../img/bg-section-top-first.jpg) no-repeat center bottom;
    background-size: 100% auto;
  }
}
@media (max-width: 860px) {
  main.top .section-top-first {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%), url(../img/bg-section-top-first.jpg) no-repeat center bottom;
    background-size: 768px auto;
  }
}
@media (max-width: 480px) {
  main.top .section-top-first {
    padding: 48px 0 24px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%), url(../img/bg-section-top-first.jpg) no-repeat center bottom;
    background-size: 480px auto;
    text-align: left;
  }
  main.top .section-top-first p br {
    display: none;
  }
}
main.top .section-top-first .title-h2-box {
  margin-bottom: 24px;
}
main.top .section-top-first .btn-box {
  margin-top: 40px;
}
main.top .section-top-first .btn-box .btn-more {
  width: 240px;
}
@media (max-width: 860px) {
  main.top .section-top-first .btn-box .btn-more {
    margin: 136px auto 0;
  }
}
@media (max-width: 480px) {
  main.top .section-top-first .btn-box .btn-more {
    width: 100%;
  }
}
main.top .section-top-news {
  background: url(../img/bg-section-top-news.png) no-repeat left -12px bottom -24px;
}
main.top .section-top-news .flex-box {
  display: flex;
  gap: 48px;
}
main.top .section-top-news .flex-box .title-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1 0 auto;
  width: 240px;
}
main.top .section-top-news .flex-box .title-box .title-h2-box {
  display: flex;
  flex: 1;
}
main.top .section-top-news .flex-box .title-box .title-h2-box .box-inner {
  background: none;
}
main.top .section-top-news .flex-box .title-box .btn-more {
  margin-top: auto;
}
main.top .section-top-news .flex-box .info-tab-box {
  width: calc(100% - 288px);
}
main.top .section-top-news .flex-box > .btn-box {
  display: none;
}
main.top .section-top-news .info-tab-box .info-accordion {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 4px;
  margin-bottom: 0;
}
@media (max-width: 860px) {
  main.top .section-top-news .info-tab-box .info-accordion {
    display: flex;
    gap: 0;
  }
}
main.top .section-top-news .info-tab-box .info-accordion .info-accordion-item {
  display: contents;
}
main.top .section-top-news .info-tab-box .info-accordion .info-tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #A8CDC5;
  border-top: 2px solid #A8CDC5;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  grid-row: 1;
}
main.top .section-top-news .info-tab-box .info-accordion .info-tab-btn:hover {
  opacity: 0.8;
}
main.top .section-top-news .info-tab-box .info-accordion .info-tab-btn.active {
  color: #00AA88;
  background: #fff;
  border-top: 2px solid #00AA88;
}
main.top .section-top-news .info-tab-box .info-accordion .info-cat-box {
  display: none;
  grid-column: 1/-1;
  grid-row: 2;
}
main.top .section-top-news .info-tab-box .info-accordion .info-cat-box.active {
  display: block;
}
main.top .section-top-news .info-tab-box .info-cat-box {
  display: none;
}
main.top .section-top-news .info-tab-box .info-cat-box.active {
  display: block;
}
main.top .section-top-news .info-tab-box .info-cat-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li a {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: #2A2D3C;
  padding-right: 40px;
  background: url(../img/icon-gnav.svg) no-repeat center right 16px;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li a:hover {
  opacity: 0.7;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li a time {
  display: block;
  color: #00AA88;
  font-size: 18px;
  margin-bottom: 0;
}
main.top .section-top-news .info-tab-box .info-cat-box ul li a p {
  font-size: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 1080px) {
  main.top .section-top-news {
    background: url(../img/bg-section-top-news.png) no-repeat top -16px left -12px;
    background-size: 280px;
  }
  main.top .section-top-news .flex-box {
    flex-wrap: wrap;
  }
  main.top .section-top-news .flex-box .title-box {
    display: flex;
    flex-direction: inherit;
    align-items: center;
  }
  main.top .section-top-news .flex-box .title-box .title-h2-box {
    display: flex;
    flex: 1;
  }
  main.top .section-top-news .flex-box .title-box .title-h2-box .box-inner {
    background: none;
  }
  main.top .section-top-news .flex-box .title-box .btn-more {
    margin-top: auto;
  }
  main.top .section-top-news .flex-box .info-tab-box {
    width: 100%;
  }
}
@media (max-width: 860px) {
  main.top .section-top-news {
    background: url(../img/bg-section-top-news.png) no-repeat top -16px left -12px;
    background-size: 160px;
  }
  main.top .section-top-news .flex-box {
    gap: 0;
  }
  main.top .section-top-news .flex-box .title-box .title-h2-box {
    text-align: center;
    justify-content: center;
  }
  main.top .section-top-news .flex-box .title-box .btn-more {
    display: none;
  }
  main.top .section-top-news .flex-box > .btn-box {
    display: block;
    width: 100%;
    margin-top: 32px;
  }
  main.top .section-top-news .info-tab-box {
    border: #E8E8E8 1px solid;
  }
  main.top .section-top-news .info-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  main.top .section-top-news .info-accordion .info-accordion-item {
    display: block;
    border: 1px solid #00AA88;
    overflow: hidden;
    background: #fff;
  }
  main.top .section-top-news .info-accordion .info-tab-btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 64px !important;
    padding: 20px 24px;
    text-align: left;
    border: none;
    color: #2A2D3C !important;
    font-size: 18px !important;
    font-weight: bold;
    background: #fff !important;
    cursor: pointer;
  }
  main.top .section-top-news .info-accordion .info-tab-btn::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
    background: url(../img/icon-down-hover.svg) no-repeat center;
    transition: transform 0.3s ease;
  }
  main.top .section-top-news .info-accordion .info-tab-btn.active::after {
    transform: rotate(180deg);
    background: url(../img/icon-down-hover.svg) no-repeat center;
  }
  main.top .section-top-news .info-accordion .info-cat-box {
    display: none;
    padding: 0 24px 24px;
  }
  main.top .section-top-news .info-accordion .info-cat-box.active {
    display: block;
  }
  main.top .section-top-news .info-accordion .info-cat-box.active ul li:first-child {
    border-top: 1px solid #D9D9D9;
    padding-top: 24px;
  }
  main.top .section-top-news .info-accordion .info-cat-box.active ul li a {
    display: block;
    padding: 0;
    background: none;
  }
  main.top .section-top-news .info-accordion .info-cat-box.active ul li a::before {
    display: none;
  }
  main.top .section-top-news .info-accordion .info-cat-box.active ul li a time {
    display: block;
  }
}
main.top .section-top-about {
  position: relative;
  padding-top: 320px;
  overflow: hidden;
  background: #00AA88 url(../img/bg-section-top-about.jpg) no-repeat top left;
  background-size: contain;
}
main.top .section-top-about::before {
  position: absolute;
  content: "";
  width: 774px;
  height: 468px;
  top: 240px;
  right: -96px;
  background: url(../img/bg-hokkaido-top.png) no-repeat center;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 1080px) {
  main.top .section-top-about {
    padding-bottom: 96px;
  }
  main.top .section-top-about::before {
    width: 640px;
  }
}
@media (max-width: 860px) {
  main.top .section-top-about {
    padding-bottom: 64px;
    padding-top: 144px;
  }
  main.top .section-top-about::before {
    width: 320px;
    height: 240px;
    top: 80px;
    left: 0;
    right: auto;
  }
}
@media (max-width: 480px) {
  main.top .section-top-about {
    padding-bottom: 48px;
    background: #00AA88 url(../img/bg-section-top-about.jpg) no-repeat top center;
    background-size: auto 240px;
  }
  main.top .section-top-about::before {
    width: 280px;
    height: 160px;
    top: 80px;
    left: -24px;
    right: auto;
  }
  main.top .section-top-about > .inner {
    padding: 0 8px;
  }
}
main.top .section-top-about .about-box {
  position: relative;
  padding: 80px 0 80px 80px;
  background: #fff;
  border-radius: 32px 0 0 32px;
}
main.top .section-top-about .about-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background: #fff;
}
@media (max-width: 860px) {
  main.top .section-top-about .about-box {
    padding: 64px;
    border-radius: 16px;
  }
  main.top .section-top-about .about-box::before {
    display: none;
  }
}
@media (max-width: 640px) {
  main.top .section-top-about .about-box {
    padding: 48px 32px;
    border-radius: 12px;
  }
}
@media (max-width: 640px) {
  main.top .section-top-about .about-box {
    padding: 40px 32px;
  }
}
main.top .section-top-about .about-box .title-h2-box {
  position: relative;
  z-index: 1;
}
main.top .section-top-about .about-box > p {
  position: relative;
  z-index: 1;
}
main.top .section-top-about .about-box .flex-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 64px 0 40px;
}
main.top .section-top-about .about-box .flex-box .img-box {
  width: 400px;
  height: 256px;
}
main.top .section-top-about .about-box .flex-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
main.top .section-top-about .about-box .flex-box .txt-box {
  width: calc(100% - 448px);
}
main.top .section-top-about .about-box .flex-box .txt-box h3 {
  font-size: 28px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
@media (max-width: 480px) {
  main.top .section-top-about .about-box .flex-box .txt-box h3 {
    font-size: 24px;
    text-align: center;
  }
}
main.top .section-top-about .about-box .flex-box .txt-box p {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 24px;
}
@media (max-width: 480px) {
  main.top .section-top-about .about-box .flex-box .txt-box p {
    font-size: 16px;
  }
}
main.top .section-top-about .about-box .flex-box .txt-box .btn-more {
  width: 240px;
}
@media (max-width: 480px) {
  main.top .section-top-about .about-box .flex-box .txt-box .btn-more {
    width: 100%;
  }
}
@media (max-width: 860px) {
  main.top .section-top-about .about-box .flex-box {
    display: block;
  }
  main.top .section-top-about .about-box .flex-box .img-box {
    width: 100%;
    margin-bottom: 24px;
  }
  main.top .section-top-about .about-box .flex-box .txt-box {
    width: 100%;
  }
}
main.top .section-top-about .about-box .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
main.top .section-top-about .about-box .box .item {
  width: 100%;
}
main.top .section-top-about .about-box .box .item img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main.top .section-top-about .about-box .box .item h3 {
  position: relative;
  font-size: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
}
main.top .section-top-about .about-box .box .item h3::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 24px;
  right: 20px;
  background: url(../img/icon-gnav.svg) no-repeat;
  background-size: 8px;
}
main.top .section-top-about .about-box .box .item p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 1080px) {
  main.top .section-top-about .about-box .box {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  main.top .section-top-about .about-box .box .item {
    margin: 0 auto;
  }
  main.top .section-top-about .about-box .box .item img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  main.top .section-top-about .about-box .box {
    display: flex;
    flex-direction: column;
  }
  main.top .section-top-about .about-box .box .item img {
    height: 300px;
  }
  main.top .section-top-about .about-box .box .item .h3 {
    padding: 20px 0 16px;
  }
  main.top .section-top-about .about-box .box .item .h3::before {
    top: 24px;
  }
}
@media (max-width: 480px) {
  main.top .section-top-about .about-box .box .item img {
    height: 196px;
  }
}
main.top .section-top-about .about-box iframe {
  width: 100%;
  margin-top: 64px;
  border-radius: 16px;
}
@media (max-width: 480px) {
  main.top .section-top-about .about-box iframe {
    height: 200px;
    margin-top: 32px;
  }
}
main.top .section-top-about .slider-inner {
  margin-left: calc((100% - 1048px) / 2);
  margin-top: 96px;
}
@media (max-width: 1080px) {
  main.top .section-top-about .slider-inner {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  main.top .section-top-about .slider-inner {
    margin-top: 64px;
  }
}
main.top .section-top-about .interview-box {
  display: flex;
  gap: 64px;
}
main.top .section-top-about .interview-box .sp {
  display: none;
}
@media (max-width: 1080px) {
  main.top .section-top-about .interview-box .sp {
    display: block;
  }
  main.top .section-top-about .interview-box .sp .btn-more {
    width: 320px;
    margin: 80px auto 0;
  }
}
@media (max-width: 480px) {
  main.top .section-top-about .interview-box .sp .btn-more {
    width: 100%;
  }
}
main.top .section-top-about .interview-box .title-box {
  display: block;
  width: 380px;
}
main.top .section-top-about .interview-box .title-box .title-h2-box .box-inner h2 {
  color: #fff;
}
main.top .section-top-about .interview-box .title-box .title-h2-box .box-inner span {
  color: #fff;
}
@media (max-width: 1080px) {
  main.top .section-top-about .interview-box .title-box .title-h2-box {
    text-align: center;
  }
}
main.top .section-top-about .interview-box .title-box p {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 1080px) {
  main.top .section-top-about .interview-box .title-box p {
    display: none;
  }
}
main.top .section-top-about .interview-box .title-box .btn-more {
  width: 240px;
  margin-top: 128px;
}
@media (max-width: 1080px) {
  main.top .section-top-about .interview-box .title-box .btn-more {
    display: none;
  }
}
main.top .section-top-about .interview-box .btn-more:hover {
  border: #fff 1px solid;
}
main.top .section-top-about .interview-box .interview-slider {
  width: calc(100% - 444px);
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card {
  position: relative;
  width: 328px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card.active {
  border: 3px solid #00AA88;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.2);
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-image {
  display: block;
  max-width: 328px;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-info {
  position: absolute;
  display: block;
  width: 100%;
  min-width: 328px;
  bottom: 0;
  left: 0;
  padding: 64px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 170, 136, 0.7) 50%, rgba(0, 170, 136, 0.95) 100%);
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-info .interview-date {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 4px;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-info .interview-affiliation {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 8px;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-info .interview-name {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-info .interview-name .name-suffix {
  font-size: 20px;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots {
  position: absolute;
  left: -440px;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots .owl-dot.active {
  background-color: #fff;
}
main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots .owl-dot span {
  display: none;
}
@media (max-width: 1080px) {
  main.top .section-top-about .interview-box {
    display: block;
  }
  main.top .section-top-about .interview-box .title-box {
    width: 100%;
  }
  main.top .section-top-about .interview-box .interview-slider {
    width: 100%;
  }
  main.top .section-top-about .interview-box .interview-slider .interview-carousel .interview-card .interview-image {
    max-width: -webkit-fill-available;
  }
}
@media (max-width: 1080px) and (max-width: 1080px) {
  main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots {
    position: absolute;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    left: 0;
    bottom: -48px;
    gap: 12px;
  }
  main.top .section-top-about .interview-box .interview-slider .interview-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
}
main.top .section-top-event .title-h2-box {
  text-align: center;
  margin-bottom: 0;
}
main.top .section-top-event .btn-box {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  main.top .section-top-event .btn-box {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  main.top .section-top-event .btn-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.top .section-top-committee {
  padding: 104px 0 96px;
  background: #D8EFEA url(../img/bg-section-top-committee.jpg) no-repeat top right;
}
main.top .section-top-committee .title-h2-box {
  margin-bottom: 48px;
}
main.top .section-top-committee h3 {
  font-size: 28px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
main.top .section-top-committee p {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 24px;
}
main.top .section-top-committee .inner > .btn-more {
  width: 240px;
}
main.top .section-top-committee .committee-accordion {
  margin-top: 64px;
}
main.top .section-top-committee .committee-accordion-btn {
  display: none;
}
main.top .section-top-committee .committee-accordion-content[hidden] {
  display: block !important;
}
main.top .section-top-committee .btn-box {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1080px) {
  main.top .section-top-committee {
    padding: 96px 0;
    background: #D8EFEA url(../img/bg-section-top-committee.jpg) no-repeat top right;
    background-size: 500px;
  }
}
@media (max-width: 960px) {
  main.top .section-top-committee {
    padding: 80px 0;
  }
  main.top .section-top-committee .btn-box {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  main.top .section-top-committee {
    padding: 64px 0;
    background: #D8EFEA url(../img/bg-section-top-committee.jpg) no-repeat top 180px right;
    background-size: 100% auto;
  }
  main.top .section-top-committee .title-h2-box {
    margin-bottom: 300px;
  }
}
@media (max-width: 640px) {
  main.top .section-top-committee .committee-accordion {
    margin-top: 40px;
  }
  main.top .section-top-committee .committee-accordion-btn {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #2A2D3C;
    border: 0;
    font-size: 24px;
    font-weight: 500;
    font-family: "Kosugi Maru", sans-serif;
    padding-bottom: 16px;
    padding-right: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #00AA88;
    text-align: left;
    background: none;
  }
  main.top .section-top-committee .committee-accordion-btn::after {
    content: "";
    width: 32px;
    height: 32px;
    background: url(../img/icon-down-hover.svg) no-repeat center;
    background-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  main.top .section-top-committee .committee-accordion-btn.is-open::after {
    transform: rotate(180deg);
  }
  main.top .section-top-committee .committee-accordion-content {
    margin-top: 8px;
  }
  main.top .section-top-committee .committee-accordion-content[hidden] {
    display: none !important;
  }
  main.top .section-top-committee .btn-box {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  main.top .section-top-committee {
    padding: 48px 0;
    background: #D8EFEA url(../img/bg-section-top-committee.jpg) no-repeat top 140px right;
    background-size: 100% auto;
  }
  main.top .section-top-committee h3 {
    font-size: 24px;
  }
  main.top .section-top-committee p {
    font-size: 16px;
  }
  main.top .section-top-committee .inner > .btn-more {
    width: 100%;
  }
}
main.top .section-top-access {
  background: url(../img/bg-section-top-access.jpg) no-repeat left bottom;
  background-size: contain;
}
main.top .section-top-access .title-h2-box {
  text-align: center;
  margin-bottom: 48px;
}
main.top .section-top-access .sp {
  display: none;
}
main.top .section-top-access .locations-list .region-section {
  margin-bottom: 72px;
}
main.top .section-top-access .locations-list .region-section:last-child {
  margin-bottom: 0;
}
main.top .section-top-access .locations-list .region-section .region-title {
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  border-bottom: 2px solid #00AA88;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
main.top .section-top-access .locations-list .region-section .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #00AA88;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  top: calc(50% - 16px);
  right: 12px;
  border-radius: 40px;
  background: #00AA88 url("../img/icon-gnav-hover.svg") no-repeat center;
  background-size: 8px;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item .day-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #00AA88;
  background: #D8EFEA;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item .day-icon.prep {
  width: auto;
  min-width: 30px;
  padding: 0 10px;
  border-radius: 15px;
  font-size: 11px;
  white-space: nowrap;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item .location-name {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item:hover {
  opacity: 1;
  background: #00AA88;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item:hover .location-name {
  color: #fff;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item:hover .arrow-icon {
  color: #fff;
}
main.top .section-top-access .locations-list .region-section .locations-grid .location-item:hover::before {
  background: #fff url("../img/icon-gnav.svg") no-repeat center;
  background-size: 8px;
}
@media (max-width: 640px) {
  main.top .section-top-access .title-h2-box {
    margin-bottom: 32px;
  }
  main.top .section-top-access .sp {
    display: block;
  }
  main.top .section-top-access .pc {
    display: none;
  }
  main.top .section-top-access .locations-list .region-section {
    margin-bottom: 48px;
  }
  main.top .section-top-access .locations-list .region-section .region-title {
    cursor: pointer;
    position: relative;
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #00AA88;
  }
  main.top .section-top-access .locations-list .region-section .region-title::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    right: 16px;
    background: url(../img/icon-down-hover.svg) no-repeat center;
    background-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  main.top .section-top-access .locations-list .region-section .region-title.active::after {
    transform: rotate(180deg);
  }
  main.top .section-top-access .locations-list .region-section .locations-grid {
    display: none;
    gap: 16px;
  }
  main.top .section-top-access .locations-list .region-section .locations-grid.active {
    display: grid;
  }
}
main.top .section-top-magazine {
  padding: 80px 0;
  background: #00AA88 url(../img/bg-section-top-magazine.png) no-repeat center left -160px;
}
main.top .section-top-magazine .btn-more:hover {
  border: #fff 1px solid;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine {
    padding-bottom: 120px;
    background: #00AA88 url(../img/bg-section-top-magazine.png) no-repeat top -64px left 16px;
  }
}
@media (max-width: 860px) {
  main.top .section-top-magazine {
    padding: 64px 0;
    background: #00AA88 url(../img/bg-section-top-magazine.png) no-repeat top -40px left 16px;
    background-size: 400px;
  }
}
@media (max-width: 480px) {
  main.top .section-top-magazine {
    padding: 48px 0;
    background: #00AA88 url(../img/bg-section-top-magazine.png) no-repeat top -8px left -24px;
    background-size: 200px;
  }
}
main.top .section-top-magazine .sp {
  display: none;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .sp {
    display: block;
  }
  main.top .section-top-magazine .sp .btn-more {
    width: 320px;
    margin: 80px auto 0;
  }
}
@media (max-width: 480px) {
  main.top .section-top-magazine .sp .btn-more {
    width: 100%;
  }
}
main.top .section-top-magazine .slider-inner {
  position: relative;
  margin-left: calc((100% - 1048px) / 2);
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .slider-inner {
    margin: 0;
  }
}
main.top .section-top-magazine .magazine-box {
  display: flex;
  gap: 64px;
}
main.top .section-top-magazine .magazine-box .title-box {
  display: block;
  width: 380px;
}
main.top .section-top-magazine .magazine-box .title-box .title-h2-box .box-inner h2 {
  color: #fff;
}
main.top .section-top-magazine .magazine-box .title-box .title-h2-box .box-inner span {
  color: #fff;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .magazine-box .title-box .title-h2-box {
    text-align: center;
  }
}
main.top .section-top-magazine .magazine-box .title-box p {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .magazine-box .title-box p {
    display: none;
  }
}
main.top .section-top-magazine .magazine-box .title-box .btn-more {
  width: 240px;
  margin-top: 48px;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .magazine-box .title-box .btn-more {
    display: none;
  }
}
main.top .section-top-magazine .magazine-box .magazine-slider {
  width: calc(100% - 444px);
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .magazine-card {
  position: relative;
  margin: 0 auto;
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .magazine-card.active {
  border: 3px solid #00AA88;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.2);
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .magazine-card .magazine-image {
  display: block;
  max-width: 320px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots {
  position: absolute;
  left: -440px;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots .owl-dot.active {
  background-color: #fff;
}
main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots .owl-dot span {
  display: none;
}
@media (max-width: 1080px) {
  main.top .section-top-magazine .magazine-box {
    display: block;
  }
  main.top .section-top-magazine .magazine-box .title-box {
    width: 100%;
  }
  main.top .section-top-magazine .magazine-box .magazine-slider {
    width: 100%;
  }
  main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .magazine-card .magazine-image {
    max-width: -webkit-fill-available;
  }
}
@media (max-width: 1080px) and (max-width: 1080px) {
  main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots {
    position: absolute;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    left: 0;
    bottom: -48px;
    gap: 12px;
  }
  main.top .section-top-magazine .magazine-box .magazine-slider .magazine-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
}
main.top .section-top-instagram {
  padding: 96px 0;
  background: url(../img/bg-section-top-instagram.jpg) no-repeat center bottom;
  background-size: cover;
}
main.top .section-top-instagram .title-h2-box {
  text-align: center;
  margin-bottom: 48px;
}
main.top .section-top-instagram .btn-instagram {
  display: block;
  width: 336px;
  font-size: 18px;
  border-radius: 80px;
  border: #E3E3E3 1px solid;
  padding: 24px 40px 24px 80px;
  background: #fff url(../img/icon-instagram-top.png) no-repeat center left 24px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  main.top .section-top-instagram {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  main.top .section-top-instagram {
    padding: 48px 0;
  }
}

/* ==========================================
   下層ページ
========================================== */
.breadcrumb {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: auto;
}
.breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb .breadcrumb-list li {
  font-size: 15px;
  white-space: nowrap;
}
.breadcrumb .breadcrumb-list li:last-child {
  padding-right: 24px;
}
.breadcrumb .breadcrumb-list li a {
  color: #00AA88;
}
.breadcrumb .breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 12px;
  font-size: 15px;
}
@media (max-width: 480px) {
  .breadcrumb {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .breadcrumb .breadcrumb-list {
    gap: 8px;
  }
  .breadcrumb .breadcrumb-list li {
    flex-shrink: 0;
    font-size: 14px;
  }
  .breadcrumb .breadcrumb-list li:not(:last-child)::after {
    margin-left: 8px;
    font-size: 14px;
  }
  .breadcrumb .breadcrumb-list li a {
    font-size: 14px;
  }
}

.mv {
  position: relative;
  display: flex;
  align-items: center;
  height: 260px;
}
.mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 170, 136, 0.5);
  z-index: 2;
}
.mv img {
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.mv .inner {
  position: relative;
  z-index: 3;
}
.mv .inner h1 {
  color: #fff;
  font-size: 48px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 4px;
}
.mv .inner span {
  color: #fff;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}
.mv .inner .preparing-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 20px;
  border-radius: 20px;
  background: #D74100;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media (max-width: 1280px) {
  .mv {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .mv .inner h1 {
    font-size: 32px;
  }
  .mv .inner span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .mv {
    height: 160px;
  }
  .mv img {
    height: 160px;
  }
  .mv .inner h1 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .mv .inner span {
    font-size: 15px;
  }
}

.mv-page-nav {
  position: relative;
  background: #E7FDF8;
  z-index: 2;
  padding-bottom: 40px;
}
@media (max-width: 600px) {
  .mv-page-nav {
    padding-bottom: 0;
  }
}
.mv-page-nav .nav-box {
  position: relative;
  display: grid;
  gap: 24px;
  top: -24px;
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  grid-template-columns: repeat(3, 1fr);
}
.mv-page-nav .nav-box .link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 72px 24px 24px;
  background: #fff;
  border: 1px solid #00AA88;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}
.mv-page-nav .nav-box .link-btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 40px;
  top: calc(50% - 20px);
  right: 16px;
  background: #00AA88 url(../img/icon-down.svg) no-repeat center;
}
.mv-page-nav .nav-box .link-btn:hover {
  opacity: 1;
  background: #00AA88;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.mv-page-nav .nav-box .link-btn:hover::before {
  background: #fff url(../img/icon-down-hover.svg) no-repeat center;
}
.mv-page-nav .nav-box .another-btn::before {
  transform: rotate(-90deg);
}
@media (max-width: 1080px) {
  .mv-page-nav .nav-box {
    gap: 16px;
    padding: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-page-nav .nav-box .link-btn {
    padding: 16px 56px 16px 20px;
    font-size: 16px;
  }
  .mv-page-nav .nav-box .link-btn::before {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    right: 12px;
  }
}
@media (max-width: 768px) {
  .mv-page-nav .nav-box {
    gap: 12px;
    padding: 24px;
    grid-template-columns: repeat(1, 1fr);
    border-radius: 8px;
  }
}
.mv-page-nav .tab-box {
  position: relative;
  display: grid;
  gap: 12px;
  top: -24px;
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  grid-template-columns: repeat(5, 1fr);
}
.mv-page-nav .tab-box .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  color: #00AA88;
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
  border: #00AA88 1px solid;
  background: #fff;
  text-align: center;
}
.mv-page-nav .tab-box .current {
  color: #fff;
  background: #00AA88;
}
.mv-page-nav .event-category-nav {
  position: relative;
  display: grid;
  gap: 12px;
  top: -24px;
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  grid-template-columns: repeat(5, 1fr);
}
.mv-page-nav .event-category-nav .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  color: #00AA88;
  font-size: 16px;
  padding: 16px;
  border-radius: 8px;
  border: #00AA88 1px solid;
  background: #fff;
  text-align: center;
}
.mv-page-nav .event-category-nav .link-btn.current {
  color: #fff;
  background: #00AA88;
}
@media (max-width: 1080px) {
  .mv-page-nav .tab-box {
    padding: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
  .mv-page-nav .event-category-nav {
    padding: 32px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .mv-page-nav .tab-box {
    gap: 8px;
    padding: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-page-nav .tab-box .link-btn {
    font-size: 15px;
    padding: 18px;
  }
  .mv-page-nav .event-category-nav {
    gap: 8px;
    padding: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-page-nav .event-category-nav .link-btn {
    font-size: 15px;
    padding: 18px;
  }
}
@media (max-width: 375px) {
  .mv-page-nav .tab-box {
    padding: 16px;
  }
  .mv-page-nav .tab-box .link-btn {
    padding: 12px 8px;
    font-size: 14px;
  }
}

.section-contents,
.single-mv {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-contents,
  .single-mv {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .section-contents,
  .single-mv {
    padding: 48px 0;
  }
}
.section-contents .pt-0,
.single-mv .pt-0 {
  padding-top: 0 !important;
}
.section-contents.pt-0,
.single-mv.pt-0 {
  padding-top: 0 !important;
}
.section-contents .pb-0,
.single-mv .pb-0 {
  padding-bottom: 0 !important;
}
.section-contents .mt-40,
.single-mv .mt-40 {
  margin-top: 40px !important;
}
.section-contents .font-18,
.single-mv .font-18 {
  font-size: 18px;
}
@media (max-width: 480px) {
  .section-contents .font-18,
  .single-mv .font-18 {
    font-size: 16px;
  }
}
.section-contents.bg-green,
.single-mv.bg-green {
  background: #E7FDF8;
}
.section-contents.bg-green .title-h2-box .box-inner,
.single-mv.bg-green .title-h2-box .box-inner {
  background: #E7FDF8;
}
.section-contents .btn-more,
.single-mv .btn-more {
  position: relative;
  display: flex;
  align-items: center;
  height: 64px;
  color: #2A2D3C;
  font-size: 16px;
  border-radius: 8px;
  padding: 24px 64px 24px 32px;
  border: 1px solid #00AA88;
  background: #fff;
}
.section-contents .btn-more::before,
.single-mv .btn-more::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 12px;
  border-radius: 40px;
  background: #00AA88 url(../img/icon-gnav-hover.svg) no-repeat center;
}
.section-contents .btn-more:hover,
.single-mv .btn-more:hover {
  opacity: 1;
  background: #00AA88;
  color: #fff;
}
.section-contents .btn-more:hover::before,
.single-mv .btn-more:hover::before {
  background: #fff url(../img/icon-gnav.svg) no-repeat center;
}
@media (max-width: 768px) {
  .section-contents .btn-more,
  .single-mv .btn-more {
    width: 100%;
    padding: 24px 64px 24px 24px;
  }
}
.section-contents .btn-down::before,
.single-mv .btn-down::before {
  background: #00AA88 url(../img/icon-down.svg) no-repeat center;
}
.section-contents .btn-down:hover::before,
.single-mv .btn-down:hover::before {
  background: #fff url(../img/icon-down-hover.svg) no-repeat center;
}
.section-contents .title-h2-box,
.single-mv .title-h2-box {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}
.section-contents .title-h2-box::before,
.single-mv .title-h2-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 26px;
  left: 0;
  background: #00AA88;
  z-index: 1;
}
.section-contents .title-h2-box .box-inner,
.single-mv .title-h2-box .box-inner {
  position: relative;
  display: inline-block;
  padding: 0 24px;
  background: #fff;
  z-index: 2;
}
.section-contents .title-h2-box .box-inner h2,
.single-mv .title-h2-box .box-inner h2 {
  font-size: 40px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents .title-h2-box .box-inner span,
.single-mv .title-h2-box .box-inner span {
  color: #00AA88;
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 768px) {
  .section-contents .title-h2-box,
  .single-mv .title-h2-box {
    margin-bottom: 24px;
  }
  .section-contents .title-h2-box .box-inner h2,
  .single-mv .title-h2-box .box-inner h2 {
    font-size: 32px;
  }
  .section-contents .title-h2-box .box-inner span,
  .single-mv .title-h2-box .box-inner span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-contents .title-h2-box::before,
  .single-mv .title-h2-box::before {
    display: none;
  }
  .section-contents .title-h2-box .box-inner,
  .single-mv .title-h2-box .box-inner {
    padding: 0;
  }
  .section-contents .title-h2-box .box-inner h2,
  .single-mv .title-h2-box .box-inner h2 {
    font-size: 24px;
  }
  .section-contents .title-h2-box .box-inner span,
  .single-mv .title-h2-box .box-inner span {
    font-size: 16px;
  }
}
.section-contents .title-h3-box h2,
.section-contents .title-h3-box h3,
.single-mv .title-h3-box h2,
.single-mv .title-h3-box h3 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom: 1px solid #00AA88;
  padding-bottom: 24px;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-contents .title-h3-box h2,
  .section-contents .title-h3-box h3,
  .single-mv .title-h3-box h2,
  .single-mv .title-h3-box h3 {
    line-height: 1.2;
    font-size: 28px;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .section-contents .title-h3-box h2,
  .section-contents .title-h3-box h3,
  .single-mv .title-h3-box h2,
  .single-mv .title-h3-box h3 {
    line-height: 1.2;
    font-size: 22px;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
}
.section-contents .file,
.single-mv .file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px;
  border: #00AA88 1px solid;
  border-radius: 12px;
  margin: 32px 0;
  background: #fff;
}
.section-contents .file div,
.single-mv .file div {
  width: calc(100% - 264px);
}
.section-contents .file div a,
.single-mv .file div a {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.section-contents .file div time,
.single-mv .file div time {
  display: block;
  color: #00AA88;
  font-size: 16px;
}
.section-contents .file .download-button,
.single-mv .file .download-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 56px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #00AA88 url(../img/icon-download.svg) no-repeat right 20px center;
}
@media (max-width: 1080px) {
  .section-contents .file,
  .single-mv .file {
    padding: 24px;
  }
  .section-contents .file a,
  .single-mv .file a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section-contents .file div,
  .single-mv .file div {
    width: 100%;
  }
  .section-contents .file div a,
  .single-mv .file div a {
    font-size: 18px;
  }
  .section-contents .file .download-button,
  .single-mv .file .download-button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-contents .file,
  .single-mv .file {
    padding: 16px;
    margin: 24px 0;
  }
}
.section-contents.bg-green .item-txt-box,
.single-mv.bg-green .item-txt-box {
  background: #fff;
}
.section-contents .item-txt-box,
.single-mv .item-txt-box {
  display: flex;
  align-items: center;
  gap: 32px;
  border-radius: 16px;
  padding: 32px;
  background: #E7FDF8;
  margin-top: 24px;
}
.section-contents .item-txt-box .title,
.single-mv .item-txt-box .title {
  display: inline-block;
  word-break: keep-all;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 120px;
  background: #00AA88;
}
.section-contents .item-txt-box .txt strong,
.single-mv .item-txt-box .txt strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.section-contents .item-txt-box .txt p,
.single-mv .item-txt-box .txt p {
  font-size: 16px;
}
.section-contents .item-txt-box .txt p a,
.single-mv .item-txt-box .txt p a {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.section-contents .item-txt-box .txt p strong,
.single-mv .item-txt-box .txt p strong {
  display: inline-block;
  margin: 0;
  color: #00AA88;
  font-weight: bold;
}
.section-contents .item-txt-box .txt ol,
.single-mv .item-txt-box .txt ol {
  padding-left: 18px;
  margin-bottom: 8px;
}
.section-contents .item-txt-box .txt ol li,
.single-mv .item-txt-box .txt ol li {
  font-size: 16px;
  margin-bottom: 8px;
}
.section-contents .item-txt-box .txt ol li:last-child,
.single-mv .item-txt-box .txt ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-contents .item-txt-box,
  .single-mv .item-txt-box {
    display: block;
  }
  .section-contents .item-txt-box .title,
  .single-mv .item-txt-box .title {
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .section-contents .item-txt-box,
  .single-mv .item-txt-box {
    padding: 24px;
    margin-top: 24px;
  }
}
.section-contents .flow-box,
.single-mv .flow-box {
  padding-top: 80px;
}
.section-contents .flow-box .box,
.single-mv .flow-box .box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.section-contents .flow-box .box::before,
.single-mv .flow-box .box::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 40px;
  left: calc(50% - 32px);
  bottom: -56px;
  background: url(../img/arrow-down.svg) no-repeat center;
}
.section-contents .flow-box .box:last-child,
.single-mv .flow-box .box:last-child {
  margin-bottom: 0;
}
.section-contents .flow-box .box:last-child::before,
.single-mv .flow-box .box:last-child::before {
  display: none;
}
.section-contents .flow-box .box .step-box,
.single-mv .flow-box .box .step-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 160px;
  background: #00AA88;
  border-radius: 12px 0 0 12px;
}
.section-contents .flow-box .box .step-box .step,
.single-mv .flow-box .box .step-box .step {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
.section-contents .flow-box .box .step-box .number,
.single-mv .flow-box .box .step-box .number {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.section-contents .flow-box .box .txt-box,
.single-mv .flow-box .box .txt-box {
  width: calc(100% - 160px);
  padding: 48px;
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.section-contents .flow-box .box .txt-box .title,
.single-mv .flow-box .box .txt-box .title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #00AA88;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section-contents .flow-box .box .txt-box h5,
.single-mv .flow-box .box .txt-box h5 {
  font-size: 20px;
  border-left: 4px solid #00AA88;
  padding-left: 12px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .section-contents .flow-box .box .txt-box h5,
  .single-mv .flow-box .box .txt-box h5 {
    font-size: 18px;
  }
}
.section-contents .flow-box .box .txt-box h5 ~ h5,
.single-mv .flow-box .box .txt-box h5 ~ h5 {
  margin-top: 32px;
}
.section-contents .flow-box .box .txt-box > p,
.single-mv .flow-box .box .txt-box > p {
  font-size: 16px;
}
.section-contents .flow-box .box .txt-box > p a,
.single-mv .flow-box .box .txt-box > p a {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.section-contents .flow-box .box .txt-box > p strong,
.single-mv .flow-box .box .txt-box > p strong {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.section-contents .flow-box .box .txt-box small,
.single-mv .flow-box .box .txt-box small {
  display: block;
  font-size: 14px;
  margin-top: 12px;
}
.section-contents .flow-box .box .txt-box .btn-box,
.single-mv .flow-box .box .txt-box .btn-box {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.section-contents .flow-box .box .txt-box .btn-box a:hover,
.single-mv .flow-box .box .txt-box .btn-box a:hover {
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.section-contents .flow-box .box .txt-box .btn-box .btn-more,
.single-mv .flow-box .box .txt-box .btn-box .btn-more {
  width: calc(50% - 12px);
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
  height: auto;
}
.section-contents .flow-box .box .txt-box .btn-box .btn-more:hover,
.single-mv .flow-box .box .txt-box .btn-box .btn-more:hover {
  color: #2A2D3C;
  background: #fff;
}
.section-contents .flow-box .box .txt-box .btn-box .btn-more:hover::before,
.single-mv .flow-box .box .txt-box .btn-box .btn-more:hover::before {
  background: #00AA88 url(../img/icon-gnav-hover.svg) no-repeat center;
}
.section-contents .flow-box .box .txt-box .btn-box .icon-btn,
.single-mv .flow-box .box .txt-box .btn-box .icon-btn {
  padding: 20px 72px 20px 24px;
}
.section-contents .flow-box .box .txt-box .btn-box .icon-btn .icon,
.single-mv .flow-box .box .txt-box .btn-box .icon-btn .icon {
  padding-right: 24px;
}
.section-contents .flow-box .box .txt-box .btn-box .icon-btn .icon img,
.single-mv .flow-box .box .txt-box .btn-box .icon-btn .icon img {
  display: flex;
  align-items: center;
  width: 40px;
  height: auto;
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 480px) {
  .section-contents .flow-box .box .txt-box .btn-box .tel-btn,
  .single-mv .flow-box .box .txt-box .btn-box .tel-btn {
    pointer-events: auto;
    cursor: pointer;
  }
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn {
  width: calc(50% - 12px);
  padding: 24px;
  border: 1px solid #00AA88;
  border-radius: 8px;
  text-align: center;
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn .txt,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn .txt {
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn .number,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn .number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn .time,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn .time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-contents .flow-box .box .txt-box .btn-box .tel-btn .time span,
.single-mv .flow-box .box .txt-box .btn-box .tel-btn .time span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 27px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  border-radius: 32px;
  background: #00AA88;
}
@media (max-width: 1080px) {
  .section-contents .flow-box .box .step-box,
  .single-mv .flow-box .box .step-box {
    width: 100%;
    padding: 16px;
    border-radius: 12px 12px 0 0;
  }
  .section-contents .flow-box .box .step-box .step,
  .single-mv .flow-box .box .step-box .step {
    display: inline-block;
    font-size: 24px;
  }
  .section-contents .flow-box .box .step-box .number,
  .single-mv .flow-box .box .step-box .number {
    display: inline-block;
    font-size: 32px;
  }
  .section-contents .flow-box .box .txt-box,
  .single-mv .flow-box .box .txt-box {
    width: 100%;
    padding: 32px;
    border-radius: 0 0 12px 12px;
  }
  .section-contents .flow-box .box .txt-box .title,
  .single-mv .flow-box .box .txt-box .title {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 830px) {
  .section-contents .flow-box .box .txt-box .btn-box,
  .single-mv .flow-box .box .txt-box .btn-box {
    flex-wrap: wrap;
  }
  .section-contents .flow-box .box .txt-box .btn-box .btn-more,
  .section-contents .flow-box .box .txt-box .btn-box .tel-btn,
  .single-mv .flow-box .box .txt-box .btn-box .btn-more,
  .single-mv .flow-box .box .txt-box .btn-box .tel-btn {
    width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .section-contents .flow-box,
  .single-mv .flow-box {
    padding-top: 64px;
  }
}
@media (max-width: 480px) {
  .section-contents .flow-box,
  .single-mv .flow-box {
    padding-top: 40px;
  }
  .section-contents .flow-box .box,
  .single-mv .flow-box .box {
    margin-bottom: 40px;
  }
  .section-contents .flow-box .box::before,
  .single-mv .flow-box .box::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 24px;
    left: calc(50% - 20px);
    bottom: -32px;
    background: url(../img/arrow-down.svg) no-repeat center;
    background-size: 32px;
  }
  .section-contents .flow-box .box .step-box .step,
  .single-mv .flow-box .box .step-box .step {
    font-size: 20px;
  }
  .section-contents .flow-box .box .step-box .number,
  .single-mv .flow-box .box .step-box .number {
    font-size: 24px;
  }
  .section-contents .flow-box .box .txt-box,
  .single-mv .flow-box .box .txt-box {
    padding: 24px;
  }
  .section-contents .flow-box .box .txt-box .title,
  .single-mv .flow-box .box .txt-box .title {
    font-size: 18px;
  }
  .section-contents .flow-box .box .txt-box .btn-box .btn-more,
  .section-contents .flow-box .box .txt-box .btn-box .tel-btn,
  .single-mv .flow-box .box .txt-box .btn-box .btn-more,
  .single-mv .flow-box .box .txt-box .btn-box .tel-btn {
    width: 100%;
    font-size: 18px;
  }
}
.section-contents .pagination,
.single-mv .pagination {
  margin-top: 80px;
}
.section-contents .pagination .sp,
.single-mv .pagination .sp {
  display: none;
}
.section-contents .pagination .nav-links,
.single-mv .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.section-contents .pagination .nav-links .page,
.single-mv .pagination .nav-links .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  border: #CECECE 1px solid;
  background: #fff;
}
.section-contents .pagination .nav-links .dots,
.single-mv .pagination .nav-links .dots {
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.section-contents .pagination .nav-links .current,
.single-mv .pagination .nav-links .current {
  color: #fff;
  background: #00AA88;
  border: 0;
}
.section-contents .pagination .nav-links .prev,
.single-mv .pagination .nav-links .prev {
  background: #00AA88 url(../img/icon-prev.svg) no-repeat center;
  border: 0;
  margin-right: 16px;
}
.section-contents .pagination .nav-links .next,
.single-mv .pagination .nav-links .next {
  background: #00AA88 url(../img/icon-next.svg) no-repeat center;
  border: 0;
  margin-left: 16px;
}
.section-contents .pagination .nav-links .sp,
.single-mv .pagination .nav-links .sp {
  display: none;
}
@media (max-width: 768px) {
  .section-contents .pagination,
  .single-mv .pagination {
    position: relative;
    margin-top: 40px;
  }
  .section-contents .pagination .nav-links,
  .single-mv .pagination .nav-links {
    gap: 40px;
    height: 64px;
  }
  .section-contents .pagination .nav-links .pc,
  .single-mv .pagination .nav-links .pc {
    display: none;
  }
  .section-contents .pagination .nav-links .sp,
  .single-mv .pagination .nav-links .sp {
    display: flex;
  }
  .section-contents .pagination .nav-links .pages,
  .single-mv .pagination .nav-links .pages {
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 24px);
    display: flex;
    align-items: center;
    font-size: 24px;
  }
  .section-contents .pagination .nav-links .prev,
  .single-mv .pagination .nav-links .prev {
    position: absolute;
    left: 0;
  }
  .section-contents .pagination .nav-links .next,
  .single-mv .pagination .nav-links .next {
    position: absolute;
    right: 0;
  }
}
@media (max-width: 480px) {
  .section-contents .pagination .nav-links,
  .single-mv .pagination .nav-links {
    justify-content: space-between;
  }
}
.section-contents .flex-img-box,
.single-mv .flex-img-box {
  position: relative;
  min-height: 320px;
}
.section-contents .flex-img-box .title,
.single-mv .flex-img-box .title {
  position: relative;
  width: calc(100% - 400px);
  font-size: 40px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  padding-top: 64px;
  margin-bottom: 16px;
  z-index: 2;
}
.section-contents .flex-img-box .txt,
.single-mv .flex-img-box .txt {
  position: relative;
  width: calc(100% - 400px);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  z-index: 2;
  padding-bottom: 64px;
}
.section-contents .flex-img-box .img-box,
.single-mv .flex-img-box .img-box {
  position: absolute;
  top: 0;
  right: 0;
}
.section-contents .flex-img-box .img-box::before,
.single-mv .flex-img-box .img-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.section-contents .flex-img-box .img-box img,
.single-mv .flex-img-box .img-box img {
  width: 440px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 860px) {
  .section-contents .flex-img-box,
  .single-mv .flex-img-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
  }
  .section-contents .flex-img-box .title,
  .single-mv .flex-img-box .title {
    width: 100%;
    order: 1;
    padding-top: 0;
    margin-bottom: 0;
  }
  .section-contents .flex-img-box .txt,
  .single-mv .flex-img-box .txt {
    width: 100%;
    order: 3;
    text-align: left;
    padding-bottom: 0;
  }
  .section-contents .flex-img-box .img-box,
  .single-mv .flex-img-box .img-box {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    margin: 24px 0;
    order: 2;
  }
  .section-contents .flex-img-box .img-box::before,
  .single-mv .flex-img-box .img-box::before {
    display: none;
  }
  .section-contents .flex-img-box .img-box img,
  .single-mv .flex-img-box .img-box img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .section-contents .flex-img-box .title,
  .single-mv .flex-img-box .title {
    font-size: 32px;
  }
  .section-contents .flex-img-box .txt,
  .single-mv .flex-img-box .txt {
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .section-contents .flex-img-box .title,
  .single-mv .flex-img-box .title {
    font-size: 24px;
  }
  .section-contents .flex-img-box .txt,
  .single-mv .flex-img-box .txt {
    font-size: 16px;
  }
}
.section-contents .white-box,
.single-mv .white-box {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
}
.section-contents .white-box ol,
.single-mv .white-box ol {
  padding-left: 24px;
}
.section-contents .white-box ol li,
.single-mv .white-box ol li {
  font-size: 20px;
  margin-bottom: 12px;
}
.section-contents .white-box ol li:last-child,
.single-mv .white-box ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-contents .white-box ol li,
  .single-mv .white-box ol li {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-contents .white-box,
  .single-mv .white-box {
    padding: 24px;
  }
  .section-contents .white-box ol li,
  .single-mv .white-box ol li {
    font-size: 16px;
  }
}
.section-contents .green-box,
.single-mv .green-box {
  padding: 32px;
  border-radius: 16px;
  background: #E7FDF8;
}
.section-contents .green-box ol,
.single-mv .green-box ol {
  padding-left: 24px;
}
.section-contents .green-box ol li,
.single-mv .green-box ol li {
  font-size: 20px;
  margin-bottom: 12px;
}
.section-contents .green-box ol li:last-child,
.single-mv .green-box ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-contents .green-box ol li,
  .single-mv .green-box ol li {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-contents .green-box,
  .single-mv .green-box {
    padding: 24px;
  }
  .section-contents .green-box ol li,
  .single-mv .green-box ol li {
    font-size: 16px;
  }
}
.section-contents .navBox .box,
.single-mv .navBox .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.section-contents .navBox .box .item,
.single-mv .navBox .box .item {
  width: 100%;
}
.section-contents .navBox .box .item img,
.single-mv .navBox .box .item img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-contents .navBox .box .item h3,
.single-mv .navBox .box .item h3 {
  position: relative;
  font-size: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
}
.section-contents .navBox .box .item h3::before,
.single-mv .navBox .box .item h3::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 29px;
  right: 20px;
  background: url(../img/icon-gnav.svg) no-repeat;
  background-size: 8px;
}
.section-contents .navBox .box .item p,
.single-mv .navBox .box .item p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.section-contents .navBox .box div.item h3::before,
.single-mv .navBox .box div.item h3::before {
  display: none;
}
@media (max-width: 1080px) {
  .section-contents .navBox .box,
  .single-mv .navBox .box {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .section-contents .navBox .box .item,
  .single-mv .navBox .box .item {
    margin: 0 auto;
  }
  .section-contents .navBox .box .item img,
  .single-mv .navBox .box .item img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .section-contents .navBox .box,
  .single-mv .navBox .box {
    display: flex;
    flex-direction: column;
  }
  .section-contents .navBox .box .item img,
  .single-mv .navBox .box .item img {
    height: 300px;
  }
  .section-contents .navBox .box .item .h3,
  .single-mv .navBox .box .item .h3 {
    padding: 20px 0 16px;
  }
  .section-contents .navBox .box .item .h3::before,
  .single-mv .navBox .box .item .h3::before {
    top: 24px;
  }
}
@media (max-width: 480px) {
  .section-contents .navBox .box .item img,
  .single-mv .navBox .box .item img {
    height: 196px;
  }
}
.section-contents .table-box table,
.single-mv .table-box table {
  width: 100%;
}
.section-contents .table-box table thead tr th,
.single-mv .table-box table thead tr th {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #00AA88;
  padding: 16px;
}
.section-contents .table-box table tbody tr th, .section-contents .table-box table tbody tr td,
.single-mv .table-box table tbody tr th,
.single-mv .table-box table tbody tr td {
  font-size: 20px;
  font-weight: 500;
  padding: 16px;
}
.section-contents .table-box table tbody tr th,
.single-mv .table-box table tbody tr th {
  background: #C2EBE2;
}
.section-contents .table-box table tbody tr td,
.single-mv .table-box table tbody tr td {
  background: #fff;
}
.section-contents .table-box.white-bg table tbody th,
.single-mv .table-box.white-bg table tbody th {
  background: #C2EBE2;
}
.section-contents .table-box.white-bg table tbody td,
.single-mv .table-box.white-bg table tbody td {
  background: #E6F5F2;
}
@media (max-width: 768px) {
  .section-contents .table-box,
  .single-mv .table-box {
    overflow-x: scroll;
  }
  .section-contents .table-box table,
  .single-mv .table-box table {
    width: 100%;
    white-space: nowrap;
  }
  .section-contents .table-box table thead tr th,
  .single-mv .table-box table thead tr th {
    font-size: 16px;
    padding: 8px 12px;
  }
  .section-contents .table-box table tbody tr th, .section-contents .table-box table tbody tr td,
  .single-mv .table-box table tbody tr th,
  .single-mv .table-box table tbody tr td {
    font-size: 16px;
    padding: 8px 12px;
  }
}
.section-contents .flex-number-box .box,
.single-mv .flex-number-box .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}
.section-contents .flex-number-box .box:last-child,
.single-mv .flex-number-box .box:last-child {
  margin-bottom: 0;
}
.section-contents .flex-number-box .box:nth-child(even),
.single-mv .flex-number-box .box:nth-child(even) {
  flex-direction: row-reverse;
}
.section-contents .flex-number-box .box .img-box,
.single-mv .flex-number-box .box .img-box {
  position: relative;
  width: 412px;
  height: 268px;
}
.section-contents .flex-number-box .box .img-box::before,
.single-mv .flex-number-box .box .img-box::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 256px;
  top: 12px;
  left: 12px;
  background-image: linear-gradient(180deg, #FFFFFF, #00AA88);
  z-index: 1;
}
.section-contents .flex-number-box .box .img-box img,
.single-mv .flex-number-box .box .img-box img {
  position: relative;
  width: 400px;
  height: 256px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.section-contents .flex-number-box .box .txt-box,
.single-mv .flex-number-box .box .txt-box {
  width: calc(100% - 460px);
}
.section-contents .flex-number-box .box .txt-box .title-box,
.single-mv .flex-number-box .box .txt-box .title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-contents .flex-number-box .box .txt-box .title-box .number,
.single-mv .flex-number-box .box .txt-box .title-box .number {
  color: #00AA88;
  font-size: 88px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.section-contents .flex-number-box .box .txt-box .title-box h3,
.single-mv .flex-number-box .box .txt-box .title-box h3 {
  font-size: 32px;
}
.section-contents .flex-number-box .box .txt-box .title-box h3 span,
.single-mv .flex-number-box .box .txt-box .title-box h3 span {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
.section-contents .flex-number-box .box .txt-box p,
.single-mv .flex-number-box .box .txt-box p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-contents .flex-number-box .box .txt-box p:last-child,
.single-mv .flex-number-box .box .txt-box p:last-child {
  margin-bottom: 0;
}
.section-contents .flex-number-box .box .txt-box .btn-more,
.single-mv .flex-number-box .box .txt-box .btn-more {
  margin-top: 24px;
}
@media (max-width: 860px) {
  .section-contents .flex-number-box .box,
  .single-mv .flex-number-box .box {
    gap: 16px;
    margin-bottom: 48px;
  }
  .section-contents .flex-number-box .box:nth-child(even),
  .single-mv .flex-number-box .box:nth-child(even) {
    flex-direction: inherit;
  }
  .section-contents .flex-number-box .box .img-box,
  .single-mv .flex-number-box .box .img-box {
    width: 100%;
    height: 256px;
  }
  .section-contents .flex-number-box .box .img-box::before,
  .single-mv .flex-number-box .box .img-box::before {
    width: calc(100% - 12px);
    height: 244px;
  }
  .section-contents .flex-number-box .box .img-box img,
  .single-mv .flex-number-box .box .img-box img {
    width: calc(100% - 12px);
    height: 244px;
  }
  .section-contents .flex-number-box .box .txt-box,
  .single-mv .flex-number-box .box .txt-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-contents .flex-number-box .box .txt-box .title-box .number,
  .single-mv .flex-number-box .box .txt-box .title-box .number {
    font-size: 64px;
  }
  .section-contents .flex-number-box .box .txt-box .title-box h3,
  .single-mv .flex-number-box .box .txt-box .title-box h3 {
    font-size: 24px;
  }
  .section-contents .flex-number-box .box .txt-box .title-box h3 span,
  .single-mv .flex-number-box .box .txt-box .title-box h3 span {
    font-size: 16px;
  }
  .section-contents .flex-number-box .box .txt-box p,
  .single-mv .flex-number-box .box .txt-box p {
    margin-bottom: 16px;
  }
  .section-contents .flex-number-box .box .txt-box .btn-more,
  .single-mv .flex-number-box .box .txt-box .btn-more {
    margin-top: 20px;
  }
}
.section-contents.section-interview,
.single-mv.section-interview {
  overflow: hidden;
}
.section-contents.section-interview .interview-slider,
.single-mv.section-interview .interview-slider {
  width: 100%;
  margin-top: 48px;
  position: relative;
  overflow: visible;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-stage-outer,
.single-mv.section-interview .interview-slider .interview-carousel .owl-stage-outer {
  overflow: visible;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item {
  overflow: hidden;
  border-radius: 8px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card {
  position: relative;
  width: 328px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card.active,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card.active {
  border: 3px solid #00AA88;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.2);
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-image,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-image {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info {
  position: absolute;
  width: 100%;
  min-width: 328px;
  bottom: 0;
  left: 0;
  padding: 64px 24px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 170, 136, 0.7) 50%, rgba(0, 170, 136, 0.95) 100%);
  border-radius: 8px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-date,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-date {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 4px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-affiliation,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-affiliation {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 8px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-name,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-name {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-name .name-suffix,
.single-mv.section-interview .interview-slider .interview-carousel .owl-item .interview-card .interview-info .interview-name .name-suffix {
  font-size: 20px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-dots,
.single-mv.section-interview .interview-slider .interview-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot,
.single-mv.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(0, 170, 136, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot span,
.single-mv.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot span {
  display: none;
}
.section-contents.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot.active,
.single-mv.section-interview .interview-slider .interview-carousel .owl-dots .owl-dot.active {
  background-color: #00AA88;
}
.section-contents.section-interview .center-box .btn-more,
.single-mv.section-interview .center-box .btn-more {
  width: 300px;
  margin: 32px auto 0;
}
@media (max-width: 768px) {
  .section-contents.section-interview .interview-carousel .owl-item .interview-card,
  .single-mv.section-interview .interview-carousel .owl-item .interview-card {
    width: 100%;
    max-width: 328px;
  }
}
.section-contents.section-morningseminar-slider,
.single-mv.section-morningseminar-slider {
  padding: 96px 0 24px;
  overflow: hidden;
}
.section-contents.section-morningseminar-slider .morningseminar-slider,
.single-mv.section-morningseminar-slider .morningseminar-slider {
  width: 100%;
  margin-top: 24px;
  position: relative;
  overflow: visible;
}
@media (max-width: 1080px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider,
  .single-mv.section-morningseminar-slider .morningseminar-slider {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider,
  .single-mv.section-morningseminar-slider .morningseminar-slider {
    margin-top: 0;
  }
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-stage-outer,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-stage-outer {
  overflow: visible;
}
@media (max-width: 1080px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel,
  .single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel {
    display: flex;
    gap: 24px;
  }
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box {
  position: relative;
  display: block;
  border-radius: 8px;
  padding: 0 24px 0;
  background: #fff;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box {
  position: relative;
  top: 0;
  left: 0;
  height: 96px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .month,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .month {
  position: relative;
  top: 0;
  left: -8px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .month::before,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .month::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  top: 40px;
  right: -43px;
  transform: rotate(128deg);
  background: #2A2D3C;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .day,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .day {
  position: relative;
  top: 36px;
  left: -6px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .weak,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .date-box .weak {
  position: relative;
  top: 36px;
  color: #00AA88;
  font-size: 20px;
  font-weight: 400;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 96px;
  height: 96px;
  top: 0;
  right: 0;
  background: #00AA88;
  padding: 12px;
  border-radius: 0 8px 0 8px;
  text-align: center;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .city,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .city {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .district,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .district {
  display: block;
  color: #fff;
  font-size: 24px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .time,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-time-box .time {
  display: block;
  color: #fff;
  font-size: 14px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .img-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .img-box {
  width: 80px;
  height: 80px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .img-box img,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box {
  width: calc(100% - 96px);
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .post,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .name,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .name {
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .name span,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .act-box .txt-box .name span {
  font-size: 18px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .theme-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .theme-box {
  padding-top: 16px;
  margin-top: 16px;
  border-top: #DBDBDB 1px solid;
  margin-bottom: 24px;
  padding-bottom: 72px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .theme-box .post,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .theme-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-box,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-item .slider-box .tankai-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  background: #00AA88;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  text-align: center;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -40px;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots span,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots span {
  display: none;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 170, 136, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot.active,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot.active {
  background-color: #00AA88;
}
@media (max-width: 1080px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots,
  .single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots {
    position: absolute;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    left: 0;
    bottom: -48px;
    gap: 12px;
  }
  .section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot,
  .single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
  }
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav {
  display: flex;
  justify-content: end;
  gap: 24px;
  width: 1080px;
  margin: 40px auto 0;
}
@media (max-width: 1080px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav,
  .single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav {
    display: none;
  }
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-prev,
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-next,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-prev,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-next {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  border: #00AA88 1px solid;
  background: #fff;
  font-size: 0;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-prev,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-prev {
  background: #fff url(../img/icon-prev-green.svg) no-repeat center;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-next,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .owl-nav .owl-next {
  background: #fff url(../img/icon-next-green.svg) no-repeat center;
}
.section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .center-box .btn-more,
.single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .center-box .btn-more {
  width: 300px;
  margin: 32px auto 0;
}
@media (max-width: 768px) {
  .section-contents.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .morningseminar-carousel .owl-item .slider-box,
  .single-mv.section-morningseminar-slider .morningseminar-slider .morningseminar-carousel .morningseminar-carousel .owl-item .slider-box {
    width: 100%;
    max-width: 330px;
  }
}
.section-contents .event-calendar,
.single-mv .event-calendar {
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .section-contents .event-calendar,
  .single-mv .event-calendar {
    margin-bottom: 16px;
  }
}
.section-contents .event-calendar .sp,
.single-mv .event-calendar .sp {
  display: none;
}
@media (max-width: 480px) {
  .section-contents .event-calendar .sp,
  .single-mv .event-calendar .sp {
    display: block;
  }
  .section-contents .event-calendar .pc,
  .single-mv .event-calendar .pc {
    display: none;
  }
}
.section-contents .event-calendar .pc .fc-basic-view tbody .fc-row,
.single-mv .event-calendar .pc .fc-basic-view tbody .fc-row {
  min-height: 6em;
}
.section-contents .event-calendar .pc .eo-fullcalendar-reset.fc-unthemed .fc-today,
.single-mv .event-calendar .pc .eo-fullcalendar-reset.fc-unthemed .fc-today {
  background: #E7FDF8;
}
.section-contents .event-calendar .pc .eo-fullcalendar-reset.fc-unthemed th,
.single-mv .event-calendar .pc .eo-fullcalendar-reset.fc-unthemed th {
  background: #fff;
}
.section-contents .event-calendar .pc .fc-toolbar,
.single-mv .event-calendar .pc .fc-toolbar {
  margin-bottom: 24px;
}
.section-contents .event-calendar .pc .fc-toolbar h2,
.single-mv .event-calendar .pc .fc-toolbar h2 {
  font-size: 32px;
  font-weight: 500;
}
.section-contents .event-calendar .pc .fc-toolbar .fc-button-group button,
.single-mv .event-calendar .pc .fc-toolbar .fc-button-group button {
  height: 46px;
  color: #00AA88;
  border: #00AA88 1px solid;
  border-radius: 80px;
  background: #fff;
}
.section-contents .event-calendar .pc .fc-toolbar .fc-button-group button.fc-today-button,
.single-mv .event-calendar .pc .fc-toolbar .fc-button-group button.fc-today-button {
  padding: 0 24px;
  font-size: 18px;
}
.section-contents .event-calendar .pc .fc-month-view table table,
.single-mv .event-calendar .pc .fc-month-view table table {
  width: 100%;
}
.section-contents .event-calendar .pc .fc-month-view table table thead .fc-widget-header,
.single-mv .event-calendar .pc .fc-month-view table table thead .fc-widget-header {
  padding: 8px !important;
}
.section-contents .event-calendar .pc .fc-month-view table table thead .fc-sun,
.single-mv .event-calendar .pc .fc-month-view table table thead .fc-sun {
  color: #E11E1E;
}
.section-contents .event-calendar .pc .fc-month-view table table thead .fc-sat,
.single-mv .event-calendar .pc .fc-month-view table table thead .fc-sat {
  color: #0A56D2;
}
.section-contents .event-calendar .pc .fc-month-view table table thead .fc-day-number,
.single-mv .event-calendar .pc .fc-month-view table table thead .fc-day-number {
  padding: 4px 8px 0 !important;
  text-align: left;
  border-top: #ddd 1px solid;
  border-left: #ddd 1px solid;
  border-right: #ddd 1px solid;
}
.section-contents .event-calendar .pc .fc-month-view table table thead .fc-other-month,
.single-mv .event-calendar .pc .fc-month-view table table thead .fc-other-month {
  color: #AAABB1;
}
.section-contents .event-calendar .pc .fc-month-view table table tbody .fc-day-number,
.single-mv .event-calendar .pc .fc-month-view table table tbody .fc-day-number {
  min-height: auto;
}
.section-contents .event-calendar .pc .fc-month-view table table tbody td,
.single-mv .event-calendar .pc .fc-month-view table table tbody td {
  min-height: 80px;
}
.section-contents .event-calendar .pc .fc-month-view table table tbody .fc-content,
.single-mv .event-calendar .pc .fc-month-view table table tbody .fc-content {
  color: #fff;
}
.section-contents .event-calendar .sp .eo-fullcalendar-responsive .fc-toolbar h2,
.single-mv .event-calendar .sp .eo-fullcalendar-responsive .fc-toolbar h2 {
  font-size: 24px;
  margin: 32px 0 -56px;
}
.section-contents .event-calendar .sp .fc-day-grid-event .fc-time,
.single-mv .event-calendar .sp .fc-day-grid-event .fc-time {
  display: block;
}
.section-contents .event-calendar .sp .eo-fullcalendar-reset.fc-unthemed .fc-today,
.single-mv .event-calendar .sp .eo-fullcalendar-reset.fc-unthemed .fc-today {
  background: #E7FDF8;
}
.section-contents .event-calendar .sp,
.single-mv .event-calendar .sp {
  /*年月と月送り*/
}
.section-contents .event-calendar .sp .fc-toolbar,
.single-mv .event-calendar .sp .fc-toolbar {
  margin-bottom: 2em !important;
}
.section-contents .event-calendar .sp .fc-toolbar .fc-center,
.single-mv .event-calendar .sp .fc-toolbar .fc-center {
  display: inline-block !important;
}
.section-contents .event-calendar .sp .fc-toolbar .fc-today-button,
.single-mv .event-calendar .sp .fc-toolbar .fc-today-button {
  display: none;
}
.section-contents .event-calendar .sp .fc-toolbar .fc-next-button,
.section-contents .event-calendar .sp .fc-toolbar .fc-prev-button,
.single-mv .event-calendar .sp .fc-toolbar .fc-next-button,
.single-mv .event-calendar .sp .fc-toolbar .fc-prev-button {
  position: absolute;
  height: 46px;
  border: #00AA88 1px solid;
  border-radius: 80px;
  color: #00AA88;
  background: #fff;
}
@media (max-width: 480px) {
  .section-contents .event-calendar .sp .fc-toolbar .fc-next-button,
  .section-contents .event-calendar .sp .fc-toolbar .fc-prev-button,
  .single-mv .event-calendar .sp .fc-toolbar .fc-next-button,
  .single-mv .event-calendar .sp .fc-toolbar .fc-prev-button {
    height: 40px;
  }
}
.section-contents .event-calendar .sp .fc-toolbar .fc-next-button,
.single-mv .event-calendar .sp .fc-toolbar .fc-next-button {
  right: 24px;
}
.section-contents .event-calendar .sp .fc-toolbar .fc-prev-button,
.single-mv .event-calendar .sp .fc-toolbar .fc-prev-button {
  left: 24px;
}
.section-contents .event-calendar .sp,
.single-mv .event-calendar .sp {
  /*日付と曜日*/
}
.section-contents .event-calendar .sp .fc-day-number,
.single-mv .event-calendar .sp .fc-day-number {
  display: flex !important;
  justify-content: flex-end;
  padding: 0px 0px 0px 0px !important;
  border-bottom: none !important;
}
.section-contents .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-past, .section-contents .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-future,
.single-mv .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-past,
.single-mv .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-future {
  padding: 5px 15px 5px 0px !important; /*日付と曜日の上下左右余白*/
  width: 120px !important; /*日付と曜日の横幅*/
  text-align: right !important; /*日付と曜日右寄せ*/
}
.section-contents .event-calendar .sp .fc-list-header-right,
.single-mv .event-calendar .sp .fc-list-header-right {
  order: 1 !important;
  font-size: 14px; /*文字サイズ*/
}
.section-contents .event-calendar .sp .fc-list-header-right::after,
.single-mv .event-calendar .sp .fc-list-header-right::after {
  content: "日"; /*日付の数字横に追加*/
}
.section-contents .event-calendar .sp .fc-list-header-left,
.single-mv .event-calendar .sp .fc-list-header-left {
  order: 2 !important;
  font-size: 14px; /*文字サイズ*/
}
.section-contents .event-calendar .sp .fc-event-container::before,
.single-mv .event-calendar .sp .fc-event-container::before {
  padding: 0px 0px 0px 0px !important;
}
.section-contents .event-calendar .sp,
.single-mv .event-calendar .sp {
  /*当日の日付と曜日*/
}
.section-contents .event-calendar .sp .fc-day-number.fc-today,
.single-mv .event-calendar .sp .fc-day-number.fc-today {
  display: flex !important;
  justify-content: flex-end;
  padding: 0px 0px 0px 0px !important;
  border-bottom: none !important;
}
.section-contents .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-past, .section-contents .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-future, .section-contents .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-today,
.single-mv .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-past,
.single-mv .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-future,
.single-mv .event-calendar .sp .eo-fullcalendar .fc-day-number.fc-today {
  padding: 5px 15px 5px 0px !important;
  width: 120px !important;
  text-align: right !important;
}
.section-contents .event-calendar .sp .fc-widget-content .fc-today,
.single-mv .event-calendar .sp .fc-widget-content .fc-today {
  border-top: 1px solid #ccc !important;
}
.section-contents .event-calendar .sp,
.single-mv .event-calendar .sp {
  /*日付曜日とイベント名*/
}
.section-contents .event-calendar .sp .fc-content-skeleton,
.single-mv .event-calendar .sp .fc-content-skeleton {
  display: table !important;
}
.section-contents .event-calendar .sp .fc-content-skeleton thead,
.single-mv .event-calendar .sp .fc-content-skeleton thead {
  float: left !important;
}
.section-contents .event-calendar .sp .fc-content-skeleton tbody,
.single-mv .event-calendar .sp .fc-content-skeleton tbody {
  display: block;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left {
  position: relative;
  width: 14px;
  height: 24px;
  overflow: hidden;
  padding: 0 16px;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::before, .section-contents .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::after,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::before,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::after {
  position: absolute;
  width: 14px;
  height: 24px;
  bottom: 0;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::before,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::before {
  content: "（";
  left: 0;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::after,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-day-number .fc-list-header-left::after {
  content: "）";
  right: 0;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-sun .fc-list-header-left,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-sun .fc-list-header-left {
  color: #E11E1E !important;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-sat .fc-list-header-left,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-sat .fc-list-header-left {
  color: #0A56D2 !important;
}
.section-contents .event-calendar .sp .fc-content-skeleton .fc-content,
.single-mv .event-calendar .sp .fc-content-skeleton .fc-content {
  color: #fff;
}
.section-contents .calendar-collar,
.single-mv .calendar-collar {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-contents .calendar-collar,
  .single-mv .calendar-collar {
    display: block;
    margin-bottom: 32px;
  }
}
.section-contents .calendar-collar p,
.single-mv .calendar-collar p {
  position: relative;
  padding-left: 32px;
}
@media (max-width: 768px) {
  .section-contents .calendar-collar p,
  .single-mv .calendar-collar p {
    margin-top: 12px;
  }
}
.section-contents .calendar-collar p::before,
.single-mv .calendar-collar p::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  left: 0;
}
.section-contents .calendar-collar p.official::before,
.single-mv .calendar-collar p.official::before {
  background: #00AA88;
}
.section-contents .calendar-collar p.tankai::before,
.single-mv .calendar-collar p.tankai::before {
  background: #b6a500;
}
.section-contents .calendar-collar p.committee::before,
.single-mv .calendar-collar p.committee::before {
  background: #F39700;
}
.section-contents .calendar-collar p.other::before,
.single-mv .calendar-collar p.other::before {
  background: #D74100;
}
.section-contents .error-404,
.single-mv .error-404 {
  text-align: center;
}
.section-contents .error-404 .btn-box,
.single-mv .error-404 .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.single-mv {
  padding: 64px 0;
  background: #E7FDF8;
}
.single-mv .flex-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.single-mv .flex-box .img-box img {
  width: 320px;
  height: auto;
  border-radius: 12px;
}
.single-mv .flex-box .txt-box {
  width: calc(100% - 368px);
}
.single-mv .flex-box .txt-box img {
  display: none;
}
.single-mv .flex-tankai-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.single-mv .flex-tankai-box .tankai-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  padding: 16px;
  border-radius: 16px;
  background: #00AA88;
  text-align: center;
}
.single-mv .flex-tankai-box .tankai-box .sub {
  display: block;
  color: #fff;
  font-size: 28px;
}
.single-mv .flex-tankai-box .tankai-box .main {
  display: block;
  color: #fff;
  font-size: 48px;
}
.single-mv .flex-tankai-box .tankai-box .time {
  display: block;
  color: #fff;
  font-size: 24px;
}
.single-mv .flex-tankai-box .txt-box {
  width: calc(100% - 248px);
}
.single-mv .cat {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.single-mv time {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.single-mv h1 {
  font-size: 32px;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.single-mv .tag {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 200px;
  background: #00AA88;
}
.single-mv ul {
  margin-bottom: 24px;
}
.single-mv ul li {
  position: relative;
  display: flex;
  gap: 24px;
  padding-left: 20px;
  margin-bottom: 8px;
}
.single-mv ul li:last-child {
  margin-bottom: 0;
}
.single-mv ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  top: 7px;
  left: 0;
  background: #00AA88;
}
.single-mv ul li .title {
  min-width: 72px;
  font-size: 18px;
  font-weight: bold;
}
.single-mv ul li .txt {
  font-size: 18px;
}
.single-mv .lecturer-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  margin: 40px 0 32px;
}
.single-mv .lecturer-box .img-box img {
  width: 120px;
  height: 120px;
  border-radius: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-mv .lecturer-box .txt-box .title {
  color: #00AA88;
  font-size: 16px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.single-mv .lecturer-box .txt-box .name {
  font-size: 28px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  margin: 0 0 4px;
}
.single-mv .lecturer-box .txt-box .name .shi {
  font-size: 20px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.single-mv .lecturer-box .txt-box .txt {
  font-size: 16px;
}
.single-mv .btn-more {
  width: 320px;
}
.single-mv .act-box .post {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.single-mv .act-box .name {
  font-size: 28px;
  font-weight: bold;
  margin-top: 0;
}
.single-mv .act-box .name .shi {
  font-size: 20px;
  font-weight: bold;
}
.single-mv .act-box p {
  font-size: 18px;
  margin-top: 12px;
}
@media (max-width: 860px) {
  .single-mv .flex-box {
    flex-direction: column-reverse;
  }
  .single-mv .flex-box .img-box img {
    width: 100%;
  }
  .single-mv .flex-box .txt-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .single-mv .flex-tankai-box {
    gap: 24px;
  }
  .single-mv .flex-tankai-box .tankai-box {
    width: 100%;
    height: auto;
    padding: 12px;
    border-radius: 8px;
  }
  .single-mv .flex-tankai-box .tankai-box .sub {
    display: inline-block;
    font-size: 20px;
  }
  .single-mv .flex-tankai-box .tankai-box .main {
    display: inline-block;
    font-size: 20px;
  }
  .single-mv .flex-tankai-box .tankai-box .time {
    display: inline-block;
    font-size: 20px;
  }
  .single-mv .flex-tankai-box .txt-box {
    width: 100%;
  }
  .single-mv .lecturer-box {
    display: block;
    margin: 32px 0 24px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .single-mv {
    padding: 48px 0;
  }
  .single-mv .flex-box {
    gap: 32px;
  }
  .single-mv .flex-tankai-box {
    gap: 24px;
  }
  .single-mv .flex-tankai-box .tankai-box .sub {
    font-size: 16px;
  }
  .single-mv .flex-tankai-box .tankai-box .main {
    font-size: 16px;
  }
  .single-mv .flex-tankai-box .tankai-box .time {
    font-size: 16px;
  }
  .single-mv h1 {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }
  .single-mv .tag {
    font-size: 14px;
  }
  .single-mv ul li {
    gap: 16px;
  }
  .single-mv ul li .title {
    font-size: 16px;
  }
  .single-mv ul li .txt {
    font-size: 16px;
  }
  .single-mv .btn-more {
    width: 100%;
  }
}

.single-edit-box h2 {
  font-size: 24px;
  border-bottom: 1px solid #00AA88;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-bottom: 20px;
}
.single-edit-box h2:first-child {
  margin-top: 0;
}
@media (max-width: 480px) {
  .single-edit-box h2 {
    font-size: 20px;
    padding-bottom: 12px;
    margin-top: 48px;
    margin-bottom: 16px;
  }
}
.single-edit-box h3 {
  font-size: 20px;
  padding: 8px 16px;
  border-left: 4px solid #00AA88;
  margin: 40px 0 20px;
  background: #E7FDF8;
}
.single-edit-box h4 {
  font-size: 18px;
  padding: 4px 16px;
  border-left: 4px solid #00AA88;
  margin: 40px 0 20px;
}
.single-edit-box h5 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  margin: 24px 0 12px;
}
.single-edit-box h5::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 16px;
  top: 5px;
  left: 0;
  background: #00AA88;
}
.single-edit-box h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 24px 0 8px;
}
.single-edit-box img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
.single-edit-box ul {
  margin: 24px 0;
}
.single-edit-box ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 8px;
}
.single-edit-box ul li:last-child {
  margin-bottom: 0;
}
.single-edit-box ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  top: 6px;
  left: 0;
  background: #00AA88;
}
.single-edit-box ol {
  margin: 24px 0;
  padding-left: 18px;
}
.single-edit-box ol li {
  font-size: 16px;
  margin-bottom: 8px;
}
.single-edit-box ol li:last-child {
  margin-bottom: 0;
}
.single-edit-box p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.single-edit-box p a {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.single-edit-box p strong {
  font-weight: bold;
}
.single-edit-box blockquote {
  border-left: 4px solid #00AA88;
  margin: 40px 0 20px;
  background: #E7FDF8;
}
.single-edit-box blockquote p {
  position: relative;
  font-size: 16px;
  padding: 16px 16px 16px 40px;
}
.single-edit-box blockquote p::before {
  position: absolute;
  content: "”";
  color: #00AA88;
  font-size: 64px;
  font-family: "Roboto", sans-serif;
  width: 64px;
  height: 64px;
  top: 0;
  left: 8px;
}
.single-edit-box .wp-block-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px;
  border: #00AA88 1px solid;
  border-radius: 12px;
  margin: 24px 0;
}
.single-edit-box .wp-block-file a {
  width: calc(100% - 264px);
  font-size: 20px;
}
.single-edit-box .wp-block-file .wp-block-file__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 56px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #00AA88 url(../img/icon-download.svg) no-repeat right 20px center;
}
@media (max-width: 1080px) {
  .single-edit-box .wp-block-file {
    padding: 24px;
  }
  .single-edit-box .wp-block-file a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .single-edit-box .wp-block-file {
    padding: 16px;
  }
  .single-edit-box .wp-block-file a {
    width: 100%;
  }
  .single-edit-box .wp-block-file .wp-block-file__button {
    width: 100%;
  }
}
.single-edit-box p + .wp-block-file,
.single-edit-box img + .wp-block-file {
  margin-top: 0;
}
.single-edit-box iframe {
  width: 100%;
  height: 320px;
  margin: 40px 0;
}
@media (max-width: 480px) {
  .single-edit-box iframe {
    margin: 24px 0;
  }
}
.single-edit-box .venue-map-box iframe {
  margin: 0;
}
.single-edit-box .btn-box {
  margin-top: 16px;
}
.single-edit-box .btn-box .target-btn {
  position: relative;
  display: inline-block;
  color: #00AA88;
  font-size: 18px;
  font-weight: 500;
  padding: 24px 72px 24px 32px;
  border: #00AA88 1px solid;
  border-radius: 8px;
  background: #fff url(../img/icon-target.svg) no-repeat center right 24px;
}
@media (max-width: 480px) {
  .single-edit-box .btn-box .target-btn {
    width: 100%;
    font-size: 16px;
    padding: 20px 72px 20px 24px;
  }
}

.single-btn-box {
  margin-top: 64px;
  border-top: #D7D7D7 1px solid;
}
.single-btn-box .btn-more {
  width: 320px;
  margin: 40px auto 0;
}
@media (max-width: 480px) {
  .single-btn-box {
    margin-top: 40px;
  }
  .single-btn-box .btn-more {
    width: 100%;
    margin: 40px auto 0;
  }
}

.section-hokkaido .overview-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.section-hokkaido .overview-content .overview-image {
  flex: 0 0 400px;
}
.section-hokkaido .overview-content .overview-image img {
  width: 100%;
  border-radius: 12px;
}
.section-hokkaido .overview-content .overview-text {
  flex: 1;
  width: 100%;
}
.section-hokkaido .overview-content .overview-text .overview-title {
  font-size: 28px;
  font-weight: 600;
  color: #2A2D3C;
  margin-bottom: 16px;
}
.section-hokkaido .overview-content .overview-text .overview-description {
  font-size: 18px;
  line-height: 1.8;
  color: #2A2D3C;
  margin-bottom: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.section-hokkaido .overview-content .overview-text .btn-more {
  width: 320px;
}
.section-hokkaido .about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.section-hokkaido .about-links .about-card {
  width: 100%;
}
.section-hokkaido .about-links .about-card img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-hokkaido .about-links .about-card .about-card-title {
  position: relative;
  font-size: 20px;
  color: #2A2D3C;
  border-bottom: 1px solid #E0E0E0;
  padding: 24px 0 20px;
}
.section-hokkaido .about-links .about-card .about-card-title::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 29px;
  right: 20px;
  background: url(../img/icon-gnav.svg) no-repeat;
  background-size: 8px;
}
.section-hokkaido .about-links .about-card .about-card-text {
  font-size: 16px;
  color: #2A2D3C;
  margin-top: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 1080px) {
  .section-hokkaido .overview-content {
    gap: 40px;
  }
  .section-hokkaido .overview-content .overview-image {
    flex: 0 0 320px;
  }
  .section-hokkaido .overview-content .overview-text .overview-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .section-hokkaido .overview-content .overview-text .overview-description br {
    display: none;
  }
  .section-hokkaido .about-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .section-hokkaido .about-links .about-card {
    margin: 0 auto;
  }
  .section-hokkaido .about-links .about-card img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .section-hokkaido .overview-content {
    flex-direction: column;
    gap: 24px;
  }
  .section-hokkaido .overview-content .overview-image {
    flex: none;
    width: 100%;
  }
  .section-hokkaido .overview-content .overview-image img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .section-hokkaido .overview-content .overview-text .overview-title {
    font-size: 24px;
  }
  .section-hokkaido .overview-content .overview-text .overview-description {
    font-size: 15px;
  }
  .section-hokkaido .overview-content .overview-text .btn-more {
    width: 100%;
  }
  .section-hokkaido .about-links {
    display: flex;
    flex-direction: column;
  }
  .section-hokkaido .about-links .about-card img {
    height: 300px;
  }
  .section-hokkaido .about-links .about-card .about-card-content .about-card-title {
    padding: 20px 0 16px;
  }
  .section-hokkaido .about-links .about-card .about-card-content .about-card-title::before {
    top: 24px;
  }
}
@media (max-width: 480px) {
  .section-hokkaido .overview-content .overview-image img {
    height: 196px;
  }
  .section-hokkaido .about-links .about-card img {
    height: 196px;
  }
}

.section-about iframe {
  width: 100%;
  margin-bottom: 64px;
  border-radius: 16px;
}
@media (max-width: 860px) {
  .section-about iframe {
    margin: 32px 0 0;
  }
}
@media (max-width: 480px) {
  .section-about iframe {
    height: 200px;
  }
}
.section-about .navBox .box .item h3 {
  font-size: 24px;
  border-bottom: #00AA88 1px solid;
  text-align: center;
}
.section-about .navBox .box .item .btn-more {
  margin-top: 24px;
}
.section-about .flex-number-box .box:nth-child(odd) {
  flex-direction: row;
}
.section-about .flex-number-box .box .txt-box .btn-more {
  width: 300px;
}
@media (max-width: 480px) {
  .section-about .flex-number-box .box .txt-box .btn-more {
    width: 100%;
  }
}

.section-message .president-message {
  gap: 48px;
  display: flex;
  align-items: center;
}
.section-message .president-message .president-image {
  width: 300px;
  height: 340px;
}
.section-message .president-message .president-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.section-message .president-message .president-message-content {
  width: calc(100% - 348px);
}
.section-message .president-message .president-message-content .president-header {
  border-bottom: 1px solid #00AA88;
  padding-bottom: 20px;
  margin-bottom: 32px;
}
.section-message .president-message .president-message-content .president-header span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #00AA88;
  margin-bottom: 12px;
}
.section-message .president-message .president-message-content .president-header h2 {
  font-size: 32px;
  font-weight: 600;
}
.section-message .president-message .president-message-content .president-image {
  display: none;
}
.section-message .president-message .president-message-content .president-signature {
  margin-top: 32px;
}
.section-message .president-message .president-message-content .president-signature .president-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.section-message .president-message .president-message-content .president-signature .president-name {
  font-size: 28px;
  font-weight: bold;
}
.section-message .president-text {
  margin-top: 64px;
}
.section-message .president-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}
.section-message .president-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-message .president-message {
    flex-wrap: wrap;
    text-align: center;
  }
  .section-message .president-message > .president-image {
    display: none;
  }
  .section-message .president-message .president-image {
    width: 100%;
    height: 340px;
  }
  .section-message .president-message .president-message-content {
    width: 100%;
  }
  .section-message .president-message .president-message-content .president-image {
    display: block;
    margin: 20px 0;
  }
  .section-message .president-text {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .section-message .president-message .president-image {
    height: 196px;
  }
  .section-message .president-message .president-message-content .president-header span {
    font-size: 16px;
  }
  .section-message .president-message .president-message-content .president-header h2 {
    font-size: 24px;
  }
  .section-message .president-message .president-message-content .president-signature .president-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .section-message .president-message .president-message-content .president-signature .president-name {
    font-size: 24px;
  }
  .section-message .president-text {
    margin-top: 24px;
  }
  .section-message .president-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.section-history {
  padding: 120px 0;
  background: url(../img/bg-hokkaido.png) no-repeat center;
  text-align: center;
}
@media (max-width: 1080px) {
  .section-history {
    background: url(../img/bg-hokkaido.png) no-repeat center left 10%;
    background-size: 120%;
  }
}
@media (max-width: 768px) {
  .section-history {
    background: url(../img/bg-hokkaido.png) no-repeat center left 10%;
    background-size: 160%;
  }
}
.section-history h2 {
  font-size: 40px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 32px;
}
.section-history p {
  font-size: 20px;
  margin-top: 24px;
}
@media (max-width: 1080px) {
  .section-history {
    padding: 80px 0;
  }
  .section-history p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-history {
    padding: 64px 0;
  }
  .section-history h2 {
    font-size: 32px;
  }
  .section-history p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-history {
    padding: 48px 0;
  }
  .section-history h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .section-history p {
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
  }
}

.history-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 10;
}
.history-gallery .history-gallery__track {
  display: flex;
  gap: 32px;
  width: -moz-max-content;
  width: max-content;
  animation: history-gallery-flow 25s linear infinite;
  will-change: transform;
}
@media (max-width: 768px) {
  .history-gallery .history-gallery__track {
    gap: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .history-gallery .history-gallery__track {
    animation-duration: 90s;
    animation-timing-function: linear;
  }
}
.history-gallery .history-gallery__item {
  flex: 0 0 clamp(260px, 23vw, 328px);
  border-radius: 12px;
  overflow: hidden;
}
.history-gallery .history-gallery__item img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .history-gallery .history-gallery__item img {
    height: 160px;
  }
}

@keyframes history-gallery-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section-history-timeline {
  background: linear-gradient(180deg, #E7FDF8 0%, #FFFFFF 100%);
  margin-top: -40px;
}
.section-history-timeline .timeline {
  position: relative;
}
@media (max-width: 768px) {
  .section-history-timeline .timeline {
    margin-top: 24px;
  }
}
.section-history-timeline .timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  height: calc(100% - 64px);
  top: 24px;
  bottom: 20px;
  left: 14px;
  background: #00AA88;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-history-timeline .timeline::before {
    width: 2px;
    height: calc(100% - 80px);
    top: 20px;
    left: 7px;
  }
}
.section-history-timeline .timeline .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  z-index: 2;
}
@media (max-width: 1080px) {
  .section-history-timeline .timeline .timeline-item {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .section-history-timeline .timeline .timeline-item {
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 4px;
  }
}
.section-history-timeline .timeline .timeline-item::before {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: #00AA88;
}
@media (max-width: 768px) {
  .section-history-timeline .timeline .timeline-item::before {
    top: 16px;
    width: 16px;
    height: 16px;
  }
}
.section-history-timeline .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.section-history-timeline .timeline .timeline-item .timeline-year {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 460px;
  font-size: 56px;
  font-weight: 500;
  color: #00AA88;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  padding-left: 48px;
}
.section-history-timeline .timeline .timeline-item .timeline-year .timeline-year-western {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.section-history-timeline .timeline .timeline-item .timeline-year .timeline-era {
  font-size: 36px;
  font-weight: 500;
  color: #00AA88;
}
@media (max-width: 1080px) {
  .section-history-timeline .timeline .timeline-item .timeline-year {
    width: 320px;
    font-size: 40px;
  }
  .section-history-timeline .timeline .timeline-item .timeline-year .timeline-era {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-history-timeline .timeline .timeline-item .timeline-year {
    width: 100%;
    font-size: 36px;
    padding-left: 24px;
  }
  .section-history-timeline .timeline .timeline-item .timeline-year .timeline-era {
    font-size: 20px;
  }
}
.section-history-timeline .timeline .timeline-body {
  width: calc(100% - 420px);
}
@media (max-width: 1080px) {
  .section-history-timeline .timeline .timeline-body {
    width: calc(100% - 332px);
  }
}
@media (max-width: 768px) {
  .section-history-timeline .timeline .timeline-body {
    width: 100%;
    padding-left: 24px;
  }
}
.section-history-timeline .timeline .timeline-body .timeline-text {
  font-size: 20px;
  font-weight: 500;
  word-wrap: break-word;
}
@media (max-width: 1080px) {
  .section-history-timeline .timeline .timeline-body .timeline-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-history-timeline .timeline .timeline-body .timeline-text {
    font-size: 16px;
  }
}

.bg-history {
  padding: 120px 0 200px;
  background: url("../img/bg-history.jpg") no-repeat center top;
  background-size: cover;
}
@media (max-width: 768px) {
  .bg-history {
    padding: 104px 0 160px;
  }
}
@media (max-width: 480px) {
  .bg-history {
    padding: 80px 0 120px;
  }
}
.bg-history p {
  font-size: 64px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  text-align: center;
}
.bg-history p br {
  display: none;
}
@media (max-width: 1080px) {
  .bg-history p {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .bg-history p br {
    display: block;
  }
}
@media (max-width: 768px) {
  .bg-history p {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .bg-history p {
    font-size: 28px;
  }
}

.section-access .map {
  margin-bottom: 96px;
}
.section-access .map img {
  width: 100%;
  height: auto;
}
.section-access .map .sp {
  display: none;
}
.section-access .locations-list .region-section {
  margin-bottom: 72px;
}
.section-access .locations-list .region-section:last-child {
  margin-bottom: 0;
}
.section-access .locations-list .region-section .region-title {
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  border-bottom: 2px solid #00AA88;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section-access .locations-list .region-section .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.section-access .locations-list .region-section .locations-grid .location-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #00AA88;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
}
.section-access .locations-list .region-section .locations-grid .location-item::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  top: calc(50% - 16px);
  right: 12px;
  border-radius: 40px;
  background: #00AA88 url("../img/icon-gnav-hover.svg") no-repeat center;
  background-size: 8px;
}
.section-access .locations-list .region-section .locations-grid .location-item .day-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #00AA88;
  background: #D8EFEA;
}
.section-access .locations-list .region-section .locations-grid .location-item .day-icon.prep {
  width: auto;
  min-width: 30px;
  padding: 0 10px;
  border-radius: 15px;
  font-size: 11px;
  white-space: nowrap;
}
.section-access .locations-list .region-section .locations-grid .location-item .location-name {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}
.section-access .locations-list .region-section .locations-grid .location-item:hover {
  opacity: 1;
  background: #00AA88;
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.section-access .locations-list .region-section .locations-grid .location-item:hover .location-name {
  color: #fff;
}
.section-access .locations-list .region-section .locations-grid .location-item:hover .arrow-icon {
  color: #fff;
}
.section-access .locations-list .region-section .locations-grid .location-item:hover::before {
  background: #fff url("../img/icon-gnav.svg") no-repeat center;
  background-size: 8px;
}
@media (max-width: 768px) {
  .section-access .map {
    margin-bottom: 48px;
  }
  .section-access .map .pc {
    display: none;
  }
  .section-access .map .sp {
    display: block;
  }
  .section-access .locations-list .region-section {
    margin-bottom: 48px;
  }
  .section-access .locations-list .region-section .region-title {
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #00AA88;
  }
  .section-access .locations-list .region-section .locations-grid {
    gap: 16px;
  }
}
@media (max-width: 678px) {
  .section-access .locations-list .region-section .region-title {
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    font-size: 24px;
  }
  .section-access .locations-list .region-section .region-title::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 32px;
    height: 32px;
    background-image: url("../img/icon-scroll-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
  .section-access .locations-list .region-section .region-title.active::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .section-access .locations-list .region-section .locations-grid {
    display: none;
    gap: 16px;
  }
  .section-access .locations-list .region-section .locations-grid.active {
    display: grid;
  }
}

.section-tankai ul li {
  position: relative;
  display: flex;
  padding-left: 24px;
  margin-bottom: 16px;
}
.section-tankai ul li:last-child {
  margin-bottom: 0;
}
.section-tankai ul li::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #00AA88;
}
.section-tankai ul li span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
  margin-right: 24px;
}
.section-tankai ul li p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-tankai ul li {
    flex-wrap: wrap;
  }
  .section-tankai ul li span {
    width: 100% !important;
    margin-bottom: 4px;
    font-size: 18px;
  }
  .section-tankai ul li p {
    width: 100% !important;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-tankai ul li::before {
    top: 4px;
  }
  .section-tankai ul li span {
    font-size: 16px;
  }
  .section-tankai ul li p {
    font-size: 16px;
  }
}
.section-tankai.pt-0 {
  padding-top: 0;
}
.section-tankai .title-h2-box h2 br {
  display: none;
}
@media (max-width: 768px) {
  .section-tankai .title-h2-box h2 br {
    display: block;
  }
}
.section-tankai .title-h3-box h3 br {
  display: none;
}
@media (max-width: 768px) {
  .section-tankai .title-h3-box h3 br {
    display: block;
  }
}
.section-tankai .morningseminar-carousel {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.section-tankai .morningseminar-carousel .slider-box {
  display: block;
  border-radius: 8px;
  padding: 0 24px 24px;
  border: #00AA88 1px solid;
  background: #fff;
}
.section-tankai .morningseminar-carousel .slider-box .date-box {
  position: relative;
  top: 0;
  left: 0;
  height: 96px;
}
.section-tankai .morningseminar-carousel .slider-box .date-box .month {
  position: relative;
  top: 0;
  left: -8px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-tankai .morningseminar-carousel .slider-box .date-box .month::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  top: 40px;
  right: -43px;
  transform: rotate(128deg);
  background: #2A2D3C;
}
.section-tankai .morningseminar-carousel .slider-box .date-box .day {
  position: relative;
  top: 36px;
  left: -6px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-tankai .morningseminar-carousel .slider-box .date-box .weak {
  position: relative;
  top: 36px;
  color: #00AA88;
  font-size: 20px;
  font-weight: 400;
}
.section-tankai .morningseminar-carousel .slider-box .tankai-time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 96px;
  height: 96px;
  top: 0;
  right: 0;
  background: #00AA88;
  padding: 12px;
  border-radius: 0 8px 0 8px;
  text-align: center;
}
.section-tankai .morningseminar-carousel .slider-box .tankai-time-box .city {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.section-tankai .morningseminar-carousel .slider-box .tankai-time-box .district {
  display: block;
  color: #fff;
  font-size: 24px;
}
.section-tankai .morningseminar-carousel .slider-box .tankai-time-box .time {
  display: block;
  color: #fff;
  font-size: 14px;
}
.section-tankai .morningseminar-carousel .slider-box .act-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .img-box {
  width: 80px;
  height: 80px;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .txt-box {
  width: calc(100% - 96px);
}
.section-tankai .morningseminar-carousel .slider-box .act-box .txt-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .txt-box .name {
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .txt-box .name span {
  font-size: 18px;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .no-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 45% 0;
}
.section-tankai .morningseminar-carousel .slider-box .act-box .no-txt p {
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .morningseminar-carousel .slider-box .theme-box {
  padding-top: 16px;
  margin-top: 16px;
  border-top: #DBDBDB 1px solid;
  margin-bottom: 24px;
}
.section-tankai .morningseminar-carousel .slider-box .theme-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .morningseminar-carousel .slider-box .tankai-box {
  position: relative;
  left: -24px;
  width: calc(100% + 48px);
  color: #fff;
  font-size: 16px;
  background: #00AA88;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  text-align: center;
}
.section-tankai .morningseminar-carousel .slider-box .btn-more {
  color: #fff;
  background: #00AA88;
  justify-content: center;
  padding: 24px 32px 24px 32px;
  border: #00AA88 1px solid;
}
.section-tankai .morningseminar-carousel .slider-box .btn-more::before {
  background: url(../img/icon-gnav-hover.svg) no-repeat center;
}
.section-tankai .morningseminar-carousel .slider-box .btn-more:hover {
  color: #00AA88;
  background: #fff;
  border: #00AA88 1px solid;
}
.section-tankai .morningseminar-carousel .slider-box .btn-more:hover::before {
  background: url(../img/icon-gnav.svg) no-repeat center;
}
@media (max-width: 1080px) {
  .section-tankai .morningseminar-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-tankai .morningseminar-carousel .slider-box .act-box .no-txt {
    padding: 25% 0;
  }
}
@media (max-width: 768px) {
  .section-tankai .morningseminar-carousel {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-tankai .morningseminar-carousel .slider-box .act-box .no-txt {
    padding: 25% 0;
  }
}
.section-tankai .tankai-accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion {
    gap: 16px;
  }
}
.section-tankai .tankai-accordion .accordion-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: #00AA88 1px solid;
  background: #fff;
  overflow: hidden;
}
.section-tankai .tankai-accordion .date-inner {
  position: relative;
  top: 0;
  left: 0;
}
.section-tankai .tankai-accordion .date-inner .month {
  position: relative;
  top: 0;
  left: -8px;
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-tankai .tankai-accordion .date-inner .month::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  top: 40px;
  right: -43px;
  transform: rotate(128deg);
  background: #2A2D3C;
}
.section-tankai .tankai-accordion .date-inner .day {
  position: relative;
  top: 36px;
  left: -6px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-tankai .tankai-accordion .date-inner .weak {
  position: relative;
  top: 36px;
  color: #00AA88;
  font-size: 20px;
  font-weight: 400;
}
.section-tankai .tankai-accordion .accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  height: 64px;
  background: transparent;
  border: none;
  text-align: left;
  position: relative;
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion .accordion-btn {
    cursor: pointer;
    background: #00AA88;
  }
  .section-tankai .tankai-accordion .accordion-btn .date-inner .month {
    left: auto;
    color: #fff;
    font-size: 32px;
    padding-right: 12px;
  }
  .section-tankai .tankai-accordion .accordion-btn .date-inner .month::before {
    content: "/";
    top: 0;
    right: -6px;
    width: 16px;
    height: 36px;
    font-size: 32px;
    background: 0;
    transform: rotate(0deg);
  }
  .section-tankai .tankai-accordion .accordion-btn .date-inner .day {
    top: 0;
    left: auto;
    color: #fff;
    font-size: 32px;
  }
  .section-tankai .tankai-accordion .accordion-btn .date-inner .weak {
    color: #fff;
    top: 0;
  }
}
.section-tankai .tankai-accordion .accordion-btn .accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}
.section-tankai .tankai-accordion .accordion-btn .accordion-icon path, .section-tankai .tankai-accordion .accordion-btn .accordion-icon rect {
  fill: #00AA88;
}
.section-tankai .tankai-accordion .accordion-btn.is-open .accordion-icon {
  transform: rotate(-90deg);
}
.section-tankai .tankai-accordion .cancelled-badge {
  display: none;
}
.section-tankai .tankai-accordion .accordion-item.is-cancelled .accordion-icon {
  display: none;
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion .accordion-item.is-cancelled {
    border-color: #9B9B9B;
  }
  .section-tankai .tankai-accordion .accordion-item.is-cancelled .accordion-btn {
    background: #9B9B9B;
    cursor: default;
    justify-content: flex-start;
    gap: 16px;
  }
  .section-tankai .tankai-accordion .accordion-item.is-cancelled .cancelled-badge {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Kosugi Maru", sans-serif;
  }
}
.section-tankai .tankai-accordion .accordion-content {
  padding: 0 24px 24px;
  display: flex !important;
  flex-direction: column;
  flex: 1;
}
.section-tankai .tankai-accordion .accordion-content[hidden] {
  display: flex !important;
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion .accordion-content[hidden] {
    display: none !important;
  }
}
.section-tankai .tankai-accordion .act-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 16px;
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion .act-box {
    margin: 20px 0 16px;
  }
}
.section-tankai .tankai-accordion .act-box .img-box {
  width: 80px;
  height: 80px;
}
.section-tankai .tankai-accordion .act-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 80px;
}
.section-tankai .tankai-accordion .act-box .txt-box {
  width: calc(100% - 96px);
}
.section-tankai .tankai-accordion .act-box .txt-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .tankai-accordion .act-box .txt-box .name {
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .tankai-accordion .act-box .txt-box .name span {
  font-size: 18px;
}
.section-tankai .tankai-accordion .act-box .no-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 45% 0;
}
.section-tankai .tankai-accordion .act-box .no-txt p {
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .tankai-accordion .theme-box {
  padding-top: 16px;
  margin-top: 16px;
  border-top: #DBDBDB 1px solid;
  margin-bottom: 24px;
}
.section-tankai .tankai-accordion .theme-box .post {
  display: block;
  color: #00AA88;
  font-size: 16px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-tankai .tankai-accordion .btn-more {
  color: #fff;
  background: #00AA88;
  justify-content: center;
  padding: 24px 32px 24px 32px;
  border: #00AA88 1px solid;
  margin-top: auto;
}
.section-tankai .tankai-accordion .btn-more::before {
  background: url(../img/icon-gnav-hover.svg) no-repeat center;
}
.section-tankai .tankai-accordion .btn-more:hover {
  color: #00AA88;
  background: #fff;
  border: #00AA88 1px solid;
}
.section-tankai .tankai-accordion .btn-more:hover::before {
  background: url(../img/icon-gnav.svg) no-repeat center;
}
@media (max-width: 1080px) {
  .section-tankai .tankai-accordion {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-tankai .tankai-accordion .accordion-item .act-box .no-txt {
    padding: 25% 0;
  }
}
@media (max-width: 768px) {
  .section-tankai .tankai-accordion {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-tankai .tankai-accordion .accordion-item .act-box .no-txt {
    padding: 25% 0;
  }
}
.section-tankai .venue-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  margin: 80px 0 0;
}
.section-tankai .venue-box .img-box {
  width: 100%;
}
.section-tankai .venue-box .img-box img {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-tankai .venue-box .txt-box .title-h3-box h3 {
  text-align: left;
}
.section-tankai .venue-box .txt-box ul li span {
  width: 120px;
}
.section-tankai .venue-box .txt-box ul li p {
  width: calc(100% - 136px);
}
.section-tankai .venue-box .txt-box .btn-box {
  margin-top: 32px;
}
.section-tankai .venue-box .txt-box .btn-box .target-btn {
  position: relative;
  display: inline-block;
  color: #00AA88;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 72px 20px 32px;
  border: #00AA88 1px solid;
  border-radius: 8px;
  background: #fff url(../img/icon-target.svg) no-repeat center right 24px;
}
@media (max-width: 480px) {
  .section-tankai .venue-box .txt-box .btn-box .target-btn {
    width: 100%;
    font-size: 16px;
    padding: 20px 72px 20px 24px;
  }
}
@media (max-width: 860px) {
  .section-tankai .venue-box {
    position: relative;
    display: block;
    margin-top: 160px;
  }
  .section-tankai .venue-box .img-box {
    width: 100%;
    margin: 96px 0 24px;
  }
  .section-tankai .venue-box .txt-box .title-h3-box {
    position: absolute;
    width: 100%;
    top: -96px;
    z-index: 2;
  }
  .section-tankai .venue-box .txt-box .title-h3-box h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-tankai .venue-box {
    margin-top: 160px;
  }
  .section-tankai .venue-box .img-box {
    margin: 80px 0 24px;
  }
  .section-tankai .venue-box .txt-box .title-h3-box {
    top: -80px;
  }
}
@media (max-width: 480px) {
  .section-tankai .venue-box {
    margin-top: 120px;
  }
  .section-tankai .venue-box .img-box {
    margin: 64px 0 24px;
  }
  .section-tankai .venue-box .txt-box .title-h3-box {
    top: -64px;
  }
}
.section-tankai .venue-photos-box {
  margin: 32px 0 0;
}
.section-tankai .venue-photos-box .venue-photo-item img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-tankai .venue-photos-box .owl-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}
.section-tankai .venue-photos-box .owl-nav .owl-prev,
.section-tankai .venue-photos-box .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: #00AA88 1px solid;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  font-size: 0;
}
.section-tankai .venue-photos-box .owl-nav .owl-prev {
  background-image: url(../img/icon-prev-green.svg);
}
.section-tankai .venue-photos-box .owl-nav .owl-next {
  background-image: url(../img/icon-next-green.svg);
}
.section-tankai .venue-photos-box .owl-nav .disabled {
  opacity: 0.3;
}
@media (min-width: 1080px) {
  .section-tankai .venue-photos-box.is-pc-static .owl-nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .section-tankai .venue-photos-box {
    margin-top: 24px;
  }
  .section-tankai .venue-photos-box .venue-photo-item img {
    height: 160px;
  }
}
.section-tankai .map-box {
  margin: 48px 0 80px;
  padding: 40px;
  border-radius: 16px;
  background: #E7FDF8;
}
@media (max-width: 480px) {
  .section-tankai .map-box {
    margin: 24px 0 48px;
    padding: 20px;
  }
}
.section-tankai .map-box h4 {
  position: relative;
  font-size: 20px;
  margin: 32px 0 12px;
  padding-left: 32px;
}
.section-tankai .map-box h4:first-child {
  margin-top: 0;
}
@media (max-width: 480px) {
  .section-tankai .map-box h4 {
    font-size: 18px;
    margin: 24px 0 8px;
  }
}
.section-tankai .map-box h4::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 4px;
  left: 0;
  border-radius: 20px;
  background: #00AA88;
}
.section-tankai .map-box p {
  font-size: 16px;
}
.section-tankai .map-box img {
  width: 100%;
  height: auto;
}
.section-tankai .flows-box {
  margin-top: 80px;
}
@media (max-width: 480px) {
  .section-tankai .flows-box {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .section-tankai .flows-box {
    border: 1px solid #00AA88;
    border-radius: 8px;
    padding: 16px;
  }
}
.section-tankai .flows-box .title-h3-box h3 {
  text-align: left;
}
@media (max-width: 860px) {
  .section-tankai .flows-box .title-h3-box h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-tankai .flows-box .title-h3-box h3 {
    border-bottom: 0;
    padding-bottom: 0;
    margin: 6px 12px 2px;
    font-size: 18px;
    text-align: left;
  }
}
.section-tankai .flows-box .flows-accordion-btn {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: default;
  text-align: inherit;
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flows-accordion-btn {
    cursor: pointer;
    position: relative;
    padding-right: 40px;
  }
  .section-tankai .flows-box .flows-accordion-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    background: url(../img/icon-down-hover.svg) no-repeat center;
    background-size: 16px;
    transition: transform 0.3s ease;
  }
  .section-tankai .flows-box .flows-accordion-btn.is-open::after {
    transform: rotate(180deg);
  }
}
.section-tankai .flows-box .flows-accordion-content[hidden] {
  display: block !important;
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flows-accordion-content {
    margin-top: 24px;
  }
  .section-tankai .flows-box .flows-accordion-content[hidden] {
    display: none !important;
  }
}
.section-tankai .flows-box .flow-box .box {
  margin-bottom: 40px;
}
.section-tankai .flows-box .flow-box .box:last-child {
  margin-bottom: 0;
}
.section-tankai .flows-box .flow-box .box::before {
  width: 24px;
  height: 16px;
  left: calc(50% - 12px);
  bottom: -30px;
  background: url(../img/arrow-down.svg) no-repeat center;
  background-size: 24px;
}
.section-tankai .flows-box .flow-box .box .step-box p {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flow-box .box .step-box {
    padding: 8px;
  }
}
.section-tankai .flows-box .flow-box .box .txt-box {
  padding: 24px 32px;
  background: #E7FDF8;
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flow-box .box .txt-box {
    padding: 12px 16px 12px;
  }
}
.section-tankai .flows-box .flow-box .box .txt-box h4 {
  font-size: 20px;
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flow-box .box .txt-box h4 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section-tankai .flows-box .flow-box .box .txt-box .title {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.section-tankai .description {
  text-align: center;
}
.section-tankai .event-box {
  display: grid;
  align-items: center;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #00AA88;
}
.section-tankai .event-box .img-box {
  width: 300px;
  height: auto;
}
.section-tankai .event-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-tankai .event-box .txt-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-tankai .event-box .txt-box h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2A2D3C;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #DBDBDB;
}
.section-tankai .event-box .txt-box ul li span {
  width: 64px;
}
.section-tankai .event-box .txt-box .btn-box {
  margin-top: 24px;
  width: 300px;
}
@media (max-width: 960px) {
  .section-tankai .event-box {
    align-items: flex-start;
  }
}
@media (max-width: 860px) {
  .section-tankai .event-box {
    display: block;
  }
  .section-tankai .event-box .img-box {
    width: 100%;
    margin-bottom: 24px;
  }
  .section-tankai .event-box .txt-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-tankai .event-box {
    padding: 24px;
    border-radius: 12px;
  }
  .section-tankai .event-box .txt-box {
    gap: 12px;
  }
  .section-tankai .event-box .txt-box h3 {
    font-size: 20px;
  }
  .section-tankai .event-box .txt-box ul li span {
    font-size: 16px;
  }
  .section-tankai .event-box .txt-box ul li p {
    font-size: 16px;
  }
  .section-tankai .event-box .txt-box .btn-box {
    width: 100%;
    margin-top: 16px;
  }
}
.section-tankai .president-box {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
}
.section-tankai .president-box .img-box {
  width: 300px;
  height: 340px;
}
.section-tankai .president-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 12px;
}
.section-tankai .president-box .txt-box h3 {
  text-align: left;
}
.section-tankai .president-box .txt-box p {
  font-size: 18px;
  font-weight: 400;
}
.section-tankai .president-box .txt-box .act-box {
  margin-top: 24px;
}
.section-tankai .president-box .txt-box .act-box .post {
  font-size: 20px;
  font-weight: bold;
}
.section-tankai .president-box .txt-box .act-box .name {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 860px) {
  .section-tankai .president-box {
    position: relative;
    display: block;
  }
  .section-tankai .president-box .img-box {
    width: 100%;
    margin: 96px 0 24px;
  }
  .section-tankai .president-box .txt-box .title-h3-box {
    position: absolute;
    width: 100%;
    top: -96px;
    z-index: 2;
  }
  .section-tankai .president-box .txt-box .title-h3-box h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-tankai .president-box .img-box {
    margin: 80px 0 24px;
  }
  .section-tankai .president-box .txt-box .title-h3-box {
    top: -80px;
  }
}
@media (max-width: 480px) {
  .section-tankai .president-box .img-box {
    margin: 64px 0 24px;
  }
  .section-tankai .president-box .txt-box .title-h3-box {
    top: -64px;
  }
}
.section-tankai .contact-box {
  padding: 64px;
  background: #E7FDF8;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .section-tankai .contact-box {
    padding: 48px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .section-tankai .contact-box {
    padding: 24px 16px;
  }
}
.section-tankai .contact-box ul li span {
  width: 160px;
}
.section-tankai .contact-box ul li p {
  width: calc(100% - 176px);
}
.section-tankai .sns-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 480px) {
  .section-tankai .sns-box {
    gap: 16px;
  }
}

.section-first .sp {
  display: none;
}
.section-first.section-insecurity {
  position: relative;
  padding-bottom: 64px;
}
.section-first.section-insecurity::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.section-first.section-insecurity .insecurity-box {
  text-align: center;
}
.section-first.section-insecurity .insecurity-box h2 {
  font-size: 24px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 32px;
}
.section-first.section-insecurity .insecurity-box h2 strong {
  font-size: 40px;
  font-weight: 400;
  color: #00AA88;
  font-family: "Kosugi Maru", sans-serif;
}
.section-first.section-insecurity .insecurity-box img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section-first.section-insecurity .sp {
    display: block;
  }
  .section-first.section-insecurity .pc {
    display: none;
  }
  .section-first.section-insecurity .insecurity-box h2 {
    font-size: 18px;
  }
  .section-first.section-insecurity .insecurity-box h2 strong {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .section-first.section-insecurity {
    padding-bottom: 0;
  }
  .section-first.section-insecurity .insecurity-box h2 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .section-first.section-insecurity .insecurity-box h2 strong {
    font-size: 24px;
  }
}
.section-first.section-qa {
  padding-top: 160px;
}
.section-first.section-qa iframe {
  width: 100%;
  margin-bottom: 64px;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .section-first.section-qa iframe {
    height: 200px;
    margin-bottom: 32px;
  }
}
.section-first.section-qa .qa-item {
  padding: 48px;
  margin-bottom: 48px;
  border-radius: 16px;
  background: #fff;
}
.section-first.section-qa .qa-item:last-child {
  margin-bottom: 0;
}
.section-first.section-qa .qa-item .qa-label {
  line-height: 1;
  font-size: 48px;
  font-weight: 500;
  color: #00AA88;
  font-family: "Roboto", sans-serif;
}
.section-first.section-qa .qa-item .qa-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #00AA88;
}
.section-first.section-qa .qa-item .qa-question .qa-question-text {
  font-size: 24px;
  font-weight: bold;
}
.section-first.section-qa .qa-item .qa-answer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.section-first.section-qa .qa-item .qa-answer .qa-answer-text {
  font-size: 16px;
  font-weight: 400;
}
.section-first.section-qa .qa-item .qa-answer .qa-answer-text strong {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.section-first.section-qa .qa-item .qa-flex-box {
  display: grid;
  align-items: center;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}
.section-first.section-qa .qa-item .qa-flex-box .qa-content-image {
  position: relative;
  margin-right: 12px;
  margin-bottom: 12px;
}
.section-first.section-qa .qa-item .qa-flex-box .qa-content-image::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #00AA88 0%, #FFFFFF 100%);
}
.section-first.section-qa .qa-item .qa-flex-box .qa-content-image img {
  position: relative;
  display: block;
  width: 100%;
  height: 256px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.section-first.section-qa .qa-item .item-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section-first.section-qa .qa-item .item-box .item {
  padding: 20px 20px 16px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #00AA88;
}
.section-first.section-qa .qa-item .item-box .item h4 {
  font-size: 20px;
  font-weight: bold;
}
.section-first.section-qa .qa-item .item-box .item p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}
.section-first.section-qa .qa-item .item-box .item .number-txt {
  color: #00AA88;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
}
.section-first.section-qa .qa-item .item-box .item .number-txt .number {
  color: #00AA88;
  font-size: 40px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.section-first.section-qa .qa-item .qa-content-text .hukidashi-box {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 16px;
  border-radius: 120px;
  background: #00AA88;
  margin-bottom: 32px;
}
.section-first.section-qa .qa-item .qa-content-text .hukidashi-box::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 24px;
  left: calc(50% - 20px);
  bottom: -12px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #00AA88;
}
.section-first.section-qa .qa-item .qa-content-text h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}
.section-first.section-qa .qa-item .qa-content-text p {
  font-size: 16px;
  font-weight: 400;
}
.section-first.section-qa .qa-item .qa-content-text .btn-more {
  width: 300px;
  margin-top: 24px;
}
.section-first.section-qa .qa-item .qa-content-text .qa-flow-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 32px;
}
.section-first.section-qa .qa-item .qa-content-text .qa-flow-box .flow-arrow {
  transform: rotate(-90deg);
}
.section-first.section-qa .qa-item .qa-content-text .qa-flow-box .box {
  position: relative;
  width: calc((100% - 96px) / 4);
  text-align: center;
  background: #fff;
  border: 2px solid #00AA88;
  padding: 40px 0 24px;
  border-radius: 16px;
}
.section-first.section-qa .qa-item .qa-content-text .qa-flow-box .box p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}
.section-first.section-qa .qa-item .qa-content-text .center-box {
  text-align: center;
}
.section-first.section-qa .qa-item .qa-content-text .center-box p {
  font-size: 16px;
  font-weight: 400;
}
.section-first.section-qa .qa-item .qa-content-text .center-box p strong {
  color: #00AA88;
  font-weight: bold;
  text-decoration: underline;
}
.section-first.section-qa .qa-item .qa-content-text .center-box .btn-more {
  margin: 24px auto 0;
}
@media (max-width: 960px) {
  .section-first.section-qa .qa-item .qa-flex-box {
    grid-template-columns: 1fr 1fr;
  }
  .section-first.section-qa .qa-item .qa-content-text .hukidashi-box {
    font-size: 20px;
    padding: 12px;
  }
  .section-first.section-qa .qa-item .qa-content-text h3 {
    font-size: 20px;
  }
  .section-first.section-qa .qa-item .qa-content-text p {
    font-size: 16px;
    font-weight: 400;
  }
  .section-first.section-qa .qa-item .qa-content-text .qa-flow-box {
    flex-wrap: wrap;
  }
  .section-first.section-qa .qa-item .qa-content-text .qa-flow-box .flow-arrow {
    transform: rotate(0deg);
    margin: 0 auto;
  }
  .section-first.section-qa .qa-item .qa-content-text .qa-flow-box .box {
    width: 100%;
    padding: 32px 16px 24px;
  }
  .section-first.section-qa .qa-item .qa-content-text .qa-flow-box .box p {
    font-size: 18px;
  }
  .section-first.section-qa .qa-item .qa-content-text .center-box {
    text-align: left;
  }
  .section-first.section-qa .qa-item .qa-content-text .center-box .btn-more {
    margin: 24px auto 0;
  }
}
@media (max-width: 768px) {
  .section-first.section-qa .qa-item {
    padding: 32px;
  }
  .section-first.section-qa .qa-item .qa-label {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
    text-align: center;
  }
  .section-first.section-qa .qa-item .qa-question {
    display: block;
    text-align: center;
  }
  .section-first.section-qa .qa-item .qa-question br {
    display: none;
  }
  .section-first.section-qa .qa-item .qa-answer {
    display: block;
  }
  .section-first.section-qa .qa-item .qa-flex-box {
    display: block;
    text-align: center;
  }
  .section-first.section-qa .qa-item .qa-flex-box .qa-content-image {
    margin-bottom: 28px;
  }
  .section-first.section-qa .qa-item .qa-flex-box .btn-more {
    margin: 24px auto 0;
  }
  .section-first.section-qa .qa-item .item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .section-first.section-qa {
    padding-top: 120px;
  }
  .section-first.section-qa .qa-item {
    padding: 24px;
  }
  .section-first.section-qa .qa-item .qa-question .qa-question-text {
    font-size: 20px;
  }
  .section-first.section-qa .qa-item .item-box {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-first-benefits .flex-number-box .box .txt-box .title-box h3 {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
.section-first-benefits .flex-number-box .box .txt-box .btn-more {
  width: 300px;
}
@media (max-width: 1120px) {
  .section-first-benefits .flex-number-box .box .txt-box .title-box h3 {
    font-size: 28px;
  }
  .section-first-benefits .flex-number-box .box .txt-box .title-box h3 br {
    display: none;
  }
  .section-first-benefits .flex-number-box .box .txt-box .title-box .number {
    font-size: 80px;
  }
}
@media (max-width: 1000px) {
  .section-first-benefits .flex-number-box .box .txt-box .title-box h3 {
    font-size: 24px;
  }
  .section-first-benefits .flex-number-box .box .txt-box .title-box .number {
    font-size: 72px;
  }
}
@media (max-width: 480px) {
  .section-first-benefits .flex-number-box .box .txt-box .btn-more {
    width: 100%;
  }
}
.section-first-benefits .teacher-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.section-first-benefits .teacher-box .box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #00AA88;
  padding: 24px;
  background: #fff;
}
.section-first-benefits .teacher-box .box .img-box {
  width: 112px;
  height: 112px;
}
.section-first-benefits .teacher-box .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 112px;
}
.section-first-benefits .teacher-box .box .txt-box {
  width: calc(100% - 136px);
}
.section-first-benefits .teacher-box .box .txt-box .title {
  color: #00AA88;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.section-first-benefits .teacher-box .box .txt-box .txt {
  font-size: 15px;
}
.section-first-benefits .teacher-box .box .txt-box .act-box {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #D9D9D9;
}
.section-first-benefits .teacher-box .box .txt-box .act-box .post {
  font-size: 15px;
  font-weight: bold;
}
.section-first-benefits .teacher-box .box .txt-box .act-box .name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .section-first-benefits .teacher-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .section-first-benefits .teacher-box .box {
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .section-first-benefits .teacher-box .box .txt-box {
    width: 100%;
  }
  .section-first-benefits .teacher-box .box .txt-box .txt {
    text-align: left;
  }
  .section-first-benefits .teacher-box .box .txt-box .act-box .name {
    justify-content: center;
  }
}
.section-first-benefits .search-banner {
  text-align: center;
  background: #E7FDF8;
  padding: 48px;
  border-radius: 24px;
  margin-top: 48px;
}
.section-first-benefits .search-banner .search-text {
  font-size: 24px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 32px;
}
.section-first-benefits .search-banner .search-text .sp-break {
  display: none;
}
.section-first-benefits .search-banner .search-text .text-black {
  color: #2A2D3C;
}
.section-first-benefits .search-banner .search-text .text-green {
  color: #00AA88;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}
.section-first-benefits .search-banner .search-text .search-number {
  font-size: 36px;
  font-weight: 500;
  color: #00AA88;
  line-height: 40px;
  font-family: "Roboto", sans-serif;
}
.section-first-benefits .search-banner .search-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.section-first-benefits .search-banner .search-buttons .search-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 70px;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #00AA88;
}
.section-first-benefits .search-banner .search-buttons .search-btn .btn-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  top: calc(50% - 16px);
  left: 24px;
  filter: brightness(0) invert(1);
}
.section-first-benefits .search-banner .search-buttons .search-btn:hover {
  background: #008F73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.section-first-benefits .search-banner .search-buttons .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  height: 68px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  background: #00AA88 url(../img/icon-next.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .section-first-benefits .search-banner {
    padding: 24px;
    border-radius: 12px;
  }
  .section-first-benefits .search-banner .search-text {
    margin-bottom: 20px;
  }
  .section-first-benefits .search-banner .search-text .text-black,
  .section-first-benefits .search-banner .search-text .text-green {
    font-size: 18px;
  }
  .section-first-benefits .search-banner .search-text .search-number {
    font-size: 24px;
    line-height: 1;
  }
  .section-first-benefits .search-banner .search-buttons {
    gap: 16px;
    max-width: 100%;
  }
  .section-first-benefits .search-banner .search-buttons .search-btn {
    display: grid;
    flex-wrap: wrap;
    width: 100%;
    height: 112px;
    padding: 20px;
    font-size: 18px;
    border-radius: 8px;
    gap: 8px;
  }
  .section-first-benefits .search-banner .search-buttons .search-btn .btn-icon {
    position: inherit;
    left: 0;
    margin: 0 auto;
  }
  .section-first-benefits .search-banner .search-buttons .search-btn span {
    display: block;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .section-first-benefits .search-banner .search-text {
    margin-bottom: 24px;
  }
  .section-first-benefits .search-banner .search-buttons .contact-btn {
    height: 96px;
  }
}
@media (max-width: 480px) {
  .section-first-benefits .search-banner {
    position: relative;
    padding: 24px 0;
    border-radius: 0;
    margin-top: 32px;
  }
  .section-first-benefits .search-banner::before {
    position: absolute;
    content: "";
    width: calc(100% + 48px);
    height: 100%;
    top: 0;
    left: -24px;
    background: #E7FDF8;
    z-index: -1;
  }
  .section-first-benefits .search-banner .search-text .text-black,
  .section-first-benefits .search-banner .search-text .text-green {
    font-size: 16px;
  }
  .section-first-benefits .search-banner .search-text .search-number {
    font-size: 20px;
  }
  .section-first-benefits .search-banner .search-text .sp-break {
    display: block;
  }
  .section-first-benefits .search-banner .search-buttons {
    gap: 8px;
  }
}
@media (max-width: 320px) {
  .section-first-benefits .search-banner .search-text {
    font-size: 15px;
  }
  .section-first-benefits .search-banner .search-text .text-black,
  .section-first-benefits .search-banner .search-text .text-green {
    font-size: 15px;
  }
  .section-first-benefits .search-banner .search-text .search-number {
    font-size: 18px;
  }
  .section-first-benefits .search-banner .search-buttons .search-btn {
    font-size: 16px;
    padding: 15px 10px;
  }
}
.section-first-benefits .flow-box-item {
  padding: 48px;
  border-radius: 16px;
  background: #fff;
  margin: 32px 0 80px;
}
.section-first-benefits .flow-box-item .hukidashi {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #00AA88;
  padding: 16px 48px;
  border-radius: 120px;
  text-align: center;
}
.section-first-benefits .flow-box-item .hukidashi::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 24px;
  left: calc(50% - 24px);
  bottom: -12px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #00AA88;
}
.section-first-benefits .flow-box-item .box {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px 0;
}
.section-first-benefits .flow-box-item .box .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border: #00AA88 1px solid;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.section-first-benefits .flow-box-item .box .item::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 18px;
  top: calc(50% - 9px);
  right: -38px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #00AA88;
  transform: rotate(-90deg);
}
.section-first-benefits .flow-box-item .box .item:last-child::before {
  display: none;
}
.section-first-benefits .flow-box-item .btn-more {
  width: 356px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .section-first-benefits .flow-box-item {
    padding: 32px;
    margin: 32px 0 64px;
  }
  .section-first-benefits .flow-box-item .hukidashi {
    font-size: 20px;
  }
  .section-first-benefits .flow-box-item .box {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-first-benefits .flow-box-item .box .item {
    padding: 24px;
  }
  .section-first-benefits .flow-box-item .box .item::before {
    top: auto;
    bottom: -28px;
    right: auto;
    left: calc(50% - 18px);
    transform: rotate(0deg);
  }
  .section-first-benefits .flow-box-item .box .item:last-child::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .section-first-benefits .flow-box-item {
    padding: 24px;
    margin: 32px 0 48px;
  }
  .section-first-benefits .flow-box-item .hukidashi {
    font-size: 18px;
  }
  .section-first-benefits .flow-box-item .btn-more {
    width: 100%;
  }
}

.section-interview .interview-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.section-interview .interview-box .box {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}
.section-interview .interview-box .box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 40%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 170, 136, 0), rgb(0, 170, 136));
}
.section-interview .interview-box .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.section-interview .interview-box .box .txt-box {
  position: absolute;
  padding: 20px 24px;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.section-interview .interview-box .box .txt-box span {
  color: #fff;
}
.section-interview .interview-box .box .txt-box .day {
  display: block;
  font-size: 14px;
}
.section-interview .interview-box .box .txt-box .act {
  display: block;
  font-size: 15px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-interview .interview-box .box .txt-box .name {
  color: #fff;
  font-size: 28px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-interview .interview-box .box .txt-box .name .shi {
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
}
@media (max-width: 1080px) {
  .section-interview .interview-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .section-interview .interview-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.single-interview-mv .sp {
  display: none;
}
@media (max-width: 860px) {
  .single-interview-mv {
    text-align: center;
  }
  .single-interview-mv .sp {
    display: block;
  }
  .single-interview-mv .pc {
    display: none;
  }
  .single-interview-mv .img-box {
    margin-bottom: 24px;
  }
  .single-interview-mv .act-box .name {
    text-align: center;
  }
  .single-interview-mv .act-box p {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .single-interview-mv .act-box .post {
    font-size: 16px;
  }
  .single-interview-mv .act-box p {
    font-size: 16px;
  }
}

.section-interview-single .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.section-interview-single .main-box {
  width: calc(100% - 360px);
}
.section-interview-single .main-box .single-edit-box > div {
  padding-top: 64px;
}
.section-interview-single .main-box .single-edit-box > div:first-child {
  padding-top: 0;
}
.section-interview-single .side-box {
  width: 312px;
}
.section-interview-single .side-box .btn-box {
  margin-bottom: 48px;
}
.section-interview-single .side-box .btn-box h3 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom: 1px solid #00AA88;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.section-interview-single .side-box .btn-box .btn-more {
  margin-top: 16px;
  padding-left: 24px;
}
.section-interview-single .side-box .btn-box .tel-btn {
  display: block;
  margin-top: 16px;
  background: #fff;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 480px) {
  .section-interview-single .side-box .btn-box .tel-btn {
    pointer-events: auto;
    cursor: pointer;
  }
}
.section-interview-single .side-box .btn-box .tel-btn {
  width: 100%;
  padding: 24px;
  border: 1px solid #00AA88;
  border-radius: 8px;
  text-align: center;
}
.section-interview-single .side-box .btn-box .tel-btn .txt {
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-interview-single .side-box .btn-box .tel-btn .number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.section-interview-single .side-box .btn-box .tel-btn .time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-interview-single .side-box .btn-box .tel-btn .time span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 27px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  border-radius: 32px;
  background: #00AA88;
}
.section-interview-single .side-box .seminar-box h3 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom: 1px solid #00AA88;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.section-interview-single .side-box .seminar-box p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.section-interview-single .side-box .seminar-box p strong {
  color: #00AA88;
  font-weight: 500;
}
.section-interview-single .side-box .seminar-box p strong .number {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.section-interview-single .side-box .seminar-box .search-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.section-interview-single .side-box .seminar-box .search-buttons .search-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 70px;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #00AA88;
}
.section-interview-single .side-box .seminar-box .search-buttons .search-btn .btn-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  top: calc(50% - 16px);
  left: 24px;
  filter: brightness(0) invert(1);
}
.section-interview-single .side-box .seminar-box .search-buttons .search-btn:hover {
  background: #008F73;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 136, 0.3);
}
.section-interview-single .side-box .seminar-box .search-buttons .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 440px;
  height: 68px;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  background: #00AA88 url(../img/icon-next.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.section-interview-single .index-box {
  padding: 32px;
  border-radius: 12px;
  border: #00AA88 1px solid;
  background: #E7FDF8;
  margin-bottom: 48px;
}
.section-interview-single .index-box h3 {
  color: #00AA88;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.section-interview-single .index-box ol {
  padding-left: 16px;
}
.section-interview-single .index-box ol li {
  margin-bottom: 12px;
}
.section-interview-single .index-box ol li:last-child {
  margin-bottom: 0;
}
.section-interview-single .index-box ol li a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
}
.section-interview-single .sp {
  display: none;
}
@media (max-width: 960px) {
  .section-interview-single {
    padding-bottom: 0;
  }
  .section-interview-single .pc {
    display: none;
  }
  .section-interview-single .sp {
    display: block;
  }
  .section-interview-single .main-box {
    width: 100%;
  }
  .section-interview-single .side-box {
    position: relative;
    width: 100%;
    padding: 48px 0;
    background: #E7FDF8;
  }
  .section-interview-single .side-box::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 100%;
    top: 0;
    left: -40px;
    background: #E7FDF8;
    z-index: -1;
  }
  .section-interview-single .side-box h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .section-interview-single .side-box::before {
    width: calc(100% + 48px);
    left: -24px;
  }
}

.section-contact .inner > p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.section-contact .btn-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}
.section-contact .btn-box a:hover {
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.section-contact .btn-box .btn-more {
  width: 400px;
  font-size: 20px;
  font-family: "Kosugi Maru", sans-serif;
  height: auto;
}
.section-contact .btn-box .btn-more:hover {
  color: #2A2D3C;
  background: #fff;
}
.section-contact .btn-box .btn-more:hover::before {
  background: #00AA88 url(../img/icon-gnav-hover.svg) no-repeat center;
}
.section-contact .btn-box .icon-btn {
  padding: 20px 72px 20px 24px;
}
.section-contact .btn-box .icon-btn .icon {
  padding-right: 24px;
}
.section-contact .btn-box .icon-btn .icon img {
  display: flex;
  align-items: center;
  width: 40px;
  height: auto;
}
.section-contact .btn-box .tel-btn {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 480px) {
  .section-contact .btn-box .tel-btn {
    pointer-events: auto;
    cursor: pointer;
  }
}
.section-contact .btn-box .tel-btn {
  width: 400px;
  padding: 24px;
  border: 1px solid #00AA88;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}
.section-contact .btn-box .tel-btn .txt {
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
}
.section-contact .btn-box .tel-btn .number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
.section-contact .btn-box .tel-btn .time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.section-contact .btn-box .tel-btn .time span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 27px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  border-radius: 32px;
  background: #00AA88;
}
@media (max-width: 768px) {
  .section-contact .inner > p {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .section-contact .btn-box .btn-more,
  .section-contact .btn-box .tel-btn {
    width: 100%;
  }
}

.section-privacy-policy .policy-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #00AA88;
}
.section-privacy-policy .policy-content p {
  font-size: 16px;
}
.section-privacy-policy .policy-content p.right {
  text-align: right;
}
.section-privacy-policy .policy-content .content-box {
  margin: 64px 0;
}
.section-privacy-policy .policy-content .content-box dl {
  margin-top: 48px;
}
.section-privacy-policy .policy-content .content-box dl dt {
  margin-bottom: 12px;
}
.section-privacy-policy .policy-content .content-box dl dt h3 {
  font-size: 24px;
}
.section-privacy-policy .policy-content .content-box dl dd p {
  font-size: 16px;
}
@media (max-width: 480px) {
  .section-privacy-policy .policy-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .section-privacy-policy .policy-content .content-box {
    margin: 40px 0;
  }
  .section-privacy-policy .policy-content .content-box dl {
    margin-top: 32px;
  }
  .section-privacy-policy .policy-content .content-box dl dt {
    margin-bottom: 8px;
  }
  .section-privacy-policy .policy-content .content-box dl dt h3 {
    font-size: 20px;
  }
}

.section-member .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.section-member .box .item {
  width: 100%;
}
.section-member .box .item img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-member .box .item h3 {
  position: relative;
  font-size: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
}
.section-member .box .item h3::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  top: 29px;
  right: 20px;
  background: url(../img/icon-gnav.svg) no-repeat;
  background-size: 8px;
}
.section-member .box .item p {
  font-size: 16px;
  margin-top: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (max-width: 1080px) {
  .section-member .box {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .section-member .box .item {
    margin: 0 auto;
  }
  .section-member .box .item img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .section-member .box {
    display: flex;
    flex-direction: column;
  }
  .section-member .box .item img {
    height: 300px;
  }
  .section-member .box .item .h3 {
    padding: 20px 0 16px;
  }
  .section-member .box .item .h3::before {
    top: 24px;
  }
}
@media (max-width: 480px) {
  .section-member .box .item img {
    height: 196px;
  }
}

.bg-green .flex-number-box .box {
  flex-direction: row-reverse;
}

.section-committee .flex-number-box .box .txt-box .title-box h2 {
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-committee .flex-number-box .box .txt-box .btn-more {
  width: 300px;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .section-committee .flex-number-box .box .txt-box .title-box h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .section-committee .flex-number-box .box .txt-box .btn-more {
    width: 100%;
    margin-top: 20px;
  }
}

.section-committee-single .message-box {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.section-committee-single .message-box .img-box {
  width: 300px;
  height: 340px;
}
.section-committee-single .message-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.section-committee-single .message-box .txt-box {
  width: calc(100% - 348px);
}
.section-committee-single .message-box .txt-box .txt {
  font-size: 18px;
  font-weight: 400;
}
.section-committee-single .message-box .txt-box .act-box {
  margin-top: 24px;
}
.section-committee-single .message-box .txt-box .act-box .post {
  font-size: 20px;
  font-weight: bold;
}
.section-committee-single .message-box .txt-box .act-box .name {
  font-size: 28px;
  font-weight: bold;
}
.section-committee-single .table-box table tbody tr td.first {
  background: #C2EBE2;
}
@media (max-width: 768px) {
  .section-committee-single .message-box {
    gap: 24px;
  }
  .section-committee-single .message-box .img-box {
    width: 100%;
  }
  .section-committee-single .message-box .txt-box {
    width: 100%;
  }
}

.section-ethics-guidance .teacher-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.section-ethics-guidance .teacher-box .box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid #00AA88;
  padding: 24px;
  background: #E7FDF8;
}
.section-ethics-guidance .teacher-box .box .img-box {
  width: 112px;
  height: 112px;
}
.section-ethics-guidance .teacher-box .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 112px;
}
.section-ethics-guidance .teacher-box .box .txt-box {
  width: calc(100% - 136px);
}
.section-ethics-guidance .teacher-box .box .txt-box .title {
  color: #00AA88;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.section-ethics-guidance .teacher-box .box .txt-box .txt {
  font-size: 15px;
}
.section-ethics-guidance .teacher-box .box .txt-box .act-box {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #D9D9D9;
}
.section-ethics-guidance .teacher-box .box .txt-box .act-box .post {
  font-size: 15px;
  font-weight: bold;
}
.section-ethics-guidance .teacher-box .box .txt-box .act-box .name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 960px) {
  .section-ethics-guidance .teacher-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .section-ethics-guidance .teacher-box .box {
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .section-ethics-guidance .teacher-box .box .txt-box {
    width: 100%;
  }
  .section-ethics-guidance .teacher-box .box .txt-box .txt {
    text-align: left;
  }
  .section-ethics-guidance .teacher-box .box .txt-box .act-box .name {
    justify-content: center;
  }
}

.section-public-magazine .box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.section-public-magazine .box .item {
  display: block;
  width: calc((100% - 64px) / 3);
  border: 1px solid #00AA88;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.section-public-magazine .box .item img {
  width: 100%;
  height: auto;
  border: 1px solid #CECECE;
  margin-bottom: 16px;
}
.section-public-magazine .box .item p {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .section-public-magazine .box {
    gap: 24px;
  }
  .section-public-magazine .box .item {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 960px) {
  .section-public-magazine .box {
    gap: 24px;
  }
  .section-public-magazine .box .item {
    width: calc((100% - 48px) / 2);
  }
}
@media (max-width: 640px) {
  .section-public-magazine .box {
    gap: 16px;
  }
  .section-public-magazine .box .item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 48px 0 0;
    border-radius: 8px;
    text-align: left;
  }
  .section-public-magazine .box .item::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    right: 16px;
    border-radius: 32px;
    background: #00AA88 url(../img/icon-gnav-hover.svg) no-repeat center;
    background-size: 6px;
  }
  .section-public-magazine .box .item img {
    width: 113px;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0;
    border-radius: 8px 0 0 8px;
  }
  .section-public-magazine .box .item p {
    font-size: 18px;
  }
}

.section-request .box {
  margin-bottom: 80px;
}
.section-request .box:last-child {
  margin-bottom: 0;
}
.section-request .box p a {
  color: #00AA88;
  text-decoration: underline;
}
.section-request .box p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .section-request .box {
    margin-bottom: 64px;
  }
}
@media (max-width: 480px) {
  .section-request .box {
    margin-bottom: 48px;
  }
}

.section-quit .inner > .btn-box {
  display: flex;
  gap: 24px;
}
.section-quit .inner > .btn-box .btn-more {
  width: calc(50% - 12px);
}
.section-quit .inner > p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-quit .inner > .btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .section-quit .inner > .btn-box .btn-more {
    width: 100%;
  }
  .section-quit .inner > p {
    text-align: left;
  }
}

.section-event .inner > .btn-box {
  display: none;
}
@media (max-width: 1080px) {
  .section-event .inner > .btn-box {
    display: block;
    width: 240px;
    margin: 40px auto 0;
  }
}
@media (max-width: 480px) {
  .section-event .inner > .btn-box {
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .section-event .title-box {
    justify-content: center !important;
  }
  .section-event .title-box .title-h2-box {
    text-align: center;
  }
  .section-event .title-box .btn-box {
    display: none;
  }
}
.section-event .event-box {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
.section-event .event-box a .img-box {
  height: 200px;
  margin-bottom: 20px;
}
.section-event .event-box a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.section-event .event-box a .txt-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.section-event .event-box a .txt-box time {
  font-size: 15px;
}
.section-event .event-box a .txt-box time span {
  color: #00AA88;
}
@media (max-width: 1080px) {
  .section-event .event-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section-event .event-box {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }
}

.section-event-cat .event-list li {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section-event-cat .event-list .event-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.section-event-cat .event-list .event-box .img-box {
  width: 240px;
}
.section-event-cat .event-list .event-box .img-box img {
  width: 100%;
  height: 156px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.section-event-cat .event-list .event-box .txt-box {
  width: calc(100% - 264px);
}
.section-event-cat .event-list .event-box .txt-box .tag {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 40px;
  background: #00AA88;
}
.section-event-cat .event-list .event-box .txt-box p {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.section-event-cat .event-list .event-box .txt-box .time-box {
  position: relative;
  padding-left: 16px;
}
.section-event-cat .event-list .event-box .txt-box .time-box::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  top: 6px;
  left: 0;
  background: #00AA88;
}
.section-event-cat .event-list .event-box .txt-box .time-box span {
  color: #00AA88;
  font-size: 16px;
}
.section-event-cat .event-list .event-box .txt-box .time-box time {
  font-size: 16px;
}
@media (max-width: 768px) {
  .section-event-cat .event-list .event-box {
    gap: 16px;
  }
  .section-event-cat .event-list .event-box .img-box {
    width: 100%;
  }
  .section-event-cat .event-list .event-box .txt-box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-event-cat .event-list .event-box .txt-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .section-event-cat .event-list .event-box .txt-box .tag {
    order: 3;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 40px;
    background: #00AA88;
  }
  .section-event-cat .event-list .event-box .txt-box p {
    order: 1;
    font-size: 18px;
    margin: 0;
  }
  .section-event-cat .event-list .event-box .txt-box .time-box {
    width: 100%;
    order: 2;
    margin: 8px 0 16px;
  }
  .section-event-cat .event-list .event-box .txt-box .time-box::before {
    top: 7px;
  }
  .section-event-cat .event-list .event-box .txt-box .time-box span {
    font-size: 15px;
  }
  .section-event-cat .event-list .event-box .txt-box .time-box time {
    font-size: 15px;
  }
}

.section-single-event h3:first-child {
  margin-top: 0;
}

.section-morningseminar .morningseminar-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section-morningseminar .morningseminar-box .card-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1 0 auto;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
.section-morningseminar .morningseminar-box .card-box .tankai-box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 96px;
  height: 96px;
  top: 0;
  right: 0;
  border-radius: 0 8px 0 8px;
  background: #00AA88;
}
.section-morningseminar .morningseminar-box .card-box .tankai-box .sub {
  display: block;
  color: #fff;
  font-size: 15px;
}
.section-morningseminar .morningseminar-box .card-box .tankai-box .main {
  display: block;
  color: #fff;
  font-size: 24px;
}
.section-morningseminar .morningseminar-box .card-box .tankai-box .time {
  display: block;
  color: #fff;
  font-size: 14px;
}
.section-morningseminar .morningseminar-box .card-box .date-box {
  position: relative;
  display: flex;
  height: 80px;
}
.section-morningseminar .morningseminar-box .card-box .date-box div {
  display: flex;
  margin: 4px 0 0 -12px;
}
.section-morningseminar .morningseminar-box .card-box .date-box .month {
  position: relative;
  display: block;
  width: 32px;
  text-align: center;
  top: -20px;
  font-size: 36px;
  font-family: "Roboto", sans-serif;
  letter-spacing: -4px;
}
.section-morningseminar .morningseminar-box .card-box .date-box .month::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 2px;
  left: 1px;
  bottom: 34px;
  background: #2A2D3C;
  transform: rotate(130deg);
}
.section-morningseminar .morningseminar-box .card-box .date-box .day {
  position: relative;
  display: block;
  width: 54px;
  text-align: center;
  bottom: -6px;
  padding-left: 4px;
  font-size: 48px;
  font-family: "Roboto", sans-serif;
  letter-spacing: -2px;
}
.section-morningseminar .morningseminar-box .card-box .date-box .week {
  position: relative;
  bottom: -40px;
  color: #00AA88;
  font-size: 20px;
  margin-left: 8px;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box {
  width: 100%;
  margin: 20px 0;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 20px;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box div.flex {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box .img-box img {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box .txt-box .title {
  color: #00AA88;
  font-size: 16px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box .txt-box .name {
  line-height: 1.2;
  font-size: 28px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  margin: 0 0 4px;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box .txt-box .name .shi {
  font-size: 20px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.section-morningseminar .morningseminar-box .card-box .lecturer-box .txt {
  font-size: 16px;
  margin-top: 8px;
}
.section-morningseminar .morningseminar-box .card-box .theme-box {
  width: 100%;
}
.section-morningseminar .morningseminar-box .card-box .theme-box .title {
  color: #00AA88;
  font-size: 16px;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
.section-morningseminar .morningseminar-box .card-box .theme-box .txt {
  font-size: 16px;
}
.section-morningseminar .morningseminar-box .card-box .tankai {
  position: relative;
  width: calc(100% + 48px);
  left: -24px;
  bottom: -24px;
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  background: #00AA88;
  text-align: center;
  margin-top: auto;
}
@media (max-width: 1080px) {
  .section-morningseminar .morningseminar-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section-morningseminar .morningseminar-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
  .section-morningseminar .morningseminar-box .card-box {
    padding: 24px;
  }
  .section-morningseminar .morningseminar-box .card-box .tankai-box {
    width: 80px;
    height: 80px;
  }
  .section-morningseminar .morningseminar-box .card-box .tankai-box .sub {
    font-size: 13px;
  }
  .section-morningseminar .morningseminar-box .card-box .tankai-box .main {
    font-size: 20px;
  }
  .section-morningseminar .morningseminar-box .card-box .tankai-box .time {
    font-size: 12px;
  }
  .section-morningseminar .morningseminar-box .card-box .date-box {
    height: 48px;
  }
  .section-morningseminar .morningseminar-box .card-box .date-box .month {
    top: auto;
    font-size: 36px;
    margin-right: 16px;
  }
  .section-morningseminar .morningseminar-box .card-box .date-box .month::before {
    content: "/";
    width: auto;
    height: 46px;
    left: auto;
    right: -16px;
    bottom: 0;
    transform: rotate(0deg);
    background: none;
  }
  .section-morningseminar .morningseminar-box .card-box .date-box .day {
    top: auto;
    bottom: 0;
    font-size: 36px;
  }
  .section-morningseminar .morningseminar-box .card-box .date-box .week {
    bottom: -16px;
  }
  .section-morningseminar .morningseminar-box .card-box .lecturer-box {
    margin: 12px 0 16px;
  }
  .section-morningseminar .morningseminar-box .card-box .lecturer-box .img-box img {
    width: 64px;
    height: 64px;
  }
  .section-morningseminar .morningseminar-box .card-box .tankai {
    display: none;
  }
}

.section-single-morningseminar h3:first-child {
  margin-top: 0;
}

.section-morningseminar-detail .locations-list {
  margin: 64px 0 96px;
}
@media (max-width: 678px) {
  .section-morningseminar-detail .locations-list {
    margin: 40px 0 48px;
  }
}
.section-morningseminar-detail .locations-list .region-section {
  margin-bottom: 64px;
}
@media (max-width: 678px) {
  .section-morningseminar-detail .locations-list .region-section {
    margin-bottom: 40px;
  }
}
.section-morningseminar-detail .locations-list .region-section .region-title {
  text-align: center;
}
@media (max-width: 678px) {
  .section-morningseminar-detail .locations-list .region-section .region-title {
    text-align: left;
  }
}
.section-morningseminar-detail .map {
  margin: 0;
}

.section-news .news-list li {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section-news .news-list .news-box {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: repeat(2, 316px calc(100% - 340px));
}
.section-news .news-list .news-box .box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-news .news-list .news-box time {
  color: #00AA88;
  font-size: 18px;
}
.section-news .news-list .news-box .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 212px;
  height: 36px;
  border-radius: 36px;
  color: #fff;
  font-size: 15px;
  background: #00AA88;
}
.section-news .news-list .news-box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 18px;
}
@media (max-width: 768px) {
  .section-news .news-list .news-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-news .news-list .news-box time {
    font-size: 16px;
  }
  .section-news .news-list .news-box .tag {
    width: 200px;
    height: 32px;
    font-size: 14px;
  }
  .section-news .news-list .news-box p {
    width: 100%;
    -webkit-line-clamp: 2;
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .button-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */