@charset "UTF-8";

/* elements
----------------------------------------------- */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--font-color);
  font-family: var(--font-family);
  font-style: normal;
  overflow-wrap: break-word;
}
a {
  background-color: transparent;
  color: var(--link-color);
  text-decoration: none;
}
a:visited {
  color: var(--link-color);
}
a:hover, a:focus {
  color: var(--link-color-hover);
  text-decoration: underline;
}
button {
  color: inherit;
}
@media only screen and (max-width: 1600px) {
  :target {
    scroll-margin-top: 60px;
  }
}

/* layout
----------------------------------------------- */
.cms-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
#pageHeader {
  background: #fff;
}
#pageNav {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  width: 108px;
  height: calc(100vh - 100px);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
#pageNav.visible {
  z-index: 2;
}
#pageNav::before {
  content: "";
  position: fixed;
  top: 100px;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100px;
  background: var(--clr-deep-blue);
}
#pageUpper {
  margin-bottom: 80px;
  padding: 0 100px;
}
#main {
  flex-grow: 1;
  padding: 0 100px;
}
#content {
  width: 100%;
  max-width: 1514px;
  margin: 0 auto;
  padding: 0 50px;
}
#content.narrow {
  max-width: 890px;
}
#pageFooter {
  margin-top: 80px;
  padding: 0 100px;
}
@media only screen and (max-width: 1600px) {
  #pageUpper, #main, #pageFooter {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #container {
    min-width: 320px;
    padding-top: 60px;
  }
  #pageHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    background: none;
  }
  #pageNav {
    top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 60px);
    padding: 15px 15px 0;
    opacity: 0;
    visibility: hidden;
  }
  #pageNav::before {
    display: none;
  }
  #pageNav.visible {
    z-index: 1;
    background: var(--clr-deep-blue);
    opacity: 1;
    visibility: visible;
  }
  #pageUpper {
    margin-bottom: 20px;
    padding: 0;
  }
  #main {
    padding: 0;
  }
  #content {
    padding: 0 15px 15px;
  }
  #pageFooter {
    margin-top: 20px;
    padding: 0;
  }
}

/* joruri cms component style
----------------------------------------------- */
/* pagination */
#content *:not(.calendarEvents) > .pagination {
  margin: 70px 10px 0;
  text-align: center;
}
#content *:not(.calendarEvents) > .pagination *:not(:last-child) {
  margin-right: 10px;
}
#content *:not(.calendarEvents) > .pagination a,
#content *:not(.calendarEvents) > .pagination em,
#content *:not(.calendarEvents) > .pagination span {
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  margin: 5px 0;
  border: 1px solid var(--clr-deep-blue);
  border-radius: 10px;
  background-color: #fff;
  vertical-align: middle;
  color: var(--font-color);
  text-decoration: none;
  font-size: 1.125rem;
  font-family: var(--font-family-montserrat);
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
}
#content *:not(.calendarEvents) > .pagination a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#content *:not(.calendarEvents) > .pagination a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#content *:not(.calendarEvents) > .pagination .current,
#content *:not(.calendarEvents) > .pagination .disabled {
  background-color: var(--clr-deep-blue);
  color: #fff;
}
#content *:not(.calendarEvents) > .pagination .separator {
  display: none;
}
#content *:not(.calendarEvents) > .pagination .previous_page,
#content *:not(.calendarEvents) > .pagination .next_page {
  border-radius: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
  text-indent: -9999px;
  overflow: hidden;
}
#content *:not(.calendarEvents) > .pagination .previous_page.disabled,
#content *:not(.calendarEvents) > .pagination .next_page.disabled {
  opacity: 0.5;
}
#content *:not(.calendarEvents) > .pagination .previous_page {
  margin-right: 40px;
  background-image: url(/_themes/acanthus/img/topics_prev01.svg);
}
#content *:not(.calendarEvents) > .pagination a.previous_page,
#content *:not(.calendarEvents) > .pagination .previous_page:not(.disabled):hover {
  background-image: url(/_themes/acanthus/img/topics_prev02.svg);
  background-color: var(--clr-deep-blue);
}
#content *:not(.calendarEvents) > .pagination .next_page {
  margin-left: 35px;
  background-image: url(/_themes/acanthus/img/topics_next01.svg);
}
#content *:not(.calendarEvents) > .pagination a.next_page,
#content *:not(.calendarEvents) > .pagination .next_page:not(.disabled):hover {
  background-image: url(/_themes/acanthus/img/topics_next02.svg);
  background-color: var(--clr-deep-blue);
}
@media only screen and (max-width: 768px) {
  #content *:not(.calendarEvents) > .pagination {
    margin-top: 35px;
  }
  #content *:not(.calendarEvents) > .pagination a,
  #content *:not(.calendarEvents) > .pagination em,
  #content *:not(.calendarEvents) > .pagination span {
    background-size: 10px auto;
    font-size: 0.875rem;
  }
  #content *:not(.calendarEvents) > .pagination .previous_page {
    margin-right: 10px;
  }
  #content *:not(.calendarEvents) > .pagination .next_page {
    margin-left: 0;
  }
}