@charset "UTF-8";

.wrap {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .wrap {
    padding-top: 70px;
  }
}

.section-hero .content {
  height: 400px;
  background: #fdf0d7;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  .section-hero .content {
    height: 156px;
  }
}

.section-hero .content .page__title {
  font-size: 6rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .section-hero .content .page__title {
    font-size: 2rem;
  }
}

.headline__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .headline__title {
    font-size: 2.8rem;
  }
}

.headline__title .img {
  margin-right: 0.3em;
}

@media only screen and (max-width: 768px) {
  .headline__title .img {
    width: 41px;
  }
}

.headline__title span {
  word-break: keep-all;
}

@media only screen and (min-width: 769px) {
  .news-list__item {
    padding: 14px 70px 15px;
  }
}

.news-list__item:nth-of-type(2n) {
  background: #fdf0d7;
}

@media only screen and (max-width: 768px) {
  .news-list__item--def {
    padding: 25px 0;
  }
}

@media only screen and (min-width: 769px) {
  .news-list__item--def.dayweek dd {
    padding-left: 22.5%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .news-list__item--def.dayweek dd {
    padding-left: 215px;
  }
}

@media only screen and (min-width: 769px) {
  .news-list__item--head {
    float: left;
    clear: both;
  }
}

.news-list__item--head.saturday {
  color: #008ce6;
}

.news-list__item--head.holiday {
  color: #e60000;
}

.news-list__item--body {
  padding: 1px 0;
  position: relative;
}

@media only screen and (min-width: 769px) {
  .news-list__item--body {
    padding-left: 18%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .news-list__item--body {
    padding-left: 180px;
  }
}

.news-list__item--body:not(:first-of-type) {
  margin-top: 10px;
}

.news-list__item time {
  font-size: 1.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .news-list__item time {
    font-size: 1.4rem;
  }
}

.news-list__item .news-list__item__label,
.news-list__item .news-list__item__label--green,
.news-list__item .news-list__item__label--blue,
.news-list__item .news-list__item__label--red {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  border-radius: 50vw;
  min-width: 90px;
  padding: 0 20px;
  background: #808080;
  text-align: center;
  margin-right: 1em;
}

@media only screen and (max-width: 768px) {
  .news-list__item .news-list__item__label,
  .news-list__item .news-list__item__label--green,
  .news-list__item .news-list__item__label--blue,
  .news-list__item .news-list__item__label--red {
    margin-top: 10px;
  }
}

.news-list__item .news-list__item__label--green {
  background: #39b54a;
}

.news-list__item .news-list__item__label--blue {
  background: #0071bc;
}

.news-list__item .news-list__item__label--red {
  background: #f15a24;
}

.news-list__item a {
  text-decoration: underline;
  display: inline-block;
}

@media only screen and (min-width: 769px) {
  .news-list__item a {
    transition: 200ms;
  }
  .news-list__item a:hover {
    color: #f7931e;
  }
}

@media only screen and (max-width: 768px) {
  .news-list__item a {
    display: block;
    font-size: 1.6rem;
  }
}

.dots-line {
  margin-bottom: 17px;
}

@media only screen and (max-width: 768px) {
  .dots-line {
    margin-bottom: 27px;
  }
}

.dots-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #f7931e, #f7931e 2px, transparent 2px, transparent);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  background-position: left;
}

.dots-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #f7931e, #f7931e 2px, transparent 2px, transparent);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  background-position: left;
}

.btn {
  margin-top: 20px;
}

.btn a {
  display: inline-block;
  border-radius: 50vw;
  border: 2px solid #808080;
  min-width: 180px;
  color: #808080;
  padding: 4px 30px;
  transition: 200ms;
}

.btn a.current {
  background: #808080;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn a:hover {
    background: #808080;
    color: #fff;
  }
}

@media only screen and (max-width: 768px) {
  .btn a {
    padding: 5px 15px;
  }
}

.btn.bg a {
  background: #808080;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn.bg a:hover {
    background: transparent;
    color: #808080;
  }
}

.btn.right {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .btn.right {
    text-align: center;
  }
}

.btn.right a {
  text-align: center;
}

.btn.left {
  text-align: left;
}

.btn.left a {
  text-align: center;
}

.btn.arrow a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 15px;
  background-image: url("../img/common/btn-arrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  vertical-align: -1px;
  margin-left: 0.5em;
}

@media only screen and (min-width: 769px) {
  .btn.arrow a:hover::after {
    background-image: url("../img/common/btn-arrow--orange.svg");
  }
}

.btn.orange a {
  border-color: #f7931e;
  color: #f7931e;
}

.btn.orange a.current {
  background: #f7931e;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn.orange a:hover {
    background: #f7931e;
    color: #fff;
  }
}

.btn.orange.bg a {
  background: #f7931e;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn.orange.bg a:hover {
    background: #fff;
    color: #f7931e;
  }
}

.btn.green a {
  border-color: #39b54a;
  color: #39b54a;
}

.btn.green a.current {
  background: #39b54a;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn.green a:hover {
    background: #39b54a;
    color: #fff;
  }
}

.btn.green.bg a {
  background: #39b54a;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .btn.green.bg a:hover {
    background: #fff;
    color: #39b54a;
  }
}

.btn.large a {
  min-width: 216px;
  padding: 9px 15px;
}

.pkz .breadcrumb {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 85px;
}

@media only screen and (max-width: 768px) {
  .pkz .breadcrumb {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

.pkz .breadcrumb > li {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .pkz .breadcrumb > li {
    font-size: 1.3rem;
  }
}

.pkz .breadcrumb > li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #808080;
  border-right: 2px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: 1px;
  margin-left: 9px;
  margin-right: 14px;
}

@media only screen and (max-width: 768px) {
  .pkz .breadcrumb > li:not(:first-of-type)::before {
    margin-left: 2px;
    margin-right: 7px;
  }
}

.pkz .breadcrumb > li a {
  color: #0071bc;
  text-decoration: underline;
}

@media only screen and (min-width: 769px) {
  .pkz .breadcrumb > li a:hover {
    text-decoration: none;
  }
}

.pkz .breadcrumb > li span {
  color: #808080;
}

.pager {
  padding-top: 78px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .pager {
    padding-top: 58px;
    padding-bottom: 80px;
  }
}

.pager__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pager__list li a {
  border: 2px solid #f7931e;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  color: #f7931e;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 700;
  border-radius: 50vw;
  font-size: 1.8rem;
}

@media only screen and (min-width: 769px) {
  .pager__list li a {
    transition: 400ms;
  }
  .pager__list li a:hover {
    background: #f7931e;
    color: #fff;
  }
}

.pager__list li a.is-current {
  background: #f7931e;
  color: #fff;
}

.pager__list li:not(:last-child) {
  margin: 0 5px;
}

.entry {
  padding-bottom: 30px;
}

.entry .content > p {
  margin-bottom: 40px;
}

.entry h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: #fdf0d7;
  padding: 17px 35px;
  margin-bottom: 30px;
  border-radius: 5px;
}

@media only screen and (max-width: 768px) {
  .entry h2 {
    padding: 17px 20px;
  }
}

.entry h3 {
  font-size: 2rem;
  font-weight: 800;
  padding: 0 35px 20px;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .entry h3 {
    padding: 0 17px 20px;
  }
}

.entry h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #f7931e, #f7931e 2px, transparent 2px, transparent);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  background-position: left;
  position: absolute;
  bottom: 0;
  left: 0;
}

.entry h4 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  padding-left: 1.5em;
}

.entry h4::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50vw;
  background: #f7931e;
  margin-right: 0.5em;
  vertical-align: -2px;
  margin-left: -1.5em;
}

.entry h5 {
  font-size: 1.6rem;
  color: #f15a24;
  font-weight: 500;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .entry .float-box {
    font-size: 1.6rem;
  }
}

.entry .float-box img {
  display: block;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .entry .float-box img {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 769px) {
  .entry .float-box.left img {
    float: left;
    margin-right: 30px;
  }
}

@media only screen and (min-width: 769px) {
  .entry .float-box.right img {
    float: right;
    margin-left: 30px;
  }
}

.entry .float-box p:last-of-type {
  margin-bottom: 40px;
}

.entry .bg-box {
  padding: 30px;
  background: #fdf0d7;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry .bg-box {
    padding: 17px;
    font-size: 1.6rem;
  }
}

.entry .text-box {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry .text-box {
    font-size: 1.6rem;
  }
}

.entry .img-box .figure {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry .img-box .figure {
    margin-bottom: 20px;
  }
  .entry .img-box .figure:last-of-type {
    margin-bottom: 40px;
  }
}

.entry .img-box .figure figcaption {
  text-align: center;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .entry .img-box .figure figcaption {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 769px) {
  .entry .img-box.col-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: -20px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .entry .img-box.col-2 .figure {
    width: calc((100% / 2) - 40px);
    margin: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .entry .img-box.col-3 {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: -20px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .entry .img-box.col-3 .figure {
    width: calc((100% / 3) - 40px);
    margin: 20px;
  }
}

.entry ul {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry ul {
    font-size: 1.6rem;
  }
}

.entry ul.default {
  padding-left: 23px;
}

.entry ul.default li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50vw;
  background: #f7931e;
  margin-right: 6px;
  vertical-align: -2px;
  margin-left: -23px;
}

.entry ul.default li a {
  text-decoration: underline;
  color: #0071bc;
}

.entry ul.default li a:hover {
  text-decoration: none;
}

.entry ul.file-list li a {
  text-decoration: underline;
  color: #0071bc;
  padding-left: 28px;
  display: inline-block;
}

.entry ul.file-list li a:hover {
  text-decoration: none;
}

.entry ul.file-list li a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background-image: url(../img/common/icon_file.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  vertical-align: -5px;
  margin-right: 0.5em;
  margin-left: -28px;
}

.entry ul.file-list li a[href$="pdf"]::before {
  background-image: url(../img/common/icon_pdf.svg);
}

.entry ul.file-list li a[href$=".doc"]::before,
.entry ul.file-list li a[href$=".docx"]::before {
  background-image: url(../img/common/icon_word.svg);
}

.entry ul.file-list li a[href$=".xls"]::before,
.entry ul.file-list li a[href$=".xlsx"]::before {
  background-image: url(../img/common/icon_xlsl.svg);
}

.entry ol {
  margin-bottom: 40px;
  padding-left: 23px;
}

@media only screen and (max-width: 768px) {
  .entry ol {
    font-size: 1.6rem;
  }
}

.entry ol.default li::before {
  content: "1";
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50vw;
  background: #f7931e;
  margin-right: 0.7em;
  vertical-align: 1px;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-left: -23px;
}

.entry ol.default li a {
  text-decoration: underline;
  color: #0071bc;
}

.entry ol.default li a:hover {
  text-decoration: none;
}

.entry ol.default li:nth-of-type(1)::before {
  content: "1";
}

.entry ol.default li:nth-of-type(2)::before {
  content: "2";
}

.entry ol.default li:nth-of-type(3)::before {
  content: "3";
}

.entry ol.default li:nth-of-type(4)::before {
  content: "4";
}

.entry ol.default li:nth-of-type(5)::before {
  content: "5";
}

.entry ol.default li:nth-of-type(6)::before {
  content: "6";
}

.entry ol.default li:nth-of-type(7)::before {
  content: "7";
}

.entry ol.default li:nth-of-type(8)::before {
  content: "8";
}

.entry ol.default li:nth-of-type(9)::before {
  content: "9";
}

.entry ol.default li:nth-of-type(10)::before {
  content: "10";
}

.entry .btn-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 769px) {
  .entry .btn-box .btn:not(:last-of-type) {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .entry .btn-box .btn:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

.entry .btn-box .btn a {
  padding: 9px 15px;
  border-width: 3px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .entry .btn-box .btn a {
    font-size: 1.6rem;
  }
}

.entry dl.dotted-box {
  padding: 40px;
  border: 4px dotted #f7931e;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry dl.dotted-box {
    padding: 17px;
    font-size: 1.6rem;
  }
}

.entry dl.dotted-box dt.title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  .entry dl.dotted-box dt.title {
    line-height: 1.5;
  }
}

.entry dl.dotted-box dt.title::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50vw;
  background: #f7931e;
  margin-right: 0.5em;
  vertical-align: -2px;
}

.entry .define {
  margin-bottom: 40px;
}

.entry .define dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .entry .define dl {
    font-size: 1.6rem;
  }
}

.entry .define dl:not(:last-of-type) {
  margin-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  .entry .define dl.sp_row {
    flex-flow: column;
  }
  .entry .define dl.sp_row dt {
    width: 100%;
    padding: 21px 20px;
  }
  .entry .define dl.sp_row dd {
    width: 100%;
  }
}

.entry .define dl dt {
  width: 200px;
  background: #f7931e;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0 20px 0 35px;
  color: #fff;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .entry .define dl dt {
    width: 34.8%;
    padding: 0 15px;
  }
}

.entry .define dl dd {
  width: calc(100% - 200px);
  border: 2px solid #f7931e;
  padding: 19px 35px;
}

@media only screen and (max-width: 768px) {
  .entry .define dl dd {
    width: 65.2%;
    padding: 23px 17px;
  }
}

@media only screen and (max-width: 768px) {
  .entry .define.sp_row dl {
    flex-flow: column;
  }
  .entry .define.sp_row dl dt {
    width: 100%;
    padding: 21px 20px;
  }
  .entry .define.sp_row dl dd {
    width: 100%;
  }
}

.entry .line {
  margin: 40px 0;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #f7931e, #f7931e 2px, transparent 2px, transparent);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  background-position: left;
}

.entry table {
  border: 2px solid #f7931e;
  border-collapse: collapse;
}

@media only screen and (max-width: 768px) {
  .entry table {
    font-size: 1.6rem;
  }
}

.entry table th {
  background: #fdf0d7;
  font-weight: 500;
  border: 2px solid #f7931e;
  vertical-align: top;
}

.entry table td {
  border: 2px solid #f7931e;
}

.entry table.table__row {
  margin-bottom: 40px;
}

.entry table.table__row th {
  width: 200px;
  padding: 20px 35px;
  text-align: left;
  border-right: none;
}

@media only screen and (max-width: 768px) {
  .entry table.table__row th {
    width: 34.8%;
    text-align: left;
    padding: 17px;
  }
}

.entry table.table__row td {
  padding: 20px 35px;
  border-left: none;
}

@media only screen and (max-width: 768px) {
  .entry table.table__row td {
    padding: 17px;
  }
}

.entry table.table__colmun {
  margin-bottom: 40px;
}

.entry table.table__colmun th {
  padding: 20px 35px;
  border-bottom: none;
}

@media only screen and (max-width: 768px) {
  .entry table.table__colmun th {
    padding: 12px;
  }
}

.entry table.table__colmun td {
  padding: 22px 35px;
  border-top: none;
}

@media only screen and (max-width: 768px) {
  .entry table.table__colmun td {
    padding: 12px;
  }
}

.entry .content-slide {
  position: relative;
  margin-bottom: 40px;
}

.entry .entry-swiper {
  max-width: 86.207%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .entry .entry-swiper {
    width: calc(100% - 50px);
  }
}

.entry .swiper-button,
.entry .swiper-button-prev,
.entry .swiper-button-next {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 15px);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 9;
}

@media only screen and (max-width: 768px) {
  .entry .swiper-button,
  .entry .swiper-button-prev,
  .entry .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}

.entry .swiper-button-prev {
  background-image: url(../img/common/arrow-prev.svg);
  left: 0;
}

.entry .swiper-button-next {
  background-image: url(../img/common/arrow-next.svg);
  right: 0;
}

.entry .swiper-pagination {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.entry .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50vw;
  background: #ccc;
  margin: 0 7px;
}

@media only screen and (max-width: 768px) {
  .entry .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}

.entry .swiper-pagination-bullet-active {
  width: 15px;
  height: 15px;
  background: #f7931e;
}

@media only screen and (max-width: 768px) {
  .entry .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
  }
}

.entry .iframe,
.entry .map,
.entry .youtube {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 40px;
}

.entry iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page--top .section-hero--top img {
  width: 100%;
}

.page--top .section-news {
  padding-top: 72px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-news {
    padding-top: 59px;
    padding-bottom: 30px;
  }
}

.page--top .section-news .headline__title {
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-news .headline__title {
    margin-bottom: 30px;
  }
}

.page--top .section-topics {
  padding-top: 55px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics {
    padding-top: 30px;
    padding-bottom: 28px;
  }
}

.page--top .section-topics .headline__title {
  margin-bottom: 57px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics .headline__title {
    margin-bottom: 36px;
  }
}

.page--top .section-topics .topics-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics .topics-list {
    margin: -9px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .section-topics .topics-list {
    margin-left: -1vw;
    margin-right: -1vw;
  }
}

.page--top .section-topics .topics-list .item {
  width: calc((100% / 4) - 40px);
  margin-left: 20px;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics .topics-list .item {
    width: calc((100% / 2) - 18px);
    margin: 9px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .section-topics .topics-list .item {
    width: calc((100% / 4) - 2vw);
    margin-left: 1vw;
    margin-right: 1vw;
  }
}

.page--top .section-topics .topics-list .item a {
  display: block;
  padding-top: 100%;
  background-image: url(../img/top/topics-circle.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 99%;
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 50vw;
  overflow: hidden;
}

@media only screen and (min-width: 769px) {
  .page--top .section-topics .topics-list .item a:hover::after {
    width: 180%;
    height: 180%;
    opacity: 0;
    transition: 2000ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics .topics-list .item a {
    font-size: 4.5vw;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .section-topics .topics-list .item a {
    font-size: 2vw;
  }
}

.page--top .section-topics .topics-list .item a .img {
  text-align: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-topics .topics-list .item a .img {
    width: 60%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .section-topics .topics-list .item a .img {
    width: 70%;
  }
}

.page--top .section-topics .topics-list .item a::after {
  content: "";
  display: block;
  width: 0%;
  height: 0%;
  border-radius: 50vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  background-image: radial-gradient(transparent, rgba(255, 255, 255, 0.5));
}

@media only screen and (min-width: 769px) {
  .page--top .section-topics .topics-list .item a::after {
    transition: 0;
  }
}

.page--top .section-topics .topics-list .item__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50vw;
}

.page--top .section-calendar {
  padding-top: 75px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-calendar {
    padding-top: 28px;
    padding-bottom: 30px;
  }
}

.page--top .section-calendar .headline .lead {
  margin-top: 20px;
  margin-bottom: 35px;
  text-align: center;
}

.page--top .section-access {
  padding-top: 55px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-access {
    padding-top: 30px;
  }
}

.page--top .section-access .headline__title {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .page--top .section-access .headline__title {
    margin-bottom: 36px;
  }
}

.page--top .section-access .map {
  position: relative;
}

@media only screen and (min-width: 769px) {
  .page--top .section-access .map {
    padding-top: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .page--top .section-access .map {
    padding-top: 100%;
  }
}

.page--top .section-access .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page--top .localnav--top {
  padding-top: 75px;
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 769px) {
  .page--top .localnav--top ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media only screen and (min-width: 769px) {
  .page--top .localnav--top ul li {
    width: calc((100% / 3) - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.page--top .localnav--top ul li a {
  position: relative;
  display: block;
  border-radius: 20px;
  background: #f7931e;
  color: #fff;
  padding: 4px 35px 40px 20px;
  border: 2px solid #f7931e;
  transition: 200ms;
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li a {
    padding-bottom: 38px;
    padding: 4px 6vw 38px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .localnav--top ul li a {
    padding: 4px 5% 40px 6%;
  }
}

.page--top .localnav--top ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: 18px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li a::before {
    bottom: 16px;
  }
}

.page--top .localnav--top ul li a span {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li a span {
    font-size: 6.4vw;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .localnav--top ul li a span {
    font-size: 2.4vw;
  }
}

.page--top .localnav--top ul li a span::before {
  content: "";
  display: inline-block;
  width: 84px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li a span::before {
    width: 16vw;
    height: 16vw;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--top .localnav--top ul li a span::before {
    width: 25%;
    padding-top: 25%;
    height: auto;
  }
}

.page--top .localnav--top ul li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #fff, #fff 2px, transparent 2px, transparent);
  background-size: 12px 12px;
  background-repeat: repeat-x;
  background-position: left;
}

@media only screen and (min-width: 769px) {
  .page--top .localnav--top ul li a:hover {
    background: #fff;
    color: #f7931e;
  }
  .page--top .localnav--top ul li a:hover::before {
    border-color: #f7931e transparent transparent transparent;
  }
  .page--top .localnav--top ul li a:hover span {
    text-shadow: none;
  }
  .page--top .localnav--top ul li a:hover span::after {
    background-image: radial-gradient(circle farthest-side, #f7931e, #f7931e 2px, transparent 2px, transparent);
  }
}

.page--top .localnav--top ul li.zosho a span::before {
  background-image: url(../img/common/icon-book.png);
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li.zosho a span::before {
    margin-right: 8vw;
  }
}

.page--top .localnav--top ul li.new a span::before {
  background-image: url(../img/common/icon-new.png);
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li.new a span::before {
    margin-right: 8vw;
  }
}

.page--top .localnav--top ul li.bestreader a span::before {
  background-image: url(../img/common/icon-star.png);
}

@media only screen and (max-width: 768px) {
  .page--top .localnav--top ul li.bestreader a span::before {
    margin-right: 8vw;
  }
}

.page--public .localnav {
  padding-bottom: 45px;
}

.page--public .localnav__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .page--public .localnav__item {
    width: 30%;
  }
}

.page--public .localnav__item:not(:last-of-type) {
  margin-right: 10px;
}

.page--public .localnav__item a {
  min-width: 200px;
  height: 60px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px;
  transition: 400ms;
}

@media only screen and (max-width: 768px) {
  .page--public .localnav__item a {
    flex-flow: column;
    line-height: 1.375;
    min-width: auto;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 768px) {
  .page--public .localnav__item a span {
    display: block;
  }
}

.page--public .localnav__item.all a {
  background: #f7931e;
  border: 5px solid #f7931e;
  color: #fff;
  box-sizing: border-box;
}

@media only screen and (min-width: 769px) {
  .page--public .localnav__item.all a:hover {
    color: #f7931e;
    background: #fff;
  }
}

.page--public .localnav__item.paper a {
  background: #bfdbee;
}

@media only screen and (min-width: 769px) {
  .page--public .localnav__item.paper a:hover {
    color: #fff;
    background: #0071bc;
  }
}

.page--public .localnav__item.square a {
  background: #fbd6c8;
}

@media only screen and (min-width: 769px) {
  .page--public .localnav__item.square a:hover {
    color: #fff;
    background: #f15a24;
  }
}

@media only screen and (max-width: 768px) {
  .page--public .article-public .news-list__item--head {
    float: left;
  }
}

.page--public .article-public .news-list__item__label,
.page--public .article-public .news-list__item .news-list__item__label--green,
.news-list__item .page--public .article-public .news-list__item__label--green,
.page--public .article-public .news-list__item .news-list__item__label--blue,
.news-list__item .page--public .article-public .news-list__item__label--blue,
.page--public .article-public .news-list__item .news-list__item__label--red,
.news-list__item .page--public .article-public .news-list__item__label--red {
  font-size: 1.4rem;
}

@media only screen and (min-width: 769px) {
  .page--public .article-public .news-list__item__label,
  .page--public .article-public .news-list__item .news-list__item__label--green,
  .news-list__item .page--public .article-public .news-list__item__label--green,
  .page--public .article-public .news-list__item .news-list__item__label--blue,
  .news-list__item .page--public .article-public .news-list__item__label--blue,
  .page--public .article-public .news-list__item .news-list__item__label--red,
  .news-list__item .page--public .article-public .news-list__item__label--red {
    padding: 3px 15px;
  }
}

@media only screen and (max-width: 768px) {
  .page--public .article-public .news-list__item__label,
  .page--public .article-public .news-list__item .news-list__item__label--green,
  .news-list__item .page--public .article-public .news-list__item__label--green,
  .page--public .article-public .news-list__item .news-list__item__label--blue,
  .news-list__item .page--public .article-public .news-list__item__label--blue,
  .page--public .article-public .news-list__item .news-list__item__label--red,
  .news-list__item .page--public .article-public .news-list__item__label--red {
    margin: 0 0 15px 2.7vw;
  }
}

@media only screen and (min-width: 769px) {
  .page--public .article-public .news-list__item--body {
    padding-left: 16.5%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1160px) {
  .page--public .article-public .news-list__item--body {
    padding-left: 160px;
  }
}

.page--calendar .calendar-month {
  position: relative;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 57px;
}

@media only screen and (max-width: 768px) {
  .page--calendar .calendar-month {
    margin-bottom: 40px;
    width: 80%;
  }
}

.page--calendar .calendar-month__btn {
  display: block;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.page--calendar .calendar-month__btn__prev {
  background-image: url(../img/common/arrow-prev_wh.svg);
  left: 0;
}

.page--calendar .calendar-month__btn__next {
  background-image: url(../img/common/arrow-next_wh.svg);
  right: 0;
}

.page--calendar .calendar-month__text {
  font-family: "Glory", sans-serif;
}

.page--calendar .calendar-month__text span {
  display: block;
  text-align: center;
}

.page--calendar .calendar-month__text span.num {
  font-weight: 800;
  font-size: 9rem;
  line-height: 1;
}

.page--calendar .calendar-month__text span.en {
  font-weight: 600;
  font-size: 1.6rem;
}

.page--calendar .localnav {
  margin-bottom: 75px;
}

@media only screen and (max-width: 768px) {
  .page--calendar .localnav {
    margin-bottom: 55px;
  }
}

.page--calendar .localnav__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page--calendar .localnav__list li {
    width: 31%;
  }
}

.page--calendar .localnav__list li:not(:last-of-type) {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .page--calendar .localnav__list li:not(:last-of-type) {
    margin-right: 3vw;
  }
}

.page--calendar .localnav__list li a {
  padding: 9px 15px;
  min-width: 216px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .page--calendar .localnav__list li a {
    min-width: auto;
    display: block;
    padding: 4px 15px;
  }
}

.page--calendar .article-public {
  padding-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .page--calendar .article-public {
    padding-bottom: 53px;
  }
}

@media only screen and (min-width: 769px) {
  .page--calendar .article-public .news-list__item {
    padding: 22px 70px 22px;
  }
}

.page--calendar .article-public .news-list__item--head {
  font-weight: 500;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .page--calendar .article-public .news-list__item--head {
    font-size: 1.8rem;
  }
}

.page--calendar .article-public .news-list__item--head span {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Glory", sans-serif;
  margin-right: 10px;
}

/* 220127 - newsList */
.c-content_body {
  margin-bottom: 120px;
}

@media only screen and (max-width: 768px) {
  .c-content_body {
    margin-bottom: 60px;
  }
}

.c-newsList + .btn {
  margin-top: 20px;
}

.c-newsList {
  border-top: 4px dotted #f7931e;
  border-bottom: 4px dotted #f7931e;
}

.c-newsList a {
  text-decoration: underline;
}

.c-newsList a:hover {
  text-decoration: none;
}

.c-newsList_item:nth-of-type(even) {
  background: #fdf0d7;
}

.c-newsList_item_head {
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.c-newsList_item_head > * {
  font-size: 90%;
  color: #A95C0C;
}
.c-newsList_item_head > span {
  margin-left: 0.5em;
}

@media only screen and (min-width: 769px) {
  .c-newsList_item_def {
    display: flex;
    padding: 20px 60px;
  }
  .c-newsList_item_body {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .c-newsList_item_def {
    padding: 20px 0;
  }
  /* .c-newsList_item_head {
    align-items: center;
  } */
  .c-newsList_item_body {
    margin-top: 10px;
  }
}

/* 220127 - eventCalendar */
.p-eventMonth {
  position: relative;
  max-width: 496px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.p-eventMonth_txt {
  line-height: 1;
  text-align: center;
  font-family: "Glory", sans-serif;
  font-weight: 600;
}

.p-eventMonth_txt > * {
  display: block;
}

.p-eventMonth_txt_num {
  font-size: 9rem;
  font-weight: 800;
}

.p-eventMonth_txt_en {
  margin-top: 5px;
  font-weight: 600;
}

.p-eventMonth_btn {
  position: absolute;
  top: 50%;
  background-image: url(../img/common/arrow-prev_wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 64px;
  z-index: 5;
}

.p-eventMonth_btn.p-eventMonth_btn__prev {
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-eventMonth_btn.p-eventMonth_btn__next {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1);
  transform: translateY(-50%) scale(-1);
}

.p-eventcalendar {
  border-top: 4px dotted #f7931e;
  border-bottom: 4px dotted #f7931e;
}

.p-eventcalendar_item {
  padding: 20px 0;
}

.p-eventcalendar_item:nth-child(2n) {
  background: #fdf0d7;
}

.p-eventcalendar_item_ttl {
  white-space: nowrap;
  font-weight: 500;
}

.p-eventcalendar_item_ttl span {
  font-weight: 700;
  font-size: 3rem;
}

.p-eventcalendar_item_body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-eventcalendar_item.p-eventcalendar_item__sat .p-eventcalendar_item_ttl {
  color: #076baf;
}

.p-eventcalendar_item.p-eventcalendar_item__hol .p-eventcalendar_item_ttl {
  color: #c34349;
}

@media only screen and (min-width: 769px) {
  .p-eventcalendar_item_body {
    margin-left: 60px;
  }
  .p-eventcalendar_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 60px;
  }
  .p-eventcalendar_item_ttl {
    width: 8em;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .p-eventcalendar_item_body {
    margin-top: 10px;
  }
}

.c-eventlist_item:not(:first-child) {
  margin-top: 10px;
}

.c-eventlist_item_txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-eventlist_item_txt a {
  text-decoration: underline;
}

.c-eventlist_item_txt a:hover {
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  .c-eventlist_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-eventlist_item_txt {
    margin-left: 20px;
  }
}

/* 220127 - Pager */
.c-paging {
  margin-top: 100px;
}
.c-paging_list {
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-paging_list li:not(:first-of-type) {
  margin-left: 6px;
}
.c-paging_list li a {
  display: block;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7931e;
  color: #f7931e;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700;
  border-radius: 50%;
}
.c-paging_list li a.is-current,
.c-paging_list li a:hover {
  background: #f7931e;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-paging {
    margin-top: 50px;
  }
}

/* 220127 - Label */
.c-label,
.c-label02 {
  color: #fff;
  background-color: #ccc;
  border-radius: 15px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.c-label {
  width: 11em;
  margin-left: 20px;
}

.c-label02 {
  width: 8em;
}

.c-label.c-label__deepOrange {
  background-color: #f15a24;
}
.c-label.c-label__deepBlue {
  background-color: #0071bc;
}

.c-label02.c-label02__green {
  background-color: #39b54a;
}
.c-label02.c-label02__gray {
  background-color: #808080;
}
.c-label02.c-label02__blue {
  background-color: #3d70a8;
}

@media only screen and (max-width: 768px) {
  .c-label,
  .c-label02 {
    font-size: 1.3rem;
    height: 24px;
  }
}

/* 220311_下層タイトル部分 */
.c-subVisual {
  height: 400px;
  background: #fdf0d7;
  display: flex;
}
.c-pageTtl {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pageTtl_ttl {
  font-size: 6rem;
  font-weight: 700;
  width: 90%;
  max-width: 1160px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .c-subVisual {
    height: 30vh;
  }
  .c-pageTtl {
    height: 100%;
  }
  .c-pageTtl_ttl {
    font-size: 2.6rem;
  }
}
