@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ブログ用エディタ（クラシックエディタ）のカスタマイズ（2024-01-15mk）
※クラシックエディタではグローバルスタイルが読み込めないため、「ブログ専用」クラスを別に用意することとした
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
* + [class*="blog-h"]{
    margin-top: 30px;
}

.blog-h_large_a {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--main,#888);
}

.blog-h_large_b {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}

.blog-h_large_b::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
	background-color: var(--main,#888);
    position: absolute;
    bottom: 0px;
    left: calc(50% - 25px);
}

.blog-h_middle_a {
    font-size: 20px;
    font-weight: bold;
	padding: 10px 10px 10px 15px;
    margin-bottom: 15px;
    border-left: 8px solid var(--main,#888);
}

.blog-h_middle_b {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    margin-bottom: 15px;
    color: #ffffff;
    background-color: var(--main,#888);
}

.blog-basic_btn01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    text-align: center;
    padding: 15px 30px;
    background-color: var(--main,#888);
    color: #ffffff;
    transition: all 0.5s ease;
	position: relative;
}

.blog-basic_btn01:hover, 
.blog-basic_btn01:active, 
.blog-basic_btn01:focus {
    color: #ffffff;
}

.blog-basic_btn01:hover {
    opacity: 0.8;
}

.blog-basic_btn01::after {
    font-family: "icomoon";
    content: '\e917';
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: calc(50% - .5em);
    line-height: 1;
    right: 0;
}

.blog-basic_btn02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 10px 10px 25px;
    color: var(--main,#888);
    transition: all 0.5s ease;
	position: relative;
}

.blog-basic_btn02:hover {
    opacity: 0.7;
}

.blog-basic_btn02::before {
    font-family: "icomoon";
    content: '\e038';
    font-size: 18px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: calc(50% - .5em);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
css変数
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
	--slick_side_margin:15px;/*slik内の要素の左右の余白。*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用css > 文章に制限をかける
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*文章を1行に制限*/
.cmn_limit_txt01{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*文章を複数行に制限*/
.cmn_limit_txt02{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;/*2行*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
top > カルーセル（共通）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[id*="carousel"] .slick-slider .slick-list {
    overflow: visible;
}

[id*="carousel"] .slick-slider .slick-slide {
    margin:0 var(--slick_side_margin)!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用 > カルーセル（全画面）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_carousel_full .slick-slider .slick-list {
	margin-left: calc(var(--slick_side_margin) * -1);
}

/*矢印*/
.cmn_carousel_full .slick-next {
    right: var(--slick_side_margin);
}

.cmn_carousel_full .slick-prev {
    left: auto;
    right: 70px;
}

.cmn_carousel_full :is(.slick-prev, .slick-next) {
    top: -70px;
    width: auto;
    height: auto;
}

.cmn_carousel_full :is(.slick-prev, .slick-next)::before {
    content: '\ea3c'!important;
    font-family: "icomoon";
    font-size: 17px;
    font-weight: normal;
    color: var(--main)!important;
	width: 45px;
    height: 45px;
    border: 2px solid var(--main);
    border-radius: 50%;
	display: flex;
    justify-content: center;
    align-items: center;
}

.cmn_carousel_full .slick-prev::before{
	transform: scale(-1, 1);
}

.cmn_carousel_full :is(.slick-prev,.slick-next):not(.slick-disabled):before {
    opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用 > カルーセル（2カラム）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_carousel_2col .area_b {
    overflow-x: clip;
}

/*矢印*/
.cmn_carousel_2col :is(.slick-prev,.slick-next) {
    width: auto;
    height: auto;
    top: calc(100% + 40px);
    z-index: 1;
}

.cmn_carousel_2col .slick-prev{
	left: 0;
}

.cmn_carousel_2col .slick-next {
	right: 0;
}

.cmn_carousel_2col :is(.slick-prev,.slick-next):before {
    content: '\e917'!important;
    font-size: 45px;
    font-family: 'icomoon';
    display: block;
	color: var(--main)!important;
}
.cmn_carousel_2col :is(.slick-prev,.slick-next):not(.slick-disabled):before{
    opacity: 1;
	
}

.cmn_carousel_2col .slick-prev:before {
    transform: scale(-1, 1);
}

/*インジケーター*/
.cmn_carousel_2col ul.slick-dots {
	bottom: -40px;
}

.cmn_carousel_2col .slick-dots li button:before {
    color: #a0a0a0;
    opacity: 1;
    font-size: 10px;
}

.cmn_carousel_2col .slick-dots li.slick-active button:before {
    color: var(--main);
    opacity: 1;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お問い合わせフォーム　＞　郵便番号自動入力（zipaddr-jp）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 「ハイフンなしで入力！」というメッセージが邪魔だったので非表示に2024-02-19mk */
div#autozip {
    display: none!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お問い合わせフォーム　＞　入力内容確認画面　hCaptcha(2023-04-11mkw)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.g-recaptcha{
	text-align:center;
	margin-top: 30px!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　＞　メインナビゲーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* main.min.cssの記述により、Elementsで追加したブロックのリンクのフォントサイズや太さが反映されないため追加（2024-06-24 kami） */
.main-navigation a {
    font-size: inherit;
    font-weight: inherit;
}

/* カレント */
body:is(.single-post, .category, .tag) .inside-navigation ul:not(.sub-menu) li.news a {
	color: var(--main);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーメニューのカスタマイズ(2023-03-13mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ハンバーガーの直接の親要素のマージン／パディングを除く2023-11-06mk */
:has(>.my_hamburger) {
    padding: 0!important;
}

/*display:block;で出し分けるとtransitionが効かないため動きの切り替わりが不自然。opacityとvisiblityで出し分けるように変更(2023-04-13)og*/
nav#generate-slideout-menu:not(.is-open){
	visibility: hidden;
	opacity: 0;
	display: block;
}

nav#generate-slideout-menu.is-open{
	visibility: visible;
	opacity: 1;
}

/* オフキャンバスメニュー表示時（オフキャンバスを閉じた途端に、BODYのスクロールが表示されてガタつくのをどうにかしたい…） */
body.offside-js--is-open{
	overflow: hidden;
}

/*全画面になった際にがガク付く動きを制御(2023-03-15og)*/
/*JSでスクロールバーの横幅を取取得(2023-03-16)og*/
body.offside-js--is-open.pc,
body.offside-js--is-open.pc #generate-slideout-menu{
	padding-right: var(--my_scrollbar_w , 17px);
}

body.offside-js--is-open.pc nav#generate-slideout-menu .my_hamburger{
	margin-right:var(--my_scrollbar_w , 17px);
}

/* デフォを隠す */
.pc nav.main-navigation .menu-bar-items,
.sp nav#mobile-header button.menu-toggle,
nav#generate-slideout-menu button.slideout-exit {
    /* display:none; */
}

nav#generate-slideout-menu .my_hamburger {
    top: 0;
    right: 0;
}

.pc nav#generate-slideout-menu .my_hamburger {
    position: fixed;
}

.sp nav#generate-slideout-menu .my_hamburger {
    /* position: absolute; */
}

.my_hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pc .my_hamburger {
	order:1;
    width: 90px;
    height: 90px;
}

.sp .my_hamburger {
    width: 60px;
    height: 60px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿アーカイブ　＞　各アイテムの不要な空白を除去(2022-12-12mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main .type-post {
    padding-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォントのスタイル デフォルト設定など
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html {
    font-size: 10px;
}

body {
	overflow-x: hidden; /*指定しないとはみ出る*/
}

/*フォントについてはカスタマイザーで設定するrt*/
/*
body,input, textarea, keygen, select, button, .gothic {
    font-family: 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "Osaka", "MS Pゴシック", "MSゴシック", Helvetica, verdana, arial;
    font-weight: 500;
    letter-spacing: 0.025em;
	line-height: 1.8;
}
*/

.mincho {
    font-family: "my_mincho", serif;
    letter-spacing: 0.05em;
    font-weight: normal!important;
}

h1, h2, h3, h4, h5, h6{
	/* 見出しはデフォで太字にする(2022-09-02)mk */
	/* font-weight: 500; */
	line-height: 1.6;
}

/* ブロックエディタのデフォUL/OLの開放（2024-01-16mk） */
/* クラス指定の無いリストのスタイル（無装飾を想定）2024-01-12mk */

ol,ul{
	margin-left:0;
}

.wp-block-post-content .block-editor-block-list__block {
	/* ↓autoを書かないと、エディタ上で左に寄ってしまう2024-01-19mk */
	/*margin-left: auto!important;
	margin-right: auto!important;*/
}

/* サイバーの独自定義ではないリスト */
:is( ul[class*="block-editor"]:not([class*="_list"]), ol[class*="block-editor"]:not([class*="_list"]), ul:not([class]), ol:not([class]) ) {
/* ol:is(.wp-block-list,:not([class])), ul:is(.wp-block-list,:not([class])) { */
	/*リストが外に飛び出るのを防ぐ(2023-04-04)og*/
	/* list-style-position: inside; */
	/* margin: 0 0 1.5em 0.5em;*//*2カラム表示にするとmargin-bottomに不要な余白が生じるため下記に変更(2023-10-24)mkw */
	/* margin: 0 0 0 0.5em; */
	padding-left: 1.5em;
}

/* クラス指定の無いリストアイテムに下マージンをつける（無装飾を想定）2024-01-12mk */
:is( ul[class*="block-editor"]:not([class*="_list"]), ol[class*="block-editor"]:not([class*="_list"]), ul:not([class]), ol:not([class]) ) > li:not(:last-child) {
/* ol:is(.wp-block-list,:not([class])) > li:not(:last-child), ul:is(.wp-block-list,:not([class])) > li:not(:last-child) { */
	margin-bottom: 1em;
}

/* サイバーの独自定義リスト */
:is( ul[class*="_list"], ol[class*="_list"] ) {
	list-style-type: none;
}

/* コンテンツの中の画像 */
.entry-content .wp-block-image {
    margin-top: 0;
    margin-bottom: 0;
}

/* ポップアップ */
#tel_lb {
    display: none;
}

/*検索虫眼鏡アイコンの重複非表示*/
span.gp-icon.icon-search::before {
    display: none;
}

/* コメントエリア */
.comments-area {
    display: none;
}

/* リキャプチャバッジ非表示 */
.grecaptcha-badge {
	visibility: hidden!important;
}

/* ギャラリー > 虫眼鏡アイコン */
.wp-block-gallery a::after {
    font-size: 2.4rem;
    font-family: "icomoon";
    content: '\e905';
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    text-shadow: none;
    background-color: rgba(0, 0, 0, .6);
    padding: 3px;
}

/* ギャラリー > 最後の要素のサイズ調整 */
.wp-block-gallery.has-nested-images figure.wp-block-image{
	flex-grow:0;
}

.wp-block-gallery figure.wp-block-image:not(#individual-image){
	aspect-ratio: 3 / 2;
}

/* トップページのみカスタマイズの上下パディング無効 */
body.home div#content {
    padding-top: 0;
    padding-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
スタイル変化時のアニメーション(2023-04-20)og追加
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a,
li{
	transition: all 0.2s ease;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SANGOタブの初回表示の不具合(2023-04-03RT)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.post-tab__content {
	display: none;
}
.post-tab__content.tab-active {
	display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
「コンテナリンク」のz-indexがデフォで999に設定されており、固定ナビ等より上に被ってしまったため、矯正(2022-10-07mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gb-container-link {
    z-index: 2;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
lity（動画や画像のポップアップ）2022-06-07mk
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 固定ヘッダーに負けてしまわないために記述 */
.lity {
  z-index: 10000!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
カバーブロックを入れたときにデフォルトで入るpaddingとmarginの削除（2024-06-28 kami）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.entry-content .wp-block-cover {
	margin: 0;
	padding: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Gutensliderが自動で周囲にpaddingをつけるため削除（2024-06-28 kami）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Gutensliderに入る周りの余白削除 */
.wp-block-eedee-gutenslider__content {
	padding: 0!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
slickスライダー　×　クエリーループ　(2022-06-10mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 「!important」は、クエリーループのCSSに負けてしまわないための記述 */
.slick-dots li{
    width: 20px!important;
}
.slick-prev:before,
.slick-next:before{
    color: #000!important;
}
.slick-slide{
    margin:0 5px!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
noimageの時の画像サイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[style*="noimage"] {
    background-size: 30%!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*ヘッダーロゴ*/
body.home h1.site-logo {
    font-size: 0;
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　>　ハンバーガーメニュー中身　（PC・スマホ共通）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#generate-slideout-menu {
    height: 100%;
	padding-bottom: 10%;
}

#generate-slideout-menu .inside-navigation {
    padding: 10% 0 0!important;
}

#generate-slideout-menu li.menu-item {
    margin-bottom: 0!important;
    border-top: 1px solid #ddd;
}

#generate-slideout-menu li.menu-item:last-child {
    border-bottom: 1px solid #ddd;
}

#generate-slideout-menu li.menu-item a {
    font-weight: bold;
    display: block;
    text-align: left;
    font-size: 1.6rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

#generate-slideout-menu li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    position: relative;
}

#generate-slideout-menu ul.sub-menu {
    top: 0!important;
    opacity: 1!important;
}

#generate-slideout-menu ul.sub-menu li {
    background: var(--base-1);
}

#generate-slideout-menu ul.sub-menu li:last-child {
    border-bottom: none;
}

#generate-slideout-menu .main-nav ul.sub_menu a {
    font-size: 1.5rem;
}

#generate-slideout-menu .menu-item-has-children .dropdown-menu-toggle {
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

#generate-slideout-menu .menu-item-has-children .dropdown-menu-toggle span {
    position: absolute;
    right: 0;
    top: calc(50% - .5em);
    padding: 0 20px;
    font-size: 2rem;
}

/* 自前でアコーディオンさせる事になったため追加(2023-03-14mk) */
#generate-slideout-menu .menu-item-has-children .dropdown-menu-toggle.active span {
	transform:rotate(180deg);
}

/* ログインアイコン */
nav#generate-slideout-menu .other_link2 a {
    border: none;
    padding: 5px 10px;
    font-size: 1.2rem;
    display: inline;
}

nav#generate-slideout-menu .other_link2 > a:not(:last-child) {
    border-right: 1px solid #151515;
}

/* 検索窓 */
nav#generate-slideout-menu .side_search {
    margin-top: 1em;
	/*アイフォンのみ　検索窓が丸く変わってしまう事があるため追加2022-08-31og*/
	-webkit-appearance: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ピックアップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pickup_navi {
	display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップページ > プロモ下の新着記事
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*投稿タイトルが長い場合に文末を...にする(2023-04-28)og*/
.top_post_list .ttl{
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 100%;
	display: inline-block;
}

/* 固定ページのアイキャッチは非表示（Yoast） */
body.page .featured-image {
    display: none;
}

/*コンテンツ*/
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
    margin-top: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
タイムライン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sgb-tl-item__main {
    font-size: 1em;
}

.sgb-tl-item__marker {
    border: 3px solid var(--main);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SANGO Gutenberg　＞　SANGOハイライト
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media screen and (min-width: 376px){
/* 376pxより大きい幅の場合に適応される */
  .br_pc::after {
    content:'\A';
    white-space:pre;
  }
}

@media screen and (max-width: 375px){
/* 375pxまでの幅の場合に適応される */
  .br_sp::after {
    content:'\A';
    white-space:pre;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ブログの目次 TOCレイアウト整え
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#toc_container {
	padding: 0 30px 0px;
	background: none;
	border: 1px solid var(--base-1);
	margin: 0 auto;
	box-shadow: none;
}

#toc_container p.toc_title+ul.toc_list{
	margin-left:0;
	margin-top:0;
	padding-top:15px;
	padding-bottom:30px;
	border-top:1px dashed var(--base-1);
}

#toc_container li {
	margin: 0px 0px;
	font-size: 16px;
}

#toc_container p.toc_title{
	display:block;
	font-size:24px;
	line-height: 3;
}

#toc_container li a {
	display: block;
	position:relative;
	padding: 2px 0;
}

#toc_container li a:hover{
	opacity:.8;
}

#toc_container .toc_list li a,
#toc_container .toc_list li a span{
	color: var(--text);
}

.toc_number{
	font-family:unset;
}

#toc_container .toc_title::before{
	color:var(--main);
}

#toc_container span.toc_toggle{
	font-size:70%;
	background:#ccc;
	border-radius: 0px;
}

#toc_container .toc_title::before{
	display:none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　電話番号リンクへのCSS初期化
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a[href*="tel:"] img:hover {
    opacity: 1;
}

a[href*="tel:"], a[href*="tel:"]:hover {
    cursor: default;
    text-decoration: none !important;
    color: inherit !important;
    opacity: 1!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビジュアルエディタ　＞　OLのナンバーリング(2023-05-08)og
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ol{
  counter-reset: ol_cnt;
}

ol ol{
  counter-reset: ol_cnt2;
}

ol ol ol{
  counter-reset: ol_cnt3;
}

ol > li{
  counter-increment: ol_cnt;
}

ol ol > li{
  counter-increment: ol_cnt2;
}

ol ol ol > li{
  counter-increment: ol_cnt3;
}

ol[class*="basic_list"] > li:before {
	content: counters(ol_cnt, "")".";
}

ol[class*="basic_list"] ol > li:before {
    content: counters(ol_cnt2, "")".";
}

ol[class*="basic_list"] ol ol > li:before {
	content: counters(ol_cnt3, "")".";
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　リスト(2023-05-08)og
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* OL,UL共通 */

/*エディター上でデフォルトのレイアウトが付くのを解除*/
.basic_list[class*="block-editor"]{
	border:none!important;
	padding:0!important;
	/* 左右マージンautoの記述が消えてしまうため無効化2023-10-13mk */
	/* margin: 0 0 1.5em 0.5em!important; */
}

.basic_list > li {
	position: relative;
	/*font-size: 17px; rin 2023-09-28 */ 
	line-height: 1.8;
	margin-top: 0.6em!important;
	margin-bottom: 0.6em!important;
}

/* basic_list01 > basic_list01の限定スタイル */
/*使用頻度が低いため一旦不使用(2023-05-08)og*/
/*
.basic_list > li .basic_list > li {
	border-bottom: 0;
	border-top: 1px dotted #ccc;
	list-style: none;
}
*/

.basic_list li:before {
	font-size: 1em;
	line-height: 1.2;
	margin-right: 5px;
	position: absolute;
	left: 0px;
	top: 3px;
	color:var(--main)
}

/* UL限定 */
ul.basic_list > li {
	padding-left: 2em;
}

ul.list_type02 > li {
	padding-left: 2.2em;
}

ul.basic_list > li:before {
	font-family: "icomoon";
	content: '\e901';
	vertical-align: bottom;
}

ul.list_type02 > li:before {
	content: '\e912';
	color: var(--main);
	font-size: 1.5em;
	line-height: 1;
}

ul.list_type03 > li:before {
	content: '';
	background-color: var(--main);
	width:1.1em;
	height:2px;
	top: 14px;
}

ul.list_type04 > li:before {
	content: '';
	background-color: var(--main);
	width: 0.4em;
	height: 0.4em;
	border-radius: 50%;
	top: 1.4rem;
	left: 5px;
}

/* OL限定 */
ol.basic_list > li {
	padding-left: 2em;
}

ol.basic_list > li:before {
	left: auto;
	top: 4px;
	right: calc(100% - 1.3em);
	font-size: 1.2em;
	line-height: 1;
}

ol.basic_list.large > li:before {
	top: 2px;
}

/* UL子階層限定 */
.basic_list ul > li:first-child {
	margin-top: 5px;
}

/* UL子階層限定　不要のため削除(2023-10-10mkw) */
/*.basic_list ul > li:before {
	content: '┗';
	margin-left: 0;
}*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　カスタム設定　＞　電話番号
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*仕様変更に伴いクラス名変更(2023-04-28)og*/
/*.cmn_tel01::before {*/
.cmn_tel_icon::before {
    content: '\f095';
    font-family: 'icomoon';
    vertical-align: -0.15em;
    line-height: 1;
    margin-right: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Global Styles　＞　見出し
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 見出し大 */
[class*="gb-headline-h_large"] {
    position: relative;
}

/* 見出し大B */
.gb-headline-h_large_b::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
	background-color: var(--main);
    position: absolute;
    bottom: 0px;
    left: calc(50% - 25px);
}

/* 見出し大C */
.gb-headline-h_large_c::before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: calc(50% - 35px);
	/* 本当は相対パスで書きたいが、管理画面から参照出来ないため、細やかな抵抗としてルートパスで書く(2022-06-03mk) */
    background: url("/prototype/wordpress/wp-content/themes/generatepress_child/images/logo_icon.png") no-repeat center center / contain;
}

/* 汎用ボタン */
[class*="gb-button-basic_btn"] {
    position: relative;
}

.gb-button-basic_btn01::after {
    font-family: "icomoon";
    content: '\e917';
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: calc(50% - .5em);
    line-height: 1;
    right: 0;
}

.gb-button-basic_btn02::before {
    font-family: "icomoon";
    content: '\e038';
    font-size: 18px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: calc(50% - .5em);
}

.gb-container-accordion.faq .gb-button-accordion_ttl{
	padding-left:55px;
}

.gb-container-accordion.faq .gb-button-accordion_ttl:before {
	color: var(--main);
    content: 'Q. ';
    position: absolute;
    left: 30px;
    top: 19px;
}

.gb-container-accordion.faq .gb-container-accordion_content{
	padding:20px;
}

/* コンテナ */
.gb-container-container00 [class*="gb-headline"]{
    margin-top: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　クラシックテーブル01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.classic_table01 table {
    border-collapse: collapse;
	border: none;
}

.classic_table01 table tr:not(:last-child) {
    border-bottom: none;
}

.classic_table01 table th {
	background-color:  var(--base-1);
}

.classic_table01 table th, 
.classic_table01 table td {
    padding: 15px!important;
	border: 1px solid #ccc!important;
}

.classic_table01 table td {
    background: #fff;
}
/*.classic_table01のテーブル*/
.editor-styles-wrapper .classic_table01 table tr:not(:last-child) {
    border-bottom: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　ベーシックテーブル01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*線の重複があったため修正(2023-05-17og)*/
.basic_table01 table {
    border-collapse: collapse!important;
	border:none!important;
}

.basic_table01 table tr:not(:last-child) {
    border-bottom: none;
}

.basic_table01 table tr > td:first-child {
    font-weight: bold;
    text-align: center;
	background-color:  var(--base-1);
    width: 30%;
}

.basic_table01 th, 
.basic_table01 td {
    padding: 15px;
	border: 1px solid #ccc;
}

/*Gutenbergのテーブルでは一列目をthにできないため見出しは下記で装飾*/
.basic_table01 tr > td:first-child {
    font-weight: bold;
    text-align: center;
	background-color:  var(--base-1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　ベーシックテーブル02
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.basic_table02 table {
    border: none!important;
    border-collapse: separate;
    border-spacing: 12px 0;
}

.basic_table02 table th {
    font-weight: bold;
	border-bottom: 2px solid #000;
    text-align: center;
    width: 30%;
}

.basic_table02 table th,
.basic_table02 table td {
    border: none;
	background: #fff;
    padding: 30px 15px;
}

.basic_table02 tr td {
	border-bottom: 1px solid #ccc;
}

/*Gutenbergのテーブルでは一列目をthにできないため見出しは下記で装飾*/
.basic_table02 tr > td:first-child{
    font-weight: bold;
    border: none;
	border-bottom: 2px solid #000;
    text-align: center;
	background-color: transparent;
    width: 30%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　検索窓（ヘッダー、フッター、サイドバー）(2022-10-03og)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.side_search{
	width:100%;
	padding:0 15px;
}

form.search_form_style {
	position: relative;
	border: 0;
	border-radius: 0;
	width:100%;
	max-width:400px;
	margin: 0 auto 15px;
}

form.search_form_style input[type="text"] {
	border: 0;
	border-radius: 0;
	background: #eee;
	width: 100%;
}

form.search_form_style .form_text {
	line-height:1em;
	padding:8px 12px;
	background: #fff;
	font-size:0.9em;
	border: 1px solid #ddd;
}

form.search_form_style .screen_reader_text {
	display: none;
}

form.search_form_style .search_btn {
	background: transparent;
	padding: 0;
	margin: 0;
	text-indent: -9999px;
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 5px;
	top: 4px;
	z-index: 2;
	border: none;
	border-radius: 0px;
	box-shadow: none;
}

form.search_form_style::after {
	font-family: "icomoon";
	content: '\e905';
	height: 100%;
	position: absolute;
	right: 10px;
	top: 0px;
	display: flex;
	align-items: center;
	z-index: 1;
	font-size: 2.0rem;
	color: #a6a6a6;
}

/*デフォルトのアイコンを消す*/
form.search_form_style  [class*=icon]{
	display:none;
}

/*footer > 余分な余白の削除*/
#footer-widgets .search_wrap p{
	margin-bottom:0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローカルナビ （ 2023-03-22 レイアウト修正 rin )
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*プロモ画像下のチャイルドナビ*/
.h_child_navi ul.child_navi {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.h_child_navi ul.child_navi li {
    flex-grow: 1;
    list-style: none;
}
.h_child_navi ul.child_navi a {
    text-align: center;
    padding: 16px 5px;
	background-color: var(--h-child-navi-bg);
    color: var(--main);
    min-width: 100px;
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.h_child_navi ul.child_navi li:not(:last-child) { 
    margin-right: 1px;
}

.h_child_navi ul.child_navi li ul.children {
    display: none;
}

.h_child_navi ul.child_navi a:hover,
.h_child_navi ul.child_navi li[class*='current'] a {
	background-color: var(--main);
    color: #fff;
    text-decoration: none;
}

/*フッター上のチャイルドナビ*/
.f_child_navi ul.child_navi {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
}

.f_child_navi ul.child_navi > li {
    width: calc(33% - 10px);
    margin: 5px;
    list-style: none;
}

.f_child_navi ul.child_navi > li.current_page_item {
    display: none;
}

.f_child_navi ul.child_navi > li > a {
    text-align: center;
    font-size: 15px;
    border: 1px solid #dee4eb;
    height: 70px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    padding: 10px 30px 10px 50px;
    position: relative;
}

.f_child_navi ul.child_navi > li > a::before {
    font-family: "icomoon";
    content: '\e038';
    font-size: 1.8rem;
    line-height: 1;
    position: absolute;
    left: 20px;
    top: calc(50% - .5em);
	color: var(--main);
}

.f_child_navi ul.child_navi .children {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　ページ送り（2023-10-30 kami）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav#nav-below{
    text-align: center;
}

#nav-below .nav-links > *:not(.prev):not(.next):not(.dots):not(.current) {
	padding: 10px 20px;
}

#nav-below .nav-links > *:not(.prev):not(.next):not(.dots) {
    font-size: 20px;
    padding: 0;
}

#nav-below .nav-links .current {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--main);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

#nav-below .nav-links .dots {
    color: var(--main);
}

#nav-below .nav-links {
    position: relative;
}

#nav-below .nav-links :is(.prev,.next) {
	font-weight: bold;
    position: absolute;
    display: flex;
    align-items: center;
    column-gap: 0.7em;
    top: 50%;
    transform: translateY(-50%);
}

#nav-below .nav-links .prev {
    left: 0;
}

#nav-below .nav-links .next {
    right: 0;
}

#nav-below .nav-links .prev::before {
    content: '\e91a';
    font-family: 'icomoon';
    font-size: 14px;
}

#nav-below .nav-links .next::after {
    content: '\e91b';
    font-family: 'icomoon';
    font-size: 14px;
}

#nav-below .nav-links a:hover {
    opacity: .7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　アーカイブ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.blog article.post .inside-article > .gb-container {
    border-bottom-style: dotted;
}

/*投稿汎用カテゴリー*/
.cmn_cat_wrap {
    margin-bottom: 1em;
}

.cmn_cat_wrap > * {
    font-size: 12px;
    text-align: center;
    z-index: 1;
    min-width: 120px;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
	background: var(--accent);
    margin: 0 0 0.3em;
    vertical-align: top;
}

.cmn_cat_wrap > *:not(:last-child) {
    margin-right: 0.5em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　記事詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.single article .entry-title {
    font-size: 2.8rem;
    padding: 0 0 15px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.single article div.entry-meta {
    margin-bottom: 10px;
}

.single article #nav-below {
    margin-top: 30px;
}

/* 記事詳細のタイトル > １つめ以外は非表示 */
.post-term-item:not(:nth-of-type(1)) {
    display:none;
}

/*汎用　詳細ページ戻るボタン　2022-08-23og*/
p.back_to_list a {
	font-size: 1.4rem;
	color:#000;
	display: table;
	border: 1px solid #e7e2db;
	padding: 4px 15px 4px 25px;
	position: relative;
	border-radius: 8px;
	}
	p.back_to_list a:hover {
	text-decoration: none;
	}

	p.back_to_list a:before {
	font-family: "icomoon";
	content: '\e91a';
	font-size: .8em;
	display: inline-block;
	position: absolute;
	top: calc(50% - .45em);
	left: 5px;
	line-height: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
カスタム投稿アーカイブ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post-type-archive article img {
    max-height: 250px;
    object-fit: cover;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
右サイドバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*背景色に変数を使用しないように変更(2023-04-27)og*/
.sidebar .widget{
	background-color:#fff;
}

#right-sidebar aside.widget:not(:last-child) {
    margin-bottom: 30px;
}

/* 最新の投稿のクエリループ下にできる余白削除(2024-06-05)kami */
#right-sidebar .post:not(:last-child):not(.is-loop-template-item) {
	padding: 0;
}

#right-sidebar aside ul li {
    font-size: 15px;
    margin: 0;
}


#right-sidebar aside ul:not(.children) > li {
    border-bottom: 1px solid #ddd;
}

#right-sidebar aside ul li a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 12px 10px;
    transition: .3s;
}

#right-sidebar aside ul li a:hover {
    opacity: .7;
}

/*子カテ*/
#right-sidebar aside ul.children {
    margin: 0;
    border-top: 1px dotted #ddd;
}

#right-sidebar aside ul.children li {
    font-size: 14px;
    margin: 0;
}

#right-sidebar aside ul.children li:not(:last-child) {
    border-bottom: 1px dotted #ddd;
}

#right-sidebar aside ul.children a {
    padding-left: 1.7em;
}

/*孫カテ*/
#right-sidebar aside ul.children ul.children {
    padding-left: 1em;
}

select[name="archive-dropdown"] {
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お問合せフォーム WPForms
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* WPFormのカラム表示の仕様が変更になったため、周辺に入る余白を削除（2023-10-30 kami） */
/*div.wpforms-container-full .wpforms-form .wpforms-field:not(.wpforms-field-pagebreak) {
    padding: 15px 10px!important;
}*/

/* WPForms　＞　フォームの上部に入る不要な空白を除去する（2023-12-22）mk */
/* ページ遷移ボタンのラッパー要素が、何故かフォーム冒頭に挿入されているので、そいつの余白トル */
.wpforms-field-pagebreak:nth-of-type(1){
	padding: 0!important;
}
/* ページインジケーター基本使わないのに余白だけつくのでトル */
.wpforms-page-indicator {
	margin-bottom: 0!important;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    display: flex!important;
    flex-direction: row-reverse!important;
    justify-content: flex-end!important;
    align-items: center!important;
}

div.wpforms-container-full .wpforms-form .wpforms-required-label {
    color: #fff!important;
    font-size: 1.3rem!important;
    border-radius: 5px!important;
    padding: 3px 8px!important;
    font-weight: normal!important;
    background: #d9534f!important;
    margin-right: 10px!important;
}

.wpforms-field input[type="text"], .wpforms-field input[type="url"], .wpforms-field input[type="email"], .wpforms-field input[type="tel"], .wpforms-field textarea, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-checkbox ul, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-radio ul {
    background: #f5f5f5 !important;
    border: none !important;
    border-radius: 4px !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-checkbox ul,
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-radio ul {
    padding: 5px 10px!important;
}

div.wpforms-container-full .wpforms-form [class*="wpforms-field-required"],
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-checkbox ul[class*="wpforms-field-required"],
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-radio ul[class*="wpforms-field-required"] {
    background: #fdf2f2 !important;
}

.wpforms-field input.wpforms-valid {
    background: #f5f5f5 !important;
}

div.wpforms-container-full .wpforms-form label.wpforms-error.mailcheck-error {
    display: none!important;
}

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-divider {
    padding-top: 50px!important;
    padding-left: 0 !important;
    border-top: 1px solid #ccc !important;
}

div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left {
    text-align: center!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
お問合せフォーム WPForms　>　確認画面
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[id*="wpforms-form"] em {
    /* display: none; */
	color:#ccc;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    text-align: center!important;
}

.wpforms-entry-preview-basic .wpforms-entry-preview-value, div.wpforms-container-full .wpforms-form .wpforms-entry-preview-basic .wpforms-entry-preview-value {
    border-bottom: 1px solid #ddd!important;
	padding-bottom:15px!important;
	min-height: 42px;
}

.wpforms-entry-preview-basic .wpforms-entry-preview-value:last-child, div.wpforms-container-full .wpforms-form .wpforms-entry-preview-basic .wpforms-entry-preview-value:last-child {
    margin-bottom: 15px!important;
}

.wpforms-entry-preview-basic, .wpforms-entry-preview-compact, div.wpforms-container-full .wpforms-form .wpforms-entry-preview-basic, div.wpforms-container-full .wpforms-form .wpforms-entry-preview-compact {
    border-bottom: none!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WPForm
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*　確認ボタン・戻るボタン共通　*/
.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button{
	margin: 0!important;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px;
    padding: 5px 24px;
}

/*　確認ボタン　*/
.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-next,
.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-next:hover{
	background: var(--main)!important;
    color: #fff;
    border: none;
}

/*　戻るボタン　*/
.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-prev {
    background: #fff!important;
    color: #6e6e6e!important;
}

/*　送信ボタン　*/
.wpforms-form input[type=submit], 
.wpforms-form button[type=submit] {
	background: var(--main)!important;
    min-width: 260px;
    padding: 12px 10px!important;
    font-weight: bold;
    border: none!important;
    color: #fff!important;
    border-radius: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
デフォルトのページタイトルを非表示
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page header.entry-header .entry-title,
body.category header.page-header,
body.tag header.page-header,
body.date header.page-header,
body.author header.page-header,
body.post-type-archive header .page-title {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
検索ページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.search .page-title {
    text-align: center;
}

.search main#main {
    margin: 0;
}

.search #right-sidebar {
	display:none;
}

.search .site-content .content-area {
	width: 100%;
}

.search article .entry-title {
    font-size: 1.8rem;
}

.search article .entry-title > a {
    text-decoration: underline;
}

.search article .entry-summary {
    font-size: 1.4rem;
}

.search article .entry-meta {
    display: none;
}

.search article .post-image {
    display: none;
}

/* 検索見つからなかったページ */
.search-no-results #content {
	text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
404ページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.error404 .entry-title,
.error404 .entry-content {
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ウィジェットアーカイブラベル非表示
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wp-block-archives label {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer-widgets .inside-footer-widgets > div {
    flex: auto;
}

#footer-widgets .footer-widget-1 {
    width: 100%;
}

#footer-widgets .footer-widget-1 .widget {
	/*エディター上で調整するため削除 (2022-10-03og)*/
    /*margin-bottom: 15px;*/
    font-size: 1.4rem;
}

/*フッターナビ*/
#footer-widgets ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    font-size: 1.6rem;
}

#footer-widgets .sub-menu {
    font-size: 1.4rem;
    padding-left: 1em;
    margin-left: 0;
}

#footer-widgets ul.menu > li {
    font-weight:bold;
}

#footer-widgets .sub-menu > li{
    font-weight: normal;
    margin-bottom: 0.3em;
}

/*個人情報保護方針*/
#footer-widgets .privacy_menu .menu-item-privacy-policy {
    font-size: 1.4rem;
}

#footer-widgets .privacy_menu .menu-item-privacy-policy a {
    font-weight: normal;
}

#footer-widgets .privacy_menu .menu-item-privacy-policy a::after {
	/*ログインボタン削除中のため削除　2022-08-31og*/
    /*content: '|';
    margin-left: 0.8em;*/
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コピーライト
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.copyright-bar{
	line-height: 1.4;
}
.copyright-bar small {
    font-size: 1.4rem;
}
.copyright-bar small .by{
    font-size: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップへ戻るボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a.generate-back-to-top{
	border-radius: 50%;
	border: 2px solid var(--accent);
	box-sizing: content-box;
	width: 52px;
	height: 52px;
	line-height: 52px;
	bottom: 20px;
	right: 40px;
}

a.generate-back-to-top .gp-icon svg{
	height: 1.2em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
パララックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*Advanced設定： Attachment「scroll」 Target「Pseudo Element」に変更 mk */
.cmn_plx {
      clip-path: inset(0);
}
.cmn_plx::before {
      position:fixed!important;
      height: 100vh;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビッカーリンク
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* リンクエリア拡大(CSSメインで実現する形に修正2020-12-04mk) */
[class~="biggerlink"],
[class~="bl"]{
    transition: opacity .3s linear;
    position: relative;
}

[class~="biggerlink"]:hover,
[class~="bl"]:hover{
    /* opacity: .8; */
    cursor: pointer;
}

[class~="biggerlink"] .bl_area::after,
[class~="bl"] .bl_area::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* ビッガーリンクZoomバージョン（実験中）2022-08-25mk */
/* 使い方：ContainerのBackgrounds＞SelectorをPseudo Element（疑似要素）にすること */
[class~="bl"] .gb-container::before,
[class~="biggerlink"] .gb-container::before{
    transition: all 0.5s ease ;
}

[class~="bl"]:hover .gb-container::before,
[class~="biggerlink"]:hover .gb-container::before{
    transform: scale(1.1);
}
