@charset "utf-8";

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
  vertical-align: bottom;
}



/* CSS Document */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html { font-size: 62.5%; }

body {
  font-size: 1.6rem;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  background-color: #fff;
}

html, body {
  height: 100%;
}

li {
  list-style: none;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.65;
  -moz-opacity: 0.65;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
}

.clearfix:after {
  clear: both;
}

@media (max-width: 768px) {
   body {
    font-size: 1.4rem;
  } 
}

/*****************/
.container {
  width: min(99%,1205px);
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 3.3vw;
  }
}


/*****************
header
*****************/
.header {
  background: #000;
}
.inner-header{
  max-width: 1124px;
  margin: auto;
  padding: 21px 7px 11px;
  
}
.logo{
  display: inline-block;
}
.logo_tv{
  width: 100%;
  max-width: 272px;
}

@media (max-width: 768px) {
  .header {
    border-bottom: none;
  }
  .inner-header{
    max-width: 100%;
    padding: 2.7vw 3.4vw 3.2vw;
  }
  .logo_tv{
    width: 32.1vw;
    max-width: auto;
  }
}

/*****************
main
*****************/
.loading{
  font-family: 'Noto Serif JP', serif;
}
.main-content{
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  color: #1b1b1b;
}
.dp_sp{
  display: none;
}
.dp_pc{
  display: block;
}
.main-top {
  width: 100%;
  margin: auto;
}
.main-top .img{
  width: min(100%,1205px);
  margin: auto;
}

@media (max-width: 768px) {
  .loading img{
    width: 100%;
  }
  .dp_sp{
    display: block;
  }
  .dp_pc{
    display: none;
  }
  .main-top .img{
    width: 100%;
  }
}

/*****************
work_bg
*****************/
.gray_bg{
  background: #e5e5e5;
}
.gray_bg.work_bg{
  background: #eee;
}

/*****************
leadArea
*****************/
.leadArea{
  padding: 55px 0 65px min(1.2vw,15px);
  font-size: min(2.6vw,32px);
  line-height: 1.5;
  letter-spacing: -0.04em;
}

@media (max-width: 768px) {
  .leadArea{
    padding: 3.3vw 0 8.7vw .6vw;
    font-size: 4.2vw;
    line-height: 1.75;
    letter-spacing: -0.04em;
  }
}

/*****************
intro
*****************/
.intro{
  padding: 45px 0 135px;
}
.intro .img{
  width: min(35.9vw,433px);
  margin: auto;
  transform: translateX(10px);
}
.intro .expl{
  padding-bottom: 35px;
  font-size: min(1.49vw,18px);
  text-align: center;
  line-height: 1.33;
  letter-spacing: .025em;
  transform: translateY(-3px);
}
.intro .btn_detail{
  width: min(52.6vw,635px);
  margin: auto auto 51px;
  display: block;
}
.prologue{
  width: min(81.1vw,978px);
  margin: auto;
  padding: 58px 0 60px;
  border: 1px solid #000;
  text-align: center;
  font-size: min(1.8vw,22px);
  line-height: 1.6;
}
.prologue h3{
  font-weight: 500;
  letter-spacing: .05em;
}
.prologue p:not(:last-child){
  padding-bottom: 39px;
}

@media (max-width: 768px) {
  .intro{
    padding: 7.3vw 0 13.3vw;
  }
  .intro .img{
    width: 57.7vw;
    transform: translateX(.7vw);
  }
  .intro .expl{
    padding-bottom: 5.5vw;
    font-size: 2.4vw;
    transform: translateY(-1px);
  }
  .intro .btn_detail{
    width: 100%;
    margin: auto auto 7.3vw;
  }
  .prologue{
    width: 100%;
    padding: 2.6vw 2vw 3.5vw;
    border: .05vw solid #000;
    font-size: 2.4vw;
    line-height: 1.8;
    letter-spacing: -.05em;
  }
  .prologue p:not(:last-child){
    padding-bottom: 4vw;
  }
}

/*****************
workWrap
*****************/
.workWrap{
  margin: 0 min(3.3vw,40px) 0;
  padding-bottom: 50px;
}
.work_bg:last-of-type .workWrap{
  padding-bottom: 160px;
}
.workWrap .el_category{
  min-width: 80px;
  margin-bottom: 11px;
  padding: 2px 14px 5px;
  display: inline-block;
  background: #000;
  border-radius: 5px;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
.l_workTtlArea{
  /*display: flex;
  display : -webkit-box;
  display : -webkit-flex;
  display : -ms-flexbox;
  justify-content:space-between;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;*/
}
.l_workTtlArea .el_workTtl{
  font-size:  min(2.6vw,32px);
  letter-spacing: .025em;
  padding: 40px 0 45px;
}
.l_workList{
  /*background: #f8f8f8;*/
  padding: 0;
}
.l_workListTitle{
  font-size: min(1.49vw,18px);
  padding-bottom: 15px;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.33;
}
.cd .l_workListTitle{
  font-size: min(1.6vw,20px);
}
.dvd .l_workListTitle{
  letter-spacing: 0em;
}
.l_workList ul{
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
/*  -webkit-box-align: end;
	-ms-flex-align: end;
  align-items: flex-end;*/
  gap: 48px 20px;
}
.cd .l_workList ul{
  justify-content: space-between;
}
.l_workList li{
  width: calc((100% - 20px * 3) / 4);
  display: flex;
}
.cd .l_workList li{
  width: calc((100% - 120px * 2) / 3);
  display: flex;
}
.l_workList li a{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
/*align-items: baseline;*/
}
.l_workList .jkt {
  margin-bottom: 15px;
  text-align: center;
  margin-left: auto;
  margin-right: auto; 
  width: min(15.3vw,185px);
}
.cd .l_workList .jkt {
  width: 100%;  
}
.comic .l_workList .jkt img{
  display: block;
  height: min(267px,22.15vw);
  object-fit: fill;
  margin-left: auto;
}
.l_workList .btn{
  margin-top: auto;

  margin-left: auto;
  margin-right: auto; 
  width: calc(((1200px - 40px * 2) - 20px * 3) / 4);
}
.l_workList .btn img{
  width: 100%;
}

@media (max-width: 768px) {
  .workWrap{
    margin: 0;
    padding-bottom: 9.7vw;
  }
  .work_bg:last-of-type .workWrap{
    padding-bottom: 31.3vw;
  }
  .l_workTtlArea .el_workTtl{
    font-size:  4.2vw;
    letter-spacing: .025em;
    line-height: 1.25;
    padding: 5.3vw 0 9.3vw;
  }
  .l_workList{
    /*background: #f8f8f8;*/
    padding: 0;
  }
  .l_workListTitle{
    font-size: 3vw;
    padding-bottom: 2vw;
    letter-spacing: 0.025em;
  }
  .cd .l_workListTitle{
    font-size: 2.6vw;
  }
  .l_workList ul{
    gap: 8vw 4.6vw;
  }
  .cd .l_workList ul{
    justify-content: normal;
    gap: 6.6vw 16.4vw;
  }
  .l_workList li{
    width: calc((100% - 4.6vw) / 2);
  }
  .cd .l_workList li{
    width: calc((100% - 16.4vw) / 2);
  }
  .l_workList .jkt {
    margin-bottom: 2.6vw;
    width: 31vw;
  }
  .comic .l_workList .jkt img{
    height: 44.9vw;
  }
  .l_workList .btn{
    width: calc(((100vw - 3.3vw * 2) - 16.4vw) / 2);
  }
}

/*****************
footer 追加
*****************/
.footer{
  background: #000;
  position: relative;
  z-index: 3;
}
.inner-footer{
  max-width: 1140px;
  margin: auto;
  padding: 11px 15px 16px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
}
.el_license{
  font-size: 1.1rem;
  color: #fff;
  padding-top: 5px;
  text-align: right;
}

@media (max-width: 768px) {
  .inner-footer{
    max-width: 100%;
  }
  .el_footerLogo{
    width: 40%;
  }

  .el_license{
    font-size: 0.9rem;
    padding-top: 5px;
  }
}


/*****************
footer 既存
*****************/
.copyright {
  line-height: 18px;
}

.copyright a, .copyright span {
  color: #999999;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: normal;
}

.copyright a:hover, .copyright span:hover {
  text-decoration: none;
}

.footer {
  /*margin-top: 180px;*/
}

.footer .license {
  background-color: #000000;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  z-index: 999;
  cursor: pointer;
  display: none;
}

#back-to-top img {
  width: 100%;
}


#page-top {
    position: fixed;
    bottom: 20px;
    right: 5vw;
    font-weight: 700;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    width: 96px;
}
#page-top a {
/*    background-color: #fdd000;
    text-decoration: none;
    color: #000;
    width: 120px;
    padding: 12px 5px;
    text-align: center;
    display: block;
    border: 3px solid #000;
    border-bottom: none;
    border-radius: 10px 10px 0 0;*/
    width: 96px;
}
#page-top a:hover {
    text-decoration: none;
    filter: brightness(110%) contrast(80%);  
}
/*#page-top a::after {
    content: '';
    display: inline-block;
    background-image: url("/library/dis/cms/img/dcp/feature/slamdunk_sp/arrow_black_m.png");
    width: 11px;
    height: 7px;
    background-size: contain;
    vertical-align: middle;
    margin-left: 10px;
}*/

/*　上に上がる動き　*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(150px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
  animation: DownAnime 0.15s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(150px);
  }
}

@media (max-width: 768px) {
  #page-top {
    bottom: 6.6vw;
    right: 5.7vw;
    width: 12.6vw;
  }
  #page-top a {
    border-radius: 0;
    width: 12.6vw;
  }
  #page-top a::after{
    width: 9px;
    height: 6px;
  }
  #page-top a:hover {
      text-decoration: none;
      filter: none;  
  }
  #page-top a:hover img{
    opacity: 1;
  }
}


body.loading .wrap-loading {
  display: block;
}

.wrap-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #073983;
  z-index: 9999;
  display: none;
}

.wrap-loading .loading-icon {
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.wrap-loading .loading-icon:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (min-width: 1001px) {
  .main-content .menu-tabs ul li:nth-child(3) {
    border-right: 1px solid #222222;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    -webkit-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }

}

@media (max-width: 768px) {
  .footer {
    /*margin-top: 10.6666vw;*/
  }

}
