/*
 *共通css
 */
.font-weight-lighter {
	font-weight: lighter;
}

.font-weight-light {
	font-weight: 300;
}

.font-weight-normal {
	font-weight: 400;
}

.font-weight-medium {
	font-weight: 500;
}

.font-weight-semibold {
	font-weight: 600;
}

.font-weight-bold {
	font-weight: 700;
}

.font-weight-bolder {
	font-weight: bolder;
}

.fs-5 {
	font-size: 1.25rem !important
}

.fs-2rem {
	font-size: 2rem !important
}

.w-auto {
	width: auto !important;
}

.w-fit-content {
	width: fit-content !important;
}

.w-max-content {
	width: max-content !important;
}

.w-5rem {
	width: 5rem;
}

.w-100 {
	width: 100% !important;
}

.w-70px {
	width: 70px !important;
}

.w-100px {
	width: 100px !important;
}

.w-150px {
	width: 150px !important;
}

.w-200px {
	width: 150px !important;
}

.w-250px {
	width: 250px !important;
}

.max-w-70px {
	max-width: 70px !important;
}

.max-w-100px {
	max-width: 100px !important;
}

.max-w-150px {
	max-width: 150px !important;
}

.max-w-200px {
	max-width: 200px !important;
}

.max-w-250px {
	max-width: 250px !important;
}

.max-w-300px {
	max-width: 300px !important;
}

.max-w-400px {
	max-width: 400px !important;
}

.min-w-50px {
	min-width: 50px !important;
}

.min-w-60px {
	min-width: 60px !important;
}

.min-w-70px {
	min-width: 70px !important;
}

.min-w-100px {
	min-width: 100px !important;
}

.min-w-120px {
	min-width: 120px !important;
}

.min-w-125px {
	min-width: 125px !important;
}

.min-w-150px {
	min-width: 150px !important;
}

.min-w-160px {
	min-width: 160px !important;
}

.min-w-100 {
	min-width: 100% !important;
}

.min-width-max-content {
	min-width: max-content !important;
}

.h-auto {
	height: auto !important;
}

.h-100 {
	height: 100% !important;
}

.min-h-30px {
	min-height: 30px !important;
}

.min-h-7rem {
	min-height: 7rem !important;
}

.min-h-9rem {
	min-height: 9rem !important;
}

.m-0 {
	margin: 0 !important;
}

.mt-1,
.my-1 {
	margin-top: 0.25rem !important;
}

.mt-2,
.my-2 {
	margin-top: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.mt-3,
.my-3 {
	margin-top: 1rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3,
.mb-3 {
	margin-bottom: 1rem !important;
}

.ms-1 {
	margin-left: 0.25rem !important;
}

.ms-1rem {
	margin-left: 1rem !important;
}

.ms-2 {
	margin-left: 0.5rem !important;
}

.ms-2rem {
	margin-left: 2rem !important;
}

.me-2 {
	margin-right: 0.5rem !important;
}

.me-2rem {
	margin-right: 2rem !important;
}

.p-3,
.py-3,
.pt-3 {
	padding-top: 1rem !important;
}

.p-3,
.py-3,
.pb-3 {
	padding-bottom: 1rem !important;
}

.p-3,
.px-3,
.ps-3 {
	padding-left: 1rem !important;
}

.p-3,
.px-3,
.pe-3 {
	padding-right: 1rem !important;
}

.gap-x-1 {
	column-gap: 0.25rem;
}

@media (max-width: 991px) {
	.pe-sm-0 {
		padding-right: 0 !important
	}
}

.border-start-0 {
	border-left: 0 !important;
}

.display-none {
	display: none !important;
}

.display-block {
	display: block !important;
}

.display-flex {
	display: flex !important;
}

.display-inline-block {
	display: inline-block !important;
}

.display-inline-flex {
	display: inline-flex !important;
}

.display-contents {
	display: contents;
}

.align-items-center {
	align-items: center !important;
}

.align-items-end {
	align-items: end !important;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.justify-content-end {
	justify-content: flex-end;
}

.flex-column-space-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.margin-top-1rem {
	margin-top: 1rem;
}

.outline-0 {
	outline: 0 !important;
}

.cursor-default {
	cursor: default !important;
}

.overflow-auto {
	overflow: auto;
}

.overflow-x-auto {
	overflow-x: auto;
}

.overflow-y-auto {
	overflow-y: auto;
}

.whitespace-pre-wrap {
	white-space: pre-wrap;
}

.underline {
	text-decoration-line: underline !important;
}

/* SVG共通 */
.svg-common {
	fill: transparent;
	stroke: currentColor;
}

/* リスト用 */
.list-style-disclosure-closed {
	list-style-type: disclosure-closed;
}

/* 改行関連定義 */
.break-word {
	word-break: break-all;
	word-break: break-word;
	overflow-wrap: break-word;
}

.list-title,
.tooltip-wrap {
	word-break: break-all;
	word-break: break-word;
	overflow-wrap: break-word;
}

.list-title a {
	white-space: pre-wrap;
}

.app-text-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.body-txt {
	word-break: break-all;
	word-break: break-word;
	white-space: pre-wrap;
}

/* /.改行関連定義 */

/* 境界線 */
.divider {
	height: 1px !important;
	margin: 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

/* /.境界線 */

/* ボタン */
.btn-pink:hover {
	color: #fff;
}

.btn .badge.count {
	position: absolute !important;
	left: 50%;
	font-size: 1rem;
	padding: 3px 7px;
}

/* /.ボタン */

/* 米印箇条書き */
.bullet-asterisk {
	list-style-type: none;
	text-indent: -1em;
	padding-left: 1em;
}

.bullet-asterisk:before {
	display: inline;
	content: "※";
}

/* /.米印箇条書き */

/** エラーメッセージ用拡張定義 */
.help-block,
.has-error .help-block {
	color: #ff0000;
	font-size: 13px;
	display: table-footer-group;
}

/** /.エラーメッセージ用拡張定義 */

/** デザイン標準フォントサイズ反映定義 */
.page-content,
.modal-body,
.nav.nav-tabs,
.select2-results {
	font-size: 13px;
}

.page-header>* {
	line-height: 1.5 !important;
}

/** /.デザイン標準フォントサイズ反映定義 */

/* select2全般の共通定義 */
.select2 {
	margin-right: 1%;
}

/* select2へフォーカス時、form-controlのデザインを適用 */
.select2-container--default.select2-container--focus .select2-selection--multiple {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.select2-container--default .select2-search--inline .select2-search__field:-ms-input-placeholder {
	color: #aaaaaa;
}

.select2-container--default .select2-search--inline .select2-search__field::placeholder {
	color: #aaaaaa;
}

.select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
	color: #aaaaaa;
}

.select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder {
	color: #aaaaaa;
}

/* 非活性の場合、form-controlのデザインを適用しない */
.select2-container--default.select2-container--disabled.select2-container--focus .select2-selection--multiple {
	border: solid #aaa 1px;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/** select2の検索フィールドの定義 */
.select2-search__field {
	min-width: 10em !important;
	max-width: 100% !important;
}

@media all and (min-width: 992px) {
	.select2-search__field {
		width: 420px !important;
	}
}

@media all and (max-width:991px) {
	.select2-search__field {
		width: 370px !important;
	}
}

@media all and (max-width:450px) {
	.select2-search__field {
		width: 265px !important;
	}
}

@media all and (max-width:365px) {
	.select2-search__field {
		width: 200px !important;
	}
}

@media all and (max-width:300px) {
	.select2-search__field {
		width: 150px !important;
	}
}


/** /.select2全般の共通定義 */

/* ヘッダータイトル設定 */
a.header-title {
	color: inherit;
	text-decoration: none;
}

/* 標準select設定 */
.option-color {
	color: #000;
}

.option-color.blank {
	display: none;
}

/** ポインターを付ける */
.cursor-pointer {
	cursor: pointer;
}

/** 非活性化 */
.disabled {
	pointer-events: none;
	opacity: 0.5
}

/* ラベル・タグの見た目調整 */
.badge {
	margin: 0px 5px 5px 0px;
	padding: 3px 8px;
	/* 巨大な文字列に対応するため折り返す*/
	white-space: unset;
	max-width: 100%;
	overflow-wrap: break-word;
	/* テキスト部分は左詰め */
	text-align: left;
}

/* assets標準定義の画像URL設定無し上書き */
.light-login {
	background: #DFE0E2;
}


/* スクロールバーが画面用に重ならない設定 */
@-ms-viewport {
	width: auto;
	initial-scale: 1;
}

@viewport {
	width: device-width;
	initial-scale: 1;
}


/* 選択状態にさせたくない領域 */
.unselected-area {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/* カーソルが乗ると手の形になる領域 */
.hover-cursor-pointer:hover,
.input-group-addon:hover {
	cursor: pointer;
}

.sidebar.h-sidebar {
	position: relative;
	float: none !important;
	width: auto;
	margin-top: 17px;
	border-width: 0 !important;
	box-shadow: none;
}

.no-skin .sidebar.navbar-collapse {
	border-width: 0;
	border-bottom-width: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none;
}

.sidebar.h-sidebar .nav-list>li {
	float: left;
	border-width: 0 0 0 1px;
	margin-left: 0;
}

.sidebar.h-sidebar .nav-list>li:first-child {
	border-left-width: 0;
	margin-left: 0;
}

.sidebar.h-sidebar .nav-list>li:last-child {
	border-right-width: 1px;
}

.sidebar.h-sidebar .nav-list>li:before {
	left: -1px;
	right: -1px;
	bottom: auto;
	top: -4px;
	max-width: none;
	width: auto;
	height: 4px;
	border-width: 0;
}

.sidebar.h-sidebar .nav-list>li>a {
	line-height: 22px;
	height: auto;
	padding: 10px 14px;
}

.no-skin .nav-list>li>a {
	/*     background-color: #0D47A0; */
	/*     font-weight: bold; */
	/*     color: #ffffff; */
}

.no-skin .nav-list>li.active>a {
	/*     color: #2B7DBC; */
	color: #3558b0;
}

.nav-list>li:before {
	background-color: rgba(53, 88, 176, 0.8);
}

.no-skin .sidebar.h-sidebar:before {
	background-color: transparent;
	border-bottom: 0px;
	box-shadow: none;
}

.no-skin .sidebar.h-sidebar {
	background-color: transparent;
}

.no-skin .sidebar.h-sidebar .nav-list>li.active,
.no-skin .sidebar.h-sidebar .nav-list>li.active+li,
.no-skin .sidebar.h-sidebar .nav-list>li:hover+li.active {
	border-left-color: #3558b0;
}

.no-skin .sidebar.h-sidebar .nav-list>li:hover,
.no-skin .sidebar.h-sidebar .nav-list>li:hover+li {
	border-left-color: #3558b0;
}

.no-skin .sidebar.h-sidebar .nav-list>li:last-child:hover {
	border-right-color: rgba(53, 88, 176, 0.8);
}

.no-skin .sidebar.h-sidebar .nav-list>li.active>a:after {
	border-width: 0 0 6px;
	border-color: transparent transparent #FFF;
	left: 0;
	right: 0;
	top: auto;
	bottom: -6px;
	display: block !important
}

.no-skin .sidebar.h-sidebar .nav-list>li.active:before {
	background-color: #3558b0;
	display: block;
}

.no-skin .sidebar.h-sidebar .nav-list>li.active:last-child {
	border-right-color: #3558b0;
}

.sidebar.h-sidebar .nav-list {
	border-width: 0;
	border-bottom: 6px solid #3558b0;
	/* 	    border-bottom: 2px solid #3558b0; */
}

/* 入力フォームの背景 */
.well {
	background-color: #e3e3e3;
}

/* Bootstrapのpreタグと同じ見た目でpタグを使えるようにするclass */
p.bootstrap-pre-tag {
	padding: 9.5px;
	margin: 0 0 10px;
	font-size: 13px;
	word-break: break-all;
	overflow-wrap: break-word;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.tooltip-inner {
	text-align: left;
	max-width: 100%;
	white-space: pre-wrap;
}

/* ジャンパ―アイコン */
.footer.footer-fixed+.btn-scroll-up {
	z-index: 999;
}

.btn-scroll-up {
	color: #FFF !important;
	border-color: #555;
	background-color: #555 !important;
	border-width: 0;
	position: fixed;
	right: 2px;
	z-index: 99;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	opacity: 0;
	filter: alpha(opacity=0);
	bottom: -24px;
	visibility: hidden;
}

.btn-scroll-up.display {
	opacity: 0.7;
	filter: alpha(opacity=70);
	bottom: 2px;
	visibility: visible;
}

.btn-scroll-up:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.btn-scroll-up:focus {
	outline: 0;
}

/* ジャンパ―アイコン用レスポンシブ追加定義 */
@media (min-width:768px) {
	.main-container.container>.btn-scroll-up {
		right: auto;
		margin-left: 714px;
	}
}

@media (min-width:992px) {
	.main-container.container>.btn-scroll-up {
		right: auto;
		margin-left: 934px;
	}
}

@media (min-width:1200px) {
	.main-container.container>.btn-scroll-up {
		right: auto;
		margin-left: 1134px;
	}
}

@media print {
	.btn-scroll-up {
		display: none !important;
	}
}

/* /.ジャンパ―アイコン */

/* テーブルヘッダー部分のみのカラー設定 */
table.common_table_setting {
	width: 100%;
}

table.common_table_setting th,
table.common_table_setting td {
	border: 1px solid #c3c9de;
	padding: 3px 7px;
	font-size: 13px;
}

table.common_table_setting th {
	padding: 3px 9px 3px 9px;
	text-align: center;
	background-color: #3558b0;
	font-size: 14px;
	font-weight: normal;
	color: #fff !important;
}

.table-responsive>table.common_table_setting {
	width: 99%;
}

.dataTable>thead>tr>th.sorting_asc,
.dataTable>thead>tr>th.sorting_desc {
	padding: 3px 9px 3px 9px;
	text-align: center;
	background-color: #3558b0;
	background-image: none;
	font-size: 14px;
	font-weight: normal;
	color: #fff !important;
}

table.common_table_setting td {
	padding: 10px 7px 7px;
	font-size: 13px;
}

table.common_table_setting td a {
	/* color: #3562b0; */
	font-size: 13px;
	text-decoration: none;
	background-image: linear-gradient(180deg, transparent 95%, #3498db 0);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: 0.2s;
}

/* /.テーブルヘッダー部分のみのカラー設定 */

/* データテーブルソート用設定 */

.dataTable>thead>tr>th.sorting_asc:after,
.dataTable>thead>tr>th.sorting_desc:after {
	content: none;
}

table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc,
table.dataTable thead>tr>th.sorting_desc,
table.dataTable thead>tr>th.sorting_asc_disabled,
table.dataTable thead>tr>th.sorting_desc_disabled,
table.dataTable thead>tr>td.sorting,
table.dataTable thead>tr>td.sorting_asc,
table.dataTable thead>tr>td.sorting_desc,
table.dataTable thead>tr>td.sorting_asc_disabled,
table.dataTable thead>tr>td.sorting_desc_disabled {
	cursor: pointer;
	position: relative;
	padding-right: 18px
}

.dataTable>thead>tr>th[class*=sort]:before {
	display: inline;
	content: "\f883";
	font-family: "Font Awesome 5 Pro";
	font-size: 13px;
	font-weight: 400;
	position: absolute;
	right: 0.5rem;
	color: #AAA;
}

.dataTable>thead>tr>th[class*=sort]:hover {
	color: #FFF;
}

.dataTable>thead>tr>th.sorting_disabled:before,
.dataTables_scrollHead+.dataTables_scrollBody>.dataTable>thead>tr>th:before,
.fc-state-default .fc-button-effect {
	display: none;
}

.dataTable>thead>tr>th.sorting_asc:before {
	font-family: "Font Awesome 5 Pro";
	content: "\f161";
	color: #FFF;
}

.dataTable>thead>tr>th.sorting_desc:before {
	font-family: "Font Awesome 5 Pro";
	content: "\f160";
	color: #FFF;
}

.table-y-scrolling {
	max-height: calc(100vh - 35rem);
}

/* /.データテーブルソート用設定 */


/* 共通modal用定義 */
/* 実行ボタンデザイン定義 */
.modal button.execute-btn i {
	color: #fff;
	text-align: left;
	font-size: 13px;
	transition: 0.2s;
	font-weight: 700;
}

.modal button.execute-btn span.txt {
	text-align: center;
	color: #fff;
	font-size: 13px;
}

.modal button.execute-btn:hover {
	background-color: #3498db;
}

.modal button.execute-btn {
	transition: 0.2s;
	background-color: #3562b0;
	margin-right: 2px;
	line-height: 1.4
}

/* ヘッダー共通デザイン */
.bootstrap-duallistbox-container>.box1>label,
.bootstrap-duallistbox-container>.box2>label,
div.modal-full-header-div label {
	padding: 3px 9px 3px 9px;
	text-align: center;
	background-color: #3558b0;
	font-size: 14px;
	font-weight: normal;
	color: #fff !important;
}

div.modal-full-header-div label,
div.modal-full-header-div select {
	width: 100%;
}

/* ./共通modal用定義 */

/* メールエラー用定義 */
.mail-error {
	text-align: center;
	text-align: -webkit-center;
}

/* 期間検索 */
div.search-date {
	width: 33%;
	float: left;
	padding-left: 0;
	padding-right: 0;
}

div.search-date-from-to {
	float: left;
	position: relative;
	margin-top: 7px;
	padding-left: 5px;
	padding-right: 5px;
}

/**
 * DataTable内ページャーボタン、その他ボタン共通化
 */
.pager>li>a,
.pagination>li>a,
.dt-buttons>a.dt-button {
	font-size: 13px;
	cursor: pointer;
	text-align: center !important;
	color: #fff;
	background-color: #3562b0;
	padding: 4px 9px 3px;
	display: inline-block;
	vertical-align: middle;
	transition: 0.2s;
	border-radius: 4px !important;
	margin-bottom: 3px !important;
	margin-right: 1px !important;
	text-decoration: none;
}

.pager>li>a:focus,
.pager>li>a:active,
.pagination>li>a:active,
.pagination>li>a:focus,
.dt-buttons>a.dt-button:active,
.dt-buttons>a.dt-button:focus {
	color: #fff;
	background-color: #3562b0;
	outline: none;
}

.pager>li>a:hover,
.pagination>li>a:hover,
.dt-buttons>a.dt-button:hover {
	color: #fff;
	background-color: #3498db;
}

.pager>li.disabled>a,
.pager>li.disabled>a:hover,
.pagination>li.active>a,
.pagination>li.active>a:focus,
.pagination>li.active>a:hover,
.pagination>li.disabled>a,
.pagination>li.disabled>a:hover .pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover,
.dt-buttons>a.dt-button.disabled {
	color: #fff;
	background-color: #3562b0;
	pointer-events: none;
	opacity: 0.5;
}

.clip_related_tags {
	margin: 20px 0 10px;
}

/* タグ */
.clip_related_tags .tag {
	color: #777;
	color: #fff;
	background-color: #f1f1f1;
	background-color: #5e9ae6;
	border-color: #f1f1f1;
	font-size: 12px;
	transition: 0.07s;
	line-height: 1;
	border-radius: 4px;
}

.clip_ttl {
	font-weight: bold;
	line-height: 1.5;
}

.menu-under.seach_list>li {
	/*     border-bottom: 1px solid #adb2b4!important; */
	width: 100%;
	height: 100%;
}

.menu-under.seach_list>li:first-child,
.menu-under.seach_list>li:last-child {
	border-bottom: 0 !important;
}

@media (min-width: 768px) {
	.menu-under.seach_list>li {
		border-bottom: 1px solid #adb2b4 !important;
	}
}

/* ウィジェット */
.widget-h60 {
	max-height: 60vh;
	overflow-y: auto;
}

/* ヘッダー */
#header #header_inner>div.row>div:nth-child(2) ul#hdr_nav {
	text-align: right;
	width: 72%;
	float: right;
}

/* エディション絞り込み */
@media (min-width: 992px) {
	#header #header_inner>div.row>div:nth-child(2) ul#hdr_nav li.edition-pulldown {
		width: 30%;
	}
}

@media (max-width: 991px) {
	#header #header_inner>div.row>div:nth-child(2) ul#hdr_nav li.edition-pulldown {
		width: 35%;
	}
}

/* ティッカー */
#ticker_area {
	margin-top: 48px;
}

.ticker_bg {
	background-color: #666;
	top: 60px;
	left: 0;
	position: absolute;
	width: 100%;
	height: 40px;
}

.ticker {
	text-align: left;
	line-height: 1.5;
	position: relative;
}

.ticker ul {
	width: 100%;
	position: relative;
}

.ticker ul li {
	font-size: 15px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px 14px 0;
	display: none;
	z-index: 0;
}

.ticker ul li a {
	color: #ffe473;
	opacity: 1;
}

@media (min-width: 1400px) {
	.container {
		width: 1356px;
	}
}


/* 左+メインカラム */
#leftcol {
	padding: 0;
}


/* 左カラム */
@media (min-width: 992px) {
	#leftbar.col-md-4 {
		padding-left: 14px;
		padding-right: 7px;
	}
}

div.seach_list>ul {
	margin: 0;
	padding: 0;
}

/* SVGアイコン */
.icon_favorite_seach {
	fill: #fff;
	padding-top: 10px;
	margin-left: 4px;
	width: 26px;
}

.sp-menu .icon_favorite_seach {
	padding-top: 9px;
}

/* リスト */
div.seach_list>ul>li {
	border-bottom: 1px solid #adb2b4;
	width: 100%;
	height: 100%;
}

div.seach_list>ul>li:last-child {
	border-bottom: 0;
}

div.seach_list>ul>li>a,
.mega-menu>ul>li>a {
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 1px;
	padding-right: 1px;
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
}

.mega-menu>ul>li>a {
	padding-top: 1px;
	padding-bottom: 1px;
}

div.seach_list>ul>li>a>h2,
.mega-menu>ul>li>a>h2 {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #3562b0;
	margin-bottom: 9px;
	letter-spacing: 0;
	line-height: 1.8;
	font-weight: bold;
}

div.seach_list>ul>li:not(.no_click)>a>h2,
.mega-menu>ul>li:not(.no_click)>a>h2 {
	padding-bottom: 0px;
	display: inline;
	background-image: linear-gradient(180deg, transparent 95%, #3498db 0);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: 0.2s;
}

div.seach_list>ul>li:not(.no_click)>a:hover>h2,
.mega-menu>ul>li:not(.no_click)>a:hover>h2 {
	color: #3498db;
	transition: 0.2s;
	background-size: 100% 100%;
}

.mega-menu>ul>li>div.site-data {
	justify-content: space-between;
}

.mega-menu>ul>li>div.site-data>p {
	width: 210px !important;
	line-height: 1.1;
	margin-top: 10px;
}

/* 保存したクリップ、タグの設定ボタン、その他共通ボタンデザイン */
div.display_box ul>li.seach_data>button,
#favorite_seach-sp .menu-under>li>button,
div.display_box ul>li.tag_edit>button,
#my_tag-sp .menu-under>li>button {
	transition: 0.2s;
	background-color: #3562b0;
	padding: 8px 15px 6px 12px;
	display: block;
	margin: 10px 0;
	cursor: pointer;
}

div.display_box ul>li.seach_data>button i,
#favorite_seach-sp .menu-under>li>button i,
div.display_box ul>li.tag_edit>button i,
#my_tag-sp .menu-under>li>button i {
	color: #fff;
	text-align: left;
	font-size: 13px;
	margin-right: 2px;
	transition: 0.2s;
	font-weight: 700;
	font-weight: normal;
	cursor: pointer;
}

div.display_box ul>li.seach_data>button span.txt,
#favorite_seach-sp .menu-under>li>button span.txt,
div.display_box ul>li.tag_edit>button span.txt,
#my_tag-sp .menu-under>li>button span.txt {
	text-align: center;
	color: #fff;
	font-size: 13px;
	cursor: pointer;
	font-weight: bold;
}

div.display_box ul>li.seach_data>button:hover,
#favorite_seach-sp .menu-under>li>button:hover,
div.display_box ul>li.tag_edit>button:hover,
#my_tag-sp .menu-under>li>button:hover {
	color: #fff;
	background-color: #3498db;
}

/* 左カラムの保存したクリップボタン調整 */
#favorite_seach-sp .menu-under>li>button {
	margin: -4px 0 0;
}

@media (max-width: 767px) {
	#favorite_seach-sp .menu-under>li>button {
		margin: 0 0 10px 0;
	}
}


/* お気に入りのタグ */
#clip_view {
	padding-top: 10px;
}

#clip_view #clip_related_tags {
	margin: 20px 0 10px;
}

.btn_my_tag_open_close {
	border: 1px solid #777;
	width: 56%;
	font-size: 14px;
	text-align: center;
	padding: 5px;
	margin-top: 4px;
	left: 40%;
	transform: translateX(40%);
	color: #777;
	cursor: pointer !important;
}

.btn_my_tag_open_close:hover {
	color: #777;
	border-color: #777;
	opacity: 0.6;
}

.grad-trigger:checked~.btn_my_tag_open_close:hover {
	color: #777;
	border-color: #777;
	opacity: 0.6;
}

/* タブレット・モバイルのお気に入りのタグ */
ul.menu-under>li:not(#crt_question).my_tag_red button {
	font-size: 12px;
	transition: 0.07s;
	line-height: 1;
	border-color: #f1f1f1;
	border-radius: 4px;
	background-color: #B74635;
	color: #fff;
}


/* 左カラムタブレット・モバイル切り替え */
/* #leftbar-sp { */
/*     display: none; */
/* } */

/* @media (max-width: 1199px){ */
#leftbar-sp {
	display: block;
}

#leftbar {
	display: none;
}

/* } */

/* 左カラムタブレット・モバイル */
.sp-menu input {
	display: none;
}

.sp-menu input+label {
	cursor: pointer;
}

.sp-menu {
	position: relative;
	width: 100%;
	height: 44px;
	margin: 0 0 22px 0;
	padding: 0;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #cad3e2;
}

.sp-menu>.mega-menu {
	float: left;
	height: 44px;
	background: #dc7d0d;
	width: 33.33% !important;
}

.sp-menu>.mega-menu:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.sp-menu>.mega-menu:first-child label {
	border-top-left-radius: 4px;
}

.sp-menu>.mega-menu:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.sp-menu>.mega-menu:last-child label {
	border-top-right-radius: 4px;
}

.sp-menu>.mega-menu .nav_name {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	text-decoration: none;
	color: #fff;
	position: relative;
}

.sp-menu>.mega-menu .nav_name::before {
	display: inline-block;
	top: 4px;
	left: 0;
	width: 1px;
	height: 36px;
	background: #fff;
	content: "";
	position: absolute;
}

.sp-menu>.mega-menu:first-child .nav_name::before {
	display: none;
}

.sp-menu>.mega-menu .nav_name::after {
	margin-top: 5px;
	margin-right: 14px;
	font-size: 15px;
	font-weight: bold;
	content: attr(data-text);
}

.sp-menu>.mega-menu .nav_name .icon_box {
	width: 46px;
	height: 44px;
	text-align: center;
	padding-top: 4px;
	font-size: 22px;
}

.sp-menu>.mega-menu .site-list-li {
	border: none !important;
	padding-left: 0 !important;
}

#menu_bar01:checked+.nav_name .icon_favorite_seach,
#menu_bar02:checked+.nav_name .icon_favorite_seach,
#menu_bar03:checked+.nav_name .icon_favorite_seach,
#menu_bar04:checked+.nav_name .icon_favorite_seach {
	fill: #dc7d0d;
}

#menu_bar01:checked+.nav_name,
#menu_bar02:checked+.nav_name,
#menu_bar03:checked+.nav_name,
#menu_bar04:checked+.nav_name {
	color: #dc7d0d;
}

#menu_bar01:checked+label,
#menu_bar02:checked+label,
#menu_bar03:checked+label,
#menu_bar04:checked+label {
	background: #fff;
	transition: all 0.2s;
}

.mega-menu .menu-under {
	position: absolute;
	top: 44px;
	left: -18px;
	box-sizing: border-box;
	width: 100%;
	padding: 4px 30px 14px;
	background: #fff;
	transition: all 0.2s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 6;
	box-shadow: 0px 3px 3px #cad3e2;
}

#menu_bar01:checked~#links01,
#menu_bar02:checked~#links02,
#menu_bar03:checked~#links03,
#menu_bar04:checked~#links04 {
	visibility: visible;
	opacity: 1;
}

.mega-menu .menu-under li:first-child {
	margin: 0 -20px;
}

.mega-menu .menu-under>li:not(:first-child) {
	display: flex;
	float: left;
}

.mega-menu .menu-under>li:not(:first-child) {
	padding: 0 20px;
	border-left: 1px solid #adb2b4;
}

.mega-menu .menu-under>li:nth-child(2) {
	border: none;
	padding-left: 0;
}

#my_tag-sp .menu-under>li:not(:first-child) {
	padding: 0;
	margin: 0 8px 10px 0;
	border: none;
}

.menu-under>li .box_name {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 14px;
	border-bottom: 1px solid #adb2b4;
}

.menu-under>li .box_name .icon_box {
	width: 40px;
	height: 38px;
	text-align: center;
	font-size: 22px;
	color: #dc7d0d;
}

.menu-under>li .box_name .icon_box .icon_favorite_seach {
	fill: #dc7d0d;
}

.menu-under>li .box_name h2 {
	margin: 0;
	font-size: 16px;
	color: #181818;
}

@media (max-width: 767px) {

	.sp-menu>#seach_menu-sp,
	.sp-menu>#feature-sp,
	.sp-menu>#favorite_seach-sp,
	.sp-menu>#my_tag-sp {
		width: 25%;
	}

	.sp-menu>.mega-menu .nav_name {
		justify-content: center;
	}

	.sp-menu>.mega-menu .nav_name::after {
		content: none;
	}

	.mega-menu .menu-under>li:not(:first-child) {
		width: 100%;
		padding: 0;
		border-left: none;
		border-top: 1px solid #adb2b4;
	}

	.mega-menu .menu-under>li:nth-child(2) {
		border-top: none;
	}

	#my_tag-sp .menu-under>li:not(:first-child) {
		width: auto;
	}

	.sp-menu .menu-under>li:not(:first-child) a h2 {
		line-height: 37px;
		padding-left: 2px;
	}
}

/* ページネーション */
#pager {
	margin-top: 12px;
	text-align: center;
}

#pager_links p.page_guide {
	margin-top: 12px;
	margin-bottom: 0;
}

/* 右カラム */
/* トライアルコースのご案内 */
#banner h2 {
	background-color: #1e1067;
	line-height: 2;
	font-size: 16px;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 7px;
	color: #fff;
	padding-left: 16px;
	padding-top: 4px;
	padding-bottom: 1px;
}

#banner button {
	transition: 0.2s;
	background-color: #1e1067;
	padding: 8px 9px 6px;
	display: block;
	margin: 0 auto;
	border-color: #1e1067;
	cursor: pointer;
}

#banner button:hover {
	background-color: #1e1067;
	border-color: #1e1067;
	cursor: pointer;
	display: block;
	opacity: 0.6;
}

div.display_box.sub {
	margin-bottom: 22px;
}

div.display_box.sub:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	div.display_box.sub {
		padding: 48px 30px 13px 30px;
	}
}

/* パネルヘッダ */
div.display_box.sub input+label,
div.display_box.sub span.box_name {
	position: absolute;
	top: 0;
	left: 0;
}

div.display_box.sub div.box_name,
div.display_box.sub span.box_name {
	background-color: #dc7d0d;
	height: 40px;
}

.panel_header {
	fill: #dc7d0d;
	background-color: #fff;
	height: 40px;
}

#sidebar div.display_box.sub div.box_name div.icon_box,
#leftbar div.display_box.sub div.box_name div.icon_box,
#leftbar-sp div.display_box.sub span.box_name span.icon_box,
div.display_box.sub#comment div.box_name div.icon_box {
	background-color: transparent;
	width: 38px;
	height: 40px;
}

#sidebar div.display_box.sub div.box_name div.icon_box i,
#leftbar div.display_box.sub div.box_name div.icon_box i,
#leftbar-sp div.display_box.sub span.box_name span.icon_box i,
div.display_box.sub#comment div.box_name div.icon_box i {
	color: #fff;
	font-size: 22px;
	padding-top: 9px;
}

#sidebar div.display_box.sub div.box_name h2,
#leftbar div.display_box.sub div.box_name h2,
#leftbar-sp div.display_box.sub span.box_name h2,
div.display_box.sub#comment div.box_name h2 {
	color: #fff;
	padding: 12px 8px 0 0;
	margin-left: 4px;
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 640px) {

	div.display_box.sub div.box_name,
	div.display_box.sub span.box_name {
		height: 36px;
	}

	.panel_header {
		height: 36px;
	}

	#sidebar div.display_box.sub div.box_name div.icon_box,
	#leftbar-sp div.display_box.sub span.box_name span.icon_box {
		width: 34px;
		height: 36px;
	}

	#sidebar div.display_box.sub div.box_name div.icon_box i,
	#leftbar-sp div.display_box.sub span.box_name span.icon_box i {
		font-size: 18px;
	}

	#sidebar div.display_box.sub div.box_name h2,
	#leftbar-sp div.display_box.sub span.box_name h2 {
		padding: 12px 8px 0 0;
		margin-left: 4px;
		font-size: 16px;
	}
}

/* ツールチップ */
.box_name .hover_guide.flr {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 36px;
	height: 40px;
	font-weight: normal;
}

#my_tag_help_message {
	margin-top: 0;
}

@media (max-width: 640px) {
	.box_name .hover_guide.flr {
		width: 32px;
		height: 36px;
	}
}

.main-content {
	box-shadow: 0px 0px 5px #cad3e2;
}

.main-content-inner {
	background-color: #fff;
}

.main-content.display_box {
	padding: 0;
}

.widget-main.auto-scroll {
	overflow-y: auto;
	max-height: 80vh;
}
.my-custom-class {
    background-color: #4CAF50; /* 緑色の背景 */
    color: white; /* 白色の文字 */
    border: none; /* 枠線なし */
    padding: 10px 20px; /* パディング */
    text-align: center; /* テキストの中央揃え */
    text-decoration: none; /* テキストの装飾なし */
    display: inline-block; /* インラインブロック表示 */
    font-size: 16px; /* フォントサイズ */
    margin: 4px 2px; /* マージン */
    cursor: pointer; /* カーソルをポインターに */
    border-radius: 8px; /* 角を丸く */
}
