/*
Theme Name:   Noguchi Kikaku Theme4
Theme URI:    https://noguchi-kikaku.com/
Description:  Noguchi Kikaku Theme4
Author:       Noguchi Kikaku
Author URI:   https://noguchi-kikaku.com/
Template:     generatepress
Version:      0.2

ドキュメント：https://docs.generatepress.com/

■目次
・フォント設定
・基本設定
・ヘッダー
・ナビゲーション
・パンクズ
・サイドバー
・フッター
・モバイルCTA
・コンタクトフォーム
・お知らせにスクロールバー
・1行のお知らせ
・2行のお知らせ
・テーブル
・イメージ
・WP-PAGENAVI
・投稿メタ情報
・GP & Unsemantic調整
・Flexレイアウト
・ボタン装飾
・メディアクエリ
・コンテンツパーツ（まるごと用）
・追加のCSSはここから記載（tools.cssの上書きもここに記載）

■子テーマ内のcss/tools.css内で設定（必要なものを適宜子テーマの当style.cssで上書き）
・tools.cssの中身はCodePen参照
　https://codepen.io/nokicom/pen/PJgmeZ
*/
@import url('css/tools.css');

/* =========================================================
* フォント設定
* WEBフォントはGoogleフォントをメインで利用
* https://fonts.google.com/
========================================================= */
/* 本文はNotoを利用（サイトのテイストに応じて適宜変更可能） */
/* https://fonts.google.com/?subset=japanese */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese');

/* サンセリフ（ゴシック系） */
/*@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700'); */
/* セリフ（明朝系） */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700');

/* 電話番号用（ゴシック系） */
/*@import url('https://fonts.googleapis.com/css?family=Ramabhadra');*/
/* 電話番号用（明朝系） */
/* @import url('https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600'); */
 @import url('https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600'); 

/* =========================================================
* 基本設定
========================================================= */
/* カスタマイザーの「Colors」で設定できないカラーはCSSで指定 */
/* キーカラー：サイトのカラーに合わせて下記色コードを一括置換してください */
.k-color, .fa { color: #3954b7; }
/* ボタンのFontAwesome */
a.button .fa { color: #fff; }

/* サンセリフ（ゴシック系）、セリフ（明朝系）はサイトのテイストに合わせて調整 */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    /*font-family: 'Hiragino Mincho ProN', 游明朝, YuMincho, 'MS PMincho', serif;*/
    /* カーニングの設定 */
    letter-spacing: 1.5px;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    -webkit-font-kerning: auto;
            font-kerning: auto;
}
button, input, select, textarea {
    font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    /*font-family: 'Hiragino Mincho ProN', 游明朝, YuMincho, 'MS PMincho', serif;*/
}
/* 見出し（基本はカスタマイザーで設定） */
h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;*/
    font-family: 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif;
}
/* フォント指定 */
.sans-jp {
    font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif !important;
}
.serif-jp {
    font-family: 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif !important;
}
.sans-en {
    font-family: 'Roboto Condensed', sans-serif !important;
}
.serif-en {
    font-family: 'Playfair Display', serif !important;
}

/* ブラウザ幅が768px以上のときのみNotoを読み込む */
@media (min-width: 768px) {
    body {
        font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
        /*font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif;*/
    }
    button, input, select, textarea {
        font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
        /*font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif;*/
    }
    h1, h2, h3, h4, h5, h6 {
        /*font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;*/
        font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif;
    }
    .sans-jp {
        font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif !important;
    }
    .serif-jp {
        font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif !important;
    }
}

/* 見出しフォントサイズ：カスタマイザーの設定「Typography＞Headings」に合わせる */
.h0 {font-size: 34px; line-height: 1.2;}
.h1 {font-size: 30px; line-height: 1.2;}
.h2 {font-size: 26px; line-height: 1.4;}
.h3 {font-size: 22px; line-height: 1.4;}
.h4 {font-size: 20px; line-height: 1.6;}
.h5 {font-size: 18px; line-height: 1.8;}
.h6 {font-size: 16px; line-height: 1.8;}
@media (max-width: 768px) {
    .h0 {font-size: 30px;}
    .h1 {font-size: 26px;}
    .h2 {font-size: 22px;}
    h3, .h3 {font-size: 20px;} /* モバイル用の見出しサイズはGPのカスタマイザーで設定可能なのがh2まで */
    h4, .h4 {font-size: 18px;}
    h5, .h5 {font-size: 16px;}
    h6, .h6 {font-size: 16px;}
}
/* リストのインデント調整 */
ol, ul {
    margin: 0 0 1.5em 1.5em;
}

/* カスタマイザーのbodyのカラーとは別に固定ページ（サイドバー無し）の背景色設定 */
body.no-sidebar {
    background-color: #fff;
}
/* ページヘッダーを非表示（ElementsのHeaderを利用の場合） */
body.category .page-header,
body.tag .page-header,
body.date .page-header,
body.search .page-header {
    display: none;
}

/* コンテンツ下部の余白（カスタマイザーの設定「Layout＞Container＞Separating Space」の値になるので広げる） */
#main.site-main {
    /* margin-bottom: 40px; */
}

/* IE11対応：GPPのElementsでPageHeroをFull ScreenかつVertical Alignmentをcenterにした際のバグ対応 */
.home .page-hero {
    /* height: 100vh; */
}

/* =========================================================
* ヘッダー
========================================================= */
.site-logo {
	margin: 0 0 0 10px;
}
.site-logo img.header-image {
    max-height: 58px;
    width: auto;
}

/* ヘッダー右側：header widget */
.header-widget {
    max-width: 100%;
    margin-top: 5px;
}
.header-cta {
    width: 415px; /* コンテンツに応じて適宜調整 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* 天地中央 */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* 両端揃え */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header-cta-1 {
    text-align: right;
}
.header-tel {
    font-family: 'Source Serif Pro', serif;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    color: #8c7256!important;
}
.header-tel a, .header-tel .fa {
    color: #8c7256!important;
}
.header-txt {
    font-size: 12px;
    line-height: 18px;
}

.header-cta-2 {
    text-align: right;
}
.header-cta-2 .button {
    width: 190px;
    text-align: center;
    margin-bottom: 0;
    font-size: 15px!important;
    letter-spacing: 0;
    padding-left: 10px!important;
    padding-right: 10px!important;
}

/* Sサイズ、タブレット : Small Devices, Tablets */
@media (max-width: 768px) {
    .inside-header {
        padding-top: 0;
    }
    .site-header .inside-header .main-title {
        margin-bottom: 10px;
    }
	
	/* モバイル用ロゴ */
	.site-logo img.header-image {
		display: none;
	}
	.inside-header {
		padding: 5px 0px 5px 0px!important;
	}
	.site-logo{
		display: block!important;
	}
	.site-logo a{
		position: relative;
		display: block;
		width: 100%;
		height: 60px;
	}
	.site-logo a:after{
		position: absolute;
		content: "";
		background: url(img/logo_mobile.png) top center no-repeat;
		background-size: 280px auto;
		top: -20px;
		left:0;
		display: inline-block;
		width: 100%;
		height: 70px;
	}
	
}


/* =========================================================
* ナビゲーション
========================================================= */
/* メニューの数に応じて調整（widthの指定無しでもOK） */
.main-navigation  ul.menu > li {
	 width: auto;
    /*width: calc( 99% / 5 ); ナビの数で割る　ナビの仕切り線を無くす場合は100%とする */
    letter-spacing: 1.5px !important;
}
/* 画面幅が小さくなったときに横幅指定解除 */
@media (max-width:1100px) {
    .main-navigation  ul.menu > li {
        width: auto;
    }
}
/* サブナビゲーション（子メニュー）の横幅 */
.main-navigation ul ul {
    white-space: nowrap;
}

/* ナビゲーション間の仕切り線 */
.main-navigation ul.menu > li::before,
.main-navigation ul.menu > li:last-child::after  {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 22px;
    background: rgba(223,223,223,1.00);
    z-index: 1;
}
.main-navigation ul.menu > li::before {
    left: 0px; /* 左側に仕切り線 */
}
.main-navigation ul.menu > li:first-child::before,
.main-navigation ul.menu > li:last-child::after {
    content: none;
}


/* ナビゲーション上部の仕切り線 */
.main-nav:before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: #EBE9E5;
}


/* スクロールした際、ナビ領域にロゴを表示させる場合コメントアウト解除 */
/* スクロールした際に横幅指定解除 */
.navigation-stick ul.menu > li {
    /*width: auto;*/
}
/* スクロールした際に仕切り線解除 */
.navigation-stick ul.menu > li::before,
.navigation-stick ul.menu > li:last-child::after {
    /*content: none;*/
}

/* スライドアウトナビは左寄せ（カスタマイザーの寄せを上書き） */
.main-navigation.slideout-navigation {
    text-align: left !important;
}
/* スライドアウトナビのウィジェトの余白調整 */
.main-navigation.slideout-navigation .slideout-widget {
    margin: 10px;
}
/* スライドアウトナビの▼クリック可能領域を広げる */
@media (max-width: 768px) {
    .menu-item-has-children .dropdown-menu-toggle {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* モバイルのナビカラー */
button.menu-toggle {
    background-color: #f7f6f2;
}


/* =========================================================
* パンクズ
========================================================= */
.breadcrumbs {
    font-size: .8em;
    line-height: 20px;
    overflow: hidden;
    background: #f7f6f2;
    padding: 15px 0;
}
/* オーバーフローした場合、改行させずに…表示 */
.breadcrumbs .grid-container {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 15px 10px;
    }
}

/* =========================================================
* サイドバー
========================================================= */
/* サイドバーウィジェットのタイトル設定 */
.sidebar .widget .widget-title {
    color: #5d544d;
    border-bottom: solid 2px #5d544d;
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: 0 0 20px 0;
	font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
}
/* セレクトボックスデザイン調整 */
.sidebar .widget select {
    width: 100%;
    padding: 5px;
}

/* wp show posts関係 */
.sidebar .wp-show-posts-entry-meta {
    text-align: right;
}
.sidebar .wp-show-posts-image.wpsp-image-left {
    margin-right: 15px;
}
.sidebar .wp-show-posts .wp-show-posts-entry-title {
    font-size: 15px;
    line-height: 1.4;
    font-weight: normal;
}
@media (max-width: 768px) {
    .sidebar .wp-show-posts-image.wpsp-image-left {
        float: left; /* サイドバーのWPSP（最新情報）は左寄せ維持 */
    }
}

/* ウィジェット用CTA */
.side-cta {
    border: 1px solid #e3e3e3;
    border-top: none;
    padding: 0;
    text-align: center;
    border-radius: 5px;
    line-height: 1.4;
}
.side-img {
    padding: 0;
}
.side-tel {
    font-family: 'Source Serif Pro', serif;
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
    padding: 5px 0;
    color: #906b53;
    letter-spacing: 0;
}
.side-tel .fa{
    color: #906b53;
}
.side-tel a {
    color: #333;
}
.side-button {
    padding: 10px 3px;
}
.sidebar .widget a.button, 
.sidebar .widget a.button:visited {
    color: #fff;
}

.side-cta-ttl,
.side-menu-ttl{
	background: #62584e;
	text-align: center;
	color: #fff;
	padding: 5px 0;
	font-size: 16px;
	margin: 0;
	border-radius: 4px 4px 0 0;
	border: solid 1px #6a474c;
	font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
}
.side-cta .side-time {
    line-height: 1.3;
}
.sidebar .side-lawyer {
    margin-top: -20px;
    display: block;
    color: #7d7066;
}

.sidebar .side-area {
    background: url(img/side_map.png) right -10px no-repeat;
    padding-bottom: 50px;
	color: #7d7066;
}

.sidebar .menu > li a{
	 border-left: solid 5px #6a474c;
	 background: #f8f6f1;
	 padding: 5px 10px;
	 display: block;
}
.sidebar .menu > li ul li a{
	 border-left: none;
	 background: none;
	 padding: 3px 3px 3px 3px;
	 display: block;
	font-size: 14px;
	border-bottom: dotted 1px #ddd;
}
.sidebar .menu > li ul li:last-child a{
	border-bottom: none;
}
.sidebar .menu > li ul li a:before{
	 content: "\f04b　";
	 font-family: 'FontAwesome';
	 color: #2d97da;
	 font-size: 10px;
}

@media (max-width: 768px) {
    #right-sidebar,
    #left-sidebar {
        padding: 0 15px;
    }
}


/* =========================================================
* フッター
========================================================= */
/* copyright-barとfooter-barの初期値（float）リセット */
.copyright-bar, .footer-bar {
    float: none !important;
    margin: 0;
}

.footer-widgets .widget {
    font-size: 14px;
}
.footer-logo {
    max-height: 110px;
    width: auto;
}

/* サイトマップ用の装飾 */
.footer-widget-menu-title {
    font-size: 120%;
    line-height: 2em;
}
.footer-widget-menu ul,
.footer-widget-menu ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 90%;
    line-height: 1.6em;
}
.footer-widget-menu li {
    margin: 0;
    padding: 0;
}
.footer-widget-menu li.footer-widget-menu-child {
    margin-left: 18px;
}
.footer-widget-info .fa {
    width: 26px;
    text-align: center;
}

/* フッターにカスタムメニューを設置した場合 */
.site-footer .widget_nav_menu {
    text-align: center;
}
.site-footer ul.menu li {
    display: inline-block;
    list-style-type: none;
    padding: 0 0 0 20px;
    margin: 0 20px 0 0;
}
.site-footer ul.menu li::before {
    font-family: 'FontAwesome';
    content: "\f138";
    position: absolute;
    left : 0;
    color: #3954b7;
}

/* コピーライト＆クレジット表記 */
.footer-copyright {
    text-align: left;
}
.footer-credit {
    text-align: right;
}

.footer-cta {
    font-size: 18px;
}
.footer-tel {
    font-family: 'Source Serif Pro', serif;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    display: inline;
}

@media (max-width: 768px) {
    .site-footer .widget_nav_menu {
        text-align: left;
    }
    .site-footer ul.menu li {
        display: block;
        padding: 0 0 0 20px;
        margin: 0;
    }
    .footer-copyright {
        text-align: center;
    }
    .footer-credit {
        text-align: center;
    }
}

/* =========================================================
* モバイルCTA
========================================================= */
@media (max-width: 768px) {
    .mobile-cta {
        width: 100%;
        background-color: #3954b7;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* 天地中央 */
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        /* 両端揃え */
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .mobile-cta-1,
    .mobile-cta-2 {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
    }
    .mobile-cta-1 .button, 
    .mobile-cta-2 .button {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        margin-bottom: 0;
        line-height: 1;
    }
    .mobile-cta-2 .button {
        border-left: 1px solid rgba(255,255,255,0.5);
        width: calc( 100% - 1px );
    }
    .mobile-cta-1 .button .fa,
    .mobile-cta-2 .button .fa {
        font-size: 18px;
        line-height: 1;
    }
    /* 以下、CTAをフッターに固定する場合（固定にしない場合はコメントアウト） */
    .mobile-cta-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
    }
    .generate-back-to-top, .generate-back-to-top:visited {
        bottom: 53px;
        right: 5px;
        z-index: 200;
    }
    footer.site-info {
        margin-bottom: 48px;
    }
    /* CTAのフッター固定ここまで */
}

/* =========================================================
* コンタクトフォーム
========================================================= */
/* チェックボックス縦並び */
span.wpcf7-list-item {
    display: block;
}

/* プレイスホルダーの色指定（その他の色はカスタマイザーで設定） */
input::-webkit-input-placeholder { color: #aaa; }
input:-ms-input-placeholder      { color: #aaa; }
input::placeholder               { color: #aaa; }

/* 必須項目 */
.form-required {
	color: #fff;
    background: #e75757;
	font-size: 12px;
	padding: 1px 5px;
	margin-right: 7px;
}

/* =========================================================
* お知らせにスクロールバー
* jQuery custom content scroller用の設定：不使用の場合は削除
========================================================= */
.scroller {
    height: 230px; /* 高さ調整 */
    overflow: auto;
}
/* スクロールバーの色（標準は黒） */
.scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.75);
}
.scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background-color: rgba(0,0,0,.85);
}
.scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background-color: rgba(0,0,0,.9);
}

/* =========================================================
* 1行のお知らせ
========================================================= */
.list-news {
    list-style: none;
    margin: 0;
    /*
    外枠をボーダーで囲む場合
    border: #e3e3e3 1px solid;
    border-bottom: none;
    */
}
.list-news li {
    border-bottom: #e3e3e3 1px dotted;
}
.list-news li a {
    display: block;
    text-decoration: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    color: #2d97da;
}
.list-news li a:hover {
    background: #f2f8fb;
}
.list-news li .list-news-wrap {
    display: table;
    table-layout: fixed; /* オーバーフローを…表示 */
}
.list-news li .list-news-wrap span {
    display: table-cell;
}
.list-news li .list-news-wrap .news-date {
    padding: 10px 20px;
    width: 120px; /* 合計:160px */
}
.list-news li .list-news-wrap .news-cat {
    padding: 10px 20px 10px 0; /* 合計:140px */
}
.list-news li .list-news-wrap .news-txt {
    padding: 10px 20px 10px 0;
    width: auto;
}
.news-date {
    vertical-align: middle;
    white-space: nowrap;
    font-size: 14px;
    line-height: 28px;
    color: #514943;
	font-weight: bold;
}
.news-cat {
    vertical-align: middle;
    white-space: nowrap;
}
/* カテゴリ部分のデフォルト設定 */
.news-cat span {
    width: 110px; /* 合計:120px カテゴリ名称が長い場合要調整 */
    min-width: 110px;
    max-width: 110px; /* オーバーフローを…表示 */
    overflow: hidden; /* オーバーフローを…表示 */
    text-overflow: ellipsis; /* オーバーフローを…表示 */
    text-align: center;
    padding: 5px;
    background: #2d97da;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
}
/* カテゴリ毎に背景色設定 */
.news span {
    background: #2d97da;
}

@media (max-width: 768px) {
    .list-news li .list-news-wrap {
        display: block;
    }
    .list-news li .list-news-wrap .news-date {
        padding: 10px 10px 0 0;
        width: auto;
    }
    .list-news li .list-news-wrap .news-cat {
        padding: 10px 0 0 0;
    }
    .list-news li .list-news-wrap .news-txt {
        padding: 0 0 10px 0px;
        display: block;
        width: auto;
    }
    .news-cat span {
        padding: 4px;
        line-height: 12px;
    }
}

/* =========================================================
* 2行のお知らせ
========================================================= */
.news2row {
    margin: 0;
    padding: 0;
}
.news2row .info-column {
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px dotted #ccc;
}
.news2row .info-meta {
    line-height: 1em;
}
.news2row .info-meta .info-cat {
    float: left;
    text-align: center;
    width: 80px;
    margin-right: 10px;
}
.news2row .info-meta .info-date {
    display: table-cell;
    vertical-align: middle;
    font-size: 90%;
    line-height: 1.4em;
}
.news2row .info-title {
    margin-top: 5px;
}
/*-- カテゴリのスラッグ毎に色を変える --*/
.news2row .info-meta .info-cat {
    padding: 2px 6px;
    font-size: 80%;
    color: #fff;
    background: #3954b7; /* キーカラーに合わせて変更 */
}

/* =========================================================
* テーブル
* .tableクラスを付与するとレスポンシブ対応
* .table-color：色付きのthに変更
* .table-telfax：電話番号・FAX番号用
========================================================= */
/* テーブル：標準 */
table {
    margin: 0;
    background: #ffffff;
}
table th {
    font-weight: 500;
    background-color: #f3f3f3;
    width: 170px; /* 適宜変更 */
}
table th,
table td {
    padding: 10px;
}

/* テーブル：キーカラーバージョン */
.table-color ,
.table-color th,
.table-color td {
    border: none;
    border-collapse: collapse;
}
.table-color th,
.table-color td {
    padding: 10px;
    border-bottom: 1px solid #fff;
    border: solid 1px #bbb;
}
.table-color th {
    background: #daeffa; /* キーカラーに合わせて変更 */
}
/* tdの奇数行に適応 */
.table-color tr:nth-of-type(odd) td {
    background: #f8f8f8; /* 背景色に合わせて微調整 */
}
/* tdの偶数行に適応 */
.table-color tr:nth-of-type(even) td {
    background: #fff; /* 背景色に合わせて微調整 */
}

/* テーブル：電話番号・FAX番号用 */
table.table-telfax{
	border: none!important;
	border-collapse: collapse;
}
table.table-telfax th {
    width: 50px;
    font-size: 20px;
    text-align: center;
	background: #2d97da;
	color: #fff;
	border: none!important;
}
table.table-telfax td {
    font-family: 'Ramabhadra', sans-serif;
    /* font-family: 'Source Serif Pro', serif; */
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
    border: none!important;
    font-family: 'Source Serif Pro', serif;
}

@media (max-width: 768px){
    table th,
    table td,
    table.table-color th,
    table.table-color td {
        padding: 10px;
    }
    table.table-telfax th {
        width: auto;
        font-size: 18px;
    }
    table.table-telfax td {
        text-align: center;
        font-size: 24px;
        line-height: 1.8;
    }

    /* table-mobile指定でレスポンシブ対応（単純なテーブルに利用） */
    table.table-mobile tr,
    table.table-mobile th,
    table.table-mobile td {
        display: block;
        width: auto !important;
    }
}

/* talbeの外側にtable-scroll指定でスマホ時に横スクロール（複雑なテーブルに利用） */
@media (max-width: 768px){
    .table-scroll table {
        width:100%;
    }
    .table-scroll {
        overflow: auto; /*tableをスクロールさせる*/
        white-space: nowrap; /*tableのセル内にある文字の折り返しを禁止*/
    }
    .table-scroll::-webkit-scrollbar { /*tableにスクロールバーを追加*/
        height: 5px;
    }
    .table-scroll::-webkit-scrollbar-track { /*tableにスクロールバーを追加*/
        background: #F1F1F1;
    }
    .table-scroll::-webkit-scrollbar-thumb { /*tableにスクロールバーを追加*/
        background: #BCBCBC;
    }
}

/* =========================================================
* イメージ
========================================================= */
img {
    vertical-align: middle;
}
a:hover img {
    opacity:0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}

/* =========================================================
* WP-PAGENAVI
========================================================= */
/*
* generatepressのページャーを非表示
* https://generatepress.com/forums/topic/blog-paging-pagenavi-styles/
*/
.nav-links .page-numbers {
    display: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
    text-decoration: none;
    padding: 5px 8px;
    margin: 2px;
    font-size: 15px;
    line-height: 15px;
    float: left;
}
.wp-pagenavi a,
.wp-pagenavi a:link,
.wp-pagenavi a:active,
.wp-pagenavi a:focus {
    color: #3954b7;
    border: 1px solid #fff;
    background: none;
}
.wp-pagenavi span.current {
    font-weight: bold;
    color: #fff;
    background: #3954b7;
    border: 1px solid #fff;
    padding: 5px 8px;
}
.wp-pagenavi a:hover {
    color: #ffffff;
    background: #3954b7;
    border: 1px solid #fff;
    padding: 5px 8px;
}
.wp-pagenavi span.pages {
    color: #3954b7;
    background: none;
    padding: 5px 8px 5px 0;
}
.wp-pagenavi span.extend {
    background: transparent;
    color: #3954b7;
    background: none;
}

/* =========================================================
* 投稿メタ情報（次へ前へ等）
========================================================= */

/* 次へ前へ */
.site-main .post-navigation {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.nav-previous, .nav-next {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.nav-previous {
    /*border-right: 1px solid #e3e3e3;*/
}

.nav-previous .prev,
.nav-next .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.nav-previous .prev::before,
.nav-next .next::after {
    font-family: FontAwesome;
    text-align: center;
    background: #eee;
    display: block;
    margin: 0;
    padding: 15px 5px;
    width: auto;
}
.nav-previous .prev::before {
    content: "\f104";
}
.nav-next .next::before {
    content: "";
    margin: 0;
    width: 0;
}
.nav-next .next::after {
    content: "\f105";
}
.nav-previous .prev a,
.nav-next .next a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 5px 10px;
}
.nav-previous .prev a {
    text-align: left;
}
.nav-next .next a {
    text-align: right;
}

/* =========================================================
* GP & Unsemantic調整
========================================================= */
/* フルワイドのセクション：GPのセクション利用時にCustom Classesに「generate-sections-fullwide」を設定 */
/* セクションの設定「Inner Box Type」を「Full Width」に変更しただけでは左右の余白が残るため、余白を０にする */
.generate-sections-fullwide .generate-sections-inside-container {
    padding-left: 0;
    padding-right: 0;
}
/* GPのセクション利用時にCustom Classesに「generate-sections-XXXX」を設定 */
.generate-sections-800  .generate-sections-inside-container {max-width: 800px; margin:0 auto;}
.generate-sections-900  .generate-sections-inside-container {max-width: 900px; margin:0 auto;}
.generate-sections-1000 .generate-sections-inside-container {max-width: 1000px;margin:0 auto;}
.generate-sections-1100 .generate-sections-inside-container {max-width: 1100px;margin:0 auto;}
.generate-sections-1200 .generate-sections-inside-container {max-width: 1200px;margin:0 auto;}
.generate-sections-1300 .generate-sections-inside-container {max-width: 1300px;margin:0 auto;}
.generate-sections-1400 .generate-sections-inside-container {max-width: 1400px;margin:0 auto;}
.generate-sections-1500 .generate-sections-inside-container {max-width: 1500px;margin:0 auto;}
.generate-sections-1600 .generate-sections-inside-container {max-width: 1600px;margin:0 auto;}
.generate-sections-1700 .generate-sections-inside-container {max-width: 1700px;margin:0 auto;}

/* 固定幅　※grid-containerはカスタマイザーの「Layout＞Container＞Container Width」設定値（ベーステーマでは1100px）となるため、それ以外の横幅を利用したい場合に利用 */
.grid-400  {max-width: 400px; margin:0 auto;} .grid-400::after {clear: both;}
.grid-500  {max-width: 500px; margin:0 auto;} .grid-500::after {clear: both;}
.grid-600  {max-width: 600px; margin:0 auto;} .grid-600::after {clear: both;}
.grid-700  {max-width: 700px; margin:0 auto;} .grid-700::after {clear: both;}
.grid-800  {max-width: 800px; margin:0 auto;} .grid-800::after {clear: both;}
.grid-900  {max-width: 900px; margin:0 auto;} .grid-900::after {clear: both;}
.grid-1000 {max-width: 1000px;margin:0 auto;} .grid-1000::after {clear: both;}
.grid-1100 {max-width: 1100px;margin:0 auto;} .grid-1100::after {clear: both;}
/* カスタマイザーの設定値（Container Width）を超える場合は該当セクションの「Inner Box Type」を「Full Width」に変更してから利用する */
.grid-1200 {max-width: 1200px;margin:0 auto;} .grid-1200::after {clear: both;}
.grid-1300 {max-width: 1300px;margin:0 auto;} .grid-1300::after {clear: both;}
.grid-1400 {max-width: 1400px;margin:0 auto;} .grid-1400::after {clear: both;}
.grid-1500 {max-width: 1500px;margin:0 auto;} .grid-1500::after {clear: both;}
.grid-1600 {max-width: 1600px;margin:0 auto;} .grid-1600::after {clear: both;}
.grid-1700 {max-width: 1700px;margin:0 auto;} .grid-1700::after {clear: both;}
/* clear:both */
.grid-400::after, .grid-500::after, .grid-600::after, .grid-700::after, .grid-800::after, .grid-900::after, .grid-1000::after, 
.grid-1100::after, .grid-1200::after, .grid-1300::after, .grid-1400::after, .grid-1500::after, .grid-1600::after, .grid-1700::after {
    content: ".";
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
}

/* =========================================================
* Flexレイアウト
* 参考URL　https://www.nxworld.net/tips/flexbox-examples.html
* チートシート　https://www.webcreatorbox.com/tech/css-flexbox-cheat-sheet
========================================================= */
.flexbox-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
}

.flex2 .flexbox { width: 49%; }
.flex3 .flexbox { width: 32%; }
.flex4 .flexbox { width: 23.5%; }
.flex5 .flexbox { width: 18.5%; }
/* セクションの「Inner Box Type」を「Full Width」にした場合 */
.generate-sections-inside-container:not(.grid-container) .flex2 .flexbox { width: 49.5%; }
.generate-sections-inside-container:not(.grid-container) .flex3 .flexbox { width: 32.5%; }
.generate-sections-inside-container:not(.grid-container) .flex4 .flexbox { width: 24%; }
.generate-sections-inside-container:not(.grid-container) .flex5 .flexbox { width: 19%; }
@media (max-width: 1200px) {
    .generate-sections-inside-container:not(.grid-container) .flex2 .flexbox { width: 49%; }
    .generate-sections-inside-container:not(.grid-container) .flex3 .flexbox { width: 32%; }
    .generate-sections-inside-container:not(.grid-container) .flex4 .flexbox { width: 23.5%; }
    .generate-sections-inside-container:not(.grid-container) .flex5 .flexbox { width: 18.5%; }
}

@media (max-width: 768px) {
    .flexbox-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; /* 縦方向に並べる */
    }
    .flexbox {
        margin-bottom: 20px;
    }
    .flexbox:last-child {
        margin-bottom: 0;
    }
    .flex2 .flexbox,
    .flex3 .flexbox,
    .flex4 .flexbox,
    .flex5 .flexbox {
        width: 100% !important;
    }
}

/* =========================================================
* ボタン装飾（GPの標準buttonをベースに）
* ベースのボタンカラーはカスタマイザーで設定可能
* サイトのテイストにあわせて丸ごと入れ替え可
========================================================= */
button, html input[type=button], input[type=reset], input[type=submit] {
    /* 角丸やパッディング等調整あれば記載 */
	border-radius: 3px;
}

.button,
.button i {
    -webkit-transition: all  0.3s ease;
    transition: all  0.3s ease;
}
.button i.left {
    border-right: 1px solid rgba(255, 255, 255, .2);
    margin-right: 5px;
    padding-right: 10px;
}
.button i.right {
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 5px;
    padding-left: 10px;
}
/* 角丸にする場合 */
.button.round {
    border-radius: 3px;
}

/* 追加したい色は各自指定 */
.button.red,
.button.red:visited {
    background: #c81e32;
    color: #FFF;
}
.button.red:hover {
    background: #b91629;
}
.button.green,
.button.green:visited {
    background: #21886a;
    color: #FFF;
}
.button.green:hover {
    background: #1c735a;
}

/* シースルー：黒 */
.button.see-through {
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 500;
    color: #333 !important;
    border: 2px solid #333;
}
.button.see-through:hover {
    color: #fff !important;
    background-color: #3954b7; /* キーカラーに合わせて変更 */
    border: 2px solid #3954b7; /* キーカラーに合わせて変更 */
}
.button.see-through i.fa {
    color: #333;
}
.button.see-through i.left {
    border-right: 1px solid rgba(0, 0, 0, 0.7);
}
.button.see-through i.right {
    border-left: 1px solid rgba(0, 0, 0, 0.7);
}
.button.see-through:hover i.fa {
    color: #fff;
}
.button.see-through:hover i.left {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.button.see-through:hover i.right {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* シースルー：白 */
.button.see-through.white {
    color: #fff !important;
    border: 2px solid #fff;
}
.button.see-through.white:hover {
    background-color: #3954b7; /* キーカラーに合わせて変更 */
    border: 2px solid #3954b7; /* キーカラーに合わせて変更 */
    color: #fff;
}
.button.see-through.white i.fa {
    color: #fff;
}
.button.see-through.white i.left {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
}
.button.see-through.white i.right {
    border-left: 1px solid rgba(255, 255, 255, 0.7);
}
.button.see-through.white:hover i.fa {
    color: #fff;
}
.button.see-through.white:hover i.left {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.button.see-through.white:hover i.right {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* シースルーのボーダー細く */
.button.see-through.thin,
.button.see-through.thin:hover {
    border-width: 1px;
}


/* =========================================================
* メディアクエリ
========================================================= */
/*==========  非モバイル・ファーストの場合  ==========*/
/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media (max-width: 1200px) {}

/* カスタマイザーのContainer Width */
@media (max-width: 1100px) {}

/* XGA(iPad・タブレット) */
@media (max-width: 1024px) {
    /* ロゴセンター寄せ */
    .inside-header {
        text-align: center;
    }
}

/* Mサイズ、デスクトップ : Medium Devices, Desktops */
@media (max-width: 992px) {}

/* Sサイズ、タブレット : Small Devices, Tablets */
@media (max-width: 768px) {
    /* モバイル時にはシステム標準フォント */
    body {
        font-family: sans-serif;
        letter-spacing: 0;
    }
    .mobile-grid-100 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* フォームの横幅100% */
    input[type=email], 
    input[type=number], 
    /* input[type=password],  */
    /* input[type=search],  */
    input[type=tel], 
    input[type=text], 
    input[type=url], 
    select, textarea {
        width: 100%;
    }
}

/* XSサイズ : Extra Small Devices, Phones */
@media (max-width: 480px) {}

/* カスタム, iPhone Retinaディスプレイ */
@media (max-width: 320px) {}


/*==========  モバイル・ファーストの場合  ==========*/
/* カスタム, iPhone Retinaディスプレイ */
@media (min-width: 320px) {}

/* XSサイズ : Extra Small Devices, Phones */
@media (min-width: 480px) {}

/* Sサイズ、タブレット : Small Devices, Tablets */
@media (min-width: 768px) {}

/* Mサイズ、デスクトップ : Medium Devices, Desktops */
@media (min-width: 992px) {}

/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media (min-width: 1200px) {}


/* =========================================================
* コンテンツパーツ：共通
========================================================= */

/* =========================================================
* 見出し装飾
* ■ Googleフォントでポピュラーなもの（※importは当CSSの最上部で）
* https://fonts.google.com/?sort=popularity
* ■ Googleフォントの利用方法
* https://saruwakakun.com/html-css/basic/google-fonts
========================================================= */
/*=== コンテンツの見出し ===*/
.ttl-std-wrap {
    margin-bottom: 50px;
    text-align: center;
}
.ttl-std-lv1 {
    background: rgba(255,255,255,0.9);
    display: inline-block;
    padding: 0.5em 1.5em;
    margin: -15px auto 10px auto;
    font-weight: 600;
    font-size: 33px;
    line-height:1.2em;
}
.ttl-std-lv2 {
    color: #333;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
	/* font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', sans-serif; */
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
    position: relative;
    display: inline-block;
}
.ttl-std-lv2 {
    font-size: 32px;
}
.ttl-std-lv2.white {
    color: #fff;
}
/* アンダーライン非表示
.ttl-std-lv1::after,
.ttl-std-lv2::after {
    background: #fff;
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
}
*/
.ttl-std-lv2::after {
    background: #3954b7; /* キーカラーに合わせて変更 */
}
.ttl-std-lv2.white::after {
    background: #fff;
}
.ttl-std-txt {
    color: #3954b7; /* キーカラーに合わせて変更 */
    text-transform: uppercase;
    /* サンセリフ */
    font-family: 'Roboto Condensed', sans-serif;
    /* セリフ */
    /* font-family: 'Playfair Display', serif; */
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.45em;
}

/* 色の濃い背景の場合 */
.ttl-bg {
    font-size: 32px;
    font-weight: 500;
}
.ttl-bg {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}
.ttl-bg::after {
    background: #fff;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 50px;
    height: 3px;
}

@media (max-width: 768px) {
    .ttl-std-lv1 {
        font-size: 26px;
        padding: 10px;
    }
    .ttl-std-lv2 {
        font-size: 28px;
    }
    .ttl-bg {
        font-size: 24px;
    }
}

/* コンテンツの概要文章 */
.txt-read {
    margin-bottom: 50px;
    font-weight: 500;
    text-align: center;
}

/*=== 画像+文章 ===*/
.img-body {
    min-height: 0%;
    margin: 0;
}
.img-body img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
/* 丸い画像の場合 */
.img-body .img-circle {
    margin: 40px auto 10px auto;
    width: 50%;
    text-align: center;
}
/* アイコンの場合 */
.img-icon {
    margin: 40px 0 10px 0;
    color: #3954b7; /* キーカラーに合わせて変更 */
    font-size: 50px;
    line-height: 1;
    text-align: center;
}
.img-icon .fa {
    /* fontawesome のアイコンを細くする */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 1px #fff; /* 背景色とあわせる */
}
.img-read {
    font-size: 15px;
    padding: 20px;
}
.img-read h3,
.img-read h3.under-line {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 20px;
}
.img-read h3.under-line {
    padding-bottom: 20px;
    position: relative;
}
.img-read h3.under-line::after {
    background: #3954b7; /* キーカラーに合わせて変更 */
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 30px;
    margin-left: -15px;
    height: 3px;
}
.img-read p {
    margin-bottom: 0;
}

/*=== ボタンエリア ===*/
.flexbox-btn {
    margin-top: auto; /* 高さを揃える */
    text-align: center;
    padding-bottom: 20px;
}
.btn-wrap {
    text-align: center;
}
.btn-wrap .button,
.flexbox-btn .button {
    min-width: 200px;
}
.btn-wrap a::before,
.flexbox-btn a::before {
    font-family: FontAwesome;
    content: "\f054"; /* https://fontawesome.com/v4.7.0/cheatsheet/ */
    font-size: 14px;
    margin-right: 10px;
}

/* =========================================================
* コンテンツパーツ：メインイメージ
========================================================= */
.section-mainimg {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+45,ebf4f7+45,ebf4f7+45,ffffff+45,ebf4f7+45,ebf4f7+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 45%, #ebf4f7 45%, #ebf4f7 45%, #ffffff 45%, #ebf4f7 45%, #ebf4f7 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 45%,#ebf4f7 45%,#ebf4f7 45%,#ffffff 45%,#ebf4f7 45%,#ebf4f7 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 0%,#ffffff 45%,#ebf4f7 45%,#ebf4f7 45%,#ffffff 45%,#ebf4f7 45%,#ebf4f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebf4f7',GradientType=0 ); /* IE6-9 */
}


.section-mainimg h1 {
    font-size: 1em;
    line-height: 1.8;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
}
.section-mainimg h2 {
    font-family: 'Roboto Condensed', sans-serif;
    /* font-family: 'Playfair Display', serif; */
    font-size: 80px;
    line-height: 1.2;
    color: #0e2968;
}
@media (max-width: 768px) {
    /* スマホ表示のときは、ページヘッダーのイメージ変更 */
    .home .generate-content-header {
        background-image: url(img/mb-main.jpg);
    }
    /* メインビジュアルの上下の余白調整 */
    .home .page-header-content-container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .section-mainimg h2 {
        font-size: 60px;
    }
}

/* =========================================================
* コンテンツパーツ：ビジネス
========================================================= */
.section-business {}

/* =========================================================
* コンテンツパーツ：メッセージ
========================================================= */
.section-message {}

.section-message h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-message h3 {
        font-size: 26px;
    }
}

/* =========================================================
* コンテンツパーツ：アバウト
========================================================= */
.section-about {}

/* =========================================================
* コンテンツパーツ：フォト
========================================================= */
.section-photo {}

/* =========================================================
* コンテンツパーツ：アイコン
========================================================= */
.section-icon {}

/* =========================================================
* コンテンツパーツ：メンバー
========================================================= */
.section-member {}


/* =========================================================
 * コンテンツパーツ：流れ
========================================================= */
.section-flow {}

.ttl-flow {
    position: relative;
    background: #eee;
    line-height: 40px;
    padding: 10px 10px 10px 60px;
    margin-top: 40px;
}
.ttl-flow:first-of-type {
    margin-top: 0;
}
.num-flow {
    position: absolute;
    color: #fff;
    background: #3954b7;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    top: 10px;
    left: 10px;
    border-radius: 20px;
}

/* =========================================================
 * コンテンツパーツ：Q&A
========================================================= */
.section-faq {}

/* tools.cssの装飾を調整 */
.faq-circle-no {
    font-family: 'Roboto Condensed', sans-serif;
    /* font-family: 'Playfair Display', serif; */
    color: #fff;
}
.faq-circle-no.faq-circle-q {
    background: #3954b7;
}
.faq-circle-no.faq-circle-a {
    background: #3954b780;
}


/* =========================================================
* コンテンツパーツ：更新情報（画像）
========================================================= */
.section-img-information {
	
}

/* WP Show Posts（プラグイン）のタイトル */
.wp-show-posts .wp-show-posts-entry-title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 0.5em 0;
}

/* =========================================================
* コンテンツパーツ：更新情報（1行テキスト）
========================================================= */
.section-news1row{}
/* =========================================================
* コンテンツパーツ：更新情報（2行テキスト）
========================================================= */
.section-news2row {}

/* =========================================================
* コンテンツパーツ：SNS
========================================================= */
.section-sns {}

.sns-wrap {
    text-align: center;
    margin: 0 auto;
}
.sns-wrap .fb_iframe_widget {
    padding-top: 10px; /* FBページプラグインをInstagramの高さに合わせる */
}

/* =========================================================
* コンテンツパーツ：画像文章左右交互（Flex）
========================================================= */
.section-imgtxt {}

.flex-imgtxt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
/* 左右に振り分け（コメントアウトで画像左固定） */
.flex-imgtxt:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
/* 任意で順向きにしたい場合 */
.flex-imgtxt.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
/* 任意で逆向きにしたい場合 */
.flex-imgtxt.row-reserve {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.flex-imgtxt-img {
    width: 50%;
}
.flex-imgtxt-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.flex-imgtxt-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px;
    background: #fff;
}
/* フルワイドで利用する場合 */
.flex-imgtxt-txt-inner {
    max-width: 520px;
}

/* 見出し */
.section-imgtxt h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-imgtxt h3::after {
    background: #3954b7; /* キーカラーに合わせて変更 */
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 30px;
    margin-left: -15px;
    height: 3px;
}

/* スマホ調整 */
@media (max-width: 768px) {
    /* 縦方向に変更 */
    .flex-imgtxt,
    .flex-imgtxt:nth-child(odd),
    .flex-imgtxt.row-reserve {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; /* 縦方向に並べる */
        margin-bottom: 40px;
    }
    .flex-imgtxt-img {
        width: 100%;
    }
    .flex-imgtxt-txt {
        padding: 15px;
    }
    .flex-imgtxt-txt-inner {
        max-width: 100%;
    }
    .section-imgtxt h3 {
        font-size: 22px;
    }
}

/* =========================================================
* コンテンツパーツ：会社概要
========================================================= */
.section-company {}

/* =========================================================
* コンテンツパーツ：背景有りコンテンツ
========================================================= */
.section-background{}

/* =========================================================
* コンテンツパーツ：アクセス
========================================================= */
.section-access {
    text-align: center;
}
.section-access h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.section-access .txt-read {
    
}

/* =========================================================
* コンテンツパーツ：アクセス（詳細）
========================================================= */
.section-access-detail {}

/* =========================================================
* コンテンツパーツ：電話・FAX
========================================================= */
.section-telfax {
    border-bottom: 1px solid #eee;
}

/* =========================================================
* コンテンツパーツ：メールフォーム
========================================================= */
.section-mailform {}

/* =========================================================
* 追加CSS（コメントを付けてわかりやすく記載して下さい）
========================================================= */

/* tools.css調整 */
.ttl-03 {
    background-color: #3954b7;
    border-radius:0;
}
.ttl-03:before {
    border-left: 3px solid #fff;
    border-radius:0;
    top: 13px;
}
.ttl-04:before{
    border-bottom: 3px solid #3954b7;
}
.ttl-04:after{
    border-bottom: 3px solid #aba7a3;
}
.ttl-04-lv2:before{
    border-bottom: 2px solid #3954b7;
}

.txt-white{
	color: #fff;
}
.txt-orange{
	color: #ff5a00;
}
.txt-yellow-orange{
	color: #ff9600;
}
.txt-aqua{
	color: #2d97da;
}
.txt-green{
	color: #1b8127;
}
.bg-ivory {
    background: #f7f6f2!important;
}
.bg-blue{
	background: #3954b7;
}
.bg-aqua{
	background: #2d97da;
}
.bg-pale-blue{
	background: #eaf1fa;
}
.bg-pale-gray {
    background: #f8f8f8!important;
}
.bg-pale-aqua{
	background: #ebf4f7;
}
.bg-pale-yellow{
	background: #fefae7;
}
.bg-pale-green{
	background: #eff9f0;
}
.bg-blue{
	background: #3954b7;
}
.border-box{
	border: solid 1px #eee;
}
.border-bottom{
	border-bottom: dotted 1px #c0b9b3;
}
.border-arrow{
	position: relative;
}
.border-arrow:after{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #ddd;
	border-width: 30px;
	margin-left: -30px;
}

.border-list li{
	list-style: none;
	border-bottom: dotted 1px #c0b9b3;
	padding: 0.5em 0.5em 0.5em 2em;
	position: relative;
	margin: 0;
}
.border-list li:before{
	 content: "\f111　";
	 font-family: 'FontAwesome';
	 font-size: 10px;
	 color: #3954b7;
	 position: absolute;
	 top: 1.2em;
	 left: 1.5em;
}
.border-box-list li{
	list-style: none;
	border: dotted 1px #c0b9b3;
	padding: 0.5em 0.5em 0.5em 2em;
	position: relative;
	margin: 0 0 0.5em 0;
}
.border-box-list li:before{
	 content: "\f111　";
	 font-family: 'FontAwesome';
	 font-size: 10px;
	 color: #3954b7;
	 position: absolute;
	 top: 1.2em;
	 left: 1.5em;
}
hr.border-dotted{
	height: 0;
	background: none;
	border: none;
	border-bottom: dotted 1px #c8d6ef;
}
.liststyle-none li{
	padding: 0.5em 1em;
}
.liststyle-none li:before{
	content: none;
}

.num {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    border-radius: 1px;
}



/* お問い合わせ情報　（ご依頼の流れ　/ ） */
.site-content .contact {
    border: solid 3px #a4d8f8;
    border-radius: 5px;
    padding: 10px;
}
.site-content .contact .tel {
    font-family: 'Source Serif Pro', serif;
    font-size: 35px;
    line-height: 38px;
    letter-spacing: 0;
}

/* Top Bar */
@media (max-width: 768px){
.top-bar{
    height: 5px;
}
}
/* 固定ページタイトル */
.entry-header .entry-title {
    position:relative;
    padding:10px 0;
    border-bottom: solid 2px #3954b7;
    color: #3954b7;
}


.home .entry-header .entry-title:before,
.blog .entry-header .entry-title:before,
.archive .entry-header .entry-title:before {
    top:13px;
}


/* mega menu */
@media (min-width: 769px) {
    nav .main-nav > ul li:nth-child(3){
        position: static;
 }
    nav .main-nav > ul li:nth-child(3) > ul.sub-menu.toggled-on{
        position: absolute;
        width: 100%;
        left: -20px !important;
        padding: 20px 20px 40px 20px;
    }
	
    nav .main-nav > ul li:nth-child(3) > ul > li {
        display: inline-block;
        width: 25%;
        vertical-align: top;
    }
    nav .main-nav > ul li:nth-child(3) > ul > li > a, 
    nav .main-nav > ul li:nth-child(3) > ul > li > a:hover{
		  font-weight: bold;
		  letter-spacing: 0.1em;
		  background: rgba(255,255,255,0.1)!important;;
		  margin: 0 10px 10px 10px;
    }
	  nav .main-nav > ul li:nth-child(3) > ul > li > a:hover{
		  background: rgba(255,255,255,0.05)!important;;
    }

    nav .main-nav > ul li:nth-child(3) > ul > li > ul > li > a,
	 nav .main-nav > ul li:nth-child(3) > ul > li > ul > li > a:hover{
		  background: none!important;
		 margin: 0;
    }
	
	 nav .main-nav > ul li:nth-child(3) > ul > li > ul > li a:before {
		  font-family: 'FontAwesome';
		  content: "\f054　";
		  color: #fff;
		  font-size: 10px;
}
	
	
    nav .main-nav .mega-menu.mega-menu-col-2>ul>li {
        width: 50%;
    }
    nav .main-nav .mega-menu.mega-menu-col-3>ul>li {
        width: 33.3333%;
    }
    nav .main-nav .mega-menu.mega-menu-col-5>ul>li {
        width: 20%;
    }

    nav .main-nav ul li:nth-child(3) > ul > li:hover > a,
    nav .main-nav ul li:nth-child(3)> ul > li:focus > a,
    nav .main-nav ul li:nth-child(3) > ul > li[class*="current-"] > a,
    nav .main-nav ul li:nth-child(3) ul ul {
        color: inherit;
    }
    nav .main-nav > ul li:nth-child(3) > ul > li  ul > li {
        display: block;
        width: 96%;
        padding-bottom: 0px;
		  padding-left: 0px;
		  border-bottom: dotted 1px rgba(255,255,255,0.2);
		  margin: 0 20px;
    }

    nav .main-nav > ul li:nth-child(3) > ul > li  ul > li:last-child {
		  border-bottom: none;
		  margin-bottom: 30px;

    }	
	    nav .main-nav > ul li:nth-child(3) > ul > li > ul > li > a,
		 nav .main-nav > ul li:nth-child(3) > ul > li > ul > li > a:hover{
		  font-weight: normal;
		  background: none;
		  padding: 10px 25px 10px 10px!important;
    }	
	
    nav .main-nav > ul li:nth-child(3) ul .sub-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: 0 0 0;
        left: 0;
        height: auto;
    }
   nav .main-nav > ul li:nth-child(3) ul.toggled-on .sub-menu {
        pointer-events: auto;
    }
    nav .main-nav > ul li:nth-child(3) .sub-menu .menu-item-has-children .dropdown-menu-toggle {
        display: none;
    }
    nav .main-nav > ul li:nth-child(3) ul li a:hover,
    nav .main-nav > ul li:nth-child(3) ul li a:focus,
    nav .main-nav > ul li:nth-child(3) ul li a:active{
        color: #cdf2ff!important;
    }
    nav .main-nav > ul li:nth-child(3) ul li a{
        color: #fff!important;
    }

   nav.main-navigation ul.menu > li:nth-child(3):before{
	   content: none;
   }
	nav.main-navigation ul.menu > li:nth-child(2):after{
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 22px;
	 right: 0;
    background: rgba(223,223,223,1.00);
    z-index: 1;
  }
	
}


/*タイトル装飾 */
.ttl-arrow{
	font-weight: 500;
	padding: 0.5em 0;
	position: relative;
	border-bottom: solid 2px #3954b7;
	font-size: 30px;
	text-align: center;
}
.ttl-arrow:after{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #3954b7;
	border-width: 15px;
	margin-left: -15px;
}
.ttl-arrow:before{
	content: " ";
	display: block;
	max-width: 60%;
	margin: -15px auto 15px auto;
	border-top: dotted 1px #d4cac1;
}
.ttl-arrow-s{
	font-weight: 500;
	padding: 0.5em 0;
	position: relative;
	border-bottom: solid 2px #3954b7;
	text-align: center;
}
.ttl-arrow-s:after{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #79ac0c;
	border-width: 15px;
	margin-left: -15px;
}

.ttl-border-left {
    border-left: solid 5px #6a474c;
    padding: 15px;
}
@media (max-width: 768px) {
.ttl-arrow{
	font-size: 22px;
}
}

/* フッターお問い合わせ */
.footer-contact{
    background: #fff;
    border-top: solid 1px #ebe8e1;
}
.footer-contact > div{
    border-bottom: solid 1px #fff;
    background: url(img/ft_contact.jpg) top right no-repeat #fff;
    min-height: 240px;
    padding-bottom: 20px;
}
.footer-contact h2{
    color: #3954b7;
    font-size: 38px;
    width: 70%;
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.footer-contact-tel div{
    font-family: 'Source Serif Pro', serif;
    font-size: 46px;
    line-height: 46px;
    letter-spacing: 0;
    color: #8c7256!important;
}
.footer-contact-tel div .fa{
    color: #8c7256!important;
    font-size: 42px!important;
}
.footer-contact .button{
	font-size: 18px;
	width: 100%;
	text-align: center;
}
@media only screen and (max-width: 1200px) {
	.footer-contact-tel div{
    font-size: 40px;
    line-height: 40px;
    }
.footer-contact-tel div .fa{
    font-size: 40px!important;
    }
}


/* トップページ */
.number-list{
	margin: 0;
	list-style: none;
}
.number-list li h3{
	list-style: none;
	margin: 0 0 5px 0;
	padding: 10px;
	vertical-align: top;
}
.number-list li h3 .num {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    border-radius: 1px;
}
.number-list li h3 div{
	display: inline-block;
	margin-left: 10px;
	margin-bottom: 0;
	vertical-align: top;
}
@media (max-width: 768px) {
.number-list li{
	line-height: 25px;
}
.number-list li p{
	display: inline;
}
}
.top-point {
    border-bottom: dotted 1px #b2c0d8;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 500;
}
.case-info{
	 background: #fbf8ea;
	 padding: 25px;
	margin-bottom: 20px;
}
.case-info:nth-of-type(odd){
	background: #f8f6f1;
}
.case-info h3{
	background: #fff;
	padding: 5px;
}
.case-info h3 span{
	display: inline-block;
	font-size: 15px;
	background: #3954b7;
	color: #fff;
	padding: 3px 10px;
	min-width: 100px;
	text-align: center;
}
.case-info-point{
	background: #fff;
	padding: 15px;
}
.case-info-point span{
	background: #ff9600;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	padding: 3px 10px;
	margin-right: 10px;
	min-width: 100px;
	text-align: center;
}
@media (max-width: 768px) {
.case-info{
	 background: #f8f6f1;
	 padding: 20px;
}
.case-info .case-info-icon img{
		display: block;
		width: 50px;
		margin: 0 auto;
	}
	
}
.top-advice img{
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.top-advice h3{
	padding: 7px 10px;
	margin-bottom: 10px;
	font-size: 18px;
}
.top-advice h3 a:hover{
	color: #2d97da;
}
.top-advice h3 a{
	color: #514943;
}
.top-advice ul{
	margin: 0 10px;
}
.top-advice ul li{
	list-style: none;
	font-size: 14px;
	padding: 3px 5px;
	border-bottom: dotted 1px #ddd;
}
.top-advice ul li:last-child{
	border-bottom: none;
	margin-bottom: 10px;
}
.top-advice ul li:before{
	font-family: 'FontAwesome';
   content: "\f054　";
	font-size: 10px;
	color: #2d97da;
}

/* 弁護士紹介 */
table.history, 
table.history td, 
table.history th {
    border: none;
    font-weight: normal;
}
table.history th{
	background: none!important;
	border: none;
	border-bottom: solid 1px #ddd;
	padding: 5px;
	font-weight: bold;
	width: 120px;
	text-align: center;
}
table.history td{
	background: none!important;
	border: none;
	border-bottom: solid 1px #ddd;
	padding: 5px;
}
/* プライバシーポリシー */
.privacy{
	padding: 10px;
	border: solid 1px #e3e3e3;
}
.privacy{
	padding: 10px;
}
.privacy h3{
	padding: 10px;
	background: #ebf4f7;
}

.catchcopy {
    font-size: 13px;
    font-weight: normal;
    font-family: 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    margin: 0;
    padding: 0;
}
/* CF7のPタグ自動挿入調整 */
.wpcf7 table p:last-child { margin-bottom: 0; }



/* 20240930追加 */
.list-none{
	list-style-type: none;
}
.border-bottom-solid{
	border-bottom: solid 1px #c0b9b3;
}
.border-2{
	border-width: 2px;
}
.font-medium{
	font-weight: 500;
}
