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

common.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
    --common-vh: 100vh;                         /* jsで変動 */
	--common-vw: 100vw;                         /* jsで変動 */

	--common-inner-max-width: 1348px;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 1348px;      /* ワイドサイト幅 */
	--common-inner-max-width-sm: 928px;
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */

    --common-color-text: #333;           /* 基本テキスト色 */
    --common-color-main: #1B408E;           /* メイン色 */
    --common-color-sub: #0B4B46;            /* サブ色 */
    --common-color-background1: #000;       /* 背景色1 */
    --common-color-background2: #FCFCFC;       /* 背景色2 */
    --common-color-accent: #FAA43F;            /* アクセント色 */
    --common-color-attention: #D93838;      /* 注意色 */
    --common-color-attention-bg: #FFF5F5;   /* 注意色(背景用) */
    --common-color-notice: #B3B3B3;      /* 注釈色 */

    --common-font-family: 'Noto Sans JP', sans-serif;
    --common-font-family-en: 'Noto Sans JP', sans-serif;

    --common-header-height: 0;                  /* jsで変動 */
    --common-footer-height: 0;                  /* jsで変動 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: inherit;
}
.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: #fff;
}
body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 200%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
}
*[data-font="en"] {
    font-family: var(--common-font-family-en); 
}

body.page-lower {
    /* padding-top: var(--common-header-height); */
}

/* レイアウト
---------------------------------------- */
#outline {
	gap: 64px;
	margin-top: 54px;
}
#outline > .main-block {
	width: calc(100% - 404px);
	order: 1;
}
#outline > #sidebar {
	width: 340px;
	order: 2;
}
#main-contents {
    width: 100%;
    padding-bottom: 112px;
}

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}
.section:last-child {
    margin-bottom: 0;
}

.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}
main .inner > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .inner > *:last-child {
    margin-bottom: 0;
}

main .block, main .inner .block {
    margin-bottom: 48px;
}
main .block:last-child {
    margin-bottom: 0;
}

main .block > *:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}
main .block > *:last-child {
    margin-bottom: 0;
}

.page-group {
    font-weight: bold;
}
h1.page-title {
    font-weight: bold;
    font-size: 40px;
    line-height: 140%;
	margin-bottom: 48px;
}
h2.sec-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 160%;
    margin-bottom: 32px;
}
h3.block-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 16px;
}

p {}
img {
    max-width: 100%;
    height: auto;
}
svg {
    max-width: 100%;
    height: auto;    
}
span {
    font-weight: inherit;
}
a[href^="tel:"] {
    pointer-events: none;
}
strong {}
.attention {
    font-size: 12px;
    line-height: 160%;
    color: var(--common-color-attention);
}
.notice {
    font-size: 12px;
    line-height: 160%;
	margin-top: 8px;
}
.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 メインビジュアル(下層)
*============================================================*/
.page-lower #mainvisual {
	margin-bottom: 48px;
}

.page.page-lower #main-contents .inner {
	max-width: var(--common-inner-max-width-sm);
}
#page-ranking.page-lower #main-contents .inner {
	max-width: var(--common-inner-max-width);
}

/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
#page-top #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 144px 0 54px 0;
	padding-top: 16px;
	background: var(--common-color-background2);
}
#breadcrumb .inner {
	max-width: var(--common-inner-max-width)!important;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
	color: #888;
	font-weight: 500;
    line-height: 140%;
}
#breadcrumb li a {
    text-decoration-line: underline;
}
/* セパレーター(テキストの場合) */
/*#breadcrumb li:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}*/
/* セパレーター(画像の場合) */
#breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../images/common/icon-bread-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left:16px;
}



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

/* ブログ
---------------------------------------- */
.block-blog .item {
	transition: all .3s;
	gap: 32px;
	margin-bottom: 48px;
}
.block-blog .item:hover {
	opacity: 0.6;
}
.block-blog .item .image {
	width: 260px;
	height: 260px;
	overflow: hidden;
	border-radius: 8px;
}
.block-blog .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.block-blog .item .info {
	width: calc(100% - 292px);
}
.block-blog .item .info .tag-list {
	gap: 20px;
	font-size: 12px;
	color: #B4B4B4;
	margin-bottom: 12px;
}
.block-blog .item .info .tag-list p {
	position: relative;
	line-height: 1;
}
.block-blog .item .info .tag-list p:before {
	content: "/";
	position: absolute;
	top: 0;
	left: -12px;
}
.block-blog .item .info .tag-list p.category {
	font-weight: bold;
	color: #333;
}
.block-blog .item .info .tag-list p.category:before {
	display: none;
}
.block-blog .item .info .title {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 24px;
}
.block-blog .item .info .desc {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 32px;
	-webkit-line-clamp: 4;
}
.block-blog .item .info .posted-date {
	font-size: 12px;
	color: #B4B4B4;
}

/* サイドバー記事一覧(共通)
---------------------------------------- */
#sidebar .block > .title {
	color: var(--common-color-main);
	font-weight: bold;
	line-height: 1;
	padding-bottom: 12px;
	border-bottom: 1px solid #DBDBDB;
	margin-bottom: 16px;
}
#sidebar .list .item {
	gap: 16px;
	margin-bottom: 16px;
	transition: all .3s;
}
#sidebar .list .item:hover {
	opacity: 0.5;
}
#sidebar .list .item .image {
	width: 56px;
	height: 56px;
	overflow: hidden;
	border-radius: 8px;
}
#sidebar .list .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sidebar .list .item .info {
	width: calc(100% - 72px);
}
#sidebar .list .item .info .title {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 12px;
	-webkit-line-clamp: 3;
}
#sidebar .list .item .info .posted-date {
	font-size: 12px;
	color: #B4B4B4;
	line-height: 1;
}
#sidebar .block > .link {
	display: block;
	position: relative;
	width: 182px;
	margin: 32px 0 0 auto;
	padding: 14px 36px 14px 16px;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--common-color-main);
}
#sidebar .block > .link:before {
	content: "";
	position: absolute;
	background: url(../images/common/icon-sidebar-arrow.svg) no-repeat center center / contain;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translatey(-50%);
	right: 0;
}

/* サイドバー人気記事一覧
---------------------------------------- */
#sidebar #popular-posts .item {
	padding-left: 32px;
	position: relative;
}
#sidebar #popular-posts .item:before {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 24px;
	color: #C4C4C4;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
}
#sidebar #popular-posts .item01:before {
	content: "1";
}
#sidebar #popular-posts .item02:before {
	content: "2";
}
#sidebar #popular-posts .item03:before {
	content: "3";
}
#sidebar #popular-posts .item04:before {
	content: "4";
}
#sidebar #popular-posts .item05:before {
	content: "5";
}

/* サイドバータグ一覧
---------------------------------------- */
#sidebar #tags-list .list {
	gap: 8px;
}
#sidebar #tags-list .item {
	font-size: 12px;
	color: #454545;
	padding: 8px 12px;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	line-height: 1.4;
	margin-bottom: 0;
}



/*============================================================
 モーダルカスタム(Modaal.js)
 ※z-index指定　ヘッダー < .modaal-overlay < .modaal-wrapper
*============================================================*/
.modaal-wrapper {
    z-index: 999999;
}
.modaal-overlay {
    z-index: 99999;
}


/*============================================================
 ページング
*============================================================*/
/* bones_page_navi使用時
---------------------------------------- */
.pagination {
    margin-top: 80px;
}
.pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    gap: 8px;
}
.pagination .page-numbers li > * {
    display: block;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
}
.pagination .page-numbers li > a {
    background-color: #F5F5F5;
    border-radius: 2px;
}
.pagination .page-numbers li > .current {
    background-color: transparent;
    font-weight: bold;
}
.pagination .page-numbers li > a.prev,
.pagination .page-numbers li > a.next {
    padding: 8px;
    background-color: #000;
    color: #fff;
}
.pagination .page-numbers li > *.page-numbers.dots {
    background-color: transparent;
}

/*============================================================
 記事本文ブロック
*============================================================*/
/* 見出し
---------------------------------------- */
.block-post-content h2 {
}
.block-post-content h3 {    
}

/* 箇条書きリスト
---------------------------------------- */
.block-post-content ul {
    list-style-type: disc;
	padding: 24px 32px;
    margin-bottom: 16px;
	background: #F5F5F5;
	border-radius: 16px;
}
.block-post-content ul li {
    list-style-type: disc;
	margin-left: 16px;
	margin-bottom: 16px;
}
.block-post-content ul li:last-child {
	margin-bottom: 0;
}

/* 連番リスト
---------------------------------------- */
.block-post-content ol {
    list-style: decimal;
	padding: 24px 32px;
    margin-bottom: 16px;
	background: #F5F5F5;
	border-radius: 16px;
}
.block-post-content ol li {
    list-style: decimal;
    margin-left: 16px;
	margin-bottom: 16px;
}
.block-post-content ol li:last-child {
	margin-bottom: 0;
}
/* 段落
---------------------------------------- */
.block-post-content p {
    margin-bottom: 16px;
}
.block-post-content a {
    text-decoration: underline;
	overflow-wrap: anywhere;
}
.block-post-content strong {
    font-weight: bold;
}
/* 画像
---------------------------------------- */
.block-post-content figure {    
    margin-bottom: 16px;
}
.block-post-content figure figcaption { 
    font-size: 12px;
    line-height: 140%;
    color: var(--common-color-notice);
    margin: 8px 0 0 0;
}

/* 余白調整
---------------------------------------- */
.block-post-content .inner > *:first-child {
    margin-top: 0;
}

/*============================================================
 目次
*============================================================*/
#toc_container {
	background: #F5F5F5;
	border-radius: 16px;
	padding: 24px 32px;
}
#toc_container .toc_title {
	font-size: 12px;
	line-height: 1;
	color: #898989;
	padding-bottom: 12px;
	border-bottom: 1px solid #D2D2D2;
	margin-bottom: 16px;
}
#toc_container ul {
	padding: 0;
	margin-left: 0;
	margin-bottom: 0;
}
#toc_container ul li {
	list-style: none;
	margin-bottom: 12px;
	margin-left: 0;
}

/*============================================================
 CTA
*============================================================*/
/* お問い合わせ
---------------------------------------- */
#cta-contact {
    padding: 48px 0;
}
#cta-contact .sec-title {
    text-align: center;
}
#cta-contact .parts-btn {
    margin: 0 auto;
}

/*============================================================
 ランキングページ
*============================================================*/
#page-ranking .page-title {
	margin-bottom: 64px;
}

/*============================================================
 クリップボードコピー用メッセージ
*============================================================*/
#clipbord-msg {
    width: 100%;
    position: fixed;
    bottom: -190px;
    left: 0;
    z-index: 999999;
	-webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
#clipbord-msg .msg {
    width: fit-content;
    padding: 12px 32px;
	background: #333;
    border-radius: 100px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 auto;
}
#clipbord-msg.copySuccess,
#clipbord-msg.copyError {
    bottom: 56px;
}

/*============================================================
 サイト内検索フォーム
*============================================================*/
#searchform {
	width: 320px;
	margin-bottom: 12px;
	border: 1px solid #F8F8F8;
	position: relative;
	padding: 8px 62px 8px 24px;
	border-radius: 100px;
	background: #F8F8F8;
}
#searchform button {
	width: 48px;
	height: 48px;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	right: 16px;
	background: #F8F8F8;
}
#searchform button img {
	width: 100%;
	height: 100%;
}
#searchform input {
	width: 100%;
	height: 32px;
	padding: 0;
	background: #F8F8F8;
}
#searchform input::placeholder {
	color: #CCC;
}
#searchform > div > * {
    vertical-align: middle;
}

/*============================================================
 サイト内検索結果
*============================================================*/
/* 結果リスト
---------------------------------------- */
#page-search .page-title {
	margin-bottom: 16px;
}
/* 検索結果数 */
#page-search .total-cnt {
	color: #888;
	font-size: 14px;
	line-height: 2;
    margin-bottom: 48px;
}


/*============================================================
 システムエラー　404
*============================================================*/
#page-system-error #sec-system-error {
    height: max(600px, calc(var(--common-vh) - var(--common-footer-height) - 64px));
    padding: 200px 0 0 0;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}
#page-system-error #sec-system-error .parts-btn {
    margin: 0 auto;
}


/*============================================================
 footer
*============================================================*/
#site-footer {
    background-color: var(--common-color-background2);
    padding: 56px 0;
}
#site-footer .main {
	justify-content: space-between;
	margin-bottom: 56px;
}
#site-footer .main .summary {
	width: 400px;
}
#site-footer .main .summary .logo {
	margin-bottom: 32px;
}
#site-footer .main .summary p {
	font-size: 12px;
	color: #666;
}
#site-footer .main .info {
	width: 706px;
}
#site-footer .main .info #fnav .menu-list {
	gap: 32px;
	margin-bottom: 40px;
}
#site-footer .main .info #fnav .menu-list .gnav-top {
	display: none;
}
#site-footer .main .info .related .title {
	font-weight: bold;
	padding-bottom: 12px;
	border-bottom: 1px solid #DBDBDB;
	margin-bottom: 8px;
}
#site-footer .main .info .related ul {
	gap: 12px 32px;
}
#site-footer .main .info .related ul li {
	
}
#site-footer .main .info .related ul li a {
	font-size: 14px;
	text-decoration: underline;
}
#site-footer .sns {
	margin-bottom: 24px;
}
#site-footer .sns ul {
	gap: 16px;
}

#site-footer .outer-link {
	margin-bottom: 24px;
}
#site-footer .outer-link ul {
	gap: 32px;
}
#site-footer .outer-link ul li a {
	text-decoration: underline;
}

#site-footer .campany {
	text-align: center;
	font-size: 14px;
	margin-bottom: 24px;
}

/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}


