@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーメニューのカスタマイズ(2023-03-13mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* オフキャンバスメニュー表示時（オフキャンバスを閉じた途端に、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; /*指定しないとはみ出る*/
}

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;
}

ol, ul {
    margin: 0 0 1.5em 0.5em;
}

/* コンテンツの中の画像 */
.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;
}

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

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　>　グローバルナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*
div#primary-menu a {
    font-weight: bold;
    font-size: 1.6rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

div#primary-menu ul.sub-menu a {
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
}
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー　>　ハンバーガーメニュー中身　（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);
}

#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;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トップページ > プロモ下の新着記事
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
ul.top_post_list {
    margin: 0;
}

.top_post_list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top_post_list li:not(:last-child) {
    margin-bottom: 1.2em;
}

.top_post_list li .cat {
    font-size: 1.5rem;
    color: #fff;
    background: #ccc;
    padding: 5px 20px;
}

.top_post_list li .ttl {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.top_post_list li .ttl a {
    text-decoration: none;
    color: inherit;
}

/* 固定ページのアイキャッチは非表示（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;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
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;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　gridコンテナにspace-betweenが無いため書いてみた(2022-11-01)og
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_between,
.cmn_between > * > [class*="editor"]{
	justify-content: space-between;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　電話番号リンクへの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;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用スタイル　＞　カスタム設定　＞　電話番号
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_tel01::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;
}

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

/* 見出し大3 */
.gb-headline-h_large3::before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: calc(50% - 35px);
	/* 本当は相対パスで書きたいが、管理画面から参照出来ないため、細やかな抵抗としてルートパスで書く(2022-06-03mk) */
    background: url("/generate/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);
}

/* Q&A */
.gb-container-basic_qa01 {
    border-bottom: 1px dotted #ccc;
}

.gb-headline-basic_qa01_q {
    position: relative;
}

.gb-headline-basic_qa01_q::before {
	color: var(--company-color);
    content: 'Q. ';
    position: absolute;
    left: 30px;
    top: 19px;
}

.gb-headline-basic_qa01_q::after {
    position: absolute;
    font-family: "icomoon";
    content: '\e92d';
    right: 15px;
    top: calc(50% - .5em);
}

.gb-headline-basic_qa01_q.open::after {
    content: '\e92c';
}

.gb-headline-basic_qa01_a {
    display: none;
}

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

/* アコーディオン */
[class*="gb-container-accordion"],
[class*="gb-headline-accordion"] {
    position: relative;
}

.gb-headline-accordion_midashi::after {
    position: absolute;
    font-family: "icomoon";
    content: '\e92d';
    right: 15px;
    top: calc(50% - 0.5em);
    line-height: 1;
}

.gb-headline-accordion_midashi.open::after {
    content: '\e92c';
}

.gb-container-accordion_shita {
    display: none;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　クラシックテーブル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(--table-th-bg);
}

.classic_table01 table th, 
.classic_table01 table td {
    padding: 15px!important;
    border: 1px solid var(--table-border)!important;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　ベーシックテーブル01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.basic_table01 table {
    border-collapse: collapse!important;
}

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

.basic_table01 table th {
    font-weight: bold;
    text-align: center;
    background-color:  var(--table-th-bg);
    width: 30%;
}

.basic_table01 th, 
.basic_table01 td {
    padding: 15px!important;
    border: 1px solid var(--table-border)!important;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　ベーシックテーブル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 var(--table02-th-border);
    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 var(--table-border);
}

/*Gutenbergのテーブルでは一列目をthにできないため見出しは下記で装飾*/
.basic_table02 tr > td:first-child,
.basic_table02 table th {
    font-weight: bold!important;
    border: none!important;
    border-bottom: 2px solid var(--table02-th-border)!important;
    text-align: center!important;
	background-color: transparent!important;
    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;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
下層　>　プロモ　＞　スラッグ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Element内で変更できるため一旦非表示　2023-03-22 rin
.gb-inside-container .slug {
    margin-bottom: 0;
    font-weight: bold;
}
*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローカルナビ （ 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(--accent2);
    color: var(--company-color);
    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(--company-color);
    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 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(--company-color);
}

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


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog nav#nav-below,
.archive nav#nav-below {
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　アーカイブ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
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;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
右サイドバー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#right-sidebar aside.widget:not(:last-child) {
    margin-bottom: 30px;
}

#right-sidebar aside h2 {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin: 0;
}

#right-sidebar aside h2 strong {
    font-size: 17px;
}

#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
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div.wpforms-container-full .wpforms-form .wpforms-field:not(.wpforms-field-pagebreak) {
    padding: 15px 10px!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;
}

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;
}

.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;
}

/*
div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button {
    margin: 0!important;
}

div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background: var(--accent)!important;
    color: var(--base-3)!important;
    box-sizing: border-box!important;
    padding: 5px 10px!important;
    border-radius: 5px!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(--company-color)!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(--company-color)!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);
}
