body {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body.spmenu_active {
  overflow: hidden;
}
body.search_mode {
  overflow: hidden;
}
body.search_mode #search_modal {
  display: flex;
}

img {
  max-width: 100%;
}

.root {
  position: relative;
  background: #f8f8f8;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
}
.root::before {
  content: "";
  height: 360px;
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 959px) {
  .root {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .root {
    padding-top: 120px;
  }
}
.root > header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  padding: 11px 0;
  margin: auto;
  box-sizing: border-box;
  transition: 0.3s all;
  height: 100px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px) grayscale(80%);
}
@media only screen and (max-width: 959px) {
  .root > header {
    padding: 0px 0;
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .root > header {
    padding: 10px 0;
    height: 120px;
  }
}
.root > header.hidden {
  transform: translateY(-100%);
}
.root > header .header_body {
  width: 1230px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
}
.root > header .header_body h1 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 500;
}
.root > header .header_body > *:first-child, .root > header .header_body > *:last-child {
  width: 25%;
}
.root > header .header_body > *.logo_zennoh a {
  display: table;
  transition: 0.3s all;
}
.root > header .header_body > *.logo_zennoh a:hover, .root > header .header_body > *.logo_zennoh a:active {
  opacity: 0.7;
  transform: translateY(2px);
}
.root > header .header_body > *.logo_zennoh img {
  max-height: 40px;
  display: block;
  margin-top: 10px;
  transition: 0.3s all;
}
@media only screen and (max-width: 959px) {
  .root > header .header_body > *.logo_zennoh img {
    max-height: 30px;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .root > header .header_body > *.logo_zennoh img {
    max-height: 30px;
    margin-top: 5px;
  }
}
.root > header .header_body > *.logo_weekly {
  pointer-events: none;
}
.root > header .header_body > *.logo_weekly a {
  pointer-events: auto;
  margin: auto;
  display: table;
  transition: 0.3s all;
}
.root > header .header_body > *.logo_weekly a:hover, .root > header .header_body > *.logo_weekly a:active {
  opacity: 0.7;
  transform: translateY(2px);
}
@media only screen and (max-width: 959px) {
  .root > header .header_body > *.logo_weekly {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .root > header .header_body > *.logo_weekly {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
  }
}
.root > header .header_body > *.logo_weekly img {
  max-height: 70px;
  display: block;
  margin: auto;
  transition: 0.3s all;
}
@media only screen and (max-width: 959px) {
  .root > header .header_body > *.logo_weekly img {
    max-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .root > header .header_body > *.logo_weekly img {
    max-height: 50px;
  }
}
.root > header .header_body > *.hnav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: end;
}
.root > header .header_body > *.hnav ul li {
  margin: 0 0 0 10px;
  padding: 0;
}
.root > header .header_body > *.hnav ul li a {
  position: relative;
  z-index: 2;
}
.root > header .header_body > *.hnav ul li a.btn_search {
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: block;
  background: #ffffff url(../img/icon_search.webp) 50% 50%/contain no-repeat;
  text-indent: -1000px;
  overflow: hidden;
  white-space: nowrap;
}
.root > header .header_body > *.hnav ul li a.btn_search:hover, .root > header .header_body > *.hnav ul li a.btn_search:active {
  background-image: url(../img/icon_search_white.webp);
}
.root > header .header_body > *.hnav ul li a.btn_hamburger {
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: block;
  background: #333333;
  position: relative;
}
.root > header .header_body > *.hnav ul li a.btn_hamburger:hover, .root > header .header_body > *.hnav ul li a.btn_hamburger:active {
  background-color: #e70014;
}
.root > header .header_body > *.hnav ul li a.btn_hamburger:hover span:nth-child(1), .root > header .header_body > *.hnav ul li a.btn_hamburger:active span:nth-child(1) {
  transform: rotate(45deg) scaleX(80%);
}
.root > header .header_body > *.hnav ul li a.btn_hamburger:hover span:nth-child(3), .root > header .header_body > *.hnav ul li a.btn_hamburger:active span:nth-child(3) {
  transform: rotate(-45deg) scaleX(80%);
}
.root > header .header_body > *.hnav ul li a.btn_hamburger span {
  display: block;
  width: 16px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: calc(50% - 8px);
  top: 50%;
  transition: 0.3s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-indent: -1000px;
  overflow: hidden;
  white-space: nowrap;
}
.root > header .header_body > *.hnav ul li a.btn_hamburger span:nth-child(1) {
  transform: translateY(-6px);
  transform-origin: 100% 0;
}
.root > header .header_body > *.hnav ul li a.btn_hamburger span:nth-child(3) {
  transform: translateY(6px);
  transform-origin: 100% 0;
}
.root > header .header_body > *.hnav ul li a {
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s all;
  width: 50px;
}
.root > header .header_body > *.hnav ul li a:hover, .root > header .header_body > *.hnav ul li a:active {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #e70014;
}
@media only screen and (max-width: 767px) {
  .root > header .header_body > *.hnav ul li a {
    width: 40px;
  }
}
.root .content {
  width: 1230px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 0 15px 70px;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .root .content {
    display: block;
    width: auto;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .root .content {
    padding-bottom: 0;
  }
}
.root .content > main {
  width: 900px;
}
@media only screen and (min-width: 960px) and (max-width: 1229px) {
  .root .content > main {
    width: calc(100vw - 330px);
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 959px) {
  .root .content > main {
    padding-right: 0;
    margin-bottom: 70px;
    width: auto;
  }
}
.root .content > aside {
  width: 260px;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 959px) {
  .root .content > aside {
    width: auto;
  }
}
.root .content > aside > div#sidebar {
  width: 260px;
  position: absolute;
}
@media only screen and (max-width: 959px) {
  .root .content > aside > div#sidebar {
    position: static !important;
    display: flex;
    width: auto;
    flex-wrap: wrap;
    gap: 20px;
    background: #eeeeee;
    margin: 0 -15px;
    padding: 15px 15px 60px;
  }
  .root .content > aside > div#sidebar > * {
    margin: 0;
    width: calc(50% - 10px);
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .root .content > aside > div#sidebar {
    display: block;
    width: auto;
    background: #eeeeee;
    margin: 0 -15px;
    padding: 1px 15px 60px;
  }
  .root .content > aside > div#sidebar > * {
    margin: 15px 0;
    width: auto;
  }
}
.root > footer {
  z-index: 1;
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.13);
}
.root > footer div._body {
  width: 1200px;
  max-width: 100%;
  margin: auto;
}
.root > footer .fnav {
  padding: 2em 0;
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 959px) {
  .root > footer .fnav {
    padding: 2em 0 2em;
    min-width: 33.3%;
    justify-content: start;
  }
}
@media only screen and (max-width: 767px) {
  .root > footer .fnav {
    padding: 2em 0 2em;
    min-width: 50%;
    justify-content: start;
  }
}
.root > footer .fnav li {
  padding: 0 1em;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
@media only screen and (max-width: 959px) {
  .root > footer .fnav li {
    min-width: 33.3%;
    padding: 0.25ex 1em;
  }
}
@media only screen and (max-width: 767px) {
  .root > footer .fnav li {
    min-width: 50%;
    padding: 0.25ex 1em;
  }
}
.root > footer .fnav li::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  transform: rotate(15deg);
  background: #cccccc;
  right: 0;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 959px) {
  .root > footer .fnav li::after {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .root > footer .fnav li::after {
    content: none;
  }
}
.root > footer .fnav li:last-child::after {
  content: none;
}
.root > footer .fnav a {
  padding: 0.5em 1ex;
  text-decoration: none;
  color: #313131;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s all;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 959px) {
  .root > footer .fnav a {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .root > footer .fnav a {
    display: block;
  }
}
.root > footer .fnav a::before {
  display: inline-block;
  background: url(../img/arrow_btn_tri.webp) 50% 50%/5px 5px no-repeat;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5ex;
  transition: 0.3s all;
}
@media only screen and (max-width: 959px) {
  .root > footer .fnav a::before {
    content: "";
  }
}
@media only screen and (max-width: 767px) {
  .root > footer .fnav a::before {
    content: "";
  }
}
.root > footer .fnav a::after {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: -10%;
}
.root > footer .fnav a.ext::after {
  content: "";
  background: url(../img/icon_ext.webp) 50% 50%/contain no-repeat;
}
.root > footer .fnav a:hover, .root > footer .fnav a:active {
  color: #e70014;
  background-color: #ffd8db;
}
.root > footer .fnav a:hover::after, .root > footer .fnav a:active::after {
  transform: scaleX(1);
}
.root > footer .logo_zennoh {
  margin: 1.5em auto 1.5em;
  text-align: center;
  display: table;
  transition: 0.3s all;
}
.root > footer .logo_zennoh:hover, .root > footer .logo_zennoh:active {
  opacity: 0.7;
  transform: translateY(2px);
}
.root > footer .logo_zennoh img {
  display: block;
  max-height: 50px;
}
.root > footer .copyright {
  font-family: "Jost", sans-serif;
  text-align: center;
  color: #444444;
  font-size: 12px;
  letter-spacing: 0.1ex;
  font-weight: 500;
  padding-bottom: 1em;
}

section.section_relate,
section.section_latest {
  margin-top: 2.5em;
}
section.section_relate h2,
section.section_latest h2 {
  font-size: 20px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  padding-left: 0.8em;
  position: relative;
  margin: 1ex 0 1ex;
  line-height: 1.4;
}
section.section_relate h2::before,
section.section_latest h2::before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  background: #e70014;
  left: 0;
  line-height: 1.6;
}
section.section_relate > ._footer,
section.section_latest > ._footer {
  text-align: center;
  margin-top: 1em;
}
section.section_relate > ._footer ._btn,
section.section_latest > ._footer ._btn {
  border-radius: 2em;
  border: 1px #e70014 solid;
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  padding: 1ex 3em;
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.1ex;
  transition: 0.3s all;
}
section.section_relate > ._footer ._btn:hover, section.section_relate > ._footer ._btn:active,
section.section_latest > ._footer ._btn:hover,
section.section_latest > ._footer ._btn:active {
  background: #e70014;
  color: #ffffff;
}
section.section_relate > ._footer ._btn:hover::before, section.section_relate > ._footer ._btn:active::before,
section.section_latest > ._footer ._btn:hover::before,
section.section_latest > ._footer ._btn:active::before {
  background-image: url(../img/arrow_btn_tri_white.webp);
}
section.section_relate > ._footer ._btn::before,
section.section_latest > ._footer ._btn::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow_btn_tri.webp) 50% 50%/5px 5px no-repeat;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5ex;
  transition: 0.3s all;
}

.center {
  text-align: center;
}

ul.article_list {
  padding: 0;
  margin: -10px;
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  ul.article_list {
    margin: 5px -5px;
  }
}
ul.article_list li {
  padding: 20px 10px;
  margin: 0;
  width: 33.3%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 959px) {
  ul.article_list li {
    width: 33.3%;
  }
}
@media only screen and (max-width: 767px) {
  ul.article_list li {
    width: 50%;
    padding: 10px 5px;
  }
}
ul.article_list li a {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: 0.3s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  color: #333333;
  height: 100%;
}
ul.article_list li a.new::before {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../img/ribbon_new.webp) 100% 100%/contain no-repeat;
}
ul.article_list li a:link, ul.article_list li a:visited {
  color: #333333;
}
ul.article_list li a:hover, ul.article_list li a:active {
  background-color: #ffd8db;
  transform: translateY(3px);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
ul.article_list li a:hover ._img img, ul.article_list li a:active ._img img {
  transform: scale(1.1);
}
ul.article_list li a.new::after {
  content: "";
  display: block;
}
ul.article_list li a ._img {
  aspect-ratio: 28/20;
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
}
ul.article_list li a ._img img {
  display: block;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.5s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
ul.article_list li a ._body {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  ul.article_list li a ._body {
    padding: 10px 10px;
  }
}
ul.article_list li a ._label {
  line-height: 1;
}
ul.article_list li a ._title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03ex;
  margin: 0.5ex 0 0.75ex;
  flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  ul.article_list li a ._title {
    font-size: 16px;
    margin: 0.5ex 0 0.25ex;
  }
}
ul.article_list li a ._footer {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  line-height: 1.4;
  margin: 0.5ex -0.5ex 0;
}
@media only screen and (max-width: 767px) {
  ul.article_list li a ._footer {
    justify-content: start;
  }
}
ul.article_list li a ._date {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1ex;
  font-weight: 500;
  margin: 0 0.5ex;
}
ul.article_list li a ._depart {
  font-size: 14px;
  letter-spacing: 0.1ex;
  font-weight: 500;
  margin: 0 0.5ex;
}

.label {
  font-size: 14px;
  background: #333333;
  font-weight: 500;
  letter-spacing: 0.05ex;
  display: inline-block;
  color: #ffffff;
  line-height: 1.4;
  padding: 0 1ex;
  border-radius: 3px;
}
@media only screen and (max-width: 767px) {
  .label {
    font-size: 12px;
  }
}

.side_ranking,
.side_category,
.side_booklet {
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  margin: 20px 0;
}
.side_ranking h2,
.side_category h2,
.side_booklet h2 {
  font-size: 16px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  margin: 1ex 0 1ex;
}
.side_ranking h2::before,
.side_category h2::before,
.side_booklet h2::before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  background: #e70014;
  transform: scaleY(0.7);
  left: 0;
  line-height: 1.6;
}
@media only screen and (min-width: 960px) {
  .side_ranking:first-child,
  .side_category:first-child,
  .side_booklet:first-child {
    margin-top: 0;
  }
}

.side_ranking_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ranking_tab {
  display: flex;
  margin: 0 1ex 0 0;
  padding: 0;
  list-style-type: none;
}
.ranking_tab > li {
  margin: 0;
  padding: 0;
  position: relative;
}
.ranking_tab > li::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #cccccc;
  transform: scaleY(0.7);
}
.ranking_tab > li:last-child::after {
  content: none;
}
.ranking_tab a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  color: #a0a0a0;
  font-weight: 700;
  display: block;
  padding: 0 1ex;
  position: relative;
  transition: 0.3s all;
}
.ranking_tab a.active {
  color: #333333;
}
.ranking_tab a:hover, .ranking_tab a:active {
  color: #e70014;
}

.ranking_content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ranking_content > li {
  margin: 0;
  padding: 0;
  display: none;
  opacity: 0;
}

.ranking_list {
  margin: 0;
  padding: 0 0 10px;
  list-style-type: none;
}
.ranking_list li {
  margin: 0;
  padding: 0;
}
.ranking_list li > a {
  text-decoration: none;
  color: #333333;
  display: flex;
  padding: 10px 20px;
  transition: 0.3s all;
}
.ranking_list li > a:hover, .ranking_list li > a:active {
  background-color: #ffd8db;
}
.ranking_list li ._img > div {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.ranking_list li ._img > div img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ranking_list li ._body {
  flex-grow: 1;
  padding-left: 15px;
}
.ranking_list li ._attr {
  display: flex;
  align-items: center;
  justify-content: start;
  line-height: 1.2;
}
.ranking_list li ._order {
  color: #e70014;
  font-size: 12px;
  margin-right: 0.8em;
  font-weight: 700;
  white-space: nowrap;
}
.ranking_list li ._order ._num {
  font-family: "Jost", sans-serif;
  font-size: 14px;
}
.ranking_list li ._date {
  font-family: "Jost", sans-serif;
  color: #333333;
  font-size: 12px;
  letter-spacing: 0.1ex;
  font-weight: 600;
}
.ranking_list li ._title {
  margin-top: 0.6ex;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category_list {
  margin: 0;
  padding: 0 0 10px;
  list-style-type: none;
}
.category_list li {
  margin: 0;
  padding: 0;
  position: relative;
}
.category_list li::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto;
  background: #e5e5e5;
  width: calc(100% - 40px);
}
.category_list li:last-child::after {
  content: none;
}
.category_list li a {
  text-decoration: none;
  color: #333333;
  display: block;
  padding: 1.1ex 20px 1.1ex 36px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  background: url(../img/arrow_btn_tri.webp) 25px 50%/5px 5px no-repeat;
  transition: 0.3s all;
  font-size: 14px;
}
.category_list li a:hover, .category_list li a:active {
  background-color: #ffd8db;
}

.side_booklet .booklet_thumb {
  padding: 0 20px;
  margin: 10px auto;
  max-width: 100%;
}
.side_booklet .booklet_thumb a {
  display: block;
  margin: auto;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  transition: 0.3s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  width: 260px;
  max-width: 100%;
}
.side_booklet .booklet_thumb a img {
  display: block;
  max-width: 100%;
}
.side_booklet .booklet_thumb a:hover, .side_booklet .booklet_thumb a:active {
  transform: translateY(3px);
  filter: brightness(1.1);
}
.side_booklet .booklet_thumb a:hover ._img img, .side_booklet .booklet_thumb a:active ._img img {
  transform: scale(1.1);
}
.side_booklet ._footer {
  text-align: center;
  padding: 10px 0 20px;
}
.side_booklet ._btn {
  border-radius: 2em;
  border: 1px #d2d2d2 solid;
  background: #f5f5f5;
  display: inline-block;
  vertical-align: middle;
  padding: 1ex 1em;
  text-decoration: none;
  color: #333333;
  letter-spacing: 0.1ex;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s all;
}
.side_booklet ._btn:hover, .side_booklet ._btn:active {
  border: 1px #e70014 solid;
  background: #e70014;
  color: #ffffff;
}
.side_booklet ._btn:hover::before, .side_booklet ._btn:active::before {
  background-image: url(../img/arrow_btn_tri_white.webp);
}
.side_booklet ._btn::before {
  transition: 0.3s all;
  content: "";
  display: inline-block;
  background: url(../img/arrow_btn_tri.webp) 50% 50%/5px 5px no-repeat;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5ex;
}

#sp_menu {
  width: 100svw;
  height: 100svh;
  background: #f7f5f2;
  position: fixed;
  top: 0;
  left: 0;
  color: #313131;
  transition: 0.3s all;
  z-index: 220;
  display: none;
  box-sizing: border-box;
  overflow: auto;
}
.spmenu_active #sp_menu {
  display: block;
}

.hbnav {
  width: 1230px;
  padding: 0 15px;
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
}
.hbnav ._head {
  display: flex;
  padding: 11px 0;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hbnav ._head {
    padding: 10px 0;
  }
}
.hbnav ._head ._dummy {
  width: 50px;
}
@media only screen and (max-width: 767px) {
  .hbnav ._head ._dummy {
    display: none;
  }
}
.hbnav ._head .logo_zennoh img {
  max-height: 70px;
  display: block;
  margin: auto;
  transition: 0.3s all;
}
@media only screen and (max-width: 959px) {
  .hbnav ._head .logo_zennoh img {
    max-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hbnav ._head .logo_zennoh img {
    max-height: 50px;
  }
}
.hbnav ._head ._btn {
  display: block;
  background: #333333;
  aspect-ratio: 1/1;
  border-radius: 50% 50%;
  width: 50px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hbnav ._head ._btn {
    width: 40px;
  }
}
.hbnav ._head ._btn#hbnav_btn_close::before, .hbnav ._head ._btn#hbnav_btn_close::after {
  content: "";
  display: block;
  height: 1px;
  width: 45%;
  background: #ffffff;
  top: 50%;
  left: 50%;
  position: absolute;
  transition: 0.3s all;
}
.hbnav ._head ._btn#hbnav_btn_close::before {
  transform: translateX(-50%) rotate(40deg);
}
.hbnav ._head ._btn#hbnav_btn_close::after {
  transform: translateX(-50%) rotate(-40deg);
}
.hbnav ._head ._btn#hbnav_btn_close:hover::before, .hbnav ._head ._btn#hbnav_btn_close:active::before {
  transform: translateX(-50%) rotate(-40deg);
}
.hbnav ._head ._btn#hbnav_btn_close:hover::after, .hbnav ._head ._btn#hbnav_btn_close:active::after {
  transform: translateX(-50%) rotate(40deg);
}
.hbnav ._body {
  padding-bottom: 30px;
}
.hbnav ._section {
  background: #ffffff;
  padding: 5px 0 15px;
  border-radius: 5px;
  box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767px) {
  .hbnav ._section {
    padding: 15px 0 5px;
  }
}
.hbnav ._section ._title {
  font-size: 16px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  padding-left: 1em;
  position: relative;
  margin: 1ex 0 1ex;
  line-height: 1.4;
  color: #333333;
}
.hbnav ._section ._title::before {
  content: "";
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  background: #e70014;
  left: 0;
  line-height: 1.6;
}
.hbnav ._section p {
  padding: 1em 40px;
}
@media only screen and (max-width: 959px) {
  .hbnav ._section p {
    padding: 0 20px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .hbnav ._section p {
    display: block;
    padding: 0 20px 5px;
  }
}
.hbnav ._section ul {
  margin: 0;
  padding: 0 25px 5px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 959px) {
  .hbnav ._section ul {
    padding: 0 10px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .hbnav ._section ul {
    display: block;
    padding: 0 0 5px;
  }
}
.hbnav ._section ul li {
  width: 20%;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
@media only screen and (min-width: 960px) and (max-width: 1229px) {
  .hbnav ._section ul li {
    width: 25%;
  }
}
@media only screen and (max-width: 959px) {
  .hbnav ._section ul li {
    width: 33.3%;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .hbnav ._section ul li {
    width: auto;
    padding: 0;
    display: block;
  }
  .hbnav ._section ul li::after {
    content: "";
    display: block;
    width: calc(100% - 40px);
    height: 1px;
    margin: auto;
    background: #e5e5e5;
  }
  .hbnav ._section ul li:last-child::after {
    content: none;
  }
}
.hbnav ._section ul li a {
  border: 1px solid #f7b2b8;
  border-radius: 4px;
  color: #333333;
  text-decoration: none;
  flex-grow: 1;
  padding: 15px 15px 15px 35px;
  line-height: 1.3;
  min-height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #ffffff url(../img/arrow_btn_tri.webp) 20px 50%/5px 5px no-repeat;
  transition: 0.3s all;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .hbnav ._section ul li a {
    padding: 15px 20px 15px 40px;
    background-position: 25px 50%;
    border: none;
    background-color: transparent;
    min-height: auto;
  }
}
.hbnav ._section ul li a:hover, .hbnav ._section ul li a:active {
  background-color: #ffd8db;
}
.hbnav ._section + ._section {
  margin-top: 40px;
}

.totop {
  position: fixed;
  width: 100%;
  z-index: 100;
  bottom: -100px;
  transition: 0.3s bottom;
  pointer-events: none;
}
.totop.finished {
  position: absolute;
  bottom: auto;
}
.totop.active {
  bottom: 20px;
}
.totop > div {
  margin: auto;
  position: relative;
}
.totop > div a {
  margin: -32px 10px 16px auto;
  transition: 0.3s all;
  width: 60px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.5019607843);
  border: 1px solid #333333;
  display: block;
  border-radius: 50% 50%;
}
.totop > div a img {
  display: block;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .totop > div a {
    margin: -40px auto 16px;
  }
}
.totop > div a:hover, .totop > div a:active {
  background: #ffffff;
  transform: translateY(3px);
  opacity: 0.7;
}

/* Home */
.mainimg {
  position: relative;
  overflow: hidden;
  --swiper-navigation-color: #ffffff;
}
@media only screen and (max-width: 959px) {
  .mainimg {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .mainimg {
    margin-top: 0;
  }
}
.mainimg .swiper-slide {
  max-width: 100%;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 900/500;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mainimg .swiper-slide {
    aspect-ratio: 340/500;
  }
}
.mainimg img._bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainimg img._bg._pc {
  display: block;
}
.mainimg img._bg._sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mainimg img._bg._pc {
    display: none;
  }
  .mainimg img._bg._sp {
    display: block;
  }
}
.mainimg a {
  text-decoration: none;
}
.mainimg a:hover ._thumb img, .mainimg a:active ._thumb img {
  filter: brightness(1.1);
}
.mainimg a:hover ._thumb ._btn, .mainimg a:active ._thumb ._btn {
  background-color: #ff293c;
}
.mainimg ._thumb {
  position: absolute;
  text-align: center;
  top: 50%;
  right: 6.6666666667%;
  width: 28.8888888889%;
  transition: 0.3s all;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .mainimg ._thumb {
    top: 24%;
    right: auto;
    left: 50%;
    width: 58.8235294118%;
    transform: translateX(-50%);
    margin: auto;
  }
}
.mainimg ._thumb img {
  display: block;
  max-width: 100%;
  transition: 0.3s all;
}
.mainimg ._thumb ._btn {
  background: #e70014 url(../img/arrow_btn.webp) 20px 50%/14px 11px no-repeat;
  color: #ffffff;
  font-weight: 500;
  display: table;
  padding: 0.8ex 1em 1.2ex 40px;
  border-radius: 4px;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.1ex;
  margin: 1em auto 0;
  transition: 0.3s all;
}
@media only screen and (max-width: 767px) {
  .mainimg ._thumb ._btn {
    font-size: 4vw;
  }
}
.mainimg .swiper-button-next::after,
.mainimg .swiper-button-prev::after {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.mainimg .swiper-pagination {
  bottom: 8px !important;
  pointer-events: none;
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-inactive-color: #ffffff66;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 7px;
}
.mainimg .swiper-pagination-bullet {
  transition: 0.2s all;
  pointer-events: auto;
  bottom: 0;
}
.mainimg .swiper-pagination-bullet.centered {
  margin-left: 41px !important;
}
.mainimg .dummy_tail {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
}
.mainimg .swiper-stopbtn {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 2;
  cursor: pointer;
}
.mainimg .swiper-stopbtn.hidden {
  display: none;
}
.mainimg .swiper-stopbtn::before {
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/swiper_btn_stop.webp) 50% 50%/contain no-repeat;
  bottom: 0;
}
.mainimg .swiper-stopbtn.active::before {
  background: url(../img/swiper_btn_play.webp) 50% 50%/contain no-repeat;
}
.mainimg a.lookup_slide {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mainimg a.lookup_slide > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) brightness(0.5) blur(5px);
  transform: scale(1.05);
}
.mainimg a.lookup_slide ._lookup {
  aspect-ratio: 280/200;
  height: 100%;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .mainimg a.lookup_slide ._lookup {
    height: auto;
    width: 100%;
    transform: translateY(65%);
  }
}
.mainimg a.lookup_slide ._lookup > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainimg a.lookup_slide ._desc {
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: start;
  display: flex;
  flex-direction: column;
  padding-left: 60px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .mainimg a.lookup_slide ._desc {
    height: 100%;
    width: 100%;
    aspect-ratio: 340/258;
    justify-content: start;
    padding: 0;
  }
  .mainimg a.lookup_slide ._desc ._top,
  .mainimg a.lookup_slide ._desc ._bottom {
    position: absolute;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .mainimg a.lookup_slide ._desc ._top {
    top: 0;
    aspect-ratio: 340/161;
  }
  .mainimg a.lookup_slide ._desc ._bottom {
    bottom: 0;
    aspect-ratio: 340/99;
    text-align: center;
  }
}
.mainimg a.lookup_slide ._desc ._top,
.mainimg a.lookup_slide ._desc ._bottom {
  width: 100%;
}
.mainimg a.lookup_slide ._desc ._h {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.2ex;
}
.mainimg a.lookup_slide ._desc ._title {
  line-height: 1.6;
  width: 40%;
  margin: 1ex 0 2em;
  font-size: 27px;
}
@media only screen and (max-width: 767px) {
  .mainimg a.lookup_slide ._desc ._title {
    width: auto;
    font-size: 5vw;
  }
}
.mainimg a.lookup_slide ._desc ._title > span {
  color: #333333;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 5%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 95%, rgba(255, 255, 255, 0) 95%);
  letter-spacing: 0.1ex;
  font-weight: 700;
}
.mainimg a.lookup_slide ._desc ._btn {
  background: #e70014 url(../img/arrow_btn.webp) 20px 50%/14px 11px no-repeat;
  color: #ffffff;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  padding: 0.8ex 1em 1.2ex 40px;
  border-radius: 4px;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.1ex;
  transition: 0.3s all;
}
@media only screen and (max-width: 767px) {
  .mainimg a.lookup_slide ._desc ._btn {
    font-size: 4vw;
  }
}

/* article */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 1em 0 1.4em;
  list-style-type: none;
  font-size: 14px;
  color: #999999;
  font-weight: 600;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 0 1em;
    font-size: 13px;
  }
}
.breadcrumb a {
  color: #555555;
  text-decoration: none;
}
.breadcrumb a:hover, .breadcrumb a:active {
  text-decoration: underline;
}
.breadcrumb > li {
  margin: 0;
  padding: 0;
  position: relative;
}
.breadcrumb > li::after {
  content: ">";
  display: inline-block;
  margin: 0 0.8em;
}
.breadcrumb > li:last-child::after {
  content: none;
}

.main_content,
article {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 30px 60px;
}
@media only screen and (min-width: 960px) and (max-width: 1229px) {
  .main_content,
  article {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 959px) {
  .main_content,
  article {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .main_content,
  article {
    padding: 15px 15px;
    margin: 0 -15px;
  }
}
.main_content::after,
article::after {
  content: "";
  display: block;
  clear: both;
}
.main_content hr,
.main_content hr.wp-block-separator,
article hr,
article hr.wp-block-separator {
  border: none;
  border-top: 1px solid #e5e5e5;
  height: 0;
  width: 100%;
  margin: 2em 0;
}
.main_content a:link, .main_content a:visited,
article a:link,
article a:visited {
  color: #e70014;
}
.main_content a:hover, .main_content a:active,
article a:hover,
article a:active {
  color: #ac2000;
}
.main_content a:not(:has(img)):not(:has(div))::after,
article a:not(:has(img)):not(:has(div))::after {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: -10%;
}
.main_content a:not(:has(img)):not(:has(div)).ext::after,
article a:not(:has(img)):not(:has(div)).ext::after {
  content: "";
  background: url(../img/icon_ext.webp) 50% 50%/contain no-repeat;
}
.main_content a:not(:has(img)):not(:has(div)).pdf::after,
article a:not(:has(img)):not(:has(div)).pdf::after {
  content: "";
  background: url(../img/icon_pdf.webp) 50% 50%/contain no-repeat;
}
.main_content h2,
article h2 {
  background: #f5f5f5;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  padding: 0.5ex 1ex;
  letter-spacing: 0.1ex;
  margin-top: 2em;
}
@media only screen and (max-width: 767px) {
  .main_content h2,
  article h2 {
    font-size: 20px;
  }
}
.main_content h3,
article h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  padding: 1ex 0 1.5ex;
}
.main_content h3::before, .main_content h3::after,
article h3::before,
article h3::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  bottom: 0;
}
.main_content h3::before,
article h3::before {
  background: #535353;
  width: 100%;
}
.main_content h3::after,
article h3::after {
  background: #e70014;
  width: 100px;
}
@media only screen and (max-width: 767px) {
  .main_content h3,
  article h3 {
    font-size: 19px;
  }
}
.main_content h4,
article h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 18px;
  background: url(../img/h4_bg.webp) 0% 50%/8px 8px no-repeat;
}
.main_content h5,
article h5 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin: 1em 0 1ex;
  color: #730000;
}
.main_content h6,
article h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 1em 0 1ex;
}
.main_content figure,
article figure {
  margin: 1em 0;
  padding: 0;
}
.main_content figure img,
article figure img {
  vertical-align: middle;
  max-width: 100%;
}
.main_content figure figcaption,
article figure figcaption {
  text-align: center;
  font-size: 14px;
  padding: 1ex 0;
}

.article_head {
  border-left: 6px solid var(--category-color);
  padding-left: 20px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .article_head {
    padding-left: 15px;
  }
}
.article_head ._category {
  font-size: 16px;
  color: var(--category-color);
  font-weight: 600;
  line-height: 1.2;
}
.article_head h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  margin: 0.2ex 0 0.8ex;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .article_head h1 {
    font-size: 22px;
  }
}
.article_head ._attr {
  display: flex;
  align-items: center;
  color: #7d7d7d;
  line-height: 1.2;
  font-weight: 500;
}
.article_head ._attr ._date {
  font-size: 17px;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.1ex;
  margin-right: 1em;
  margin-top: 0.3ex;
}
.article_head ._attr ._depart {
  font-size: 16px;
  letter-spacing: 0.1ex;
  margin-right: 1em;
}
.article_head ._attr ._area {
  font-size: 16px;
  letter-spacing: 0.1ex;
}

#search_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: none;
}
#search_modal .search_modal_overlay {
  backdrop-filter: blur(5px) grayscale(80%);
  background: rgba(0, 0, 0, 0.6);
  transition: 1.3s all;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#search_modal .search_dialog {
  width: 1000px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 960px) and (max-width: 1229px) {
  #search_modal .search_dialog {
    width: 920px;
  }
}
@media only screen and (max-width: 959px) {
  #search_modal .search_dialog {
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog {
    width: calc(100% - 30px);
  }
}
#search_modal .search_dialog > ._head {
  font-size: 20px;
  letter-spacing: 0.1ex;
  padding: 20px 80px;
  justify-content: space-between;
}
@media only screen and (max-width: 959px) {
  #search_modal .search_dialog > ._head {
    padding: 15px 15px;
  }
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._head {
    padding: 15px 15px;
  }
}
#search_modal .search_dialog > ._head ._icon {
  width: 50px;
  aspect-ratio: 1/1;
  vertical-align: middle;
  margin-right: 1em;
  border-radius: 50%;
  border: 1px solid #dddddd;
}
#search_modal .search_dialog > ._head .search_modal_close {
  position: absolute;
  display: block;
  background: #ffffff;
  aspect-ratio: 1/1;
  border-radius: 50% 50%;
  width: 50px;
  overflow: hidden;
  text-indent: -1000px;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._head .search_modal_close {
    width: 40px;
  }
}
#search_modal .search_dialog > ._head .search_modal_close::before, #search_modal .search_dialog > ._head .search_modal_close::after {
  content: "";
  display: block;
  height: 2px;
  width: 45%;
  background: #333333;
  top: 50%;
  left: 50%;
  position: absolute;
  transition: 0.3s all;
}
#search_modal .search_dialog > ._head .search_modal_close::before {
  transform: translateX(-50%) rotate(45deg);
}
#search_modal .search_dialog > ._head .search_modal_close::after {
  transform: translateX(-50%) rotate(-45deg);
}
#search_modal .search_dialog > ._head .search_modal_close:hover::before, #search_modal .search_dialog > ._head .search_modal_close:active::before {
  transform: translateX(-50%) rotate(-45deg);
}
#search_modal .search_dialog > ._head .search_modal_close:hover::after, #search_modal .search_dialog > ._head .search_modal_close:active::after {
  transform: translateX(-50%) rotate(45deg);
}
#search_modal .search_dialog > ._body {
  background: #f2f2f2;
  padding: 30px 80px;
}
@media only screen and (max-width: 959px) {
  #search_modal .search_dialog > ._body {
    padding: 15px 15px;
  }
}
#search_modal .search_dialog > ._body .search_form_table {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: table;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table {
    margin: auto;
  }
}
#search_modal .search_dialog > ._body .search_form_table li {
  display: table-row;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table li {
    display: block;
    margin: 1em 0;
  }
}
#search_modal .search_dialog > ._body .search_form_table li > * {
  display: table-cell;
  padding: 1ex;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table li > * {
    display: block;
    padding: 0;
  }
}
#search_modal .search_dialog > ._body .search_form_table li .th {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1ex;
  width: 160px;
}
#search_modal .search_dialog > ._body .search_form_table li .th img._icon {
  width: 20px;
  aspect-ratio: 1/1;
  vertical-align: -4px;
  margin-right: 1ex;
}
#search_modal .search_dialog > ._body .search_form_table li .td select,
#search_modal .search_dialog > ._body .search_form_table li .td input {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  padding: 1ex 1ex;
  width: 180px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table li .td select,
  #search_modal .search_dialog > ._body .search_form_table li .td input {
    font-size: 14px;
    width: 280px;
  }
}
#search_modal .search_dialog > ._body .search_form_table li .td select.input_keyword,
#search_modal .search_dialog > ._body .search_form_table li .td input.input_keyword {
  width: 480px;
}
@media only screen and (max-width: 959px) {
  #search_modal .search_dialog > ._body .search_form_table li .td select.input_keyword,
  #search_modal .search_dialog > ._body .search_form_table li .td input.input_keyword {
    width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table li .td select.input_keyword,
  #search_modal .search_dialog > ._body .search_form_table li .td input.input_keyword {
    width: 280px;
  }
}
#search_modal .search_dialog > ._body .search_form_table li .td input[type=date] {
  width: 180px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #search_modal .search_dialog > ._body .search_form_table li .td input[type=date] {
    width: 120px;
  }
}
#search_modal .search_dialog > ._body > ._footer {
  background: #f2f2f2;
  padding: 10px 20px 40px;
  text-align: center;
}
#search_modal .search_dialog > ._body > ._footer ._btn {
  border-radius: 2em;
  display: inline-block;
  vertical-align: middle;
  padding: 1em 3em;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1ex;
  transition: 0.3s all;
  background: #e70014;
  min-width: 200px;
  box-sizing: border-box;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
#search_modal .search_dialog > ._body > ._footer ._btn:hover, #search_modal .search_dialog > ._body > ._footer ._btn:active {
  background: #333333;
  transform: translateY(3px);
}
#search_modal .search_dialog > ._body > ._footer ._btn::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_search_white.webp) 50% 50%/50px 50px no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 0.5ex;
  vertical-align: -15%;
  transition: 0.3s all;
}

.backnumber_list {
  display: flex;
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
  flex-wrap: wrap;
}
.backnumber_list li {
  margin: 0;
  padding: 10px;
  width: 25%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 959px) {
  .backnumber_list li {
    width: 33.3%;
  }
}
@media only screen and (max-width: 767px) {
  .backnumber_list li {
    width: 50%;
  }
}
.backnumber_list li img {
  display: block;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5ex;
  transition: 0.3s all;
}
.backnumber_list li a {
  display: block;
  text-decoration: none;
  transition: 0.3s all;
}
.backnumber_list li a:link, .backnumber_list li a:visited {
  color: #333333;
}
.backnumber_list li a:hover, .backnumber_list li a:active {
  color: #e70014;
  transform: translateY(3px);
  opacity: 0.7;
}
.backnumber_list li a:hover img, .backnumber_list li a:active img {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.backnumber_list li a span::after {
  display: inline-block;
  height: 18px;
  width: 18px;
  vertical-align: -10%;
}
.backnumber_list li a span.ext::after {
  content: "";
  background: url(../img/icon_ext.webp) 50% 50%/contain no-repeat;
}
.backnumber_list li a span.pdf::after {
  content: "";
  background: url(../img/icon_pdf.webp) 50% 50%/contain no-repeat;
}

.year_btns {
  background: #f2f8f6;
  display: flex;
  padding: 1ex 1em;
  flex-wrap: wrap;
  list-style-type: none;
  border-radius: 10px;
}
.year_btns > li {
  padding: 0 0;
}
.year_btns > li a {
  text-decoration: none;
  display: block;
  padding: 0.7ex 20px 0.7ex 36px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  background: url(../img/arrow_btn_tri.webp) 25px 50%/5px 5px no-repeat;
  transition: 0.3s all;
  border-radius: 4px;
}
.year_btns > li a.active {
  background-color: #fff1d7;
}
.year_btns > li a:link, .year_btns > li a:visited {
  color: #333333;
}
.year_btns > li a:hover, .year_btns > li a:active {
  background-color: #ffd8db;
}

.link_list {
  padding: 1ex 1em;
  list-style-type: none;
}
.link_list > li {
  padding: 0.2ex 0;
}
.link_list > li a {
  text-decoration: none;
  color: #333333;
  padding: 0.7ex 20px 0.7ex 20px;
  letter-spacing: 0.1ex;
  font-weight: 600;
  background: url(../img/arrow_btn_tri.webp) 0px 50%/5px 5px no-repeat;
  transition: 0.3s all;
  border-radius: 4px;
}
.link_list > li a:link, .link_list > li a:visited {
  color: #333333;
}
.link_list > li a:hover, .link_list > li a:active {
  text-decoration: underline;
  color: #e70014;
}

.pagination_list {
  display: flex;
  list-style-type: none;
  margin: 2em auto 2em;
  padding: 0;
  justify-content: center;
}
.pagination_list li:first-child a {
  border-radius: 5px 0 0 5px;
}
.pagination_list li:last-child a {
  border-radius: 0 5px 5px 0;
  border-right: none;
}
.pagination_list li a {
  background-color: #e70014;
  border-radius: 0;
  border-right: 1px solid #ffffff;
  padding: 1ex 1ex;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  transition: 0.3s all;
  text-align: center;
  min-width: 2.5em;
  display: block;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .pagination_list li a {
    font-size: 85%;
    padding: 1ex 0.5ex;
    min-width: 2em;
  }
}
.pagination_list li a:hover, .pagination_list li a:active {
  background: #333333;
}
.pagination_list li a.active {
  color: #aaaaaa;
  background: #ededed;
  cursor: default;
}
.pagination_list li._blank {
  background: #dddddd;
  width: 10px;
}

.search_cond {
  padding: 15px;
  background: #f0f6f2;
  border-radius: 5px;
}
.search_cond table {
  border-spacing: 0;
  border-collapse: collapse;
}
.search_cond table th {
  padding-right: 1em;
  text-align: left;
  color: #335713;
}

.zoomin_profile {
  margin: 1em 0;
  display: inline-block;
  vertical-align: middle;
  clear: both;
}
.zoomin_profile .zoomin_profile_head {
  background: #3fa9f5;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  padding: 1ex;
  color: #ffffff;
}
.zoomin_profile .zoomin_profile_body {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .zoomin_profile .zoomin_profile_body {
    display: block;
  }
}
.zoomin_profile .zoomin_profile_body > div:first-child img {
  display: block;
}
@media only screen and (max-width: 767px) {
  .zoomin_profile .zoomin_profile_body > div:first-child img {
    width: 100%;
  }
}
.zoomin_profile .zoomin_profile_body > div:last-child {
  flex-grow: 1;
}
.zoomin_profile .zoomin_profile_body > div:last-child table {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .zoomin_profile .zoomin_profile_body > div:last-child table {
    margin: 0 !important;
    width: 100% !important;
  }
}
.zoomin_profile .zoomin_profile_body > div:last-child table thead th {
  padding: 1ex 0.5ex;
}

/*** table ***/
article table,
.bordered_table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #7d7d7d;
  box-sizing: border-box;
  margin: 1em 15px;
}
@media only screen and (max-width: 767px) {
  article table,
  .bordered_table {
    margin: 1ex 5px;
  }
}
article table td,
.bordered_table td {
  padding: 0.6ex 1ex;
  vertical-align: top;
  border: 1px solid #7d7d7d;
  background: #ffffff;
}
article table th,
.bordered_table th {
  color: #24413c;
  padding: 0.6ex 1ex;
  vertical-align: middle;
  text-align: left;
  border: 1px solid #7d7d7d;
  background: #eefefb;
}
article table th.alignRight,
.bordered_table th.alignRight {
  text-align: right;
}
article table th.alignCenter,
.bordered_table th.alignCenter {
  text-align: center;
}
article table thead th,
.bordered_table thead th {
  color: #333333;
  padding: 1ex 1em;
  background: #d9f3f4;
  text-align: center;
  border: 1px solid #7d7d7d;
}
article table tbody th,
.bordered_table tbody th {
  white-space: nowrap;
}
article table caption,
.bordered_table caption {
  text-align: right;
  caption-side: bottom;
}
article table td.icon-cell,
.bordered_table td.icon-cell {
  vertical-align: middle;
}
article table td.icon-cell img,
.bordered_table td.icon-cell img {
  width: 60px;
  display: block;
  margin: 2px auto;
}
article table td.num-cell,
.bordered_table td.num-cell {
  text-align: right;
}
article table.simple th,
.bordered_table.simple th {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  article table.simple,
  .bordered_table.simple {
    width: auto;
  }
  article table.simple th,
  .bordered_table.simple th {
    width: auto;
  }
}
article table.standard tbody th,
.bordered_table.standard tbody th {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  article table.standard,
  .bordered_table.standard {
    width: auto;
  }
  article table.standard tbody th,
  .bordered_table.standard tbody th {
    width: auto;
  }
}
article table table,
.bordered_table table {
  margin: 0;
  width: 100%;
}
article table table th,
.bordered_table table th {
  background: #f1f2f2;
}
@media only screen and (max-width: 767px) {
  article table.responsive_table_nojs,
  .bordered_table.responsive_table_nojs {
    border-bottom: none;
    border-left: none;
    border-right: none;
    display: block;
    box-sizing: border-box;
  }
  article table.responsive_table_nojs thead,
  article table.responsive_table_nojs tbody,
  article table.responsive_table_nojs tr,
  .bordered_table.responsive_table_nojs thead,
  .bordered_table.responsive_table_nojs tbody,
  .bordered_table.responsive_table_nojs tr {
    display: block;
    width: 100%;
  }
  article table.responsive_table_nojs th,
  article table.responsive_table_nojs td,
  .bordered_table.responsive_table_nojs th,
  .bordered_table.responsive_table_nojs td {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border-top: none;
    white-space: normal;
  }
  article table.responsive_table_nojs.simple th, article table.responsive_table_nojs.standard th,
  .bordered_table.responsive_table_nojs.simple th,
  .bordered_table.responsive_table_nojs.standard th {
    width: 100%;
  }
}
article table ul,
.bordered_table ul {
  margin: 1ex 0;
  padding: 0 0 0 2em;
}
article table .cell_middle,
.bordered_table .cell_middle {
  vertical-align: middle;
}

.table_wrapper {
  margin: 0 0 1em;
}
.table_wrapper .bordered_table {
  width: 100%;
  margin: 0;
}

.btn,
:root a:where(.wp-element-button, .wp-block-button__link) {
  border-radius: 2em;
  display: inline-block;
  vertical-align: middle;
  padding: 1.2ex 3em;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1ex;
  transition: 0.3s all;
  background: #e70014;
  min-width: 200px;
  box-sizing: border-box;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.btn:hover, .btn:active,
:root a:where(.wp-element-button, .wp-block-button__link):hover,
:root a:where(.wp-element-button, .wp-block-button__link):active {
  color: #ffffff;
  background: #333333;
  transform: translateY(3px);
}
.btn::before,
:root a:where(.wp-element-button, .wp-block-button__link)::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow_btn_tri_white.webp) 50% 50%/5px 5px no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 0.5ex;
  vertical-align: -15%;
  transition: 0.3s all;
}

.boxed {
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 30px 15px;
  margin-top: 3em;
}

.backnumber_thumb img {
  width: 300px;
  max-width: 80%;
  margin: 1em auto;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: block;
  transition: 0.3s all;
}
.backnumber_thumb:hover img, .backnumber_thumb:active img {
  transform: translateY(3px);
  opacity: 0.7;
}

/*# sourceMappingURL=common.css.map */
