/*
 Theme Name:   Standard Design B
 Theme URI:    https://standard-co.jp
 Description:  Standard Design B
 Author:       Standard Inc.
 Author URI:   https://standard-co.jp
 Template:    generatepress
 Version:      0.4

 テーマ：GeneratePress 3.0〜 + GP Premium
 →https://generatepress.com/
 CSSフレームワーク：Tailwindcss 2.0〜
 →https://tailwindcss.com/

・上書きが必要なものは当style.cssに記述
・当社固有のCSSには「std-xxx」と命名している
・IE11は非対応でOK

 ■目次
・基本設定
・Tailwindcss調整・ユーティリティ不足分追加
・GeneratePress：調整
・GeneratePress：追加
・ロゴ・ヘッダー
・ナビゲーション
・パンクズ
・ページネーション
・サイドバー
・フッター
・コンタクトフォーム
・テーブル
・リスト
・ボタン
・スクロールバー
・トップページ：メインビジュアル
・最新情報
・見出しデザイン
・ニュースティッカー
・背景スライドショー
〜下記未対応〜
・要素のアニメーション
・Page Hero：背景動画（不要な場合は削除）
・アニメーション：ローディング（不要な場合は削除）

・サイトオリジナルのCSS〜追加のCSSはここから記載〜
*/

/* =========================================================
* 基本設定
* テーマのレイアウトやフォントなどのベース設定はカスタマイザーで行う
* 外観 > カスタマイズ
* カスタマイザーで設定しきれない部分や調整をCSSで追加
========================================================= */
/* カスタムプロパティ指定 */
/* サンセリフ（ゴシック系）、セリフ（明朝系）はサイトのテイストに合わせて調整 */
/* フォントは外観>Elements>wp_head（全ページ出力）でlinkとして読み込み */
:root {
    --main-color: #f088b9;
    --main-color-hover: #ff9ac9;
    --main-font-color: #ffffff;

    --accent-color-o: #eda924;
    --accent-color-g: #8bc22d;
	
    --main-font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    --main-font-en: 'Roboto Condensed', sans-serif;

    --font-sans-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    --font-serif-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 游明朝, YuMincho, HGS明朝E, 'MS PMincho', serif;
    --font-sans-en: 'Roboto Condensed', sans-serif;
    /* --font-sans-en: 'Montserrat', sans-serif; */
    --font-serif-en: 'Playfair Display', serif;

    --font-tel: 'Baloo 2', sans-serif;
    /* --font-tel: 'Source Serif Pro', serif; */
	
	--font-rounded: 'Kosugi Maru', sans-serif;
	--font-rounded-en: 'Baloo 2', sans-serif;
}

body {
    font-family: var(--font-sans-jp);
    /* カーニングの設定 */
    letter-spacing: 1.5px;
    font-feature-settings: "palt" 1;
    -webkit-font-kerning: auto;
            font-kerning: auto;
}
@media (max-width: 768px) {
    body {
        letter-spacing: 0;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font-jp);
}
button, input, select, textarea {
    font-family: var(--main-font-jp);
}
dl, dt, dd {
    margin: 0;
}
ol, ul {
    margin: 0 0 0 1.5rem;
}
/* 画像初期設定 */
img {
    vertical-align: middle;
}
a:hover img {
    opacity:0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}
/* アイコンカラー */
i.fa { color: var(--main-color); }
/* 背景カラー */
.std-bg-main {
    background-color: var(--main-color);
}
/* テキストカラー */
.main-color {
    color: var(--main-color);
}
/* リンクカラー */
a.main-color {
    color: var(--main-color);
}
a.main-color:hover, a.main-color:active, a.main-color:focus {
    color: #333;
}

/* フォント指定 */
.sans-jp  { font-family: var(--font-sans-jp) !important; }
.serif-jp { font-family: var(--font-serif-jp) !important; }
.sans-en  { font-family: var(--font-sans-en) !important; }
.serif-en { font-family: var(--font-serif-en) !important; }
.font-tel { font-family: var(--font-tel) !important; }

/* 見出しフォントサイズ：カスタマイザーの設定「Typography＞Headings」に合わせる */
.h1,.std-heading-lv1 {font-size: 40px; line-height: 1.2;}
.h2,.std-heading-lv2 {font-size: 36px; line-height: 1.2;}
.h3,.std-heading-lv3 {font-size: 28px; line-height: 1.2;}
.h4,.std-heading-lv4 {font-size: 24px; line-height: 1.4;}
.h5,.std-heading-lv5 {font-size: 20px; line-height: 1.6;}
.h6,.std-heading-lv6 {font-size: 16px; line-height: 1.8;}
@media (max-width: 768px) {
    .h1,.std-heading-lv1 {font-size: 30px;}
    .h2,.std-heading-lv2 {font-size: 28px;}
    .h3,.std-heading-lv3 {font-size: 24px;}
    .h4,.std-heading-lv4 {font-size: 22px;}
    .h5,.std-heading-lv5 {font-size: 20px;}
}
@media (max-width: 1024px) {
    /* フォームの横幅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%;
    }
}

/* IE警告（IEは非対応の旨掲載） */
.ie-message-box {
    background-color: #eee;
    text-align: center;
    padding: 40px;
}
.ie-message-box h2 {
    color: rgba(239, 68, 68, 1);
    margin-bottom: 20px;
}

/* =========================================================
* Tailwindcss調整・ユーティリティ不足分追加
========================================================= */
.z-100 {
	z-index: 100;
}
.z-200 {
	z-index: 200;
}
.z-300 {
	z-index: 300;
}
/* テキストシャドウ */
.std-text-shadow {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.1);
}
/* レスポンシブ対応 */
.std-responsive {
    position: relative;
    /* padding-bottom: 75%; */ /* 4:3の場合 */
    padding-bottom: 56.25%; /* 16:9の場合 */
    width: 100%;
    height: 0;
    overflow: hidden;
}
.std-responsive iframe,
.std-responsive object,
.std-responsive embed {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/* Googleマップ ビジネスプロフィール（クチコミ含む）非表示 */
/* 参考URL　https://monakanote.net/coding/css-googlemaps-20200624/ */
.std-gbp-hidden {
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.std-gbp-hidden iframe {
	width: 100%;
	height: 850px;
	margin-top: -140px;
}

/* Googleマップ 埋め込みコードカスタマイズ（GoogleマップAPIの代替バージョン） */
/* 親要素の設定 */
.std-google-map {
    position: relative;
    width: 100%; /* 横幅は親要素に合わせて自動調整 */
    height: 500px; /* 縦幅を固定 */
    overflow: hidden; /* クチコミ非表示用 */
}
/* iframeの設定 */
.std-google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 横幅を100%に設定し、親要素に合わせる */
    height: 100%; /* 親要素の高さに合わせる */
    border: none; /* 枠線を非表示にする */
}
/* クチコミ非表示 */
/* 参考URL　https://monakanote.net/coding/css-googlemaps-20200624/ */
.std-google-map iframe{
    position: absolute;
    height: 800px;
    margin-top: -150px;
}
/* カラー調整 */
/* 参考サイト　https://cdg-blog.jp/css_gmap_color/ */
.std-google-map iframe{
    /* filter: saturate(70%); /* 彩度調整 */
    filter: grayscale(15%); /* モノクロ調整 */
}

/* =========================================================
* GeneratePress：調整
* カスタマイザーで調整しきれない部分
========================================================= */
/* 投稿系：サイドバー有りのコンテンツとサイドバーのウィジェットを線で囲む */
.site-main article:not(.page) .inside-article,
.search .site-main article .inside-article,
.search-no-results .site-main .inside-article,
.error404 .site-main .inside-article,
.sidebar .widget {
  /*  border: 1px solid #e3e3e3; */
}
/* カテゴリーのページヘッダーを非表示（ElementsのHeaderを利用の場合） */
body.category .page-header,
body.archive .page-header,
body.tag .page-header,
body.date .page-header,
body.search .page-header {
    display: none;
}
/* カスタマイザーのセパレート値（40）を上書き */
/* パンくずの間の余白調整 */
.separate-containers.right-sidebar .site-main,
.separate-containers.left-sidebar .site-main {
    margin-top: 20px;
}
.separate-containers .inside-right-sidebar, 
.separate-containers .inside-left-sidebar {
    margin-top: 20px;
}

/* =========================================================
* GeneratePress：追加
* GPマニュアル：https://docs.generatepress.com/collection/sections/
========================================================= */
/* フルワイドのセクション：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-left:auto;margin-right:auto;}
.generate-sections-900  .generate-sections-inside-container {max-width: 900px; margin-left:auto;margin-right:auto;}
.generate-sections-1000 .generate-sections-inside-container {max-width: 1000px;margin-left:auto;margin-right:auto;}
.generate-sections-1100 .generate-sections-inside-container {max-width: 1100px;margin-left:auto;margin-right:auto;}
.generate-sections-1200 .generate-sections-inside-container {max-width: 1200px;margin-left:auto;margin-right:auto;}
.generate-sections-1300 .generate-sections-inside-container {max-width: 1300px;margin-left:auto;margin-right:auto;}
.generate-sections-1400 .generate-sections-inside-container {max-width: 1400px;margin-left:auto;margin-right:auto;}
.generate-sections-1500 .generate-sections-inside-container {max-width: 1500px;margin-left:auto;margin-right:auto;}
.generate-sections-1600 .generate-sections-inside-container {max-width: 1600px;margin-left:auto;margin-right:auto;}
.generate-sections-1700 .generate-sections-inside-container {max-width: 1700px;margin-left:auto;margin-right:auto;}
.generate-sections-1800 .generate-sections-inside-container {max-width: 1800px;margin-left:auto;margin-right:auto;}

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

/* =========================================================
* ロゴ・ヘッダー
* GPマニュアル
* https://docs.generatepress.com/collection/header/
========================================================= */
.main-title {
    font-family: var(--main-font-jp);
}
.site-description {
    font-family: var(--main-font-jp);
}

/* サイトタイトル（テキスト） */
@media (max-width: 1024px) {
    .inside-header {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        justify-content: center;
    }
}
@media (min-width: 1024px) and (max-width: 1260px) {
    .inside-header {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ロゴ画像設定 */
/* SVG以外の画像（jpg,png,gif等）は縦幅2倍で作成（滲まないように）、またはカスタマイザーでRetina Logoを指定 */
/* SVGの場合は縦＋横サイズも指定する */
.site-header .header-image,
.site-header .main-navigation .navigation-logo img,
#mobile-header.mobile-header-navigation .mobile-header-logo img {
    height: 60px;
    width: auto;
    /* width: 183px; /* ロゴの縦横比に合わせて横幅調整（SVG以外の場合はコメントアウト可） */
}
h1.site-logo {
    margin-bottom: 0;
}
/* ロゴ画像設定ここまで */

/* サイトタイトル前にアイコン設置ここから */
/* 不要な場合はコメントアウト */
/* SVG画像の場合はロゴの縦横比に合わせてheight、widthいずれも指定 */
.header-icon {
    margin: 0 10px 0 0;
    height: 54px;
    width: 54px;
}
@media (max-width: 1024px) {
    .header-icon {
       /* display: none;*/
    }
   /*  .site-header .inside-header .main-title::before {
        content: '';
        background-image: url('https://hanamomo-clinic.com/wp/wp-content/uploads/logo.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        height: 45px;
        width: 45px;
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }*/
    .site-header .inside-header .main-title {
        margin-bottom: 0px;
    }
}
/* サイトタイトル前にアイコン設置ここまで */

/* ヘッダーCTAここから */
/* 外観 > ウィジェット > Header */
.header-widget {
    /* width: 440px; /* コンテンツに応じて適宜調整 */
}
.std-header-cta {
    height: 54px; /* サイトタイトル・ロゴ部分の高さに合わせる */
}
.std-header-tel {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.02em;
}
.std-header-text {
    font-size: 12px;
    line-height: 18px;
}
@media (max-width: 1024px) {
    .header-widget {
        display: none;
    }
}
/* ヘッダーCTAここまで */

/* =========================================================
* ナビゲーション
* GPマニュアル
* https://docs.generatepress.com/collection/primary-navigation/
* https://docs.generatepress.com/collection/slide-out-navigation/
========================================================= */
#primary-menu {
    width: 100%;
}
/* メニューの数に応じて調整（widthの指定無しでもOK） */
#primary-menu ul.menu > li {
    width: calc( 99.9% / 7 ); ナビの数で割る　ナビの仕切り線を無くす場合は100%とする */
    text-align: center;
}
/* 画面幅が小さくなったときに横幅指定解除 */
@media (max-width:1200px) {
    #primary-menu ul.menu > li {
        /* width: auto; */
    }
}
/* サブナビゲーション（子メニュー）の横幅 = カスタマイザーで指定*/
#primary-menu ul ul {
    /* width: auto; */
    white-space: nowrap;
}

/* ナビゲーションの左右の余白（20px）を削除 */
.nav-below-header .main-navigation .inside-navigation.grid-container, 
.nav-above-header .main-navigation .inside-navigation.grid-container {
    padding: 0;
}
/* ナビゲーションの上下に線 */
.main-navigation {
    /* border-top: 1px solid #ddd; */
    /* border-bottom: 1px solid #ddd; */
}
/* 検索結果・404ページのHeaderが無い場合のナビには下線 */
/* .search .main-navigation,
.search-no-results .main-navigation,
.error404 .main-navigation {
    border-bottom: 1px solid #ddd;
}*/
/* ナビゲーション間の仕切り線 */
/*.main-navigation ul.menu > li::before,
.main-navigation ul.menu > li:last-child::after  {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 22px;
    background: #ccc;
    z-index: 1;
}*/
.main-navigation ul.menu > li::before {
    left: 0px; /* 左側に仕切り線 */
}
.main-navigation ul.menu > li:last-child::after {
    right: 0px; /* 右側に仕切り線 */
}

/* スティッキーナビにサイトタイトル表示（せせる場合はCodeSnippetsでON） */
/* スティッキーナビの左側にタイトル、右側にメニューを配置（flex-endを上書き） */
/* 
.nav-align-right .inside-navigation {
    justify-content: space-between;
}

.main-title.std-sticky {
    display: none;
}
.navigation-stick .main-title.std-sticky {
    display: block;
}
*/

/* スライドアウトナビのサブメニュー時の「▼」クリック可能領域を広げる */
@media (max-width: 768px) {
    li.menu-item-has-children .dropdown-menu-toggle {
        padding-left: 15px !important;
        padding-right: 15px !important;
        border-left: 1px solid #ddd;
    }
    ul.sub-menu li.menu-item-has-children .dropdown-menu-toggle {
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
}
@media (min-width: 769px) {
    #sticky-navigation.is_stuck.main-navigation ul li {
        letter-spacing: 1.5px;
    }
}
/* スライドアウトナビの装飾 */
#generate-slideout-menu.slideout-navigation.do-overlay .inside-navigation {
    padding-top: 0;
}
#generate-slideout-menu .slideout-menu > li {
    border-bottom: 1px solid #ddd;
    text-align: left !important;
    margin: 0;
}
#generate-slideout-menu .slideout-menu > li li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left !important;
    margin: 0;
}
#generate-slideout-menu .slideout-menu > li li:last-of-type {
    border-bottom: none;
}
.slideout-navigation.main-navigation .main-nav ul li a {
    padding-left: 15px;
    width: 100%;
}
/* スライドアウトナビのウィジェトの余白調整 */
.main-navigation.slideout-navigation .main-nav, 
.main-navigation.slideout-navigation .slideout-widget:not(:last-child),
.main-navigation.slideout-navigation .slideout-widget {
    margin: 0;
}
.slideout-widget {
    width: 100%;
}

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

/* GP3.3.0から発生するバグ？（モバイル時のナビが左寄せになってしまう現象）の回避 */
@media (max-width: 1024px) {
    .has-menu-bar-items button.menu-toggle {
        flex-grow: 1;
    }
}

/* =========================================================
* パンクズ
* Breadcrumb NavXTプラグイン利用
* 外観>Elements>パンくず出力
========================================================= */
.std-breadcrumbs {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    padding-top: 20px;
}
.sections-no-sidebars .std-breadcrumbs {
    padding: 20px 0;
}
/* オーバーフローした場合、改行させずに…表示 */
.std-breadcrumbs .grid-container {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .std-breadcrumbs {
        padding: 20px 10px 0 10px;
    }
    .sections-no-sidebars .std-breadcrumbs {
        padding: 20px 10px;
        border-bottom: 1px solid #eee;
    }
}

/* =========================================================
* ページネーション
========================================================= */
.paging-navigation {
    text-align: center;
}
.paging-navigation .page-numbers:not(.dots):not(.prev):not(.next) {
    background-color: var(--main-color);
    color: var(--main-font-color);
    padding: 2px 8px;
}
.paging-navigation a.page-numbers:not(.dots):not(.prev):not(.next):hover {
    background-color: var(--main-color-hover);
}

/* =========================================================
* サイドバー
* GPマニュアル：https://docs.generatepress.com/collection/sidebars/
========================================================= */
/* サイドバーウィジェットのタイトル設定 */
.sidebar .widget .widget-title {
    color: var(--main-color);
    border-bottom: solid 2px var(--main-color);
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: -20px -20px 20px -20px; /* .sidebar .widgetのpadding打ち消し */
	font-family: var(--font-rounded);
	font-weight: normal;
}
/* セレクトボックスデザイン調整 */
.sidebar .widget select {
    width: 100%;
    padding: 5px;
}
/* ウィジェット：最近の投稿 */
.sidebar .widget .post-date {
    display: block;
    color: #777;
}

/* WP Show Postsプラグインでのお知らせ表示 */
/* ダッシュボード > WP Show Posts > サイドバーへ最新情報表示 */
.sidebar .wp-show-posts-entry-meta {
    font-size: 13px;
    text-align: right;
}
.sidebar .wp-show-posts-image.wpsp-image-left {
    margin-right: 15px;
}
.sidebar .wp-show-posts .wp-show-posts-entry-title {
    /* タイトルのフォントはWP Show Postsプラグインの設定画面 */
    line-height: 1.4;
    font-weight: 400;
}
@media (max-width: 768px) {
    .sidebar .wp-show-posts-image.wpsp-image-left {
        float: left; /* サイドバーのWP Show Posts（最新情報）は左寄せ維持 */
    }
}

/* =========================================================
* フッター
* GPマニュアル：https://docs.generatepress.com/collection/footer/
========================================================= */
.std-footer-logo {
    height: 50px;
    width: auto;
    /* width: 183px; /* SVGはロゴの縦横比に合わせて横幅指定 */
    margin: 0 auto;
}
/* フッターにカスタムメニューを設置した場合 */
@media (min-width:769px) {
    .site-footer .widget_nav_menu {
        text-align: center;
    }
    .site-footer ul.menu li {
        display: inline-block;
        list-style-type: none;
        margin: 0 20px 0 0;
    }
}
.site-footer ul.menu li {
    padding: 0 0 0 20px;
}
.site-footer ul.menu li::before {
    font-family: 'FontAwesome';
    content: "\f138";
    position: absolute;
    left : 0;
    color: var(--main-color);
}
/* フッターサイトマップ */
#footer-widgets .footer-sitemap ul li {
    margin-bottom: 0;
}
/* コピーライト */
.copyright-bar {
    width: 100%;
}
/* スマホ用CTA */
.std-mobile-cta {
    background-color: var(--main-color);
}
.std-mobile-cta > div:first-of-type {
     /*  border-right: 1px solid rgba(255,255,255,0.3);*/
}
/* フッター固定のCTAとかぶらないように */
@media (max-width: 768px) {
    /* スマホCTA（タップでお電話）対応 */
    .generate-back-to-top, 
    .generate-back-to-top:visited {
        bottom: 55px;
        right: 10px;
        z-index: 200;
    }
    footer.site-info {
        margin-bottom: 45px; 
    }
}

/* =========================================================
* コンタクトフォーム
* Contact Form 7プラグイン利用
========================================================= */
/* チェックボックス縦並び */
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::-moz-placeholder          { color: #aaa; }
input::placeholder               { color: #aaa; }
::-webkit-input-placeholder      { color: #aaa; }
:-ms-input-placeholder           { color: #aaa; }
::-ms-input-placeholder          { color: #aaa; }
::-moz-placeholder               { color: #aaa; }
::placeholder                    { color: #aaa; }

/* 必須項目 */
.std-form-required {
    color: #fff;
    background: #e75757;
    font-size: 12px;
    padding: 1px 5px;
    margin-right: 7px;
}
/* ローダーとメッセージの出力位置を微調整 */
.wpcf7 .wpcf7-spinner {
    display: block;
    margin: 0.5em auto 0 auto;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

/* =========================================================
* テーブル（基本はGeneratePressのテーブル）
* .table-bb：下線付きのテーブル
* .table-color：色付きのthに変更
* .table-tel：電話番号・FAX番号用
* .table-scrollでラップするとモバイル時に表を左右にスクロールさせる（3カラム以上ある場合はオススメ）
========================================================= */
/* テーブル：標準 */
table {
    margin: 0;
    background: #ffffff;
}
table th {
    text-align: left;
    font-weight: 500;
    width: 200px; /* 適宜変更 */
    background-color: #f3f3f3;
}
table th,
table td {
    padding: 20px;
}
/* テーブル：下線バージョン */
table.table-bb, 
table.table-bb th,
table.table-bb td {
    border: none;
}
table.table-bb th {
    border-bottom: 1px solid #555;
}
table.table-bb td {
    border-bottom: 1px solid #ccc;
}
/* 先頭のみ上部にも線を引く */
table.table-bb tr:first-of-type th {
    border-top: 1px solid #555;
}
table.table-bb tr:first-of-type td {
    border-top: 1px solid #ccc;
}

/* テーブル：メインカラーバージョン */
.table-color ,
.table-color th,
.table-color td {
    border: none;
}
.table-color th,
.table-color td {
    border-bottom: 1px solid #fff;
}
.table-color th {
    color: var(--main-font-color);
    background-color: var(--main-color);
}
/* tdの奇数行に適応 */
.table-color tr:nth-of-type(odd) td {
    background: #f3f3f3; /* 背景色に合わせて微調整 */
}
/* tdの偶数行に適応 */
.table-color tr:nth-of-type(even) td {
    background: #fafafa; /* 背景色に合わせて微調整 */
}
/* テーブル：電話番号・FAX番号用 */
table.table-tel th {
/*     width: 50px; */
    font-size: 20px;
    text-align: center;
}
table.table-tel td {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0;
}
@media (max-width: 768px){
    table th,
    table td,
    table.table-color th,
    table.table-color td {
        padding: 10px;
    }
    /* table-mobile指定でレスポンシブ対応（2カラム構成のテーブルに利用） */
    table.table-mobile tr,
    table.table-mobile th,
    table.table-mobile td {
        display: block;
        width: auto !important;
    }
    table.table-bb th {
        border-top: 1px solid #555;
        border-bottom: none;
        font-weight: 700;
        font-size: 18px;
    }
    table.table-bb tr:first-of-type td {
        border-top: none;
    }
    table.table-bb td {
        border-bottom: none;
    }
    table.table-bb tr:last-of-type td {
        border-bottom: 1px solid #ccc;
    }
    table.table-tel th {
        width: auto;
        font-size: 18px;
    }
    table.table-tel td {
        text-align: center;
        font-size: 24px;
        line-height: 1.8;
    }
}

/* talbeの外側にtable-scroll指定でスマホ時に横スクロール（3カラム構成以上のテーブルに利用） */
@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;
    }
}

/* =========================================================
* リスト
========================================================= */
/* 1024pxより大きい場合はリストを複数行に */
ul.std-list-col {
    list-style-type: none;
    margin: 0;
}
ul.std-list-col li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ccc;
}
@media (min-width:1024px) {
    ul.std-list-col {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
    ul.std-list-col li {
        width: calc(33.33% - 20px); /* 3列に分割 */
        height: 3.5rem;
    }
}

/* =========================================================
* ボタン（基本はGeneratePressのボタン）
* 色はカスタマイザーで設定
* GPマニュアル：https://docs.generatepress.com/article/adding-buttons/
========================================================= */
/* ボタンのFontAwesome */
a.button i.fa { color: #fff; }
a:hover.button i.fa { color: #fff; }
/* FontAwesomeとの境界に縦線を入れる場合 */
.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.see-white {
    background-color: transparent;
    color: #fff;
    font-weight: normal;
    border: 2px solid #fff;
}
/* シースルー（黒） */
.button.see-black {
    background-color: transparent;
    color: #333;
    font-weight: normal;
    border: 2px solid #333;
}
.button.see-black i.fa {
    color: #333;
}
.button.see-black i.fa.left,
.button.see-black i.fa.right {
    border-color: #333;
}
/* シースルーホバー時 */
.button.see-white:hover,
.button.see-black:hover {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: var(--main-font-color);
}
.button.see-white:hover i,
.button.see-black:hover i {
    color: var(--main-font-color);
}
.button.see-black:hover i.left,
.button.see-black:hover i.right {
    border-color: #fff;
}
/* 追加したい色は各自指定 */
.button.red,
.button.red:visited {
    background: #c81e32;
    color: #FFF;
}
.button.red:hover {
    background: #b91629;
}

/* =========================================================
* スクロールバー
* malihu custom scrollbar plugin（JS）利用
* GitHub https://github.com/malihu/malihu-custom-scrollbar-plugin
* DEMO http://manos.malihu.gr/repository/custom-scrollbar/demo/examples/complete_examples.html
========================================================= */
.std-scroller {
    height: 230px; /* 高さ適宜調整 */
    overflow: auto;
}
/* スクロールバーの色（標準は黒） */
.std-scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* background-color: rgba(0,0,0,.75); */
    background-color: var(--main-color);
    opacity: 0.9;
}
/* ホバー */
.std-scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    /* background-color: rgba(0,0,0,.85); */
    background-color: var(--main-color);
}
/* アクティブ */
.std-scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.std-scroller .mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    /* background-color: rgba(0,0,0,.9); */
    background-color: var(--main-color);
}

/* =========================================================
* トップページ：メインビジュアル
* 外観>Elements>トップページ（Header）
* GPマニュアル：https://docs.generatepress.com/collection/elements/
========================================================= */

.std-mainimg .std-maincopy {
    font-family: var(--main-font-en);
    font-size: 84px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.std-mainimg .std-subcopy {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    /* スマホ表示のときは、ページヘッダーのイメージ変更 */
    .home .page-hero {
        /* background-image: url('https://..../mb-main.jpg'); */
    }
    .std-mainimg .std-maincopy {
        font-size: 60px;
    }
    .std-mainimg .std-subcopy {
        font-size: 18px;
    }
}

/* =========================================================
* 最新情報表示
* Post Snippetsプラグインに出力用PHPを記載
* info1row、info2row、info1row-childcat
========================================================= */
.std-bg-info {
    color: var(--main-color);
    border: solid 1px var(--main-color);
    width: 140px;
    max-width: 140px;
    text-align: center;
    border-radius: .25rem;
}
/* std-bg-xxxとしてカテゴリーのスラッグ毎に指定可能 */
.std-bg-news {

}

/* =========================================================
* 見出しデザイン
* lv1…ページヘッダーで利用
* lv2…本文内で利用
* text…lv1、lv2の飾りテキスト
* フォントサイズはh1、h2、h3などの見出しに準じる
========================================================= */
.std-heading-wrap {
    margin-bottom: 2.5rem;
    text-align: center;
}
.std-heading-lv1,
.std-heading-lv2 {
    font-family: var(--font-rounded);
    font-weight: 400;
    letter-spacing: 0.1rem; /* フォントに応じて調整 */
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
}
.std-heading-lv2 {
    color: #333;
}
.std-heading-lv1.white,
.std-heading-lv2.white {
    color: #fff;
}
.std-heading-lv1::after,
.std-heading-lv2::after {
   /*  background-color: var(--main-color);*/
    content: "";
    position: absolute;
    bottom: -25px; /* std-heading-textのmargin-topの値と合わせ調整 */
    left: 0;
    right: 0;
    width: 60px; /* 任意で変更 */
    height: 10px; /* 任意で変更 */
    margin: 0 auto;
	display:block;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ttl_i.svg) bottom center no-repeat;
	background-size: 90% auto;
}
/*.std-heading-lv2::after {
    background-color: var(--main-color);
}*/
.std-heading-lv1.white::after,
.std-heading-lv2.white::after {
    background-color: #fff;
}
.std-heading-text {
    color: var(--main-color);
    text-transform: uppercase;
    font-family: var(--font-rounded-en);
    margin-top: 40px;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.25rem;
}
.std-heading-text.white {
    color: #fff;
}
@media (max-width: 768px) {
    .std-heading-text {
        line-height: 1.2em;
    }
}

/* 見出しに下線 */
.std-title-line {
    text-align: center;
    margin-bottom: 20px;
}
.std-title-line {
    padding-bottom: 20px;
    position: relative;
}
.std-title-line::after {
    background-color: var(--main-color);
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 30px;
    margin-left: -15px;
    height: 3px;
}

/* =========================================================
* ニュースティッカー
* GP：Elementsで編集
* Header > Page Hero > Element Classesにstd-tickerクラスを指定
========================================================= */
.page-hero.std-ticker {
    position: relative;
}
.std-ticker-wrap {
    overflow: hidden;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--main-color);
    /* flexbox */
    display: flex;
}
/* 768px以上の場合1300px上限 */
@media (min-width: 768px) {
    .std-ticker-wrap {
        max-width: 1300px;
        width: calc(100% - 200px);
        min-width: 1000px;
        margin: 0 auto;
    }
}
.std-ticker-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.std-ticker-item.std-ticker-title {
    width: 200px;
    line-height: 50px;
    text-align: center;
    background-color: #111;
    font-size: 1.2em;
}
.std-ticker-item.std-ticker-text {
    flex: 1;
    position: relative;
    text-align: left;
    font-size: 1em;
}
.std-ticker-text ul {
    margin: 0;
    padding: 0;
    line-height: 50px;
}
.std-ticker-text ul li {
    padding: 0 1.5em;
    display: none;
    width: calc( 100% - 3em);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.std-ticker-date {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 1em;
}
@media (max-width: 768px) {
    .std-ticker-item.std-ticker-title {
        width: auto;
        font-size: 1em;
        padding: 0 10px;
    }
    .std-ticker-item.std-ticker-text {
        font-size: 0.85em;
    }
    .std-ticker-text ul li {
        padding: 0 1em;
        width: calc( 100% - 2em);
    }
}

/* =========================================================
* 背景スライドショー：KenBurns（CSSのみで実装）（不要な場合は削除）
* GP：Elementsで編集
* Header > Page Hero > Element Classesにstd-slideクラスを指定
* 参考　https://codepen.io/ibanez182/pen/LZPgrY
* 2枚バージョンのCSS　https://codepen.io/xxx-web/pen/ExPwrLe
* 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.std-slide {
    position: relative;
    overflow: hidden;
}
.std-slide .std-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;
    */
}
.std-slideshow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.std-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;
    transform: scale(1.2);
}
.std-slideshow-image:nth-child(1) {
    -webkit-animation-name: kenburns-1;
            animation-name: kenburns-1;
    z-index: 2;
}
.std-slideshow-image:nth-child(2) {
    -webkit-animation-name: kenburns-2;
            animation-name: kenburns-2;
    z-index: 1;
}
.std-slideshow-image:nth-child(3) {
    -webkit-animation-name: kenburns-3;
            animation-name: kenburns-3;
    z-index: 0;
}

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

/* =========================================================
 * 背景動画（不要な場合は削除）
 * GP：Elementsで編集
 * Header > Page Hero > Element Classesにstd-videoクラスを指定
========================================================= */
.page-hero.std-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(https://web-supporter.info/img/dot1.png);
}
.std-video .std-mainimg {
    position: relative;
    z-index: 1;
}
.std-background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.55; /* ElementのBackground Colorや上記page-heroで指定した背景色やドットをオーバーレイする場合は0.Xで指定 */
}
.ic-sns{
	box-shadow: 0px 0px 10px -5px rgba(220, 163, 166, 0.8);
}
video[poster] {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}

/* =========================================================
* サイトオリジナルのCSS（わかりやすくコメントを記載してください）
========================================================= */
.font-rounded{
	font-family: var(--font-rounded)!important;
}
.font-rounded-en{
	font-family: var(--font-rounded-en)!important;
}
.text-main{
	color: var(--main-color)!important;
}
.text-s-pink{
	color: #de66a2!important;
}
.text-yorange{
	color: var(--accent-color-o)!important;
}
.text-ygreen{
	color: var(--accent-color-g)!important;
}
.text-white{
	color: #fff!important;
}
.text-black{
	color: #433b3b!important;
}

.bg-main{
	background-color: var(--main-color)!important;
}
.bg-yorange{
	background-color: var(--accent-color-o)!important;
}
.bg-ygreen{
	background-color: var(--accent-color-g)!important;
}
.bg-ivory{
	background-color: #f5f4f1!important;
}
.bg-pl-yorange{
	background-color: #fef7e8!important;
}
.bg-pl-ygreen{
	background-color: #f2faec!important;
}
.bg-pl-pink{
	background-color: #faeded!important;
}

.border-main{
	border-color: var(--main-color)!important;
}
.border-yorange{
	border-color: var(--accent-color-o)!important;
}
.border-ygreen{
	border-color: var(--accent-color-g)!important;
}
.border-pl-brown{
	border-color: #d4c9c8!important;
}


.marker-pink {
    background: linear-gradient(transparent 70%, #ffd8eb 70%);
}

.bg-pink-stripe{
	background-size: auto auto;
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(251, 239, 242, 1) 2px, rgba(251, 239, 242, 1) 4px );
}
.bg-nami-top::after{
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/i_nami.svg) bottom center repeat-x;
	background-size: 1000px auto;
	position: absolute;
	top: 0;
	transform: scale(1, -1);
}
.bg-nami-btm::before{
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/i_nami.svg) bottom center repeat-x;
	background-size: 1000px auto;
	position: absolute;
	bottom: 0;
}
.grid-300{
	margin-inline: auto;
	max-width: 300px;
}

/* ------------------------------------------------------------
 * ボタン
 *  -------------------------------------------------------- */
a.button{
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	font-weight: 500;
}
a.generate-back-to-top {
	border-radius: 50%;
	overflow: hidden;
}

.btn-line{
	background-color: var(--accent-color-g)!important;
	flex-wrap: wrap;
}
.btn-orange{
	background-color: var(--accent-color-o)!important;
}

.btn-hover-b{
	transition: filter 0.3s ease;
}
.btn-hover-b:hover{
	filter: brightness(1.1);
}

.btn-s{
	display: inline-block;
	background: var(--main-color);
	padding: 0 10px;
	border-radius: 0.5rem;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
}
a:hover .btn-s,
.btn-s:hover{
	background: var(--main-color-hover);
}

.footer-bar .button{
    padding: 16px 10px;
}


/* ------------------------------------------------------------
 * タイトル
 *  -------------------------------------------------------- */
.ttl-arrow{
	position: relative;
}
.ttl-arrow::after{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-top-color: var(--main-color);
	border-width: 10px;
	margin-left: -10px;
}
.ttl-arrow.border-yorange::after{
	border-top-color: var(--accent-color-o);
}
.ttl-arrow.border-ygreen::after{
	border-top-color: var(--accent-color-g);
}

.entry-title{
	font-family: var(--font-rounded);
	font-weight: 500;
}

/* ------------------------------------------------------------
 * テーブル
 *  -------------------------------------------------------- */
table.table-rounded {
	border: solid 1px #d4c9c8;
	border-right: none;
	overflow: hidden;
	border-radius: 0.5rem;
}
table.table-rounded td, 
table.table-rounded th {
    border-bottom: solid 1px #d4c9c8;
}
table.table-rounded th,
table.table-rounded td {
    border-right: solid 1px #d4c9c8;
}
table.table-rounded tr:last-child th,
table.table-rounded tr:last-child td {
	border-bottom: none;
}
table.table-rounded tr:first-child th:first-child {
	border-top-left-radius: 0.5rem;
}
table.table-rounded tr:first-child th:last-child,
table.table-rounded tr:first-child td:last-child{
	border-top-right-radius: 0.5rem;
}
table.table-rounded tr:last-child td:first-child {
	border-bottom-left-radius: 0.5rem;
}
table.table-rounded tr:last-child td:last-child{
	border-bottom-right-radius: 0.5rem;
}
@media (max-width: 768px) {
	table.table-rounded.table-mobile tr:first-child td{
		border-top-right-radius: 0;
	}
	table.table-rounded tr:last-child th{
		border-bottom: solid 1px #d4c9c8;
	}
	.table-hours th,
	.table-hours td{
		padding: 5px;
	}
	table.table-rounded.table-mobile tr:last-child td {
		border-bottom: solid 1px #d4c9c8;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	table.table-rounded.table-mobile tr:last-child td:last-child {
		border-bottom: none;
		border-bottom-left-radius: 0.5rem;
		border-bottom-right-radius: 0.5rem;
	}
}

table.table-b-white,
table.table-b-white th,
table.table-b-white td{
	border: none;
}
table.table-b-white th,
table.table-b-white td{
	border-bottom: solid 4px #fff;
}

table.padding-s th,
table.padding-s td{
	padding: 10px;
}

/* ------------------------------------------------------------
 * フッター調整
 *  -------------------------------------------------------- */
.footer-widgets{
	position: relative;
}
.footer-widgets::before{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 5px;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/bg_nav.png) top left repeat-x;
	background-size: 50px 5px;
	top: 0;
}
.ft-btn{
	min-height: 80px;
}
.ft-btn > *{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ft-sitemap ul li{
	font-size: 15px;
}
.ft-sitemap ul li a i{
	font-size: 13px;
}
.ft-sitemap ul li ul{
	margin: 0 0 0 20px;
}
.ft-sitemap ul li ul li{
	font-size: 13px;
	position: relative;
	line-height: 1.5em;
	margin-left: 22px;
	padding: 2.5px 0;
}
.ft-sitemap ul li ul li::before{
	content: "";
	display: block;
	background: var(--main-color);
	width: 15px;
	height: 1px;
	position: absolute;
	left: -20px;
	top: 12px;
}
.footer-widgets .ic-sns{
	padding: 5px;
}

/* ------------------------------------------------------------
 * ヘッダー・ナビ調整
 *  -------------------------------------------------------- */
.header-icon {
    margin: -5px 10px 0 0;
    height: 160px;
    width: 160px;
    position: absolute;
	top: 15px;
	z-index: 9999;
}
.header-icon a:hover img{
	opacity: 1;
}
.site-branding-container{
	flex-direction: column;
	margin-left: 190px;
	align-items: start;
}
.site-branding-container .site-logo{
    flex-direction: column;
	align-items: flex-start;
	margin-top: 5px;
}
.site-branding-container .site-branding{
	margin-top: 5px;
	margin-bottom: -5px;
}

.hd-btn{
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 17px;
	padding: 5px;
}
.btn-eng{
	height: 62px;
	color: var(--main-color)!important;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.01em;
	text-align: center;
	display: block;
	padding: 8px 5px 5px 5px;
	border: solid 1px var(--main-color);
}

.nav-align-center .main-nav > ul {
    justify-content: end;
	margin-top: 10px;
}
.main-navigation .main-nav ul.menu >  li {
    width: 14.2%!important;
    text-align: center;
	position:relative;
}
.main-navigation .main-nav ul.menu >  li:last-child {
    width: 14.8%!important;
}
.main-navigation .main-nav{
	margin-left: 200px;
}
.main-navigation .main-nav ul.menu > li::before {
	content: "";
	display: block;
	height: 58px;
	width: 1px;
	border-left: dotted 1px #e1dcda;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
}
.main-navigation .main-nav ul.menu > li.msg::before {
    content: none;
}
.main-navigation .main-nav ul li > a {
    position: relative;
	padding: 22px 5px 5px 5px;
	 line-height: 40px;
}
.main-navigation .main-nav ul li > a::before {
    content: "";
	display: block;
	width: 39px;
	height: 30px;
	margin: 0 auto 5px auto;
	background-position: top center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translatex(-55%);
}
.main-navigation .main-nav ul li.orange a:hover{
	color: var(--accent-color-o)!important;
}
.main-navigation .main-nav ul li.green a:hover{
	color: var(--accent-color-g)!important;
}

.main-navigation:not(.slideout-navigation) .main-nav ul li.menu-item-has-children > a .dropdown-menu-toggle{
	display: none;
}

.main-navigation .main-nav ul li.home > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_home.png);
}
.main-navigation .main-nav ul li.msg > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_msg.png);
}
.main-navigation .main-nav ul li.about > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_about.png);
}
.main-navigation .main-nav ul li.service > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_sv.png);
}
.main-navigation .main-nav ul li.info > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_info.png);
}
.main-navigation .main-nav ul li.qa > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_qa.png);
}
.main-navigation .main-nav ul li.news > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_news.png);
}
.main-navigation .main-nav ul li.access > a::before  {
    background-image: url(https://hanamomo-clinic.com/wp/wp-content/uploads/ic_access.png);
}
.main-navigation .main-nav ul li.access{
	letter-spacing: 0.02em;
}
.main-navigation .sub-menu{
	border-radius: 0 0 0.5rem 0.5rem;
	overflow: hidden!important;
}
.menu-mobile{
	display: none;
}

.slideout-navigation .menu-mobile{
	display: block;
}
.slideout-navigation.main-navigation .main-nav ul li > a::before {
    width: 28px;
    top: 50%;
    left: 5px;
    transform: translate(0,-50%);
}
.slideout-navigation.main-navigation .main-nav ul li > a {
    position: relative;
    padding: 8px 5px 8px 40px!important;
    line-height: 40px!important;
}

@media (max-width: 1200px) {
	.header-icon {
		margin: -5px 10px 0 0;
		height: 140px;
		width: 140px;
	}
	.header-tel{
		display: none;
	}
	.menu-toggle{
		position:relative;
	}
	.menu-toggle .mobile-menu {
    	position: relative;
	}
	.menu-toggle::before{
		content:"";
		display:block;
		background: #faeded;
		width: 180px;
		height: 35px;
		border-radius: 30px;
		position: absolute;
		top: 8px;
		left: 50%;
		margin-left: -90px;
		z-index; 0;
	}
	.is_stuck .menu-toggle::before{
		content: none;
	}
}

@media (max-width: 1024px) {
	.header-icon {
    	margin: 0 10px 0 0;
    	height: 128px;
   	 	width: 128px;
    	position: relative;
		top: 10px;
	}
	.site-branding-container{
		margin-left: 0;
	}
}
@media (max-width: 768px) {
	.inside-header{
		display: flex;
		flex-direction: row;
	}
	.header-icon {
    	margin: 0 5px 0 10px;
    	height: 100px;
   	 	width: 100px;
    	position: relative;
		top: 10px;
	}
	.site-branding-container{
		margin-left: 0;
	}
}
@media (max-width: 640px) {
	.inside-header .header-image{
    	height: auto;
	}
	.site-branding-container {
        margin-left: 0;
        width: 75%;
    }
	.site-branding-container .site-logo {
        margin-top: -5px;
		margin-left: 5px;
		margin-right: 20px;
    }
	.site-branding{
		display: none;
	}
	.main-navigation:not(.is_stuck ) .menu-toggle {
		margin-top: -20px;
	}
}

/*スティッキーナビ*/
.main-navigation.navigation-stick .main-nav{
	margin-left: 0px;
}
.main-navigation.navigation-stick .main-nav li {
    width: auto!important; 
}
.main-navigation.navigation-stick  .main-nav > ul {
    justify-content: center;
    margin-top: 10px;
}
.main-navigation.navigation-stick .main-nav > ul li a {
    position: relative;
	padding: 25px 20px 5px 20px;
	line-height: 40px;
}
.main-navigation.navigation-stick .main-nav ul.sub-menu li a {
	padding: 5px 20px 5px 20px;
}
.main-navigation.navigation-stick .main-nav  ul li > a::before {
	width: 34px;
	height: 26px;
}
.sticky-enabled .main-navigation.is_stuck {
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, .1);
}
.menu-mobile{
	display: none;
}

/* ページタイトル */
.main-navigation{
	position: relative;
	overflow: visible;
}
.main-navigation::before{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 5px;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/bg_nav.png) top left repeat-x;
	background-size: 50px 5px;
	bottom: -5px;
}
body:not(.home) .page-hero{
	position: relative;
	background-size: 1300px auto!important;
}
body:not(.home) .page-hero::before{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 5px;
	background: url(https://hanamomo-clinic.com/wp/wp-content/uploads/bg_nav.png) top left repeat-x;
	background-size: 34px 5px;
	bottom: 0;
	transform: scale(1, -1);
}
@media (max-width: 1024px) {
	body:not(.home) .page-hero{
		background-size: 150% auto!important;
		background-position: center 10px!important;
	}
}

/* ------------------------------------------------------------
 * トップページ
 *  -------------------------------------------------------- */
.slide_i_mb{
	position: absolute!important;
	bottom: 17%!important;
	left: 50%!important;
	transform: translatex(-50%)!important;
}
.slide-txt{
	font-size: 2.2vw!important;
}

.section-top-menu{
	background-size: auto auto;
	background-color: rgba(255, 255, 255, 1);
	background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(251, 239, 242, 1) 2px, rgba(251, 239, 242, 1) 4px );
}
.section-top-menu .top-menu-ttl > * {
	background: #fff;
	border-radius: 50px;
	padding: 10px;
	box-shadow: 0px 1px 20px 0px #edc6c652;
}

.top-sns{
	border-bottom: solid 1px rgba(245, 225, 230, 0.5);
	background-size: auto auto;
    background-color: rgb(251, 239, 242);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255 252 252) 2px, rgba(255 252 252) 4px);
}
.top-sns .ic-sns{
	width: 40px;
	height: 40px;
	margin: auto;
}

/* ------------------------------------------------------------
 * クリニック紹介
 *  -------------------------------------------------------- */
.list-values{
	font-family: var(--font-rounded-en);
}
.list-values li span{
	font-family: var(--font-sans-jp);
	color: #433b3b;
	font-weight: normal;
}
.list-values li{
	border-top: dashed 1px #d4c9c8;
	padding: 4px;
}
.list-values li:first-child{
	border-top: none;
}

/* ------------------------------------------------------------
 * 診察時間
 *  -------------------------------------------------------- */
.table-hours table.table-rounded{
	border: none!important;
	background: none;
}
.table-hours table.table-rounded .thead th{
	background: none;
	font-family: var(--font-rounded);
	font-size: 20px;
	text-align: center;
}
.table-hours table.table-rounded  th{
	background: none;
	line-height: 1.3em;
}
.table-hours table.table-rounded .thead th,
.table-hours table.table-rounded .thead td {
    border-bottom: solid 3px #b7adac;
}
.table-hours table.table-rounded th,
.table-hours table.table-rounded td {
    border-right: dotted 1px #d4c9c8;
}
.table-hours table.table-rounded th:last-child,
.table-hours table.table-rounded td:last-child{
    border-right: none!important;
}
.table-hours table.table-rounded tr:last-child th {
    border-bottom: none;
}


.footer-widgets .table-hours {
	background:rgba(255,255,255,0.75);
}
.footer-widgets .table-hours table.table-rounded th,
.footer-widgets .table-hours table.table-rounded td {
    padding: 5px;
}
.footer-widgets .table-hours table.table-rounded .thead th,
.footer-widgets .table-hours table.table-rounded .thead td {
    border-bottom-width: 2px;
}
.footer-widgets .table-hours table.table-rounded td {
    font-size: 14px;
}
.footer-widgets .table-hours table.table-rounded .thead th{
	background: none;
	font-family: var(--font-rounded);
	font-size: 16px;
	text-align: center;
}
@media (max-width: 768px) {
	.table-hours table.table-rounded.hours-en .thead th{
		font-size: 1rem;
	}
}


/* ------------------------------------------------------------
 * よくあるご質問
 *  -------------------------------------------------------- */
.faq-list{
	list-style: none;
	margin: 0;
}
.faq-list .faq-q{
	font-size: 20px;
	font-family: var(--font-rounded);
	font-weight: 400;
	border-radius: 0.5rem;
	padding: 15px 40px 15px 15px;
	background: #f5f4f1;
	position: relative;
}
.faq-list .faq-q:hover{
	cursor: pointer;
}
.faq-list li:nth-child(odd) .faq-q{
	background: #faeded;
}
.faq-list.green li:nth-child(odd) .faq-q{
	background: #f2faec;
}
.faq-list.orange li:nth-child(odd) .faq-q{
	background: #fef7e8;
}

.faq-list .faq-a p{
	margin-bottom: 0.25rem;
}
.faq-list .ic-q,
.faq-list .ic-a{
	font-family: var(--font-rounded-en);
	font-weight: 500;
	font-size: 40px;
	width: 58px;
	margin-right: 10px;
	display: block;
	flex: 0 0 auto;
}
.faq-list .ic-a{
	margin-left: 15px;
	display: block;
	background: var(--main-color);
	border-radius: 50%;
	width: 42px;
	height: 42px;
	color: #fff;
	text-align: center;
	line-height: 1.1;
	margin-right: 26px;
}
.faq-list li > *{
	display: flex;
	flex-direction: row;
	align-items: flex-start; 
}
.accordion-content{
	max-height: 0;
    overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	margin-bottom: 0;
}
.active .accordion-content{
	transition: all 0.3s ease;
	max-height: auto;
	opacity: 1;
	margin-bottom: 30px;
}
.accordion-header{
	position: relative;
}
.accordion-header::before{
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    right : 20px;
	top: 50%;
	transform: translatey(-50%);
	transition: all 0.3s ease;
	font-size: 14px!important;
}
.active .accordion-header::before{
    content: "\f077";
}
@media (max-width: 767px) {
    .faq-list .faq-q {
		font-size: 18px;
        padding: 10px 40px 10px 10px;
    }
    .faq-list .ic-q {
        font-size: 26px;
        width: 33px;
    }
    .faq-list .ic-a {
        font-size: 26px;
        width: 30px;
        height: 30px;
		margin: 5px 10px 5px 10px;
    }
}

/* ----------------------------------------------------------
* アニメーション
 * ----------------------------------------------------------*/
body.home {
	opacity: 0;
	transition-duration: 1000ms;
	transition-delay: 200ms;
}
.opacity-100 {
	opacity: 1!important;
}
.sc-anim {
	 opacity: 0;
}
.sc-anim.sc-show {
	 opacity: 1;
	 transform: none;
}
.sc-slideLeft {
	 transform: translateX(-40px);
}
.sc-slideRight {
	 transform: translateX(40px);
}
.sc-slideUp {
	 transform: translateY(20px);
}
.duration-800 {
	 transition-duration: 800ms;
}
.duration-1500 {
	 transition-duration: 1500ms;
}
.duration-2000 {
	 transition-duration: 2000ms;
}
.delay-800 {
	 transition-delay: 800ms;
}
.delay-1000 {
	 transition-delay: 1000ms;
}
.delay-1500 {
	 transition-delay: 1500ms;
}


