/*
 Theme Name:   Standard Design D
 Theme URI:    https://standard-co.jp
 Description:  Standard Design D
 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: #353535;
    --main-color-hover: #7a7a7a;
    --main-font-color: #ffffff;
	
	--main-bg-color: #f0f0f0;

    --main-font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 游ゴシック, YuGothic, Meiryo, 'MS PGothic', sans-serif;
    --main-font-en: 'Montserrat', 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-tel: 'Ramabhadra', sans-serif;
	
	/* 施設カラーひばり */
    --hibari-color: #ffc72d;
    --hibari-color-sub: #b23a2a;
	/* 施設カラーつばめ */
    --tubame-color: #4dbbe6;
    --tubame-color-sub: #2050b0;
	/* 施設カラーオアシス */
    --oasis-color: #59c397;
    --oasis-color-sub: #1f6648;
	/* 施設カラーのどか */
    --nodoka-color: #efa795;
    --nodoka-color-sub: #ae2d24;
}
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: 28px;}
    .h2,.std-heading-lv2 {font-size: 26px;}
    .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-300  {max-width: 400px; margin-left:auto;margin-right:auto;} .grid-300::after {clear: both;}
.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-300::after, .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/
========================================================= */
/* ヘッダー部分を固定表示（sticky）させる場合 */
/* スマホ表示以外の場合、GPのカスタマイザーのスティッキーナビを利用せずにCSSで対応 */
/* @mediaのmin-widthはGPのカスタマイザーのナビの「ブレイクポイント」に合わせる */
@media (min-width:1024px) {
    .header-wrap,
    .site-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 100;
        /* 影 */
        box-shadow: 0 2px 2px -2px rgb(0 0 0 / 20%);
    }
    .admin-bar .header-wrap,
    body.admin-bar .site-header {
        top: 32px;
    }
    /* Page Heroの高さをヘッダーの高さ分調整（ホーム、ビジネス用固定ページ、クオリティアップ用固定ページ） */
     /* .home .page-hero, */
    .page-id-213 .page-hero,
    .page-id-220 .page-hero {
		min-height: calc( 100vh - 100px );
    }
     /* .home.admin-bar .page-hero,*/
    .page-id-213.admin-bar .page-hero,
    .page-id-220.admin-bar .page-hero {
		min-height: calc( 100vh -100px - 32px );
    }
}

.inside-header {
    padding-left: 20px;
}
.main-title {
    font-family: var(--main-font-jp); 
    /* font-family: var(--main-font-en);*/
}
.site-description {
    font-family: var(--main-font-jp);
}

/* ロゴ画像設定 */
/* 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: 50px;
    width: auto;
    /* width: 183px; /* ロゴの縦横比に合わせて横幅調整（SVG以外の場合はコメントアウト可） */
}
/* Mobile Headerのロゴ上下のパッティング調整（デフォは10px） */
#mobile-header .site-logo.mobile-header-logo img {
    padding: 5px 0;
}
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('//placehold.jp/dddddd/555555/45x45.png?text=logo');
        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;
    }
}
/* サイトタイトル前にアイコン設置ここまで */


/* =========================================================
* ナビゲーション
* GPマニュアル
* https://docs.generatepress.com/collection/primary-navigation/
* https://docs.generatepress.com/collection/slide-out-navigation/
========================================================= */
.main-navigation .inside-navigation .main-nav {
    order: 1;
    margin-right: 20px;
}
/* スライドアウトナビのウィジェット（CTA） */
.slideout-widget {
    order: 2;
}
/* ナビゲーションのCTA（ナビのCTAを利用しない場合は削除） */
.std-navigation-cta {
    order: 2;
    display: flex;
	min-height: 100px;
	align-items: center;
	margin-right: 16px;
}
.std-navigation-cta-item {
    display: flex;
	margin: 5px;
}
.std-navigation-cta-tel {
    padding: 0 5px;
    text-align: center;
    background-color: rgba(101, 89, 127, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.std-navigation-cta-tel .std-navi-tel {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
}
.std-navigation-cta-tel .std-navi-text {
    font-size: 12px;
    line-height: 18px;
}
.main-navigation a.std-navigation-cta-mail {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 画面幅が小さくなった場合はCTA非表示（横幅はナビの数に応じて適宜調整） */
@media (max-width:1200px) {
    .std-navigation-cta {
        display: none;
    }
}
/* ナビゲーションのCTAここまで */

/* スティッキーナビにサイトタイトル表示（させる場合は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;
}

/* モバイル時のメニュー調整 */
@media (max-width: 768px) {
    /* ハンバーガーメニューサイズ調整 */
    .menu-toggle .gp-icon {
        font-size: 22px;
    }
    /* メニューの表記を非表示 */
    .menu-toggle .gp-icon+.mobile-menu {
        display: none;
    }
}

/* =========================================================
* パンクズ
* 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 {
    border-bottom: solid 2px var(--main-color);
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: -20px -20px 20px -20px; /* .sidebar .widgetのpadding打ち消し */
}
/* セレクトボックスデザイン調整 */
.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 {
    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!important;
        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;
}
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: 17px;
    }
    table.table-bb tr:first-of-type td {
        border-top: none;
    }
    table.table-bb th {
        padding: 15px 10px 5px 10px;
    }
    table.table-bb td {
        border-bottom: none;
		padding: 5px 10px 15px 10px;
    }
    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: 86px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}
.std-mainimg .std-subcopy {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.2);
    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: 17px;
    }
}

/* =========================================================
* 最新情報表示
* 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: 0.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 {
    text-transform: uppercase;
    font-family: var(--main-font-en);
    font-weight: 700;
    letter-spacing: 0.1rem; /* フォントに応じて調整 */
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
}
.std-heading-lv2 {
    color: var(--main-color);
}
.std-heading-lv2.white {
    color: #fff;
}
 /*.std-heading-lv2::after {
    background-color:var(--main-color);
    content: "";
    position: absolute;
    bottom: -10px; /* std-heading-textのmargin-topの値と合わせ調整 */
   /*  left: 0;
   /*  right: 0;
   /*  width: 120px; /* 任意で変更 */
  /*   height: 2px; /* 任意で変更 */
  /*   margin: 0 auto;
} */
.std-heading-lv2::after {
    background-color: var(--main-color);
}
.std-heading-lv2.white::after {
    background-color: #fff;
}
.std-heading-text {
    color: #333;
    font-family: var(--main-font-jp);
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.25rem;
}
.std-heading-text.white {
    color: #fff;
}
/* 見出しに下線 */
.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: 9;
    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で指定 */
}

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

/* =========================================================
* サイトオリジナルのCSS（わかりやすくコメントを記載してください）
========================================================= */

.text-main{ color: var(--main-color)!important; }
.text-gold{color: #b8902c!important; }
.text-lt-gold{color: #e6ba4d!important; }

.bg-main{ background-color: var(--main-color)!important; }

.bg-main-gray{
	background-color: var(--main-bg-color)!important; }

.bg-ivory{ background: #f6f3ee!important; }

.border-neutral-50 { border-color: #fafafa; }
.border-neutral-100 { border-color: #f5f5f5; }
.border-neutral-200 { border-color: #e5e5e5; }
.border-neutral-300 { border-color: #d4d4d4; }
.border-neutral-400 { border-color: #a3a3a3; }
.border-neutral-500 { border-color: #737373; }
.border-neutral-600 { border-color: #525252; }
.border-neutral-700 { border-color: #404040; }
.border-neutral-800 { border-color: #262626; }
.border-neutral-900 { border-color: #171717; }
.border-neutral-950 { border-color: #0a0a0a; }

.bg-neutral-50  { background-color: #fafafa; }
.bg-neutral-100 { background-color: #f5f5f5; }
.bg-neutral-200 { background-color: #e5e5e5; }
.bg-neutral-300 { background-color: #d4d4d4; }
.bg-neutral-400 { background-color: #a3a3a3; }
.bg-neutral-500 { background-color: #737373; }
.bg-neutral-600 { background-color: #525252; }
.bg-neutral-700 { background-color: #404040; }
.bg-neutral-800 { background-color: #262626; }
.bg-neutral-900 { background-color: #171717; }
.bg-neutral-950 { background-color: #0a0a0a; }

.border-gold { border-color: #b8902c!important; }

.scale-75{ transform: scale(.75); }
.scale-80{ transform: scale(.8); }
.scale-85{ transform: scale(.85); }

.text-15px{
	font-size: 15px;
}

/* -------------------------------------------------------------------------
 * ボタン
------------------------------------------------------------------------- */
.button.block{
	display: block;
}
.btn-rounded{
	border-radius: 2em;
	padding: 0.6em 1.8em;
}
.btn-border{
	outline: solid 1px var(--main-color);
	outline-offset: -1px;
	color: var(--main-color)!important;
	background: #fff!important;
}
.btn-border:hover{
	outline: solid 1px var(--main-color-hover);
	color: var(--main-color-hover)!important;
}
.btn-border i{
	color: var(--main-color)!important;
}
.btn-border:hover i{
	color: var(--main-color-hover)!important;
}
.std-slideout-cta-mail .btn-border{
	outline: none;
	border-top: solid 1px  var(--main-color-hover);
}
input.wpcf7-submit{
	border-radius: 2em;
	padding: 0.6em 1.8em;
}

.generate-back-to-top {
    font-size: 13px;
    border-radius: 50%;
    position: fixed;
    bottom: 50px;
    right: 30px;
    line-height: 40px;
    width: 40px;
}

/* -------------------------------------------------------------------------
 * テーブル
------------------------------------------------------------------------- */
.table-simple,
.table-simple th,
.table-simple td{
	border: none;
	border-collapse: collapse;
	border: solid 1px #ccc;
}

/* -------------------------------------------------------------------------
 * 区切り線
------------------------------------------------------------------------- */
.bb-dot::before{
	content: "";
	display: block;
	position: relative;
	width: 60px;
	height: 5px;
	margin-inline: auto;
	background-image: repeating-linear-gradient(90deg, #383838, #383838 5px, transparent 5px, transparent 12px);
}


/* -------------------------------------------------------------------------
 * ヘッダー・ナビ調整
------------------------------------------------------------------------- */
.std-breadcrumbs{
	border-top: dotted 1px #d4d4d4;
}
.gp-icon svg {
    stroke: currentColor;
    stroke-width: 40;
}
.menu-item-has-children .dropdown-menu-toggle {
    padding-left: 2px;
}
.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .menu-bar-item > a {
    line-height: 86px;
}
.home .inside-header {
    border-bottom: none;
}
.header-wrap, .site-header {
   box-shadow: 0 0px 0px 0px rgb(0 0 0 / 0%);
}
.site-branding-container{
	flex-direction: column;
}
.site-branding-container .site-description{
	font-size: 12.5px;
    letter-spacing: 0.12em;
    margin-top: 3px;
	padding: 3px 6px 0 6px;
    background: #ffffff;
    border-top: solid 1px #ababab;
	max-width: 320px;
}
html[lang="en"] .std-navigation-cta {
    min-height: 50px;
}
html[lang="en"] .main-navigation .main-nav ul li a {
    line-height: 50px;
}
@media (max-width: 1380px) {
	.btn-contact{
         padding: 8px 14px 11px 16px;
    }
    .btn-contact .btn-contact-txt {
         display: none;
    }
	.main-navigation .main-nav ul li a, .menu-toggle, .main-navigation .menu-bar-item > a {
         padding-left: 10px;
         padding-right: 10px;
    }
}
@media (min-width: 1024px) {
    .header-wrap, body:not(.home) .site-header {
         box-shadow: 0 2px 2px -2px rgb(0 0 0 / 0); 
    }
}

/* -------------------------------------------------------------------------
 * フッター調整
------------------------------------------------------------------------- */
.std-footer-logo {
	mix-blend-mode: multiply;
}
.ft-description {
    font-size: 12.5px;
    letter-spacing: 0.12em;
    margin: 4px auto;
    padding: 3px 6px 0 6px;
    border-top: solid 1px #ababab;
    max-width: 320px;
}
.ft-btns a.button{
	display: block!important;
	width: 260px;
	padding: 6px 16px;
	margin: 10px auto;
	text-align: center;
	font-size: 15px;
}
.footer-sitemap ul{
	margin-left: 1em;
}
.footer-sitemap ul li{
	position: relative;
	font-size: 15.5px;
	padding: 0 0 9px 7px;
}
.footer-sitemap ul li::before{
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	border-top: solid 1.5px var(--main-color);
	position: absolute;
	left: -15px;
	top: 15px;
}
.footer-sitemap ul li ul{
	margin-left: 0.5em;
}
.footer-sitemap ul li ul li{
	font-size: 14.5px;
	padding: 0 0 8px 7px;
	letter-spacing: 0.05em;
}
.footer-sitemap ul li ul li::before{
	border-top: dotted 1px var(--main-color);
}


/* -------------------------------------------------------------------------
 * トップページ
------------------------------------------------------------------------- */
.slide01_name{
	position: absolute;
	top: 10%;
}
.slide02_name{
	position: absolute;
	top: 10%;
}

.slide-pc{ display: block; }
.slide-tablet, .slide-mobile{ display: none; }

@media (max-width: 1024px) {
	.slide-pc{ display: none;  }
	.slide-tablet{ display: block; }
}
@media (max-width: 640px) {
	.slide-tablet{ display: none;  }
	.slide-mobile{ display: block; }
}

.section-top-about{
	position: relative;
}
.section-top-about::before{
    content: "MIYAGI, \A   JAPAN";
    font-size: 180px;
    color: #f0f0f0;
    font-family: var(--font-sans-en) !important;
    line-height: 1.5;
	letter-spacing: 0.05em;
    font-weight: bold;
    position: absolute;
    top: -3%;
    left: 7%;
    z-index: 0;
    mix-blend-mode: multiply;
    white-space: pre;
}
.top-about-img{
	transform: scale(1.05);
	mix-blend-mode: multiply;
	position: relative;
	right: -20px;
}
@media (max-width: 1500px) {
	.section-top-about::before{
		font-size: 12vw;
		left: 3%;
	}
}
@media (max-width: 1279px) {
	.top-about-img{
		transform: scale(1);
		position: relative;
		right: 0px;
	}
}
@media (max-width: 1023px) {
	.top-about-img{
		transform: scale(1);
		max-width: 33%;
		position: absolute;
		right: 0;
		top: 15%;
	}
}
@media (max-width: 880px) {
	.section-top-about{
		max-width: 720px;
		margin: 0 auto;
	}
	.section-top-about::before{
    	content: "MIYAGI, \A JAPAN";
        font-size: 18vw;
        line-height: 0.9;
        letter-spacing: 0.05em;
        position: absolute;
        top: auto;
        left: 4%;
        bottom: 6%;
	}
	.top-about-img{
		max-width: 400px;
		position: relative;
		right: auto;
		top: -18%;
	}
}



.top-house-list .house-img{
	position: relative;
}
.top-house-list .house-img .house-img-area{
	position: absolute;
	font-size: 60px;
	font-weight: bold;
	line-height: 1em;
	color: #fff;
}
.top-house-list .house-img .house-img-area > span:nth-child(2){
	font-size: 50%;
	font-family: var(--font-sans-en) !important; 
	display: block;
	margin-top: -0.2em;
}
.top-house-list .house-img .house-img-area.lb{
	bottom: 7%;
	left: 7%;
}
.top-house-list .house-img .house-img-area.rt{
	top: 7%;
	right: 7%;
	text-align: right;
}
.top-house-list .house-name .house-name-txt{
	display: flex;
	flex-direction: column;
}
.top-house-list .house-name .house-name-txt .name-en{
	font-size: 18px;
    letter-spacing: 0.025em;
    line-height: 1.1em;
}
.top-house-list .house-btns .btn-rounded{
	font-size: 14px;
	padding: 5px 20px;
}
html[lang="en"] .top-house-list .house-btns .btn-rounded {
	letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
	.top-house-list > div{
		max-width: 720px;
		margin-inline: auto;
	}
}

.section-top-best{
	   background-image: repeating-linear-gradient(90deg, #f5f2e8, #f5f2e8 5px, #f9f7f2 5px, #f9f7f2 10px);
}
.section-top-best .top-best-img{
	position: relative;
	top: -90px;
}
.section-top-best .top-best-persent{
	font-size: 150%;
}
html[lang="en"] .section-top-best .top-best-persent{
	font-size: 100%;
}

@media (max-width: 767px) {
	.section-top-best .top-best-img{
        margin-bottom: -100px;
	}
}

/* Instagram YouTube*/
#sb_instagram .sbi_photo_wrap{
	border-radius: 0.25rem;
	overflow: hidden;
	display: block;
}
.sbi_follow_btn a{
	outline: solid 1px var(--main-color)!important;
	border-radius: 2em!important;
	display: block;
	margin-top: -25px!important;
	position: relative;
    z-index: 1;
}
.top-video .nk-responsive{
    background: #010000;
    padding: 10px;
    border-radius: 5px;
}
.top-video .nk-responsive iframe{
    margin-inline: auto;
}

/* -------------------------------------------------------------------------
 * 客室と料金
------------------------------------------------------------------------- */
.section-room-head{
	position: relative;
	top: -40px;
	max-width: 1600px;
	margin-inline: auto;
	border-radius: 0.25rem;
}
.section-room-head .room-head > img{
	aspect-ratio: 3 / 1;
    object-fit: cover;
}
.section-room-head .room-head .room-head-ttl{
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0.15em 1em 0em 1em;
	background: rgba(255,255,255,0.9);
	transform: translate(-50%,-50%);
	min-width: 660px;
	text-align: center;
	font-size: 55px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 0.25rem;
}
.section-room-head .room-head .room-head-ttl > h2 span.sans-en{
	font-size: 75%;
	text-align: middle;
	display: inline-block;
	line-height: 1.35em;
	letter-spacing: 0.02em;
}
.section-room-head .room-head .room-head-ttl > h2 span.sans-jp{
	letter-spacing: 0.1em;
	line-height: 1;
	font-weight: 800;
}
.section-room-head .room-head .room-head-ttl img{
	margin-top: -20px;
	margin-bottom: 20px;
	margin-right: 10px;
}

.table-rate thead th{
	padding: 12px 20px;
	background: var(--main-color);
	color: #fff;
	font-weight: 600;
	text-align: center;
}
.table-rate th{
	font-weight: 600;
}
.table-rate td{
	text-align: center;
	background: #fff;
	font-weight: 600;
}
.table-rate tbody tr:nth-child(odd) th{
	background:#eee;
}
.table-rate tbody tr:nth-child(even) th{
	background: #e7e7e7;
}
.table-rate tbody tr:nth-child(even) td{
	background: #f7f7f7;
}
.table-rate.nobgcolor tbody th{
    background-color: #f3f3f3;
}
.table-rate.nobgcolor tr:nth-child(even) td{
	background: none;
}
.room-gallery{
	font-size: 15px;
	line-height: 1.6em;
}
.room-gallery .gl-cap{
	font-weight: 600;
	margin: 10px 0;
	text-align: center;
}
.room-gallery .gl-cap .arrow{
	font-size: 12px;
	color: #a5a5a5;
}


.room-scene.hibari .scene-ttl{
	border-bottom: solid 2px var(--hibari-color);
}
.room-scene.tubame .scene-ttl{
	border-bottom: solid 2px var(--tubame-color);
}
.room-scene.oasis .scene-ttl{
	border-bottom: solid 2px var(--oasis-color);
}
.room-scene.oasis .nodoka-ttl{
	border-bottom: solid 2px var(--nodoka-color);
}

@media (max-width: 1279px) {
	.section-room-head .room-head .room-head-ttl h2{
		font-size: 3.5vw;
	}
	.section-room-head .room-head > img{
		aspect-ratio: 2 / 1;
	}
}
@media (max-width: 1023px) {
	.section-room-head .room-head .room-head-ttl{
		padding: 0.15em 0.5em 0em 0.5em;
		min-width: 70%;
	}
	.section-room-head .room-head .room-head-ttl img{
		max-width: 100px;
	}
}
@media (max-width: 767px) {
	.section-room-head{
		top: -20px;
	}
	.section-room-head .room-head .room-head-ttl{
		max-width: 90%;
        min-width: 90%;
		padding: 0.15em 0em 0.3em 0em;
		box-shadow: 0px 15px 23px -24px #777777;
	}
}
@media (max-width: 639px) {
	.section-room-head .room-head{
		margin-bottom: 100px;
	}
	.section-room-head .room-head .room-head-ttl{
		top: 120%;
		background: #fff;
		flex-direction: column;
		align-items: center;
		 
	}
	.section-room-head .room-head .room-head-ttl img{
		max-width: 80px;
		margin-bottom:5px;
		margin-right: 0;
	}
	.section-room-head .room-head .room-head-ttl h2{
		font-size: 6.5vw;		
	}
	.table-rate th, .table-rate td{
		padding: 5px 10px;
		text-align: left;
		font-size: 15px;
	}
	
}

body.page-id-241 .std-breadcrumbs, body.page-id-372 .std-breadcrumbs, body.page-id-384 .std-breadcrumbs, body.page-id-386 .std-breadcrumbs{
    position: relative;
    z-index: 1;
	padding: 0;
	border-bottom: none;
	max-width: 1520px;
	margin-inline: auto;
	border-top: none;
	border-radius: 0.25rem 0 0 0;
}
body.page-id-241 .std-breadcrumbs .current-item, body.page-id-372 .std-breadcrumbs .current-item,
body.page-id-384 .std-breadcrumbs .current-item, body.page-id-386 .std-breadcrumbs .current-item{
	font-weight: 600;
}
body.page-id-241 .std-breadcrumbs .grid-container, body.page-id-372 .std-breadcrumbs .grid-container,
body.page-id-384 .std-breadcrumbs .grid-container, body.page-id-386 .std-breadcrumbs .grid-container{
	display: inline-block;
    padding: 20px 20px 20px 20px;
}

@media (max-width: 1024px) {
	body.page-id-241 .std-breadcrumbs .grid-container, body.page-id-372 .std-breadcrumbs .grid-container,
	body.page-id-384 .std-breadcrumbs .grid-container, body.page-id-386 .std-breadcrumbs .grid-container{
        padding: 10px;
        font-size: 11px;
    }
}



/* ひばり */
.text-hibari{color: var(--hibari-color)!important;}
.bg-hibari{background-color: var(--hibari-color)!important;}
.text-hibari-sub{color: var(--hibari-color-sub)!important;}
.bg-hibari-sub{background-color: var(--hibari-color-sub)!important;}

body.page-id-241 .std-breadcrumbs .grid-container{
    background: var(--hibari-color);
}
body.page-id-241 .section-room-head .room-head .room-head-ttl-jp::before,
body.page-id-241 .section-room-head .room-head .room-head-ttl-jp::after{
  background: var(--hibari-color-sub);
}
body.page-id-241 .bb-dot::before{
	background-image: repeating-linear-gradient(90deg, var(--hibari-color), var(--hibari-color) 5px, transparent 5px, transparent 12px);
}

/* つばめ */
.text-tubame{color: var(--tubame-color)!important;}
.bg-tubame{background-color: var(--tubame-color)!important;}
.text-tubame-sub{color: var(--tubame-color-sub)!important;}
.bg-tubame-sub{background-color: var(--tubame-color-sub)!important;}
body.page-id-372 .std-breadcrumbs .grid-container{
    background: var(--tubame-color);
}
body.page-id-372 .section-room-head .room-head .room-head-ttl-jp::before,
body.page-id-372 .section-room-head .room-head .room-head-ttl-jp::after{
  background: var(--tubame-color-sub);
}
body.page-id-372 .bb-dot::before{
	background-image: repeating-linear-gradient(90deg, var(--tubame-color), var(--tubame-color) 5px, transparent 5px, transparent 12px);
}

/* オアシス */
.text-oasis{color: var(--oasis-color)!important;}
.bg-oasis{background-color: var(--oasis-color)!important;}
.text-oasis-sub{color: var(--oasis-color-sub)!important;}
.bg-oasis-sub{background-color: var(--oasis-color-sub)!important;}
body.page-id-384 .std-breadcrumbs .grid-container{
    background: var(--oasis-color);
}
body.page-id-384 .section-room-head .room-head .room-head-ttl-jp::before,
body.page-id-384 .section-room-head .room-head .room-head-ttl-jp::after{
  background: var(--oasis-color-sub);
}
body.page-id-384 .bb-dot::before{
	background-image: repeating-linear-gradient(90deg, var(--oasis-color), var(--oasis-color) 5px, transparent 5px, transparent 12px);
}

/* のどか */
.text-nodoka{color: var(--nodoka-color)!important;}
.bg-nodoka{background-color: var(--nodoka-color)!important;}
.text-nodoka-sub{color: var(--nodoka-color-sub)!important;}
.bg-nodoka-sub{background-color: var(--nodoka-color-sub)!important;}
body.page-id-386 .std-breadcrumbs .grid-container{
    background: var(--nodoka-color);
}
body.page-id-386 .section-room-head .room-head .room-head-ttl-jp::before,
body.page-id-386 .section-room-head .room-head .room-head-ttl-jp::after{
  background: var(--nodoka-color-sub);
}
body.page-id-386 .bb-dot::before{
	background-image: repeating-linear-gradient(90deg, var(--nodoka-color), var(--nodoka-color) 5px, transparent 5px, transparent 12px);
}


/* -------------------------------------------------------------------------
 * よくあるご質問
------------------------------------------------------------------------- */
/* タイトル  */
.section-faq-head{
	position: relative;
	top: -40px;
	max-width: 1600px;
	margin-inline: auto;
	border-radius: 0.25rem;
}
.section-faq-head .faq-head{
	background: #f1f1f1;
	padding: 60px 0;
}
.section-faq-head .faq-head .faq-head-ttl{
	padding-top: 1em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
}
.section-faq-head .faq-head .faq-head-ttl > div span:nth-child(1) {
    font-size: 55%;
    text-align: middle;
    display: inline-block;
    padding-right: 0.3em;
    line-height: 1;
}
.section-faq-head .faq-head .faq-head-ttl > div span:nth-child(2) {
    letter-spacing: 0.1em;
    line-height: 1;
}

.section-faq-head .faq-head .faq-head-ttl-jp{
	display:flex;
	align-items:center;
	gap:1rem;
	max-width: 600px;
	margin-inline: auto;
	margin-top: 0;
}
.section-faq-head .faq-head .faq-head-ttl-jp::before,
.section-faq-head .faq-head .faq-head-ttl-jp::after{
	content:"";
	flex:1;
	height:1px;
	background: #353434;
} 
.section-faq-head .faq-head .faq-head-ttl > div span.sans-en{
	font-size: 75%;
	text-align: middle;
	display: inline-block;
	line-height: 1.35em;
	letter-spacing: 0.02em;
}
.section-faq-head .faq-head .faq-head-ttl > div span.sans-jp{
	letter-spacing: 0.1em;
	line-height: 1;
	font-weight: 800;
}
.section-faq-head .faq-head .faq-head-ttl img{
	margin-top: -20px;
	margin-bottom: 20px;
	margin-right: 10px;
}
@media (max-width: 1023px) {
	.section-faq-head .faq-head .faq-head-ttl{
		font-size: 30px;
		padding-top: 0;
	}
}
@media (max-width: 639px) {
	.section-faq-head .faq-head .faq-head-ttl{
		font-size: 6vw;
		padding: 0.25em 0;
		flex-direction: column;
		align-items: center;
	}
}

/* faqリスト  */
.faq-list{
	list-style: none;
	margin: 0;
}
.faq-list .faq-item {
	border: dotted 1px #a3a3a3;
	margin-bottom: 20px;
	border-radius: 0.5rem;
}
.faq-list .faq-item:hover{
	background: #f3f3f3;
}
.faq-list .faq-list-q{
	margin-bottom: 0;
}
.faq-list .faq-list-q button{
	background: none;
	width: 100%;
	color: var(--main-color);
	padding: 15px;
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}
.faq-list .faq-list-q .faq-num {
	flex-shrink: 0;
    min-width: 80px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    border-right: dotted 1px #d4d4d4;
    margin-right: 10px;
}
.faq-list .faq-list-q .faq-num > span {
	background: var(--main-color);
	font-weight: bold;
	font-size: 20px;
	line-height: 1.4;
	color: #fff;
	display: inline-block;
	width: 36px;
	height: 36px;
	text-align: center;
	border-radius: 0.5rem;
	margin-right: 5px;
	vertical-align: middle;
}
.faq-list .faq-list-q .faq-text {
	flex: 1;
	text-align: left;
}
.faq-list .faq-list-q .faq-icon {
	 flex-shrink: 0;
	margin-left: auto;
	line-height: 1;
	transition: transform .25s ease, opacity .25s ease;
}
.faq-list .faq-list-a{
	padding: 20px;
}
.faq-icon {
	position: relative;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	margin-left: auto;
}
.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 3px;
	background: #878787;
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform .28s ease, opacity .2s ease;
    mix-blend-mode: darken;
}
.faq-icon::before {
	transform: translate(-50%, -50%) rotate(0deg);
}
.faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.active .faq-icon {
	transform: rotate(180deg);
}
.faq-item.active .faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
	opacity: 0;
}


body.page-id-247 .std-breadcrumbs, body.page-id-404 .std-breadcrumbs,
body.page-id-406 .std-breadcrumbs, body.page-id-408 .std-breadcrumbs{
    position: relative;
    z-index: 1;
	padding: 0;
	border-bottom: none;
	max-width: 1520px;
	margin-inline: auto;
	border-radius: 0.25rem 0 0 0;
}
body.page-id-247 .std-breadcrumbs .current-item, body.page-id-404 .std-breadcrumbs .current-item,
body.page-id-406 .std-breadcrumbs .current-item, body.page-id-408 .std-breadcrumbs .current-item{
	font-weight: 600;
}
body.page-id-247 .std-breadcrumbs .grid-container, body.page-id-404 .std-breadcrumbs .grid-container,
body.page-id-406 .std-breadcrumbs .grid-container, body.page-id-408 .std-breadcrumbs .grid-container{
	display: inline-block;
    padding: 20px 20px 20px 20px;
}
body.page-id-247 .std-breadcrumbs, body.page-id-404 .std-breadcrumbs,
body.page-id-406 .std-breadcrumbs, body.page-id-408 .std-breadcrumbs {
	border-top: none;
}

@media (max-width: 1024px) {
    body.page-id-247 .std-breadcrumbs .grid-container, body.page-id-404 .std-breadcrumbs .grid-container,
	body.page-id-406 .std-breadcrumbs .grid-container, body.page-id-408 .std-breadcrumbs .grid-container{
        padding: 10px;
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    body.page-id-247 .std-breadcrumbs .grid-container, body.page-id-404 .std-breadcrumbs .grid-container,
	body.page-id-406 .std-breadcrumbs .grid-container, body.page-id-406 .std-breadcrumbs .grid-container{
        padding: 10px;
        font-size: 11px;
    }
	.section-faq-head {
    	top: -20px;
    }
	.section-faq-head .faq-head .faq-head-ttl{
		font-size: 40px;
	}
	.section-faq-head .faq-head-ttl img{
		width: 80px;
		height: auto;
	}
	.faq-list .faq-list-q button{
		padding: 10px;
		font-size: 17px;
        line-height: 1.4;
	}
	.faq-list .faq-list-q .faq-num {
    	min-width: 70px;
    	font-size: 22px;
	}
	.faq-list .faq-list-q .faq-num > span {
		font-size: 18px;
		line-height: 1.4;
		width: 30px;
		height: 30px;
	}
	
}

/* ひばり */
body.page-id-247 .std-breadcrumbs .grid-container{
    background: var(--hibari-color);
}
body.page-id-247 .section-faq-head .faq-head{
  background: #f9f4e0;
}
.section-faq-head .faq-head .faq-head-ttl-jp::before,
.section-faq-head .faq-head .faq-head-ttl-jp::after{
  background: var(--hibari-color-sub);
}
.faq-list.faq-hibari .faq-num{color: var(--hibari-color-sub);}
.faq-list.faq-hibari .faq-list-q .faq-num > span {background-color: var(--hibari-color-sub);}
.faq-list.faq-hibari .faq-icon::before { background: var(--hibari-color-sub);}

/* つばめ */
body.page-id-404 .std-breadcrumbs .grid-container{
    background: var(--tubame-color);
}
body.page-id-404 .section-faq-head .faq-head{
  background: #def0f6;
}
body.page-id-404 .section-faq-head .faq-head .faq-head-ttl-jp::before,
body.page-id-404 .section-faq-head .faq-head .faq-head-ttl-jp::after{
  background: var(--tubame-color-sub);
}
.faq-list.faq-tubame .faq-num{color: var(--tubame-color-sub);}
.faq-list.faq-tubame .faq-list-q .faq-num > span {background-color: var(--tubame-color-sub);}
.faq-list.faq-tubame .faq-icon::before { background: var(--tubame-color-sub);}

/* オアシス */
body.page-id-406 .std-breadcrumbs .grid-container{
    background: var(--oasis-color);
}
body.page-id-406 .section-faq-head .faq-head{
  background: #e1ebe1;
}
body.page-id-406 .section-faq-head .faq-head .faq-head-ttl-jp::before,
body.page-id-406 .section-faq-head .faq-head .faq-head-ttl-jp::after{
  background: var(--oasis-color-sub);
}
.faq-list.faq-oasis .faq-num{color: var(--oasis-color-sub);}
.faq-list.faq-oasis .faq-list-q .faq-num > span {background-color: var(--oasis-color-sub);}
.faq-list.faq-oasis .faq-icon::before { background: var(--oasis-color-sub);}

/* のどか */
body.page-id-408 .std-breadcrumbs .grid-container{
    background: var(--nodoka-color);
}
body.page-id-408 .section-faq-head .faq-head{
  background: #f5ebe7;
}
body.page-id-408 .section-faq-head .faq-head .faq-head-ttl-jp::before,
body.page-id-408 .section-faq-head .faq-head .faq-head-ttl-jp::after{
  background: var(--nodoka-color-sub);
}
.faq-list.faq-nodoka .faq-num{color: var(--nodoka-color-sub);}
.faq-list.faq-nodoka .faq-list-q .faq-num > span {background-color: var(--nodoka-color-sub);}
.faq-list.faq-nodoka .faq-icon::before { background: var(--nodoka-color-sub);}


/* -----------------------------------------------------------------------------------------
 * Google Language Translator
 *  -------------------------------------------------------------------------------------- */
font[style*="vertical-align"] + br {
    display: none !important;
}
#glt-translate-trigger {
    border-radius: 5px 5px 0 0;
    padding: 6px 20px;
    font-size: 15px;
	z-index: 100000;
}
body {
  overflow-x: hidden;
}
@media (max-width: 768px) {
    #glt-translate-trigger {
        width: 32%;
		padding: 7px 0px 8px 0;
		box-shadow: 0px 0px 9px rgba(0, 0, 0, 0);
		-webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0);
		-moz-box-shadow: 0px 0px 9px rgba(0,0,0,0);
		right: 0px;
		border-radius: 0;
	
    }
}
@media (max-width: 600px) {
	html[lang="en"] .footer-bar .button i{
		display: block;
		margin: 0 auto;
	}
}
/* 600px以下での管理バーのズレ修正 */
@media (max-width: 600px) {
    html #wpadminbar {
        position: fixed !important;
        top: 0 !important;
    }
}

/* -----------------------------------------------------------------------------------------
 * アニメーション
 *  -------------------------------------------------------------------------------------- */
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(-30px);
}
.sc-slideRight{
	 transform: translateX(30px);
}
.sc-slideUp {
  transform: translateY(30px);
}
.duration-1500{
	 transition-duration: 1500ms;
}
.duration-2000{
	 transition-duration: 2000ms;
}
.delay-1500{
	transition-delay: 1500ms;
}
/* 2026.3.24 */
.site-branding-container .site-logo {
    margin-right: 15px;
}