@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/* 変数の定義 */
/* font family */
.swl-format-1,
.swl-format-2 {
  font-family: "Noto Serif JP", "Times New Roman", Times, serif;
}

.swl-format-1 {
  font-weight: 500;
}

.swl-format-2 {
  font-weight: 900;
}

/* link block file icon */
#main_content a[href$=".xls"] .swell-block-linkList__text,
#main_content a[href$=".xlsx"] .swell-block-linkList__text,
#main_content a[href$=".pdf"] .swell-block-linkList__text,
#main_content a[href$=".doc"] .swell-block-linkList__text,
#main_content a[href$=".docx"] .swell-block-linkList__text {
  position: relative;
  padding-right: 28px;
}
#main_content a[href$=".xls"] .swell-block-linkList__text::after,
#main_content a[href$=".xlsx"] .swell-block-linkList__text::after,
#main_content a[href$=".pdf"] .swell-block-linkList__text::after,
#main_content a[href$=".doc"] .swell-block-linkList__text::after,
#main_content a[href$=".docx"] .swell-block-linkList__text::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  content: "";
}
#main_content a[href$=".xls"] .swell-block-linkList__text::after,
#main_content a[href$=".xlsx"] .swell-block-linkList__text::after {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-excel</title><path d="..."></path></svg>');
}
#main_content a[href$=".pdf"] .swell-block-linkList__text::after {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-document</title><path d="..."></path></svg>');
}
#main_content a[href$=".doc"] .swell-block-linkList__text::after,
#main_content a[href$=".docx"] .swell-block-linkList__text::after {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-word</title><path d="..."></path></svg>');
}

.p-articleThumb {
  text-align: center;
}

html {
  overflow-y: scroll;
}

#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 1;
  transition: opacity 0.5s ease;
  justify-content: center;
  align-items: center;
}

#loading .spinner {
  width: 200px;
  height: 200px;
  background: url("original-dist/img/ripples.svg") no-repeat center center;
  background-size: contain;
}

.loaded #loading {
  pointer-events: none;
  opacity: 0;
}

/* ----------------------------------
    base font
---------------------------------- */
.post_content {
  font-weight: 400;
}
.post_content p {
  margin-top: 0.6em;
  line-height: 1.8;
}

/* ----------------------------------
    title reset & setting
---------------------------------- */
/* ----------------------------------
    link setting
---------------------------------- */
.post_content a img {
  transition: 0.4s;
}
.post_content a:hover img {
  opacity: 0.6;
}
.post_content .is-style-more_btn a:not(.swell-block-button__link):not(.menu-link):hover {
  color: #fff;
}

.gallery {
  display: grid;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  transition: 0.4s;
  grid-column-gap: 10px;
  grid-row-gap: 15px;
}
.gallery > br {
  display: none;
}

.gallery-icon {
  text-align: center;
}
.gallery-icon img {
  width: 100%;
  height: auto;
}

.gallery-caption {
  margin: 0 0 10px;
  font-size: 12px;
  color: #222;
  text-align: center;
}

.gallery-columns-1 {
  /** カラムなし **/
  grid-template-columns: 1fr;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item,
.gallery-columns-5 .gallery-item,
.gallery-columns-6 .gallery-item,
.gallery-columns-7 .gallery-item,
.gallery-columns-8 .gallery-item,
.gallery-columns-9 .gallery-item {
  width: 100%;
}

@media (max-width: 959px) {
  .gallery-columns-3,
  .gallery-columns-4,
  .gallery-columns-5,
  .gallery-columns-6,
  .gallery-columns-7,
  .gallery-columns-8,
  .gallery-columns-9 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) {
  .gallery-columns-3,
  .gallery-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ----------------------------------
    table setting
---------------------------------- */
.post_content .c-scrollHint {
  margin-top: 0.5em;
}
.post_content td,
.post_content th {
  padding: normal !important;
}
.post_content td:first-of-type h2,
.post_content td:first-of-type h3,
.post_content td:first-of-type h4,
.post_content td:first-of-type h5,
.post_content td:first-of-type h6,
.post_content th:first-of-type h2,
.post_content th:first-of-type h3,
.post_content th:first-of-type h4,
.post_content th:first-of-type h5,
.post_content th:first-of-type h6 {
  margin-top: 0.5em;
}
.post_content .wp-block-table table[border="0"],
.post_content table[border="0"] {
  border: none;
}
.post_content .wp-block-table table[border="0"] > tbody > tr,
.post_content table[border="0"] > tbody > tr {
  border: none;
}
.post_content .wp-block-table table[border="0"] > tbody > tr > th,
.post_content .wp-block-table table[border="0"] > tbody > tr > td,
.post_content table[border="0"] > tbody > tr > th,
.post_content table[border="0"] > tbody > tr > td {
  border: none;
}
.post_content .wp-block-table table[border="1"],
.post_content table[border="1"] {
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.post_content .wp-block-table table[border="1"] > tbody > tr,
.post_content table[border="1"] > tbody > tr {
  border: none;
}
.post_content .wp-block-table table[border="1"] > tbody > tr > th,
.post_content .wp-block-table table[border="1"] > tbody > tr > td,
.post_content table[border="1"] > tbody > tr > th,
.post_content table[border="1"] > tbody > tr > td {
  border: 1px solid #ddd;
}
.post_content table[border="2"] {
  border: none;
  border-top: 1px solid #666;
  border-right: none;
  border-bottom: 1px solid #666;
  border-collapse: collapse;
  clip-path: inset(0 2px);
}
.post_content table[border="2"] > tbody > tr > th,
.post_content table[border="2"] > tbody > tr > td {
  border-top: 1px solid #ccc;
  border-right: none;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.post_content table[border="3"] {
  border: none;
  border-top: 3px solid #666;
  border-bottom: 3px solid #666;
  border-collapse: collapse;
  clip-path: inset(0 2px);
}
.post_content table[border="3"] > tbody > tr > th,
.post_content table[border="3"] > tbody > tr > td {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #666;
}
.post_content table[border="4"] {
  border: none;
  border-top: 2px solid #666;
  border-right: none;
  border-bottom: 2px solid #666;
  border-left: none;
  border-collapse: collapse;
}
.post_content table[border="4"] > tbody > tr > th,
.post_content table[border="4"] > tbody > tr > td {
  border-top: 1px solid #ccc;
  border-right: none;
  border-bottom: 1px solid #ccc;
  border-left: none;
}
.post_content .tbl__border__dotted {
  border: 3px dotted #666;
}
.post_content table[border="5"] {
  border: none;
}
.post_content table[border="5"] > tbody > tr > th,
.post_content table[border="5"] > tbody > tr > td {
  border: none;
}
.post_content table[border="6"] {
  border: none;
  border-top: none;
  border-right: 2px solid #666;
  border-bottom: none;
  border-left: 2px solid #666;
  border-collapse: collapse;
}
.post_content table[border="6"] > tbody > tr > th,
.post_content table[border="6"] > tbody > tr > td {
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #666;
}
@media (max-width: 599px) {
  .post_content table[border="6"] > tbody > tr > th,
  .post_content table[border="6"] > tbody > tr > td {
    border-left: none;
  }
}
.post_content table[border="7"] {
  border: none;
  border-top: 3px solid #666;
  border-right: none;
  border-bottom: 3px solid #666;
  border-left: none;
  border-collapse: collapse;
}
.post_content table[border="7"] > tbody > tr > th,
.post_content table[border="7"] > tbody > tr > td {
  border: none;
}
.post_content table.hook_onepoint p {
  margin-bottom: 1em;
}
.post_content table.hook_onepoint table {
  margin-bottom: 1em;
}

.iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-header__logo,
.-series .l-header__logo {
  position: fixed;
  top: 40px;
  left: 2vw;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 0.7;
}

@media (min-width: 960px) {
  .l-header__logo,
  .-series .l-header__logo {
    position: fixed;
    top: 0;
    left: 2vw;
    display: block;
    margin: 0;
    padding: 0;
    opacity: 0.7;
  }
}
#footer {
  position: sticky;
  top: 100svh;
  /* レスポンシブ対応 */
  background: #0C3234;
  color: #FFF;
  /* モーダルコンテンツ */
  /* モーダルヘッダー（閉じるボタンを含む領域） */
  /* モーダルボディ（スクロール可能な領域） */
  /* Webkit（Chrome, Safari）用のスクロールバーカスタマイズ */
  /* アクティブ状態 */
  /* 非アクティブ状態 */
  /* 閉じるボタン */
  /* モーダル内のレイアウト */
}
@media (max-width: 959px) {
  #footer .modal-content {
    width: 90vw; /* モバイルではより大きく */
    height: 75vh; /* モバイルではより大きく */
  }
  #footer .modal-body {
    padding: 15px; /* モバイルではパディングを小さく */
  }
}
#footer .l-footer__widgetArea {
  background: #174143;
}
#footer .modal-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  /* モーダルを中央配置するためのフレックスボックス */
  display: flex;
  visibility: hidden;
  /* モーダル表示時のスクロール防止のため */
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
  will-change: opacity, visibility;
  align-items: center;
  justify-content: center;
}
#footer .modal-content {
  position: relative;
  /* スクロール可能な領域を確保するため、flexboxを使用 */
  display: flex;
  flex-direction: column;
  width: 80vw;
  max-width: 640px;
  height: 70vh;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: scale(0.7);
  will-change: transform, opacity;
}
#footer .modal-header {
  padding: 15px 20px;
  flex-shrink: 0; /* ヘッダーは縮まない */
}
#footer .modal-body {
  overflow-y: auto;
  padding: 20px;
  flex-grow: 1;
  /* スクロールバーのカスタマイズ */
  scrollbar-width: thin; /* Firefox用 */
  scrollbar-color: #888 #f1f1f1; /* Firefox用 */
}
#footer .modal-body::-webkit-scrollbar {
  width: 8px;
}
#footer .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#footer .modal-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #888;
}
#footer .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#footer .modal-overlay.active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s ease-out, visibility 0s;
}
#footer .modal-overlay.active .modal-content {
  opacity: 1;
  transform: scale(1);
}
#footer .modal-overlay:not(.active) {
  pointer-events: none;
}
#footer .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  transition: color 0.2s ease-out;
  align-items: center;
  justify-content: center;
}
#footer .close-modal::before,
#footer .close-modal::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  content: "";
  transform-origin: center;
}
#footer .close-modal::before {
  transform: rotate(45deg);
}
#footer .close-modal::after {
  transform: rotate(-45deg);
}
#footer .close-modal:hover {
  color: #000;
}
#footer .link-banner .p-blogParts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
#footer .link-banner .post_content ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
#footer .link-banner .post_content ul li {
  margin-left: 0;
}
#footer .link-banner .post_content ul li a:hover {
  color: #22b4f3;
}
#footer .link-banner .post_content ul li + li {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px dotted #ccc;
}
#footer #custom_html-2 {
  margin-top: 0;
}
#footer #menu-menu_pc_bottom {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
}
#footer #menu-menu_pc_bottom li {
  margin: 0;
  padding: 0;
}
#footer #menu-menu_pc_bottom li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  transition: 0.4s;
}
#footer .l-footer__foot,
#footer .l-footer__widgetArea {
  padding: 3em 0;
  font-size: 1em;
}
#footer .l-footer__foot .copyright,
#footer .l-footer__widgetArea .copyright {
  padding: 1em 0;
  font-size: 1em;
}
#footer .l-footer__foot .copyright::before,
#footer .l-footer__widgetArea .copyright::before {
  display: block;
  width: 100px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #5c909c;
  content: "";
  transform: translateY(-1em);
}
#footer .l-footer__foot .copyright::after,
#footer .l-footer__widgetArea .copyright::after {
  display: block;
  width: 100px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid #5c909c;
  content: "";
  transform: translateY(1em);
}

body:has(#wpadminbar) #footer {
  top: calc(100svh - 32px);
}

@media (max-width: 782px) {
  body:has(#wpadminbar) #footer {
    top: calc(100svh - 46px);
  }
}
.p-fixBtnWrap {
  transition: 0.4s;
}
.p-fixBtnWrap.now-bottom {
  bottom: 9em;
}
@media (min-width: 600px) {
  .p-fixBtnWrap.now-bottom {
    bottom: 8em;
  }
}

.l-footer {
  z-index: 2;
}

.footer_banner {
  overflow: hidden; /* バナーの親要素にoverflow: hiddenを設定 */
}

.footer_banner .p-blogParts.post_content {
  width: 100%;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  /* overflow: hidden を削除 */
  transition: transform 0.4s ease;
}

/* モバイル用スタイル */
.footer_banner .p-blogParts.post_content p {
  width: 50%; /* 2つ表示 */
  min-width: 50%;
  margin: 0;
  padding: 0 5px;
  text-align: center;
  flex-shrink: 0;
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}

.footer_banner .p-blogParts.post_content p img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ナビゲーションコントロール */
.banner-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.banner-dots {
  display: flex;
  justify-content: center;
  margin: 0 10px;
}

.banner-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-dot.active {
  background-color: #717171;
}

.banner-nav {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  margin: 0 5px;
}

.banner-nav:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* クローン要素が重複表示されないようにする */
.footer_banner .p-blogParts.post_content p.banner-clone {
  /* display: block !important; */
}

/* PC用スタイル (min-width: 960px) */
@media (min-width: 960px) {
  .footer_banner .p-blogParts.post_content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    overflow: visible;
    transform: none !important;
  }
  .footer_banner .p-blogParts.post_content p {
    width: 100%;
    min-width: auto;
  }
  /* PCモードではクローン要素を非表示 */
  .footer_banner .p-blogParts.post_content p.banner-clone {
    display: none !important;
  }
  .banner-controls {
    display: none; /* PCではコントロールを非表示 */
  }
}
/* コンテナ */
.sliding-menu-container {
  position: relative;
  width: 100%;
}

/* 帯とボタンのコンテナ */
.menu-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
}

/* 上部の帯 */
.menu-bar {
  height: 10px;
  background-color: rgba(0, 35, 48, 0.9);
}

/* スライディングメニュー全体のコンテナ */
.sliding-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  background-color: rgba(0, 35, 48, 0.9);
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  backdrop-filter: blur(8px);
}
.sliding-menu.active {
  transform: translateY(0);
}

/* メニューのスクロール可能な部分 */
.menu-content {
  overflow-y: auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  flex: 1;
}
@media (max-width: 768px) {
  .menu-content {
    padding: 32px 16px;
  }
}
@media (max-width: 600px) {
  .menu-content {
    padding: 24px 12px;
  }
}
@media (max-width: 480px) {
  .menu-content {
    padding: 32px 16px;
  }
}

/* ボタンコンテナ */
.menu-button-container {
  position: relative;
  height: 0;
  margin-top: auto;
}

/* ボタン */
.menu-toggle {
  position: absolute;
  z-index: 1001;
  bottom: 0;
  left: 50%;
  display: flex;
  width: 60px;
  height: 30px;
  border: none;
  border-radius: 0 0 5px 5px;
  background-color: rgba(0, 35, 48, 0.9);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transform: translateX(-50%) translateY(100%);
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .menu-toggle {
    right: 0;
    left: auto;
    width: 50px;
  }
}
.menu-toggle:hover {
  background-color: rgb(0, 35, 48);
}
.menu-toggle .chevron-down {
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .menu-toggle.active {
    right: 0;
  }
}
.menu-toggle.active .chevron-down {
  transform: rotate(-180deg);
}

/* メニューリスト */
.menu-list > ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .menu-list > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .menu-list > ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
.menu-list > ul > li {
  position: relative;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-list > ul > li:nth-child(2n) {
  border-right: none;
}
@media (min-width: 600px) {
  .menu-list > ul > li:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu-list > ul > li:nth-child(3n) {
    border-right: none;
  }
}
@media (min-width: 960px) {
  .menu-list > ul > li:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu-list > ul > li:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .menu-list > ul > li:nth-child(4n) {
    border-right: none;
  }
}
.menu-list a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (max-width: 480px) {
  .menu-list a {
    font-size: 14px;
  }
}
.menu-list a:hover {
  color: #86efac;
}
.menu-list .page_item_has_children > a {
  margin-bottom: 8px;
  font-weight: bold;
}
.menu-list .children {
  padding-left: 16px;
  list-style: none;
}
.menu-list .children li {
  padding: 4px 0;
  border-right: none;
}
.menu-list .children a {
  padding: 4px 0;
  font-size: 14px;
}
@media (max-width: 480px) {
  .menu-list .children a {
    font-size: 13px;
  }
}

.have-wpadmin .menu-header,
.have-wpadmin .sliding-menu {
  top: 32px;
}

@media (max-width: 782px) {
  .have-wpadmin .menu-header,
  .have-wpadmin .sliding-menu {
    top: 46px;
  }
}
#copyright {
  display: none;
}

@media (min-width: 960px) {
  #copyright {
    position: fixed;
    z-index: 100;
    top: 10px;
    right: 1.5vw;
    display: block;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 400;
    color: white;
    opacity: 0.5;
  }
}
body.home #body_wrap::before {
  display: none;
}

body:not(.home) #body_wrap::after {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  opacity: 0.3;
}
body:not(.home) #body_wrap::before {
  z-index: -2;
  filter: blur(3px);
}
body:not(.home) main#main_content {
  padding: calc(40px + 2vw) calc(20px + 1vw) calc(40px + 2vw);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
}

.c-filterLayer.-texture-dot:after,
.l-topTitleArea.c-filterLayer::before {
  display: none;
  background: none;
}

.l-topTitleArea {
  min-height: auto;
  padding-top: 8em;
}
.l-topTitleArea .c-pageTitle {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 900;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (min-width: 960px) {
  .l-topTitleArea {
    padding-top: 10em;
  }
}
.c-pagination svg {
  transform: translateY(25%);
}

.post_content .post-item {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  padding: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.post_content .post-item + .post-item {
  margin-top: 1em;
}
.post_content .post-date {
  width: 6.5rem;
}
.post_content .post-category {
  width: calc(100% - 6.5rem);
  font-size: 0.8rem;
}
.post_content .post-category span,
.post_content .post-category a {
  transition: 0.4s;
}
.post_content .post-category span:hover,
.post_content .post-category a:hover {
  opacity: 0.8;
}
.post_content .post-category span {
  padding: 5px 8px;
  background: #efefef;
}
.post_content .post-category a {
  padding: 5px 8px;
  color: #333;
}
.post_content .post-category a:hover {
  color: #333;
}
@media (max-width: 599px) {
  .post_content .post-item {
    width: 100%;
    align-items: center;
  }
  .post_content .post-title {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .post_content .post-item {
    flex-direction: row;
  }
  .post_content .post-date,
  .post_content .post-category,
  .post_content .post-title {
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .post_content .post-category {
    width: 6rem;
  }
  .post_content .post-title {
    width: calc(100% - 12.5rem);
    flex-grow: 1;
  }
}
.post_content .post-title a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}
.post_content .post-title a:hover {
  color: #22b4f3;
}
.post_content .post-title a[target^=_blank] {
  position: relative;
  display: block;
  align-items: center;
}
.post_content .post-title a[target^=_blank]:after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>open-in-new</title><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z" /></svg>') no-repeat center center;
  background-size: contain;
  content: "";
}
.post_content .post-title a[href$=".xls"], .post_content .post-title a[href$=".xlsx"] {
  position: relative;
  display: block;
  padding-right: 20px;
  align-items: center;
}
.post_content .post-title a[href$=".xls"]:after, .post_content .post-title a[href$=".xlsx"]:after {
  position: absolute;
  top: 5px;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-excel</title><path d="M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M15.8,20H14L12,16.6L10,20H8.2L11.1,15.5L8.2,11H10L12,14.4L14,11H15.8L12.9,15.5L15.8,20M13,9V3.5L18.5,9H13Z" /></svg>') no-repeat center center;
  background-size: contain;
  content: "";
}
.post_content .post-title a[href$=".pdf"] {
  position: relative;
  display: block;
  padding-right: 20px;
  align-items: center;
}
.post_content .post-title a[href$=".pdf"]:after {
  position: absolute;
  top: 5px;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-document</title><path d="M13,9H18.5L13,3.5V9M6,2H14L20,8V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V4C4,2.89 4.89,2 6,2M15,18V16H6V18H15M18,14V12H6V14H18Z" /></svg>') no-repeat center center;
  background-size: contain;
  content: "";
}
.post_content .post-title a[href$=".doc"], .post_content .post-title a[href$=".docx"] {
  position: relative;
  display: block;
  padding-right: 20px;
  align-items: center;
}
.post_content .post-title a[href$=".doc"]:after, .post_content .post-title a[href$=".docx"]:after {
  position: absolute;
  top: 5px;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>file-word</title><path d="M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M15.2,20H13.8L12,13.2L10.2,20H8.8L6.6,11H8.1L9.5,17.8L11.3,11H12.6L14.4,17.8L15.8,11H17.3L15.2,20M13,9V3.5L18.5,9H13Z" /></svg>') no-repeat center center;
  background-size: contain;
  content: "";
}

.post_content .swiper {
  margin-bottom: 0;
}
.post_content .swiper .swiper-wrapper,
.post_content .swiper .swiper-button-next,
.post_content .swiper .swiper-button-prev,
.post_content .swiper .swiper-horizontal > .swiper-pagination-bullets,
.post_content .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.post_content .swiper .swiper-pagination-custom,
.post_content .swiper .swiper-pagination-fraction {
  margin-bottom: 0;
}
.post_content .swiper-wrapper {
  align-items: center;
}
.post_content .swiper-slide {
  text-align: center;
}
.post_content .swiper-button-next, .post_content .swiper-button-prev {
  margin-top: 0 !important;
  transform: translateY(-50%);
}

#body_wrap {
  min-height: 100svh;
}

body:has(#wpadminbar) #body_wrap {
  min-height: calc(100svh - 32px);
}

@media (max-width: 782px) {
  body:has(#wpadminbar) #body_wrap {
    min-height: calc(100svh - 46px);
  }
}
#body_wrap:not(.home) main#main_content {
  font-family: "Noto Sans JP", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 500;
}

.single .l-topTitleArea .c-pageTitle {
  color: #fff;
  text-shadow: none;
}

.post-type-archive-member .l-topTitleArea .c-pageTitle,
.post-type-archive-kouhou .l-topTitleArea .c-pageTitle,
.kouhou-template-default .l-topTitleArea .c-pageTitle,
.member-template-default .l-topTitleArea .c-pageTitle {
  color: #fff;
}
.post-type-archive-member .c-pageTitle,
.post-type-archive-kouhou .c-pageTitle,
.kouhou-template-default .c-pageTitle,
.member-template-default .c-pageTitle {
  text-align: center;
}
.post-type-archive-member .c-pageTitle .c-pageTitle__inner,
.post-type-archive-kouhou .c-pageTitle .c-pageTitle__inner,
.kouhou-template-default .c-pageTitle .c-pageTitle__inner,
.member-template-default .c-pageTitle .c-pageTitle__inner {
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.post-type-archive-member .kouhou_archive,
.post-type-archive-member .member_archive,
.post-type-archive-kouhou .kouhou_archive,
.post-type-archive-kouhou .member_archive,
.kouhou-template-default .kouhou_archive,
.kouhou-template-default .member_archive,
.member-template-default .kouhou_archive,
.member-template-default .member_archive {
  margin-bottom: 20px;
  text-align: right;
}
.post-type-archive-member .kouhou_bk_ttl,
.post-type-archive-kouhou .kouhou_bk_ttl,
.kouhou-template-default .kouhou_bk_ttl,
.member-template-default .kouhou_bk_ttl {
  margin-bottom: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.post-type-archive-member .kouhou_list,
.post-type-archive-kouhou .kouhou_list,
.kouhou-template-default .kouhou_list,
.member-template-default .kouhou_list {
  display: grid;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.post-type-archive-member .kouhou_list li,
.post-type-archive-kouhou .kouhou_list li,
.kouhou-template-default .kouhou_list li,
.member-template-default .kouhou_list li {
  overflow: hidden;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.post-type-archive-member .kouhou_list img,
.post-type-archive-kouhou .kouhou_list img,
.kouhou-template-default .kouhou_list img,
.member-template-default .kouhou_list img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.post-type-archive-member .kouhou_list li:hover img,
.post-type-archive-kouhou .kouhou_list li:hover img,
.kouhou-template-default .kouhou_list li:hover img,
.member-template-default .kouhou_list li:hover img {
  transform: scale(1.1);
}
@media (min-width: 600px) {
  .post-type-archive-member .kouhou_list,
  .post-type-archive-kouhou .kouhou_list,
  .kouhou-template-default .kouhou_list,
  .member-template-default .kouhou_list {
    display: grid;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.post-type-archive-member .member_archive,
.member-template-default .member_archive {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */