@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  min-width: 280px;
  overflow-x: hidden;
}
@media screen and (max-width: 1079px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-family: "Hiragino maru Gothic ProN W4", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "arial", "Meiryo", "MS PGothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #292929;
  min-height: 200vh;
  overflow-x: hidden;
}

a {
  color: black;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.65;
}

p {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0;
  word-break: break-word;
  text-align: left;
  padding-bottom: 1em;
}
@media screen and (max-width: 567px) {
  p {
    letter-spacing: 0;
  }
}

span.br {
  display: block;
  padding-bottom: 0.9em;
}

th,
td,
li,
dd,
dt,
a {
  color: #292929;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.center {
  text-align: center;
}

.l-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 80px 40px;
  grid-template-rows: 80px 40px;
      grid-template-areas: "top" "nav";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "top";
    -ms-grid-rows: 60px;
    grid-template-rows: 60px;
  }
}
.l-header-top {
  /*ロゴ・サーチ・ボタン*/
  width: 100%;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px 235px;
  grid-template-columns: 1fr 300px 235px;
      grid-template-areas: "ttl search BTN";
  -ms-grid-columns: 1fr 535px;
  grid-template-columns: 1fr 535px;
      grid-template-areas: "ttl SB-BTN";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header-top {
    height: 60px;
    -ms-grid-columns: 150px 1fr;
    grid-template-columns: 150px 1fr;
        grid-template-areas: "ttl SB-BTN";
  }
}
.l-header__SB-BTN {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: SB-BTN;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-header__ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: ttl;
  padding-left: 24px;
}
@media screen and (max-width: 567px) {
  .l-header__ttl {
    padding-left: 10px;
  }
}
.l-header__ttl img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .l-header__ttl img {
    width: 150px;
  }
}
@media screen and (max-width: 389px) {
  .l-header__ttl img {
    width: 120px;
  }
}

/* ===========================================
 * search-box
 * ======================================== */
.l-header__search-box {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: search;
  width: 240px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  padding: 4px 8px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .l-header__search-box {
    margin-right: 0;
    font-size: 1.8rem;
    padding: 7px 10px;
  }
}
.l-header__search-box > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__search-box input {
  border: none;
  background: transparent;
  font-size: 16px;
  width: 100%;
  padding: 0;
  color: #333;
  outline: none;
}
.l-header__search-box input::-webkit-input-placeholder {
  color: #bbb;
}
.l-header__search-box input::-moz-placeholder {
  color: #bbb;
}
.l-header__search-box input:-ms-input-placeholder {
  color: #bbb;
}
.l-header__search-box input::-ms-input-placeholder {
  color: #bbb;
}
.l-header__search-box input::placeholder {
  color: #bbb;
}
.l-header__search-box button {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .l-header__search-box {
    /*スマホメニュー用の検索ボックス*/
  }
  .l-header__search-box.--PC {
    display: none;
  }
}
.l-header__search-SP {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__search-SP {
    display: block;
    width: 100%;
    margin: 10px 0 20px;
  }
  .l-header__search-SP .l-header__search-box {
    width: 100%;
    padding: 8px 12px;
  }
  .l-header__search-SP .l-header__search-box input {
    font-size: 1.8rem;
  }
}

/* ===========================================
 * BTN
 * ======================================== */
.l-header__BTN {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: BTN;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  padding-right: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .l-header__BTN {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 8px;
    margin-right: 70px;
    padding: 0;
  }
  .l-header__BTN .btn-login,
  .l-header__BTN .btn-register {
    font-size: 15px;
  }
}
@media screen and (max-width: 359px) {
  .l-header__BTN {
    margin-right: 60px;
  }
}
.l-header__BTN .btn-login,
.l-header__BTN .btn-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0.5em 3px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
}
.l-header__BTN .btn-login i,
.l-header__BTN .btn-register i {
  padding-right: 5px;
}
@media screen and (max-width: 567px) {
  .l-header__BTN .btn-login,
  .l-header__BTN .btn-register {
    font-size: 12px;
  }
  .l-header__BTN .btn-login i,
  .l-header__BTN .btn-register i {
    display: none;
  }
}
@media screen and (max-width: 359px) {
  .l-header__BTN .btn-login,
  .l-header__BTN .btn-register {
    width: 3.5em;
    font-size: 10px;
    padding: 3px 0.4em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.l-header__BTN .btn-login {
  color: #1152a6;
  border: 1px solid #1152a6;
  background-color: #fff;
}
.l-header__BTN .btn-login:hover {
  background-color: #e6f0ff;
}
.l-header__BTN .btn-register {
  background: #1152a6;
  color: #fff;
  border: 1px solid #1152a6;
}
.l-header__BTN .btn-register:hover {
  background-color: #003f80;
}
.l-header__BTN .btn-login-SP {
  display: none;
}
@media screen and (max-width: 567px) {
  .l-header__BTN .btn-login-SP {
    width: 62px;
    height: 60px;
    border-left: 1px solid #1152a6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__BTN .btn-login-SP a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 10px;
    gap: 2px;
    color: #1152a6;
  }
  .l-header__BTN .btn-login-SP a span {
    line-height: 1.2;
  }
}

.nav-line {
  position: relative;
}

/* ===========================================
 * nav
 * ======================================== */
.l-header-nav {
  width: 100%;
  height: 40px;
  background: #1152a6;
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
}
.global-nav {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  /*基本のナビ・ドロップダウン付き*/
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  grid-area: nav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-size: 1.7rem;
  position: relative;
  z-index: 9;
  /*===ドロップダウンメニュー===*/
  /* 表示切替 */
  /*スマホメニュー*/
}
.l-footer-content > .global-nav {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (max-width: 768px) {
  .global-nav {
    background: #ffffff;
  }
  .global-nav-PC {
    display: none;
  }
}
.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.global-nav__item > a,
.global-nav__item button {
  position: relative;
  font-size: 1.7rem;
  font-weight: 500;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5em;
  color: white;
  text-decoration: none;
}
.global-nav__item > a i,
.global-nav__item button i {
  padding-left: 8px;
}
@media screen and (max-width: 979px) {
  .global-nav__item > a,
  .global-nav__item button {
    font-size: 1.6rem;
  }
}
.global-nav__item > a:after,
.global-nav__item button:after {
  position: absolute;
  top: 8px;
  right: 0;
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: white;
  opacity: 0.5;
}
.global-nav__item a:hover {
  opacity: 0.65;
}
.global-nav__item:first-child a {
  padding: 0 2em 0 1em;
}
@media screen and (max-width: 979px) {
  .global-nav__item:first-child a {
    padding: 0 1.5em;
  }
}
.global-nav__item:last-child a {
  padding: 0 1em 0 2em;
}
@media screen and (max-width: 979px) {
  .global-nav__item:last-child a {
    padding: 0 1.5em;
  }
}
.global-nav__item:last-child a:after {
  content: none;
}
.global-nav .has-dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  max-width: 1200px;
  padding: 35px 40px 45px;
  z-index: 1000;
  margin: 0 auto;
  background: #292929;
  background: rgba(255, 255, 255, 0.9);
  -webkit-filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.45));
          filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.45));
}
.global-nav .has-dropdown .dropdown-content__header img {
  margin: 0 auto 30px 0;
}
.global-nav .has-dropdown .dropdown-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.global-nav .has-dropdown .dropdown-inner a {
  display: block;
}
.global-nav .has-dropdown .dropdown-inner img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  opacity: 1;
}
.global-nav .has-dropdown .dropdown-inner span {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
  color: #292929;
  text-align: left;
}
.global-nav .has-dropdown .dropdown-inner span i {
  font-size: 0.8em;
  color: #aaaaaa;
  padding-left: 5px;
}
.global-nav .has-dropdown .dropdown-inner.--feature {
  /*特集のドロップダウン*/
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.global-nav .has-dropdown .dropdown-inner.--feature span {
  margin-top: 8px;
  font-size: 1.7rem;
  font-weight: 600;
}
.global-nav .has-dropdown .dropdown-inner.--feature span i {
  font-size: 0.7em;
  color: #aaaaaa;
}
.global-nav .has-dropdown .l-grid-2 {
  /*２カラムのリンクボタン*/
  max-width: -webkit-min-content;
  max-width: -moz-min-content;
  max-width: min-content;
  margin: 0 auto;
}
.global-nav .has-dropdown .l-grid-2 .c-btn-link {
  width: 16em;
  margin: 40px auto 0;
}
.global-nav .has-dropdown:hover .dropdown {
  display: block;
}
.global-nav .has-dropdown.active .dropdown-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .global-nav__list {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 60px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    background: #292929;
    z-index: 9999;
    margin-bottom: 50px;
    padding: 35px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    clip-path: inset(0 0 0 100%);
    /*逆の場合inset(0 100% 0 0)*/
    -webkit-transition: clip-path 0.3s;
    transition: clip-path 0.3s;
  }
  .is-ham-open .global-nav__list {
    clip-path: inset(0 0 0 0%);
  }
  .global-nav__item {
    width: 100%;
    border-bottom: 1px solid #ccc;
    height: auto;
  }
  .global-nav__item > a,
  .global-nav__item button {
    padding: 1em 0;
    font-size: 1.7rem;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .global-nav__item > a:after,
  .global-nav__item button:after {
    content: none;
  }
  .global-nav__item > a i,
  .global-nav__item button i {
    font-size: 12px;
    padding: 5px 0 0 8px;
    opacity: 0.8;
  }
  .global-nav__item:last-child a {
    padding: 1.5em 0;
  }
  .global-nav__item details {
    margin: 0;
  }
  .global-nav__item details summary {
    color: white;
    padding: 1.5em 0;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1;
  }
  .global-nav__item details summary::after {
    /*開閉マーク*/
    content: "+";
    font-size: 15px;
    color: white;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .global-nav__item details .details_item_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding-bottom: 1em;
    -webkit-column-gap: 1.5em;
       -moz-column-gap: 1.5em;
            column-gap: 1.5em;
    row-gap: 0.5em;
  }
  .global-nav__item details .details_item_inner a {
    color: white;
  }
  .global-nav__item details .details_item_inner a i {
    font-size: 12px;
    padding: 2px 0 0 5px;
    opacity: 0.8;
  }
  .global-nav__item details[open] summary::after {
    content: "\f068";
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .global-nav__footer {
    width: 100%;
    padding: 50px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em;
  }
  .global-nav__footer img {
    max-width: 200px;
    width: 60%;
    margin: 0 auto 5px;
  }
  .global-nav__footer-snsNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    gap: 15px;
  }
  .global-nav__footer-snsNav li a {
    color: white;
  }
  .global-nav__footer-snsNav li a i {
    font-size: 2.4rem;
  }
  .global-nav__footer-subNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
  .global-nav__footer-subNav li:first-child {
    width: auto !important;
  }
  .global-nav__footer-subNav li a {
    color: white;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .global-nav.-PC {
    display: none;
  }
}

.global-nav.-SP {
  display: none;
}
@media screen and (max-width: 768px) {
  .global-nav.-SP {
    display: block;
  }
}

/* ===========================================
 * SPのスクロールナビ
 * ======================================== */
.l-header-scroll {
  width: 100%;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header-scroll {
    display: block;
  }
}

.scroll-nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  background: #1152a6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.scroll-nav .scroll-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1em;
}
@media screen and (max-width: 567px) {
  .scroll-nav .scroll-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.scroll-nav .scroll-nav__list-item {
  white-space: nowrap;
}
.scroll-nav .scroll-nav__list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  padding: 0 1em;
  font-size: 1.6rem;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  position: relative;
}
.scroll-nav .scroll-nav__list-item a:after {
  position: absolute;
  top: 8px;
  right: 0;
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: white;
  opacity: 0.5;
}
.scroll-nav .scroll-nav__list-item:first-child a {
  padding: 0 1em 0 0;
}
.scroll-nav .scroll-nav__list-item:last-child:after {
  content: none;
}
.scroll-nav::-webkit-scrollbar {
  display: none;
}

.l-footer {
  width: 100%;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  background: #292929;
  margin: 150px auto 0;
  /* 開いたときにアイコンを回転させる */
}
.l-footer nav {
  background: #dcdcdc;
}
.l-footer-topNav__list {
  /*上部のナビ*/
  margin: 0 auto;
  max-width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #292929;
}
.l-footer-topNav__list a {
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 5px 1em;
  display: block;
}
.l-footer-topNav__list a i {
  font-size: 0.9em;
  padding-bottom: 2px;
}
.l-footer-topNav__list li {
  padding: 5px 0;
}
@media screen and (max-width: 679px) {
  .l-footer-topNav__list li {
    width: 50%;
    text-align: center;
  }
  .l-footer-topNav__list li:first-child, .l-footer-topNav__list li:nth-child(2) {
    border-bottom: 1px solid #a7a7a7;
  }
  .l-footer-topNav__list li:first-child, .l-footer-topNav__list li:nth-child(3) {
    border-right: 1px solid #a7a7a7;
  }
}
@media screen and (max-width: 567px) {
  .l-footer-topNav__list li a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 374px) {
  .l-footer-topNav__list li {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid #a7a7a7;
  }
}
.l-footer-content {
  padding: 35px 40px 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
  grid-template-columns: 320px 1fr;
      grid-template-areas: "logo nav";
  margin: 0 auto;
  max-width: 1260px;
}
@media screen and (max-width: 768px) {
  .l-footer-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "nav" "logo";
    padding: 35px 24px 10px;
  }
  .l-footer-content > .global-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.l-footer-content__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  width: 100%;
  padding-bottom: 15px;
  grid-area: logo;
}
@media screen and (max-width: 768px) {
  .l-footer-content__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-footer-content__logo img {
  width: 100%;
  max-width: 240px;
  display: block;
}
.l-footer-content__txt strong {
  /*会社名*/
  font-size: 1.7rem;
  padding-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
}
.l-footer-content__txt p {
  /*住所*/
  font-size: 1.4rem;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-weight: 400;
  color: #ccc;
}
.l-footer-content__txt p span.no-tel {
  /*電話番号*/
  display: block;
  pointer-events: none;
  cursor: default;
}
.l-footer-content__nav {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: nav;
}
.l-footer-content > .l-footer-content__nav {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (max-width: 768px){
  .l-footer-content__logo {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-footer-content > .l-footer-content__nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-content__nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
}
.l-footer-snsNav {
  /*detail*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.l-footer-snsNav li {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer-snsNav li:first-child {
  /*SNS公式アカウント*/
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #ccc;
}
@media screen and (max-width: 567px) {
  .l-footer-snsNav li:first-child {
    width: 100%;
  }
}
.l-footer-snsNav li:first-child small {
  padding: 0 10px 0 5px;
}
.l-footer-snsNav a {
  color: white;
}
.l-footer-snsNav i {
  font-size: 2.6rem;
}
.l-footer details {
  /*運営会社について*/
  padding: 0 0 10px;
  margin-bottom: 0;
  height: auto;
}
.l-footer details summary {
  list-style: none;
  position: relative;
  padding-right: 1.5em;
  /* 右に余白を作る */
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  color: #ccc;
}
.l-footer details summary::-webkit-details-marker {
  display: none;
  /* ChromeやSafariのデフォルトマーカーを非表示に */
}
.l-footer details summary::after {
  content: none;
}
.l-footer-subNav__list {
  /*運営会社についてのメニュー*/
  padding: 0 0 0 16px;
  margin: 15px auto 20px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
  row-gap: 0.8em;
  border-left: 1px solid white;
  line-height: 1;
}
.l-footer-subNav__list a {
  color: white;
  font-size: 1.6rem;
}
.l-footer-subNav__list a i {
  font-size: 0.9em;
  padding-bottom: 2px;
}
.l-footer details[open] summary::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.l-footer-bottomNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 1em;
  width: 100%;
  padding: 0 0 0 16px;
  margin: 15px 0 15px 5px;
  border-left: 1px solid white;
}
.l-footer-bottomNav__list li {
  line-height: 1;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer-bottomNav__list li a {
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}
.l-footer-bottomNav__list li a i {
  padding-left: 5px;
}
.l-footer .copyright {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0;
  font-size: 11px;
  color: #bcbcbc;
  text-align: center;
  letter-spacing: 0.1em;
  background: rgb(20, 20, 20);
}

.temp-test {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin: 0 auto 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0 40px;
}
.temp-test a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  font-size: 1.5rem;
}
.temp-test span {
  font-size: 1.5rem;
  width: 100%;
  display: block;
}

.l-inner {
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 567px) {
  .l-inner {
    padding: 0 15px;
  }
}
.l-inner.--w450 {
  max-width: 450px;
}
.l-inner.--w460 {
  max-width: 460px;
}
.l-inner.--w470 {
  max-width: 470px;
}
.l-inner.--w480 {
  max-width: 480px;
}
.l-inner.--w490 {
  max-width: 490px;
}
.l-inner.--w500 {
  max-width: 500px;
}
.l-inner.--w510 {
  max-width: 510px;
}
.l-inner.--w520 {
  max-width: 520px;
}
.l-inner.--w530 {
  max-width: 530px;
}
.l-inner.--w540 {
  max-width: 540px;
}
.l-inner.--w550 {
  max-width: 550px;
}
.l-inner.--w560 {
  max-width: 560px;
}
.l-inner.--w570 {
  max-width: 570px;
}
.l-inner.--w580 {
  max-width: 580px;
}
.l-inner.--w590 {
  max-width: 590px;
}
.l-inner.--w600 {
  max-width: 600px;
}
.l-inner.--w610 {
  max-width: 610px;
}
.l-inner.--w620 {
  max-width: 620px;
}
.l-inner.--w630 {
  max-width: 630px;
}
.l-inner.--w640 {
  max-width: 640px;
}
.l-inner.--w650 {
  max-width: 650px;
}
.l-inner.--w660 {
  max-width: 660px;
}
.l-inner.--w670 {
  max-width: 670px;
}
.l-inner.--w680 {
  max-width: 680px;
}
.l-inner.--w690 {
  max-width: 690px;
}
.l-inner.--w700 {
  max-width: 700px;
}
.l-inner.--w710 {
  max-width: 710px;
}
.l-inner.--w720 {
  max-width: 720px;
}
.l-inner.--w730 {
  max-width: 730px;
}
.l-inner.--w740 {
  max-width: 740px;
}
.l-inner.--w750 {
  max-width: 750px;
}
.l-inner.--w760 {
  max-width: 760px;
}
.l-inner.--w770 {
  max-width: 770px;
}
.l-inner.--w780 {
  max-width: 780px;
}
.l-inner.--w790 {
  max-width: 790px;
}
.l-inner.--w800 {
  max-width: 800px;
}
.l-inner.--w810 {
  max-width: 810px;
}
.l-inner.--w820 {
  max-width: 820px;
}
.l-inner.--w830 {
  max-width: 830px;
}
.l-inner.--w840 {
  max-width: 840px;
}
.l-inner.--w850 {
  max-width: 850px;
}
.l-inner.--w860 {
  max-width: 860px;
}
.l-inner.--w870 {
  max-width: 870px;
}
.l-inner.--w880 {
  max-width: 880px;
}
.l-inner.--w890 {
  max-width: 890px;
}
.l-inner.--w900 {
  max-width: 900px;
}
.l-inner.--w910 {
  max-width: 910px;
}
.l-inner.--w920 {
  max-width: 920px;
}
.l-inner.--w930 {
  max-width: 930px;
}
.l-inner.--w940 {
  max-width: 940px;
}
.l-inner.--w950 {
  max-width: 950px;
}
.l-inner.--w960 {
  max-width: 960px;
}
.l-inner.--w970 {
  max-width: 970px;
}
.l-inner.--w980 {
  max-width: 980px;
}
.l-inner.--w990 {
  max-width: 990px;
}
.l-inner.--w1000 {
  max-width: 1000px;
}
.l-inner.--w1010 {
  max-width: 1010px;
}
.l-inner.--w1020 {
  max-width: 1020px;
}
.l-inner.--w1030 {
  max-width: 1030px;
}
.l-inner.--w1040 {
  max-width: 1040px;
}
.l-inner.--w1050 {
  max-width: 1050px;
}
.l-inner.--w1060 {
  max-width: 1060px;
}
.l-inner.--w1070 {
  max-width: 1070px;
}
.l-inner.--w1080 {
  max-width: 1080px;
}
.l-inner.--w1090 {
  max-width: 1090px;
}
.l-inner.--w1100 {
  max-width: 1100px;
}
.l-inner.--w1110 {
  max-width: 1110px;
}
.l-inner.--w1120 {
  max-width: 1120px;
}
.l-inner.--w1130 {
  max-width: 1130px;
}
.l-inner.--w1140 {
  max-width: 1140px;
}
.l-inner.--w1150 {
  max-width: 1150px;
}
.l-inner.--w1160 {
  max-width: 1160px;
}
.l-inner.--w1170 {
  max-width: 1170px;
}
.l-inner.--w1180 {
  max-width: 1180px;
}
.l-inner.--w1190 {
  max-width: 1190px;
}
.l-inner.--w1200 {
  max-width: 1200px;
}
.l-inner.--w1210 {
  max-width: 1210px;
}
.l-inner.--w1220 {
  max-width: 1220px;
}
.l-inner.--w1230 {
  max-width: 1230px;
}
.l-inner.--w1240 {
  max-width: 1240px;
}
.l-inner.--w1250 {
  max-width: 1250px;
}
.l-inner.--w1260 {
  max-width: 1260px;
}
.l-inner.--w1270 {
  max-width: 1270px;
}
@media screen and (max-width: 768px) {
  .l-inner--BK {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    max-width: 600px !important;
    margin: 0 auto;
  }
}

.mb.--0 {
  margin-bottom: 0px;
}
.mb.--10 {
  margin-bottom: 10px;
}
.mb.--20 {
  margin-bottom: 20px;
}
.mb.--30 {
  margin-bottom: 30px;
}
.mb.--40 {
  margin-bottom: 40px;
}
.mb.--50 {
  margin-bottom: 50px;
}
.mb.--60 {
  margin-bottom: 60px;
}
.mb.--70 {
  margin-bottom: 70px;
}
.mb.--80 {
  margin-bottom: 80px;
}
.mb.--90 {
  margin-bottom: 90px;
}
.mb.--100 {
  margin-bottom: 100px;
}
.mb.--110 {
  margin-bottom: 110px;
}
.mb.--120 {
  margin-bottom: 120px;
}
.mb.--130 {
  margin-bottom: 130px;
}
.mb.--140 {
  margin-bottom: 140px;
}
.mb.--150 {
  margin-bottom: 150px;
}
.mb.--160 {
  margin-bottom: 160px;
}
.mb.--170 {
  margin-bottom: 170px;
}
.mb.--180 {
  margin-bottom: 180px;
}
.mb.--190 {
  margin-bottom: 190px;
}
.mb.--200 {
  margin-bottom: 200px;
}
.mb.--210 {
  margin-bottom: 210px;
}
.mb.--220 {
  margin-bottom: 220px;
}
.mb.--230 {
  margin-bottom: 230px;
}
.mb.--240 {
  margin-bottom: 240px;
}
.mb.--250 {
  margin-bottom: 250px;
}
.mb.--260 {
  margin-bottom: 260px;
}
.mb.--270 {
  margin-bottom: 270px;
}
.mb.--280 {
  margin-bottom: 280px;
}
.mb.--290 {
  margin-bottom: 290px;
}
.mb.--300 {
  margin-bottom: 300px;
}
.mb.--310 {
  margin-bottom: 310px;
}
.mb.--320 {
  margin-bottom: 320px;
}
.mb.--330 {
  margin-bottom: 330px;
}
.mb.--340 {
  margin-bottom: 340px;
}
.mb.--350 {
  margin-bottom: 350px;
}
.mb.--360 {
  margin-bottom: 360px;
}
.mb.--370 {
  margin-bottom: 370px;
}
.mb.--380 {
  margin-bottom: 380px;
}
.mb.--390 {
  margin-bottom: 390px;
}
.mb.--400 {
  margin-bottom: 400px;
}
.mb.--410 {
  margin-bottom: 410px;
}
.mb.--420 {
  margin-bottom: 420px;
}
.mb.--430 {
  margin-bottom: 430px;
}
.mb.--440 {
  margin-bottom: 440px;
}
.mb.--450 {
  margin-bottom: 450px;
}
.mb.--460 {
  margin-bottom: 460px;
}
.mb.--470 {
  margin-bottom: 470px;
}
.mb.--480 {
  margin-bottom: 480px;
}
.mb.--490 {
  margin-bottom: 490px;
}
.mb.--500 {
  margin-bottom: 500px;
}
.mb.--510 {
  margin-bottom: 510px;
}
.mb.--520 {
  margin-bottom: 520px;
}
.mb.--530 {
  margin-bottom: 530px;
}
.mb.--540 {
  margin-bottom: 540px;
}
.mb.--550 {
  margin-bottom: 550px;
}
.mb.--560 {
  margin-bottom: 560px;
}
.mb.--570 {
  margin-bottom: 570px;
}
.mb.--580 {
  margin-bottom: 580px;
}
.mb.--590 {
  margin-bottom: 590px;
}
.mb.--600 {
  margin-bottom: 600px;
}
.mb.--610 {
  margin-bottom: 610px;
}
.mb.--620 {
  margin-bottom: 620px;
}
.mb.--630 {
  margin-bottom: 630px;
}
.mb.--640 {
  margin-bottom: 640px;
}
.mb.--650 {
  margin-bottom: 650px;
}
.mb.--660 {
  margin-bottom: 660px;
}
.mb.--670 {
  margin-bottom: 670px;
}
.mb.--680 {
  margin-bottom: 680px;
}
.mb.--690 {
  margin-bottom: 690px;
}
.mb.--700 {
  margin-bottom: 700px;
}
.mb.--710 {
  margin-bottom: 710px;
}
.mb.--720 {
  margin-bottom: 720px;
}
.mb.--730 {
  margin-bottom: 730px;
}
.mb.--740 {
  margin-bottom: 740px;
}
.mb.--750 {
  margin-bottom: 750px;
}
.mb.--760 {
  margin-bottom: 760px;
}
.mb.--770 {
  margin-bottom: 770px;
}
.mb.--780 {
  margin-bottom: 780px;
}
.mb.--790 {
  margin-bottom: 790px;
}
.mb.--800 {
  margin-bottom: 800px;
}
.mb.--810 {
  margin-bottom: 810px;
}
.mb.--820 {
  margin-bottom: 820px;
}
.mb.--830 {
  margin-bottom: 830px;
}
.mb.--840 {
  margin-bottom: 840px;
}
.mb.--850 {
  margin-bottom: 850px;
}
.mb.--860 {
  margin-bottom: 860px;
}
.mb.--870 {
  margin-bottom: 870px;
}
.mb.--880 {
  margin-bottom: 880px;
}
.mb.--890 {
  margin-bottom: 890px;
}
.mb.--900 {
  margin-bottom: 900px;
}
.mb.--910 {
  margin-bottom: 910px;
}
.mb.--920 {
  margin-bottom: 920px;
}
.mb.--930 {
  margin-bottom: 930px;
}
.mb.--940 {
  margin-bottom: 940px;
}
.mb.--950 {
  margin-bottom: 950px;
}
.mb.--960 {
  margin-bottom: 960px;
}
.mb.--970 {
  margin-bottom: 970px;
}
.mb.--980 {
  margin-bottom: 980px;
}
.mb.--990 {
  margin-bottom: 990px;
}
.mb.--1000 {
  margin-bottom: 1000px;
}
.mb.--1010 {
  margin-bottom: 1010px;
}
.mb.--1020 {
  margin-bottom: 1020px;
}
.mb.--1030 {
  margin-bottom: 1030px;
}
.mb.--1040 {
  margin-bottom: 1040px;
}
.mb.--1050 {
  margin-bottom: 1050px;
}
.mb.--1060 {
  margin-bottom: 1060px;
}
.mb.--1070 {
  margin-bottom: 1070px;
}
.mb.--1080 {
  margin-bottom: 1080px;
}
.mb.--1090 {
  margin-bottom: 1090px;
}
.mb.--1100 {
  margin-bottom: 1100px;
}
.mb.--1110 {
  margin-bottom: 1110px;
}
.mb.--1120 {
  margin-bottom: 1120px;
}
.mb.--1130 {
  margin-bottom: 1130px;
}
.mb.--1140 {
  margin-bottom: 1140px;
}
.mb.--1150 {
  margin-bottom: 1150px;
}
.mb.--1160 {
  margin-bottom: 1160px;
}
.mb.--1170 {
  margin-bottom: 1170px;
}
.mb.--1180 {
  margin-bottom: 1180px;
}
.mb.--1190 {
  margin-bottom: 1190px;
}
.mb.--1200 {
  margin-bottom: 1200px;
}
.mb.--1210 {
  margin-bottom: 1210px;
}
.mb.--1220 {
  margin-bottom: 1220px;
}
.mb.--1230 {
  margin-bottom: 1230px;
}
.mb.--1240 {
  margin-bottom: 1240px;
}
.mb.--1250 {
  margin-bottom: 1250px;
}
.mb.--1260 {
  margin-bottom: 1260px;
}
.mb.--1270 {
  margin-bottom: 1270px;
}
.mb.--1280 {
  margin-bottom: 1280px;
}
.mb.--1290 {
  margin-bottom: 1290px;
}
.mb.--1300 {
  margin-bottom: 1300px;
}
.mb.--1310 {
  margin-bottom: 1310px;
}
.mb.--1320 {
  margin-bottom: 1320px;
}
.mb.--1330 {
  margin-bottom: 1330px;
}
.mb.--1340 {
  margin-bottom: 1340px;
}
.mb.--1350 {
  margin-bottom: 1350px;
}
.mb.--1360 {
  margin-bottom: 1360px;
}
.mb.--1370 {
  margin-bottom: 1370px;
}
.mb.--1380 {
  margin-bottom: 1380px;
}
.mb.--1390 {
  margin-bottom: 1390px;
}
.mb.--1400 {
  margin-bottom: 1400px;
}
.mb.--1410 {
  margin-bottom: 1410px;
}
.mb.--1420 {
  margin-bottom: 1420px;
}
.mb.--1430 {
  margin-bottom: 1430px;
}
.mb.--1440 {
  margin-bottom: 1440px;
}
.mb.--1450 {
  margin-bottom: 1450px;
}
.mb.--1460 {
  margin-bottom: 1460px;
}
.mb.--1470 {
  margin-bottom: 1470px;
}
.mb.--1480 {
  margin-bottom: 1480px;
}
.mb.--1490 {
  margin-bottom: 1490px;
}
.mb.--1500 {
  margin-bottom: 1500px;
}
.mb.--1510 {
  margin-bottom: 1510px;
}
.mb.--1520 {
  margin-bottom: 1520px;
}
.mb.--1530 {
  margin-bottom: 1530px;
}
.mb.--1540 {
  margin-bottom: 1540px;
}
.mb.--1550 {
  margin-bottom: 1550px;
}
.mb.--1560 {
  margin-bottom: 1560px;
}
.mb.--1570 {
  margin-bottom: 1570px;
}
.mb.--1580 {
  margin-bottom: 1580px;
}
.mb.--1590 {
  margin-bottom: 1590px;
}
.mb.--1600 {
  margin-bottom: 1600px;
}
.mb.--1610 {
  margin-bottom: 1610px;
}
.mb.--1620 {
  margin-bottom: 1620px;
}
.mb.--1630 {
  margin-bottom: 1630px;
}
.mb.--1640 {
  margin-bottom: 1640px;
}
.mb.--1650 {
  margin-bottom: 1650px;
}
.mb.--1660 {
  margin-bottom: 1660px;
}
.mb.--1670 {
  margin-bottom: 1670px;
}
.mb.--1680 {
  margin-bottom: 1680px;
}
.mb.--1690 {
  margin-bottom: 1690px;
}
.mb.--1700 {
  margin-bottom: 1700px;
}
.mb.--1710 {
  margin-bottom: 1710px;
}
.mb.--1720 {
  margin-bottom: 1720px;
}
.mb.--1730 {
  margin-bottom: 1730px;
}
.mb.--1740 {
  margin-bottom: 1740px;
}
.mb.--1750 {
  margin-bottom: 1750px;
}
.mb.--1760 {
  margin-bottom: 1760px;
}
.mb.--1770 {
  margin-bottom: 1770px;
}
.mb.--1780 {
  margin-bottom: 1780px;
}
.mb.--1790 {
  margin-bottom: 1790px;
}
.mb.--1800 {
  margin-bottom: 1800px;
}
.mb.--1810 {
  margin-bottom: 1810px;
}
.mb.--1820 {
  margin-bottom: 1820px;
}
.mb.--1830 {
  margin-bottom: 1830px;
}
.mb.--1840 {
  margin-bottom: 1840px;
}
.mb.--1850 {
  margin-bottom: 1850px;
}
.mb.--1860 {
  margin-bottom: 1860px;
}
.mb.--1870 {
  margin-bottom: 1870px;
}
.mb.--1880 {
  margin-bottom: 1880px;
}
.mb.--1890 {
  margin-bottom: 1890px;
}
.mb.--1900 {
  margin-bottom: 1900px;
}
.mb.--1910 {
  margin-bottom: 1910px;
}
.mb.--1920 {
  margin-bottom: 1920px;
}
.mb.--1930 {
  margin-bottom: 1930px;
}
.mb.--1940 {
  margin-bottom: 1940px;
}
.mb.--1950 {
  margin-bottom: 1950px;
}
.mb.--1960 {
  margin-bottom: 1960px;
}
.mb.--1970 {
  margin-bottom: 1970px;
}
.mb.--1980 {
  margin-bottom: 1980px;
}
.mb.--1990 {
  margin-bottom: 1990px;
}

.pb.--0 {
  padding-bottom: 0px;
}
.pb.--10 {
  padding-bottom: 10px;
}
.pb.--20 {
  padding-bottom: 20px;
}
.pb.--30 {
  padding-bottom: 30px;
}
.pb.--40 {
  padding-bottom: 40px;
}
.pb.--50 {
  padding-bottom: 50px;
}
.pb.--60 {
  padding-bottom: 60px;
}
.pb.--70 {
  padding-bottom: 70px;
}
.pb.--80 {
  padding-bottom: 80px;
}
.pb.--90 {
  padding-bottom: 90px;
}
.pb.--100 {
  padding-bottom: 100px;
}
.pb.--110 {
  padding-bottom: 110px;
}
.pb.--120 {
  padding-bottom: 120px;
}
.pb.--130 {
  padding-bottom: 130px;
}
.pb.--140 {
  padding-bottom: 140px;
}
.pb.--150 {
  padding-bottom: 150px;
}
.pb.--160 {
  padding-bottom: 160px;
}
.pb.--170 {
  padding-bottom: 170px;
}
.pb.--180 {
  padding-bottom: 180px;
}
.pb.--190 {
  padding-bottom: 190px;
}
.pb.--200 {
  padding-bottom: 200px;
}
.pb.--210 {
  padding-bottom: 210px;
}
.pb.--220 {
  padding-bottom: 220px;
}
.pb.--230 {
  padding-bottom: 230px;
}
.pb.--240 {
  padding-bottom: 240px;
}
.pb.--250 {
  padding-bottom: 250px;
}
.pb.--260 {
  padding-bottom: 260px;
}
.pb.--270 {
  padding-bottom: 270px;
}
.pb.--280 {
  padding-bottom: 280px;
}
.pb.--290 {
  padding-bottom: 290px;
}
.pb.--300 {
  padding-bottom: 300px;
}
.pb.--310 {
  padding-bottom: 310px;
}
.pb.--320 {
  padding-bottom: 320px;
}
.pb.--330 {
  padding-bottom: 330px;
}
.pb.--340 {
  padding-bottom: 340px;
}
.pb.--350 {
  padding-bottom: 350px;
}
.pb.--360 {
  padding-bottom: 360px;
}
.pb.--370 {
  padding-bottom: 370px;
}
.pb.--380 {
  padding-bottom: 380px;
}
.pb.--390 {
  padding-bottom: 390px;
}
.pb.--400 {
  padding-bottom: 400px;
}
.pb.--410 {
  padding-bottom: 410px;
}
.pb.--420 {
  padding-bottom: 420px;
}
.pb.--430 {
  padding-bottom: 430px;
}
.pb.--440 {
  padding-bottom: 440px;
}
.pb.--450 {
  padding-bottom: 450px;
}
.pb.--460 {
  padding-bottom: 460px;
}
.pb.--470 {
  padding-bottom: 470px;
}
.pb.--480 {
  padding-bottom: 480px;
}
.pb.--490 {
  padding-bottom: 490px;
}
.pb.--500 {
  padding-bottom: 500px;
}
.pb.--510 {
  padding-bottom: 510px;
}
.pb.--520 {
  padding-bottom: 520px;
}
.pb.--530 {
  padding-bottom: 530px;
}
.pb.--540 {
  padding-bottom: 540px;
}
.pb.--550 {
  padding-bottom: 550px;
}
.pb.--560 {
  padding-bottom: 560px;
}
.pb.--570 {
  padding-bottom: 570px;
}
.pb.--580 {
  padding-bottom: 580px;
}
.pb.--590 {
  padding-bottom: 590px;
}
.pb.--600 {
  padding-bottom: 600px;
}
.pb.--610 {
  padding-bottom: 610px;
}
.pb.--620 {
  padding-bottom: 620px;
}
.pb.--630 {
  padding-bottom: 630px;
}
.pb.--640 {
  padding-bottom: 640px;
}
.pb.--650 {
  padding-bottom: 650px;
}
.pb.--660 {
  padding-bottom: 660px;
}
.pb.--670 {
  padding-bottom: 670px;
}
.pb.--680 {
  padding-bottom: 680px;
}
.pb.--690 {
  padding-bottom: 690px;
}
.pb.--700 {
  padding-bottom: 700px;
}
.pb.--710 {
  padding-bottom: 710px;
}
.pb.--720 {
  padding-bottom: 720px;
}
.pb.--730 {
  padding-bottom: 730px;
}
.pb.--740 {
  padding-bottom: 740px;
}
.pb.--750 {
  padding-bottom: 750px;
}
.pb.--760 {
  padding-bottom: 760px;
}
.pb.--770 {
  padding-bottom: 770px;
}
.pb.--780 {
  padding-bottom: 780px;
}
.pb.--790 {
  padding-bottom: 790px;
}
.pb.--800 {
  padding-bottom: 800px;
}
.pb.--810 {
  padding-bottom: 810px;
}
.pb.--820 {
  padding-bottom: 820px;
}
.pb.--830 {
  padding-bottom: 830px;
}
.pb.--840 {
  padding-bottom: 840px;
}
.pb.--850 {
  padding-bottom: 850px;
}
.pb.--860 {
  padding-bottom: 860px;
}
.pb.--870 {
  padding-bottom: 870px;
}
.pb.--880 {
  padding-bottom: 880px;
}
.pb.--890 {
  padding-bottom: 890px;
}
.pb.--900 {
  padding-bottom: 900px;
}
.pb.--910 {
  padding-bottom: 910px;
}
.pb.--920 {
  padding-bottom: 920px;
}
.pb.--930 {
  padding-bottom: 930px;
}
.pb.--940 {
  padding-bottom: 940px;
}
.pb.--950 {
  padding-bottom: 950px;
}
.pb.--960 {
  padding-bottom: 960px;
}
.pb.--970 {
  padding-bottom: 970px;
}
.pb.--980 {
  padding-bottom: 980px;
}
.pb.--990 {
  padding-bottom: 990px;
}
.pb.--1000 {
  padding-bottom: 1000px;
}
.pb.--1010 {
  padding-bottom: 1010px;
}
.pb.--1020 {
  padding-bottom: 1020px;
}
.pb.--1030 {
  padding-bottom: 1030px;
}
.pb.--1040 {
  padding-bottom: 1040px;
}
.pb.--1050 {
  padding-bottom: 1050px;
}
.pb.--1060 {
  padding-bottom: 1060px;
}
.pb.--1070 {
  padding-bottom: 1070px;
}
.pb.--1080 {
  padding-bottom: 1080px;
}
.pb.--1090 {
  padding-bottom: 1090px;
}
.pb.--1100 {
  padding-bottom: 1100px;
}
.pb.--1110 {
  padding-bottom: 1110px;
}
.pb.--1120 {
  padding-bottom: 1120px;
}
.pb.--1130 {
  padding-bottom: 1130px;
}
.pb.--1140 {
  padding-bottom: 1140px;
}
.pb.--1150 {
  padding-bottom: 1150px;
}
.pb.--1160 {
  padding-bottom: 1160px;
}
.pb.--1170 {
  padding-bottom: 1170px;
}
.pb.--1180 {
  padding-bottom: 1180px;
}
.pb.--1190 {
  padding-bottom: 1190px;
}
.pb.--1200 {
  padding-bottom: 1200px;
}
.pb.--1210 {
  padding-bottom: 1210px;
}
.pb.--1220 {
  padding-bottom: 1220px;
}
.pb.--1230 {
  padding-bottom: 1230px;
}
.pb.--1240 {
  padding-bottom: 1240px;
}
.pb.--1250 {
  padding-bottom: 1250px;
}
.pb.--1260 {
  padding-bottom: 1260px;
}
.pb.--1270 {
  padding-bottom: 1270px;
}
.pb.--1280 {
  padding-bottom: 1280px;
}
.pb.--1290 {
  padding-bottom: 1290px;
}
.pb.--1300 {
  padding-bottom: 1300px;
}
.pb.--1310 {
  padding-bottom: 1310px;
}
.pb.--1320 {
  padding-bottom: 1320px;
}
.pb.--1330 {
  padding-bottom: 1330px;
}
.pb.--1340 {
  padding-bottom: 1340px;
}
.pb.--1350 {
  padding-bottom: 1350px;
}
.pb.--1360 {
  padding-bottom: 1360px;
}
.pb.--1370 {
  padding-bottom: 1370px;
}
.pb.--1380 {
  padding-bottom: 1380px;
}
.pb.--1390 {
  padding-bottom: 1390px;
}
.pb.--1400 {
  padding-bottom: 1400px;
}
.pb.--1410 {
  padding-bottom: 1410px;
}
.pb.--1420 {
  padding-bottom: 1420px;
}
.pb.--1430 {
  padding-bottom: 1430px;
}
.pb.--1440 {
  padding-bottom: 1440px;
}
.pb.--1450 {
  padding-bottom: 1450px;
}
.pb.--1460 {
  padding-bottom: 1460px;
}
.pb.--1470 {
  padding-bottom: 1470px;
}
.pb.--1480 {
  padding-bottom: 1480px;
}
.pb.--1490 {
  padding-bottom: 1490px;
}
.pb.--1500 {
  padding-bottom: 1500px;
}
.pb.--1510 {
  padding-bottom: 1510px;
}
.pb.--1520 {
  padding-bottom: 1520px;
}
.pb.--1530 {
  padding-bottom: 1530px;
}
.pb.--1540 {
  padding-bottom: 1540px;
}
.pb.--1550 {
  padding-bottom: 1550px;
}
.pb.--1560 {
  padding-bottom: 1560px;
}
.pb.--1570 {
  padding-bottom: 1570px;
}
.pb.--1580 {
  padding-bottom: 1580px;
}
.pb.--1590 {
  padding-bottom: 1590px;
}
.pb.--1600 {
  padding-bottom: 1600px;
}
.pb.--1610 {
  padding-bottom: 1610px;
}
.pb.--1620 {
  padding-bottom: 1620px;
}
.pb.--1630 {
  padding-bottom: 1630px;
}
.pb.--1640 {
  padding-bottom: 1640px;
}
.pb.--1650 {
  padding-bottom: 1650px;
}
.pb.--1660 {
  padding-bottom: 1660px;
}
.pb.--1670 {
  padding-bottom: 1670px;
}
.pb.--1680 {
  padding-bottom: 1680px;
}
.pb.--1690 {
  padding-bottom: 1690px;
}
.pb.--1700 {
  padding-bottom: 1700px;
}
.pb.--1710 {
  padding-bottom: 1710px;
}
.pb.--1720 {
  padding-bottom: 1720px;
}
.pb.--1730 {
  padding-bottom: 1730px;
}
.pb.--1740 {
  padding-bottom: 1740px;
}
.pb.--1750 {
  padding-bottom: 1750px;
}
.pb.--1760 {
  padding-bottom: 1760px;
}
.pb.--1770 {
  padding-bottom: 1770px;
}
.pb.--1780 {
  padding-bottom: 1780px;
}
.pb.--1790 {
  padding-bottom: 1790px;
}
.pb.--1800 {
  padding-bottom: 1800px;
}
.pb.--1810 {
  padding-bottom: 1810px;
}
.pb.--1820 {
  padding-bottom: 1820px;
}
.pb.--1830 {
  padding-bottom: 1830px;
}
.pb.--1840 {
  padding-bottom: 1840px;
}
.pb.--1850 {
  padding-bottom: 1850px;
}
.pb.--1860 {
  padding-bottom: 1860px;
}
.pb.--1870 {
  padding-bottom: 1870px;
}
.pb.--1880 {
  padding-bottom: 1880px;
}
.pb.--1890 {
  padding-bottom: 1890px;
}
.pb.--1900 {
  padding-bottom: 1900px;
}
.pb.--1910 {
  padding-bottom: 1910px;
}
.pb.--1920 {
  padding-bottom: 1920px;
}
.pb.--1930 {
  padding-bottom: 1930px;
}
.pb.--1940 {
  padding-bottom: 1940px;
}
.pb.--1950 {
  padding-bottom: 1950px;
}
.pb.--1960 {
  padding-bottom: 1960px;
}
.pb.--1970 {
  padding-bottom: 1970px;
}
.pb.--1980 {
  padding-bottom: 1980px;
}
.pb.--1990 {
  padding-bottom: 1990px;
}

.l-main {
  width: 100%;
  max-width: 1260px;
  padding: 35px 24px 0;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-grid-columns: 1fr 30px 280px;
  grid-template-columns: 1fr 280px;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
      grid-template-areas: "main side" "bottom bottom";
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  /* 以下を設定 */
}
.l-main > * {
  min-width: 0;
  min-height: 0;
}
.l-main__content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: main;
}
.l-main__side {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: side;
}
.l-main__bottom {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: bottom;
}
@media screen and (max-width: 1199px) {
  .l-main {
    -ms-grid-columns: 1fr 240px;
    grid-template-columns: 1fr 240px;
  }
}
@media screen and (max-width: 1024px) {
  .l-main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 20px auto 20px auto;
        grid-template-areas: "main" "bottom" "side";
    row-gap: 20px;
  }
  .l-main__content, .l-main__side, .l-main__bottom {
    width: 100%;
  }
  .l-main__content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-main__side {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .l-main__bottom {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media screen and (max-width: 567px) {
  .l-main {
    padding: 35px 15px 0;
  }
}

/*ぱんくず*/
.pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin: 25px auto 0;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 5px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .pankuzu {
    padding: 0 15px;
  }
}
.pankuzu li:first-child i {
  color: #1152a6;
  padding: 0;
  font-size: 11px;
}
.pankuzu li:last-child a {
  white-space: wrap;
}
.pankuzu i {
  font-size: 12px;
  color: #9f9f9f;
  padding: 3px 0.25em 0;
}
.pankuzu a {
  font-size: 12px;
  max-width: 20em;
  letter-spacing: 0;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  line-height: 1;
  margin: 25px auto 0;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 5px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 0 15px;
  }
}
.breadcrumbs a {
  font-size: 12px;
  max-width: 6em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  padding: 0;
  line-height: 1;
}
.breadcrumbs .itemListElement {
  padding: 0;
}
.breadcrumbs [property=itemListElement]:last-child a,
.breadcrumbs [property=itemListElement]:last-child span[property=name] {
  font-size: 12px;
  max-width: 20em;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  padding: 0;
  line-height: 1;
}
.breadcrumbs i.fa-caret-right {
  font-size: 12px;
  color: #9f9f9f;
  padding: 0 0.25em 0;
  line-height: 1;
}
.breadcrumbs .fa-house {
  color: #1152a6;
  font-size: 11px;
  line-height: 1;
}

section {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 567px) {
  section {
    margin-bottom: 65px;
  }
}

/* ====== detailによる開閉ボックスの設定 ===== */
.details_item {
  overflow: hidden;
  max-height: 0;
}

/* ===========================================
 * 共通grid設定
 * ======================================== */
.l-grid-1 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.l-grid-2 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  .l-grid-2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .l-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.l-grid-3 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}
@media screen and (max-width: 859px) {
  .l-grid-3 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 0;
  }
}
@media screen and (max-width: 567px) {
  .l-grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.l-grid-4 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .l-grid-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* ===========================================
 * 記事共通パーツ 
 * ======================================== */
.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 5px;
  font-size: 12px;
  color: #666;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 5px;
}

.cat-label {
  /*カテゴリラベル*/
  border: 1px solid #bcbcbc;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.date {
  font-size: 12px;
}

.lock i {
  /*鍵マーク*/
  color: #292929;
  font-size: 1em;
}

.tag-list {
  /*タグ一覧*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  gap: 15px;
}
.tag-list li {
  line-height: 1;
}
.tag-list li a {
  font-size: 13px;
  color: #4d76b4;
  padding-bottom: 3px;
}

.tag-border-list {
  /*border囲みのタグリスト*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 15px;
  margin: 25px 0 25px;
}
.tag-border-list li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 1em;
  white-space: nowrap;
  border: 1px solid;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  background: white;
}

.archive-up-date {
  /*新着記事-公開日時*/
  font-size: 13.5px;
  border-left: 7px solid #292929;
  padding: 0 0 0 10px;
  margin-bottom: 15px;
  line-height: 1;
}

/* ===========================================
  各ページ　セクションの見出し
 * ======================================== */
.c-ttl-sec {
  color: #1152a6;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 0.45em;
  margin-bottom: 15px;
  line-height: 1.2;
  border-bottom: 1px solid #1152a6;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-ttl-sec div i {
  /*ペンのマーク*/
  font-size: 1.7rem;
  padding-right: 5px;
}
.c-ttl-sec.--kana {
  letter-spacing: -0.01em;
}
.c-ttl-sec a {
  color: #1152a6;
  font-size: 1.5rem;
}
.c-ttl-sec a > i {
  padding-left: 5px;
}

/* ===========================================
 * タイトル共通パーツ 
 * ======================================== */
.news-ttl {
  /*記事のメインタイトル*/
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* タイトルは3行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .news-ttl {
    font-size: 1.7rem;
  }
}

.news-sub-ttl {
  /*アーカイブ表示のサブタイトル-人名－社名*/
  font-size: 1.5rem;
  text-align: left;
  margin: 10px 0;
  font-weight: 600;
}

/* ===========================================
  カード記事タイプ 
 * ======================================== */
.l-news-card {
  margin-bottom: 15px;
  width: 100%;
}
.l-news-card__img {
  padding-bottom: 12px;
}
.l-news-card__img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 567px) {
  .l-news-card {
    max-width: 480px;
    margin: 0 auto 25px;
  }
}

/* ===========================================
  カード（3）→リスト（2）記事タイプ 
 * ======================================== */
.l-news-item {
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (max-width: 859px) {
  .l-news-item {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .l-news-item a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 120px;
    grid-template-columns: 1fr 120px;
        grid-template-areas: "txt img";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    height: 100%;
  }
}
@media screen and (max-width: 859px) and (max-width: 374px) {
  .l-news-item a {
    -ms-grid-columns: 1fr 100px;
    grid-template-columns: 1fr 100px;
  }
}
.l-news-item__img {
  padding-bottom: 12px;
  grid-area: img;
}
.l-news-list a > .l-news-item__img {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-search .l-news-list a > .l-news-item__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__pick .l-news-list a > .l-news-item__img, .archive-report__pick .l-news-list a > .l-news-item__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__list .l-news-list a > .l-news-item__img, .archive-report__list .l-news-list a > .l-news-item__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-report__pick .l-news-list > .l-news-item__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-news-item__img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 859px) {
  .l-news-item__img {
    padding-bottom: 0;
  }
}
.l-news-item__txt {
  grid-area: txt;
}
.l-news-list a > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-news-listTxt a > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-search .l-news-list a > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-release__pick .l-news-list a > .l-news-item__txt, .archive-report__pick .l-news-list a > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-release__list .l-news-list a > .l-news-item__txt, .archive-report__list .l-news-list a > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-report__pick .l-news-list > .l-news-item__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

/* ===========================================
  リスト記事-テキスト＋画像タイプ 
 * ======================================== */
.l-news-list {
  /*テキスト＋画像*/
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-news-list a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 150px;
  grid-template-columns: 1fr 150px;
      grid-template-areas: "txt img";
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 1199px) {
  .l-news-list a {
    -ms-grid-columns: 1fr 120px;
    grid-template-columns: 1fr 120px;
  }
}
@media screen and (max-width: 768px) {
  .l-news-list a {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
@media screen and (max-width: 379px) {
  .l-news-list a {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    -ms-grid-columns: 1fr 12px 100px;
    grid-template-columns: 1fr 100px;
  }
}
.l-news-list__img {
  overflow: hidden;
  grid-area: img;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-news-list a > .l-news-list__img {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-search .l-news-list a > .l-news-list__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__pick .l-news-list a > .l-news-list__img, .archive-report__pick .l-news-list a > .l-news-list__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__list .l-news-list a > .l-news-list__img, .archive-report__list .l-news-list a > .l-news-list__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-report__pick .l-news-list > .l-news-list__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
@media screen and (max-width: 1199px) {
  .l-news-list__img {
    width: 120px;
  }
}
@media screen and (max-width: 379px) {
  .l-news-list__img {
    width: 100px;
  }
}
.l-news-list__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-news-list__txt {
  grid-area: txt;
}
.l-news-list a > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-news-listTxt a > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-search .l-news-list a > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-release__pick .l-news-list a > .l-news-list__txt, .archive-report__pick .l-news-list a > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-release__list .l-news-list a > .l-news-list__txt, .archive-report__list .l-news-list a > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-report__pick .l-news-list > .l-news-list__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

/* ===========================================
  リスト記事-テキストのみタイプ 
 * ======================================== */
.l-news-listTxt {
  /*画像なし・テキストのみのアーカイブ*/
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.l-news-listTxt .meta {
  padding: 0 0 10px;
}
.l-news-listTxt a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
      grid-template-areas: "txt";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  height: 100%;
}
@media screen and (max-width: 859px) {
  .l-news-listTxt a {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.l-news-listTxt__img {
  overflow: hidden;
  grid-area: img;
}
.l-news-list a > .l-news-listTxt__img {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-search .l-news-list a > .l-news-listTxt__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__pick .l-news-list a > .l-news-listTxt__img, .archive-report__pick .l-news-list a > .l-news-listTxt__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-release__list .l-news-list a > .l-news-listTxt__img, .archive-report__list .l-news-list a > .l-news-listTxt__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-report__pick .l-news-list > .l-news-listTxt__img {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-news-listTxt__img img {
  width: 120px;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-news-listTxt__txt {
  grid-area: txt;
}
.l-news-list a > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.l-news-listTxt a > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.archive-search .l-news-list a > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-release__pick .l-news-list a > .l-news-listTxt__txt, .archive-report__pick .l-news-list a > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.archive-release__list .l-news-list a > .l-news-listTxt__txt, .archive-report__list .l-news-list a > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.archive-report__pick .l-news-list > .l-news-listTxt__txt {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 859px){
  .l-news-item__img {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-news-item__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-news-list__img {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-news-list__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-news-listTxt__img {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-news-listTxt__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.l-news-listTxt__txt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  font-size: 0.8888888889em;
  text-align: left;
  margin: 10px 0 5px;
}

/* ===========================================
 * ランキング
 * ======================================== */
@media screen and (max-width: 1024px) {
  .l-news-ranking ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-news-ranking .ranking-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 15px 0 15px 35px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-news-ranking .ranking-item {
    width: 48%;
  }
}
@media screen and (max-width: 567px) {
  .l-news-ranking .ranking-item {
    width: 100%;
  }
}
.l-news-ranking .ranking-item__rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0054a7;
  font-size: 14px;
  padding: 2px 7px;
  color: #fff;
  font-weight: bold;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 18px;
}
.l-news-ranking .ranking-item__img img {
  width: 60px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-news-ranking .ranking-item__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-news-ranking .ranking-item__txt .meta {
  padding: 5px 0 0;
}
.l-news-ranking .ranking-item__txt .news-ttl {
  font-size: 0.8333333333em;
  font-weight: bold;
}
.l-news-ranking .ranking-item.--top-3 {
  /*TOP3--画像付きの調整*/
  padding: 20px 0 15px 10px;
}
.l-news-ranking .ranking-item.--top-3 .ranking-item__rank {
  top: 10px;
}

/* ===========================================
 * 特集用のカード記事
 * ======================================== */
.l-feature-item {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
  background: white;
  /*高さ揃える
    */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 567px) {
  .l-feature-item {
    max-width: 480px;
    margin: 0 auto 25px;
  }
}
.l-feature-item a {
  gap: 20px;
}
.l-feature-item__img {
  margin-bottom: 10px;
}
.l-feature-item__img img {
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #ccc;
}
.l-feature-item__txt {
  padding: 0 15px;
}
.l-feature-item .tag-list {
  margin-top: auto;
  padding: 10px 15px 20px;
}

/* ===========================================
カテゴリ　アーカイブ　ナビ
 * ======================================== */
.select_box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 25px auto;
}
.select_box select#cat {
  padding: 10px;
  border-radius: 5px;
  width: 16em;
  border: 2px solid #ccc;
  font-size: 0.9444444444em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px 8px;
  cursor: pointer;
}
.select_box select#cat option[hidden] {
  color: #aaa;
}
.select_box select#cat:hover {
  border-color: #999;
}
.select_box select#cat:focus {
  border-color: #333;
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* ===========================================
  アーカイブページのヘッダー
 * ======================================== */
.archive-intro {
  margin: 0 auto 50px;
}
.archive-intro__header {
  width: 100%;
  max-width: 680px;
  margin: 15px 0 20px;
}
.archive-intro__header.--feature {
  max-width: 780px;
}
.archive-intro__header .meta {
  margin: 10px 0;
}
.archive-intro .lead {
  width: 100%;
  max-width: 768px;
  text-align: justify;
}
.archive-intro .l-grid-2 {
  margin: 25px 0 75px;
  -ms-grid-columns: 280px 1fr;
  grid-template-columns: 280px 1fr;
}
@media screen and (max-width: 859px) {
  .archive-intro .l-grid-2 {
    -ms-grid-columns: 200px 25px 1fr;
    grid-template-columns: 200px 1fr;
    gap: 25px;
  }
}
@media screen and (max-width: 567px) {
  .archive-intro .l-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
.archive-intro .l-grid-2 img {
  border: 1px solid #ccc;
}

/* ===========================================
 * 特集一覧　レイアウト
 * ======================================== */
.page-feature {
  /*特集一覧-固定ページのアーカイブ*/
}
.page-feature .l-grid-3 {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}
.page-feature .l-grid-3 .l-feature-item__txt {
  padding: 5px 15px 15px;
}
.page-feature .l-grid-3 .l-feature-item__img {
  position: relative;
}
.page-feature .l-grid-3 .l-feature-item__img .number-ttl {
  /*シリーズ番号*/
  position: absolute;
  bottom: 1px;
  padding: 3px 1.5em;
  background: rgba(0, 0, 0, 0.8470588235);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.555);
  border-right: 0.5px solid rgba(255, 255, 255, 0.555);
}
.page-feature .l-grid-3 .news-ttl {
  margin: 5px 0;
}
.page-feature .l-grid-3 p {
  /*テキスト引用*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  /*overflowを非表示*/
  margin: 5px 0 0;
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-feature .l-grid-3 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 567px) {
  .page-feature .l-grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ===========================================
 * 特集　特集一覧-全記事のアーカイブ
 * ======================================== */
.archive-feature .l-grid-3 {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 50px;
}
.archive-feature .l-feature-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
  background: white;
  /*高さ揃える*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.archive-feature .l-feature-item a {
  gap: 20px;
}
.archive-feature .l-feature-item__img {
  margin-bottom: 10px;
}
.archive-feature .l-feature-item__img img {
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #ccc;
}
.archive-feature .l-feature-item__txt {
  padding: 5px 15px 15px;
}
@media screen and (max-width: 567px) {
  .archive-feature .l-feature-item__txt {
    padding: 5px 15px;
  }
}
.archive-feature .l-feature-item__txt .meta {
  padding-bottom: 10px;
}
.archive-feature .l-feature-item__txt p {
  /*テキスト引用*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  /*overflowを非表示*/
  margin: 5px 0 0;
  font-size: 1.5rem;
  text-align: left;
}
.archive-feature .l-feature-item .tag-list {
  margin-top: auto;
  padding: 10px 15px 20px;
}
.archive-feature .l-feature-item .tag-list a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15em;
}

/* ===========================================
  特集：シリーズ別の目次ページ
 * ======================================== */
.feature-series {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.feature-series .number-ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  /*シリーズ番号*/
  grid-area: ttl;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1152a6;
}
@media screen and (max-width: 768px){
  .l-header__SB-BTN {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .l-header__ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .feature-series .number-ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 859px) {
  .feature-series .number-ttl {
    margin-bottom: 15px;
  }
}
.feature-series .l-news-card__img {
  border-top: 1px solid #1152a6;
  padding-top: 10px;
}
.feature-series .l-news-card__txt {
  padding: 0 5px;
}
@media screen and (max-width: 859px) {
  .feature-series .l-news-card {
    border-bottom: none;
  }
}
@media screen and (max-width: 567px) {
  .feature-series .l-news-card {
    padding: 5px 8px;
    max-width: 420px;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: 359px) {
  .feature-series .l-news-card a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-series .l-news-card__img {
    display: none;
  }
}
.feature-series .l-news-card p {
  /*テキスト引用*/
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
  /*overflowを非表示*/
  margin: 5px 0 0;
  font-size: 1.5rem;
  text-align: left;
}
.feature-series .meta {
  padding-bottom: 10px;
}

/* ===========================================
 * 検索アーカイブ　レイアウト
 * ======================================== */
.archive-search .l-news-list a {
  -ms-grid-columns: 150px 1fr;
  grid-template-columns: 150px 1fr;
      grid-template-areas: "img txt";
}
@media screen and (max-width: 567px) {
  .archive-search .l-news-list a {
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
  }
}
@media screen and (max-width: 359px) {
  .archive-search .l-news-list a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "txt";
  }
  .archive-search .l-news-list a > .l-news-item__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-search .l-news-list a > .l-news-list__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-search .l-news-list a > .l-news-listTxt__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.archive-search .l-news-list__img {
  width: 150px;
}
@media screen and (max-width: 567px) {
  .archive-search .l-news-list__img {
    width: 120px;
  }
}
@media screen and (max-width: 359px) {
  .archive-search .l-news-list__img {
    display: none;
  }
}
.archive-search .l-news-list__txt p {
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 0 0;
}
.archive-search .news-content mark,
.archive-search .news-ttl mark {
  background-color: rgb(252, 250, 157) !important;
  font-weight: bold;
}

/* ===========================================
 * アーカイブ　ページネーション　レイアウト
 * ======================================== */
ul.page-numbers {
  width: 100%;
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

ul.page-numbers li span.current {
  background: #292929;
  color: white;
}

ul.page-numbers li a,
ul.page-numbers li span {
  font-size: 1.5rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  line-height: 1;
  background: #c2c2c2;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30px;
}

.saito-memo {
  background: #fcf1cd;
  padding: 20px 20px;
  max-width: 720px;
  margin: 0 auto 50px;
}
.saito-memo strong {
  font-size: 15px;
  font-weight: 600;
}
.saito-memo p {
  font-size: 14px;
  padding: 5px 0 0;
}

/* ===========================================
 * プレスリリース：アーカイブページ（一部レポートと共通）
 * ======================================== */
/*ヘッダー部分*/
.archive-intro.--release .main-ttl,
.archive-intro.--report .main-ttl {
  padding-bottom: 15px;
  line-height: 1;
}
.archive-intro.--release .main-ttl small,
.archive-intro.--report .main-ttl small {
  font-size: 1.5rem;
  padding: 0 0 0 10px;
}
.archive-intro.--release .tag-border-list,
.archive-intro.--report .tag-border-list {
  margin: 0 0 20px;
}
.archive-intro.--release .tag-border-list .current,
.archive-intro.--report .tag-border-list .current {
  background: #4d76b4;
  color: white;
  border: none;
}
.archive-intro.--release details,
.archive-intro.--report details {
  margin-bottom: 50px;
}
.archive-intro.--release details .details_item,
.archive-intro.--report details .details_item {
  margin-top: 15px;
}
.archive-intro.--release .go_back,
.archive-intro.--report .go_back {
  color: #1152a6;
  font-size: 1.6rem;
}

/*リリースエリア*/
.archive-release,
.archive-report {
  /*画像が左*/
  /*PRエリア・最新号*/
}
.archive-release__pick,
.archive-report__pick {
  /*PR広告エリア*/
}
.archive-release__pick .c-ttl-sec,
.archive-report__pick .c-ttl-sec {
  font-size: 1.6rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.archive-release__pick .c-ttl-sec span,
.archive-report__pick .c-ttl-sec span {
  /*PRラベル*/
  font-size: 0.8em;
  font-weight: 500;
  border: 1px solid #1152a6;
  padding: 0 4px 1px;
  border-radius: 3px;
}
.archive-release__pick .l-news-list,
.archive-report__pick .l-news-list {
  border: none;
}
.archive-release__pick .l-news-list a,
.archive-report__pick .l-news-list a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 20px 1fr;
  grid-template-columns: 240px 1fr;
      grid-template-areas: "img txt";
  gap: 20px;
}
@media screen and (max-width: 567px) {
  .archive-release__pick .l-news-list a,
  .archive-report__pick .l-news-list a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "img" "txt";
  }
  .archive-release__pick .l-news-list a > .l-news-item__img, .archive-report__pick .l-news-list a > .l-news-item__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-release__pick .l-news-list a > .l-news-item__txt, .archive-report__pick .l-news-list a > .l-news-item__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .archive-release__pick .l-news-list a > .l-news-list__img, .archive-report__pick .l-news-list a > .l-news-list__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-release__pick .l-news-list a > .l-news-list__txt, .archive-report__pick .l-news-list a > .l-news-list__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .archive-release__pick .l-news-list a > .l-news-listTxt__img, .archive-report__pick .l-news-list a > .l-news-listTxt__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-release__pick .l-news-list a > .l-news-listTxt__txt, .archive-report__pick .l-news-list a > .l-news-listTxt__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.archive-release__pick .l-news-list__img,
.archive-report__pick .l-news-list__img {
  width: 240px;
}
@media screen and (max-width: 567px) {
  .archive-release__pick .l-news-list__img,
  .archive-report__pick .l-news-list__img {
    width: 100%;
  }
}
.archive-release__pick .l-news-list__txt > p,
.archive-report__pick .l-news-list__txt > p {
  font-size: 1.5rem;
  display: -webkit-box;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 0 0;
  -webkit-line-clamp: 3;
}
.archive-release__list,
.archive-report__list {
  margin: 50px auto;
}
.archive-release__list .l-news-list a,
.archive-report__list .l-news-list a {
  -ms-grid-columns: 150px 1fr;
  grid-template-columns: 150px 1fr;
      grid-template-areas: "img txt";
}
@media screen and (max-width: 567px) {
  .archive-release__list .l-news-list a,
  .archive-report__list .l-news-list a {
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
  }
}
@media screen and (max-width: 359px) {
  .archive-release__list .l-news-list a,
  .archive-report__list .l-news-list a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "txt";
  }
  .archive-release__list .l-news-list a > .l-news-item__txt, .archive-report__list .l-news-list a > .l-news-item__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-release__list .l-news-list a > .l-news-list__txt, .archive-report__list .l-news-list a > .l-news-list__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-release__list .l-news-list a > .l-news-listTxt__txt, .archive-report__list .l-news-list a > .l-news-listTxt__txt {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.archive-release__list .l-news-list__img,
.archive-report__list .l-news-list__img {
  width: 150px;
}
@media screen and (max-width: 567px) {
  .archive-release__list .l-news-list__img,
  .archive-report__list .l-news-list__img {
    width: 120px;
  }
}
@media screen and (max-width: 359px) {
  .archive-release__list .l-news-list__img,
  .archive-report__list .l-news-list__img {
    display: none;
  }
}
.archive-release__list .l-news-list__txt > p,
.archive-report__list .l-news-list__txt > p {
  font-size: 1.5rem;
  display: -webkit-box;
  /* ← 2行で切る */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  padding: 5px 0 0;
}
.archive-release small,
.archive-report small {
  padding-bottom: 20px;
  display: block;
}

/* ===========================================
 * 広島経済レポート：アーカイブページ
 * ======================================== */
.archive-report {
  /*最新号*/
}
.archive-report__pick {
  margin-bottom: 50px;
}
.archive-report__pick .l-news-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 30px 1fr;
  grid-template-columns: 320px 1fr;
      grid-template-areas: "img txt";
  gap: 30px;
  padding-bottom: 25px;
  row-gap: 0;
  border-bottom: 1px solid #637996;
}
@media screen and (max-width: 768px) {
  .archive-report__pick .l-news-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "img" "txt";
  }
  .archive-report__pick .l-news-list > .l-news-item__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-report__pick .l-news-list > .l-news-item__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .archive-report__pick .l-news-list > .l-news-list__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-report__pick .l-news-list > .l-news-list__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .archive-report__pick .l-news-list > .l-news-listTxt__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .archive-report__pick .l-news-list > .l-news-listTxt__txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.archive-report__pick .l-news-list__img {
  width: 100%;
  width: 320px;
}
@media screen and (max-width: 768px) {
  .archive-report__pick .l-news-list__img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 15px;
  }
}
.archive-report__pick .l-news-list__img img {
  border: 1px solid #ccc;
  height: auto;
  width: 100%;
  aspect-ratio: initial;
  margin-bottom: 20px;
}
.archive-report__pick .l-news-list__txt .news-ttl {
  font-size: 2.4rem;
  padding: 0 0 10px;
}
.archive-report__pick .l-news-list__txt .news-ttl i {
  font-size: 0.65em;
}
.archive-report__pick .l-news-list__txt strong {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.archive-report__pick .l-news-list__txt .news-ttl-list {
  max-width: 540px;
}
.archive-report__pick .l-news-list__txt .news-ttl-list li {
  padding: 0 0 5px;
  font-weight: 1.6rem;
}
.archive-report__pick .l-news-list__txt .news-ttl-list li .cat-label {
  margin-bottom: 10px;
  display: inline-block;
}
.archive-report__pick .l-news-list__txt .news-ttl-list li strong {
  padding: 5px 0 0;
  display: block;
  font-size: 1.6rem;
}
.archive-report__pick .l-news-list__txt .news-ttl-list li > p {
  padding: 0 0 5px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .archive-report__pick .l-news-list__txt .news-ttl-list {
    max-width: initial;
  }
}
.archive-report a.pdf-BTN {
  font-size: 1.5rem;
  color: white;
  padding: 6px 1em;
  width: 100%;
  max-width: 12em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0;
  background: white;
  border: 1px solid #1152a6;
  color: #1152a6;
}
@media screen and (max-width: 567px) {
  .archive-report a.pdf-BTN {
    gap: 0;
  }
}
.archive-report a.pdf-BTN.is-disabled {
  background: #e0e0e0;
  color: #292929;
  pointer-events: auto;
  border: 1px solid #8c8c8c;
}
.archive-report a.pdf-BTN.is-disabled i {
  font-size: 14px;
  padding-left: 8px;
}
.archive-report .l-news-card {
  border-bottom: 1px solid #637996;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.archive-report .l-news-card strong {
  border-left: 8px solid #1152a6;
  padding-left: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
}
.archive-report .l-news-card__img img {
  border: 1px solid #ccc;
  height: auto;
  width: 100%;
  aspect-ratio: initial;
  margin-bottom: 20px;
  padding: 10px 10px;
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ===========================================
 * 連載記事レイアウト
 * ======================================== */
@media screen and (max-width: 679px) {
  .page-series .l-grid-3 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 379px) {
  .page-series .l-grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.page-series-bottom .l-grid-3 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 979px) {
  .page-series-bottom .l-grid-3 {
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 20px;
  }
  .page-series-bottom .l-grid-3 li:nth-child(7),
  .page-series-bottom .l-grid-3 li:nth-child(8) {
    display: none;
  }
}
@media screen and (max-width: 679px) {
  .page-series-bottom .l-grid-3 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 379px) {
  .page-series-bottom .l-grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.l-series-item__img {
  margin-bottom: 10px;
}
.l-series-item__txt .series-ttl {
  font-size: 1.7rem;
  font-weight: 700;
  padding-bottom: 5px;
}
.l-series-item__txt .series-ttl i {
  font-size: 0.9em;
}
.l-series-item__txt p {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-right: 10px;
  color: #3a3a3c;
}

/* ===========================================
  共通パーツ
 * ======================================== */
.main-ttl {
  /*個別記事・目次用タイトル*/
  width: 100%;
  font-size: clamp(28px * 0.85, 100vw * 28 / 1200, 28px * 1);
  font-weight: 700;
}
.main-ttl i {
  font-size: 12px;
  padding-left: 8px;
}

.f-series-ttl {
  /*個別記事・目次用タイトル*/
  width: 100%;
  font-size: clamp(18px * 0.95, 100vw * 18 / 1200, 18px * 1);
  padding: 5px 0 10px;
  margin: 10px 0 25px;
  font-weight: 600;
  color: #3a3a3c;
  border-bottom: 1px solid #727272;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
}
.f-series-ttl small {
  font-size: inherit;
  display: inline-block;
}
.f-series-ttl a i {
  font-size: 12px;
}

.sub-ttl,
h2.wp-block-heading strong {
  width: 100%;
  font-size: clamp(18px * 0.95, 100vw * 18 / 1200, 18px * 1);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3a3a3c;
  margin: 15px 0 15px;
  padding: 0 0 0 1.5em;
  line-height: 1.6;
  position: relative;
  color: #292929;
}
.sub-ttl::before,
h2.wp-block-heading strong::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f5a1";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top: 0;
}
/* ===========================================
  個別記事
 * ======================================== */
.single-article {
  margin: 0 auto 150px;
  width: 100%;
  max-width: 720px;
  padding: 0 24px;
  /*1カラムでは消す*/
}
.single-article h3.wp-block-heading {
  width: 100%;
  font-size: clamp(18px * 0.95, 100vw * 18 / 1200, 18px * 1);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3a3a3c;
  margin: 0 0 15px;
  padding: 0 0 0 1.5em;
  line-height: 1.6;
  position: relative;
  color: #292929;
}
.single-article h3.wp-block-heading::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f5a1";
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .single-article {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .single-article {
    padding: 0 10px;
  }
}
.single-article__header {
  width: 100%;
  margin: 35px 0 10px;
}
.single-article__header .meta {
  margin: 10px 0;
}
.single-article__header strong {
  color: #8195c5;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.single-article__header ul {
  margin: 25px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 10px 1.5em;
  border: 5px solid #d2dbf0;
  background: #fcfdff;
  padding: 20px 2em;
}
.single-article__header ul a {
  border-bottom: 1px dotted #4d76b4;
  font-size: 1.6rem;
  padding-bottom: 2px;
}
.single-article__content {
  margin-bottom: 25px;
}
.single-article__content h4 {
  position: relative;
  padding-left: 18px;
  margin: 1.5em 0 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.single-article__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1e3c72), to(#2a5298));
  background: linear-gradient(to bottom, #1e3c72, #2a5298);
}
.single-article__content p {
  font-size: 1.7rem;
  line-height: 2;
  text-align: justify;
}
.single-article__content p > strong {
  position: relative;
  display: inline-block;
  margin-top: 1.5em;
  font-size: 1.8rem;
  line-height: 1.6;
}
.single-article__content p > strong::before {
  content: "ー";
  padding-right: 1.25em;
  display: inline-block;
  -webkit-transform: scaleX(2);
          transform: scaleX(2);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.single-article__content p > mark.has-inline-color {
  background: transparent !important;
  font-weight: 600;
  color: #292929 !important;
}
.single-article__content figure.wp-block-image {
  max-width: 100%;
  margin: 15px auto 25px;
}
.single-article__content figure.wp-block-image img {
  padding: 0;
  max-width: 100%;
  width: initial;
  display: block;
}
.single-article__content figure.wp-block-image figcaption.wp-element-caption {
  font-size: 14px;
  padding-top: 8px;
}
.single-article__content .archive-DB__list-item {
  /*決算情報のアーカイブ*/
  padding: 25px 20px 10px;
}
.single-article__content .archive-DB__list-item dt,
.single-article__content .archive-DB__list-item dd,
.single-article__content .archive-DB__list-item p {
  font-size: 1.7rem;
}
.single-article .profile {
  margin: 50px auto;
}
.single-article .profile > h6 {
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: 1px dotted #292929;
  margin: 0 auto 15px;
  padding-bottom: 0.2em;
}
.single-article .profile .l-grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 20px 1fr;
  grid-template-columns: 120px 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 567px) {
  .single-article .profile .l-grid-2 {
    -ms-grid-columns: 75px 1fr;
    grid-template-columns: 75px 1fr;
  }
}
@media screen and (max-width: 359px) {
  .single-article .profile .l-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .single-article .profile .l-grid-2 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .single-article .profile .l-grid-2 > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
.single-article .profile__img {
  width: 120px;
  aspect-ratio: 1/1.2;
  background-color: #ccc;
  display: block;
}
.single-article .profile__img img {
  width: 100%;
  aspect-ratio: 1/1.2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 567px) {
  .single-article .profile__img {
    width: 75px;
  }
}
@media screen and (max-width: 359px) {
  .single-article .profile__img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 15px;
  }
}
.single-article .profile__txt p {
  line-height: 1.8;
  font-size: 1.5rem;
}
.single-article .profile__txt p span {
  font-weight: 600;
  display: block;
  color: #666;
  margin-bottom: 5px;
}
.single-article__sns {
  /*SNS share エリア*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.single-article__sns li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  height: 22px;
}
.single-article__sns li a {
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 1px 0.5em 0;
  line-height: 0;
}
@media screen and (max-width: 567px) {
  .single-article__sns li a {
    font-size: 12px;
  }
}
.single-article__sns li img {
  width: auto;
  height: 22px;
}
.single-article__sns li i {
  font-size: 14px;
  padding-right: 5px;
}
.single-article__sns li.sns-share-clip i {
  font-size: 22px;
}
.single-article__sns li.sns-share-facebook {
  background: #3b5998;
}
.single-article__sns li.sns-share-x {
  background: #292929;
}
.single-article__sns li.sns-share-line a {
  padding: 0;
}
.single-article__sns li.hover-txt {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.single-article__sns li.hover-txt::after {
  content: "ブックマーク";
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  color: #292929;
  border: 1px solid #292929;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  margin-top: 6px;
}
.single-article__sns li.hover-txt:hover::after {
  opacity: 1;
  visibility: visible;
}
.single-article .tag-list a {
  border-bottom: 1px dashed #1152a6;
}

/* ===========================================
  周年記事
 * ======================================== */
.--anniversary {
  max-width: initial;
}
.--anniversary .single-article__content {
  margin-bottom: 50px;
}
.--anniversary .anniversary-item details {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 20px;
  margin: 0 0 25px;
}
.--anniversary .anniversary-item details summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 600;
}
.--anniversary .anniversary-item details summary::-webkit-details-marker {
  display: none;
}
.--anniversary .anniversary-item details summary::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: #1152a6;
  margin-left: 15px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.--anniversary .anniversary-item details .details_item {
  border-top: 1px dotted #1152a6;
  margin-top: 20px;
  padding-top: 20px;
}
.--anniversary .anniversary-item details .details_item p {
  font-size: 1.6rem;
}
.--anniversary .anniversary-item details .details_item p strong {
  font-size: 1.62rem;
  display: block;
  padding: 0 0 10px;
  font-weight: 600;
  margin: 0;
}
.--anniversary .anniversary-item details .details_item p strong:before {
  content: none;
}
.--anniversary .anniversary-item details[open] summary::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* ===========================================
  誌面を読む
 * ======================================== */
.single-article__content.--report {
  /*最新号*/
}
.single-article__content.--report img {
  border: 1px solid #ccc;
  height: auto;
  width: 100%;
  aspect-ratio: initial;
}
.single-article__content.--report a.pdf-BTN {
  font-size: 1.6rem;
  color: white;
  padding: 6px 1em;
  width: 80%;
  max-width: 240px;
  margin: 25px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0;
  background: white;
  border: 1px solid #1152a6;
  color: #1152a6;
}
.single-article__content.--report a.pdf-BTN i {
  padding-left: 8px;
}
@media screen and (max-width: 567px) {
  .single-article__content.--report a.pdf-BTN {
    gap: 0;
  }
}
.single-article__content.--report .single-report li {
  margin-bottom: 15px;
  font-size: 1.7rem;
}
.single-article__content.--report .single-report strong {
  display: block;
  font-size: 1.7rem;
  padding-bottom: 5px;
}
.single-article__content.--report .single-report .cat-label {
  margin-bottom: 10px;
  display: inline-block;
}

/* ===========================================
  鍵付きの場合-　.page-lockedを付与
 * ======================================== */
.single-article__content.page-locked > p {
  /*テキスト引用*/
  display: -webkit-box;
  padding: 0;
  background: white;
  margin-bottom: 25px;
}

/* ===========================================
  鍵付きの場合-　.page-lockedを付与
 * ======================================== */
.members-area {
  /*外枠*/
  background: rgb(253, 253, 249);
  background: #fbfdff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 25px;
  margin: 0 auto 50px;
  border: 8px solid #292929;
}
@media screen and (max-width: 567px) {
  .members-area {
    padding: 35px 0;
  }
}
.members-area p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #292929;
  text-align: center;
  line-height: 1.6;
}
.members-BTN {
  width: 100%;
  margin-bottom: 15px;
  padding: 0 25px;
}
.members-BTN a {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  padding: 20px 1em;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 567px) {
  .members-BTN a {
    font-size: 0.9em;
  }
}
.members-BTN a.members-BTN__register {
  background: -webkit-gradient(linear, left top, left bottom, from(#4a4a4d), to(#2e2e30));
  background: linear-gradient(to bottom, #4a4a4d, #2e2e30);
}
.members-BTN a.members-BTN__login {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f1f0eb));
  background: linear-gradient(to bottom, #ffffff 0%, #f1f0eb 100%);
  color: #292929;
  border: 2px solid #292929;
}
.members-info {
  text-align: center;
  margin: 0 auto 35px;
}
.members-info p.marker {
  color: #3a3a3c;
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 0 20px 1em;
  font-size: 1.8rem;
  z-index: 1;
}
.members-info p.marker:before {
  /* 蛍光ペンにする場合*/
  content: none;
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
  height: 0.3em;
  background: rgba(181, 204, 231, 0.3764705882);
  z-index: -1;
}
.members-info p.marker i {
  font-size: 1.1em;
  padding-right: 5px;
}
.members-info__inner {
  max-width: 540px;
  text-align: left;
  background: #f7f2c5;
  /* 蛍光ペン色 */
  background: rgba(181, 204, 231, 0.662745098);
  padding: 1.5em 2em 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 567px) {
  .members-info__inner {
    padding: 1.5em 20px 40px;
  }
}
.members-info__inner ul {
  margin-bottom: 10px;
}
.members-info__inner li {
  padding-bottom: 8px;
}
.members-info__inner li i {
  padding-right: 10px;
  color: #292929;
}
.members-info__inner li b {
  display: inline;
  padding: 0 2px;
}
.members-info__inner .l-grid-3 {
  gap: 8px;
  margin-bottom: 15px;
}
@media screen and (max-width: 567px) {
  .members-info__inner .l-grid-3 img:nth-child(2),
  .members-info__inner .l-grid-3 img:nth-child(3) {
    display: none;
  }
}
.members-BTN__tarupo {
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
  padding: 5px 1.5em 5px 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  text-align: right;
  display: block;
  font-size: 1.5rem;
  background: #292929;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 0% 100%);
  /* ←左上を削る */
}
.members-BTN__tarupo i {
  padding-left: 8px;
}
.members-BTN-note {
  max-width: 540px;
  padding: 0 20px;
}
.members-BTN-note small {
  display: block;
  line-height: 1.8;
}
.members-BTN-note a {
  border-bottom: 1px dotted #3a3a3c;
  padding: 5px 0 2px;
  display: inline-block;
}
.members-BTN-note a i {
  padding-left: 8px;
}

/* ===========================================
 * プレスリリース：アーカイブページ（一部レポートと共通）
 * ======================================== */
/*ヘッダー部分*/
.my-page {
  margin: 0 auto 50px;
  /*お気に入りのチェックボックス*/
}
.my-page__header {
  width: 100%;
  margin: 15px 0 75px;
}
.my-page__header .main-ttl {
  padding: 0 0 15px;
}
.my-page__header-BTN {
  margin: 20px 0 0;
}
.my-page__header-BTN .c-btn-link {
  width: 100%;
  margin: 0 auto 20px;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.my-page__header-BTN .c-btn-link.--blue {
  background: #c18804;
  background: #1152a6;
  font-size: 1.7rem;
}
.my-page-checkboxes {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5em 1fr 1.5em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em 1.5em;
  margin-top: 0.5em;
}
@media screen and (max-width: 567px) {
  .my-page-checkboxes {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 364px) {
  .my-page-checkboxes {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.my-page-checkboxes.--col-6 {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 567px) {
  .my-page-checkboxes.--col-6 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.my-page label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.95em;
}
.my-page label input {
  width: 2em;
}
.my-page legend {
  background: #ebebeb;
  padding: 3px 0.5em;
  font-weight: 600;
  margin-bottom: 15px;
  width: 100%;
}
.my-page__category form {
  margin-bottom: 50px;
}
.my-page__category strong {
  display: block;
}

/* ===========================================
 * 企業年鑑データベース
 * ======================================== */
.P-DB {
  margin: 0 auto 0;
}
.P-DB h2 {
  text-align: center;
  font-size: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #2b6cb0;
  padding-bottom: 0.3em;
  margin: 0 auto 1em;
  color: #2b6cb0;
  font-weight: bold;
}
.P-DB h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 10px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 3px solid #e4e4e4;
}
.P-DB-lead {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.P-DB .updated {
  font-size: 1.2rem;
  color: #aaaaaa;
  text-align: right;
}
.P-DB .company_name {
  font-size: 2.6rem;
  font-weight: bold;
  padding: 10px 0 0;
}
.P-DB .company_name-kana {
  font-size: 1.2rem;
  font-weight: normal;
  padding: 5px 0 10px 0;
}
.P-DB a.go_search,
.P-DB a.go_search {
  cursor: pointer;
  font-size: 1.4rem;
  display: block;
  padding-bottom: 15px;
}
.P-DB a.go_search i,
.P-DB a.go_search i {
  color: #1152a6;
  font-size: 0.9em;
}
.P-DB ul.label_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.P-DB ul.label_01 li {
  border: 1px solid #bebebe;
  border-radius: 3px;
  font-size: 12px;
  padding: 0px 0.5em;
}
.P-DB ul.label_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.P-DB ul.label_02 li {
  border-radius: 3px;
  padding: 0;
  font-size: 14px;
  color: #666;
}
.P-DB ul.label_02 li i {
  padding-right: 5px;
}
.P-DB-header {
  margin: 25px auto 0;
  padding: 0 20px 50px;
}
.P-DB-header .l-grid-2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.P-DB dl.DB-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8em 1fr;
  grid-template-columns: 8em 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.P-DB dl.DB-list dt,
.P-DB dl.DB-list dd {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  line-height: 1.8;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.P-DB dl.DB-list dt i,
.P-DB dl.DB-list dd i {
  font-size: 0.7em;
  padding-left: 8px;
  padding-top: 2px;
}
.P-DB dl.DB-list dd.empty {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.P-DB button.BTN_more {
  width: 100%;
  max-width: 360px;
  margin: 50px auto;
  display: block;
}
.P-DB button.BTN_more a {
  padding: 1em 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ccc;
  border-radius: 8px;
  color: white;
  font-size: 1.5rem;
}

.P-DB-sec {
  padding: 0 20px 50px;
  /*関連企業*/
}
.P-DB-sec h5 {
  padding: 20px 0 10px;
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.P-DB-sec .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS対応 */
}
.P-DB-sec .table-wrapper table {
  width: 100%;
  min-width: 600px;
  /* 表の最小幅を指定。必要に応じて調整 */
  border-collapse: collapse;
  font-size: 1.6rem;
}
.P-DB-sec .table-wrapper table th,
.P-DB-sec .table-wrapper table td {
  border-bottom: 1px solid #ccc;
  padding: 10px 12px;
  text-align: right;
}
.P-DB-sec .table-wrapper table th {
  background-color: #dee7f0;
  color: #292929;
  font-weight: 500;
  text-align: center !important;
  font-size: 1.5rem;
  border: none;
}
.P-DB-sec .table-wrapper table td:first-child {
  text-align: left;
}
.P-DB-sec .table-wrapper table .negative {
  color: #000;
  font-weight: bold;
}
.P-DB-sec table.co-officer {
  /*役員一覧*/
  width: auto;
  min-width: 1260px;
}
.P-DB-sec table.co-officer th,
.P-DB-sec table.co-officer td {
  text-align: left;
  font-size: 0.8888888889em;
}
.P-DB-sec table.co-officer th:first-child,
.P-DB-sec table.co-officer td:first-child {
  /*姓名*/
  width: 14em;
}
.P-DB-sec table.co-officer th:nth-of-type(2),
.P-DB-sec table.co-officer td:nth-of-type(2) {
  /*カナ*/
  width: 14em;
}
.P-DB-sec table.co-officer th:nth-of-type(3),
.P-DB-sec table.co-officer td:nth-of-type(3) {
  /* 役職*/
  width: 14em;
}
.P-DB-sec table.co-officer th:nth-of-type(4),
.P-DB-sec table.co-officer td:nth-of-type(4) {
  /* 生年月日*/
  width: 8em;
}
.P-DB-sec table.co-officer th:nth-of-type(5),
.P-DB-sec table.co-officer td:nth-of-type(5) {
  /* 出身地*/
  width: 14em;
}
.P-DB-sec table.co-officer th:nth-of-type(6),
.P-DB-sec table.co-officer td:nth-of-type(6) {
  /* 最終学歴*/
  width: 14em;
}
.P-DB-sec table.co-officer th:nth-of-type(7),
.P-DB-sec table.co-officer td:nth-of-type(7) {
  /* 趣味*/
  width: 10em;
}
.P-DB-sec table.co-officer th:nth-of-type(8),
.P-DB-sec table.co-officer td:nth-of-type(8) {
  /* 現住所*/
  width: 16em;
}
.P-DB-sec .related-companies {
  border-bottom: 1px solid #eee;
}
.P-DB-sec .related-companies a {
  display: block;
  padding: 1em 0.5em;
}
.P-DB-sec .related-companies a:hover {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  opacity: 1;
  background: rgba(17, 82, 166, 0.1019607843);
}
.P-DB-sec .related-companies h3 {
  font-size: 1.1111111111em;
  font-weight: bold;
  padding-bottom: 5px;
}
.P-DB-sec .related-companies .company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.P-DB-sec .related-companies .compare-checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.P-DB-sec .related-companies .company-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.P-DB-sec .related-companies .company-info h3 {
  margin: 0 0 0.5em;
  font-size: 1.1em;
}
.P-DB-sec .related-companies .company-info p {
  margin: 0.2em 0;
  color: #555;
  font-size: 0.9em;
}
.P-DB-sec .related-companies .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.P-DB-sec .related-companies .actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
}

.P-DB-tags {
  padding: 10px 0;
}
.P-DB-tags__item {
  display: inline-block;
  background: #eee;
  border-radius: 20px;
  padding: 4px 10px;
  margin: 4px 6px 10px 0;
  font-size: 13px;
}

/*===企業年鑑データベース検索===*/
.P-DB-search {
  margin: 25px auto 50px;
  padding: 35px 30px 50px;
  width: 100%;
  max-width: 780px;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 567px) {
  .P-DB-search {
    padding: 25px 20px 25px;
  }
}
.P-DB-search .company-search h2 {
  font-size: 1.5em;
  border-bottom: 2px solid #2b6cb0;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
  color: #2b6cb0;
}
.P-DB-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.P-DB-search__form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8888888889em;
  gap: 10px;
  line-height: 1.6;
}
.P-DB-search__form .form-group > label {
  width: 10em;
  color: #fff;
  padding: 5px 0.5em;
  border-radius: 5px;
  margin-bottom: 0.3em;
  background-color: rgba(17, 82, 166, 0.815);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.P-DB-search__form .form-group input,
.P-DB-search__form .form-group select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 0.5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.P-DB-search__form .form-group input#settlement,
.P-DB-search__form .form-group select#settlement {
  max-width: 10em;
}
.P-DB-search__form .form-group-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.8888888889em;
  gap: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .P-DB-search__form .form-group-02 {
    margin-bottom: 15px;
  }
}
.P-DB-search__form .form-group-02:nth-of-type(2) {
  margin-bottom: 0;
}
.P-DB-search__form .form-group-02 .label-item {
  width: 100%;
  padding: 0;
  font-size: 1.5rem;
  color: #1152a6;
}
.P-DB-search__form .form-group-02 > label {
  width: 10em;
  border-radius: 5px;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  color: #1152a6;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0;
}
.P-DB-search__form .form-group-02 input {
  width: 100%;
  padding: 5px 0.5em;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.P-DB-search__form .form-group-02 input::-webkit-input-placeholder {
  color: #ccc;
}
.P-DB-search__form .form-group-02 input::-moz-placeholder {
  color: #ccc;
}
.P-DB-search__form .form-group-02 input:-ms-input-placeholder {
  color: #ccc;
}
.P-DB-search__form .form-group-02 input::-ms-input-placeholder {
  color: #ccc;
}
.P-DB-search__form .form-group-02 input::placeholder {
  color: #ccc;
}
@media screen and (max-width: 567px) {
  .P-DB-search__form .form-group-02 input {
    width: 100%;
  }
}
.P-DB-search__form .form-group-02 .select-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.P-DB-search__form .form-group-02 .select-wrapper select {
  width: 100%;
  padding: 5px 0.5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2.5em;
}
.P-DB-search__form .form-group-02 .select-wrapper select option.selected {
  color: #ccc;
}
.P-DB-search__form .form-group-02 .select-wrapper::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 0.9em;
}
.P-DB-search__form .form-group-02 .DB-checkboxes {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5em 1fr 1.5em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em 1.5em;
  margin-top: 0.5em;
}
@media screen and (max-width: 567px) {
  .P-DB-search__form .form-group-02 .DB-checkboxes {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 364px) {
  .P-DB-search__form .form-group-02 .DB-checkboxes {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.P-DB-search__form .form-group-02 .DB-checkboxes.--col-6 {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 567px) {
  .P-DB-search__form .form-group-02 .DB-checkboxes.--col-6 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.P-DB-search__form .form-group-02 .DB-checkboxes label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.95em;
}
.P-DB-search__form .form-group-02 .DB-checkboxes label input {
  width: 2em;
}
.P-DB-search__form .form-group-02 .industry-radio {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5em 1em;
  max-width: 800px;
}
.P-DB-search__form .form-group-02 .industry-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 0.4em 0.8em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95em;
  background-color: #fff;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}
.P-DB-search__form .form-group-02 .industry-radio input[type=radio] {
  display: none;
}
.P-DB-search__form .form-group-02 .industry-radio input[type=radio]:checked + span, .P-DB-search__form .form-group-02 .industry-radio input[type=radio]:checked ~ label {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
.P-DB-search__form .form-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  max-width: 400px;
  background: #fff;
}
.P-DB-search__form .toggle-label {
  font-weight: bold;
  color: #002266;
  text-decoration: underline;
}
.P-DB-search__form .toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}
.P-DB-search__form .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.P-DB-search__form .slider {
  position: absolute;
  cursor: pointer;
  background-color: white;
  border: 2px solid #0056b3;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.P-DB-search__form .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #0056b3;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.P-DB-search__form .toggle-switch input:checked + .slider {
  background-color: #0056b3;
}
.P-DB-search__form .toggle-switch input:checked + .slider::before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background-color: white;
}
.P-DB-search__form .search-details {
  border-bottom: 1px solid #1152a6;
}
.P-DB-search__form .search-details summary {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #1152a6;
  font-size: 0.8888888889em;
  margin-bottom: 10px;
}
.P-DB-search__form .search-details summary i {
  padding-left: 10px;
  padding-top: 2px;
  font-size: 1.1em;
  color: #1152a6;
}
.P-DB-search__form .search-details .icon-toggle::before {
  content: "\f055";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.P-DB-search__form .search-details[open] .icon-toggle::before {
  content: "\f056";
}
.P-DB-search__form .search-details .search-details-content {
  padding: 1em 0;
}
.P-DB-search__form .search-details .search-details-content .form-group-02 {
  margin-bottom: 2em;
}
.P-DB-search .go_detail {
  text-align: right;
  margin: 0;
}
.P-DB-search .go_detail a {
  font-size: 0.7777777778em;
  letter-spacing: 0.02em;
}
.P-DB-search .go_detail a i {
  color: rgba(17, 82, 166, 0.815);
}
.P-DB-search .note {
  font-size: 0.75em;
  color: #666;
  text-align: left;
  margin-top: -0.5em;
}
.P-DB-search .form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.P-DB-search .BTN_reset span {
  color: #1152a6;
  border: 1px solid #1152a6;
  padding: 8px 1em;
  font-size: 1.5rem;
}
.P-DB-search .BTN_search {
  width: 50%;
  max-width: 360px;
  margin: 25px 0;
  padding: 1em 0;
  background: #1152a6;
  border-radius: 8px;
  color: white;
  font-size: 1em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.P-DB-search .category-detail .form-group-02 {
  margin-bottom: 1.5em;
}
.P-DB-search .category-detail-item {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5em 1fr 1.5em 1fr 1.5em 1fr 1.5em 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5em 1.5em;
  margin-top: 0.5em;
}
@media screen and (max-width: 567px) {
  .P-DB-search .category-detail-item {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.P-DB-search .category-detail-item li {
  font-size: 0.8333333333em;
  margin-bottom: 15px;
  line-height: 1.4;
}
.P-DB-search .category-detail-item a {
  text-decoration: underline;
}

.P-DB-result {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.P-DB-result__header {
  font-weight: bold;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.P-DB-result__header i {
  padding-top: 2px;
}
.P-DB-result__item {
  margin-bottom: 25px;
}
.P-DB-result__item strong {
  font-size: 0.8888888889em;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.P-DB-result__item > .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
}
.P-DB-result__item > .item-list li {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 9999px;
  padding: 5px 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  font-size: 0.8333333333em;
}
.P-DB-result .go_search {
  text-align: right;
}
.P-DB-result__list h4 {
  /*検索結果●件*/
  font-size: 2rem;
  color: #1152a6;
  gap: 0;
  border: none;
}
.P-DB-result__list .l-grid-2 {
  gap: 15px 15px;
}
@media screen and (max-width: 768px) {
  .P-DB-result__list .l-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.P-DB-result__list-item {
  border: 1px solid #d4d4d4;
  border-left: 5px solid #1152a6;
  border-radius: 10px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  background: white;
}
.P-DB-result__list-item:hover {
  -webkit-filter: drop-shadow(2px 3px 2px rgba(100, 100, 100, 0.2));
          filter: drop-shadow(2px 3px 2px rgba(100, 100, 100, 0.2));
}
.P-DB-result__list-item a {
  display: block;
  padding: 1em 20px;
}
.P-DB-result__list-item a:hover {
  opacity: 1;
}
.P-DB-result__list-item .company_name {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0;
}
.P-DB-result__list-item .company_name-kana {
  color: #666;
}
.P-DB-result__list-item .label_02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px !important;
}
.P-DB-result__list-item .label_02 li {
  color: #292929 !important;
}
.P-DB-result__list-item .label_02 li i {
  color: #1152a6 !important;
}
.P-DB-result__list-item .company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.P-DB-result__list-item .compare-checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.P-DB-result__list-item .company-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.P-DB-result__list-item .company-info h3 {
  margin: 0 0 0.5em;
  font-size: 1.1em;
}
.P-DB-result__list-item .company-info p {
  margin: 0.2em 0;
  color: #555;
  font-size: 0.9em;
}
.P-DB-result__list-item .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.P-DB-result__list-item .actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
}
.P-DB-result__note {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.P-DB-result__note strong {
  font-size: 2rem;
  display: block;
}

.P-DB .pagination-nav {
  text-align: center;
  margin: 2em 0;
}
.P-DB .pagination-nav .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  gap: 0.5em;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.P-DB .pagination-nav .page-numbers li {
  display: inline;
}
.P-DB .pagination-nav .page-numbers a,
.P-DB .pagination-nav .page-numbers span {
  padding: 0.4em 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 1.5rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.P-DB .pagination-nav .page-numbers a:hover {
  background-color: #1152a6;
  border-color: #1152a6;
  color: #fff;
}
.P-DB .pagination-nav .page-numbers .prev,
.P-DB .pagination-nav .page-numbers .next {
  border: none;
}
.P-DB .pagination-nav .page-numbers .prev:hover,
.P-DB .pagination-nav .page-numbers .next:hover {
  background: white;
  color: #292929;
}
.P-DB .pagination-nav .page-numbers .current {
  background-color: #1152a6;
  border-color: #1152a6;
  color: #fff;
  font-weight: bold;
  cursor: default;
}

.P-DB .tab-container {
  width: 100%;
  margin: 0 auto;
}
.P-DB .tab-buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}
.P-DB .tab-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #eee;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-align: center;
  font-weight: 600;
}
.P-DB .tab-btn.active {
  background-color: #1152a6;
  color: #fff;
}
.P-DB .tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.P-DB .tab-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.P-DB .tab-content .P-DB-sec {
  padding: 15px 20px;
}
.P-DB .tab-content h4 {
  border: none;
  font-size: 2rem;
}

.co-officer-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 50px;
}
.co-officer-item {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 25px 20px 20px;
}
.co-officer-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
.co-officer-title {
  /*役職*/
  border: 1px solid #1152a6;
  border-radius: 25px;
  background: #eaeff3;
  font-size: 12px;
  padding: 2px 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1152a6;
  letter-spacing: 0.02em;
  margin: 0 0 5px -2px;
}
.co-officer-name {
  font-weight: 600;
  font-size: 2.4rem;
}
.co-officer-kana {
  font-size: 1.1rem;
}
.co-officer-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6em 1fr;
  grid-template-columns: 6em 1fr;
  font-size: 1.5rem;
  padding: 15px 0 0;
}
.co-officer-data dt,
.co-officer-data dd {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.co-officer-data dt {
  font-weight: normal;
  color: #555;
}
.archive-DB .lead {
  padding: 0 10px 15px;
}
.archive-DB .lead a {
  display: inline;
  color: #1152a6;
  border-bottom: 1px dotted #1152a6;
  padding: 0 3px 3px;
}
.archive-DB .l-grid-2 {
  margin: 15px auto 0;
  gap: 20px 20px;
}
.archive-DB__list-item {
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  background: white;
  padding: 15px 20px 10px;
}
.archive-DB .company_name {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px dotted #1152a6;
}
.archive-DB .company_name i {
  font-size: 12px;
  padding: 0 1em;
}
.archive-DB .DB_link {
  margin: 0 0 15px auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.archive-DB .DB_link a {
  font-size: 1.5rem;
  color: #1152a6;
}
.archive-DB .DB_link a i {
  font-size: 12px;
  padding-left: 0.5em;
}
.archive-DB .DB_link a span {
  background: #1152a6;
  display: block;
  color: white;
  padding: 10px 1em;
  line-height: 1;
  margin-bottom: 5px;
}
.archive-DB dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4.5em 1fr;
  grid-template-columns: 4.5em 1fr;
  font-size: 1.6rem;
  padding: 0;
}
.archive-DB dl dt,
.archive-DB dl dd {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.archive-DB dl dt {
  font-weight: normal;
  color: #555;
  font-weight: 600;
}
.archive-DB dl.archive-DB-sales {
  display: block;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.archive-DB dl.archive-DB-sales dt {
  margin-bottom: 10px;
}
.archive-DB dl.archive-DB-sales dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.archive-DB dl.archive-DB-sales dd div {
  background: #a3b2c9;
  padding: 5px 1em;
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 1;
  color: white;
  font-weight: 600;
}
.archive-DB p {
  font-size: 1.6rem;
}

.archive-DB__list-item .restricted-box {
  background: #f4f4f4;
  padding: 1em;
  margin-top: 1em;
  text-align: center;
}
.archive-DB__list-item .restricted-text {
  color: #333;
  font-weight: bold;
  padding-bottom: 10px;
}
.archive-DB__list-item a.pdf-BTN {
  font-size: 1.5rem;
  color: white;
  padding: 6px 1em;
  width: 100%;
  max-width: 12em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 0;
  background: white;
  border: 1px solid #1152a6;
  color: #1152a6;
}
.archive-DB__list-item a.pdf-BTN.is-disabled {
  background: #e0e0e0;
  color: #292929;
  pointer-events: auto;
  border: 1px solid #8c8c8c;
}
.archive-DB__list-item a.pdf-BTN.is-disabled i {
  font-size: 14px;
  padding-left: 8px;
}

.DB-news {
  margin-bottom: 25px;
}
.DB-news strong {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1152a6;
  display: block;
  text-align: center;
  padding: 0 1em 5px;
  margin: 0 auto;
  background: #1152a6;
}
.DB-news dl {
  font-size: 1.5rem;
  padding: 0 10px;
}
.DB-news dl dt {
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0;
  color: #1152a6;
}
.DB-news dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 1px dotted #1152a6;
  margin: 0 0 5px 0 !important;
  padding: 0 0 5px 0;
  font-size: 1.4rem;
}
.DB-news dl dd:last-of-type {
  border-bottom: none;
}
.DB-news dl dd span {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  color: #1152a6;
}
.DB-news dl dd span i {
  color: #1152a6;
  font-size: 10px;
  padding: 2px 0 0 5px;
}

.c-ham {
  position: relative;
  z-index: 999;
  width: 60px;
  height: 60px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
}
@media screen and (min-width: 769px) {
  .c-ham {
    display: none;
  }
}
.is-ham-open .c-ham {
  background-color: white;
}
.c-ham__line {
  width: 24px;
  height: 3px;
  display: block;
  background-color: #1152a6;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-ham__line:nth-of-type(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.is-ham-open .c-ham__line:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
  background-color: #292929;
}
.c-ham__line:nth-of-type(2) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.is-ham-open .c-ham__line:nth-of-type(2) {
  opacity: 0;
}
.c-ham__line:nth-of-type(3) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.is-ham-open .c-ham__line:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
  background-color: #292929;
}

body.is-ham-open {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

/* Swiperだけに限定 */
.swiper {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  /* ナビゲーションボタン */
  /* ページネーション */
}
.swiper .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  line-height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.swiper .swiper-button-prev {
  left: 10px;
}
.swiper .swiper-button-next {
  right: 10px;
}
.swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.carousel {
  padding-bottom: 25px;
  /* ホバー時のアニメーション */
  /* Swiperデフォルトの矢印を非表示にする */
  /* 右矢印だけ向き変更 */
}
.carousel .swiper-button-prev-carousel,
.carousel .swiper-button-next-carousel {
  width: 40px;
  height: 40px;
  border: 2px solid #1152a6;
  /* 緑の枠（色はお好みで） */
  border-radius: 50%;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1152a6;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  position: absolute;
  right: 0;
  bottom: 0;
}
.carousel .swiper-button-prev-carousel {
  right: 50px;
}
.carousel .swiper-button-prev-carousel:hover,
.carousel .swiper-button-next-carousel:hover {
  background: #1152a6;
  color: #fff;
}
.carousel .swiper-button-prev-carousel::after,
.carousel .swiper-button-next-carousel::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  display: inline-block;
}
.carousel .swiper-button-next-carousel::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ===========================================
  アーカイブページ　カテゴリナビ
 * ======================================== */
.category-nav {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
  margin: 0 auto 25px;
  overflow: hidden;
  position: relative;
}
.category-nav:before, .category-nav:after {
  display: block;
  content: "";
  width: 30px;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  z-index: 99;
}
.category-nav:before {
  left: 0;
}
.category-nav:after {
  right: 0;
}
.category-nav .swiper-wrapper {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.category-nav .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  padding: 10px 0;
  text-align: center;
}
.category-nav .swiper-slide a {
  background: #4e8bc9;
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 1em;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 1.5rem;
}
.category-nav .swiper-slide a:hover {
  color: white;
  opacity: 0.65;
}
.category-nav .swiper-slide a.current {
  border: 1px solid #0054a7;
  color: #0054a7;
  background: white;
  opacity: 1;
}
.category-nav .swiper-button-prev,
.category-nav .swiper-button-next {
  position: absolute;
  background-image: none;
  top: calc(50% + 3px);
  z-index: 999;
}
.category-nav .swiper-button-prev::after,
.category-nav .swiper-button-next::after {
  display: block !important;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0054a7;
}
.category-nav .swiper-button-prev {
  left: 0;
}
.category-nav .swiper-button-prev::after {
  content: "\f137";
}
.category-nav .swiper-button-next {
  right: 0;
}
.category-nav .swiper-button-next::after {
  content: "\f138";
}
@media screen and (max-width: 768px) {
  .category-nav {
    display: none;
    border: none;
    padding: 0 20px;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 567px) {
  .category-nav:before, .category-nav:after {
    width: 30px;
  }
  .category-nav .swiper-slide {
    padding: 10px 0;
  }
}

.select_nav {
  display: none;
  width: 90%;
  margin: 0 auto 35px;
  border: 2px solid #0054a7;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 99;
  background: white;
}
.select_nav::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-size: 12px;
  font-weight: 900;
  height: 10px;
  margin: auto;
  line-height: 10px;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  pointer-events: none;
}
.select_nav select {
  width: 100%;
  padding: 5px;
  font-size: 1.7rem;
  border: none;
  outline: none;
}
.select_nav select:focus {
  border: none;
}
@media screen and (max-width: 768px) {
  .select_nav {
    display: block;
  }
}

.pc-none {
  display: inherit;
}
@media screen and (min-width: 1025px) {
  .pc-none {
    display: none;
  }
}

.tb-none {
  display: inherit;
}
@media screen and (min-width: 769px) {
  .tb-none {
    display: none;
  }
}

@media screen and (max-width: 567px) {
  .sp-none {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 567px) {
  .sp-only {
    display: inherit;
  }
}

/*===シンプルリンクボタン===*/
.c-btn-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 15px 0;
  margin: 50px auto;
  color: white;
  font-size: 1.7rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 360px;
  background: #292929;
}
@media screen and (max-width: 567px) {
  .c-btn-link {
    max-width: initial;
  }
}
.c-btn-link i,
.c-btn-link .svg-inline--fa {
  font-size: 0.9em;
  color: #ffffff;
}
.c-btn-link:hover {
  background: #e6e2dd;
  background: #bcbcbc;
  color: white;
}
.c-btn-link:hover i,
.c-btn-link:hover .svg-inline--fa {
  color: white;
}
.c-btn-link.gray {
  background: #bcbcbc;
}

/* ===========================================
  detailsの基本の開閉ボックス
 * ======================================== */
details {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  margin: 0 0 25px;
}
details summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  /*開閉マーク*/
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: #1152a6;
  margin-left: 15px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

details[open] summary::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* ===========================================
 * メインコンテンツ
 * ======================================== */
.p-top-main {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 360px;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-top-main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top-main__main {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-main__main .l-news-card__txt {
  padding: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-main__main .l-news-card {
    padding: 10px 0 15px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
  }
}
.p-top-main__side {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
}
.p-top-main__side .l-news-list {
  padding: 0;
  margin: 0;
}
.p-top-main__side .l-news-list a {
  padding: 15px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-main .news-ttl {
  -webkit-line-clamp: 3;
  /* ← 2行で切る */
}

/* ===========================================
 * トップページ　特集記事レイアウト
 * ======================================== */
.p-top-feature {
  /*特集*/
  overflow: hidden;
  position: relative;
}
.p-top-feature .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 35px;
}
.p-top-feature .l-feature-item {
  padding-bottom: 15px;
}
.p-top-feature .l-feature-item_txt {
  padding: 5px 15px 0;
}

.l-main__side .l-news-ranking {
  margin-bottom: 50px;
}

.l-ad .l-ad__item {
  margin-bottom: 15px;
  padding: 0 2%;
}
.l-ad .l-ad__item .ad-label {
  font-size: 0.6666666667em;
  color: #bcbcbc;
}
.l-ad .l-ad__item img {
  margin: 5px auto 0;
}

/* ===========================================
 * 広告エリアレイアウト
 * ======================================== */
.l-banner {
  margin-bottom: 45px;
}
.l-banner__item {
  margin-bottom: 15px;
  padding: 0 2%;
}
@media screen and (max-width: 1024px) {
  .l-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row wrap;
            flex-direction: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 780px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 567px) {
  .l-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
}

.l-ad {
  margin-bottom: 50px;
}
.l-ad .l-ad__item {
  margin-bottom: 15px;
  padding: 0 2%;
  position: relative;
}
.l-ad .l-ad__item .ad-label {
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 0.6111111111em;
  padding: 1px 3px;
  color: #9c9c9c;
  border: 1px solid #9c9c9c;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
}
.l-ad .l-ad__item img {
  margin: 5px auto 0;
}
@media screen and (max-width: 1024px) {
  .l-ad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row wrap;
            flex-direction: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 780px;
    margin: 0 auto 50px;
  }
  .l-ad .l-ad__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 567px) {
  .l-ad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
  }
  .l-ad .l-ad__item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===========================================
 * sub-content
 * ======================================== */
.p-sub-Plan__header {
  margin-bottom: 50px;
}
.p-sub-Plan__header img {
  display: block;
  margin-bottom: 50px;
}
.p-sub-Plan__header {
  margin: 0 auto 35px;
}
.p-sub-Plan__header h3 {
  color: #1152a6;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-sub-Plan__header h3 i {
  padding-right: 8px;
}
.p-sub-Plan__header .lead {
  font-size: 1.6rem;
}
.p-sub-Plan .l-flex-3 {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-sub-Plan .l-flex-3 li {
  width: 32%;
}
@media screen and (max-width: 860px) {
  .p-sub-Plan .l-flex-3 li {
    width: 48%;
  }
}
@media screen and (max-width: 567px) {
  .p-sub-Plan .l-flex-3 li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 25px;
  }
}
.p-sub-Plan__item {
  /*各プランのカード*/
  background: #edf4fb;
  color: #292929;
  padding: 20px 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 25px;
}
.p-sub-Plan__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}
.p-sub-Plan__item__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 10px;
  width: 100%;
}
.p-sub-Plan__item strong {
  display: block;
  letter-spacing: 0.05em;
}
.p-sub-Plan__item small {
  display: block;
}
.p-sub-Plan__item button {
  margin-top: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  /* 中央寄せしたい場合 */
}
.p-sub-Plan__item small {
  margin-bottom: 10px;
}
.p-sub-Plan button {
  border: 1px solid #1152a6;
  color: #1152a6;
  background: white;
  padding: 0.5em 1em;
  font-size: 1.7rem;
  font-weight: bold;
  width: 100%;
  max-width: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sub-Plan .Plan--ttl {
  color: white;
  background: linear-gradient(45deg, rgba(17, 82, 166, 0.96) 51%, rgba(73, 163, 196, 0.88) 100%);
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 1em 12px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  white-space: nowrap;
  width: 180px;
  margin: 0 auto;
}
.p-sub-Plan .Plan--price {
  font-size: 1.4rem;
  margin: 15px auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* インライン扱いで横に並ぶ */
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  /* 改行させない */
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  /* 下揃え（last baseline 非対応ブラウザ対策） */
  gap: 5px;
  white-space: nowrap;
}
.p-sub-Plan .Plan--price span {
  font-size: 3.6rem;
  font-weight: bold;
  padding: 0 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* 数字とsmallを横並びに */
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  white-space: nowrap;
}
.p-sub-Plan .Plan--price span small {
  font-size: 1.6rem;
  margin-left: 2px;
  white-space: nowrap;
}
.p-sub-Plan .Plan--feature {
  margin: 10px auto;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-sub-Plan .Plan--feature i {
  color: #1152a6;
  padding-right: 0.5em;
}
.p-sub-Plan .Plan--feature li {
  font-size: 1.5rem;
  margin-bottom: 5px;
  width: 100%;
}
.p-sub-Plan .Plan--feature li em {
  color: #1152a6;
  font-weight: bold;
}
.p-sub-Plan__item.corporate {
  background: white;
  border: 1px solid #1152a6;
}
@media screen and (min-width: 860px) {
  .p-sub-Plan__item.corporate {
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .p-sub-Plan__item.corporate .Plan--feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 20px;
  }
  .p-sub-Plan__item.corporate .Plan--feature li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: inline-block;
  }
}
/*# sourceMappingURL=style.css.map */