html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

/*-----------------------------------------------------------------------------
Firefoxの右側スクロールバーの表示
Firefox上でコンテンツの高さがウィンドウの高さより短い場合に表示位置がずれる現象を解消
-----------------------------------------------------------------------------*/
html {
	overflow-y: scroll;
}

/* *{border-style:none;} */

img {
	border-style: none;
	vertical-align: top;
}

/*-----------------------------------------------------------------------------
フロート操作によるボックスの高さ調整
-----------------------------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-table;
	min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-Mac */

/* 共通定義
=========================================================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html {
	overflow: auto;
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
}


body {
	margin: 0 !important;
	padding: 0 !important;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.8em;
	color: #333;
	text-align: left;
	background: #FFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.6em;
}

strong {
	font-weight: bold;
}

/* リンク
-----------------------------------------------------------*/
a {
	color: #6EA5C1;
	text-decoration: underline;
	transition: all .3s;
}

a:visited {
	color: #6EA5C1;
}

a:hover {
	color: #6EA5C1;
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	outline: none;
}

/* 画像サイズ
-----------------------------------------------------------*/
img {
	width: 100%;
	height: auto;
}

/* デスクトップ・スマホ分岐
-----------------------------------------------------------*/
.pc {
	display: block;
}

.sp {
	display: none;
}

/* ANIMATION
-----------------------------------------------------------*/
/* ----- フェードイン ----- */
.fadein {
	opacity: 0;
	transition: all 1250ms cubic-bezier(0.000, 0.000, 0.410, 1.475);
}

.fadein.scrollin {
	opacity: 1;
}

/* ----- フェードインアップ ----- */
.fadein_up {
	opacity: 0;
	transform: translate(0, 10px);
	transition: all 750ms cubic-bezier(0.000, 0.000, 0.410, 1.475);
}

.fadein_up.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----- フェードインダウン ----- */
.fadein_down {
	opacity: 0;
	transform: translate(0, -10px);
	transition: all 750ms cubic-bezier(0.000, 0.000, 0.410, 1.000);
}

.fadein_down.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----- フェードインLEFT ----- */
.fadein_left {
	opacity: 0;
	transform: translate(-30px, 0);
	transition: all 750ms cubic-bezier(0.000, 0.000, 0.410, 1.000);
}

.fadein_left.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----- フェードインRIGHT ----- */
.fadein_right {
	opacity: 0;
	transform: translate(30px, 0);
	transition: all 750ms cubic-bezier(0.000, 0.000, 0.410, 1.000);
}

.fadein_right.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* ----- イメージマスク ----- */
@keyframes img-wrap {
	100% {
		transform: translateY(-100%);
	}
}

/* 複数ページ共通
-----------------------------------------------------------*/
/* ----- セクション：New Works ----- */
main .new_works {
	position: relative;
	margin: 0 auto;
	padding: 90px 0 70px;
	width: 930px;
}

main .new_works h2 {
	overflow: hidden;
	text-align: left;
	text-indent: 100%;
	white-space: nowrap;
	margin: 0 auto 45px;
	width: 180px;
	height: 21px;
	background: url(../img/common/new_works_title.svg) center center no-repeat;
	background-size: contain;
}

main .new_works ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 35px;
}

main .new_works ul::before {
	content: "";
	display: block;
	width: calc(216 / 930 * 100%);
	order: 1;
}

main .new_works ul::after {
	content: "";
	display: block;
	width: calc(216 / 930 * 100%);
}

main .new_works ul li {
	width: calc(216 / 930 * 100%);
}

main .new_works ul li div {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	width: 100%;
	padding-top: 75%;
}

main .new_works ul li div img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: 100%;
	transition-duration: 0.3s;
}

main .new_works ul li a:hover img {
	transform: translate(-50%, -50%) scale(1.025, 1.025);
	opacity: .8;
}

main .new_works ul li a,
main .new_works ul li a:visited {
	font-size: 1.4rem;
	line-height: 1.53em;
	color: #333;
	text-decoration: none;
}

main .new_works ul li a:hover {
	color: #333;
	text-decoration: underline;
}

/* ----- ボタン：もっと詳しく ----- */
main a.button_more {
	position: relative;
	display: block;
	margin: 0 0 0 auto;
	width: 84px;
	font-weight: bold;
	font-size: 1.0rem;
	line-height: 1em;
	text-decoration: none;
	color: #707070 !important;
}

main a.button_more:hover,
main a.button_more:visited {
	color: #707070;
	text-decoration: none !important;
}

main a.button_more::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 11px;
	height: 19px;
	background: url(../img/common/button_arrow.svg) center center no-repeat;
	background-size: contain;
	transition: 0.3s;
}

main a.button_more:hover::before {
	right: -1px;
}

main a.button_more::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 6em;
	height: 1px;
	background: #707070;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.3s;
}

main a.button_more:hover::after {
	transform: scale(1);
}

/*  970px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:970px) {

	/* ----- セクション：New Works ----- */
	main .new_works {
		padding: 90px 20px 70px;
		width: 100%;
	}
}

/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

	body {
		font-size: 1.4rem;
	}

	/* デスクトップ・スマホ分岐
	-----------------------------------------------------------*/
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	/* ----- セクション：New Works ----- */
	main .new_works {
		padding: 60px 20px;
	}

	main .new_works h2 {
		margin: 0 auto 35px;
		width: 115px;
		height: 14px;
	}

	main .new_works ul {
		flex-wrap: wrap;
		margin-bottom: 25px;
	}

	main .new_works ul li {
		margin-bottom: 38px;
		width: calc(162 / 335 * 100%);
	}

	main .new_works ul li:nth-last-child(-n+2) {
		margin-bottom: 0;
	}

	main .new_works ul li div {
		margin-bottom: 5px;
	}

	main .new_works ul li a {
		font-size: 1.3rem;
	}

	main .new_works ul li a:hover img {
		transform: translate(-50%, -50%) scale(1, 1);
		opacity: 1;
	}

	/* ----- ボタン：もっと詳しく ----- */
	main a.button_more {
		width: 73px;
	}

	main a.button_more::before {
		width: 8px;
		height: 8px;
	}

	main a.button_more:hover::before {
		right: 0;
	}

	main a.button_more::after {
		display: none;
	}



}

/*  480px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:480px) {}
