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

■目次
・フォント設定
・基本設定
・ロゴ・ヘッダー
・ナビゲーション
・パンクズ
・サイドバー
・フッター
・モバイルCTA
・コンタクトフォーム
・お知らせにスクロールバー
・1行のお知らせ
・2行のお知らせ
・テーブル
・イメージ
・WP-PAGENAVI
・投稿メタ情報
・GP & Unsemantic調整
・Flexレイアウト
・ボタン装飾
・メディアクエリ
・コンテンツパーツ（各種）
・要素のアニメーション
・Page Hero：背景スライドショー：KenBurns（不要な場合は削除）
・Page Hero：背景動画（不要な場合は削除）
・アニメーション：ローディング（不要な場合は削除）
・追加のCSSはここから記載（tools.cssの上書きもここに記載）

■＋子テーマ内 css/tools.css
上書きが必要なものは当style.cssに記述
*/
@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=Kosugi+Maru');

/* セリフ（明朝系） */
/* @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'); */

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

/* サンセリフ（ゴシック系）、セリフ（明朝系）はサイトのテイストに合わせて調整 */
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;*/

    /* カーニングの設定 */
    letter-spacing: 1.5px;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    -webkit-font-kerning: auto;
            font-kerning: auto;
	border-top: solid 5px #f7d4d4;
}
@media (max-width: 768px) {
    body {
        letter-spacing: 0;
    }
}
button, input, select, textarea {
    font-family: 'Kosugi Maru', '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: 'Kosugi Maru', '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: 'Kosugi Maru', '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; }
.sans-en  { font-family: 'Roboto Condensed', sans-serif !important; }
.serif-en { font-family: 'Playfair Display', serif !important; }
.tel {
    font-family: 'Ramabhadra', sans-serif;
    /* font-family: 'Source Serif Pro', serif; */
}

/* 見出しフォントサイズ：カスタマイザーの設定「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;
}

/* サイドバー有りの場合は投稿とサイドバーのウィジェットを線で囲む */
.blog .site-main article.post,
.archive .site-main article.post,
.single .site-main article.post,

.search .site-main article,
.search-no-results .site-main .inside-article,
.error404 .site-main .inside-article {
	border: dotted 1px #e2dfdd;
	border-radius: 10px;
	overflow: hidden;
}


/* カスタマイザーの設定「Layout＞Container＞Separating Space」の値になるので広げる */
/* カスタマイザーのセパレート値（20）を上書き */
.right-sidebar.separate-containers .site-main {
    margin: 20px 40px 40px 0;
}
/* カスタマイザーのセパレート値（20）を上書き */
#main.site-main,
.separate-containers .site-main article.post {
    margin-bottom: 40px;
}

/* カテゴリーのページヘッダーを非表示（ElementsのHeaderを利用の場合） */
body.category .page-header,
body.tag .page-header,
body.date .page-header,
body.search .page-header {
    display: none;
}

/* IE11対応：GPPのElementsでPageHeroをFull ScreenかつVertical Alignmentをcenterにした際のバグ対応 */
.home .page-hero {
    /* height: 100vh; */
}
/* PageHeroを「Full Screen」で利用した場合のIE対策 */
.page-hero.slide,
.page-hero.video {
    /* height: 100vh; */
}

/* =========================================================
* ロゴ・ヘッダー
========================================================= */
.site-logo {
	margin: 0;
}
/* 【ロゴ】SVGファイルを扱う場合はサイズ指定を厳密に行う（IEで縦横比が崩れる） */
.site-header .header-image,
.site-header .main-navigation .navigation-logo img,
#mobile-header.mobile-header-navigation .mobile-header-logo img {
    height: 50px;
    /* width: 183px; /* ロゴの縦横比に合わせて横幅調整（SVG以外の場合はコメントアウト可） */
}
@media (max-width: 768px) {
    .site-header .header-image,
    .site-header .main-navigation .navigation-logo img,
    #mobile-header.mobile-header-navigation .mobile-header-logo img {
        height: 40px;
        /* width: 110px; /* ロゴの縦横比に合わせて横幅調整（SVG以外の場合はコメントアウト可） */
    }
}

/* ヘッダー右側：header widget */
.header-widget {
    max-width: 100%;
}
.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: 'Ramabhadra', sans-serif;
    /* font-family: 'Source Serif Pro', serif; */
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0.01em;
}
.header-tel span,
.header-contact span{	
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3c539;
	vertical-align: middle;
}
.header-tel span i ,
.header-contact span i {
  position: absolute;
  display: inline-block;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width :38px;
  text-align:center;
	color: #fff;
}
.header-contact{	
  margin-top: -15px;
  font-family: 'Kosugi Maru', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
}
.header-contact span{	
  background: #f16984;
}
.header-contact a:hover span{	
  background: #f29bac;
}


.header-txt {
    font-size: 12px;
    line-height: 18px;
    position: relative;
    top: -10px;
    left: 2px;
    color: #8c6060;
}

.header-cta-2 {
    text-align: right;
}
.header-cta-2 .button {
    width: 150px; /* テキストに応じて適宜調整 */
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .inside-header {
        padding-top: 0;
    }
    .site-header .inside-header .main-title {
        margin-bottom: 10px;
    }
}


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

/* ナビデザイン調整 */
.main-navigation{
    font-family: 'Kosugi Maru', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    padding: 20px 0;
}
.main-navigation.is_stuck{
    padding: 10px 0;
}
.main-navigation.sticky-navigation-transition .main-nav > ul > li > a{
    line-height: 40px;
}
@media (max-width: 768px) {
.main-navigation{
    padding: 0;
}
}
/* ナビゲーション間の仕切り線 */
/*.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(255, 255, 255, 0.8);
    z-index: 1;
}
.main-navigation ul.menu > li::before {
    left: 0px; /* 左側に仕切り線 */
/*}
.main-navigation ul.menu > li:last-child::after {
    right: 0px; /* 右側に仕切り線 */
/*}*/

/* スクロールした際、ナビ領域にロゴを表示させる場合コメントアウト解除 */
/* スクロールした際に横幅指定解除 */
.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;
}
/* スライドアウトナビのサブメニュー時の「▼」クリック可能領域を広げる */
@media (max-width: 768px) {
    li.menu-item-has-children .dropdown-menu-toggle {
        padding-left: 20px;
        padding-right: 20px;
        font-weight: bold;
    }
    ul.sub-menu li.menu-item-has-children .dropdown-menu-toggle {
        border-left: 1px solid rgba(230,225,215,0.8);
    }
}
@media (min-width: 769px) {
    #sticky-navigation.is_stuck.main-navigation ul li {
        letter-spacing: 1.5px;
    }
}


/* スライドアウトナビの装飾 */
#generate-slideout-menu .slideout-menu > li {
    border-bottom: 1px solid rgba(230,225,215,0.8);
}
#generate-slideout-menu .slideout-menu > li li {
    border-bottom: 1px solid rgba(230,225,215,0.8);
}
/* スライドアウトナビのウィジェトの余白調整 */
.main-navigation.slideout-navigation .slideout-widget {
    margin: 0;
}

/* スライドアウトナビのCTA */
.slideout-cta-tel {
    text-align: center;
    padding: 15px;
    background-color: rgba(101, 89, 127, 0.1);
}
.slideout-cta-tel .slideout-tel,
.slideout-cta-tel .slideout-tel a {
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
}
.slideout-cta-tel .slideout-txt {
    font-size: 12px;
    line-height: 12px;
}
.slideout-cta-mail a.button {
    text-align: center;
    line-height: 40px;
    padding: 15px;
    width: calc(100% - 30px);
    color: #fff;
}



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

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 20px 10px 0 10px;
    }
    .sections-no-sidebars .breadcrumbs {
        padding: 20px 10px;
        border-bottom: 1px solid #eee;
    }
}

/* =========================================================
* サイドバー
========================================================= */
.sidebar .widget {
    padding: 20px;
}
/* サイドバーウィジェットのタイトル設定 */
.sidebar .widget .widget-title {
    color: #f16984;
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: -20px -20px 20px -20px; /* .sidebar .widgetのpadding打ち消し */
	border-bottom: solid 3px #f16984;
}
/* セレクトボックスデザイン調整 */
.sidebar .widget select {
    width: 100%;
    padding: 5px;
    height: 40px;
}


/* 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（最新情報）は左寄せ維持 */
    }
}

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

.footer-widgets .widget {
    font-size: 14px;
}
.footer-logo {
    max-height: 50px;
	width: auto; /* ロゴの縦横比に合わせて横幅調整（SVGの場合指定必須） */
}

/* サイトマップ用の装飾 */
.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;
}
.footer-widget-menu > div{
	text-align: center;
	border-left: solid 2px #f5e2e8;
}
.footer-widget-menu > div:nth-child(1){
	border-left: none;
}
.footer-widget-menu > div ul{
	text-align: left;
	display: inline-block;
}


/* フッターにカスタムメニューを設置した場合 */
.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: #f16984;
}

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


.footer-tel{
	font-family: 'Ramabhadra', sans-serif;
	font-size: 24px;
	line-height: 1.5em;
	color:#564d45;
}
.footer-tel span{	
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3c539;
	vertical-align: middle;
}
.footer-tel span i {
  position: absolute;
  display: inline-block;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width :30px;
  text-align:center;
	color: #fff;
	font-size: 18px;
}
.footer-tel span:nth-of-type(2) {	
  background: #a2c752;
}


@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;
    }
	
	.footer-widget-menu > div{
        text-align: left;
        border-left: none;
    }
    .footer-widget-menu > div ul{
        text-align: left;
        display: block;
    }

	
	
}

/* =========================================================
* モバイルCTA
========================================================= */
@media (max-width: 768px) {
    .mobile-cta {
        width: 100%;
        background-color: #f16984;
        
        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::-ms-input-placeholder     { color: #aaa; }
input::placeholder               { color: #aaa; }
::-webkit-input-placeholder      { color: #aaa; }
:-ms-input-placeholder           { color: #aaa; }
::-ms-input-placeholder          { color: #aaa; }
::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: #cabbae 1px dashed;
}
.list-news li a {
    display: block;
    text-decoration: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.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: #946767;
    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: #f16984;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    border-radius: 3px;
}
/* カテゴリ毎に背景色設定 */
.news span {
    background: #f16984;
}

@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: #f16984; /* キーカラーに合わせて変更 */
}

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

/* テーブル：キーカラーバージョン */
.table-color ,
.table-color th,
.table-color td {
    border: none;
}
.table-color th,
.table-color td {
    padding: 10px;
    border-bottom: solid 1px #e5e4e3;
}
.table-color tr:last-child th,
.table-color tr:last-child td {
    border-bottom: none;
}
.table-color th {
    background:  none; 
}
.table-color th > div{
    background:  #f7edf1; /* キーカラーに合わせて変更 */
    text-align: center;
    padding: 10px;
	border-radius: 6px;
}


/* tdの奇数行に適応 */
.table-color tr:nth-of-type(odd) td {
    background: none; /* 背景色に合わせて微調整 */
}
/* tdの偶数行に適応 */
.table-color tr:nth-of-type(even) td {
    background: none; /* 背景色に合わせて微調整 */
}

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


@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;
    }
	.table-color th {
    padding: 10px;
    border-bottom: none;
}
}

/* 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: #f16984;
    border: 1px solid #fff;
    background: none;
}
.wp-pagenavi span.current {
    font-weight: bold;
    color: #fff;
    background: #f16984;
    border: 1px solid #fff;
    padding: 5px 8px;
}
.wp-pagenavi a:hover {
    color: #ffffff;
    background: #f16984;
    border: 1px solid #fff;
    padding: 5px 8px;
}
.wp-pagenavi span.pages {
    color: #f16984;
    background: none;
    padding: 5px 8px 5px 0;
}
.wp-pagenavi span.extend {
    background: transparent;
    color: #f16984;
    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] , input[type=text] , input[type=email] , input[type=tel] ,textarea{
    /* 角丸やパッディング等調整あれば記載 */
	border-radius: 6px;
}

.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{
	font-family: 'Kosugi Maru', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
}


/* 角丸にする場合 */
.button.round {
    border-radius: 6px;
}

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

/* シースルー：黒 */
.button.see-through {
    background-color: transparent;
    font-weight: 500;
    color: #333 !important;
    border: 2px solid #333;
}
.button.see-through:hover {
    color: #fff !important;
    background-color: #f16984; /* キーカラーに合わせて変更 */
    border: 2px solid #f16984; /* キーカラーに合わせて変更 */
}
.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: #f16984; /* キーカラーに合わせて変更 */
    border: 2px solid #f16984; /* キーカラーに合わせて変更 */
    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) {
    .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,
.ttl-std-lv2 {
    font-family: 'Kosugi Maru', '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-size: 36px;
    line-height: 1;
    letter-spacing: 0.1em;
    margin: 0;
    position: relative;
    display: inline-block;
	color: #594c4c;
}
.ttl-std-lv2 {
    font-size: 33px;
	line-height: 1.3;
}
.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: #f16984; /* キーカラーに合わせて変更 */
}
.ttl-std-lv2.white::after {
    background: #fff;
}
.ttl-std-txt {
    color: #f16984; /* キーカラーに合わせて変更 */
    text-transform: uppercase;
    /* サンセリフ */
    font-family: 'Roboto Condensed', sans-serif;
    /* セリフ */
    /* font-family: 'Playfair Display', serif; */
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3em;
}
.ttl-std-txt.white {
    color: #fff;
}

/* 色の濃い背景の場合 */
.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;
		letter-spacing: 0em;
    }
	.ttl-std-txt {
		margin-top: 5px;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.3em;
    }
    .ttl-std-lv2 {
		font-size: 26px;
    }
    .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: #f16984; /* キーカラーに合わせて変更 */
    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: #f16984; /* キーカラーに合わせて変更 */
    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/#faf9ed+0,faf9ed+58,ffffff+100&1+58,1+58,1+58,1+58,0+59 */
background: -moz-linear-gradient(top, rgba(250,249,237,1) 0%, rgba(250,249,237,1) 58%, rgba(250,249,237,0) 58%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(250,249,237,1) 0%,rgba(250,249,237,1) 58%,rgba(250,249,237,0) 58%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(250,249,237,1) 0%,rgba(250,249,237,1) 58%,rgba(250,249,237,0) 58%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faf9ed', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.section-mainimg h1 {
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}
.section-mainimg h2 {
    font-family: 'Roboto Condensed', sans-serif;
	/* font-family: 'Playfair Display', serif; */
	font-size: 80px;
    line-height: 1.2;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    /* スマホ表示のときは、ページヘッダーのイメージ変更 */
    .home .page-hero {
		padding: 0;
    }
    .section-mainimg h1 {
        font-size: 16px;
    }
    .section-mainimg h2 {
        font-size: 64px;
    }
}

/* =========================================================
* コンテンツパーツ：ニュースティッカー
* GP：Elementsで編集
* Page HeroのElement Classesにtickerクラスを指定
========================================================= */
.page-hero.ticker {
    position: relative;
}
.section-ticker {
    overflow: hidden;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #f16984;
    /* flexbox */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/* 768px以上の場合1300px上限 */
@media (min-width: 768px) {
    .section-ticker {
        max-width: 1300px;
        width: calc(100% - 200px);
        min-width: 1000px;
        margin: 0 auto;
    }
}

.ticker-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.ticker-item.ticker-ttl {
    /* サンセリフ */
    font-family: 'Roboto Condensed', sans-serif;
    /* セリフ */
    /* font-family: 'Playfair Display', serif; */
    width: 200px;
    line-height: 50px;
    text-align: center;
    background-color: #333;
    font-size: 1.2em;
}
.ticker-item.ticker-txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    text-align: left;
    font-size: 1em;
}
.ticker-txt ul {
    margin: 0;
    padding: 0;
    line-height: 50px;
}
.ticker-txt ul li {
    padding: 0 1.5em;
    display: none;
    width: calc( 100% - 3em);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ticker-date {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 1em;
}
@media (max-width: 768px) {
    .ticker-item.ticker-ttl {
        width: 65px;
        font-size: 1em;
    }
    .ticker-item.ticker-txt {
        font-size: 0.85em;
    }
    .ticker-txt ul li {
        padding: 0 1em;
        width: calc( 100% - 2em);
    }
}

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

/* =========================================================
* コンテンツパーツ：メッセージ
========================================================= */
.section-message img{
	width: 100%;
	max-width: 150px;
	padding: 7px;
	border: solid 1px #e4dfdd;
	border-radius: 3px;
}

.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 .flow-box{
	background: #faf9ed;
	border-radius: 6px;
	padding: 10px 0;
}
.section-flow .flow-box > div{
	max-width: 900px;
}
.section-flow .flow-box img{
	width: 100%;
	max-width: 150px;
	margin: 0 auto;
	display: block;
}
.section-flow .flow-box h3{
	margin-top: 20px;
	margin-bottom: 10px;
	color: #f16984;
}
.section-flow .flow-box .num-flow {
	color: #fff!important;
	background: #f16984;
	text-align: center;
	font-size: 20px;
	line-height: 35px;
	height: 35px;
	width: 35px;
	top: 10px;
	left: 10px;
	border-radius: 20px;
	display: inline-block;
}
.section-flow .flow-box p{
	margin-bottom: 0px;
}
.section-flow .flow-box li{
	float: left;
	margin-right: 30px;
}
@media (max-width: 768px) {
.section-flow .flow-box{
	padding-top: 20px;
}
 .section-flow .flow-box li{
	float: none;
	 margin: 0;
}
}


/* =========================================================
 * コンテンツパーツ：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: #f16984;
}
.faq-circle-no.faq-circle-a {
    background: #f1698480;
}


/* =========================================================
* コンテンツパーツ：更新情報（画像）
========================================================= */
.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{
	background: top center repeat-x;
	background-size: 15px auto;
}
/* =========================================================
* コンテンツパーツ：更新情報（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: #f3f3f3;
}
/* フルワイドで利用する場合 */
.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: #f16984; /* キーカラーに合わせて変更 */
    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 {
    
}

.map-wrap {
    position: relative;
}
.map-inner-box {
    position: absolute;
    min-width: 320px;
    top: 50px;
    left: 50px;
    z-index: 1;
    padding: 40px;
    background-color: #fff;
    -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
    .map-wrap {
        position: static;
    }
    .map-inner-box {
        position: static;
        min-width: auto;
        padding: 40px 15px;
        -webkit-box-shadow: none;
                box-shadow: none;
    }
}

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

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

/* =========================================================
* コンテンツパーツ：メールフォーム
========================================================= */
.section-mailform th > div{text-align: left!important;}

.section-mailform .form-required {
    color: #fff;
    background: #e75757;
    font-size: 12px;
    padding: 3px 5px;
    margin-right: 7px;
	border-radius: 3px;
}

/* =========================================================
* コンテンツパーツ：CTA
========================================================= */
.section-cta {}

.section-cta .flex2 .flexbox { 
    width: 48%;
    padding: 40px;
}
.section-cta .tel { 
    font-size: 40px;
    line-height: 50px;
}
.section-cta .button { 
    width: 300px;
    font-size: 18px;
    line-height: 30px;
    padding: 10px;
}
@media (max-width: 768px) {
    .section-cta .flex2 .flexbox { 
        padding: 15px;
    }
    .section-cta .tel { 
        font-size: 32px;
    }
    .section-cta .button { 
        width: calc( 100% - 40px );
    }
}


/* =========================================================
 * 要素のアニメーション
========================================================= */
/* アニメーション：Reveal Effect */
.anim-wrap {
    overflow: hidden; /* オーバーフロー部分は非表示 */
}
.anim-re {
    opacity: 0;
}
/* インライン要素にアニメーションを適応させる */
span.anim-wrap,
span.anim-re {
    display: inline-block;
}
/* 画面に表示されたらクラス付与 */
.play-re {
    -webkit-animation-name: play;
            animation-name: play; /* keyframesで指定した名前 */
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(.8,0,.5,1);
            animation-timing-function: cubic-bezier(.8,0,.5,1);
    position: relative;
    opacity: 1 !important;
}
.play-re:before {
    -webkit-animation-name: maskOut;
            animation-name: maskOut; /* keyframesで指定した名前 */
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(.8,0,.5,1);
            animation-timing-function: cubic-bezier(.8,0,.5,1);
    content: '';
    position: absolute;
    top: 0;
    left: 1px; /* インライン要素の際に右側に1px残ってしまう線を避ける */
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% ); */
    background-color: #f16984;
}

@-webkit-keyframes play {
    from {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%); /* 左から右へ */
        /* transform: translateX(100%); /* 右から左へ */
        /* transform: translateY(-100%); /* 上から下へ */
        /* transform: translateY(100%); /* 下から上へ */
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0); /* 左右終了 */
        /* transform: translateY(0); /* 上下終了 */
    }
}
@keyframes play {
    from {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%); /* 左から右へ */
        /* transform: translateX(100%); /* 右から左へ */
        /* transform: translateY(-100%); /* 上から下へ */
        /* transform: translateY(100%); /* 下から上へ */
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0); /* 左右終了 */
        /* transform: translateY(0); /* 上下終了 */
    }
}
@-webkit-keyframes maskOut {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0); /* 左右開始 */
        /* transform: translateY(0); /* 上下開始 */
    }
    to {
        -webkit-transform: translateX(100%);
                transform: translateX(100%); /* 左から右へ */
        /* transform: translateX(-100%); /* 右から左へ */
        /* transform: translateY(100%); /* 上から下へ */
        /* transform: translateY(-100%); /* 下から上へ */
    }
}
@keyframes maskOut {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0); /* 左右開始 */
        /* transform: translateY(0); /* 上下開始 */
    }
    to {
        -webkit-transform: translateX(100%);
                transform: translateX(100%); /* 左から右へ */
        /* transform: translateX(-100%); /* 右から左へ */
        /* transform: translateY(100%); /* 上から下へ */
        /* transform: translateY(-100%); /* 下から上へ */
    }
}

/* アニメーション：スライドイン */
.anim-si {
    opacity: 0;
}
/* インライン要素にアニメーションを適応させる */
span.anim-si {
    display: inline-block;
}
/* 画面に表示されたらクラス付与 */
.play-si {
    -webkit-animation-name: slideIn;
            animation-name: slideIn;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    /* -webkit-animation-timing-function: ease;
            animation-timing-function: ease; */
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
            animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);;
    opacity: 1 !important;
}
@-webkit-keyframes slideIn {
    from {
        -webkit-transform: translateX(-30px);
                transform: translateX(-30px); /* 左からスライドイン */
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        -webkit-transform: translateX(-30px);
                transform: translateX(-30px); /* 左からスライドイン */
        opacity: 0;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}


/* =========================================================
 * Page Hero：背景スライドショー：KenBurns（CSSのみで実装）（不要な場合は削除）
 * GP：Elementsで編集
 * Page HeroのElement Classesにslideクラスを指定
 * 参考　https://codepen.io/ibanez182/pen/LZPgrY
 * 3枚バージョンのCSS　https://codepen.io/xxx-web/pen/ebMWVP
 * 4枚バージョンのCSS　https://codepen.io/xxx-web/pen/wRmdye
 * 5枚バージョンのCSS　https://codepen.io/xxx-web/pen/ebMWqo
========================================================= */
.page-hero.slide {
    position: relative;
    overflow: hidden;
}
.slide .section-mainimg {
    position: relative;
    z-index: 9; /* スライドの枚数以上、10以下指定（GPのスティッキーナビの下になるように） */
    /* 
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
            box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.5);
    padding: 1em 2em;
    */
}
.section-slideshow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.slideshow-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: no-repeat 50% 50%;
    background-size: cover;
    -webkit-animation-name: kenburns;
            animation-name: kenburns;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-duration: 18s;
            animation-duration: 18s;
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}
.slideshow-image:nth-child(1) {
    -webkit-animation-name: kenburns-1;
            animation-name: kenburns-1;
    z-index: 2;
}
.slideshow-image:nth-child(2) {
    -webkit-animation-name: kenburns-2;
            animation-name: kenburns-2;
    z-index: 1;
}
.slideshow-image:nth-child(3) {
    -webkit-animation-name: kenburns-3;
            animation-name: kenburns-3;
    z-index: 0;
}

@-webkit-keyframes kenburns-1 {
    0% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    1.5625% {
      opacity: 1;
    }
    31.7675% {
      opacity: 1;
    }
    34.8925% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    98% {
      opacity: 0;
      -webkit-transform: scale(1.2117647059);
              transform: scale(1.2117647059);
    }
    100% {
      opacity: 1;
    }
}
@keyframes kenburns-1 {
    0% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    1.5625% {
      opacity: 1;
    }
    31.7675% {
      opacity: 1;
    }
    34.8925% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    98% {
      opacity: 0;
      -webkit-transform: scale(1.2117647059);
              transform: scale(1.2117647059);
    }
    100% {
      opacity: 1;
    }
}
@-webkit-keyframes kenburns-2 {
    31.7675% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    34.8925% {
      opacity: 1;
    }
    65.0975% {
      opacity: 1;
    }
    68.2225% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
}
@keyframes kenburns-2 {
    31.7675% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    34.8925% {
      opacity: 1;
    }
    65.0975% {
      opacity: 1;
    }
    68.2225% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
}
@-webkit-keyframes kenburns-3 {
    65.0975% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    68.2225% {
      opacity: 1;
    }
    98.4375% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
}
@keyframes kenburns-3 {
    65.0975% {
      opacity: 1;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    68.2225% {
      opacity: 1;
    }
    98.4375% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
              transform: scale(1);
    }
}

/* =========================================================
 * Page Hero：背景動画（不要な場合は削除）
 * GP：Elementsで編集
 * Page HeroのElement Classesにvideoクラスを指定
========================================================= */
.page-hero.video {
    position: relative;
    overflow: hidden;
    /* 動画へのオーバーレイ指定 */
    /* background-image: radial-gradient(circle, rgba(63,94,251,1) 0%, rgba(252,70,107,1) 100%); */
    background-image: url(img/dot1.png);
}
.video .section-mainimg {
    position: relative;
    z-index: 1;
}
.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.55; /* ElementのBackground Colorや上記page-heroで指定した背景色やドットをオーバーレイする場合は0.Xで指定 */
}

video[poster] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}


/* =========================================================
 * アニメーション：ローディング（不要な場合は削除）
 * 要変更：page-id
 * CodePen　https://codepen.io/xxx-web/pen/jXZNdX
 * SpinKit　http://tobiasahlin.com/spinkit/
 * ThreeDots　https://nzbin.github.io/three-dots/
========================================================= */
/* アニメーションを読み込むページだけスクロールバーを最初から表示させておく */
/* 全ページでローディングアニメーションを読み込む場合はクラス指定不要 */
body.page-id-203 {
    overflow-y: scroll !important;
}
/* ローディング前後の表示・非表示 */
body.page-id-203 > .header-wrap,
body.page-id-203 > .page-hero,
body.page-id-203 > #page,
body.page-id-203 > .site-footer {
    opacity: 0;
}
body.page-id-203.pg-loaded > .header-wrap,
body.page-id-203.pg-loaded > .page-hero,
body.page-id-203.pg-loaded > #page,
body.page-id-203.pg-loaded > .site-footer {
    opacity: 1;
}

/* SpinKitからCSSを利用、HTMLは外観＞Elements内のJSで指定 */
.sk-fading-circle {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
  }
.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
            transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
            transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
            transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
            transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
            transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
@keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; } 
}

/* =========================================================
* 追加CSS（コメントを付けてわかりやすく記載して下さい）
========================================================= */
.txt-brown{
	color: #917261!important;
}
.txt-green{
	color: #79c344!important;
}
.txt-orange{
	color: #ff9c32!important;
}
.txt-yellow-orange{
	color: #ffb503!important;
}
.txt-purple-pink{
	color: #ef84be!important;
}
.txt-purple{
	color: #b26dcc!important;
}
.txt-brown{
	color: #735d59!important;
}
.bg-white{
	background: #fff!important;
}
.bg-orange{
	background: #ff9c32!important;
}
.bg-lt-pink{
	background: #f7edf1!important;
}
.bg-lt-yellow{
	background: #faf9ed!important;
}
.bg-lt-green{
	background: #ebf5db!important;
}
.bg-ivory{
	background: #f5f2ef!important;
}
.round{
	border-radius: 6px;
	overflow: hidden;
}
.border-bottom {
	border-bottom: solid 1px #e5e4e3;
}
.border-bottom-dotted {
	border-bottom: dotted 1px #e2dfdd;
}
.ttl-pink{
	background: #f7edf1;
	max-width: 500px;
	text-align: center;
	margin: 0 auto;
	border-radius: 6px;
}
ul.list-lined li{
	border-bottom: dotted 1px #e5e4e3;
	list-style: none;
   padding: 0.5em 0;
}

/*背景*/
.bg-dot{
	background: url(img/bg_dot.png);
	background-size: 15px 15px;
}

/*ページタイトル*/
.ttl-box{
	background: rgba(255,255,255,0.9);
	display: inline-block;
	border-radius: 6px;
	padding: 1.5em 2em;
	min-width: 300px;
	text-align: center;
}
.ttl-line{
	background: #f16984;
	width: 200px;
	height: 3px;
	border-radius: 1px;
	margin: 15px auto;
}
.page-link{
	padding-top: 100px;
	margin-top: -100px;
}

@media (max-width: 768px) {
	.ttl-box{
	border-radius: 6px;
	padding: 1em 0.5em;
	min-width: auto;
	text-align: center;
   min-width: 90%;
}

}

/*投稿タイトル*/
.entry-title{
	padding: 0.5em;
	background: #f9f8f8;
	border-radius: 6px;
}

/*トップページ*/
body.home{
	background: url(img/bg_dot.png);
	background-size: 15px 15px;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    background-color: #fff;
    border-radius: 6px;
}
.generate-back-to-top, .generate-back-to-top:visited {
    border-radius: 50%;
	font-weight: bold;
}
.section-toptxt{
	font-size: 120%;
	text-align: center
}
@media (max-width: 768px) {
.section-toptxt{
	font-size: 17px;
	text-align: left;
}
}
.section-service{
	background-size: 1680px auto;
	background-repeat: no-repeat;
	background-position: top center;
}
.section-service img{
	max-width: 280px;
	width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.section-service .service-home{
	margin: 0 auto;
}
.section-service .service-home > div{
	margin-top: -20px;
}
.section-service .service-home > div h3{
	background: #faf9ed;
	display: block;
	padding: 10px 10px 10px 10px;
	border-radius: 3px;
	overflow: hidden;
	text-align: center;
	display: table;
	position: relative;
	top: -40px;
	min-height: 90px;
	width: 90%;
	margin: 0 auto;
	font-size: 24px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f9dc4a+3,faf9ed+3,faf9ed+3,faf9ed+97,f16984+97,faf9ed+97,f16984+97 */
background: rgb(249,220,74); /* Old browsers */
background: -moz-linear-gradient(-45deg, rgba(249,220,74,1) 3%, rgba(250,249,237,1) 3%, rgba(250,249,237,1) 3%, rgba(250,249,237,1) 97%, rgba(241,105,132,1) 97%, rgba(250,249,237,1) 97%, rgba(241,105,132,1) 97%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, rgba(249,220,74,1) 3%,rgba(250,249,237,1) 3%,rgba(250,249,237,1) 3%,rgba(250,249,237,1) 97%,rgba(241,105,132,1) 97%,rgba(250,249,237,1) 97%,rgba(241,105,132,1) 97%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, rgba(249,220,74,1) 3%,rgba(250,249,237,1) 3%,rgba(250,249,237,1) 3%,rgba(250,249,237,1) 97%,rgba(241,105,132,1) 97%,rgba(250,249,237,1) 97%,rgba(241,105,132,1) 97%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.section-service .service-home > div h3 div{
 	display: table-cell;
 	vertical-align: middle;
}
.section-service .service-home > div h3 span{
   font-size: 14px;
	display: block;
	line-height: 1.4;
	margin-bottom: 3px;
	color: #735d59;
}
.section-service .service-home > div h3 i{
	font-size: 80%;
	vertical-align: middle;
}
.section-service .service-home a:hover h3{
	background: #f7edf1;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f9dc4a+3,faf9ed+3,ffffff+3,ffffff+97,f16984+97,f16984+98 */
background: rgb(249,220,74); /* Old browsers */
background: -moz-linear-gradient(-45deg, rgba(249,220,74,1) 3%, rgba(250,249,237,1) 3%, rgba(255,255,255,1) 3%, rgba(255,255,255,1) 97%, rgba(241,105,132,1) 97%, rgba(241,105,132,1) 98%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, rgba(249,220,74,1) 3%,rgba(250,249,237,1) 3%,rgba(255,255,255,1) 3%,rgba(255,255,255,1) 97%,rgba(241,105,132,1) 97%,rgba(241,105,132,1) 98%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, rgba(249,220,74,1) 3%,rgba(250,249,237,1) 3%,rgba(255,255,255,1) 3%,rgba(255,255,255,1) 97%,rgba(241,105,132,1) 97%,rgba(241,105,132,1) 98%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9dc4a', endColorstr='#f16984',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.section-link a{
	background: #f55677;
	display: block;
	position: relative;
}
.section-link div:nth-child(even) a{
	background: #e9b30f;
}
.section-link a img{
	opacity: 0.4;
	filter: contrast(110%);
	transition: opacity 0.3s ease-out;
}
.section-link a:hover img{
	opacity: 1;
	filter: contrast(100%);
}
.section-link a h4{
	background: rgba(255,255,255,0.95);
	text-align: center;
	padding: 0.75em 0.5em 0.25em 0.5em;
	width: 50%;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25%;
	margin-top: -1.5em;
	font-size: 23px;
	line-height: 1.2em;
}
.section-link a h4 span{
	display: block;
	font-size: 11px;
	font-family: 'Ramabhadra', sans-serif;
}


/*施設・サービス案内*/
.section-service-info h2{
	font-size: 42px;
	line-height: 1.3em;
	text-align: center;
}
.section-service-info h2:after{
	content: "";
	background :#f16984;
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 1px;
	margin: 10px auto;
}
.section-service-info .service-cate{
	font-size: 18px;
	padding: 0;
	display: block;
	vertical-align: middle;
	color: #735d59;
	text-align: center;
}
.section-service-info .service-copy{
	line-height: 1.3em;
	font-size: 20px;
	margin-bottom: 0.5em;
	color: #fff;
	background: #faf9ed;
	padding: 10px;
	text-align: center;
}
.section-service-info table,
.section-service-info table th,
.section-service-info table td{
	border: none;
	background: none;
}
.section-service-info table th,
.section-service-info table td{
	padding: 5px 10px;
	border-bottom: dotted 1px #e5e4e3;
}
.section-service-info table th{
	padding: 5px 0;
}
.section-service-info table tr:last-child th,
.section-service-info table tr:last-child td{
	border-bottom: none;
	vertical-align: top;
}
.section-service-info table th{
	width: 25%;
}
.section-service-info table th div{
	padding: 8px 5px;
	text-align: center;
	background: #faf9ed;
	border-radius: 6px;
	line-height: 1.2;
}
.section-service-info table tr:nth-child(even) th div{
	background: #f5f5f5;
}
.section-service-info .nk-responsive {
    padding-bottom: 56.25%; 
}
.section-service-info .service-icon p{
	line-height: 1.4em;
	margin-top: 1em;
	display: inline-block;
	vertical-align: middle;
}
.section-service-info .service-icon img{
	width: 100%; 
	max-width: 70px;
	border-radius: 6px;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #eee;
}

@media (max-width: 768px) {
.section-service-info h2{
	font-size: 30px;
	line-height: 1.3em;
	margin-top: 0.5em;
}
.section-service-info .nk-responsive {
    padding-bottom: 75%; 
}
.section-service-info table th,
.section-service-info table td{
	padding: 10px;
	border-bottom: none;
}
}

/*会社案内*/
.section-philosophy {
	font-size: 120%;
	text-align: center;
}
.section-philosophy .philosophy img{
	max-width: 700px;
	width: 100%;
	margin-bottom: 30px;
}
.section-philosophy .philosophy-kaigo,
.section-philosophy .philosophy-staff{
	font-size: 25px;
	padding: 10px;
	border-radius: 20px;
	margin: 0;
	text-align: center;
}
.section-philosophy  p{
	text-align: center;
}
.section-philosophy .philosophy-inner{
	background: url(img/bg_mark.png) top center no-repeat;
	background-size: 680px auto;
	padding: 40px;
	border-radius: 10px;
}

@media (max-width: 768px) {
.section-philosophy p{
	font-size: 16px;
}
.section-philosophy .philosophy-kaigo,
.section-philosophy .philosophy-staff{
	font-size: 18px;
	padding: 0;
	margin: 10px 0 0 0;
}
.section-philosophy .philosophy-inner{
	margin: 0;
	padding: 0;
	background: url(img/bg_mark.png) top center no-repeat;
	background-size: 100% auto;
}

}
/*関連事業*/
.section-business .business-img img{
	max-width: 250px;
	width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.section-service-info h2.orika{
	color: #92ce4d;
}
.section-service-info h2.orika:after{
	background :#92ce4d;
}

/*採用情報*/
.section-recruit .recruit-voice img{
	max-width: 250px;
	width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
.section-recruit ul{
	margin: 0;
}
.section-recruit ul li{
	list-style: none;
	padding: 5px; 
	border-bottom: dotted 1px #e5e4e3;
}
@media (max-width: 768px) {
.section-recruit .recruit-voice img{
	max-width: 200px;
	width: 100%;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
}
}
/*プライバシーポリシー*/
.section-privacy h2{
	background: #f5f2ef;
	padding: 0.5em 1em;
}


/* CF7のPタグ自動挿入調整 */
.wpcf7 table p:last-child { margin-bottom: 0; }
