/*
Template:lqd-light
Theme Name:lqd-light_h
Description:LIQUID LIGHT の子テーマです
*/

@charset "utf-8";

/* ------------------------------------
// タイトル ロゴ画像　ＰＣの場合は元サイズ
------------------------------------ */

@media screen and (min-width: 990px) {
    .logo img {    
        width: auto !important;
        height: 72px !important;
        max-width: initial !important;
    }
}

/* ------------------------------------
// 文字関連･リンク
------------------------------------ */

h1 {
    font-size: 1.7rem;
    line-height: 1.2em;
}

.share a:visited {
    color: #fff;
    text-decoration: none;
}

/* 引用表記 */
h6 {
    font-size: 0.8rem;
    font-weight: normal;
}

/* ------------------------------------
// 装飾 リンクボタン バナー
------------------------------------ */

.b_link {
	display: inline-block;
	padding: 10px;
	margin: 0 10px 10px 0;
	text-decoration: none;
	background: #eeeeee;
	border-bottom: solid 1px #cccccc;
	border-right: solid 1px #cccccc;
}
.b_link:hover {
	background: #dddddd;
}

/* ------------------------------------
// 装飾 キャンペーンボタン
------------------------------------ */

.button {
	display: inline-block;
	width: 290px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	outline: none;
	font-size: 1.2rem;
	background: #f7d034;
	position: relative;
	z-index: 2;
	color: #333;
	line-height: 54px;
	-webkit-perspective: 300px;
	perspective: 300px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.button:hover {
	color: #fff;
	text-decoration: none;
}
.button::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1abc9c;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	opacity: 0;
}
.button:hover::after {
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
	opacity: 1;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* ------------------------------------
// 装飾 テーブル
------------------------------------ */

.table {
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1.5em;
	width: 100%;
}

.table-bordered td { border: 0px; }

.table tr { border-top: 1px solid #f1f1f1; }
.table td { border-bottom: 1px solid #f1f1f1; padding: 15px; vertical-align: middle; }

/* ------------------------------------
// PREタグの定義
------------------------------------ */

pre {
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 10px;
    background: #FFFFE0;
}