@charset "UTF-8";

/* ==========================================================================
 * Mixins
 * ========================================================================== */

@font-face{ 
	font-family: 'Noto Sans Japanese'; /* フォント名定義 */
	src: url('../../font/NotoSansCJKjp-Bold.eot'); /* IE9以上用 */
	src: url('../../font/NotoSansCJKjp-Bold.eot?#iefix') format('embedded-opentype'), /* IE8以前用 */
		url('../../font/NotoSansCJKjp-Bold.woff') format('woff'), /* モダンブラウザ用 */
		url('../../font/NotoSansCJKjp-Bold.otf') format('opentype'); /* iOS, Android用 */
	font-weight: 700;
	font-style: normal;
}
html {
	font-size: 62.5%; /* ≒10px */
}
body {
	font: 1.3rem/2.5rem "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: transparent;
	color: #000;
}
main {
	display: block;
}
img {
	width: 100%;
	max-width: 100%;
}
hr {
	border: 0;
	border-top: 1px solid #bbb;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a {
	color: #000;
	text-decoration: none;
	transition: all .3s;
}
a:hover {
	cursor: pointer;
	text-decoration: none;
	transition: all .3s;
}
a.link-external {
	background: url(/images/common/common_link_icon_external.png) no-repeat right center;
	padding-right: 17px;
}
a.link-pdf {
	background: url(/images/common/common_link_icon_pdf.png) no-repeat right center;
	padding-right: 17px;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.float-L {
	float: left;
}
.float-R {
	float: right;
}
.clear {
	clear: both;
}
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

/* ==========================================================================
 * Device
 * ========================================================================== */
/*PCの最大幅は960pxとし、768px以下をドロワーメニューへの切り替えとする*/
/*[SP(Portrait)]320px〜479px [SP(Landscape)/Tab]480px〜768px [PC]769px〜)*/
/*全て非表示*/
.hidden-all {
	display: none;
}
/*PCのみ表示(768px以下非表示)*/
@media screen and (max-width: 768px) {
.visible-pc {display: none;}
}
/*Tabのみ表示(769px以上、479px以下非表示)*/
@media screen and (min-width: 769px), screen and (max-width: 479px) {
.visible-tab {display: none;}
}
/*SPのみ表示(480px以上非表示)*/
@media screen and (min-width: 480px) {
.visible-sp {display: none;}
}
/*PCのみ非表示(769px以上非表示)*/
@media screen and (min-width: 769px), print {
.hidden-pc {display: none;}
}
/*Tabのみ非表示(480px以上、768px以下非表示)*/
@media screen and (min-width: 480px) and (max-width: 768px) {
.hidden-tab {display: none;}
}
/*SPのみ非表示(479px以下非表示)*/
@media screen and (max-width: 479px) {
.hidden-sp {display: none;}
}

/* ==========================================================================
 * Spacing
 * ========================================================================== */
.spacing-XS   {margin-bottom:    5px !important;}
.spacing-S    {margin-bottom:   15px !important;}
.spacing-M    {margin-bottom:   25px !important;}
.spacing-L    {margin-bottom:   45px !important;}
.spacing-XL   {margin-bottom:   65px !important;}

@media screen and (max-width: 768px) {
.spacing-S    {margin-bottom:   15px !important;}
.spacing-M    {margin-bottom:   20px !important;}
.spacing-L    {margin-bottom:   35px !important;}
.spacing-XL   {margin-bottom:   50px !important;}
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul.list-disc {
	margin-left: 1.7rem;
	padding: 0;
	list-style: disc;
}
ul.list-annotation {
	margin-left: 1.7rem;
	padding: 0;
	list-style: none;
}
ul.list-square {
	margin-left: 1.7rem;
	padding: 0;
	list-style: square;
}
ul.list-annotation li:before {
	margin-left: -1.7rem;
	content: "※ ";
}
.list-white-square {
	list-style: none;
}
.list-white-square li:before {
	margin-left: 0;
	content: "□ ";
}
ul.list-unstyled {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ==========================================================================
 * Navigation
 * ========================================================================== */
ul.breadcrumb {
	padding-left: 0;
	list-style: none;
}
ul.breadcrumb li {
	display: inline-block;
}
ul.breadcrumb li:after {
	content: "\00a0\00a0»\00a0";
}
ul.breadcrumb li:last-child:after {
	content: none;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
p {
	margin-bottom: 10px;
	line-height: 2.3rem;
}
@media screen and (max-width: 479px) {
p {
	font-size: 1.5rem;
	line-height: 2.5rem;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-bold {
	font-weight: bold;
}
.txt-emphasis {
	color: #e74c3c;
}
.txt-notes {
	color: #7f8c8d;
}
.txt-clr-orange {
	color: #e67e22;
}
.txt-clr-green {
	color: #27ae60;
}
.txt-clr-blue {
	color: #2980b9;
}
.txt-hidden {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.txt-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
}
.txt-multi-ellipsis {
	/*IE・FF非対応*/
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
blockquote.quote-line {
	margin-right: 0;
	margin-left: 2rem;
	padding: 6px 0 6px 2rem;
	border-left: 1px solid #bbb;
}
blockquote.quote-line cite {
	margin-top: 10px;
	margin-left: .5rem;
	display: block;
}
blockquote.quote-line cite:before {
	content: "\2014 \0020";
}

/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
}
/*セル余白*/
.table-spacing-3 th, .table-spacing-3 td {
	padding: 3px;
}
.table-spacing-5 th, .table-spacing-5 td {
	padding: 5px;
}
.table-spacing-8 th, .table-spacing-8 td {
	padding: 8px;
}
/*横ボーダーのみ*/
.table-condensed {
	border-bottom: 1px solid #ccc;
}
.table-condensed th, .table-condensed td {
	padding: 5px;
	border-top: 1px solid #ccc;
}
/*縦横ボーダー*/
.table-bordered {
	border: 1px solid #ccc;
}
.table-bordered th, .table-bordered td {
	border: 1px solid #ccc;
}
/*2列レスポンシブ（縦横ボーダー）*/
.table-col2 {
	width: 100%;
	word-break: break-all;
}
.table-col2 th, .table-col2 td {
	border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
.table-col2 th, .table-col2 td {
	border-top: none;
	text-align: left;
	display: block;
}
.table-col2 tr:first-child {
	border-top: 1px solid #ccc;
}
}
/*横長の要素をはみ出させずスクロール(ex:tableをdiv.scroll-xで囲む)*/
.scroll-x {
	overflow-x: auto;
}
.scroll-x::-webkit-scrollbar {
	height: 5px;
}
.scroll-x::-webkit-scrollbar-track {
	border-radius: 5px;
	background: #eee;
}
.scroll-x::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #666;
}

/* ==========================================================================
 * Animation
 * ========================================================================== */
/*BL要素のフェードイン*/
.display-fadein {
	display: block;
	opacity: 1;
	-moz-animation: fadein 1s forwards;
	-webkit-animation: fadein 1s forwards;
	animation: fadein 1s forwards;
}
@keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-moz-keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*点滅*/
.display-blinking{
	-moz-animation: blink 0.9s ease-in-out infinite alternate;
	-webkit-animation: blink 0.9s ease-in-out infinite alternate;
	animation: blink 0.9s ease-in-out infinite alternate;
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-moz-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes blink {
	0% {opacity :0;}
	100% {opacity: 1;}
}

/* ==========================================================================
 * Embed video
 * ========================================================================== */
/*埋め込みIFRAMEをdiv.youtubeで囲む*/
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
