@charset "utf-8";
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: normal;
    src: local("Noto Sans CJK JP Regular"),
    url('/css/font/NotoSans_Regular.woff2') format('woff2'),
    url('/css/font/NotoSans_regular.woff') format('woff'),
    url('/css/font/NotoSans_regular.otf') format('opentype');
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: bold;
    src: local("Noto Sans CJK JP Bold"),
    url('/css/font/NotoSans_Bold.woff2') format('woff2'),
    url('/css/font/NotoSans_bold.woff') format('woff'),
    url('/css/font/NotoSans_bold.otf') format('opentype');
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    src: url("/css/font/YakuHanJP-Regular.woff2") format("woff2"),
    url("/css/font/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    src: url("/css/font/YakuHanJP-Bold.woff2") format("woff2"),
    url("/css/font/YakuHanJP-Bold.woff") format("woff");
}

/* Color */
body,
th,
.timberwolf.isAnimated,
.timberwolf .isAnimated a::after  {
	background-color: rgba(53,56,57,1.00);
}
.timberwolf,
.timberwolf.scrollIn::before,
.isAnimated a::after {
	background-color: rgba(219,215,210,1.00);
}
body,
a,
th {
	color: rgba(219,215,210,1.00);
}
.timberwolf,
.timberwolf a {
	color: rgba(53,56,57,1.00);
}
.simpleFrame {
	border-color: rgba(53,56,57,1.00);
}
thead th {
	border-right-color: rgba(219,215,210,1.00)
}
th,
td,
thead th:last-child {
	border-right-color: rgba(53,56,57,1.00);
}
td,
tbody tr:last-child th {
	border-bottom-color: rgba(53,56,57,1.00);
}
table {
	border-top-color: rgba(53,56,57,1.00);
	border-left-color: rgba(53,56,57,1.00);
}
#jsScrollFadein::after {
	color: rgba(209,17,32,1.00);
}

@media screen and (min-width:769px) {
	a:hover,
	.timberwolf a:hover {
		color: rgba(219,215,210,1.00);
	}
	.timberwolf .isAnimated a:hover {
		color: rgba(53,56,57,1.00);
	}
	.mainContents a {
		background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(53,56,57,1.00) 50%);
	}
}

@media screen and (max-width:768px) {
	th {
		border-bottom-color: rgba(53,56,57,1.00);
	}
}

/* Global Styles */
body {
	margin: 0;
	font-family: 'YakuHanJP','Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
a {
	text-decoration: none;
}
.mainContents a[target="_blank"] {
	display: inline-block;
	position: relative;
	margin-right: 20px;
}
.mainContents a[target="_blank"]:after {
	display: block;
	position: absolute;
	top: 50%;
	right: -17px;
	width: 14px;
	height: 11px;
	background-image: url('/img/common/icon-blank.svg');
	background-size: contain;
	content: '';
	transform: translateY(-50%);
}

/* Timberwolf */
.timberwolf .mainContents a {
	text-decoration: underline;
}
.timberwolf.isAnimated {
	position: relative;
}
.timberwolf.scrollIn::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	animation: bg 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.timberwolf.scrollIn::before {
	transform-origin: left center;
}
@keyframes bg {
  0% {
    transform: scaleX(0) translateX(0);
  }
  75% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
}

/* Main Contents */
.mainContents {
	margin: 0;
	padding: 80px 0;
}
.mainContents section {
	margin: 60px 0;
}
.mainContents h2 {
	margin: 0 0 1em;
	font-size: 2.25em;
	text-align: center;
}
.mainContents h3 {
	margin: 0 0 0.75em;
	font-size: 1.5em;
}
.mainContents h4 {
	margin: 0 0 0.5em;
	font-size: 1.125em;
}
.mainContents p {
	margin: 0 0 0.75em;
	line-height: 1.75;
}
.mainContents ul,
.mainContents ol {
	margin: 1.5em 0;
	padding-left: 1.75em;
}
.mainContents li {
	margin-bottom: 0.5em;
}
.rightText {
	text-align: right;
}
	
/* Link Animation */
a.herePage {
	pointer-events: none;
}
.isAnimated a {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.isAnimated a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	transform: scale(0, 1);
	transform-origin: center top;
	content: '';
	transition: transform .3s;
}
.isAnimated a.herePage::after {
	transform: scale(1, 1);
}
.timberwolf .isAnimated a::after {
	height: 2px;
}

/* Main Container */
.mainContainer {
	position: relative;
	width: 750px;
	margin: 0 auto;
}

/* Frame */
.simpleFrame {
	margin: 40px 0;
	padding: 75px;
	border: 1px solid;
}

/* Table */
table {
	width: 100%;
	margin: 40px 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-left-width: 1px;
	border-left-style: solid;
}
th,
td {
	padding: 1.25em;
	border-right-width: 1px;
	border-right-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
th {
	width: 25%;
}
td {
	width: 75%;
}

/* PAGE TOP */
#jsScrollFadein {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 25px;
	bottom: 36px;
	width: 50px;
	height: 50px;
	z-index: 2;
	cursor: pointer;
	transition: opacity 0.5s ease-in-out;
}
#jsScrollFadein.isFadein {
	visibility: visible;
	opacity: 0.5;
}
#jsScrollFadein::after {
	display: block;
	width: 60px;
	height: auto;
	margin: 4px 0 0 -5px;
	font-weight: bold;
	font-size: 0.75em;
	line-height: 1;
	text-align: center;
	content: 'PAGE TOP';
}

/* Header */
header {
	padding: 125px 0;
}
#logo {
	opacity: 0;
	width: 400px;
	margin: 0 auto;
	animation-name: fadeInAnime;
	animation-duration: 2s;
	animation-timing-function: steps(5, end);
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#logo a {
	display: block;
}
#logo a::after {
	content: none;
}

/* Footer */
footer {
	padding: 30px 0 28px;	
}
footer p {
	margin: 0;
	line-height: 1;
}
#footerMenu {
	display: flex;
	font-size: 0.875em;
}
#footerMenu p {
	margin-left: 20px;
}
#footerMenu p:first-child {
	margin-left: 0;
}
#footerMenu a {
	padding-bottom: 3px;
}
#copyright {
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 0.75em;
	transform: translateY( -50% );
}

/* Media query for PC */
@media screen and (min-width:769px) {
	
	/* Main Contents */
	a:hover {
		text-decoration: none;
	}
	.mainContents a {
		background-position: 0 0;
		background-size: 200% auto;
		transition: 0.5s;
	}
	.mainContents a:hover {
		background-position: -100% 0;
		text-decoration: none;
	}
	
	/* Link Animation */
	.isAnimated a:hover::after {
		transform: scale(1, 1);
	}
	
	/* PAGE TOP */
	#jsScrollFadein:hover {
		opacity: 1;
		transform: rotateY(360deg);
		transition: all 1s ease-in-out;
	}
}

/* Media query for tablets */
@media screen and (max-width:768px) {

	/* Main Contents */
	.mainContents {
		padding: 15% 0;
	}
	.mainContents section {
		margin: 10% 0;
	}
	
	/* Main Container */
	.mainContainer {
		width: 100%;
		padding: 1em;
	}

	/* Frame */
	.simpleFrame {
		margin: 5% 0;
		padding: 1em;
	}

	/* Table */
	table {
		margin: 5% 0;
	}
	thead {
		display: none;
	}
	th,
	td {
		display: block;
		width: 100%;
		padding: 1em;
	}

	/* PAGE TOP */
	#jsScrollFadein {
		right: 20px;
		bottom: 32px;
	}

	/* Header */
	header {
		padding: 5% 0;
	}
	header .mainContainer {
		padding: 15% 25%;
	}
	#logo {
		width: 100%;
	}
	
	/* Footer */
	footer {
		padding: 0;
	}
	footer .mainContainer {
		padding: 2em 1em;	
	}
	footer #footerMenu {
		display: block;
		margin-bottom: 2em;
	}
	footer #footerMenu p {
		margin: 0 0 1em 0;
		text-align: center;
	}
	footer #footerMenu a {
		padding-bottom: 3px;
	}
	#copyright {
		position: relative;
		top: 0;
		font-size: 0.75em;
		text-align: center;
		transform: none;
	}
}

/*media query for small screen devices */
@media screen and (max-width:480px) {

	/* Main Contents */
	.mainContents {
		padding: 20% 0;
	}
	.mainContents section {
		margin: 15% 0;
	}
	.mainContents h2 {
		font-size: 1.75em;
	}

	/* Frame */
	.simpleFrame {
		margin: 10% 0;
	}

	/* Table */
	table {
		margin: 10% 0;
	}

	/* Header */
	header {
		padding: 10% 0;
	}
	header .mainContainer {
		padding: 15%;
	}
}
