@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

.top .header_nav_pageList {
  display: none; }

.header_box {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 2px solid #ccc;
  z-index: 999; }
  @media screen and (max-width: 767px) {
    .header_box {
      padding: 2.5vw 0;
      border-bottom: 0.4vw solid #ccc; } }

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 97.5%;
  margin: 0 0 0 auto; }
  @media screen and (max-width: 767px) {
    .header_inner {
      width: 90%;
      margin: auto; } }

.header_logo {
  max-width: 290px; }
  @media screen and (max-width: 767px) {
    .header_logo {
      width: 55%;
      max-width: none; } }

@media screen and (max-width: 767px) {
  .header_nav {
    margin-right: 12vw; } }

.header_nav_globalList {
  display: flex;
  align-items: center; }
  .header_nav_globalList li {
    font-size: 1.4rem; }
    .header_nav_globalList li:first-child a[target="_blank"] {
      border-left: none; }
    .header_nav_globalList li a {
      display: block; }
      .header_nav_globalList li a[target="_blank"] {
        padding: 5px 26px 5px 18px;
        position: relative;
        border-left: 2px solid #ccc;
        margin-left: 18px; }
        .header_nav_globalList li a[target="_blank"]:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          transform: translate(0%, -50%);
          width: 18px;
          height: 18px;
          background-image: url(../images/common/icon-blank-b.png);
          background-size: contain;
          background-repeat: no-repeat; }
      .header_nav_globalList li a.icon-logout {
        margin-left: 20px;
        padding: 10px 10px 10px 42px;
        border: 2px solid #ccc;
        position: relative; }
        .header_nav_globalList li a.icon-logout:before {
          content: "";
          position: absolute;
          top: 50%;
          left: 1.4rem;
          transform: translate(0%, -50%);
          width: 24px;
          height: 24px;
          background-image: url(../images/common/icon-logout-b.png);
          background-size: contain;
          background-repeat: no-repeat;
          -webkit-transition: background-image .3s;
          transition: background-image .3s; }
        .header_nav_globalList li a.icon-logout:hover {
          opacity: 1;
          background-color: #d72118;
          color: #fff;
          border: 2px solid #fff; }
          .header_nav_globalList li a.icon-logout:hover:before {
            background-image: url(../images/common/icon-logout-w.png); }
  @media screen and (max-width: 767px) {
    .header_nav_globalList li {
      font-size: 1.4rem; }
      .header_nav_globalList li a[target="_blank"] {
        display: none; }
      .header_nav_globalList li a.icon-logout {
        margin-left: 0;
        padding: 3.6vw;
        border: none;
        font-size: 0; }
        .header_nav_globalList li a.icon-logout:before {
          left: 0;
          width: 7.2vw;
          height: 7.2vw; }
        .header_nav_globalList li a.icon-logout:hover {
          border: none; }
      .header_nav_globalList li.header_nav_rank {
        display: none; } }

.header_nav_rank_sp {
  display: none; }
  @media screen and (max-width: 767px) {
    .header_nav_rank_sp {
      display: flex;
      align-items: center;
      justify-content: flex-end; } }

.header_nav_rank {
  margin-left: 20px;
  padding: 24px 32px;
  color: #fff; }
  @media screen and (max-width: 767px) {
    .header_nav_rank {
      font-size: 1.4rem;
      margin-left: auto;
      padding: 4.5vw;
      display: inline-block; } }

.header_nav_rank_shop {
  background-color: #333; }

.header_nav_rank_staff {
  background-color: #d72118; }

.header_nav_pageList {
  width: 95%;
  max-width: 1250px;
  margin: auto; }
  .header_nav_pageList ul {
    display: flex;
    justify-content: center; }
    .header_nav_pageList ul li {
      width: 100%;
      font-size: 1.8rem; }
      .header_nav_pageList ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
        height: calc(100% - 40px);
        position: relative; }
        .header_nav_pageList ul li a:after {
          content: "";
          position: absolute;
          bottom: -2px;
          left: 50%;
          transform: translate(-50%, 0%);
          width: 0%;
          height: 2px;
          background-color: #d72118;
          -webkit-transition: width .3s;
          transition: width .3s; }
        .header_nav_pageList ul li a:hover:after {
          opacity: 1;
          width: 100%; }
        .header_nav_pageList ul li a.header_nav_pageList_active:after {
          width: 100%; }
  @media screen and (max-width: 767px) {
    .header_nav_pageList {
      width: 100%;
      height: 100vh;
      max-width: none;
      background-color: #fff;
      position: fixed;
      top: 0;
      left: 0;
      transform: translateX(100%);
      -webkit-transition: transform .3s;
      transition: transform .3s;
      display: flex !important;
      align-items: center;
      justify-content: center; }
      .header_nav_pageList.header_nav_pageList_open {
        transform: translateX(0%); }
      .header_nav_pageList ul {
        display: block; }
        .header_nav_pageList ul li {
          width: 100%; }
          .header_nav_pageList ul li a {
            display: block;
            padding: 6vw;
            height: auto; }
            .header_nav_pageList ul li a:after {
              bottom: 0;
              height: 0.4vw; } }

.header_hum {
  display: none; }
  @media screen and (max-width: 767px) {
    .header_hum {
      display: block;
      position: fixed;
      top: 3vw;
      right: 3vw;
      z-index: 1000;
      border: none;
      background: none;
      padding: 0;
      width: 9vw;
      height: 5.8vw; }
      .header_hum span {
        width: 100%;
        height: 1vw;
        background-color: #333;
        position: absolute;
        left: 0;
        border-radius: 10vw;
        transition: all 0.5s; }
        .header_hum span:nth-child(1) {
          top: 0; }
        .header_hum span:nth-child(2) {
          top: calc(50% - 0.5vw); }
        .header_hum span:nth-child(3) {
          top: calc(100% - 1vw); }
      .header_hum.header_hum_open span {
        background-color: #333 !important; }
        .header_hum.header_hum_open span:nth-child(1) {
          top: calc(50% - 0.5vw);
          transform: rotate(45deg); }
        .header_hum.header_hum_open span:nth-child(2) {
          opacity: 0; }
        .header_hum.header_hum_open span:nth-child(3) {
          top: calc(50% - 0.5vw);
          transform: rotate(-45deg); } }

.footer {
  border-top: 2px solid #d72118;
  background-color: #333;
  position: relative; }
  @media screen and (max-width: 767px) {
    .footer {
      border-top: 0.6vw solid #d72118; } }

.footer_pagetop {
  position: absolute;
  top: -28px;
  right: 2.2%;
  border-radius: 5px;
  border: 2px solid #d72118;
  background-color: #333;
  z-index: 998; }
  .footer_pagetop a {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    padding: 25px 8px 10px;
    position: relative; }
    .footer_pagetop a:before, .footer_pagetop a:after {
      content: "";
      position: absolute;
      top: 9px;
      right: calc(50% - 5px);
      width: 10px;
      height: 2px;
      border-radius: 9999px;
      transform-origin: 100% 50%;
      background-color: #fff; }
    .footer_pagetop a:before {
      transform: translateX(-50%) rotate(-45deg); }
    .footer_pagetop a:after {
      transform: translateX(-50%) rotate(-135deg); }
  @media screen and (max-width: 767px) {
    .footer_pagetop {
      top: -7%;
      right: 5%;
      border-radius: 1.5vw;
      border: 0.6vw solid #d72118; }
      .footer_pagetop a {
        font-size: 1.4rem;
        padding: 6vw 3vw 3vw; }
        .footer_pagetop a:before, .footer_pagetop a:after {
          top: 2.2vw;
          right: calc(50% - 1.2vw);
          width: 2.4vw;
          height: 0.4vw; } }

.footer_inner {
  border-bottom: 1px solid #434343; }
  .footer_inner .content_inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  @media screen and (max-width: 767px) {
    .footer_inner {
      border-bottom: 0.2vw solid #434343; }
      .footer_inner .content_inner {
        width: 100%;
        display: block; } }

.footer_logo {
  max-width: 140px;
  padding: 30px 15px;
  border-right: 1px solid #434343; }
  @media screen and (max-width: 767px) {
    .footer_logo {
      width: 45%;
      max-width: none;
      padding: 7vw 5vw;
      border-right: none; } }

.footer_nav {
  display: flex;
  align-items: center; }
  .footer_nav li {
    margin-left: 10px; }
    .footer_nav li a {
      color: #fff;
      font-size: 1.4rem;
      display: block; }
      .footer_nav li a[target="_blank"] {
        padding-right: 18px;
        position: relative; }
        .footer_nav li a[target="_blank"]:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          transform: translate(0%, -50%);
          width: 12px;
          height: 12px;
          background-image: url(../images/common/icon-blank-w.png);
          background-size: contain;
          background-repeat: no-repeat; }
  @media screen and (max-width: 767px) {
    .footer_nav {
      display: block;
      border-top: 0.2vw solid #434343;
      padding: 5vw 0; }
      .footer_nav li {
        margin-left: 5vw;
        margin-bottom: 6vw; }
        .footer_nav li:last-child {
          margin-bottom: 0; }
        .footer_nav li a {
          font-size: 1.4rem;
          display: inline-block; }
          .footer_nav li a[target="_blank"] {
            padding-right: 5vw; }
            .footer_nav li a[target="_blank"]:after {
              width: 3.5vw;
              height: 3.5vw; } }

.footer_copyright {
  color: #fff;
  font-size: 1.1rem;
  padding: 15px 0;
  text-align: center;
  line-height: 1.2; }
  .footer_copyright span {
    display: inline-block; }
  @media screen and (max-width: 767px) {
    .footer_copyright {
      padding: 5vw 0;
      line-height: 1.5; } }

.top_news_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 25px; }
  @media screen and (max-width: 767px) {
    .top_news_box {
      display: block;
      padding-bottom: 12vw; } }

.top_news {
  width: 100%;
  max-width: 910px;
  margin-right: 20px; }
  .top_news .newsList {
    margin-top: 18px; }
    .top_news .newsList li a {
      padding: 6px 0; }
  @media screen and (max-width: 767px) {
    .top_news {
      max-width: none;
      margin-right: 0; }
      .top_news .newsList {
        margin-top: 4vw; }
        .top_news .newsList li a {
          padding: 3vw 0; } }

.top_bnr {
  width: 100%;
  max-width: 304px;
  margin-left: 20px; }
  .top_bnr ul {
    margin-top: 14px; }
    .top_bnr ul li {
      margin-bottom: 15px; }
      .top_bnr ul li:last-child {
        margin-bottom: 0; }
      .top_bnr ul li a {
        display: block;
        border: 2px solid #d5d5d5;
        border-radius: 3px; }
        .top_bnr ul li a img {
          display: block; }
  @media screen and (max-width: 767px) {
    .top_bnr {
      max-width: none;
      margin-left: 0;
      margin-top: 12vw; }
      .top_bnr ul {
        margin-top: 1vw; }
        .top_bnr ul li {
          margin-bottom: 5vw; }
          .top_bnr ul li a {
            border: 0.6vw solid #d5d5d5;
            border-radius: 0.6vw; }
            .top_bnr ul li a img {
              width: 100%; } }

.top_btnBox {
  background-color: #eee;
  padding: 20px 0 30px; }
  @media screen and (max-width: 767px) {
    .top_btnBox {
      padding: 4.5vw 0 7vw; } }

.btn_iconList {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(calc(100% - 50px) / 6), 1fr));
  gap: 10px; }
  .btn_iconList li {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
    .btn_iconList li a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%; }
      .btn_iconList li a:before, .btn_iconList li a:after {
        content: "";
        position: absolute;
        background-color: #186bc9; }
      .btn_iconList li a:before {
        top: 0;
        left: 0;
        height: 2px;
        width: 0;
        animation: none; }
      .btn_iconList li a:after {
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        animation: none; }
      .btn_iconList li a:hover {
        opacity: 1; }
        .btn_iconList li a:hover:before {
          animation: lineTopRight 0.6s ease-out forwards; }
        .btn_iconList li a:hover:after {
          animation: lineLeftBottom 0.6s ease-out forwards; }
        .btn_iconList li a:hover .btn_iconList_arrow {
          border-color: transparent transparent #186bc9 transparent; }
      .btn_iconList li a figure {
        width: calc(100% - 4px);
        height: calc(100% - 34px);
        text-align: center;
        background-color: #fff;
        position: relative;
        z-index: 2;
        padding: 15px 0; }
        .btn_iconList li a figure img {
          zoom: 0.5; }
        .btn_iconList li a figure figcaption {
          font-size: 2.0rem;
          font-weight: bold;
          line-height: 1.2;
          display: flex;
          align-items: center;
          justify-content: center; }
      .btn_iconList li a[target="_blank"] figure figcaption span {
        position: relative;
        padding-right: 30px; }
        .btn_iconList li a[target="_blank"] figure figcaption span:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          transform: translate(0%, -50%);
          width: 20px;
          height: 20px;
          background-image: url(../images/common/icon-blank-b.png);
          background-size: contain;
          background-repeat: no-repeat; }
  @media screen and (max-width: 767px) {
    .btn_iconList {
      margin-top: 2.5vw;
      grid-template-columns: repeat(auto-fit, minmax(calc(calc(100% - 5vw) / 2), 1fr));
      gap: 2.5vw; }
      .btn_iconList li {
        box-shadow: 0 0 1.6vw rgba(0, 0, 0, 0.1); }
        .btn_iconList li a:before {
          height: 0.4vw; }
        .btn_iconList li a:after {
          width: 0.4vw; }
        .btn_iconList li a figure {
          width: calc(100% - 0.5vw);
          height: calc(100% - 6.6vw);
          padding: 3vw 0; }
          .btn_iconList li a figure img {
            width: 50%;
            zoom: 1; }
          .btn_iconList li a figure figcaption {
            margin-top: 1.5vw;
            font-size: 1.6rem; }
        .btn_iconList li a[target="_blank"] figure figcaption span {
          padding-right: 5vw; }
          .btn_iconList li a[target="_blank"] figure figcaption span:after {
            width: 4vw;
            height: 4vw; } }

.btn_textList {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(calc(100% - 50px) / 4), 1fr));
  gap: 10px; }
  .btn_textList li {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
    .btn_textList li a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      width: 100%;
      height: 100%; }
      .btn_textList li a:before, .btn_textList li a:after {
        content: "";
        position: absolute;
        background-color: #186bc9; }
      .btn_textList li a:before {
        top: 0;
        left: 0;
        height: 2px;
        width: 0;
        animation: none; }
      .btn_textList li a:after {
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        animation: none; }
      .btn_textList li a:hover {
        opacity: 1; }
        .btn_textList li a:hover:before {
          animation: lineTopRight 0.6s ease-out forwards; }
        .btn_textList li a:hover:after {
          animation: lineLeftBottom 0.6s ease-out forwards; }
        .btn_textList li a:hover .btn_iconList_arrow {
          border-color: transparent transparent #186bc9 transparent; }
      .btn_textList li a.pdf-icon[target="_blank"] p span:after {
        content: none; }
      .btn_textList li a p {
        width: calc(100% - 4px);
        height: calc(100% - 54px);
        text-align: center;
        background-color: #fff;
        position: relative;
        z-index: 2;
        padding: 25px 0;
        display: flex;
        align-items: center;
        justify-content: center; }
        .btn_textList li a p img {
          zoom: 0.5;
          margin-right: 12px; }
        .btn_textList li a p span {
          font-size: 2.0rem;
          font-weight: bold;
          line-height: 1.2;
          display: flex;
          align-items: center;
          justify-content: center; }
      .btn_textList li a[target="_blank"] p span {
        position: relative;
        padding-right: 30px; }
        .btn_textList li a[target="_blank"] p span:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          transform: translate(0%, -50%);
          width: 20px;
          height: 20px;
          background-image: url(../images/common/icon-blank-b.png);
          background-size: contain;
          background-repeat: no-repeat; }
  @media screen and (max-width: 767px) {
    .btn_textList {
      margin-top: 2.5vw;
      grid-template-columns: repeat(auto-fit, minmax(calc(calc(100% - 5vw) / 1), 1fr));
      gap: 2.5vw; }
      .btn_textList li {
        box-shadow: 0 0 1.6vw rgba(0, 0, 0, 0.1); }
        .btn_textList li a:before {
          height: 0.4vw; }
        .btn_textList li a:after {
          width: 0.4vw; }
        .btn_textList li a p {
          width: calc(100% - 0.5vw);
          height: calc(100% - 6.6vw);
          padding: 3vw 0; }
          .btn_textList li a p img {
            width: 10%;
            zoom: 1;
            margin-right: 0;
            position: absolute;
            top: 50%;
            left: 4vw;
            transform: translate(0, -50%); }
          .btn_textList li a p span {
            font-size: 1.6rem;
            min-height: 2.4em;
            padding: 0 14vw; }
        .btn_textList li a[target="_blank"] p span {
          padding-right: 5vw; }
          .btn_textList li a[target="_blank"] p span:after {
            width: 4vw;
            height: 4vw; } }

.btn_iconList_arrow {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ccc transparent;
  border-width: 0px 0px 20px 20px;
  z-index: 2;
  -webkit-transition: border-color .3s;
  transition: border-color .3s; }
  @media screen and (max-width: 767px) {
    .btn_iconList_arrow {
      bottom: 1vw;
      right: 1vw;
      border-width: 0px 0px 4vw 4vw; } }

@keyframes lineTopRight {
  0% {
    width: 0;
    top: 0;
    left: 0; }
  50% {
    width: 100%; }
  100% {
    width: 100%;
    height: 100%; } }
@keyframes lineLeftBottom {
  0% {
    height: 0;
    top: 0;
    left: 0; }
  50% {
    height: 100%; }
  100% {
    height: 100%;
    width: 100%; } }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 18px; }
  .breadcrumb span {
    color: #9b9b9b; }
  .breadcrumb a:first-child {
    padding-left: 0; }
    .breadcrumb a:first-child:before {
      content: none; }
  .breadcrumb a, .breadcrumb span {
    font-size: 1.2rem;
    position: relative;
    padding-left: 2em; }
    .breadcrumb a:before, .breadcrumb span:before {
      content: "／";
      position: absolute;
      top: 50%;
      left: 0.5em;
      transform: translate(0%, -50%); }
  @media screen and (max-width: 767px) {
    .breadcrumb {
      padding-top: 2vw; } }

.page_listTitle {
  font-size: 3.4rem;
  line-height: 1.5;
  text-align: center;
  padding: 30px 0; }
  @media screen and (max-width: 767px) {
    .page_listTitle {
      font-size: 2.8rem;
      padding: 3vw 0 6vw; } }

.bg_gray {
  background-color: #eee; }

.page_subNav {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .page_subNav li {
    width: 100%;
    position: relative; }
    .page_subNav li:last-child:after {
      content: none; }
    .page_subNav li:after {
      content: "";
      position: absolute;
      top: 50%;
      right: -1px;
      transform: translate(0%, -50%);
      width: 2px;
      height: 80%;
      background-color: #ccc; }
    .page_subNav li a {
      display: block;
      background-color: #fff;
      padding: 20px 0;
      text-align: center;
      font-size: 2.0rem; }
      .page_subNav li a:hover {
        opacity: 1;
        color: #fff;
        background-color: #d72118; }
        .page_subNav li a:hover span:before, .page_subNav li a:hover span:after {
          background-color: #fff; }
      .page_subNav li a span {
        position: relative;
        display: inline-block;
        padding-right: 22px; }
        .page_subNav li a span:before, .page_subNav li a span:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 5px;
          width: 8px;
          height: 2px;
          border-radius: 9999px;
          transform-origin: 100% 50%;
          background-color: #000;
          -webkit-transition: all .3s;
          transition: all .3s; }
        .page_subNav li a span:before {
          transform: translateY(-50%) rotate(45deg); }
        .page_subNav li a span:after {
          transform: translateY(-50%) rotate(-45deg); }
  @media screen and (max-width: 767px) {
    .page_subNav {
      padding-top: 5vw;
      flex-wrap: wrap;
      gap: 2vw; }
      .page_subNav li {
        width: calc(50% - 1vw); }
        .page_subNav li:after {
          content: none; }
        .page_subNav li a {
          padding: 5vw 0;
          font-size: 1.6rem; }
          .page_subNav li a span {
            padding-right: 4vw;
            display: block; }
            .page_subNav li a span:before, .page_subNav li a span:after {
              right: 2vw;
              width: 2vw;
              height: 0.4vw; } }

.page_listFlex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 30px; }
  @media screen and (max-width: 767px) {
    .page_listFlex {
      display: block;
      padding-top: 5vw;
      padding-bottom: 6vw; } }

.page_listSidebar {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(65% - 40px);
  max-width: 280px;
  margin-right: 20px; }
  @media screen and (max-width: 767px) {
    .page_listSidebar {
      box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
      padding: 5vw;
      width: calc(100% - 10vw);
      max-width: none;
      margin-right: 0;
      margin-bottom: 5vw; } }

.page_listSidebar_tagBox {
  margin-top: 40px; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_tagBox {
      margin-top: 5vw; } }

.page_listSidebar_searchMode {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #186bc9;
  border-radius: 3px;
  margin-bottom: 20px; }
  .page_listSidebar_searchMode button {
    width: 50%;
    color: #186bc9;
    background-color: #fff;
    font-size: 1.6rem;
    border: none;
    border-radius: 2px;
    padding: 10px; }
    .page_listSidebar_searchMode button.searchMode_active {
      color: #fff;
      background-color: #186bc9; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_searchMode {
      border: 0.6vw solid #186bc9;
      border-radius: 1vw;
      margin-bottom: 5vw; }
      .page_listSidebar_searchMode button {
        font-size: 1.4rem;
        border-radius: 0.6vw;
        padding: 3vw; } }

.page_listSidebar_selectedTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_selectedTags {
      gap: 4vw;
      margin-bottom: 6vw; } }

.select_tag {
  color: #fff;
  background-color: #186bc9;
  border-radius: 9999px;
  padding: 4px 5px 4px 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600; }
  @media screen and (max-width: 767px) {
    .select_tag {
      padding: 2vw 3vw 2vw 5vw; } }
  .select_tag:first-child {
    padding: 6px 12px; }
    .select_tag:first-child .remove_tag {
      display: none; }
    @media screen and (max-width: 767px) {
      .select_tag:first-child {
        padding: 2vw 5vw; } }

.remove_tag {
  color: #186bc9;
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px; }
  @media screen and (max-width: 767px) {
    .remove_tag {
      margin-left: 3vw;
      font-size: 1.6rem;
      padding: 1.5vw; } }

.page_listSidebar_selectedClear {
  text-align: right; }
  .page_listSidebar_selectedClear a {
    display: inline-block;
    color: #9b9b9b;
    font-size: 1.4rem;
    font-weight: 600;
    border: 2px solid #ccc;
    padding: 7px 7px 7px 27px;
    position: relative; }
    .page_listSidebar_selectedClear a:after {
      content: "";
      position: absolute;
      top: 50%;
      left: 7px;
      transform: translate(0%, -50%);
      width: 15px;
      height: 15px;
      background-image: url(../images/common/icon-reset.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_selectedClear a {
      font-size: 1.4rem;
      border: 0.6vw solid #ccc;
      padding: 2.5vw 2.5vw 2.5vw 10vw; }
      .page_listSidebar_selectedClear a:after {
        left: 3vw;
        width: 4.2vw;
        height: 4.2vw; } }

.page_listSidebarBox {
  margin-top: 40px; }
  @media screen and (max-width: 767px) {
    .page_listSidebarBox {
      margin-top: 6vw; } }

.page_listSidebar_title {
  font-size: 2.0rem;
  line-height: 1.2;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_title {
      font-size: 1.6rem;
      padding-bottom: 2.5vw;
      margin-bottom: 4vw;
      border-bottom: 0.4vw solid #ccc; } }

.page_listSidebar_items {
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_items {
      margin-bottom: 5vw; } }

.page_listSidebar_items_accordion .page_listSidebar_itemsTitle {
  cursor: pointer;
  position: relative;
  padding-right: 20px; }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:before, .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    transform-origin: 100% 50%;
    background-color: #000;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:before {
    transform: translateY(-50%) rotate(135deg); }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:after {
    transform: translateY(-50%) rotate(45deg); }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle.page_listSidebar_itemsTitle_open:before, .page_listSidebar_items_accordion .page_listSidebar_itemsTitle.page_listSidebar_itemsTitle_open:after {
    top: 35%; }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle.page_listSidebar_itemsTitle_open:before {
    transform: translateY(-50%) rotate(-45deg); }
  .page_listSidebar_items_accordion .page_listSidebar_itemsTitle.page_listSidebar_itemsTitle_open:after {
    transform: translateY(-50%) rotate(-135deg); }
  @media screen and (max-width: 767px) {
    .page_listSidebar_items_accordion .page_listSidebar_itemsTitle {
      padding-right: 5vw; }
      .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:before, .page_listSidebar_items_accordion .page_listSidebar_itemsTitle:after {
        right: 2.2vw;
        width: 2vw;
        height: 0.4vw; } }
.page_listSidebar_items_accordion .page_listSidebar_itemsList {
  display: none;
  margin-left: 1.8rem; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_items_accordion .page_listSidebar_itemsList {
      margin-left: 1.6rem; } }

.page_listSidebar_items_tags .page_listSidebar_itemsList {
  margin-top: 10px; }
  .page_listSidebar_items_tags .page_listSidebar_itemsList li {
    margin-bottom: 8px; }
    .page_listSidebar_items_tags .page_listSidebar_itemsList li a {
      font-size: 1.4rem;
      padding: 5px 10px;
      color: #186bc9;
      border: 1px solid #186bc9;
      border-radius: 9999px; }
      .page_listSidebar_items_tags .page_listSidebar_itemsList li a:hover {
        color: #fff;
        background-color: #186bc9; }
@media screen and (max-width: 767px) {
  .page_listSidebar_items_tags .page_listSidebar_itemsList {
    margin-top: 2vw; }
    .page_listSidebar_items_tags .page_listSidebar_itemsList li {
      margin-bottom: 3vw; }
      .page_listSidebar_items_tags .page_listSidebar_itemsList li a {
        font-size: 1.4rem;
        padding: 1.9vw 4vw;
        border: 0.2vw solid #186bc9; } }

.page_listSidebar_itemsTitle {
  font-size: 1.8rem;
  line-height: 1.2; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_itemsTitle {
      font-size: 1.6rem; } }

.page_listSidebar_itemsList {
  margin-top: 20px; }
  .page_listSidebar_itemsList li {
    margin-bottom: 18px; }
    .page_listSidebar_itemsList li:last-child {
      margin-bottom: 0; }
    .page_listSidebar_itemsList li a {
      display: inline-block;
      font-size: 1.6rem; }
      .page_listSidebar_itemsList li a:hover {
        opacity: 1;
        color: #186bc9; }
  @media screen and (max-width: 767px) {
    .page_listSidebar_itemsList {
      margin-top: 5vw; }
      .page_listSidebar_itemsList li {
        margin-bottom: 4vw; }
        .page_listSidebar_itemsList li a {
          font-size: 1.4rem; } }

.page_listSidebarSearch {
  display: flex; }
  .page_listSidebarSearch input {
    border: none;
    background-color: #eee;
    padding: 8px 25px;
    font-size: 1.6rem;
    width: 80%;
    max-width: 190px; }
    .page_listSidebarSearch input::placeholder {
      color: #6b6b6b; }
  .page_listSidebarSearch button {
    border: none;
    background-color: #333;
    font-size: 0;
    background-image: url(../images/common/icon-search.png);
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 7px;
    width: 20%;
    max-width: 40px; }
  @media screen and (max-width: 767px) {
    .page_listSidebarSearch input {
      padding: 2vw 5vw;
      width: 85%;
      max-width: none; }
    .page_listSidebarSearch button {
      background-size: 5vw;
      padding: 3vw;
      width: 15%;
      max-width: none; } }

.page_listBox {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(100% - 40px); }
  @media screen and (max-width: 767px) {
    .page_listBox {
      box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
      padding: 5vw;
      width: calc(100% - 10vw); } }

.page_listBox_items {
  display: flex;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px; }
  .page_listBox_items:last-child {
    margin-bottom: 0; }
  @media screen and (max-width: 767px) {
    .page_listBox_items {
      border-bottom: 0.2vw dashed #ccc;
      padding-bottom: 5vw;
      margin-bottom: 5vw; } }

.page_listBox_items_thum {
  width: 19%;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .page_listBox_items_thum {
      width: 20%;
      max-width: none; } }
  .page_listBox_items_thum img {
    aspect-ratio: 150 / 155;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; }

.page_listBox_textBox {
  width: 86%;
  margin-left: 40px; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox {
      width: 80%;
      margin-left: 4vw; } }

.page_listBox_textBox_time {
  font-size: 1.6rem;
  color: #9b9b9b;
  margin-bottom: 16px;
  display: block; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_time {
      font-size: 1.4rem;
      margin-bottom: 3vw; } }

.page_listBox_textBox_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-bottom: 12px; }
  .page_listBox_textBox_tags p {
    font-size: 1.2rem;
    border-right: 1px solid #186bc9;
    padding-right: 6px;
    margin-right: 6px; }
    .page_listBox_textBox_tags p:last-child {
      border-right: none;
      padding-right: 0;
      margin-right: 0; }
    .page_listBox_textBox_tags p a {
      color: #186bc9; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_tags {
      gap: 2vw 0;
      margin-bottom: 3vw; }
      .page_listBox_textBox_tags p {
        font-size: 1.1rem;
        border-right: 0.2vw solid #186bc9;
        padding-right: 2vw;
        margin-right: 2vw; } }

.page_listBox_textBox_title {
  font-size: 1.8rem;
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_title {
      font-size: 1.6rem; } }

.page_listBox_textBox_addtext {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 8px; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_addtext {
      margin-top: 2vw; } }

.page_listBox_textBox_link {
  margin-top: 28px; }
  .page_listBox_textBox_link a {
    font-size: 1.6rem;
    border: 2px solid #ccc;
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 100%;
    max-width: 170px;
    text-align: center;
    position: relative; }
    .page_listBox_textBox_link a:hover {
      opacity: 1; }
    .page_listBox_textBox_link a.page_listBox_textBox_link_arrow:after {
      content: "";
      position: absolute;
      bottom: 3px;
      right: 3px;
      width: 0;
      height: 0;
      border-style: solid;
      border-color: transparent transparent #ccc transparent;
      border-width: 0px 0px 15px 15px;
      z-index: 2;
      -webkit-transition: border-color .3s;
      transition: border-color .3s; }
    .page_listBox_textBox_link a.page_listBox_textBox_link_arrow:hover {
      border: 2px solid #186bc9; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_arrow:hover:after {
        border-color: transparent transparent #186bc9 transparent; }
    .page_listBox_textBox_link a.page_listBox_textBox_link_icon {
      padding-left: 38px;
      max-width: 132px; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon:before {
        content: "";
        position: absolute;
        top: 50%;
        left: -2px;
        transform: translate(0%, -50%);
        width: 40px;
        height: 40px;
        background-size: 32px;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-transition: all .3s;
        transition: all .3s;
        border: 2px solid;
        border-right: none; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon:hover {
        border-color: #186bc9; }
        .page_listBox_textBox_link a.page_listBox_textBox_link_icon:hover:before {
          border-color: #186bc9 !important; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon[href$=".pdf"]:before {
        background-color: #d72118;
        background-image: url(../images/common/icon-pdf.png);
        border-color: #d72118; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon[href$=".xlsx"]:before {
        background-color: #007870;
        background-image: url(../images/common/icon-excel.png);
        border-color: #007870; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon[href$=".zip"]:before {
        background-color: #333;
        background-image: url(../images/common/icon-zip.png);
        border-color: #333; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon.page_listBox_textBox_link_movie:before {
        background-color: #ccc;
        background-image: url(../images/common/icon-movie.png);
        background-size: 24px;
        border-color: #ccc; }
      .page_listBox_textBox_link a.page_listBox_textBox_link_icon.page_listBox_textBox_link_movie:hover:before {
        background-color: #186bc9; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_link {
      margin-top: 5vw; }
      .page_listBox_textBox_link a {
        font-size: 1.4rem;
        border: 0.6vw solid #ccc;
        display: block;
        padding-top: 4vw;
        padding-bottom: 4vw;
        width: 100%;
        max-width: none; }
        .page_listBox_textBox_link a.page_listBox_textBox_link_arrow:after {
          bottom: 1vw;
          right: 1vw;
          border-width: 0px 0px 4vw 4vw; }
        .page_listBox_textBox_link a.page_listBox_textBox_link_arrow:hover {
          border: 0.6vw solid #186bc9; }
        .page_listBox_textBox_link a.page_listBox_textBox_link_icon {
          width: calc(100% - 13vw);
          padding-left: 13vw;
          max-width: none; }
          .page_listBox_textBox_link a.page_listBox_textBox_link_icon:before {
            left: -0.6vw;
            width: 12.2vw;
            height: 100%;
            background-size: 9.5vw;
            border: 0.6vw solid;
            border-right: none; }
          .page_listBox_textBox_link a.page_listBox_textBox_link_icon.page_listBox_textBox_link_movie:before {
            background-size: 8vw; } }

.page_listBox_pagination {
  margin-top: 30px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem; }
  .page_listBox_pagination .pagination_arrow a, .page_listBox_pagination .pagination_arrow span {
    font-size: 0;
    position: relative;
    width: 15px;
    height: 20px;
    display: block; }
    .page_listBox_pagination .pagination_arrow a:before, .page_listBox_pagination .pagination_arrow a:after, .page_listBox_pagination .pagination_arrow span:before, .page_listBox_pagination .pagination_arrow span:after {
      content: "";
      position: absolute;
      top: 50%;
      width: 8px;
      height: 2px;
      border-radius: 9999px;
      transform-origin: 100% 50%;
      background-color: #186bc9;
      -webkit-transition: all .3s;
      transition: all .3s; }
    .page_listBox_pagination .pagination_arrow a:before, .page_listBox_pagination .pagination_arrow span:before {
      transform: translateY(-50%) rotate(45deg); }
    .page_listBox_pagination .pagination_arrow a:after, .page_listBox_pagination .pagination_arrow span:after {
      transform: translateY(-50%) rotate(-45deg); }
  .page_listBox_pagination .pagination_arrow.prev a:before, .page_listBox_pagination .pagination_arrow.prev a:after, .page_listBox_pagination .pagination_arrow.prev span:before, .page_listBox_pagination .pagination_arrow.prev span:after {
    left: 0; }
  .page_listBox_pagination .pagination_arrow.prev a:before, .page_listBox_pagination .pagination_arrow.prev span:before {
    transform: translateY(-50%) rotate(135deg); }
  .page_listBox_pagination .pagination_arrow.prev a:after, .page_listBox_pagination .pagination_arrow.prev span:after {
    transform: translateY(-50%) rotate(-135deg); }
  .page_listBox_pagination .pagination_arrow.next a:before, .page_listBox_pagination .pagination_arrow.next a:after, .page_listBox_pagination .pagination_arrow.next span:before, .page_listBox_pagination .pagination_arrow.next span:after {
    right: 0; }
  .page_listBox_pagination .pagination_arrow.next a:before, .page_listBox_pagination .pagination_arrow.next span:before {
    transform: translateY(-50%) rotate(45deg); }
  .page_listBox_pagination .pagination_arrow.next a:after, .page_listBox_pagination .pagination_arrow.next span:after {
    transform: translateY(-50%) rotate(-45deg); }
  .page_listBox_pagination ol {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px; }
    .page_listBox_pagination ol li {
      margin: 0 12px; }
      .page_listBox_pagination ol li a, .page_listBox_pagination ol li span {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center; }
      .page_listBox_pagination ol li span {
        color: #fff;
        background-color: #186bc9;
        border-radius: 50%; }
      .page_listBox_pagination ol li a:hover {
        opacity: 1;
        color: #186bc9; }
  @media screen and (max-width: 767px) {
    .page_listBox_pagination {
      margin-top: 7vw;
      padding-bottom: 2vw; }
      .page_listBox_pagination .pagination_arrow a {
        width: 6vw;
        height: 6vw; }
        .page_listBox_pagination .pagination_arrow a:before, .page_listBox_pagination .pagination_arrow a:after {
          width: 2vw;
          height: 0.4vw; }
      .page_listBox_pagination ol {
        margin: 0 2.5vw; }
        .page_listBox_pagination ol li {
          margin: 0 2.5vw; }
          .page_listBox_pagination ol li a, .page_listBox_pagination ol li span {
            width: 6vw;
            height: 6vw; } }

.single_contents .page_listBox_textBox_title {
  font-size: 2.4rem;
  font-weight: 700; }
.single_contents .single_contents_flex {
  display: flex;
  gap: 35px;
  margin-top: 20px; }
  @media screen and (max-width: 767px) {
    .single_contents .single_contents_flex {
      display: block;
      margin-top: 5vw; } }
.single_contents .single_contents_img {
  width: 26%; }
  @media screen and (max-width: 767px) {
    .single_contents .single_contents_img {
      width: 100%;
      margin-bottom: 7vw; } }
.single_contents .single_contents_wpContent {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal; }
  .single_contents .single_contents_wpContent p, .single_contents .single_contents_wpContent div, .single_contents .single_contents_wpContent .wp-block-image, .single_contents .single_contents_wpContent blockquote, .single_contents .single_contents_wpContent .wp-block-list, .single_contents .single_contents_wpContent .wp-block-table, .single_contents .single_contents_wpContent .wp-block-code, .single_contents .single_contents_wpContent details {
    margin-bottom: 15px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent p, .single_contents .single_contents_wpContent div, .single_contents .single_contents_wpContent .wp-block-image, .single_contents .single_contents_wpContent blockquote, .single_contents .single_contents_wpContent .wp-block-list, .single_contents .single_contents_wpContent .wp-block-table, .single_contents .single_contents_wpContent .wp-block-code, .single_contents .single_contents_wpContent details {
        margin-bottom: 5vw; } }
  .single_contents .single_contents_wpContent strong {
    font-weight: 700; }
  .single_contents .single_contents_wpContent em {
    font-style: italic; }
  .single_contents .single_contents_wpContent mark {
    background: unset; }
  .single_contents .single_contents_wpContent sup, .single_contents .single_contents_wpContent sub {
    font-size: 75%; }
  .single_contents .single_contents_wpContent ol.wp-block-footnotes {
    list-style: auto;
    padding-left: 1.5em; }
    .single_contents .single_contents_wpContent ol.wp-block-footnotes .wp-block-list {
      list-style: none;
      padding-left: 1em; }
  .single_contents .single_contents_wpContent .wp-block-footnotes {
    font-size: 1.4rem;
    color: #6b6b6b; }
  .single_contents .single_contents_wpContent h1 {
    font-size: 3.3rem;
    color: #fff;
    background-color: #d72118;
    border-radius: 5px;
    padding: 15px 15px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h1 {
        border-radius: 1.5vw;
        padding: 2vw 4vw; } }
  .single_contents .single_contents_wpContent h2 {
    font-size: 3.0rem;
    color: #fff;
    background-color: #186bc9;
    border-radius: 5px;
    padding: 10px 15px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h2 {
        border-radius: 1.5vw;
        padding: 1vw 4vw; } }
  .single_contents .single_contents_wpContent h3 {
    font-size: 2.7rem;
    border-left: 12px solid #d72118;
    border-bottom: 2px solid #d72118;
    padding-left: 15px;
    padding-bottom: 5px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h3 {
        border-left: 2vw solid #d72118;
        border-bottom: 0.6vw solid #d72118;
        padding-left: 4vw;
        padding-bottom: 1vw; } }
  .single_contents .single_contents_wpContent h4 {
    font-size: 2.4rem;
    border-left: 12px solid #d72118;
    padding-left: 15px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h4 {
        border-left: 2vw solid #d72118;
        padding-left: 4vw; } }
  .single_contents .single_contents_wpContent h5 {
    font-size: 2.1rem;
    border-bottom: 2px solid #d72118;
    padding-bottom: 5px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h5 {
        border-bottom: 0.6vw solid #d72118;
        padding-bottom: 1vw; } }
  .single_contents .single_contents_wpContent h6 {
    font-size: 1.8rem;
    color: #d72118; }
  .single_contents .single_contents_wpContent h1, .single_contents .single_contents_wpContent h2, .single_contents .single_contents_wpContent h3, .single_contents .single_contents_wpContent h4, .single_contents .single_contents_wpContent h5, .single_contents .single_contents_wpContent h6 {
    font-weight: 600;
    margin-bottom: 30px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent h1, .single_contents .single_contents_wpContent h2, .single_contents .single_contents_wpContent h3, .single_contents .single_contents_wpContent h4, .single_contents .single_contents_wpContent h5, .single_contents .single_contents_wpContent h6 {
        margin-bottom: 7vw; } }
  .single_contents .single_contents_wpContent .wp-block-list {
    list-style: disc;
    padding-left: 1.5em; }
    .single_contents .single_contents_wpContent .wp-block-list > li {
      margin-bottom: 5px; }
      .single_contents .single_contents_wpContent .wp-block-list > li:last-child {
        margin-bottom: 0; }
      .single_contents .single_contents_wpContent .wp-block-list > li .wp-block-list {
        list-style: none;
        padding-left: 1em;
        margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .wp-block-list > li {
        margin-bottom: 2vw; } }
  .single_contents .single_contents_wpContent ol.wp-block-list {
    list-style: auto;
    padding-left: 1.5em; }
    .single_contents .single_contents_wpContent ol.wp-block-list .wp-block-list {
      list-style: none; }
  .single_contents .single_contents_wpContent .wp-block-quote {
    border-left: 5px solid #9b9b9b;
    padding-left: 15px; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .wp-block-quote {
        border-left: 1.6vw solid #9b9b9b;
        padding-left: 3vw; } }
  .single_contents .single_contents_wpContent blockquote {
    color: #9b9b9b; }
  .single_contents .single_contents_wpContent .wp-block-table td, .single_contents .single_contents_wpContent .wp-block-table th {
    border: 1px solid #333; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .wp-block-table td, .single_contents .single_contents_wpContent .wp-block-table th {
        border: 0.2vw solid #333; } }
  .single_contents .single_contents_wpContent .wp-block-code {
    border: 1px solid #333;
    padding: 10px;
    font-size: 1.4rem; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .wp-block-code {
        border: 0.2vw solid #333;
        padding: 2vw;
        font-size: 1.2rem; } }
  .single_contents .single_contents_wpContent details summary {
    display: inline-block;
    position: relative;
    padding-right: 1.5em; }
    .single_contents .single_contents_wpContent details summary:before, .single_contents .single_contents_wpContent details summary:after {
      content: "";
      position: absolute;
      top: calc(50% + 5px);
      right: 0;
      width: 10px;
      height: 2px;
      border-radius: 9999px;
      transform-origin: 100% 50%;
      background-color: #000; }
    .single_contents .single_contents_wpContent details summary:before {
      transform: translateY(-50%) rotate(45deg); }
    .single_contents .single_contents_wpContent details summary:after {
      transform: translateY(-50%) rotate(135deg); }
  .single_contents .single_contents_wpContent details p {
    margin-bottom: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #000; }
  @media screen and (max-width: 767px) {
    .single_contents .single_contents_wpContent details summary:before, .single_contents .single_contents_wpContent details summary:after {
      top: calc(50% + 1.2vw);
      width: 2.4vw;
      height: 0.4vw; }
    .single_contents .single_contents_wpContent details p {
      margin-top: 2vw;
      padding-top: 2vw;
      border-top: 0.2vw solid #000; } }
  .single_contents .single_contents_wpContent .wp-block-pullquote {
    padding: 30px 0;
    font-size: 1.8rem; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .wp-block-pullquote {
        padding: 5vw 0; } }
  .single_contents .single_contents_wpContent a {
    text-decoration: underline; }
  .single_contents .single_contents_wpContent .single_contents_wpContent_icon {
    font-size: 1.6rem;
    line-height: 1;
    border: 2px solid #ccc;
    display: inline-block;
    vertical-align: middle;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 50px;
    padding-right: 10px;
    text-align: center;
    position: relative;
    text-decoration: none; }
    .single_contents .single_contents_wpContent .single_contents_wpContent_icon:before {
      content: "";
      position: absolute;
      top: 50%;
      left: -2px;
      transform: translate(0%, -50%);
      width: 40px;
      height: 40px;
      height: 100%;
      background-size: 32px;
      background-position: center;
      background-repeat: no-repeat;
      -webkit-transition: all .3s;
      transition: all .3s;
      border: 2px solid;
      border-right: none; }
    .single_contents .single_contents_wpContent .single_contents_wpContent_icon:hover {
      opacity: 1;
      border-color: #186bc9; }
      .single_contents .single_contents_wpContent .single_contents_wpContent_icon:hover:before {
        border-color: #186bc9 !important; }
    .single_contents .single_contents_wpContent .single_contents_wpContent_icon[href$=".pdf"]:before {
      background-color: #d72118;
      background-image: url(../images/common/icon-pdf.png);
      border-color: #d72118; }
    .single_contents .single_contents_wpContent .single_contents_wpContent_icon[href$=".xlsx"]:before {
      background-color: #007870;
      background-image: url(../images/common/icon-excel.png);
      border-color: #007870; }
    .single_contents .single_contents_wpContent .single_contents_wpContent_icon[href$=".zip"]:before {
      background-color: #333;
      background-image: url(../images/common/icon-zip.png);
      border-color: #333; }
    @media screen and (max-width: 767px) {
      .single_contents .single_contents_wpContent .single_contents_wpContent_icon {
        border: 0.6vw solid #ccc;
        max-width: none;
        padding-top: 4vw;
        padding-bottom: 4vw;
        padding-left: 18vw;
        padding-right: 8vw; }
        .single_contents .single_contents_wpContent .single_contents_wpContent_icon:before {
          left: -0.6vw;
          width: 12.2vw;
          height: 100%;
          background-size: 9.5vw;
          border: 0.6vw solid;
          border-right: none; } }

.notfound .page_listBox_textBox_link {
  display: block;
  margin-top: 50px; }
  .notfound .page_listBox_textBox_link a {
    max-width: 300px; }
@media screen and (max-width: 767px) {
  .notfound .page_listBox_textBox_link {
    margin-top: 10vw; }
    .notfound .page_listBox_textBox_link a {
      max-width: none; } }

.page_listBox_subTitle {
  font-size: 2.4rem;
  border-left: 12px solid #d72118;
  border-bottom: 2px solid #d72118;
  padding-left: 15px;
  padding-bottom: 5px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5; }
  @media screen and (max-width: 767px) {
    .page_listBox_subTitle {
      border-left: 2vw solid #d72118;
      border-bottom: 0.6vw solid #d72118;
      padding-left: 4vw;
      padding-bottom: 1vw;
      margin-bottom: 7vw; } }

.page_listBox_textBox_link_variable {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px; }
  .page_listBox_textBox_link_variable a {
    width: auto;
    max-width: none;
    padding: 20px 25px; }
  @media screen and (max-width: 767px) {
    .page_listBox_textBox_link_variable {
      margin-top: 7vw;
      margin-bottom: 7vw; }
      .page_listBox_textBox_link_variable a {
        padding: 5vw 0; } }

.attention-mark {
  font-size: 1.4rem;
  color: #9b9b9b;
  text-indent: -1em;
  padding-left: 1em; }

.news_deco_title {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 10px;
  position: relative; }
  .news_deco_title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #d72118; }
  @media screen and (max-width: 767px) {
    .news_deco_title {
      font-size: 2.1rem;
      padding-bottom: 3vw; }
      .news_deco_title:before {
        width: 10vw;
        height: 0.4vw; } }

.newsList li {
  border-bottom: 1px dashed #ccc; }
  .newsList li:first-child a {
    padding-top: 0; }
  .newsList li a {
    display: flex;
    padding: 22px 0; }
    .newsList li a:hover p {
      text-decoration: underline; }
    .newsList li a time {
      color: #186bc9;
      font-size: 1.6rem;
      line-height: 1.2; }
    .newsList li a p {
      font-size: 1.6rem;
      line-height: 1.2;
      position: relative;
      margin-left: 20px; }
@media screen and (max-width: 767px) {
  .newsList li {
    border-bottom: 0.2vw dashed #ccc; }
    .newsList li a {
      display: block;
      padding: 4vw 0; }
      .newsList li a time {
        font-size: 1.4rem; }
      .newsList li a p {
        margin-left: 0;
        margin-top: 1vw;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; } }

.newsList_important {
  margin-top: 12px; }
  .newsList_important li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative; }
    .newsList_important li:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0%, -50%);
      width: 20px;
      height: 20px;
      background-image: url(../images/common/icon-alert.png);
      background-repeat: no-repeat;
      background-size: contain; }
    .newsList_important li:last-child {
      margin-bottom: 0; }
    .newsList_important li a {
      color: #d72118;
      font-size: 1.6rem;
      line-height: 1.2; }
      .newsList_important li a:hover {
        text-decoration: underline; }
  @media screen and (max-width: 767px) {
    .newsList_important {
      margin-top: 5vw; }
      .newsList_important li {
        margin-bottom: 4vw;
        padding-left: 6vw; }
        .newsList_important li:before {
          width: 4.5vw;
          height: 4.5vw; } }

.news_archive_btn {
  margin-top: 20px;
  text-align: right; }
  .news_archive_btn a {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    border-bottom: 2px solid #ccc;
    padding: 0 20px 8px 0;
    position: relative; }
    .news_archive_btn a:before, .news_archive_btn a:after {
      content: "";
      position: absolute;
      top: calc(50% - 3px);
      right: 0;
      width: 8px;
      height: 2px;
      border-radius: 9999px;
      transform-origin: 100% 50%;
      background-color: #ccc; }
    .news_archive_btn a:before {
      transform: translateY(-50%) rotate(45deg); }
    .news_archive_btn a:after {
      transform: translateY(-50%) rotate(-45deg); }
  @media screen and (max-width: 767px) {
    .news_archive_btn {
      margin-top: 6vw; }
      .news_archive_btn a {
        border-bottom: 0.4vw solid #ccc;
        padding: 0 4vw 2vw 0; }
        .news_archive_btn a:before, .news_archive_btn a:after {
          top: calc(50% - 0.4vw);
          width: 2.6vw;
          height: 0.4vw; } }

.login {
  background-color: #eee;
  padding-top: 50px; }
  .login .wpmem_msg {
    width: calc(100% - 30px);
    background-color: transparent;
    border: 1px solid #d72118;
    color: #d72118;
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 15px; }
    @media screen and (max-width: 767px) {
      .login .wpmem_msg {
        width: calc(100% - 8vw);
        border: 0.2vw solid #d72118;
        padding: 4vw; } }

.loginBox {
  width: calc(95% - 80px);
  max-width: 580px;
  margin: 0 auto 50px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  @media screen and (max-width: 767px) {
    .loginBox {
      width: calc(90% - 16vw);
      max-width: none;
      margin: 0 auto 12.47vw;
      padding: 8vw;
      box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1); } }

.loginBox_inner {
  max-width: 500px;
  margin: auto; }
  @media screen and (max-width: 767px) {
    .loginBox_inner {
      max-width: none; } }

.loginBox_logo {
  max-width: 240px;
  margin: 0 auto 40px; }
  @media screen and (max-width: 767px) {
    .loginBox_logo {
      width: 70%;
      max-width: none;
      margin: 0 auto 10vw; } }

#wpmem_restricted_msg {
  display: none; }

#wpmem_login_form legend {
  display: none; }
#wpmem_login_form label {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 12px; }
#wpmem_login_form .div_text {
  margin-bottom: 30px; }
  #wpmem_login_form .div_text input {
    border: none;
    background-color: #eee;
    font-size: 1.6rem;
    padding: 13px 20px;
    border-radius: unset;
    width: calc(100% - 40px); }
#wpmem_login_form .button_div #rememberme {
  display: inline-block;
  margin-right: 5px; }
#wpmem_login_form .button_div label {
  font-size: 1.6rem;
  color: #186bc9;
  cursor: pointer; }
#wpmem_login_form .button_div .buttons {
  display: block;
  margin-top: 36px;
  border: none;
  background-color: #d72118;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  width: 100%;
  padding: 13px; }
@media screen and (max-width: 767px) {
  #wpmem_login_form label {
    font-size: 1.4rem;
    margin-bottom: 3vw; }
  #wpmem_login_form .div_text {
    margin-bottom: 6vw; }
    #wpmem_login_form .div_text input {
      font-size: 1.4rem;
      padding: 4vw 6vw;
      width: calc(100% - 12vw); }
  #wpmem_login_form .button_div #rememberme {
    margin-right: 2vw; }
  #wpmem_login_form .button_div label {
    font-size: 1.4rem; }
  #wpmem_login_form .button_div .buttons {
    margin-top: 5vw;
    font-size: 2.1rem;
    padding: 4vw; } }

#wpmem_login {
  width: 100%; }

#wpmem_login .button_div, #wpmem_reg .button_div {
  text-align: left;
  padding: 0; }

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", メイリオ, Meiryo, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #000; }
  @media screen and (max-width: 767px) {
    html {
      font-size: 2.6667vw; } }

body {
  position: relative;
  overflow-anchor: none;
  padding-top: 65px; }
  @media screen and (max-width: 767px) {
    body {
      padding-top: 12.47vw; } }

html {
  overflow-x: hidden; }

figure {
  margin: 0; }

img {
  max-width: 100%;
  flex-shrink: 0; }

a {
  text-decoration: none;
  color: #000;
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s; }
  a:hover {
    opacity: .7; }

article {
  margin-top: 25px; }
  @media screen and (max-width: 767px) {
    article {
      margin-top: 5vw; } }

.content_inner {
  width: 95%;
  max-width: 1250px;
  margin: auto; }
  @media screen and (max-width: 767px) {
    .content_inner {
      width: 90%;
      max-width: none; } }

.no-search {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  padding: 50px 0; }
  @media screen and (max-width: 767px) {
    .no-search {
      font-size: 1.6rem;
      padding: 10vw 0; } }

.highlight {
  background: orange; }

/* ==========================================================================
   mar/pad
   ========================================================================== */
.mt--0 {
  margin-top: 0px !important; }

.mt--5 {
  margin-top: 5px !important; }

.mt--10 {
  margin-top: 10px !important; }

.mt--20 {
  margin-top: 20px !important; }

.mt--30 {
  margin-top: 30px !important; }

.mt--40 {
  margin-top: 40px !important; }

.mt--50 {
  margin-top: 50px !important; }

.mt--60 {
  margin-top: 60px !important; }

.mt--70 {
  margin-top: 70px !important; }

.mt--80 {
  margin-top: 80px !important; }

.mt--90 {
  margin-top: 90px !important; }

.mt--100 {
  margin-top: 100px !important; }

.mb--0 {
  margin-bottom: 0px !important; }

.mb--5 {
  margin-bottom: 5px !important; }

.mb--10 {
  margin-bottom: 10px !important; }

.mb--20 {
  margin-bottom: 20px !important; }

.mb--30 {
  margin-bottom: 30px !important; }

.mb--40 {
  margin-bottom: 40px !important; }

.mb--50 {
  margin-bottom: 50px !important; }

.mb--60 {
  margin-bottom: 60px !important; }

.mb--70 {
  margin-bottom: 70px !important; }

.mb--80 {
  margin-bottom: 80px !important; }

.mb--90 {
  margin-bottom: 90px !important; }

.mb--100 {
  margin-bottom: 100px !important; }

.mr--0 {
  margin-right: 0px !important; }

.mr--5 {
  margin-right: 5px !important; }

.mr--10 {
  margin-right: 10px !important; }

.mr--20 {
  margin-right: 20px !important; }

.mr--30 {
  margin-right: 30px !important; }

.mr--40 {
  margin-right: 40px !important; }

.mr--50 {
  margin-right: 50px !important; }

.mr--60 {
  margin-right: 60px !important; }

.mr--70 {
  margin-right: 70px !important; }

.mr--80 {
  margin-right: 80px !important; }

.mr--90 {
  margin-right: 90px !important; }

.mr--100 {
  margin-right: 100px !important; }

.ml--0 {
  margin-left: 0px !important; }

.ml--5 {
  margin-left: 5px !important; }

.ml--10 {
  margin-left: 10px !important; }

.ml--20 {
  margin-left: 20px !important; }

.ml--30 {
  margin-left: 30px !important; }

.ml--40 {
  margin-left: 40px !important; }

.ml--50 {
  margin-left: 50px !important; }

.ml--60 {
  margin-left: 60px !important; }

.ml--70 {
  margin-left: 70px !important; }

.ml--80 {
  margin-left: 80px !important; }

.ml--90 {
  margin-left: 90px !important; }

.ml--100 {
  margin-left: 100px !important; }

.pt--0 {
  padding-top: 0px !important; }

.pt--5 {
  padding-top: 5px !important; }

.pt--10 {
  padding-top: 10px !important; }

.pt--15 {
  padding-top: 15px !important; }

.pt--20 {
  padding-top: 20px !important; }

.pt--30 {
  padding-top: 30px !important; }

.pt--40 {
  padding-top: 40px !important; }

.pt--50 {
  padding-top: 50px !important; }

.pt--60 {
  padding-top: 60px !important; }

.pt--70 {
  padding-top: 70px !important; }

.pt--80 {
  padding-top: 80px !important; }

.pt--90 {
  padding-top: 90px !important; }

.pt--100 {
  padding-top: 100px !important; }

.pb--0 {
  padding-bottom: 0px !important; }

.pb--5 {
  padding-bottom: 5px !important; }

.pb--10 {
  padding-bottom: 10px !important; }

.pb--20 {
  padding-bottom: 20px !important; }

.pb--30 {
  padding-bottom: 30px !important; }

.pb--40 {
  padding-bottom: 40px !important; }

.pb--50 {
  padding-bottom: 50px !important; }

.pb--60 {
  padding-bottom: 60px !important; }

.pb--70 {
  padding-bottom: 70px !important; }

.pb--80 {
  padding-bottom: 80px !important; }

.pb--90 {
  padding-bottom: 90px !important; }

.pb--100 {
  padding-bottom: 100px !important; }

.pr--0 {
  padding-right: 0px !important; }

.pr--5 {
  padding-right: 5px !important; }

.pr--10 {
  padding-right: 10px !important; }

.pr--20 {
  padding-right: 20px !important; }

.pr--30 {
  padding-right: 30px !important; }

.pr--40 {
  padding-right: 40px !important; }

.pr--50 {
  padding-right: 50px !important; }

.pr--60 {
  padding-right: 60px !important; }

.pr--70 {
  padding-right: 70px !important; }

.pr--80 {
  padding-right: 80px !important; }

.pr--90 {
  padding-right: 90px !important; }

.pr--100 {
  padding-right: 100px !important; }

.pl--0 {
  padding-left: 0px !important; }

.pl--5 {
  padding-left: 5px !important; }

.pl--10 {
  padding-left: 10px !important; }

.pl--20 {
  padding-left: 20px !important; }

.pl--30 {
  padding-left: 30px !important; }

.pl--40 {
  padding-left: 40px !important; }

.pl--50 {
  padding-left: 50px !important; }

.pl--60 {
  padding-left: 60px !important; }

.pl--70 {
  padding-left: 70px !important; }

.pl--80 {
  padding-left: 80px !important; }

.pl--90 {
  padding-left: 90px !important; }

.pl--100 {
  padding-left: 100px !important; }

/* ==========================================================================
   全ページ共通
   ========================================================================== */
.sp-only {
  display: none !important; }

.sp-only__inline {
  display: none !important; }

.sp-only__flex {
  display: none !important; }

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important; }

  .sp-only {
    display: block !important; }

  .sp-only__inline {
    display: inline-block !important; }

  .sp-only__flex {
    display: flex !important; } }

/*# sourceMappingURL=main.css.map */
