@charset "utf-8";
/*--------------------------------------
	base
--------------------------------------*/
body {
	background: #fff;
	color: #000;
	font-family: 'Noto Sans japanese', 'Lato', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.43;
  text-rendering: optimizeLegibility;
	margin: 0;
}
@media only screen and (min-width: 768px) {
	body {font-size: 18px;}
}

img {
	max-width: 100%;
  height: auto;
  position: relative;
	vertical-align: bottom;
}

h2 {
	font-weight: 500;
	line-height: 1.67;
  padding: 0.66em 0;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}

h1, h2, h3, h4, h5, h6 {
  position: relative;
	clear: both;
  margin: 1rem 0;
}

.entry-content > section {padding: 15px 0 0;}
@media only screen and (min-width: 768px) {
	.entry-content > section {padding: 15px;}
}

a.btn:hover,
a.btn:active,
a.btn:focus,
.entry-content a.btn:hover,
.entry-content a.btn:active,
.entry-content a.btn:focus {transform: translateY(3px);}

a {
	text-decoration: none;
	transition: color 110ms ease-in-out;
}

a:visited {color: #000;}

a:hover,
a:active {color: #ff2c89;}

a:hover {
	outline: 0;
  text-decoration: none;
}

*,
*:before,
*:after {box-sizing: inherit;}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

::selection {background-color: #bfdcea;}

@font-face {
	font-family: 'dinbold';
	src: url('fonts/din-bold-webfont.woff') format("woff");
}

@font-face {
	font-family: 'dinregular';
	src: url('fonts/din-regular-webfont.woff') format("woff");
}

/*--------------------------------------
	header
--------------------------------------*/
.site-header {
  padding: 0;
  padding-top: 55px;
}
@media only screen and (min-width: 1024px) {
	.site-header {padding-top: 110px;}
}

.site-header.featured-image {
  display: flex;
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  min-height: auto;
	overflow: hidden;
  position: relative;
	margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
@media only screen and (min-width: 768px) {
	.site-header.featured-image {
    min-height: auto;
    margin-bottom: 0;
	}
}

.site-header.featured-image .site-branding-container {margin-bottom: auto;}

.site-branding-container {
	width: 100%;
	height: 55px;
	background-color: rgba(255, 255, 255, 0.92);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
	padding-left: 6.67%;
	 margin-bottom: auto;
}
@media only screen and (min-width: 1024px) {
	.site-branding-container {
    height: 110px;
    padding-left: 0;
	}
}

.site-branding {
	display: flex;
	height: 100%;
  color: #606060;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  z-index: 1000;
}
@media only screen and (min-width: 768px) {
	.site-branding {margin: 0 15px;}
}

.site-logo {
  position: relative;
  z-index: 999;
  margin: auto auto auto 0;
  margin-bottom: auto;
}
@media only screen and (min-width: 768px) {
	.site-logo {
    position: relative;
		top: auto;
    right: auto;
		z-index: 999;
	}
}

.site-header.featured-image .custom-logo-link {
  background: none;
  box-shadow: none;
}

.site-logo .custom-logo-link {
	display: block;
	width: inherit;
	height: inherit;
  border-radius: 0;
  box-sizing: content-box;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  overflow: initial;
  transition: box-shadow 200ms ease-in-out;
}
@media only screen and (min-width: 768px) {
	.site-logo .custom-logo-link {
    width: initial;
    height: initial;
	}
}

.site-logo .custom-logo-link .custom-logo {min-height: inherit;}

.site-logo img {
	width: 92px;
  height: auto;
}
@media only screen and (min-width: 1024px) {
	.site-logo img {width: 129px;}
}

#menu-btn {
  display: block;
	width: 24px;
  height: 24px;
  position: absolute;
  top: 15px;
  right: 9.6%;
  z-index: 1001;
  transition: 0.5s;
  cursor: pointer;
}

#menu-btn::before,
#menu-btn::after {
	width: 18px;
	height: 2px;
	border-radius: 1px;
	background-color: #000;
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transition: 0.5s;
  margin-top: -1px;
}

#menu-btn::before {box-shadow: 0 3px 0 0 transparent, 0 6px 0 0 #000;}
#menu-btn::after {box-shadow: 0 -3px 0 0 transparent, 0 -6px 0 0 #000;}

@media only screen and (min-width: 1024px) {
	#menu-btn {display: none;}
}

#menu-btn.open {background-color: transparent;}

#menu-btn.open::after {
	background-color: #fff;
	box-shadow: none;
	transform: rotate(-45deg);
}

#menu-btn.open::before{
	background-color: #fff;
	box-shadow: none;
	transform: rotate(45deg);
}

#nav-container {
	display: flex;
	width: 100%;
	height: 100%;
	height: 100vh;
	background-color: #ff2c89;
	background-image: linear-gradient(155deg, #ff2c89, #fff8a0);
	color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
	text-align: center;
	text-shadow: none;
  transition: opacity 0.2s ease-in, transition 0.4s linear,visibility 0.3s ease-out;
  padding: 50px 0;
	white-space: nowrap;
}

#menu-btn.open + #nav-container {
	visibility: visible;
	opacity: 1;
	margin-top: -50px;
}

@media only screen and (min-width: 1024px) {
	#nav-container {
		width: 100%;
    height: initial;
		background: none;
		color: initial;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    visibility: visible;
    opacity: 1;
    padding: 0;
	}
}

#nav-container > * {order: 1;}
#nav-container > *:nth-of-type(2) {order:2;}
#nav-container > *:nth-of-type(4) {order:3;}

.main-navigation {
	display: block;
	font-size: 1.333em;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.33;
	margin-top: 50px;
}
@media only screen and (min-width: 1024px) {
	.main-navigation {margin-top: 0.25rem;}
}

@media only screen and (max-width: 1023.75px) {
	.mobile_dnone {display:none!important;}
}

@media only screen and (min-width: 1024px) {
	.pc_dnone {display:none!important;}
}

#menu-main {padding-top: 15px;}
@media only screen and (min-width: 1024px) {
	#menu-main {margin-right: 1em;}
}

.main-navigation .main-menu {
  display: inline-block;
  margin: 0;
  padding: 0;
}

#menu-main li {
  display: block;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
	#menu-main li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
	}
}

#menu-main li a:hover > div,
#menu-main li a:hover em,
#menu-main li a:hover span {opacity: 1;}

@media only screen and (min-width: 1024px) {
	#menu-main li a:hover > div,
	#menu-main li a:hover em,
	#menu-main li a:hover span {color: #ff2c89;}
}

@media only screen and (min-width: 1024px) {
	.main-navigation .main-menu > li > a {margin-right: 1vw;}
}

.site-header.featured-image .main-navigation a,
.site-header.featured-image .social-navigation a,
.site-info .social-navigation a,
.site-header.featured-image .site-title a,
.site-header.featured-image .site-featured-image a {
	display: block;
	color: #000000;
  text-decoration: none;
  transition: opacity 110ms ease-in-out;
}

#menu-main li a {
  display: block;
	text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 0.8em;
}
@media only screen and (min-width: 1024px) {
	#menu-main li a {margin-top: 0;}
}

@media only screen and (max-width: 1023px) {
	#menu-main li a::before {
		display: block;
		width: 2em;
		height: 1px;
		background-color: #fff;
		content: "";
	  margin: auto;
	}
}

#menu-main li:hover,
#menu-main li:active,
#menu-main li:focus {opacity: 0.8;}

#menu-main li div {
  display: block;
	color: #fff;
	font-family: 'dinregular';
  font-style: normal;
  font-size: 1em;
  padding: 0.6em 0 0.18em;
}
@media only screen and (min-width: 1024px) {
	#menu-main li div {
		color: #000;
    font-family: 'dinbold';
    font-size: 15px;
    padding: 0;
	}
}

#menu-main li em {font-style: normal;}

#menu-main li span {
	display: block;
	color: #fff;
  font-size: 11px;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
	#menu-main li span {
    color: #999;
    padding-top: 4px;
	}
}

#nav-container > * {order: 1;}
#nav-container > *:nth-of-type(2) {order: 2;}

.social-navigation {
	text-align: center;
  margin-top: 0;
}

@media only screen and (min-width: 1024px) {
	#nav-container > *:nth-of-type(2), #nav-container > *:nth-of-type(4) {order: 1;}
}

.store-navigation {margin-bottom: 50px;}

div.menu-sns-container {margin: 1em 3vw 0;}
@media only screen and (min-width: 1024px) {
	div.menu-sns-container {margin: 0 1vw;}
}

.social-navigation ul.social-links-menu {
  display: block;
	content: "";
  table-layout: fixed;
  padding: 0;
	margin: 0;
}

div.menu-sns-container li {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  padding: 8px;
	margin: 0 12px;
}
@media only screen and (min-width: 1024px) {
	div.menu-sns-container li {
		background-color: #888;
		padding: 5px;
	}
}

.social-navigation ul.social-links-menu li:nth-child(n+2) {margin-left: 2px;}

.social-navigation ul.social-links-menu li {
  display: inline-block;
	list-style: none;
  vertical-align: bottom;
  vertical-align: -webkit-baseline-middle;
	margin: 0 4px;
}
@media only screen and (min-width: 768px) {
	.social-navigation ul.social-links-menu li {margin: 0 12px;}
}

@media only screen and (min-width: 1024px) {
	div.menu-sns-container li.fb {background-color: #4460a0;}
}

@media only screen and (min-width: 1024px) {
	div.menu-sns-container li.tw {background-color: #00aaec;}
}

@media only screen and (min-width: 1024px) {
	div.menu-sns-container li.line {background-color: #00b900;}
}

.site-header.featured-image .social-navigation a {color: #fff;}

.social-navigation ul.social-links-menu li a {
	display: block;
  border-bottom: 1px solid transparent;
	/*color: #fff;*/
  transition: opacity 110ms ease-in-out;
	margin-bottom: -1px;
}

.social-navigation ul.social-links-menu li a:hover {opacity: 0.8;}

.social-navigation ul.social-links-menu li a svg {
  display: block;
  width: 25px;
  height: 25px;
  transform: translateZ(0);
}
@media only screen and (min-width: 1024px) {
	.social-navigation ul.social-links-menu li a svg {
    width: 20px;
    height: 20px;
	}
}

svg {
  transition: fill 120ms ease-in-out;
  fill: currentColor;
}

#menu-sub {padding-left: 0;}

#menu-sub li {list-style: none;}

#menu-sub li,
#menu-sub li a {
  display: block;
  border-radius: 30px;
}

#menu-sub li a {
	display: block;
	width: 85%;
	max-width: 350px;
	background-color: #000;
  color: #fff;
  font-size: 0.775rem;
	line-height: 1;
	text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease-in , background-color 0.2s ease;
	padding: 1em 12px;
	margin: 1em auto;
}
@media only screen and (max-width: 1023px) {
	#menu-sub li a {max-width: 190px;}
}

#menu-sub li,
#menu-sub li a {
  display: block;
  border-radius: 30px;
}

#menu-sub li a:hover,
#menu-sub li a:active,
#menu-sub li a:focus {opacity: 0.8;}

@media only screen and (min-width: 1024px) {
	#menu-sub li a {
		width: auto;
    font-size: 0.78em;
    padding: 12px 15px 12px 12px;
	}

	#menu-sub li a:hover,
	#menu-sub li a:active,
	#menu-sub li a:focus {
		background-color: #ff2c89;
		opacity: 1;
	}
}

#menu-sub li span {padding: 0 15px 0 0;}

@media only screen and (min-width: 1024px) {
	#menu-sub li span:after {content: "";}
}

@media only screen and (min-width: 1024px) {
	#nav-container > *:nth-of-type(2),
	#nav-container > *:nth-of-type(4) {order: 1;}
}

#menu-store {
  list-style: none;
  overflow: hidden;
	padding: 0;
}
@media only screen and (min-width: 1024px) {
	#menu-store {display: none;}
}

#menu-store li {
  display: inline-block;
  margin: 0 5px;
}

#menu-store li svg {height: 50px;}

/*--------------------------------------
	contentTop ~ disc
--------------------------------------*/
#contentTop {overflow: visible;}

.entry-content {
  max-width: initial;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
	.entry-content {padding: 0;}
}

#lead {
  background-color: #ff2c89;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) {
	#lead {padding: 15px;}
}

@media only screen and (min-width: 768px) {
	.inner_wrapper {
		max-width: 1024px;
		width: 85%
	}
}
.inner_wrapper {margin: 0 auto;}
@media only screen and (min-width: 1024px) {
	.inner_wrapper {width: 85%;}
}

#lead .inner_wrapper {margin: 0 15px;}
@media only screen and (min-width: 768px) {
	#lead .inner_wrapper {margin: 0 auto;}
}

#lead .inner_wrapper .contents {
  background-color: #ffffff;
  box-shadow: 6px 6px 0 0 #fff001;
	transform: translateY(-35px);
  padding: 15px 5.8%;
  margin-bottom: -15px;
}
@media only screen and (min-width: 768px) {
	#lead .inner_wrapper .contents {
    padding: 15px 5.8% 30px;
    margin-bottom: initial;
	}
}

#lead .inner_wrapper .contents h2 {
	font-size: 23px;
	line-height: 39px;
	margin-top: 0;
}

#lead .inner_wrapper .contents h2,
#lead .inner_wrapper .contents h2 .fstClr {font-weight: 500;}

@media only screen and (min-width: 768px) {
	#lead .inner_wrapper .contents h2 {
		font-size: 36px;
		line-height: 48px;
		padding: 24px 0;
		margin-bottom: 30px;
	}
}

#lead .inner_wrapper .contents h2::after {
  top: auto;
  left: 50%;
	bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
	#lead .inner_wrapper .contents h2::after {width: 1.35em;}
}

h2:after {
	width: 2em;
	height: 1px;
  background: #ff2c89;
  content: "";
  position: absolute;
  top: 0.33em;
  left: 0;
}
@media only screen and (min-width: 768px) {
	h2:after {width: 1.35em;}
}

@media only screen and (min-width: 768px) {
	div.contents:after {
		display: block;
		width: 100%;
		height: 1em;
    content: "";
    clear: both;
	}
}

a.btn,
.entry-content a.btn {
  display: block;
	max-width: 90%;
  background-color: black;
	box-sizing: border-box;
	color: #fff;
	font-size: 17px;
	text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease-in;
	padding: 12px;
	margin: 0 auto 12px;
}
@media only screen and (min-width: 768px) {
	a.btn,
	.entry-content a.btn {
    max-width: 50%;
    margin: 0 auto 20px;
	}
}

.entry-content a.btn span {
  display: inline-block;
  min-width: 95%;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
	.entry-content a.btn span {min-width: 55%;}
}

*.btn span.right-arrow,
#menu-sub li a span {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgNyAxMiIgd2lkdGg9IjciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTMxNy41ODU3ODYgODM0LTQuMjkyODkzLTQuMjkyODkzYy0uMzkwNTI0LS4zOTA1MjUtLjM5MDUyNC0xLjAyMzY4OSAwLTEuNDE0MjE0LjM5MDUyNS0uMzkwNTI0IDEuMDIzNjg5LS4zOTA1MjQgMS40MTQyMTQgMGw1IDVjLjM5MDUyNC4zOTA1MjUuMzkwNTI0IDEuMDIzNjg5IDAgMS40MTQyMTRsLTUgNWMtLjM5MDUyNS4zOTA1MjQtMS4wMjM2ODkuMzkwNTI0LTEuNDE0MjE0IDAtLjM5MDUyNC0uMzkwNTI1LS4zOTA1MjQtMS4wMjM2ODkgMC0xLjQxNDIxNHoiIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMTMgLTgyOCkiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-position: right center;
}

/*--------------------------------------
	news
--------------------------------------*/
.outer_wrapper {margin: 0 6.7%;}
@media only screen and (min-width: 768px) {
	.outer_wrapper {
    max-width: 1224px;
    width: 95%;
    margin: 0 auto;
	}
}
@media only screen and (min-width: 1024px) {
	.outer_wrapper {width: 85%;}
}

.outer_wrapper h2,
section#summary div.contents h2 {
	font-size: 24px;
	padding: 15px 0 0;
	margin-top: 22px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
	.outer_wrapper h2 {
		padding: 24px 0;
		margin: 30px 0;
	}
}

.outer_wrapper h2,
.outer_wrapper h2 .fstClr,
.outer_wrapper h2 .sndClr {font-weight: 500;}

.outer_wrapper h2 .fstClr,
.outer_wrapper h2 .sndClr {margin-left: 0;}

h2 .fstClr {
	color: #ff2c89;
	font-size: 24px;
	font-weight: 500;
}

h2 span {
	color: #ff2c89;
	font-size: 11px;
	font-weight: 500;
	margin-left: 6px;
}
@media only screen and (min-width: 768px) {
	.outer_wrapper h2,
	section#summary div.contents h2,
	#block_area h2,
	h2 .fstClr,
	h2 .sndClr	 {font-size: 36px !important;}

	h2 span {
		color: #ff2c89;
		font-size: 17px;
	  margin-left: 4px;
	}
}

section#news .contents {
  background-color: #f8f8f8;
  padding: 15px 5.8% 30px;
}

section#news #news-list {
  height: 0;
  transition: height 0.5s ease;
  overflow: hidden;
}

section#news ul {
  list-style: none;
	padding-left: 0;
  margin: 0;
}

.entry-content ul,
.entry-content ol {
  color: #ff2c89;
  font-weight: bold;
	padding-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
	.entry-content ul,
	.entry-content ol {padding-bottom: 1rem;}
}

section#news li {
  border-bottom: solid 1px #e0e0e0;
	color: #606060;
  font-weight: normal;
	padding: 20px 0 12px;
}

section#news li a {
	color: #000;
	text-decoration: underline;
}

section#news li a:hover {
	color: #ff2c89;
	text-decoration: none;
}

li {line-height: 1.33;}

section#news li div.date {
	color: #606060;
	font-family: 'Nunito', sans-serif;
  font-size: 0.75em;
  margin-top: 12px;
}

*.btn.round {
  display: block;
	width: 80%;
	max-width: 300px;
	background-color: #000;
	box-sizing: border-box;
	border-radius: 30px;
  color: #fff;
	font-size: 1.214em;
  line-height: 1;
  cursor: pointer;
	text-align: center;
	text-decoration: none;
  transition: background-color 0.2s ease;
	margin: 35px auto 0;
	padding: 14px;
}
@media only screen and (min-width: 768px) {
	*.btn.round {
		font-size: 1em;
    margin: 20px auto;
	}
}

*.btn span.down-arrow {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjciIHZpZXdCb3g9IjAgMCAxMiA3IiB3aWR0aD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTIwNSAyMy41ODU3ODY0IDQuMjkyODkzLTQuMjkyODkzMmMuMzkwNTI1LS4zOTA1MjQzIDEuMDIzNjg5LS4zOTA1MjQzIDEuNDE0MjE0IDAgLjM5MDUyNC4zOTA1MjQzLjM5MDUyNCAxLjAyMzY4OTMgMCAxLjQxNDIxMzZsLTUgNWMtLjM5MDUyNS4zOTA1MjQzLTEuMDIzNjg5LjM5MDUyNDMtMS40MTQyMTQgMGwtNS01Yy0uMzkwNTI0LS4zOTA1MjQzLS4zOTA1MjQtMS4wMjM2ODkzIDAtMS40MTQyMTM2LjM5MDUyNS0uMzkwNTI0MyAxLjAyMzY4OS0uMzkwNTI0MyAxLjQxNDIxNCAweiIgZmlsbD0iI2ZmZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5OSAtMTkpIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right center;
}

div.btn.round span {
  display: inline-block;
  min-width: 80%;
  padding: 0 15px;
}

*.btn.round:hover,
*.btn.round:active,
*.btn.round:focus {
	background-color: #ff2c89;
	transform: none!important;
}
@media only screen and (min-width: 768px) {
	div.btn.more:hover,
	div.btn.more:active,
	div.btn.more:focus {background-color: #ff2c89;}
}

@media only screen and (min-width: 768px) {
	div.contents::after {
		display: block;
		width: 100%;
		height: 1em;
    content: "";
    clear: both;
	}
}

figure {margin: 0;}

@media only screen and (min-width: 768px) {
	figure.left {
    width: 50%;
    float: left;
	}
}

figure.left > img {
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
	figure.left > img {width: 96%;}
}

@media only screen and (min-width: 768px) {
.right {
    width: 50%;
    float: right;
	}
}

.right h3 {
	border-left: 1px solid #ff2c89;
	font-size: 22px;
	font-weight: 500;
	padding-left: 0.5em;
}
@media only screen and (min-width: 768px) {
	.right h3 {font-size: 28px;}
}

h4.black {
  color: #000;
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 0.25em;
}

b,
strong {color: #ff2c89;}

div.app-buttons h4 {margin: 35px 0 14px 0;}
@media only screen and (min-width: 768px) {
	div.app-buttons h4 {margin: 1em 0;}
}

div.app-buttons {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}

div.app-buttons a {
  display: inline-block;
  max-width: 46%;
}

div.app-buttons a:first-of-type {margin-right: 10px;}

div.app-buttons img {
	border-radius: 5px;
  vertical-align: bottom;
}
@media only screen and (min-width: 768px) {
	div.app-buttons img {border: solid 1px #8f8f8f;}
}

/*--------------------------------------
	mysta
--------------------------------------*/
section#mysta {
  background-color: #fa7b2a;
  background-image: linear-gradient(180deg, #fa2341 0%, #facd14 100%);
  color: #fff;
  overflow: auto;
	padding: 0 0 50px 0;
}
@media only screen and (min-width: 768px) {
	section#mysta {
		min-height: 596px;
    background-image: linear-gradient(130deg, #fa2341 0%, #facd14 70%);
    overflow: hidden;
	}
}

section#mysta h2 {margin-top: 1.5em;}
@media only screen and (min-width: 768px) {
	section#mysta h2 {
  	margin-top: 1em;
  	margin-bottom: 0;
	}
}

section#mysta h2 span {color: #1937a5;}

.outer_wrapper h2 .sndClr {
  color: #1937a5;
  font-size: 24px;
}

section#mysta h2:after {background-color: #fff;}

section#mysta div.inner_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
	section#mysta div.inner_wrapper {flex-direction: row;}
}

section#mysta div.contents {
	width: 100%;
  position: relative;
}

@media only screen and (min-width: 768px) {
	section#mysta div.contents > p {padding-right: 320px;}
}

section#mysta img.right {
	display: block;
  width: 55%;
  height: auto;
	margin: 50px auto -50px;
}
@media only screen and (min-width: 768px) {
	section#mysta img.right {
		width: 300px;
  	position: absolute;
    top: -125px;
    right: 0;
	}
}

@media only screen and (min-width: 768px) {
	section#mysta div.app-buttons {display: inline-block;}
}

section#mysta div.app-buttons h4 {color: #fff;}

@media only screen and (min-width: 768px) {
	section#mysta div.contents > p {padding-right: 320px;}
}

h5 {font-size: 16px;}

/*--------------------------------------
	about
--------------------------------------*/
section#about {padding: 15px 0 0;}

section#about div.contents {
  background-color: #fff7f8;
  overflow: visible;
}

section#about div.contents div.outer_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
	section#about div.contents div.outer_wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
	}
}

section#about figure.portrait {padding: 3.5% 3.5% 0 3.5%;}
@media only screen and (min-width: 768px) {
	section#about figure.portrait {
		width: 100%;
		padding: 3.5%;
    /*padding-right: 3.5%;*/
		/*margin-top: -50px;*/
	}
}

section#about figure.portrait img {width: 100%;}
@media only screen and (min-width: 768px) {
	section#about figure.portrait img {max-width: 455px;}
}

section#about figure.portrait h2 {margin: 22px 6.7% 5px;}
@media only screen and (min-width: 768px) {
	section#about figure.portrait h2 {margin: 22px 0 5px;}
}

section#about h2 {
	margin-top: 0;
	margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
	section#about h2 {margin-top:22px;}
}

section#about .inner_wrapper {margin: 0 6.7%;}
@media only screen and (min-width: 768px) {
	section#about div.contents div.inner_wrapper.prof {
    width: 150% !important;
    margin-left: 0;
	}
}


section#about p img.ico {margin: 10px 10px 0 0;}
@media only screen and (min-width: 768px) {
	section#about p img.ico {width: 40px;}
}

section#about dl.sns-account {
  font-family: 'Nunito', sans-serif;
  margin: 20px 0;
}

section#about dl.sns-account dt {font-weight: normal;}

section#about dl.sns-account > * {display: inline-block;}

section#about dl.sns-account dd {margin: 0;}

section#about dl.sns-account dd a {
  color: #ff2c89;
  text-decoration: none;
}

section#about div.infomation {
  background-color: #fff;
  box-shadow: inset -1px -1px 0 0 #ff2c89;
  padding: 10px 20px 20px;
	margin: 30px auto -15px;
}
@media only screen and (min-width: 768px) {
	section#about div.infomation {
    padding: 20px 40px;
		margin: 30px auto -40px;
	}
}

section#about div.infomation h4 {
  border-left: 1px solid #ff2c89;
	color: #ff2c89;
	font-size: 1em;
  padding: 0 0 0 0.5em;
	margin: 15px 0 5px;
}

section#about div.infomation p {
  padding: 5px 0 5px 0.5em;
	margin: 0;
}

p.profile a {
	color: #ff2c89;
  text-decoration: none;
}

p.profile a:hover {color: #ff2c89;}

/*--------------------------------------
	contact
--------------------------------------*/
section#contact {padding: 30px 0 0;}
@media only screen and (min-width: 768px) {
	section#contact {padding: 15px 0 0;}
}

h4.light-aquamarine {
  display: inline-block;
  background-color: #fff001;
  border-radius: 4px;
	color: #000000;
	font-size: 1em;
  padding: 0.4em;
	margin-top: 1em;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
	h4.light-aquamarine {margin-top: initial;}
}

section#contact p a {color: #000;}

section#contact p a:hover {color: #ff2c89;}

section#contact h4 + p {margin-bottom: 10px;}
@media only screen and (min-width: 768px) {
	section#contact h4 + p {margin-bottom: 30px;}
}

@media only screen and (min-width: 768px) {
	div.contents::after {
		display: block;
    width: 100%;
    height: 1em;
		content: "";
    clear: both;
	}
}

section#contact div.tw-follow {
  background-color: rgba(0, 170, 236, 0.08);
  border-top: solid 1px #00aaec;
	text-align: center;
	padding: 5px 30px 20px;
	margin-top: 40px;
}
@media only screen and (min-width: 768px) {
	section#contact div.tw-follow {
		border-top: none;
		padding: 15px 30px 30px;
    margin-top: 15px;
	}
}

section#contact div.tw-follow h4 {
  color: #00aaec;
  font-size: 0.9em;
  line-height: 1.33;
  margin: 0.75rem 0;
}
@media only screen and (min-width: 768px) {
	section#contact div.tw-follow h4 {
		font-weight: bold;
    line-height: 1.56;
    margin: 1rem 0;
	}
}

a.btn.twitter-follow-button {
	display: inline-block;
	background-color: #00aaec;
  border-radius: 6px;
  font-size: 1em;
	padding: 8px 20px 4px;
}

a.btn.twitter-follow-button img {
  width: 32px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 768px) {
	a.btn.twitter-follow-button img {
    width: 40px;
    margin-left: 8px;
    margin-bottom: 2px;
	}
}

a.btn img,
.entry-content a.btn img {vertical-align: middle;}

.entry-content a.hvrClr {
	color: #000;
	text-decoration: underline;
}

.entry-content a.hvrClr:hover {
	color: #ff2c89;
	text-decoration: none;
}

a.btn.twitter-follow-button span {
	position: relative;
	top: -10px;
	padding: 0;
}

/*--------------------------------------
	footer
--------------------------------------*/
#colophon {box-shadow: inset 0 1px 0 0 #e0e0e0;}

#colophon .site-info {
	display: flex;
  color: #606060;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 80px;
	margin: 0 6.7%;
}
@media only screen and (min-width: 768px) {
	#colophon .site-info {
		max-width: 1224px;
		width: 85%;
		padding: 60px 0;
		margin: 0 auto;
	}
}

.footer-navigation {
  display: inline;
  margin: 0.85rem 0;
}
@media only screen and (min-width: 768px) {
	.footer-navigation {margin: 44px 0;}
}

.footer-navigation > div {display: inline;}

.footer-navigation .footer-menu {
  display: flex;
  flex-direction: column;
	padding-left: 0;
}
@media only screen and (min-width: 768px) {
	.footer-navigation .footer-menu {
    display: inline;
    padding-left: 0;
    font-weight: normal;
	}
}

.footer-navigation .footer-menu li {
	display: inline;
  font-size: 14px;
  padding: 0.85em 0;
	margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
	.footer-navigation .footer-menu li {
    display: inline;
    margin-right: 44px;
    padding: 0;
	}
}

#colophon .site-info a {color: inherit;}

#colophon .site-info a:hover {
	color: #ff2c89;
  text-decoration: none;
}

#colophon .site-info p.copyright {
  font-family: 'Nunito', sans-serif;
	font-size: 12px;
  text-align: center;
}

/*--------------------------------------
	audition
--------------------------------------*/
.site-content {overflow: hidden;}

.entry {margin-top: calc(6 * 1rem);}

.entry:first-of-type {margin-top: 0;}

.entry .entry-header {
  margin: calc(3 * 1rem) 1rem 1rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
	.entry .entry-header {
    margin: calc(3 * 1rem) calc(10% + 60px) 1rem;
	}
}

@media only screen and (min-width: 768px) {
	.entry .entry-header {margin: 0;}
}

.entry .entry-header * {padding: 0;}

.entry .entry-title {margin: 0;}

section#summary {
  background-color: #ff2c89;
  padding-bottom: 4px;
}

section#summary .outer_wrapper, section#summary .inner_wrapper {margin: 0 15px;}

@media only screen and (min-width: 768px) {
	section#summary .outer_wrapper, section#summary .inner_wrapper {margin: 0 auto;}
}

section#summary div.contents {
  background-color: #ffffff;
  box-shadow: 6px 6px 0 0 #fff001;
  padding: 15px 0;
  margin: 0 0 1.5em;
}

@media only screen and (min-width: 768px) {
	section#summary div.contents {
    margin-bottom: initial;
		padding: 30px 0;
    margin: 1.5em 0;
	}
}

section#summary div.contents h2 {
  text-align: center;
	padding-bottom: 1em;
  margin-top: 0;
}

section#summary div.contents h2:after {
  top: auto;
  bottom: 0;
  left: 50%;
	transform: translateX(-50%);
}

.entry-content li > span {
  color: #000;
  font-weight: normal;
}

section#requirements ul li:nth-child(n+7):nth-child(-n+19) {list-style: none;}

section#schedule ul li:nth-child(n+14):nth-child(-n+18) {list-style: none;}

section#requirements ul li,
section#schedule ul li {margin-bottom: 8px;}

.entry .entry-content hr {
	max-width: 100%;
	height: 1px;
  background-color: #e0e0e0;
	border: 0;
	text-align: left;
  margin: 1rem 0;
}
@media only screen and (min-width: 768px) {
	.entry .entry-content hr {margin: 44px 0;}
}

section#schedule h4 {text-align: left;}

section#block_area ul {
	display: inline-block;
  font-family: 'Nunito', sans-serif;
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
}

section#block_area li {
	display: inline-block;
	width: 30%;
  position: relative;
  text-align: center;
	margin: 0.5em 1%;
}

@media only screen and (min-width: 768px) {
	section#block_area li {
    width: auto;
    margin: 0.375em 3.5px;
	}
}

section#block_area ul.flex-wrap li::before {
  content: "";
  display: block;
	width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  border: 1px solid #fff001;
  border-radius: 30px;
  z-index: 1;
}

.entry .entry-content #block_area .inner_wrapper a.btn-line {
	display: block;
	min-width: 93px;
  border: 1px solid #ff2c89;
  border-radius: 30px;
	color: #000;
	font-size: 12px;
	font-weight: 700;
	position: relative;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease;
  z-index: 10;
	padding: 1.125em 0;
}

@media only screen and (min-width: 768px) {
	.entry .entry-content a.btn-line {font-size: 0.65em;}
}

a.btn-line strong {
	color: #000;
  font-size: 133.3333%;
  font-weight: 700;
}

.entry .entry-content li.current a.btn-line,
.entry .entry-content a.btn-line:hover {color:#000;}

.entry .entry-content li.current a.btn-line::before,
.entry .entry-content a.btn-line:hover::before {background-color: #ff2c89;}

.entry .entry-content a.btn-line:hover,
.entry .entry-content a.btn-line:active {
  color: #000;
  background-color: #ff2c89;
}

div[class*="movie-box"] {
  position: relative;
  margin-bottom: 3em;
}

div.movie-box_16-9:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

iframe {
	max-width: 100%;
  margin: auto;
}

div[class*="movie-box"] video,
div[class*="movie-box"] iframe {
	width: 100%;
  height: 100%;
	position: absolute;
  top: 0;
  left: 0;
}

section#faq {padding-top: 5px;}

@media only screen and (min-width: 768px) {
	section#faq {padding-top: 15px;}
}

.entry .entry-content > * > *:last-child,
.entry .entry-summary > * > *:last-child {margin-bottom: 0;}

.entry .entry-content > * > *:first-child,
.entry .entry-summary > * > *:first-child {margin-top: 0;}

section#faq dl > div {
  border-left: 1px solid #ff2c89;
  padding-left: 1em;
  margin-bottom: 2em;
}

section#faq dt {
  font-weight: normal;
  padding: 0.25em 0;
}

section#faq dd {
	color: #ff2c89;
	font-weight: bold;
  padding: 0.25em 0;
	margin: 0;
}

section#faq dd a {
	color: #000;
	text-decoration: underline;
}

section#faq dd a:hover {
	color: #ff2c89;
	text-decoration: none;
}

a.btn.return {
  display: block;
	margin: 2.5em auto;
	max-width: 175px;
  background-color: #f8f8f8;
  border-radius: 30px;
	color: #000;
	font-size: 1em;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
	padding: 0.9em;
}
@media only screen and (min-width: 768px) {
	a.btn.return {
		width: 80%;
    font-size: 0.778em;
		margin: 20px auto;
	}
}

/*--------------------------------------
	list.html
--------------------------------------*/
section#block_area.scroll {
  text-align: center;
  padding: 0;
}

h2.centerline {
	min-height: 3rem;
	font-size: 24px;
	font-weight: 500;
  text-align: center;
  margin: 0 auto 1rem;
}

h2.centerline span.minTtl {
	display: block;
	font-size: 12px;
	padding-bottom: 0.35rem;
  margin-top: -0.1rem;
}
@media only screen and (min-width: 768px) {
	h2.centerline span.minTtl {
		padding-bottom: 0;
		margin-top: 0.5rem;
	}
}

h2.centerline:after {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

section#block_area.scroll div.block-container {
	background-color: rgba(255, 255, 255, 0.92);
  border-bottom: solid 1px #e0e0e0;
	white-space: nowrap;
	position: relative;
}

body.pc section#block_area.scroll div.block-container {
	box-sizing: border-box;
	padding: 0 34px;
}
@media only screen and (min-width: 768px) {
	body.pc section#block_area.scroll div.block-container {padding: 0 68px;}
}

section#block_area.fixed div.block-container {
	width: 100%;
	position: fixed;
	top: 55px;
	left: 0;
	z-index: 1000;
}
@media only screen and (min-width: 1024px) {
	section#block_area.fixed div.block-container {top: 110px;}
}

section#block_area.scroll div.block-wrapper {
	overflow: hidden;
	padding: 0 0 16.5px;
}

body.pc section#block_area.scroll div.block-wrapper {padding: 11px 0 16px;}

.swiper-wrapper,
.swiper-container {overflow: visible !important;}

section#block_area.scroll ul#block_list {
  font-family: 'Nunito', sans-serif;
	font-size: 0; /*子要素のためのリセット*/
  list-style: none;
  padding: 0;
  margin: 0;
}

.swiper-slide,
.swiper-wrapper {height: auto !important;}

section#block_area.scroll li {
	display: inline-block;
	width: auto;
	position: relative;
	text-align: center;
	margin: 0 3.5px;
}

body.pc section#block_area.scroll li {
	margin: 0;
}

.entry .entry-content li.swiper-slide a.btn-line {
  display: block;
	min-width: 66px;
	height: 1.66em;
  border-radius: 30px;
	font-size: 12px;
	font-weight: 700 !important;
	position: relative;
  line-height: 1.75em;
  text-decoration: none;
  transition: background-color 0.4s ease;
	padding: 12px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
	.entry .entry-content li.swiper-slide a.btn-line {font-size: 12px;}
}

body.pc .entry .entry-content a.btn-line {
  min-width: auto;
  margin: 0 11px 0 0;
}

section#block_area.scroll a.btn-line:hover {color: #000;}


.entry .entry-content a.btn-line:hover::before {background-color: #ff2c89;}

section#block_area.scroll a.btn-line::before,
section#block_area.scroll a.btn-line::after {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	content: "";
	position: absolute;
}

section#block_area.scroll a.btn-line::before {
	border: 1px solid #ff2c89;
  top: 0;
  left: 0;
  transition: background-color 0.4s ease;
  z-index: -1;
}

section#block_area.scroll a.btn-line::after {
  border: 1px solid #fff001;
  top: 5px;
  left: 5px;
  z-index: -2;
}

.swiper-button-prev,
.swiper-button-next {display: none;}

.swiper-button-next,
.swiper-button-prev {
	width: 34px;
	height: 100%;
	background-size: 20px auto;
	background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: 10;
  cursor: pointer;
  margin: 0;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url(audition_detail/img/arrow_caroucel_l.svg);
	background-position: 35% center;
	outline: none;
  left: 0;
  right: auto;
}

@media only screen and (min-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {width: 68px;}
}

body.pc .swiper-button-prev,
body.pc .swiper-button-next {display: block;}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url(audition_detail/img/arrow_caroucel_r.svg);
	background-position: 65% center;
	outline: none;
  left: auto;
  right: 0;
}

section#block_area.scroll a.app_open {
	display: inline-block;
	color: #ff2c89;
	font-size: 115%;
  text-decoration: none;
  padding: 0.5rem;
}

body.android section#block_area a.app_open,
body.iphone section#block_area a.app_open {display: none;}

body.pc section#block_area.scroll a.app_open {display: none !important;}

section#applicant_area {
	min-height: 600px;
	min-height: 60vh;
	position: static;
	overflow: hidden;
	padding: 0;
	padding-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
	section#applicant_area {padding-bottom: 40px !important;}
}

div#applicant_list {
  display: flex;
	min-height: 600px;
	min-height: 60vh;
	align-content: flex-start;
	background-color: #fff;
  flex-wrap: wrap;
	padding: 0;
	margin: 0;
}
@media only screen and (min-width: 1024px) {
	div#applicant_list {margin: 0 -1.283%;}
}

div#applicant_list div.cast-block {
  display: block;
  width: 39.4%;
	font-size: 0.85714em;
  animation: fadein 0.3s linear forwards;
  text-align: center;
  word-break: break-all;
  cursor: pointer;
	padding: 0 5.3% 1rem;
}
@media only screen and (min-width: 768px) {
	div#applicant_list div.cast-block {
    width: 21.1%;
		font-size: 0.6667em;
    padding: 0 1.925% 1rem;
	}
}
@media only screen and (min-width: 1024px) {
	div#applicant_list div.cast-block {
    width: 14.1%;
    padding: 0 1.283% 0.5rem;
	}
}
@media only screen and (min-width: 1024px) {
	div#applicant_list div.cast-block:nth-of-type(6n+1) {margin-left: 0;}
}

div#applicant_list div.thumbnail-block {
	width: 100%;
	background-image: url(audition_detail/img/thumbnail_default.jpg);
	background-color: #eee;
	background-size: cover;
	background-position: center;
  border-radius: 50%;
  box-shadow: 6px 6px 0 0 #ff2c89;
  position: relative;
  overflow: hidden;
	margin-bottom: 0.5rem;
}

div#applicant_list div.thumbnail-block::before {
	display: block;
  content: "";
  padding-top: 100%;
}

div#applicant_list span.mysta_id {
  display: inline-block;
  width: 100%;
  height: 1rem;
	color: #55555c;
	font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
	word-break: break-all;
  white-space: nowrap;
}

div#applicant_list span.nickname {
  display: inline-block;
  display: -webkit-box;
  width: 100%;
	font-weight: bold;
	position: relative;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	margin-bottom: 0.125rem;
}

div#applicant_list div.cast-block a.link_detail {
  color: #ff2c89;
	font-size: 1em;
	font-weight: normal;
  text-decoration: underline;
}

body.pc div.btm-fixed {display: none;}

div.btm-fixed {text-align: center;}

div.btm-fixed a.btn {
	display: inline-block;
	width: 70%;
  background-color: #ff2c89;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.2);
  font-size: 100%;
  padding: 14.5px 16.5px;
	margin: 0.5rem auto;
}
@media only screen and (min-width: 768px) {
	div.btm-fixed a.btn {width: auto;}
}

a.btn.return {
  display: block;
	max-width: 175px;
	background-color: #f8f8f8;
	border-radius: 30px;
  color: #000;
  line-height: 1;
  text-decoration: none;
  font-size: 1em;
  text-align: center;
  transition: background-color 0.2s ease;
	padding: 0.9em;
	margin: 2.5em auto;
}
@media only screen and (min-width: 768px) {
	a.btn.return {
		width: 80%;
    font-size: 0.778em;
    margin: 20px auto;
	}
}

/*ABOUTと同じ表記ver*/
div.outer_wrapper figure.portrait h2 {margin: 22px 6.7% 5px;}

@media only screen and (min-width: 768px) {
	div.outer_wrapper figure.portrait h2 {margin: 22px 0 5px;}
}

/*--------------------------------------
	list_template.html
--------------------------------------*/
div.btm-fixed {text-align: center;}

body.android div.btm-fixed,
body.iphone div.btm-fixed {display: none;}

body.list01.iphone div.btm-fixed {display: block;}

div.btm-fixed.fixed a.btn {
  position: fixed;
  bottom: 22px;
  left: 15%;
  transform: translate3d(0, 0 , 0);
  animation: bottomin 0.3s linear forwards;
	z-index: 100;
  margin-bottom: 0;
}

@keyframes bottomin {
	from {transform:translate3d(0, 3rem , 0);}
	to   {transform:translate3d(0, 0 , 0);}
}

@media only screen and (min-width: 768px) {
	div.btm-fixed a.btn {width: auto;}
	div.btm-fixed.fixed a.btn {left: 50%;}
}

/* ---- section#applicant_area ---- */
section#applicant_area {
  padding: 0;
  overflow: hidden;
  padding-top: 33px;
  min-height: 600px;
  min-height: 60vh;
  position: static;
}

/* ---- div#applicant_list ---- */
div#applicant_list {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  min-height: 60vh;
  padding: 0;
  margin: 0;
  align-content: flex-start;
}

div#applicant_list div.cast-block {
  display: block;
  width: 50%;
  padding: 0 5.3% 1rem;
  animation: fadein 0.3s linear forwards;
  text-align: center;
  word-break: break-all;
  font-size: 0.85714em;
  cursor: pointer;
	box-sizing: border-box;
}

@keyframes fadein {
  from {opacity: 0;}
  to   {opacity: 1;}
}

@media only screen and (min-width: 768px) {
  div#applicant_list div.cast-block {
    width: 25%;
    padding: 0 1.925% 1rem;
  }
}

@media only screen and (min-width: 1024px) {
  div#applicant_list {margin: 0 -1.283%;}

  div#applicant_list div.cast-block {
    width: 16.666%;
    padding: 0 1.283% 11px;
  }

  div#applicant_list div.cast-block:nth-of-type(6n + 1) {margin-left: 0;}
}

div#applicant_list div.cast-block a.link_detail {
  color: #ff2c89;
  text-decoration: underline;
  font-weight: normal;
  font-size: 1em;
}

div#applicant_list div.thumbnail-block {
  border-radius: 50%;
  margin-bottom: 0.5rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

div#applicant_list div.thumbnail-block::before {
  content: "";
  display: block;
  padding-top: 100%;
  background-image: url(audition_detail/img/thumbnail_default.jpg);
  background-size: cover;
  background-position: center;
  background-color: #eee;
  position: relative;
  z-index: -1;
}

div#applicant_list img.thumbnail {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  transform: translate3d(-50%,-50%,0);
}

div#applicant_list span.mysta_id {
  display: inline-block;
  width: 100%;
  height: 1rem;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
  white-space: nowrap;
  color: #55555c;
  font-weight: normal;
}

div#applicant_list span.nickname {
  display: inline-block;
  display: -webkit-box;
  width: 100%;
  margin-bottom: 0.125rem;
  overflow: hidden;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  div#applicant_list div.cast-block {font-size: 0.6667em;}
}
