/* bootstrap setting */
.anime {
  opacity: 0;
  transition: all .5s ease; }

.anime.show {
  opacity: 1;
  transform: none; }

.anime--lr {
  transform: translate(-10px, 0); }

.anime--rl {
  transform: translate(10px, 0); }

.anime--up {
  transform: translate(0, 10px); }

.anime--down {
  transform: translate(0, -10px); }

.anime--scaleUp {
  transform: scale(0.5); }

.anime--scaleDown {
  transform: scale(1.5); }

.anime--rotateL {
  transform: rotate(180deg); }

.anime--rotateR {
  transform: rotate(-180deg); }

/* base setting */
html {
  font-size: 62.5%; }

body {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  background-color: #F5F2ED;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0; }

h1 {
  font-size: 3.0rem;
  line-height: 1.5;
  font-weight: 700; }

h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px; }

h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700; }

h4 {
  font-size: 1.6rem;
  margin-bottom: 30px; }

h5 {
  font-size: 1.4rem;
  margin-bottom: 15px; }

h6 {
  font-size: 1.2rem;
  margin-bottom: 10px; }

p {
  line-height: 2.0; }

ol a, ul a {
  text-decoration: none; }

img {
  max-width: 100%;
  height: auto; }

p {
  margin-bottom: 2.0rem; }

p.img {
  margin: 0; }

a,
a img {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }

a img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

a:link,
a:visited {
  text-decoration: none;
  color: #444; }

a:hover {
  text-decoration: none;
  color: #f00; }

a:hover img {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75; }

iframe {
  width: 100%; }

.lead {
  font-size: 1.8rem;
  line-height: 1.5; }

ol, ul {
  margin-left: 1rem; }

/* header
-------------------- */
header {
  background-color: #fff;
  min-height: 100vh; }
  header.navbar {
    margin: 0;
    padding: 0; }
  header > section {
    margin: 0;
    padding: 30px;
    position: sticky;
    top: 0;
    z-index: 1020; }
  header .logo {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.0;
    margin: 0; }
    header .logo a {
      color: #000;
      text-decoration: none; }
      header .logo a .img {
        display: block;
        margin-bottom: 10px; }
        header .logo a .img img {
          width: 200px;
          height: auto; }
      header .logo a .text {
        display: block; }
  header .navbar-nav .navbar-collapse {
    justify-content: space-between;
    flex-direction: column;
    align-items: stretch; }
  header .navbar-nav .nav-item-link {
    font-size: 1.6rem;
    font-weight: 600;
    list-style: none;
    width: 100%;
    margin: 30px 0 0;
    padding: 0; }
    header .navbar-nav .nav-item-link a:link, header .navbar-nav .nav-item-link a:visited {
      display: inline-block;
      color: #000;
      padding: 5px 10px; }
    header .navbar-nav .nav-item-link a:hover {
      color: #f00; }
    header .navbar-nav .nav-item-link .sub-menu {
      list-style: disc; }
      header .navbar-nav .nav-item-link .sub-menu a:link, header .navbar-nav .nav-item-link .sub-menu a:visited {
        display: inline-block;
        padding: 2px 5px; }
    header .navbar-nav .nav-item-link .current-post-ancestor > a,
    header .navbar-nav .nav-item-link .current-menu-item > a {
      color: #f00; }

.mobile-icon {
  font-size: 3.6rem;
  color: #fff;
  background-color: #000;
  width: 50px;
  height: 50px;
  padding: 5px;
  border: none;
  border-radius: 0 0 0 10px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }
  .mobile-icon::after {
    content: '\ef3e';
    font-family: remixicon;
    text-align: center; }
  .mobile-icon:hover {
    background-color: #000;
    color: #fff; }

/* mobile menu */
.offcanvas-title {
  padding: 0 20px; }
  .offcanvas-title .img {
    display: block;
    margin-bottom: 10px; }
    .offcanvas-title .img img {
      width: 64px;
      height: auto; }
  .offcanvas-title .text {
    font-size: 1.8rem;
    font-weight: 700; }

.offcanvas-body .mobile-nav-item-link {
  font-size: 2.4rem;
  font-weight: 700;
  list-style: none;
  width: 100%;
  margin: 30px 0 0;
  padding: 0; }
  .offcanvas-body .mobile-nav-item-link li {
    margin-bottom: 10px; }
  .offcanvas-body .mobile-nav-item-link a:link, .offcanvas-body .mobile-nav-item-link a:visited {
    display: block;
    color: #000;
    padding: 5px 10px; }
  .offcanvas-body .mobile-nav-item-link a:hover {
    background-color: #fafafa;
    color: #f00; }

/* footer
-------------------- */
footer {
  font-size: 1.4rem;
  text-align: center;
  border-top: 1px solid #666;
  padding: 50px 30px; }

/* common setting
-------------------- */
section {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px; }

section.type-page {
  margin-top: 0;
  margin-bottom: 0; }

.breadcrumbs-head {
  margin-top: 0;
  margin-bottom: 0; }

.breadcrumbs {
  font-size: 1.4rem;
  line-height: 1.0;
  padding: 10px 30px; }

/* common parts */
.radius {
  position: relative;
  background-color: #fff;
  z-index: 1;
  padding-top: 40px; }

.radius::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F2ED;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px 0 0 0;
  z-index: -1; }

.btn-block {
  margin-top: 50px; }
  .btn-block .btn-primary {
    position: relative;
    background-color: #E25C47;
    color: #fff;
    min-width: 240px;
    border: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px; }
  .btn-block .btn-primary::before {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    content: '\ea6e';
    font-family: remixicon;
    font-size: 1.6rem;
    vertical-align: middle;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s; }
  .btn-block .btn-primary:hover {
    background-color: #f00; }
  .btn-block .btn-primary:hover::before {
    right: 15px; }

a figure {
  overflow: hidden; }

a figure img {
  transition: .5s all; }

a figure img:hover {
  transform: scale(1.06, 1.06);
  transition: 1s all; }

/* tarm */
.info-cat {
  font-size: 1.3rem; }
  .info-cat a:link, .info-cat a:visited {
    color: #E25C47; }

.termlist {
  list-style: none;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 0;
  border-radius: 20px;
  overflow: hidden; }
  .termlist .termlist_link {
    position: relative;
    display: block;
    color: #fff;
    line-height: 1.0;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 20px; }
  .termlist li:not(:first-child) .termlist_link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: inline-block;
    border-left: 1px solid #fff; }
  .termlist .termlist_link:link, .termlist .termlist_link:visited {
    background-color: #000; }
  .termlist .termlist_link:hover {
    background-color: #f00; }
  .termlist .termlist_link.current {
    background-color: #E25C47; }

/* table */
/* pagination
-------------------- */
.pagination {
  text-align: center;
  margin-top: 50px; }

.pagination ul {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0;
  padding: 0; }

.pagination li {
  display: inline-block;
  list-style: none;
  margin-left: 3px;
  margin-bottom: 5px; }

.pagination li:first-child {
  margin-left: 0; }

.pagination li > span.current {
  display: inline-block;
  background-color: #E25C47;
  color: #fff;
  padding: 0.6rem 1.5rem; }

.pagination li.active {
  background-color: #E25C47;
  color: #fff;
  padding: 0.6rem 1.5rem; }

.pagination li a {
  background-color: #fff;
  display: inline-block;
  padding: 0.6rem 1.5rem;
  text-decoration: none; }

.pagination li a:hover {
  background-color: #f00;
  color: #fff; }

/* form */
.grecaptcha-badge {
  visibility: hidden; }

/* top */
.top-mds {
  font-size: 1.8rem;
  margin-bottom: 10px; }

.herowrap {
  position: relative;
  background-color: #fff;
  margin-right: 30px;
  padding: 30px 30px 15% 20%;
  border-radius: 0 0 20px 0; }
  .herowrap::before {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../img/people.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top 5% left 7.5%;
    z-index: 10; }
  .herowrap::after {
    position: absolute;
    bottom: 30px;
    left: 0;
    content: '';
    width: 39.67789165446559vw;
    height: 18.88726207906296vw;
    display: block;
    background-image: url(../img/title.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 10; }

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none; }

.swiper {
  width: 100%; }

.swiper-slide {
  background-position: center;
  background-size: cover; }

.swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 20px; }

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 10px;
  left: auto;
  color: #fff;
  line-height: 1;
  border: 1px solid white;
  width: 40px;
  height: 40px; }

.swiper-button-prev {
  right: 60px; }

.swiper-button-next {
  right: 10px; }

.top-info {
  margin-top: 0; }

.infoblock {
  list-style: none;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0; }
  .infoblock li {
    border-bottom: 1px solid #ccc; }
    .infoblock li a {
      position: relative;
      display: block;
      padding: 15px 30px 15px 5px; }
    .infoblock li a::after {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      content: '\EA6E';
      font-family: remixicon;
      font-size: 2.4rem;
      color: #000;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      transition: all .3s; }
    .infoblock li .date {
      font-size: 1.4rem;
      display: inline-block; }
    .infoblock li .text {
      flex: 1;
      display: block; }

.top-activity h3.title {
  margin-bottom: 0; }
.top-activity .swiper {
  width: 100%;
  padding: 20px 10px 100px; }
.top-activity .swiper-slide {
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
.top-activity .swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0; }
.top-activity .swiper-button-prev,
.top-activity .swiper-button-next {
  top: auto;
  bottom: 30px;
  left: auto;
  color: #0068C4;
  line-height: 1;
  border: 1px solid #0068c4;
  width: 40px;
  height: 40px; }
.top-activity .swiper-button-prev {
  right: 60px; }
.top-activity .swiper-button-next {
  right: 10px; }
.top-activity .status_wrap {
  justify-content: space-between; }
  .top-activity .status_wrap .status {
    margin-right: 5px; }
.top-activity .card-body {
  padding: 20px 20px 25px; }
.top-activity .card-text {
  font-size: 1.5rem;
  line-height: 1.5; }
.top-activity .date {
  font-size: 1.4rem;
  margin-right: 5px; }
.top-activity .cat {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.0;
  background-color: #E25C47;
  padding: 4px 6px;
  border-radius: 5px; }
  .top-activity .cat a:link, .top-activity .cat a:visited {
    color: #fff !important; }

.top-about .link-box {
  display: block;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px; }
.top-about h2 {
  margin-bottom: 0; }
.top-about figure {
  max-width: 288px;
  height: auto;
  margin: 0 auto 10px; }

/* page
-------------------- */
.page-header {
  position: relative;
  background-color: #fff;
  margin-right: 30px;
  padding: 30px 30px 30px 0;
  border-radius: 0 0 20px 0; }

.header-img {
  position: relative;
  padding: 50px 30px;
  background-color: #ccc; }
  .header-img h1 {
    position: relative;
    color: #fff;
    z-index: 10; }
  .header-img .title {
    position: relative;
    color: #fff;
    z-index: 10;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700; }

.header-img::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1; }

.about-img {
  background: url(../img/bg_about.jpg) no-repeat 50% 50%;
  background-size: cover; }

.contact-img {
  background: url(../img/bg_contact.jpg) no-repeat 50% 50%;
  background-size: cover; }

.info-img {
  background: url(../img/bg_info.jpg) no-repeat 50% 50%;
  background-size: cover; }

.activity-img {
  background: url(../img/bg_activity.jpg) no-repeat 50% 50%;
  background-size: cover; }

.other-img,
.jichikai-img {
  background: url(../img/bg_other.jpg) no-repeat 50% 50%;
  background-size: cover; }

.page-contents {
  margin-top: 0; }

.type-page {
  margin-left: 3.0vw;
  margin-right: 3.0vw; }
  .type-page h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc; }
  .type-page h3 {
    margin-top: 40px; }
  .type-page p > a:link, .type-page p > a:visited {
    color: #E25C47; }
  .type-page p > a:hover {
    color: #f00; }
  .type-page figure img {
    margin-bottom: 2.0rem;
    border-radius: 20px; }
  .type-page .eye {
    margin-bottom: 6.0rem; }
    .type-page .eye + h2 {
      margin-top: 0; }

mark {
  background: linear-gradient(transparent 60%, #EFD44C 0%) !important; }

/* single
-------------------- */
.meta-data {
  font-size: 1.4rem;
  margin-bottom: 50px; }

/* archive
-------------------- */
.archive-card {
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  .archive-card img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 0; }
  .archive-card .card-body {
    padding: 20px 20px 25px; }
  .archive-card .card-text {
    font-size: 1.5rem;
    line-height: 1.5; }
  .archive-card .date {
    font-size: 1.4rem;
    margin-right: 5px; }
  .archive-card .cat {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.0;
    background-color: #E25C47;
    padding: 4px 6px;
    border-radius: 5px; }
    .archive-card .cat a:link, .archive-card .cat a:visited {
      color: #fff !important; }

/* backto
-------------------- */
#backto {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  background: #616161;
  z-index: 200; }

#backto span.toplink {
  display: block;
  font-size: 2.4rem;
  line-height: 2.4rem;
  text-decoration: none;
  color: #fff;
  width: 40px;
  height: 40px;
  padding-top: 8px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s; }

#backto span.toplink:hover {
  color: #fff;
  background-color: #111; }

@media (max-width: 991.98px) {
  header {
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1020;
    min-height: auto; }
    header > section {
      background-color: #fff;
      margin-right: 30px;
      padding: 30px 0 0 30px; }
    header .logo {
      font-size: 1.8rem; }
      header .logo a .img {
        display: inline-block;
        margin-bottom: 10px; }
      header .logo a .text {
        display: inline-block; }

  .navbar-nav {
    position: absolute;
    top: 0;
    right: -30px; }

  .btn-block .btn-big {
    display: block;
    min-width: auto; } }
@media (max-width: 575.98px) {
  .type-page {
    margin-left: 1.0vw;
    margin-right: 1.0vw; } }

/*# sourceMappingURL=custom.css.map */
