@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
*/以下デザインの編集

/* ナビゲーションバーのスタイル */
.main-navigation {
  background-color: #333; /* 背景色 */
  padding: 10px 0; /* 上下のパディング */
}

.main-navigation .menu {
  list-style: none; /* リストのスタイルを消す */
  margin: 0;
  padding: 0;
  text-align: center; /* 中央寄せ */
}
@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
*/

/* ========================
   サイト全体共通スタイル
   ======================== */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================
   記事カード関連
   ======================== */
.p-postList__link {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.p-postList__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.-ps-style-img .p-postList__link, 
.-type-thumb .p-postList__link, 
.p-postList__thumb {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    z-index: 0;
}

.p-postList__link {
    display: block;
    height: 100%;
}

.p-postList__thumb .c-postThumb__figure img {
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.p-postList__link:hover .p-postList__thumb .c-postThumb__figure img {
    transform: scale(1.05);
}

.p-postList__body {
    padding: 16px;
}

.p-postList__author {
    color: #3674B5;
    font-weight: 500;
}

/* ========================
   サイドバー関連
   ======================== */
.l-sidebar {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.c-widget {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.c-widget h2, 
.wp-block-heading,
.c-widget .wp-block-group__inner-container h2 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    color: #333;
}

.c-widget h2:before,
.wp-block-heading:before {
    font-family: "Font Awesome 5 Free";
    margin-right: 8px;
    margin-bottom: 2.4px;
    font-weight: 900;
    color: #002569;
}

/* 検索ウィジェット */
.widget_block.widget_search {
    padding: 15px;
}

.wp-block-search__inside-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.wp-block-search__inside-wrapper:focus-within {
    border-color: #007cba;
}

.wp-block-search__input {
    border: none !important;
    padding: 12px 15px;
    font-size: 14px;
}

.wp-block-search__button {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 0 15px;
    transition: background-color 0.3s ease;
}

.wp-block-search__button:hover {
    background-color: #005a8b;
}

/* 最近の投稿 */
.wp-block-latest-posts__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.wp-block-latest-posts__list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.wp-block-latest-posts__list li:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding-left: 8px;
    padding-right: 8px;
}

.wp-block-latest-posts__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wp-block-latest-posts__post-title {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.wp-block-latest-posts__post-title:hover {
    color: #007cba;
}

/* 最近のコメント */
.wp-block-latest-comments {
    margin: 0;
    padding: 0;
}

.wp-block-latest-comments__comment {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    transition: background-color 0.3s ease;
}

.wp-block-latest-comments__comment:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding-left: 8px;
    padding-right: 8px;
}

.wp-block-latest-comments__comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* アーカイブとカテゴリー */
.wp-block-archives-list,
.wp-block-categories-list {
    margin: 0;
    padding: 0 !important;
    list-style: none;
}

.wp-block-archives-list li,
.wp-block-categories-list li {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
}

.wp-block-archives-list li:last-child,
.wp-block-categories-list li:last-child {
    margin-bottom: 0 !important;
}

.wp-block-archives-list li a,
.wp-block-categories-list li a {
    display: block;
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wp-block-archives-list li a:hover,
.wp-block-categories-list li a:hover {
    color: #007cba;
    border-color: #007cba;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.2);
}

/* ========================
   プロフィールボックス
   ======================== */
.widget_swell_prof_widget {
    background: linear-gradient(135deg, #578FCA 0%, #4a7bb7 100%);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(87, 143, 202, 0.3);
}

.p-profileBox { 
    background-color: #d1f8ef; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23a1e3f9' fill-opacity='0.54'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v4H0v-4zm0-8h31v4H0v-4zm20-16h20v4H20v-4zM0 56h40v4H0v-4zm63-25a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM53 41a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-30 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-28-8a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zM56 5a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zm-3 46a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM21 0l5 20H16l5-20zm43 64v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM36 13h4v4h-4v-4zm4 4h4v4h-4v-4zm-4 4h4v4h-4v-4zm8-8h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 12px;
    padding: 20px;
}

/* ========================
   ナビゲーション
   ======================== */
.main-navigation {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navigation .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.main-navigation .menu li {
    display: inline-block;
    margin: 0 25px;
}

.main-navigation .menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-navigation .menu li a:hover {
    background-color: #555;
    transform: translateY(-1px);
}

/* ========================
   ヘッダー固定（PCのみ）
   ======================== */
@media screen and (min-width: 960px) {
    .l-fixHeader {
        display: none;
    }

    .l-header {
        position: sticky;
        position: -webkit-sticky;
        top: var(--swl-adminbarH, 0);
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

/* ========================
   検索フォーム
   ======================== */
.custom-search-form .search-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 6px 6px 6px 16px;
    background-color: #fff;
    max-width: 350px;
    margin: 10px auto;
    width: 100%;
    transition: border-color 0.3s ease;
}

.custom-search-form .search-wrapper:focus-within {
    border-color: #007cba;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 10px;
    background: transparent;
    color: #333;
}

.search-input::placeholder {
    color: #aaa;
}

.search-button {
    background: #007cba;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background: #005a8b;
}

.wp-block-search {
    position: relative;
}

.wp-block-search__label {
    display: none;
}

.wp-block-search__input {
    width: 100%;
    height: 45px;
    padding-left: 45px !important;
    font-size: 14px;
    border-radius: 8px !important;
}

.wp-block-search:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #002569;
    z-index: 1;
    font-size: 16px;
}

/* ========================
   アイコン設定
   ======================== */
.search-heading:before {
    content: "\f002" !important;
}

.archive-heading:before {
    content: "\f187" !important;
}

.category-heading:before {
    content: "\f07b" !important;
}

.calendar-heading:before {
    content: "\f073" !important;
}

.comment-heading:before {
    content: "\f086" !important;
}

.search-heading i.fa-solid,
.calendar-widget h2 i.fas {
    display: none;
}

/* ========================
   プロフィールボックスのレスポンシブ
   ======================== */
/* PCでは2列表示 */
@media (min-width: 769px) {
    .swell-block-profile {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
    .swell-block-profile .p-profileBox {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

/* スマホでは1列表示 */
@media (max-width: 768px) {
    .swell-block-profile .p-profileBox {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .main-navigation .menu li {
        margin: 0 15px;
    }
    
    .main-navigation .menu li a {
        font-size: 14px;
        padding: 6px 10px;
    }
}

/* ========================
   その他の要素
   ======================== */
.p-mainVisual__slideTitle {
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.l-articleBottom__title.c-secTitle {
    font-weight: bold;
    line-height: 1.6;
    color: #333;
}

.l-articleBottom__section.-author ul {
    list-style: none;
    padding-left: 0;
}

/* ========================
   スクロールバー（Webkit系ブラウザ）
   ======================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.main-navigation .menu li {
  display: inline-block; /* 横並び */
  margin: 0 20px; /* メニュー項目間のスペース */
}

.main-navigation .menu li a {
  color: #fff; /* テキストの色 */
  text-decoration: none; /* アンダーラインを消す */
  font-size: 16px; /* フォントサイズ */
  padding: 5px 10px; /* パディング */
}

.main-navigation .menu li a:hover {
  background-color: #555; /* ホバー時の背景色 */
}

/* PCでは2列表示 */
@media (min-width: 769px) {
  .swell-block-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .swell-block-profile .p-profileBox {
    width: 48%;
    margin-bottom: 20px;
  }
}

/* スマホでは1列表示 */
@media (max-width: 768px) {
  .swell-block-profile .p-profileBox {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* フッターサイトマップ */
.footer-sitemap-wp2025 {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 10px;
}

.footer-sitemap-section {
  margin-bottom: 30px;
  padding: 20px 0;
}

.footer-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-sitemap-category-title {
  color: #FF6B35;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 3px solid #FF6B35;
  padding-bottom: 8px;
  margin-top: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sitemap-list li {
  margin-bottom: 10px;
}

.footer-sitemap-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  border-left: 3px solid transparent;
}

.footer-sitemap-list a:hover {
  color: #FF6B35;
  text-decoration: none;
  background: rgba(255,107,53,0.2);
  border-left-color: #FF6B35;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid #4a5568;
  padding-top: 25px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.footer-logo-section {
  text-align: left;
}

.footer-logo {
  color: #FF6B35;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 8px 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-tagline {
  color: #ecf0f1;
  font-size: 15px;
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}

.footer-contact-info {
  text-align: center;
}

.footer-contact-info p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin: 8px 0;
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: #ecf0f1;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

/* レスポンシブ対応 */

/* タブレット (768px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .footer-sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-logo-section,
  .footer-contact-info,
  .footer-copyright {
    text-align: center;
  }
  
  .footer-sitemap-list a {
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* モバイル (767px以下) */
@media screen and (max-width: 767px) {
  .footer-sitemap-container {
    padding: 0 15px;
  }
  
  .footer-sitemap-section {
    padding: 15px 0;
  }
  
  .footer-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-sitemap-category-title {
    font-size: 17px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom-width: 2px;
  }
  
  .footer-sitemap-list a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    padding-top: 20px;
  }
  
  .footer-logo-section,
  .footer-contact-info,
  .footer-copyright {
    text-align: center;
  }
  
  .footer-logo {
    font-size: 22px;
  }
  
  .footer-tagline {
    font-size: 14px;
  }
  
  .footer-contact-info p {
    font-size: 14px;
    margin: 6px 0;
    padding: 4px 8px;
  }
  
  .footer-copyright p {
    font-size: 13px;
  }
}

/* 極小画面 (480px以下) */
@media screen and (max-width: 480px) {
  .footer-sitemap-container {
    padding: 0 12px;
  }
  
  .footer-sitemap-category-title {
    font-size: 16px;
  }
  
  .footer-sitemap-list a {
    font-size: 13px;
    padding: 5px 8px;
  }
  
  .footer-logo {
    font-size: 20px;
  }
  
  .footer-tagline {
    font-size: 13px;
  }
  
  .footer-contact-info p {
    font-size: 13px;
    margin: 5px 0;
    padding: 3px 6px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
}