/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html {line-height: 1.15;-webkit-text-size-adjust: 100%;}body {margin: 0;}main {display: block;}h1 {font-size: 2em;margin: 0.67em 0;}hr {box-sizing: content-box;height: 0;overflow: visible;}pre {font-family: monospace, monospace;font-size: 1em;}a {background-color: transparent;}abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}b,strong {font-weight: bolder;}code,kbd,samp {font-family: monospace, monospace;font-size: 1em;}small {font-size: 80%;}sub,sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sub {bottom: -0.25em;}sup {top: -0.5em;}img {border-style: none;}button,input,optgroup,select,textarea {font-family: inherit;font-size: 100%;line-height: 1.15;margin: 0;}button,input {overflow: visible;}button,select {text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] {-webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}fieldset {padding: 0.35em 0.75em 0.625em;}legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="checkbox"],[type="radio"] {box-sizing: border-box;padding: 0;}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}details {display: block;}summary {display: list-item;}template {display: none;}[hidden] {display: none;}
*, :after, :before {
  box-sizing: border-box
}
*{
	margin:0;
	padding:0;
}

/**************************************/
/* style */
/**************************************/
html { font-size: 62.5%; }
body { font-size: 1.4rem; }
html{
	width:100%;
	height: 100%;
}
body{
	width:100%;
	height: 100%;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #000;
	font-feature-settings: "palt" 1;
	font-kerning: auto;
	word-wrap: break-word;
}
main{
	width: 100%;
}
@font-face {
    font-family: "A1";
    src: url("AP-OTF-A1GothicStd-Regular.woff2") format("woff2"),
         url("AP-OTF-A1GothicStd-Regular.woff") format("woff");
}
@font-face {
    font-family: "A1 mid";
    src: url("AP-OTF-A1GothicStd-Medium.woff2") format("woff2"),
         url("AP-OTF-A1GothicStd-Medium.woff") format("woff");
}
p,.post-title,.post-tags,.post-left-text,.post-content-title{
	font-family: "A1";
}

a{
	color: #000;
	text-decoration:none;
	-webkit-transition: all .2s ease-in-out;
	   -moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		 -o-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
			word-break: break-all;
}
a:hover{
	-webkit-transition: all .2s ease-in-out;
	   -moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		 -o-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
			cursor: pointer;
}
li{
	list-style:none;
}
.flex{/* 横並び */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex-ct{/* 上下縦中央揃え */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.flex-sb{/* space-between */
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
.flex-sa{/* space-around */
    justify-content: space-around;
    -webkit-justify-content: space-around;
}
.flex-wr{/* flex-wrap */
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.flex-center{/* 上下左右中央 */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

/**************************************/
/* header */
/**************************************/

header{
	position:relative;
}
header .header-logo{
	position:absolute;
	width:180px;
	top:2em;
	left:2em;
	z-index:2;
}


/**************************************/
/* content */
/**************************************/
section{
	width:100%;
	padding: 10em 0;
}
.content{
	padding: 0 4em;
	max-width:1400px;
	margin: 0 auto;
}
.inner{
	padding: 0 4em;
}
.btn {
	text-align: center;
}
.btn a{
	display: inline-block;
	background-color: #ccc;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
	font-family: helvetica, arial, sans-serif;
	line-height:1;
	padding:2px 2px 0 2px;
	letter-spacing: -1px;
}
.btn a:hover{
	background-color: #000;
}
#statement{
	padding:0;
}
#statement h2{
	margin-bottom: 0;
	font-weight: 400;
}
h2{
	font-size: 4rem;
	margin-bottom: 2em;
	letter-spacing:-1.2px;
	font-family: helvetica, arial, sans-serif;
}
h2 span{
	font-weight:400;
	margin-left: .2em;
}
p{
	letter-spacing:.1em;
	line-height: 1.8;
}
/* statement */	
#statement{
	background-color: #F9FBFC;
}

.header-statement{
	text-align:center;
	margin-bottom: 6em;
}
.line{
	width: 80%;
	height: 1px;
	background-color:#000;
	margin: 0 4em;
}
.header-statement img{
	width: 20%;
}
.main_title{
	width:40%;
	text-align: center;
}
.main_title img{
	width:35%;
	margin-top: -20em;
	z-index: 3;
	position:relative;
}
.statement_text{
	width:60%;
	padding: 10em 5em 10em 0;
}
.statement_text p{
	font-size:  calc(100vw / ( 1280 / 24 ));
	line-height:2;
	letter-spacing: .31em;
}
.statement_text .statement_value {
	margin-bottom: 6rem;
}

.statement_text .statement_value p {
	font-size: calc(150vw / (1280 / 24));
}
.post-list .post-title{
	letter-spacing:.1em;
	line-height: 1.8;
	font-weight: bold;
	margin: 1em 0 0 2.13em;
}

.post-list .post-thumbnail{
	position: relative;
	overflow: hidden;
	background-color: #f5f5f5;
}

/* news */

.post-list .item{
	width:  33%;
	margin-bottom:4em;
	max-height: 360px;
	padding: 0 1.3%;
	transition: all .2s ease-in-out;
}
.post-list .item:hover{
	color: #53BEEC;
	transition: all .2s ease-in-out;
}
.post-list .item img{
	transition: all .2s ease-in-out;
}
.post-list .item:hover img{
	filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    transition: all .2s ease-in-out;
}

#news .post-list .post-thumbnail,#news .post-list .post-right{
	width:100%;
}
#news .post-list .post-left{
	margin-right: 1em;
}
#news .post-list .post-left-text{
	writing-mode: vertical-rl;
}
.line2{
	height: 50%;
	width:1px;
	background-color: #000;
}


/* works */
#works{
	background-color: #F9FBFC;
}
#works .post-list .item{
	width:  100%;
	display:block;
}
#works .post-list .flex{
	-webkit-align-items: flex-end;
    align-items:  flex-end;
}
#works .post-list .post-thumbnail{
	width:40%;
	position: relative;
	overflow: hidden;
	margin-right: 2em;
	background-color: #f5f5f5;
}
.post-list .post-thumbnail::before{
	content: '';
	display: block;
	padding-top: 75%;
}
#works .post-list .post-thumbnail::before{
	content: '';
	display: block;
	padding-top: 56.25%;
}
.post-list .post-thumbnail img{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin: auto;
	width: auto;
	height:100%;
}
#works .post-list .post-thumbnail img{
	width: 100%;
	height: auto;
}

.post-list .post-text{
	width:60%;
}
.post-tags{
	margin-bottom: 1em;
}
#works .post-list .post-title{
	margin: 0 0 1em 0;
}
.line3{
	width: 30%;
	height: 1px;
	background-color: #000;
}

/* company */
.company-content > div{
	width: 50%;
	position:relative;
}
.access .btn{
	position:absolute;
	bottom:0;
	left: 0;
}
.company-content .btn{
	text-align: left;
	margin-top: 2em;
	
}
.company-content h3{
	margin-bottom: 2em;
	font-family: helvetica, arial, sans-serif;
	letter-spacing:-1px;
}

/* page */

.page-title{
	position: relative;
}
.page-title-left-text{
	font-size:  calc(100vw / ( 1280 / 50 ));
	font-weight: bold;
	letter-spacing:-1.2px;
	font-family: helvetica, arial, sans-serif;
}
.page-title-left{
	width: 60%;
	position: absolute;
}
svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
text {
  fill: none;
  stroke: #EDEDED;
  stroke-width: .1;
  stroke-linejoin: round;
  font-family: helvetica, arial, sans-serif;
  font-weight: bold;
  letter-spacing:-0.6px;
}
.page-title-right{
	width: 40%;
	margin-left:auto;
}
.page-title-right h2{
	padding: 8vw 0;
	margin-bottom:0;
}
.page-title-right ul{
	padding: 12vw 0;
}

.page-header-area{
	background-color: #F9FBFC;
}
.page-header-area a{
	margin-bottom:1em;
	display:inline-block;
}

/* service */
.service-content{
	width:100%;
	max-width: 1200px;
	margin: 0 auto 10em;
}
.post-thumbnail-image{
	width:100%;
	height:auto;
	margin:0 auto 4em;
	padding: 6em;
	box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.post-thumbnail-image img{
	width:100%;
	height:auto;
}
.service-content .flex{
	align-items: center;
	-webkit-align-items: center;
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-bottom: 3em;	   
}
.service-loopcounter{
	font-family: helvetica, arial, sans-serif;
	font-size: 4rem;
	font-style:italic;
}
.line4{
	width:20%;
	margin: 0 4em;
	height: 1px;
	background-color: #000;
}
.service-content h2{
	margin-bottom: 0;	
}
.service-text{
	text-align:right;
	width: 80%;
	line-height: 2;
	letter-spacing:.31em;
}
.service-flex-text{
	-webkit-justify-content: flex-end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* talent */
#Talent .inner{
	margin-bottom: 6em;
}
#Talent .post-list .post-thumbnail,#Talent .post-list .post-right{
	width:100%;
}
#Talent .post-list .post-left{
	margin-right: 1em;
}
#Talent .post-list .post-left-text{
	writing-mode: vertical-rl;
}
#Talent .btn{
	text-align: right;
}


/* single */

.single section{
	position:relative;
	z-index: 2;
}
.single.single-talent-member article{
	min-height: 100vh;
}
.single.single-talent-member section{
	padding-bottom:0;
}

.single-bg{
	background-color: #F9FBFC;
	height:80vh;
	width:100%;
	position:absolute;
	z-index:-3;
}
.post-content-title{
	margin-bottom: 1em;
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: .05em;
}
.post-content-date{
	font-style:italic;
	font-size:1.2rem;
	font-family: helvetica, arial, sans-serif;
	margin-bottom: 8em;
}
.post-content{
	max-width: 800px;
	margin: 0 auto;
}
.post-content h3 {
	font-size: 2rem;
	padding: 2rem 0;
}
.post-content h4 {
	font-size: 2rem;
	padding: 2rem 0;
}
.post-content p{
	font-size: 1.8rem;
	letter-spacing:.15em;
	line-height: 2.2;
}
.post-content img {
	width: 100%;
	height: auto;
}
.post-content p img{
    width: 100%;
    height: auto;
}
.post-content a{
	text-decoration: underline;

}
.post-content a:hover{
	text-decoration: none;
}

.single .post-tags{
	margin: 3em 0 8em;
}
.tags a{
	display: inline-block;
	margin-bottom: .5em;
	margin-right: .5em;
	font-size: 1.2rem;
}
.tags a::before{
	content:"#";
}
.navi a{
	padding: 0 1em;
	font-weight: bold;
	font-family: helvetica, arial, sans-serif;
	font-size: 1.8rem;
}

/* archive */
.archive .page-title-left{
	transform: rotate(90deg);
	transform-origin: left bottom;
}
.archive .post-list .item{
	width:  100%;
	display:block;
	padding: 0;
}
.archive .post-list .flex{
	-webkit-align-items: flex-end;
    align-items:  flex-end;
}
.archive .post-list .post-thumbnail{
	width:40%;
	position: relative;
	overflow: hidden;
	margin-right: 2em;
	background-color: #f5f5f5;
}
.archive .post-list .post-thumbnail::before{
	content: '';
	display: block;
	padding-top: 56.25%;
}
.archive .post-list .post-title {
    letter-spacing: .1em;
    line-height: 1.8;
    font-weight: bold;
    margin: 1em 0 0 0;
}


/* contact */
.contact-btn-wrap{
	margin-top: 4em;
}
.contact-btn a{
	padding: 1.5em 3em;
	background:none;
	color:#000;
	border: 1px solid #000;
	line-height:1;
	font-family: "A1";
}
.contact-btn a:hover{
	background:#000;
	color:#fff;
	
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	background-color: #D1E1E8;
	color: #333;
	width: 100%;
	border: 0;
	padding: 1.4em 1em;
	border-radius: 0;
	box-sizing: border-box;
	margin-bottom: 10px;
	border-radius: 5px;
}
.wpcf7 textarea{
	margin-top: 10px;
}
input[type="submit"] {
	font-size: 1.4rem;
	padding: 1.4em 1em;
	background: #000;
	color: #fff;
	font-weight: bold;
	width: 30%;
	border-radius: 0;
	cursor: pointer;
	border: 0;
	text-align: center;
	border-radius: 5px;
	margin-top: 2em;
}
input[type="submit"]:hover {
	background-color: #ccc;
	color: #000;
}
.wpcf7-response-output {
	font-size: 1.4rem;
	border: 0 !important;
	margin: 20px 0 0 0 !important;
	padding: 0 !important;
}


/* banner */
.banner{
	text-align: center;
	margin-top: 2em;
}
.banner a{
	display: inline-block;
	max-width: 80%;
	width: 100%;
	margin: 0 auto;
}
.banner a img{
	width: 100%;
	height: auto;
}

/**************************************/
/* footer */
/**************************************/

footer{
	background-color: #F9FBFC;
	padding-top: 5em;
	position:relative;
	z-index: 3;
}
footer h2{
	margin-bottom: .2em;
	font-size: 5rem;
}
footer ul{
	margin-bottom: 1em;
}
footer ul li{
	margin-right: 1em;
}
footer ul li a{
	font-weight: bold;
}
.fonter_main_title{
	position: relative;
	height: 30vw;
	overflow: hidden;
	margin-top: 5em;
}
.fonter_main_title img{
	position: absolute;
	width: 30vw;
	top: 0;
	left: 0;
	right: 0;
	margin:auto;
}

.artist-name-title h2{
	padding-bottom: 1vw;
	font-family: "A1";
}
.artist-name-title p{
	padding-bottom: 8vw;
}
.artist-material{
	padding: 0 4em 0 0;
}
#talent-member-single .page-title-right h2 {
    padding: 0;
    margin-bottom: 1em;
}
#talent-member-single .page-title-right ul {
    padding: 0;
    margin-bottom: 8em;
}
#talent-member-single .page-title-right ul li{
    margin-bottom: .5em;
    font-family: "A1";
}
.artist-profile{
	margin-top: 2em;
}
#talent-member-single .page-title-right ul li.works-title{
	font-size: 1.6rem;
	font-weight: bold;
	margin: 2em 0 1em;
}
.artist-text li span{
	display:inline-block;
	width: 120px;
}
.fixed{
    position: fixed;
    bottom: 0;
    z-index: 1;
    width:60%;
    margin:0;
	padding: 0 4em 0 0;
	box-shadow: none;
	background: none;
}
.fixed img{
	vertical-align: bottom;
	display:block;
}
#talent-member-single .post-thumbnail-image{
	width:100%;
	height:auto;
	margin:0 auto 4em;
	padding: 0 4em 0 0;
	box-shadow: none;
	background: none;
}

/* creator-area */
.creator-area{
	position:relative;
	z-index: 3;
	background-color: #F9FBFC;
	padding: 8em 0;
}
.creator-area .flex{
	max-width: 1200px;
	margin: 0 auto;
}
.creator-contents-img{
	width: 33.3333%;
	padding: 1%;
}
.creator-contents-img img{
	width: 100%;
}
.line5{
	width: 10%;
	margin: 5em auto 0;
	background-color: #ccc;
	height: 1px;
}
/************************************************************************************************************************/



/**************************************/
/* device */
/**************************************/


@media (max-width: 768px) {
	
	body{
		width:100%;
	}

	#wrapper{
    	overflow: hidden;
	}

	.company-content {
		display: block;
	}

	.company-content > div {
		width: 100%;
		margin-bottom: 2em;
	}


}

@media (max-width: 768px) {
section {
    padding: 3em 0;
}
h2 {
    font-size: 2.3rem;
    margin-bottom: 1em;
}
header .header-logo {
    width: 80px;
    top: 1em;
    left: 1em;
}
.post-list .post-title,.post-left-text,p,li,.content a{
	font-size:1.2rem;
}
.btn a {
    font-size: 1.4rem;
    padding: 6px 12px;
}
.content,.inner {
    padding: 0 1em;
}
.post-list .item {
    margin-bottom: 2em;
    padding: 0;
    display: block;
    width: 100%;
	max-height: none;
}
.main_title {
    width: 30%;
    text-align: center;
}
.main_title img {
    width: 60%;
    margin-top: -3em;
}
.header-statement {
    text-align: right;
    display: block;
    margin-bottom: 2em;
}
.statement_text {
    width: 60%;
    padding: 3em 1em 3em 0;
}
.line {
    width: 80px;
    margin: 0 1em 0 0;
    display: inline-block;
    vertical-align: middle;
}
.header-statement img {
    width: 34%;
    display: inline-block;
    vertical-align: middle;
}
.statement_text p {
    letter-spacing: .15em;
    font-size:1.2rem;
}
.statement_text .statement_value {
	margin-bottom: 3rem;
}
.statement_text .statement_value p {
	font-size: 1.8rem;
}

#statement h2 {
    margin-bottom: .1em;
    text-align: left;
	font-weight: 400;
}
#news .content{
	padding: 0 2em;
}

.archive .post-list .flex,
#works .post-list .flex {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
#works .post-list .post-thumbnail {
    margin-right: 1em;
}
.post-tags {
    margin-bottom: .5em;
    line-height: 1.4;
    font-size: 1rem;
}
#works .post-list .post-title {
    margin: 0 0 0.5em 0;
}
.line3 {
    display: none;
}

.flex.company-content{
	display:block;
}
.company-content > div {
    width: 100%;
    margin-bottom: 2em;
}
.company-content > div.access{
	margin-bottom: 0;
}
.access .btn {
    position: unset;
}


footer .flex{
	display:block
}
footer ul li {
    margin-right: 0;
    margin-bottom: .3em;
}
footer h2 {
    margin-bottom: .2em;
    font-size: 3.4rem;
}

/* single*/

.post-thumbnail-image {
    width: 100%;
    margin: 0 auto 2em;
    padding: 1em;
}
.post-content-title {
    margin-bottom: .5em;
    font-size: 2rem;
}
.post-content-date {
    margin-bottom: 3em;
}
.post-content p {
    font-size: 1.2rem;
}
.single.single-talent-member article{
	min-height: auto;
}
#talent-member-single > .flex{
	display:block;
}
.page-title-left{
	width:100%;
	position:relative;
}
#talent-member-single .post-thumbnail-image {
    margin: 0;
    padding: 0;
}
.page-title-right {
    width: 100%;
    margin-left: auto;
    box-sizing:border-box;
    padding:2em;
}
.page-title-right {
    width: 100%;
    margin-left: auto;
}
.artist-material {
    padding: 0;
}
#talent-member-single .page-title-right ul {
    padding: 0;
    margin-bottom: 4em;
}
.artist-text li span {
    width: 92px;
}
.creator-area {
    padding: 2em 0;
}
.line5 {
    margin: 2em auto 0;
}

.audition2020banner a{
	max-width: 80%;
}

}
