@charset "UTF-8";
/********************************************************************************

common-tablet.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
	--common-inner-max-width: 100%;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 100%;      /* ワイドサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
body {
}

a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
}

/* レイアウト
---------------------------------------- */
/* 2カラム */
#page-layout {
    flex-direction: column;
}
#page-layout #page-layout-sidebar {
    max-width: unset;
    padding: 0 0 16px 0;
    border-right: unset;
    border-bottom: solid 1px #D6D3C1;
}


    
/*============================================================
 コンテンツ共通
*============================================================*/
/* 要素幅超スクロール
---------------------------------------- */
.block-wscroll-tablet {
    width: calc(100vw - ((100vw - 100%) / 2));
    overflow-x: auto;
}
.block-wscroll-tablet .block-wscroll-inner {
    width: max-content;
    padding: 0 var(--inner-padding) 16px 0;
}
.block-wscroll-tablet .block-wscroll-inner > * {
    width: auto;
    /* white-space: nowrap; */
}

/* カード
---------------------------------------- */
.block-card {
}

/* サイドバー
---------------------------------------- */
/* カテゴリ一覧 */
.side-category .list {
    flex-direction: row;
    flex-wrap: wrap;
}
/* タグ一覧 */
.side-tag .list {
    flex-direction: row;
    flex-wrap: wrap;
}

/*============================================================
 CTA
*============================================================*/
/* CTA お問い合わせ(画面下部追従)
---------------------------------------- */
#fixed-cta-contact .contact-phone .contact-phone-pc {
    display: none;
}
#fixed-cta-contact .contact-phone .contact-phone-mobile {
    display: block;
}

/* CTA 講演・セミナー依頼、顧問契約について
---------------------------------------- */
#cta-seminar-advisor {
    flex-direction: column;
}
/* 共通 */
#cta-seminar-advisor .item {
    flex: none;
    width: 100%;
    padding: 24px;
}
#cta-seminar-advisor .item .cta-inner {
    max-width: 480px;
    gap: 24px;
    margin: 0 auto;
}
#cta-seminar-advisor .item .icon {
    width: 56px;
}
#cta-seminar-advisor .item .info .label {
    margin-bottom: 0;
}
#cta-seminar-advisor .item .info .lead {
    display: none;
}



/*============================================================
 記事本文ブロック
*============================================================*/
/* 見出し
---------------------------------------- */
h1.page-title {
    font-size: 36px;
    line-height: 150%;
}
.page-title-sub {
    font-size: 20px;
}
h2.sec-title {
    font-size: 24px;
    line-height: 160%;
}
.sec-title-sub{
    font-size: 20px;
}


/*============================================================
 footer
*============================================================*/
/* 
---------------------------------------- */
#site-footer {
}
