@charset "utf-8";
/* Generic-child-joint : main.content ONLY
    メインカラムのコンテンツブロック内にのみ適用される汎用スタイル
    各ページ共通と、ページ個別の指定があります
        【各ページ・複数ページ 共通】
　　　　・メインコンテンツ内ヘッダ・h要素・画像キャプション
　　　　・固定・最上親ページ内子ページリストレイアウト
        ・固定・子ページを持つ最上の親以外のページ内 孫ページ以下ページリスト
        ・ブロック要素（.article-body , .article-sub）
        【ページ個別】
        ・サイトマップページ
        ・お問い合わせページ
        ・メインコンテンツ - INDEX・アーカイブページ（お知らせ）ページナビ
        ・お知らせページ（投稿）共通
        ・お知らせページ（投稿）
        ・検索結果ページ（search.php）
        ・404ページ(404.php)
        【メディアクエリ】
*/
/*
    font-family: "IBM Plex Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Serif JP", serif;
*/
/* Color 
Purple :rgba(37,26,142,1.00)
Pink : rgba(251,37,118,1.00)
*/


/*【各ページ・複数ページ 共通】*/
/* メインコンテンツ内ヘッダ・h要素
------------------------------------------------------------ */
/*メインコンテンツ - メインカラム - エントリーヘッダ：entry.php - header */
main.content header {}
/*メインコンテンツ - メインカラム - エントリーヘッダ - エントリータイトル：header h1.entry-title */
/* main.content header h1.entry-title {
    border-bottom: #535353 double 3px;
    color: #535353;
    font-size: 2.25em;
    font-weight: normal;
    line-height: initial;
    margin: 0 0 1em;
    padding: 0 0 .25em;
    position: relative;
} */

/* 下層 共通 - header h1見出し --- */
main.content header.header{
    align-items: flex-start;
    display: flex;
    justify-content: center;
    line-height: 1;
    margin: 2rem 0;
}
main.content header h1{
    color: rgba(37,26,142,1.00);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.75em;
    font-weight: bold;
}
main.content header h1.entry-title a {
    color: rgba(37,26,142,1.00);
    pointer-events: none;
}
main.content header::before,
main.content header::after {
  width: 2px;
  height: 28px;
  content: "";
  background-color: rgba(37,26,142,1.00);
}
main.content header::before{
    margin-right: 1em;
    transform: rotate(30deg);
}
main.content header::after {
    margin-left: 1em;
    transform: rotate(30deg);
}


/*メインコンテンツ - メインカラム - エントリーコンテンツ - エントリーヘッダ：article.post header */
main.content article.post header {
    /* align-items: flex-start;
    display: flex;
    justify-content: center; */
    line-height: 1;
    margin: 2rem 0 0;
}
main.content article.post header h1 {
    border-top: rgba(37, 26, 142, 1.00) solid 1px;
    border-bottom: rgba(37, 26, 142, 1.00) solid 1px;
    color: rgba(37, 26, 142, 1.00);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: normal;
    padding: 1rem 0;
    position: relative;
    line-height: 1;
    margin: 2rem 0;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - エントリーコンテント：投稿内容 div.entry-content */
main.content article .entry-content {
    line-height: 170%;
    padding: 1em 0;
}


/*メインコンテンツ内 ページ内ナビ*/
main.content nav.local-menu {
    background-color: rgba(37, 26, 142,.15);
    color: #333;
    margin: 0 auto 30px auto;
    padding: 1rem 1rem 0 1rem;
    width: 100%;
}
main.content nav.local-menu ul {
    list-style: none;
    margin: 0 auto;
}
main.content nav.local-menu ul li {
    border-right: 1px solid #999;
    display: inline-block;
    font-size: .875rem;
    margin: 0 0 1rem 0;
    padding: 0 .5rem;
}
main.content nav.local-menu ul li a:link,
main.content nav.local-menu ul li a:visited,
main.content nav.local-menu ul li a:active {
    color: #333;
    display: block;
    text-decoration: none;
}
main.content nav.local-menu ul li a:hover {
    color: #333;
    display: block;
    text-decoration: underline;
}

/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
main.content .entry-content .child-page-list > ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem;
}
main.content .entry-content .child-page-list > ul > li {
    background-color: #fff;
    display: block;
    list-style: none;
    margin: 0 1%;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    transition: .3s;
    width: 31%;
}
main.content .entry-content .child-page-list > ul > li:hover {
    background-color: #f7f7f7;
}
main.content .entry-content .child-page-list > ul > li:has(span):hover{
    background-color: #fff;
}

/*アイキャッチ画像表示*/
main.content .entry-content .child-page-list > ul > li figure p.thumbnail{
    background: url("../images/front/menu/thum_archive.png") no-repeat center center;
    background-size: cover;
    height: 200px;
    margin: 2rem auto 0;
    padding: 0;
    width: 200px;
}
main.content .entry-content .child-page-list > ul > li figure p img{
    height: 200px;
    margin: 0;
    object-fit: cover;
    transition: .3s;
    width: auto;
}
main.content .entry-content .child-page-list > ul > li:hover figure p img{
    transform:scale(1.1,1.1);    
}
/*アイキャッチ画像　 - 画像未登録の場合*/
main.content .entry-content .child-page-list > ul > li figure p.thumbnail.no-thum{
    align-items: center;
    display: flex;
    justify-content: center;
}
main.content .entry-content .child-page-list > ul > li figure p.thumbnail.no-thum span.slug{
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: clamp(0.8rem, 0.818rem + 0.91vw, 2rem);
    font-style: italic;
    letter-spacing: 2px;
}
/*ハイパーリンク*/
main.content .entry-content .child-page-list > ul > li figure figcaption a ,
main.content .entry-content .child-page-list > ul > li figure figcaption span.no-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-decoration: none;
}
main.content .entry-content .child-page-list > ul > li figure figcaption span.no-link {
    color: #666;
}
/*ハイパーリンク - リンクエリア拡張*/
main.content .entry-content .child-page-list > ul > li figure a::after{
    background-color:rgba(0,0,0,0);
    content:"";
    pointer-events:auto;
    position:absolute;
        top:0;
        right:0;
        bottom:0;
        left:0;
    z-index:1;
}
/*ハイパーリンク - hover効果*/
main.content .entry-content .child-page-list > ul > li figure a::before {
    background: linear-gradient(302deg, rgba(175,173,217,0.25) 35%, rgba(255,255,255,0.25) 90%);
    content: '';
    height: 110%;
    position: absolute;
    bottom: auto;
    left: 0;
    right: auto;
    top: 0;
    transform-origin: right top;
    transform: skewX(-30deg) scale(0, 1);
    transition: transform .3s;
    width: 200%;
    z-index: 1;
}
main.content .entry-content .child-page-list > ul > li figure  a:hover::before , 
main.content .entry-content .child-page-list > ul > li figure  a:focus::before{
    transform: skewX(-30deg) scale(1, 1);
    transform-origin: left top;
}

/* 固定・子ページを持つ最上の親以外のページ内 孫ページ以下ページリスト
------------------------------------------------------------ */
.sub-child-page-list{}
.sub-child-page-list > ul:has( li ){
    align-items: flex-start;
    background-color: #f7f7f7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem 0 0 0;
    padding: 1rem 1rem 0 1rem;
}
.sub-child-page-list > ul::before , 
.sub-child-page-list > ul::after{
    content: "";
    display: block;
    width: 32%;
    height: 0;
}
.sub-child-page-list > ul::before{
    order: 1;
}
.sub-child-page-list > ul > li {
    background-color: #fff;
    border: #ddd solid 1px;
    list-style: none;
    position: relative;
    transition: .3s;
    width: 32%;
}
.sub-child-page-list > ul > li:last-child {
    margin: 0 0 1rem !important;
}
.sub-child-page-list > ul > li > a {
    display: block;
    padding: 1rem;
}
.sub-child-page-list > ul > li > a::before {
    content: '\eac9';
    font-family: 'Material Icons';
}
/*曾孫以下ページリスト表示*/
.sub-child-page-list > ul > li > ul.children{
    margin: -.5rem 0 0 0 !important;
    padding: 0 0 0 1.5rem;
}
.sub-child-page-list > ul > li > ul.children li{
    list-style: none;
    padding: 0 .5rem .5rem;
}
.sub-child-page-list > ul > li > ul.children li > a::before {
    content: '\e5da';
    font-family: 'Material Icons';
}

/* ブロック要素
div class="article-body article-sub" .article-sbody , .article-sub
---------------------------------------------------- */
.content .article-body {
	margin: 0 auto 50px auto;
	width: 100%;
}
.content .article-body .article-sub  {
	margin: 0 auto 25px auto;
	width: 100%;
}

/*【ページ個別】*/
/* サイトマップページ body.sitemap
------------------------------------------------------------ */
body.sitemap main.content .sitemap-page {
  padding: 2rem 1rem 4rem;
}

body.sitemap main.content .sitemap-page .page-title {
  font-size: 1.75rem;
  padding-left: 0.75rem;
  margin-bottom: 2.5rem;
}

/* 各カテゴリー（親ページ）ブロック */
body.sitemap main.content .sitemap-section {
  margin-bottom: 2.5rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  transition: box-shadow 0.3s ease;
}

body.sitemap main.content .sitemap-section:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 見出し（親ページ） */
body.sitemap main.content .sitemap-heading {
  font-size: 1.2rem;
  color: rgba(37,26,142,1);
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(37,26,142,0.2);
  padding-bottom: 0.5rem;
}

body.sitemap main.content .sitemap-heading a {
  color: rgba(37,26,142,1);
  text-decoration: none;
}

body.sitemap main.content .sitemap-heading a:hover {
  text-decoration: underline;
}

/* 子ページ一覧 */
body.sitemap main.content .sitemap-children {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

body.sitemap main.content .sitemap-children li {
  margin: 0;
}

body.sitemap main.content .sitemap-children li a {
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid rgba(37,26,142,0.15);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: all 0.2s ease;
}

body.sitemap main.content .sitemap-children li a:hover {
  background: rgba(37,26,142,0.08);
  color: rgba(37,26,142,1);
  border-color: rgba(37,26,142,0.4);
}




/* お問い合わせページ body.inquiry , .wpcf7
------------------------------------------------------------ */
body.inquiry main.content .entry-content .wpcf7{
    width: 100%;
}
.wpcf7 form{
    margin: 0 auto;
    width: 100%;
}
/*フォーム入力項目群*/
main.content .entry-content .wpcf7 form .mailform .form_list{
    margin: 3rem 0;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(37,26,142,0.25)  ;
    /* background: rgba(37,26,142,0.1); */
    padding: 1.5em;
    margin-bottom: 0;
    border-radius: 6px;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl dt{
    text-align: right;
    width: 10rem;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl dd{
    margin: 0;
    width: calc( 100% - 11rem );
}
main.content .entry-content .wpcf7 form .mailform .form_list input[type="checkbox"] + span{
    display: inline-block;
    padding: 0 0 0 .25rem;
}
main.content .entry-content .wpcf7 form .mailform .form_list span.required::after{
    content: "*";
    color: #f00;
    display: inline;
    padding: 0 0 0 .25em;
}
main.content .entry-content .wpcf7 form .mailform .form_list input[type="text"] , 
main.content .entry-content .wpcf7 form .mailform .form_list textarea {
    width: 100%;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl dd > span.select{
    position: relative;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl dd > span.select::after{
    color: #ddd;
    content: "\f078";
    display: inline;
    font-family: FontAwesome;
    position: absolute;
    top: calc( 50% - .5em );
    right: .5em;
}
main.content .entry-content .wpcf7 form .mailform .form_list select {
    appearance: none;
    border: #ddd solid 1px;
    border-radius: 5px;
    font-size: 1em;
    margin: 0;
    padding: .5em 2em .5em .5em;
    max-width: 100% !important;
    height: auto;
}
/*フォーム入力項目群 - 各項目毎設定*/
main.content .entry-content .wpcf7 form .mailform .form_list dl.subject input[type="text"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.affiliation input[type="text"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.address-addr input[type="text"]{
    width: 80%;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.name input[type="text"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.address-city input[type="text"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.tel input[type="tel"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.mail input[type="email"]{
    width: 60%;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.address-zip input[type="tel"] , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.address-pref input[type="text"]{
    width: 30%;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.age input[type="text"]{
    width: 15%;
}
/*フォーム入力項目群 - 個別設定*/
main.content .entry-content .wpcf7 form .mailform .form_list dl.job span:first-child select{
    margin: 0 0 .5rem;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.qualification textarea , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.motive textarea , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.pr textarea , 
main.content .entry-content .wpcf7 form .mailform .form_list dl.message textarea {
    height: 8rem;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.hotel-reserve span.wpcf7-list-item {
    display: block;
    padding: .25rem 0;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl dd
 {
    line-height: 1.8;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.address dd
 {
   line-height: 1.4;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.address dd span
 {
   display: block;
}
main.content .entry-content .wpcf7 form .mailform .form_list dl.address dd span:first-of-type
 {
   display: inline;
}

/*プライバシーチェック*/
main.content .entry-content .wpcf7 form .mailform .form_privacy{
    border: #ddd double 3px;
    margin: 2rem 0;
    padding: 1rem;
    text-align: center;
}
/*プライバシーチェック - チェックボックス*/
main.content .entry-content .wpcf7 form .mailform .form_privacy p input[type="checkbox"] {
    box-sizing: border-box;
    display: none;
    padding: 0;
}
main.content .entry-content .wpcf7 form .mailform .form_privacy p span:nth-child(2) {
    align-items: center;
    display: flex;
    position: relative;
}
main.content .entry-content .wpcf7 form .mailform .form_privacy p span:nth-child(2)::before {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 20px;
    margin: 0 .5rem 0 0;
    position: relative;
    transition: all .2s;
    width: 20px;
}
main.content .entry-content .wpcf7 form .mailform .form_privacy p span:nth-child(2)::after {
    border-left: 2px solid #dc3232;
    border-bottom: 2px solid #dc3232;
    content: '';
    height: 6px;
    margin-top: -6px;
    opacity: 0;
    position: absolute;
        left: 4px;
        top: 50%;
    transform: rotate(-45deg) scale(.5);
    transition: all .2s;
    width: 14px;
}
main.content .entry-content .wpcf7 form .mailform .form_privacy p input[type="checkbox"]:checked + span:nth-child(2)::after {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}
/*送信ボタン*/
main.content .entry-content .wpcf7 form .mailform input[type="submit"]{
    transition: .3s;
}
main.content .entry-content .wpcf7 form .mailform .btn{
    text-align: center;
}
main.content .entry-content .wpcf7 form .mailform .btn a{
    /* color: #333;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    background-color: #FFF;
    transition: .3s;
    max-width: 20em;
    padding: 6px;
    width: 8em;
    height: 2.4em;
    min-height: initial; */
}
main.content .entry-content .wpcf7 form .mailform .btn:hover {
    
}
/* メインコンテンツ - INDEX・アーカイブページ（お知らせ）ページナビ
-------------------------------------------------------------------- */
/* ページネーション全体 */
.pagination {
  width: 100%;
  overflow: hidden;
  margin: 2em 0 .5em;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25em;
}

/* ページ番号・矢印ボタン */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: #f7f7f7 solid 1px;
  padding: .25em .5em;
  text-decoration: none;
  color: inherit;
  min-width: 2em;
  height: 2em;
  box-sizing: border-box;
  transition: background-color 0.2s, color 0.2s;
}

/* 現在のページ */
.pagination .page-numbers.current {
  background-color: #f7f7f7;
  color: rgba(37,26,142,1.0);
  font-weight: bold;
}

/* ホバー時 */
.pagination .page-numbers:hover {
  background-color: rgba(37,26,142,0.1);
  color: rgba(37,26,142,1.0);
}

/* 省略記号 (…) */
.pagination .page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
  color: rgba(37,26,142,1.0);
}



/* 総件数テキスト */
.pagination-txt {
  color: #000;
  text-align: center;
  margin-top: .5em;
}


/* お知らせアーカイブページ（投稿）共通
body.blog（お知らせ INDEX）
body.archive（お知らせ カテゴリ・アーカイブ）
------------------------------------------------------------ */
/* お知らせ一覧 */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
}

.news-item {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 0 2rem 1rem 0;
  transition: background 0.2s ease;
  margin-bottom: 0!important;
}

.news-item:hover {
  background: #f9f9f9;
}

.news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* 日付＋カテゴリ（1行目） */
.news-meta {
  font-size: 0.9rem;
  color: #666;
  display: flex;
   align-items: center; 
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}

/* タイトル（2行目） */
main.content .news-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  margin: 0;
  padding-right: 1.5rem; /* 右端のアイコン分の余白 */
  margin-top: 1.5rem;  
}
/* タイトル（2行目） パスワード保護 */
main.content .news-title span.news-protected{
  font-size: .857rem;
  color: rgba(251,37,118,.50);
  padding-right: .5rem; 
}


/* 右端の ＞ アイコン */
.news-item::after {
  content: "›"; /* シンプルな右向き矢印 */
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(37, 26, 142, 1.0);
  transition: transform 0.2s ease, color 0.2s ease;
}

.news-item:hover::after {
  color: rgba(37, 26, 142, 1.0);
  transform: translateY(-50%) translateX(2px);
}

/* カテゴリカラー調整（必要なら） */
.news-category {
  display: inline-block;
  border: 1px solid rgba(37, 26, 142, 1.0);
  color: rgba(37, 26, 142, 1.0);
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1; 
  border-radius: 3px;
  white-space: nowrap;
}


/*お知らせカテゴリ*/
body.blog main.content article .entry-meta .category ,
body.archive main.content article .entry-meta .category {
    background-color:rgba(255,255,255,1.00);
    border: rgba(37,26,142,1.00) solid 1px;
}
body.blog main.content article .entry-meta .category.important ,
body.archive main.content article .entry-meta .category.important {
    background-color:rgba(255,255,255,1.00);
    border: rgba(251,37,118,1.00) solid 1px;
}
/*投稿ページ */
body.single main.content .entry-content {
    line-height: 160%;
    padding: 1rem 0;
}
body.single main.content p {
    font-size: 1rem;
    line-height: 160%;
    margin: 1rem 0;
}
/*投稿ページ 日付*/
body.single main.content article .entry-meta{
    /* background-color: #f7f7f7; */
    line-height: 100%;
    margin: 1rem 0;
    /* padding: 1rem ; */
    text-align: right;
}
/*entry-meta内 カテゴリ・投稿者非表示*/
body.single main.content article .entry-meta .category,
body.single main.content article .entry-meta .author,body.single main.content article .entry-meta .meta-sep{
    display: none;
}
/*投稿ページ エントリーフッタ*/
body.single main.content article .entry-footer{
    border-bottom: #ddd dotted 1px;
    border-top: #ddd dotted 1px;
    margin: 1rem 0;
    padding: 1rem;
    text-align: right;
}
/*投稿ページ カテゴリ デフォルト（お知らせ）*/
body.single main.content article .entry-footer .category{
    background-color:rgba(25,68,142,.15);
    border: rgba(25,68,142,.50) solid 1px;
    border-radius: 5px;
    color: #666;
    display: inline-block;
    padding: .25em 1rem;
}
/*投稿ページ カテゴリ お知らせ - 重要なお知らせ*/
body.single main.content article .entry-footer .category.important{
    background-color:rgba(251,37,118,.25);
    border: rgba(251,37,118,.25) solid 1px;
}
body.single-archives main.content article .entry-footer span.category:first-of-type{
    display: none;
}

/*投稿ページ 記事下ページャー（前へ・次へ）*/
body.single main.content footer .nav-links::after {
    content: "";
    clear: both;
    display: block;
}
body.single main.content footer .nav-links .nav-previous a , 
body.single main.content footer .nav-links .nav-next a{
    align-items: center;
    border:#f7f7f7 solid 1px;
    display: inline-flex;
    justify-content: space-around;
    height: 100%;
    margin: 0 .25em;
    padding: .25em .75em;
    text-decoration: none;
}
body.single main.content footer .nav-links .nav-previous a::before{
    content: "\e314";
    font-family: 'Material Icons';
    padding: 0 .25em 0 0;
}
body.single main.content footer .nav-links .nav-next a::after{
    content: "\e315";
    font-family: 'Material Icons';
    padding: 0 0 0 .25em;
}

/* お知らせページ（投稿）
body.blog（お知らせINDEX）
body.archive（お知らせ カテゴリ・アーカイブ）
body.single（お知らせ 投稿ページ）
------------------------------------------------------------ */

/* 検索結果ページ（search.php）
body.search-results（検索結果）
------------------------------------------------------------ */
/*検索結果一覧表示*/
body.search-results .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.search-results .news-item {
  border-bottom: 1px solid #ddd;
}

body.search-results .news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

body.search-results .news-meta {
  margin-bottom: 0.5rem;
}

body.search-results .news-category {
  display: inline-block;
  border: 1px solid rgba(37,26,142,1);
  color: rgba(37,26,142,1);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

body.search-results .news-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

body.search-results .news-excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
body.search-results mark {
  background-color: rgba(116, 45, 169,.25);
  color: inherit;
  font-weight: bold;
  padding: 0 2px;
}

/* 404ページ(404.php) */
.error-404 {
  text-align: center;
  padding: 4rem 1rem;
}

.error-404 .archive-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: rgba(37,26,142,1.0);
}

.error-404 .page-content p {
  color: #555;
  margin-bottom: 2rem;
}

.error-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.error-links a {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.error-links a:hover {
  background-color: rgba(37,26,142,0.1);
  color: rgba(37,26,142,1.0);
  border-color: rgba(37,26,142,1.0);
}

.error-search {
  margin-top: 2rem;
}

.error-search p {
  margin-bottom: 0.5rem;
  color: #666;
}



/*【メディアクエリ】*/
@media(max-width:1260px) {
}

@media(max-width:1024px) {
/*【各ページ・複数ページ 共通】*/
/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
    main.content .entry-content .child-page-list > ul::before ,
    main.content .entry-content .child-page-list > ul::after{
        display: none;
    }
    main.content .entry-content .child-page-list > ul >li {
        width: 48%;
    }
}
@media(min-width:769px) {}
@media(max-width:768px) {
/*【各ページ・複数ページ 共通】*/
/* メインコンテンツ内ヘッダ・h要素
------------------------------------------------------------ */
    /*メインコンテンツ - メインカラム - エントリーヘッダ - エントリータイトル：header h1.entry-title */
    main.content header h1.entry-title {
        font-size: 1.75em;
    }
/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
    main.content .entry-content .child-page-list > ul::before ,
    main.content .entry-content .child-page-list > ul::after{
        display: none;
    }
    main.content .entry-content .child-page-list > ul >li figure p.thumbnail{
        margin: 0 auto;
        width: 35%;
    }
    main.content .entry-content .child-page-list > ul >li figure p img{
        height: 100%;
        width: 100%;
    }

/* 固定・子ページを持つ最上の親以外のページ内 孫ページ以下ページリスト
------------------------------------------------------------ */
    .sub-child-page-list{}
    .sub-child-page-list > ul:has( li ) {
        margin: 2rem auto ;
        padding: .5rem;
        width: 96%;
    }
    .sub-child-page-list > ul {
        margin: 0;
        padding: 0;
    }
    .sub-child-page-list > ul::before , 
    .sub-child-page-list > ul::after {
        display: none;
    }
    .sub-child-page-list > ul > li {
        margin: 0 0 .5rem !important;
        width: 100%;
    }
    .sub-child-page-list > ul > li:last-child {
        margin: 0  !important;
    }    
    
/* ブロック要素
div class="article-body article-sub" .article-sbody , .article-sub
---------------------------------------------------- */
    .content .article-body {
        margin: 0 auto 25px auto;
    }
    .content .article-body .article-sub  {
        margin: 0 auto 12.5px auto;
    }
    
/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
    main.content .entry-content .child-page-list > ul >li {
        padding: 2rem;
        width: 100%;
    }
    
/*【ページ個別】*/

/* サイトマップページ body.sitemap , ul.wsp-pages-list
------------------------------------------------------------ */
    body.sitemap main.content .entry-content .wsp-pages-list > li > ul >li {
        width: 100%;
    }
    
/* お問い合わせページ body.inquiry , .wpcf7
------------------------------------------------------------ */
    .wpcf7 form{
        margin: 0 ;
        width: 100%;
    }
}
@media(max-width:767px) {}
@media(max-width:576px) {
/*【各ページ・複数ページ 共通】*/
/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
    main.content .entry-content .child-page-list > ul >li figure{
    }
    main.content .entry-content .child-page-list > ul >li figure p.thumbnail{
        margin: 0 auto;
        width: 200px;
    }
    
/*【ページ個別】*/
/* お問い合わせフォーム body.inquiry .wpcf7
------------------------------------------------------------ */
    main.content .entry-content .wpcf7 form .mailform .form_list dl dt , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl dd{
        width: 100%;
    }
    main.content .entry-content .wpcf7 form .mailform .form_list dl dt{
        text-align: left;
    }
    /*フォーム入力項目群 - 各項目毎設定*/
    main.content .entry-content .wpcf7 form .mailform .form_list dl.subject input[type="text"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.affiliation input[type="text"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.address-addr input[type="text"]{
        max-width: 80%
    }
    main.content .entry-content .wpcf7 form .mailform .form_list dl.name input[type="text"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.address-city input[type="text"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.tel input[type="tel"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.mail input[type="email"]{
        max-width: 60%;
    }
    main.content .entry-content .wpcf7 form .mailform .form_list dl.address-zip input[type="tel"] , 
    main.content .entry-content .wpcf7 form .mailform .form_list dl.address-pref input[type="text"]{
        max-width: 30%;
    }
    main.content .entry-content .wpcf7 form .mailform .form_list dl.age input[type="text"]{
        max-width: 15%;
    }
    /*フォーム入力項目群 - 個別設定*/
    main.content .entry-content .wpcf7 form .mailform .form_list dl.birth input[type="number"]{
        max-width: 25%;
    }
}
@media(max-width:420px) {}
@media(max-width:350px) {
/*【各ページ・複数ページ 共通】*/
/* 固定・最上親ページ内子ページリストレイアウト
-------------------------------------------------------------------- */
    main.content .entry-content .child-page-list > ul >li figure p.thumbnail{
        width: 160px;
    }
}