@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
テーブル　＞　テーブル内のリストの下マージンを削除する
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[class*="table"] :is(ul,ol) {
    margin-bottom: 0;
}
[class*="table"] :is(ul,ol) li {
    margin-bottom: 0!important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TOP > FV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#home_promo .fuchi {
	-webkit-text-stroke: 5px #522a0a;
    paint-order: stroke fill;
}

#home_slide .btn {
	word-break: keep-all;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TOP > 比較表
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.compare_table p {
    margin-bottom: 0px;
}
.compare_table thead {
	color: #fff!important;
}
.compare_table thead th:first-child {
    background: #fff;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.compare_table tr:first-child th:nth-of-type(2) {
    background: var(--accent)!important;
	font-size: 1.4em;
	padding-bottom: 20px;
}
.compare_table td:nth-of-type(1) {
    border-left: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
}
.compare_table tr:last-child td:nth-of-type(1) {
    border-bottom: 3px solid var(--accent);
}
.compare_table tr:first-child th:nth-of-type(3),
.compare_table tr:first-child th:nth-of-type(4) {
    background: #5a5a5a!important;
}
.compare_table img {
	width: 40px;
	margin-bottom: 10px;
}
.compare_table thead th:nth-of-type(2) {
	position: relative;
	letter-spacing: 0.05em;
}
.compare_table thead th:nth-of-type(2)::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 15px;
    top: -14px;
    left: 0;
	border-radius: 20px 20px 0 0;
    background: var(--accent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーメニューのカスタマイズ(2023-03-13mk)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.openbtn {
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background: #dadada;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 2px;
	background: #717171;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px; 
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer-widgets ul.menu > li:is(.line, .web) {
	display: none;
}

#footer-widgets ul#menu-global-navi > li {
    font-weight: normal;
}	