@charset "UTF-8";

@media screen and (max-width: 768px) {

/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# スマホ 設定 #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */

/* L1 ######################################## 汎用要素 ######################################## */

hr {
	margin: 1.5em 0;
}

/* L1 ######################################## 汎用クラス ######################################## */

.fs-10 { font-size: 0.8rem !important; }
.fs-11 { font-size: 0.9rem !important; }
.fs-12 { font-size: 1.0rem !important; }
.fs-13 { font-size: 1.1rem !important; }
.fs-14 { font-size: 1.2rem !important; }
.fs-15 { font-size: 1.3rem !important; }
.fs-16 { font-size: 1.4rem !important; }
.fs-17 { font-size: 1.5rem !important; }
.fs-18 { font-size: 1.6rem !important; }
.fs-19 { font-size: 1.7rem !important; }
.fs-20 { font-size: 1.8rem !important; }
.fs-21 { font-size: 1.9rem !important; }
.fs-22 { font-size: 2.0rem !important; }
.fs-23 { font-size: 2.1rem !important; }
.fs-24 { font-size: 2.2rem !important; }
.fs-25 { font-size: 2.3rem !important; }
.fs-26 { font-size: 2.4rem !important; }
.fs-27 { font-size: 2.5rem !important; }
.fs-28 { font-size: 2.6rem !important; }
.fs-29 { font-size: 2.7rem !important; }
.fs-30 { font-size: 2.8rem !important; }
.fs-31 { font-size: 2.9rem !important; }
.fs-32 { font-size: 3.0rem !important; }
.fs-33 { font-size: 3.1rem !important; }
.fs-34 { font-size: 3.2rem !important; }
.fs-35 { font-size: 3.3rem !important; }
.fs-36 { font-size: 3.4rem !important; }
.fs-37 { font-size: 3.5rem !important; }
.fs-38 { font-size: 3.6rem !important; }
.fs-39 { font-size: 3.7rem !important; }
.fs-40 { font-size: 3.8rem !important; }

.ta-c { text-align: left !important; }

.no-br br {
	display: none;
}

/* L1 ######################################## BODY要素 ######################################## */

html, body {
	overflow-x: hidden;
	width: 100%
}

body {
	font-size: 1.2rem;
	word-break: break-all;
}

/* L1 ######################################## 管理用 ######################################## */

#admin {
	padding-left: 4%;
	padding-right: 4%;
}

#admin p:first-child {
	margin-right: 75px;
}

/* L1 ######################################## ヘッダ ######################################## */

/* L2 **************************************** メニュー関連 **************************************** */

/* L3 ======================================== タイトル ======================================== */

header h1 {
	padding-right: 90px;
	text-align: left;
	
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* L3 ======================================== メニューボタン ======================================== */

#menu-button {
	display: none;
	overflow: hidden;
	cursor: pointer;
	position: fixed;
	top: 5px;
	right: 5px;
	z-index: 600;
	line-height: 1.0;
	white-space: nowrap;
	border: 1px solid #cccccc;
	
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#menu-button.mobile {
	display: table;
}

#menu-button a i {
	display: table-cell;
	color: #666600 !important;
	width: 30px;
	height: 26px;
	font-size: 1.6rem;
	text-align: center;
	vertical-align: middle;
}

#menu-button a span.text {
	display: table-cell;
	padding-top: 2px;
	width: 3.6em;
	color: #666600 !important;
	font-size: 1.2rem;
	text-align: left;
	vertical-align: middle;
}

/* L3 ======================================== メニューサポート ======================================== */

#menu-support {
	cursor: pointer;
	display: block;
	position: fixed;
	top: 36px;
	right: 5px;
	z-index: 600;
	padding: 0.8em 1em;
	color: #ffffff;
	line-height: 1.0;
	border: 2px solid #ffffff;
	background: #336699;
	
	opacity: 0;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 0, 0, 0.2);
	
	-webkit-transition: opacity 0.5s linear;
	-moz-transition: opacity 0.5s linear;
	-ms-transition: opacity 0.5s linear;
	-o-transition: opacity 0.5s linear;
	transition: opacity 0.5s linear;
}
#menu-support::after {
	content: "";
	position: absolute;
	top: -10px;
	right: 12px;
	z-index: 610;
	border-bottom: 12px solid #336699;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}
 
#menu-support::before {
	content: "";
	position: absolute;
	top: -12px;
	right: 12px;
	z-index: 610;
	border-bottom: 12px solid #ffffff;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
}

#menu-support.show {
	opacity: 1;
}

/* L3 ======================================== メニュー ======================================== */

#menu {
	visibility: hidden;
	position: fixed;
	bottom: -1px;
	left: 0;
	z-index: 20000;
	width: 100%;
	border-top: 1px solid #ffffff;
}

#menu.animate {
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#menu * {
	-webkit-transition-property: none !important;
	-moz-transition-property: none !important;
	-ms-transition-property: none !important;
	-o-transition-property: none !important;
	transition-property: none !important;
}

/* L4 ---------------------------------------- メインメニュー ---------------------------------------- */

#menu ul.main {
	display: block;
	list-style-type: none;
	width: 100%;
	white-space: normal;
}

#menu ul.main li {
	display: block;
	padding: 0;
	text-align: left;
	line-height: 1.3;
}

#menu ul.main li a {
	display: block;
	padding: 0.5em 4%;
	
	border-radius: 0;
}

#menu ul.main li p.title {
	position: relative;
	padding-left: 18px;
	font-size: 1.3rem;
}

#menu ul.main li p.title::before {
	content: "\f0da";
	position: absolute;
	top: -1px;
	left: 5px;
	color: #ffffff;
	font-family: "FontAwesome";
	font-size: 1.6rem;
}
#menu ul.main li a.location p.title::before {
	color: rgba(255, 255, 255, 0.4) !important;
	text-shadow: none;
}

#menu ul.main li p.sub {
	display: none;
}

/* L4 ---------------------------------------- テイチクロゴ ---------------------------------------- */

#menu ul.main li.logo {
	top: 0;
}

#menu ul.main li.logo a {
	padding-top: 0.8em;
	padding-left: 4%;
	padding-right: 4%;
}
#menu ul.main li.logo a:hover {
	background: rgba(255, 255, 255, 0.12);
}

#menu ul.main li.logo p.title {
	display: none;
}

#menu ul.main li.logo p.sub {
	position: relative;
	display: block;
	margin-top: 0;
	padding-left: 18px;
	font-size: 1.4rem;
}
#menu ul.main li.logo p.sub::before {
	content: "\f0da";
	position: absolute;
	top: -1px;
	left: 5px;
	color: #ffffff;
	font-family: "FontAwesome";
	font-size: 1.6rem;
}

#menu ul.main li p.sub::after {
	display: none;
}

/* L4 ---------------------------------------- サブアイコン ---------------------------------------- */

#menu ul.sub {
	margin: 0 4%;
	white-space: normal;
}

#menu ul.sub li {
	margin: 0.4em 10px;
	font-size: 1.2rem;
}

#menu ul.sub li i {
	position: relative;
	top: -2px;
	font-size: 1.4rem;
}

#menu ul.sub li.youtube {
	display: none;
}

#menu ul.sub li span.additional-word {
	display: none;
}

/* L4 ---------------------------------------- メインメニュー内トピックパス ---------------------------------------- */

#menu ol {
	list-style-type: none;
	display: block;
	margin: 0 4%;
	padding: 0.8em 0;	
	text-align: center;
	
	border-top: 1px dotted rgba(255, 255, 255, 0.6);
}

#menu ol li {
	display: inline-block;
	max-width: 80%;
	margin-bottom: 2px;
	padding: 0.5em 8px;
	color: #ffffff;
	font-size: 1.0rem;
	line-height: 1.0;
	
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
}

#menu ol li.location {
	font-weight: bold;
	
	color: rgba(255, 255, 255, 0.2);
}

#menu ol li::after {
	content: "\f054";
	display: inline-block;
	margin-left: 5px;
	font-family: "FontAwesome";
}
#menu ol li:last-child::after {
	display: none;
}

#menu ol li a {
	color: #ffffff !important;
	text-decoration: none;
}

/* L2 **************************************** ページ上部に戻るボタン **************************************** */

#goto-top {
	width: 36px;
	height: 36px;
	right: 5px;
	z-index: 3000;
	
	opacity: 1.0;
}

#goto-top.fixed {
	bottom: 5px;
}

#goto-top p::before {
	top: 8px;
	width: 20px;
	margin-left: 8px;
	margin-right: 8px;
}

#goto-top i {
	font-size: 2.2rem;
}

/* L2 **************************************** SNS **************************************** */

#sns[class] {
	overflow: hidden;
	left: 0;
	width: 100%;
	height: 32px;
	background: #ffffff;
}

#sns[class] ul.mini {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	height: 26px;
	padding-top: 6px;
	text-align: center;
	
	background: rgba(0, 0, 0, 0.1);
}

#sns[class] ul.mini li {
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 75px;
	margin: 0 5px;
	text-align: left;
	vertical-align: top;
}

#sns[class] ul.mini li div.dummy {
	cursor: pointer;
	height: 20px;
	color: #ffffff;
	font-size: 1.4rem;
	margin-left: 10px;
	text-align: center;
	
	border-radius: 2px;
}

#sns[class] ul.mini li div.dummy i {
	position: relative;
	top: -2px;
}

#sns[class] ul.mini li.twitter div.dummy {
	background: #1b95e0;
}

#sns[class] ul.mini li.facebook div.dummy {
	background: #4267b2;
}

#sns[class] ul.mini li.google-plus div.dummy {
	background: #df5c51;
}

/* L1 ######################################## バナー ######################################## */

body > div.banner {
	left: 0;
	width: 100%;
	margin: 0;
	padding: 5px;
	
	box-sizing: border-box;
}

body > div.banner img:not([class="no-resize"]) {
	width: 100%;
	height: auto;
}


/* L1 ######################################## メインコンテンツ ######################################## */

#contents {
	margin: 0;
}

/* L1 ######################################## アーティスト名・シリーズ名（トップページ以外） ######################################## */

#artist,
#series {
	width: 100%;
	margin: 0;
}

#artist dl,
#series dl {
	width: 100%;
	padding: 0.8em 4%;
}

/* L1 ######################################## フッタ ######################################## */

footer {
	margin-top: 1.5em;
	border-top: none;
}

/* L2 **************************************** トピックパス **************************************** */

#topic-path {
	display: none;
}

/* L2 **************************************** サイト更新情報 **************************************** */

#site-info {
	width: 100%;
	margin-top: 0;
	padding-top: 0.2em;
}

#site-info div.rss {
	float: none;
	width: 100%;
	padding: 0.5em 0 !important;
}

#site-info div.rss h3 {
	width: auto;
	margin: 0 3%;
	padding-left: 25px;
}

#site-info div.rss h3 i {
	left: 0;
}

#site-info div.rss ul li {
	padding: 0 3%;
}

/* L2 **************************************** 注意書き・コピーライト **************************************** */

footer div.notice {
	padding: 0.5em 0;
}

footer div.notice p {
	margin: 0.5em 4%;
	line-height: 1.6;
	font-size: 1.1rem;
	text-align: left;
}

footer div.notice p.copyright {
	text-align: center;
}

footer div.notice p.copyright span.sp {
	display: none;
}

/* L1 ######################################## 汎用バナー ######################################## */

#banner {
	width: auto;
	margin: 5px;
}

#banner img {
	width: 100%;
	height: auto;
}

/* L1 ######################################## タイムテーブル ######################################## */

table.time-table {
	margin: 0 auto 1em auto !important;
	border-collapse: collapse !important;
	border: 1px #999999 solid !important;
}

table.time-table caption {
	text-align: left !important;
}

table.time-table thead {
	margin: 0 !important;
	padding: 0 !important;
}

table.time-table th {
	padding: 0.2em !important;
}

table.time-table td {
	padding: 0.2em !important;
	text-align: left !important;
}

/* L1 ######################################## 画面の向きが変更された時 ######################################## */

#now-loading {
	margin: 1em 4%;
	font-size: 1.2rem;
}

#now-loading br {
	display: none;
}

/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# スマホ 設定 ここまで #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */

}