@charset "UTF-8";

/* --------------------------------------------------------------------------------
    breakpoint
-------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------
    variable
-------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------
    reset
-------------------------------------------------------------------------------- */

/* 
  RESET - ADAPTED FROM MEYER RESET
  URL - http://meyerweb.com/eric/tools/css/reset/
  LICENSE - PUBLIC DOMAIN
*/

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* --------------------------------------------------------------------------------
    base config
-------------------------------------------------------------------------------- */

html {
  height: 100%;
}

body {
  height: 100%;
  color: #555;
  background: #f5f5f5;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* --------------------------------------------------------------------------------
    responsive
-------------------------------------------------------------------------------- */

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.container:after,
.row:after,
.col:after {
  content: "";
  display: table;
  clear: both;
}

.col {
  display: block;
  float: left;
  width: 100%;
}

@media (min-width: 768px) {
  .span_1 {
    width: 8.33333333333%;
  }

  .span_2 {
    width: 16.6666666667%;
  }

  .span_3 {
    width: 25%;
  }

  .span_4 {
    width: 33.3333333333%;
  }

  .span_5 {
    width: 41.6666666667%;
  }

  .span_6 {
    width: 50%;
  }

  .span_7 {
    width: 58.3333333333%;
  }

  .span_8 {
    width: 66.6666666667%;
  }

  .span_9 {
    width: 75%;
  }

  .span_10 {
    width: 83.3333333333%;
  }

  .span_11 {
    width: 91.6666666667%;
  }

  .span_12 {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------------
    common
-------------------------------------------------------------------------------- */

/* form */

input[type="submit"] {
  font-family: inherit;
}

input[type="text"],
input[type="password"],
input[type="num"],
input[type="tel"],
input[type="mail"],
select,
textarea {
  padding: 8px 6px;
  font-family: inherit;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}

select {
  -webkit-appearance: none;
  width: 240px;
}

select:not([multiple]) {
  background: url("../image/select_down.png") 220px center no-repeat;
}

textarea {
  resize: none;
}

.form-text {
  border: 1px solid #e6e6e6;
  padding: 5px;
  font-size: 15px;
  border-radius: 2px;
  display: block;
}

.form-area {
  border: 1px solid #e6e6e6;
  padding: 15px;
  font-size: 16px;
  border-radius: 2px;
}

.form-label {
  padding: 8px 0;
}

/* btn */

.btn {
  display: inline-block;
  padding: 10px 10px 8px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}

.btn:hover {
  color: #666;
  cursor: pointer;
}

.btn-default {
  color: #333;
  background-color: #eee;
  border: 1px solid #c8c8c8;
}

.btn-default:hover {
  background-color: #e0e0e0;
}

.btn-success {
  color: #fff;
  background-color: #222;
  border: 1px solid #222;
}

.btn-success:hover {
  color: #fff;
  background-color: #333;
}

.btn-danger {
  color: #fff;
  background-color: #f44336;
  border: 1px solid #c62828;
}

.btn-danger:hover {
  color: #fff;
  background-color: #ef5350;
}

.btn-xs {
  width: 30px;
}

.btn-s {
  width: 30px;
}

.btn-m {
  width: 50px;
}

.btn-l {
  width: 100px;
}

.btn-xl {
  width: 100px;
}

/* icon */

.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.icon:after {
  content: '';
  position: absolute;
  display: block;
  background-color: #fff;
}

.icon i {
  position: relative;
  z-index: 9999;
  font-weight: 600;
  font-size: 17px;
}

.link-icons {
  display: inline-block;
  float: right;
}

@media only screen and (max-width: 740px) {
  .link-icons {
    display: block;
    position: absolute;
    top: -35px;
    right: 0;
  }
}

.icon-s {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.icon-s:after {
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
  border-radius: 16px;
}

.icon-m {
  width: 30px;
  height: 30px;
  border-radius: 30px;
}

.icon-m:after {
  width: 24px;
  height: 24px;
  top: 3px;
  left: 3px;
  border-radius: 24px;
}

.ig-icon {
  background-color: #333;
}

.ig-icon i {
  color: #333;
  top: 3px;
  left: 8px;
}

.fb-icon {
  background-color: #305097;
}

.fb-icon i {
  color: #305097;
  top: 4px;
  left: 10px;
}

.tt-icon {
	background-color: #000000;
}

.tt-icon i {
	color: #000000;
	top: 4px;
	left: 7px;
}

.tw-icon {
  /* background-color: #00ACED; */
  background-color: black;
}

.tw-icon i {
  /* color: #00ACED; */
  color: black;
  top: 4px;
  left: 7px;
}

.insta-icon {
  background-color: #3F729B;
}

.insta-icon i {
  color: #3F729B;
  top: 3px;
  left: 7px;
}

.blog-icon {
  background-color: #666;
}

.blog-icon i {
  color: #666;
  top: 3px;
  left: 8px;
}

.line-icon {
  position: relative;
  background-color: #00B900;
}

.line-icon img {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  z-index: 999;
}

.yt-icon {
  background-color: #000000;
}

.yt-icon i {
  color: #000000;
  top: 4px;
  left: 5px;
}

/* text-align */

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.tc {
  text-align: center;
}

/* float */

.fr {
  float: right;
}

.fl {
  float: left;
}

/* margin */

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr3 {
  margin-right: 3px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

/* sp */

.sp-inline {
  display: none;
}

@media only screen and (max-width: 740px) {
  .sp-inline {
    display: inline;
  }
}

.sp-inline-b {
  display: none;
}

@media only screen and (max-width: 740px) {
  .sp-inline-b {
    display: inline-block;
  }
}

.sp-block {
  display: none;
}

@media only screen and (max-width: 740px) {
  .sp-block {
    display: block;
  }
}

@media only screen and (max-width: 740px) {
  .sp-none {
    display: none;
  }
}

.news-color {
  color: #f5a149;
}

.event-color {
  color: #f66b90;
}

.media-color {
  color: #518dcb;
}

.studio-color {
  color: #a0c44f;
}

/* --------------------------------------------------------------------------------
    layout
-------------------------------------------------------------------------------- */

.l-fix-page-wrap {
  margin-top: 140px !important;
  margin-bottom: 40px;
}

@media only screen and (max-width: 740px) {
  .l-fix-page-wrap {
    margin-top: 90px !important;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------------------------------------
    state
-------------------------------------------------------------------------------- */

.is-top-item-title-hover {
  color: #f5a149 !important;
}

.is-top-item-image-hover {
  opacity: 0.7;
}

.is-detail-selected-img {
  border: 1px solid #333;
}

/* --------------------------------------------------------------------------------
    module
-------------------------------------------------------------------------------- */

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

.header-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

header {
  height: 80px;
}

@media only screen and (max-width: 740px) {
  header {
    height: 50px;
    line-height: 50px;
    position: relative;
  }
}

header .header-logo {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-top: 0px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 740px) {
  header .header-logo {
    width: 96px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    top: 12px;
    left: 50%;
    margin-left: -50px;
    background: url("../images/logo-sp.png") 0 0 no-repeat;
    background-size: 96px 28px;
    border-radius: 0;
    box-shadow: 0 0 0 transparent;
  }
}

header .header-logo img {
  display: block;
  width: 50%;
  height: auto;
  margin: 15px auto;
}

@media only screen and (max-width: 740px) {
  header .header-logo img {
    display: none;
  }
}

header .header-logo:hover {
  cursor: pointer;
}

header nav {
  display: inline-block;
}

@media only screen and (max-width: 740px) {
  header nav {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
}

header nav li {
  display: inline-block;
  padding: 0 12px;
  height: 40px;
  margin-top: 20px;
  letter-spacing: normal;
  border-right: 1px solid #ddd;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  header nav li {
    display: block;
    padding: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0;
    background-color: #fff;
  }
}

header nav li:last-child {
  border-right: none;
}

header nav li a {
  line-height: 40px;
  display: block;
  text-decoration: none;
  color: #333;
  width: 100%;
  -webkit-transition: all 0.15s linear;
}

@media only screen and (max-width: 740px) {
  header nav li a {
    padding: 0 15px;
  }
}

header nav li a:hover {
  color: #ccc;
}

header nav .active a {
  color: #ffa31a !important;
}

header .header-contact-btn {
  border-radius: 3px;
}

@media screen and (max-width: 740px) {
  header .header-contact-btn {
    position: absolute;
    top: 8px;
    right: 12px;
  }

  header .header-contact-btn span {
    display: none;
  }
}

header .sp-menu-btn {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

header .sp-menu-btn:hover {
  cursor: pointer;
}

@media only screen and (max-width: 740px) {
  header .sp-menu-btn {
    line-height: 40px;
    font-size: 18px;
  }
}

header .fr:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 740px) {
  header .fr {
    float: none;
  }
}

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

.footer-box {
  margin-top: 40px;
  border-top: 3px solid #ddd;
  background: #fff;
}

footer {
  margin-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 740px) {
  footer {
    margin: 0;
    padding: 20px;
    padding-top: 0px;
  }
}

footer .footer-wrap {
  margin-top: 40px;
}

@media only screen and (max-width: 740px) {
  footer .footer-wrap {
    margin: 0;
  }
}

footer h3 {
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  color: #333;
  font-size: 15px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  footer h3 {
    padding-top: 20px;
  }
}

footer .footer-menu li {
  padding: 2px 0;
  font-size: 12px;
}

footer .footer-menu li a {
  display: block;
  text-decoration: none;
  color: #999;
}

footer .contact-typo {
  color: #999;
  font-size: 12px;
  line-height: 1.7;
}

footer .footer-contact-btn {
  display: block;
  margin: 0 auto;
}

footer .contact-tel-box {
  margin: 18px 0 15px;
  padding: 8px 0;
  color: #222;
  text-align: center;
  border: 1px solid #222;
  border-radius: 3px;
}

footer .contact-tel-box .contact-tel-typo {
  font-size: 13px;
  font-weight: 600;
}

footer .contact-tel-box .contact-tel-num {
  display: block;
  font-size: 24px;
  margin: 0 auto;
  text-align: center;
  font-family: Arial;
}

footer .contact-tel-box .contact-tel-num i {
  position: relative;
  top: 1px;
}

footer .footer-company-info {
  margin-top: 40px;
  border: 1px solid #ddd;
}

footer .footer-company-info .footer-company-info-up {
  position: relative;
  padding-top: 35px;
  padding-left: 120px;
  padding-right: 20px;
  padding-bottom: 25px;
}

footer .footer-company-info .footer-company-info-up img {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 45px;
  height: auto;
}

footer .footer-company-info .company-name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

footer .footer-company-info .company-address,
footer .footer-company-info .company-tel {
  font-size: 13px;
}

footer .footer-company-info .footer-company-info-down {
  padding: 15px 30px;
  font-size: 20px;
  background-color: #fafafa;
  border-top: 1px solid #ddd;
}

footer .footer-company-info .footer-company-info-down p {
  font-size: 12px;
}

footer .footer-company-info .footer-company-info-down p:first-child {
  margin-bottom: 15px;
}

footer .tweet-box {
  margin: 0 auto;
}

.copyright {
  margin: 30px 0;
  text-align: center;
  font-family: arial;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.05em;
}

#twitter-widget-0 {
  margin-left: 30px;
}

@media only screen and (max-width: 740px) {
  #twitter-widget-0 {
    margin: -0;
    width: 100%;
  }
}

/*  top-page
/***********************************************************/

.main-view {
  position: relative;
}

.main-view .main-view-copy {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  margin-top: -1em;
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.9;
  z-index: 9999;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 740px) {
  .main-view .main-view-copy {
    width: 80%;
    left: 10%;
    font-size: 14px;
  }
}

.n2-ss-align {
  margin-top: 80px !important;
}

@media only screen and (max-width: 740px) {
  .n2-ss-align {
    margin-top: 50px !important;
  }
}

.n2-ss-align img {
  -webkit-filter: brightness(0.65);
  filter: brightness(0.65);
}

/* 1000px以下 */

.n2-ss-align {
  margin-top: 50px !important;
}

.main-content {
  margin-top: 30px;
}

@media only screen and (max-width: 740px) {
  .main-content {
    margin-top: 0;
  }
}

.main-content .content-title {
  margin: 35px 0 5px;
  text-align: center;
  color: #333;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  .main-content .content-title {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.main-content .top-news {
  margin-left: -2%;
}

@media only screen and (max-width: 959px) {
  .main-content .top-news {
    margin-left: 0;
  }
}

@media only screen and (max-width: 740px) {
  .main-content .top-news {
    margin-left: 0;
  }
}

.main-content .top-news:after {
  content: "";
  display: block;
  clear: both;
}

.main-content article {
  float: left;
  width: 23%;
  margin: 15px 0 0 2%;
  -webkit-transition: all 0.15s linear;
}

@media only screen and (max-width: 959px) {
  .main-content article {
    width: 30%;
    margin: 15px 1.5%;
  }
}

@media only screen and (max-width: 740px) {
  .main-content article {
    width: 45%;
    margin: 15px 2.5%;
  }
}

.main-content article:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.main-content article a {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
}

.main-content article a img {
  -webkit-transition: all 0.15s linear;
}

.main-content article a:hover img {
  opacity: 0.7;
}

.main-content article img {
  display: block;
  width: auto;
  height: auto;
  max-height: 150px;
  margin: 0 auto;
  background-color: #fff;
}

@media only screen and (max-width: 959px) {
  .main-content article img {
    max-width: 100%;
    max-height: 100px;
  }
}

.main-content article .article-info-wrap {
  background: #FFF;
  padding: 10px;
}

.main-content article .article-info-wrap .article-category {
  position: relative;
  display: inline-block;
  width: 55px;
  margin-left: -17px;
  padding: 3px 0 2px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.main-content article .article-info-wrap .article-category:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 7px solid #000;
  border-left: 7px solid #f5f5f5;
}

.main-content article .article-info-wrap .article-date {
  /* position: relative; */
  margin-top: -18px;
  color: #999;
  font-size: 11px;
  text-align: right;
  /* top: -18px; */
}

@media only screen and (max-width: 740px) {
  .main-content article .article-info-wrap .article-date {
    top: -16px;
    font-size: 10px;
  }
}

.main-content article .article-info-wrap .article-title {
  margin-top: 7px;
  color: #333;
  font-weight: 600;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .main-content article .article-info-wrap .article-title {
    font-size: 11px;
    line-height: 1.4;
  }
}

.main-content article .article-info-wrap .news-color {
  background-color: #f5a149;
}

.main-content article .article-info-wrap .news-color:after {
  border-top: 7px solid #dd862b;
}

.main-content article .article-info-wrap .event-color {
  background-color: #f66b90;
}

.main-content article .article-info-wrap .event-color:after {
  border-top: 7px solid #c94669;
}

.main-content article .article-info-wrap .media-color {
  background-color: #518dcb;
}

.main-content article .article-info-wrap .media-color:after {
  border-top: 7px solid #2c5a8b;
}

.main-content article .article-info-wrap .studio-color {
  background-color: #a0c44f;
}

.main-content article .article-info-wrap .studio-color:after {
  border-top: 7px solid #7b9e2e;
}

.main-content .all-news-link {
  display: block;
  margin: 30px auto 0;
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  background-color: #fff;
  border: 1px solid #333;
}

@media only screen and (max-width: 740px) {
  .main-content .all-news-link {
    margin-top: 10px;
  }
}

.main-content .all-news-link:hover {
  color: #fff;
  background-color: #333;
}

.main-content .all-news-link i {
  position: relative;
  top: -1px;
}

/*  talent-list
/***********************************************************/

.bread-box {
  position: fixed;
  top: 80px;
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #ddd;
  z-index: 99990;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 740px) {
  .bread-box {
    top: 50px;
  }
}

.bread-crumb {
  height: 40px;
  line-height: 40px;
  text-align: right;
  color: #999;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .bread-crumb {
    padding-right: 10px;
  }
}

.bread-crumb i {
  color: #ccc;
}

.bread-crumb a {
  text-decoration: none;
  color: #222;
}

.list-tab {
  position: fixed;
  width: 100%;
  top: 120px;
  padding: 15px 0 12px;
  background-color: #222;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  z-index: 99998;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 740px) {
  .list-tab {
    top: 90px;
    padding: 10px 0;
  }
}

.list-tab .list-tab-typo {
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 740px) {
  .list-tab .list-tab-typo {
    font-size: 14px;
  }
}

.list-tab ul {
  font-size: 14px;
  text-align: center;
}


/* Logged-in WordPress admin bar offset for fixed UI */
body.admin-bar .header-box {
  top: 32px;
}

body.admin-bar .bread-box {
  top: 112px;
}

body.admin-bar .list-tab {
  top: 152px;
}

@media only screen and (max-width: 782px) {
  body.admin-bar .header-box {
    top: 46px;
  }

  body.admin-bar .bread-box {
    top: 96px;
  }

  body.admin-bar .list-tab {
    top: 136px;
  }
}
@media only screen and (max-width: 740px) {
  .list-tab ul {
    font-size: 12px;
  }
}

.list-tab ul li {
  padding: 10px 10px 0;
  display: inline-block;
}

@media only screen and (max-width: 740px) {
  .list-tab ul li {
    padding: 5px 10px 0;
  }
}

.list-tab ul li a {
  text-decoration: none;
  display: block;
  color: #5a5a5a;
}

.list-tab ul li a:hover {
  color: #fff;
}

.list-tab ul .active a {
  color: #fff;
}

.list-title {
  font-family: 'Oswald', sans-serif;
  color: #222;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.08em;
}

.talent-list {
  margin-bottom: 40px;
}

@media only screen and (max-width: 740px) {
  .talent-list {
    margin-bottom: 20px;
  }
}

.talent-list:after {
  content: '';
  display: table;
  clear: both;
}

.talent-list .talnet-list-item {
  position: relative;
  width: 30%;
  float: left;
  margin: 15px 1.5%;
}

@media only screen and (max-width: 740px) {
  .talent-list .talnet-list-item {
    width: 47%;
    margin: 10px 1.5% 0;
  }
}

.talent-list .talnet-list-item .sns-icons {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

@media only screen and (max-width: 740px) {
  .talent-list .talnet-list-item .sns-icons a {
    width: 20px;
    height: 20px;
    border-radius: 20px;
  }

  .talent-list .talnet-list-item .sns-icons a .fa-twitter {
    top: -2px;
    left: 5px;
    font-size: 12px;
  }

  .talent-list .talnet-list-item .sns-icons a .fa-pencil {
    top: -3px;
    left: 5px;
    font-size: 12px;
  }

  .talent-list .talnet-list-item .sns-icons a:after {
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    border-radius: 24px;
  }
}

.talent-list .talnet-list-item .item-wrap {
  position: relative;
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #222;
  background: #fff;
  -webkit-transition: all 0.15s linear;
}

.talent-list .talent-list-item .item-wrap a {
  text-decoration: none;
  display: none;
}

.talent-list .talnet-list-item .item-wrap img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.1s linear;
}

.talent-list .talnet-list-item .item-wrap:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.talent-list .talnet-list-item .item-wrap:hover img {
  opacity: 0.7;
}

.talent-list .talnet-list-item .item-wrap .list-category {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 740px) {
  .talent-list .talnet-list-item .item-wrap .list-category {
    font-size: 10px;
  }
}

.talent-list .talnet-list-item .item-wrap .talent-name {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

@media only screen and (max-width: 740px) {
  .talent-list .talnet-list-item .item-wrap .talent-name {
    font-size: 12px;
  }
}

.talent-list .talnet-list-item .talent-list-item-inner {
  background-color: #FFF;
}

.women-color {
  color: #f87eb0;
}

.artist-color {
  color: #8ac81a;
}

.partner-color {
  color: #54bfd8;
}

.culture-color {
  color: #fbc10f;
}

/*  talent-detail-page
/***********************************************************/

.talent-category {
  margin-top: 0.2em;
  text-indent: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 740px) {
  .talent-category {
    margin-top: 0;
  }
}

@media only screen and (max-width: 740px) {
  .talent-detail {
    margin-top: 20px;
    padding: 0 10px;
  }
}

.talent-detail .talent-name {
  margin: 5px 0px;
  padding: 0 10px 10px;
  color: #333;
  border-bottom: 1px solid #ddd;
}

@media only screen and (max-width: 740px) {
  .talent-detail .talent-name {
    margin-top: 0;
    position: relative;
    border-bottom: 0px;
  }
}

.talent-detail .talent-name .full-name {
  font-size: 24px;
}

@media only screen and (max-width: 740px) {
  .talent-detail .talent-name .full-name {
    font-size: 18px;
  }
}

.talent-detail .talent-name .kana-name {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 14px;
}

@media only screen and (max-width: 740px) {
  .talent-detail .talent-name .link-icons {
    top: -30px;
  }
}

.talent-detail-main-visual {
  background-color: #FFF;
  width: 95%;
  margin: 20px 5% 0 0;
  box-sizing: border-box;
}

.talent-detail-main-visual .talent-detail-img {
  display: table-cell;
  vertical-align: middle;
  height: 500px;
  overflow: hidden;
  border: 10px solid #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 740px) {
  .talent-detail-main-visual .talent-detail-img {
    height: 350px;
  }
}

.talent-detail-main-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 740px) {
  .talent-detail-main-visual {
    width: 75%;
    margin: 0 auto;
  }
}

.talent-detail-sub-visual {
  width: 95%;
  box-sizing: border-box;
}

@media only screen and (max-width: 740px) {
  .talent-detail-sub-visual {
    width: 90%;
    margin: 0 auto;
  }
}

.talent-detail-sub-visual .slide-item {
  width: 18%;
  float: left;
  padding: 5px;
  margin-top: 15px;
  margin-right: 2.5%;
  border: 1px solid #fff;
  background-color: #fff;
  box-sizing: border-box;
}

.talent-detail-sub-visual .slide-item:nth-child(5) {
  margin-right: 0;
}

.talent-detail-sub-visual .slide-item.is-detail-selected-img {
  border: 1px solid #333;
}

.talent-detail-sub-visual .slide-item img {
  width: 100%;
  vertical-align: middle;
}

.talent-detail-sub-visual .slide-item:hover {
  cursor: pointer;
}

.talent-detail-sub-visual:after {
  content: '';
  display: block;
  clear: both;
}

.profile-table {
  width: 100%;
  margin: 20px 10px 20px;
}

.profile-table tr {
  line-height: 30px;
}

.profile-table tr th {
  font-family: 'Oswald', sans-serif;
  color: #333;
  font-size: 12px;
  width: 25%;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  .profile-table tr th {
    width: 30%;
  }
}

.profile-table tr td {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

.catch-copy-box .catch-copy-typo {
  text-indent: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #333;
}

.catch-copy-box .catch-copy-textarea {
  margin: 5px 10px 0;
  padding: 15px 18px;
  font-size: 12px;
  background-color: #fff;
}

.catch-copy-box .catch-copy-textarea img.aligncenter {
  display: block;
  margin: 0 auto;
}

.career-box .career-typo {
  text-indent: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #333;
}

.career-box .career-textarea {
  margin: 5px 10px 0;
  padding: 15px 18px;
  font-size: 12px;
  background-color: #fff;
}

.career-box .career-textarea p {
  margin-top: 20px;
}

.career-box .career-textarea p:first-child {
  margin-top: 0;
}

.talent-info-wrap {
  padding: 15px;
}

.talent-info-wrap .member-info {
  margin: 20px 0 0 10px;
  font-size: 13px;
}

.talent-info-wrap .member-info dt {
  float: left;
  width: 120px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #333;
}

@media only screen and (max-width: 740px) {
  .talent-info-wrap .member-info dt {
    float: none;
    width: auto;
    margin-bottom: 5px;
  }
}

.talent-info-wrap .member-info dd {
  padding-left: 120px;
}

@media only screen and (max-width: 740px) {
  .talent-info-wrap .member-info dd {
    padding-left: 0;
  }
}

.talent-info-wrap .member-info dd ul li {
  overflow: hidden;
  margin-bottom: 10px;
}

.talent-info-wrap .member-info dd ul li > span {
  display: block;
  float: left;
  width: 50%;
}

.talent-info-wrap .member-info dd ul li .member-sns {
  float: right;
  width: 50%;
  text-align: right;
}

.talent-info-wrap .member-info dd ul li a i {
  top: 6px;
}

/* .talent-info-wrap .member-info dd ul li a {
  display: inline-block;
  width: 60px;
  height: 20px;
  line-height: 20px;
  margin-right: 10px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
} */

.talent-info-wrap .member-info dd ul li a.member-twitter {
  background-color: #00ACED;
}

.talent-info-wrap .member-info dd ul li a.member-blog {
  background-color: #666;
}

@media only screen and (max-width: 740px) {
  .talent-calendar {
    width: 90%;
    margin: 0 auto;
  }
}

.talent-calendar .calendar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.talent-calendar .calendar-data {
  margin-top: 10px;
}
.twitter-widgets-link {
  margin: 5px 10px 0;
}
.twitter-widgets-link iframe {
  margin-left: 0 !important;
}
/*  fixed-page
/***********************************************************/

.fix-talent-page {
  margin-top: 240px;
}

@media screen and (max-width: 740px) {
  .fix-talent-page {
    margin-top: 170px;
  }
}

.slide {
  list-style-type: none;
}

.news .news-list {
  margin-left: -2%;
}

@media only screen and (max-width: 959px) {
  .news .news-list {
    margin-left: 0;
  }
}

@media only screen and (max-width: 740px) {
  .news .news-list {
    margin-left: 0;
  }
}

.news .news-list:after {
  content: "";
  display: block;
  clear: both;
}

.news .news-list article {
  float: left;
  width: 23%;
  margin: 15px 0 0 2%;
}

@media only screen and (max-width: 959px) {
  .news .news-list article {
    width: 30%;
    margin: 15px 1.5%;
  }
}

@media only screen and (max-width: 740px) {
  .news .news-list article {
    width: 45%;
    margin: 10px 2.5% 0;
  }
}

.news .news-list article:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.news .news-list article a {
  display: block;
  background-color: #fff;
  text-decoration: none;
}

.news .news-list article a:hover img {
  opacity: 0.7;
}

.news .news-list article img {
  display: block;
  width: auto;
  height: auto;
  max-height: 150px;
  margin: 0 auto;
  background-color: #fff;
}

@media only screen and (max-width: 959px) {
  .news .news-list article img {
    max-width: 100%;
    max-height: 100px;
  }
}

.news .news-list article .article-info-wrap {
  background: #FFF;
  padding: 10px;
}

@media only screen and (max-width: 740px) {
  .news .news-list article .article-info-wrap {
    padding: 0px 10px 5px;
  }
}

.news .news-list article .article-info-wrap .article-category {
  position: relative;
  display: inline-block;
  width: 55px;
  margin-left: -17px;
  padding: 3px 0 2px;
  text-align: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.news .news-list article .article-info-wrap .article-category:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 7px solid #000;
  border-left: 7px solid #f5f5f5;
}

.news .news-list article .article-info-wrap .article-date {
  position: relative;
  color: #999;
  font-size: 11px;
  text-align: right;
  top: -18px;
}

@media only screen and (max-width: 740px) {
  .news .news-list article .article-info-wrap .article-date {
    top: -16px;
    font-size: 10px;
  }
}

.news .news-list article .article-info-wrap .article-title {
  margin-top: 7px;
  color: #333;
  font-weight: 600;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .news .news-list article .article-info-wrap .article-title {
    font-size: 11px;
    line-height: 1.4;
  }
}

.news .news-list article .article-info-wrap .news-color {
  background-color: #f5a149;
}

.news .news-list article .article-info-wrap .news-color:after {
  border-top: 7px solid #dd862b;
}

.news .news-list article .article-info-wrap .event-color {
  background-color: #f66b90;
}

.news .news-list article .article-info-wrap .event-color:after {
  border-top: 7px solid #c94669;
}

.news .news-list article .article-info-wrap .media-color {
  background-color: #518dcb;
}

.news .news-list article .article-info-wrap .media-color:after {
  border-top: 7px solid #2c5a8b;
}

.news .news-list article .article-info-wrap .studio-color {
  background-color: #a0c44f;
}

.news .news-list article .article-info-wrap .studio-color:after {
  border-top: 7px solid #7b9e2e;
}

.news {
  padding-top: 20px;
}

.news h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.news-detail {
  padding-top: 20px;
}

@media only screen and (max-width: 740px) {
  .news-detail {
    width: 95%;
    margin: 0 auto;
  }
}

.news-detail .news-detail-content {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.news-detail .news-detail-content h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: #333;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}

.news-detail .news-detail-content .news-body {
  font-size: 13px;
  color: #444;
}

.news-detail .news-detail-content .news-body p {
  margin-top: 25px;
  word-wrap: break-word;
}

.news-detail .news-detail-content .news-body strong {
  color: #222;
  font-weight: 600;
}

.news-detail .news-detail-content .news-body a {
  color: #ffa31a;
}

.news-detail .news-detail-content .news-body a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 740px) {
  .news-detail .news-detail-content .news-body a {
    width: 100%;
  }
}

.news-detail .news-detail-content .news-body .aligncenter {
  display: block;
  margin: 0 auto;
}

.news-detail .news-detail-content .news-body img {
  max-width: 100%;
  height: auto;
}

.news-detail .news-detail-sidebar {
  margin-left: 40px;
}

@media only screen and (max-width: 740px) {
  .news-detail .news-detail-sidebar {
    margin-top: 20px;
    margin-left: 0;
  }
}

.news-detail .news-detail-sidebar h3 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  .news-detail .news-detail-sidebar ul {
    margin-left: -3%;
  }
}

.news-detail .news-detail-sidebar ul:after {
  content: '';
  display: block;
  clear: both;
}

.news-detail .news-detail-sidebar ul li {
  margin-bottom: 15px;
  font-size: 10px;
  background-color: #fff;
}

@media only screen and (max-width: 740px) {
  .news-detail .news-detail-sidebar ul li {
    float: left;
    width: 47%;
    margin: 0 0 15px 3%;
  }
}

.news-detail .news-detail-sidebar ul li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.news-detail .news-detail-sidebar ul li a:hover {
  opacity: 0.5;
}

.news-detail .news-detail-sidebar ul li a img {
  display: block;
  width: auto;
  height: auto;
  max-height: 150px;
  max-width: 100%;
  margin: 0 auto 10px;
}

@media only screen and (max-width: 959px) {
  .news-detail .news-detail-sidebar ul li a img {
    max-width: 100%;
    max-height: 100px;
  }
}

.privacy {
  padding-top: 20px;
}

.privacy h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.privacy .privacy-content {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 740px) {
  .privacy .privacy-content {
    width: 95%;
    margin: 0 auto;
    padding: 0 20px 20px;
    box-sizing: border-box;
  }
}

.privacy h3 {
  margin: 30px 0 10px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 740px) {
  .privacy h3 {
    margin: 0 0 10px;
    padding-top: 20px;
    font-size: 14px;
  }
}

.privacy p,
.privacy ul {
  font-size: 14px;
}

@media only screen and (max-width: 740px) {
  .privacy p,
  .privacy ul {
    font-size: 12px;
  }
}

.privacy ul {
  margin-left: 20px;
  list-style: disc;
}

.shop {
  padding-top: 20px;
}

.shop h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.shop .shop-content ul:after {
  content: '';
  display: block;
  clear: both;
}

.shop .shop-content ul li {
  width: 30%;
  float: left;
  margin: 20px 1.5%;
  text-align: center;
  font-size: 13px;
  box-sizing: border-box;
}

@media only screen and (max-width: 740px) {
  .shop .shop-content ul li {
    width: 47%;
    font-size: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.shop .shop-content ul li img {
  width: 100%;
}

.shop .shop-content ul li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
}

.shop .shop-content ul li a:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.audition {
  padding-top: 20px;
}

.audition h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.audition .audition-list:after {
  content: '';
  display: block;
  clear: both;
}

.audition .audition-list article {
  width: 30%;
  float: left;
  margin: 20px 1.5%;
  text-align: center;
  font-size: 13px;
  box-sizing: border-box;
}

@media only screen and (max-width: 740px) {
  .audition .audition-list article {
    width: 47%;
    font-size: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.audition .audition-list article a {
  display: block;
  padding: 10px;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
}

.audition .audition-list article a:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.audition .audition-list article a img {
  width: 100%;
  height: auto;
  object-fit: scale-down;
}

.audition .audition-list article a .article-title {
  text-align: center;
  color: #333;
}

.audition-detail {
  padding-top: 20px;
}

@media only screen and (max-width: 740px) {
  .audition-detail {
    width: 95%;
    margin: 0 auto;
  }
}

.audition-detail .audition-detail-content {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 740px) {
  .audition-detail .audition-detail-content {
    padding: 20px;
  }
}

.audition-detail .audition-detail-content h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: #333;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}

.audition-detail .audition-detail-content .audition-body {
  font-size: 13px;
  color: #444;
}

.audition-detail .audition-detail-content .audition-body p {
  margin-top: 25px;
}

.audition-detail .audition-detail-content .audition-body strong {
  color: #222;
  font-weight: 600;
}

.audition-detail .audition-detail-content .audition-body a {
  color: #ffa31a;
}

.audition-detail .audition-detail-content .audition-body a:hover {
  text-decoration: none;
}

/*@media only screen and (max-width: 740px) {*/
  .audition-detail .audition-detail-content .audition-body img {
    max-width: 100% !important;
    height: auto !important;
  }
/*}*/

.audition-detail .audition-detail-sidebar {
  margin-left: 40px;
}

@media only screen and (max-width: 740px) {
  .audition-detail .audition-detail-sidebar {
    margin-top: 20px;
    margin-left: 0;
  }
}

.audition-detail .audition-detail-sidebar h3 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 740px) {
  .audition-detail .audition-detail-sidebar ul {
    margin-left: -3%;
  }
}

@media only screen and (max-width: 740px) {
  .audition-detail .audition-detail-sidebar ul:after {
    content: '';
    display: block;
    clear: both;
  }
}

.audition-detail .audition-detail-sidebar ul li {
  margin-bottom: 15px;
  font-size: 10px;
  background-color: #fff;
}

@media only screen and (max-width: 740px) {
  .audition-detail .audition-detail-sidebar ul li {
    float: left;
    width: 47%;
    margin: 0 0 15px 3%;
  }
}

.audition-detail .audition-detail-sidebar ul li a {
  display: block;
  padding: 10px;
  color: #333;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.audition-detail .audition-detail-sidebar ul li a:hover {
  opacity: 0.5;
}

.audition-detail .audition-detail-sidebar ul li a img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.contact {
  padding-top: 20px;
}

.contact h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.contact .contact-form {
  width: 750px;
  margin: 0 auto;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .contact .contact-form {
    width: 100%;
  }
}

.contact .contact-form .required {
  color: #c00;
}

.contact .contact-form table {
  width: 100%;
  margin: 20px 0;
}

@media only screen and (max-width: 740px) {
  .contact .contact-form table {
    overflow: hidden;
  }
}

.contact .contact-form table tbody tr th,
.contact .contact-form table tbody tr td {
  padding: 8px 10px;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .contact .contact-form table tbody tr th,
  .contact .contact-form table tbody tr td {
    width: 100% !important;
    float: left;
  }

  .contact .contact-form table tbody tr th .three-size,
  .contact .contact-form table tbody tr td .three-size {
    width: 50px !important;
  }

  .contact .contact-form table tbody tr th textarea,
  .contact .contact-form table tbody tr td textarea {
    width: 90% !important;
  }
}

.contact .contact-form table tbody tr th {
  width: 30%;
  text-align: left;
  color: #333;
  vertical-align: top;
  background-color: #f0f0f0;
}

@media only screen and (max-width: 740px) {
  .contact .contact-form table tbody tr th {
    width: 100% !important;
    float: left;
    padding: 7px 0px 0px 10px;
    background-color: #fff;
  }
}

.contact .contact-form table tbody tr td {
  color: #666;
  background-color: #fff;
}

@media only screen and (max-width: 740px) {
  .contact .contact-form table tbody tr td {
    width: 100% !important;
    float: left;
    padding: 3px 0px 0px 10px;
  }

  .contact .contact-form table tbody tr td br {
    display: none;
  }
}

.contact .contact-form table tbody tr td input[type="text"] {
  width: 80%;
  height: 30px;
  outline: none;
  box-sizing: border-box;
}

.contact .contact-form table tbody tr td input[type="text"].tel-input {
  width: 15%;
  margin-right: 5px;
}

.contact .contact-form table tbody tr td select {
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  outline: none;
  font-size: 12px;
  box-sizing: border-box;
}

.contact .contact-form table tbody tr td textarea {
  width: 80%;
  height: 150px;
}

.contact .contact-form .submit {
  margin-top: 30px;
  text-align: center;
}

.contact .contact-form .submit input {
  display: inline-block;
  width: 200px;
  height: 44px;
  line-height: 44px;
  margin: 0 5px;
  color: #fff;
  font-size: 13px;
  outline: none;
  background-color: #333;
  border: none;
}

.contact .contact-form .submit input:hover {
  cursor: pointer;
  background-color: #555;
}

.entry {
  padding-top: 20px;
}

.entry h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.entry h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.entry ol {
  margin-bottom: 10px;
}

.entry .entry-form {
  width: 750px;
  margin: 0 auto;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .entry .entry-form {
    width: 100%;
  }
}

.entry .entry-form .required {
  color: #c00;
}

.entry .entry-form table {
  width: 100%;
  margin: 20px 0;
}

@media only screen and (max-width: 740px) {
  .entry .entry-form table {
    overflow: hidden;
  }
}

.entry .entry-form table tbody tr th,
.entry .entry-form table tbody tr td {
  padding: 8px 10px;
  font-size: 12px;
}

@media only screen and (max-width: 740px) {
  .entry .entry-form table tbody tr th,
  .entry .entry-form table tbody tr td {
    width: 100% !important;
    float: left;
  }

  .entry .entry-form table tbody tr th select,
  .entry .entry-form table tbody tr td select {
    /* width: 75px !important; */
  }

  .entry .entry-form table tbody tr th .three-size,
  .entry .entry-form table tbody tr td .three-size {
    width: 50px !important;
  }

  .entry .entry-form table tbody tr th textarea,
  .entry .entry-form table tbody tr td textarea {
    width: 90% !important;
  }
}

.entry .entry-form table tbody tr th {
  width: 30%;
  text-align: left;
  color: #333;
  vertical-align: top;
  background-color: #f0f0f0;
}

@media only screen and (max-width: 740px) {
  .entry .entry-form table tbody tr th {
    background-color: #fff;
    padding: 7px 0px 0px 10px;
    width: 100% !important;
    float: left;
  }
}

.entry .entry-form table tbody tr td {
  color: #666;
  background-color: #fff;
}

@media only screen and (max-width: 740px) {
  .entry .entry-form table tbody tr td {
    padding: 3px 0px 0px 10px;
    width: 100% !important;
    float: left;
  }

  .entry .entry-form table tbody tr td br {
    display: none;
  }
}

.entry .entry-form table tbody tr td input[type="text"] {
  width: 80%;
  height: 30px;
  outline: none;
  box-sizing: border-box;
}

.entry .entry-form table tbody tr td input[type="text"].tel-input {
  width: 15%;
  margin-right: 5px;
}

.entry .entry-form table tbody tr td select {
  height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  outline: none;
  font-size: 12px;
  box-sizing: border-box;
}

.entry .entry-form table tbody tr td .input-size-s {
  width: 100px;
}

.entry .entry-form table tbody tr td textarea {
  width: 80%;
  height: 100px;
}

.entry .entry-form .submit {
  margin-top: 30px;
  text-align: center;
}

.entry .entry-form .submit input {
  display: inline-block;
  width: 200px;
  height: 44px;
  line-height: 44px;
  margin: 0 5px;
  color: #fff;
  font-size: 13px;
  outline: none;
  background-color: #333;
  border: none;
}

.entry .entry-form .submit input:hover {
  cursor: pointer;
  background-color: #555;
}

.company {
  padding-top: 20px;
}

.company h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}

.company .company-content {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 740px) {
  .company .company-content {
    width: 95%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
  }
}

.company h3 {
  margin: 0 0 20px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

@media only screen and (max-width: 740px) {
  .company h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.company table {
  width: 100%;
  margin-bottom: 40px;
}

.company table:last-child {
  margin-bottom: 0;
}

.company table th,
.company table td {
  padding: 8px 15px;
  font-size: 13px;
}

@media only screen and (max-width: 740px) {
  .company table th,
  .company table td {
    padding: 5px 10px;
    font-size: 11px;
  }
}

.company table th {
  width: 20%;
  color: #333;
  text-align: left;
  font-weight: 600;
}

@media only screen and (max-width: 740px) {
  .company table th {
    width: 30%;
    padding: 0;
  }
}

.company table td {
  padding-left: 60px;
  border-left: 1px solid #f0f0f0;
}

@media only screen and (max-width: 740px) {
  .company table td {
    padding-left: 15px;
  }
}

/* recruit */
.recruit h2 {
  margin: 150px 0 30px;
  text-align: center;
  font-size: 28px;
  color: #444;
  font-family: "oswald";
}

.recruit-typo {
  margin: 50px 20%;
}

.recruit-typo p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.8;
  font-weight: bold;
}
.staff-data {
  margin-top: 20px;
}
.staff-data span {
  font-weight: bold;
  font-size: 15px;
}

.recruit-typo ul  {
  font-size: 14px;
  line-height: 1.8;
}


.recruit-typo ul li {
  font-weight: bold;
}

.recruit-table {
  width: 100%;
}

.recruit-table th, .recruit-table td {
  padding: 20px 0;
  line-height: 2.0;
  font-size: 14px;
}
.recruit-table th {
  width: 20%;
}
.recruit-table th span {
  border-bottom: 2px solid;
}
.recruit-table td {
  width: 80%;
}
.recruit .address {
  margin: 50px 0;
  padding: 20px 50px;
  border: 1px solid;
  text-align: justify;
  line-height: 2.0;
}

@media only screen and (max-width: 740px) {
  .recruit h2 {
    margin: 90px 0 10px;
    font-size: 24px;
    color: #555;
    font-family: "oswald";
  }

  .recruit-typo {
    margin: 30px 10%;
  }

  .recruit-table th, .recruit-table td {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
    width: 100%;
  }

  .recruit-table th {
    padding: 20px 20px 0 20px;
  }

  .recruit-table td {
    padding: 10px 20px 0 50px;
  }

  .recruit .address {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 40px 20px 30px;
    padding: 10px 20px;
    border: 1px solid;
    text-align: justify;
    line-height: 2.0;
    font-size: 14px;
  }
}
/* costume */
.costume-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.costume-thumb-container {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
@media only screen and (max-width: 740px) {
  .costume-thumb-container {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.costume-thumb-container img {
  width:100%;
  height: auto;
}
.costume {
  padding-top: 20px;
}

.costume h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
}
.costume .costume-list-description {
  margin-bottom: 10px;
}
.costume .costume-list-description * {
  text-align: center;
}
.costume .costume-list:after {
  content: '';
  display: block;
  clear: both;
}

.costume .costume-list article {
  width: 30%;
  float: left;
  margin: 20px 1.5%;
  text-align: center;
  font-size: 13px;
  box-sizing: border-box;
}

@media only screen and (max-width: 740px) {
  .costume .costume-list article {
    width: 47%;
    font-size: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.costume .costume-list article a {
  display: block;
  padding: 10px;
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: all 0.15s linear;
}

.costume .costume-list article a:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.costume .costume-list article a .costume-img-container {
  max-height: 182px;
  overflow: hidden;
}

.costume .costume-list article a .costume-img-container img {
  width: 100%;
  height: auto;
}

.costume .costume-list article a .article-title {
  text-align: center;
  color: #333;
  font-weight: 600;
}

/* onlinestore */
.onlinestore-shop-banner {
  display: block;
  margin: auto;
  width: 300px;
}

@media only screen and (max-width: 740px) {
  .onlinestore-shop-banner {
    width: 200px;
  }
}

.onlinestore-shop-url {
  text-decoration: none;
  font-family: "ＭＳ Ｐゴシック",Meiryo,sans-serif;
  color: #adadad;
  font-size: large;
  font-weight: bolder;
}

.onlinestore-shop-url:hover{
  color: #ffa31a;
}

/*company*/
.company-map {
  width: 560px;
  height: 420px; 
  border: 0;
}

@media only screen and (max-width: 740px) {
  .company-map {
    width: 200px;
    height: 150px; 
  }
}

/* カラーバッジ */
.cbadge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
}

.cbadge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.talent-color-badge {
  text-align: left;
  margin-left: 10px;
}