  @charset "utf-8";
/* A Modern CSS Reset 
--------------------------*/
*, *::before, *::after {
  box-sizing: border-box
}
* {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto
}
img, picture {
  max-width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;   
}
input, button, textarea, select {
  font: inherit
}
@media(prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}
/* Set 
--------------------------*/
@font-face {
  font-family: "nsjpr";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Noto Sans CJK JP'), local('NotoSansCJKjp-Regular'), local('NotoSansJP-Regular'), url("/cnt_damovie/assets/font/nsjpr.woff") format("woff");
}
@font-face {
  font-family: "nsjpr";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('NotoSansCJKjp-Medium'), local('NotoSansJP-Medium'), url("/cnt_damovie/assets/font/nsjpm.woff") format("woff");
}
@font-face {
  font-family: "nsjpr";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('NotoSansCJKjp-Bold'), local('NotoSansJP-Bold'), url("/cnt_damovie/assets/font/nsjpb.woff") format("woff");
}
html {
  line-height: 1.5;
  font-family: "nsjpr", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
@media screen and (min-width:1023px){
  html {
    font-size: 16px;
  }
  .pc {
    display: inline-block;
  }
  .tab {
    display: none;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width:1024px){
  html{
    font-size: 1.4vw;
  }
  .pc {
    display: none;
  }
  .tab {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width:768px){
  html{
    font-size: 2vw;
  }
}
@media screen and (max-width:480px){
  html{
    font-size: 3.4vw;
  }
  .pc {
    display: none;
  }
  .tab {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}

.inner{
  max-width: 1120px;
  width: 94%;
  margin: 0 auto;
}

/* メインビジュアル
--------------------------*/
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 10;
  background: rgba(0,0,0,.9);
  color: #FFF;
  padding: 15px 0;
}
header .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .inner .logo img {
  width: 70px;
  height: 71px;
}
header .inner .logo a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .inner .logo a:hover {
  filter:alpha(opacity=65);
  -moz-opacity: 0.65;
  opacity: 0.65;
}
header .inner .logo_dm{
  display: none;
}
header .inner nav {
  width: 85%;
  max-width: 950px;
}
header .inner nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .inner nav ul li {
  position: relative;
  font-size: 1.15rem;
}
header .inner nav ul li a {
  text-decoration: none;
  color: #FFF;
  position: relative;
  display: inline-block;
  padding: 20px 0;
}
header .inner nav ul li a::after {
  position: absolute;
  bottom: 13px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #D3D3D3;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
header .inner nav ul li a:hover{
  color: #D3D3D3;
}
header .inner nav ul li a:hover::after {
  transform: scale(1, 1);
}
/*header .inner nav ul li.current > a::after {
  transform: scale(1, 1);
}*/
header .inner nav ul li ul li{
  height: 0;
  overflow: hidden;
  transition: .5s;
}
header .inner nav ul li:hover > ul > li{
  height: auto;
  overflow: visible;
}
header .inner nav ul li ul {
  display: none;/*サブナビPCで消す*/
  left: -30px;
  position: absolute;
  top: 64px;
  width: 200px;
  background: rgba(0,0,0,.9);
  font-size: 0.875rem;
}
header .inner nav ul li ul.child_open {
  display: none;
}
header .inner nav ul li ul li {
  width: 100%;
}
header .inner nav ul li ul li a{
  width: 100%;
  padding: 15px 15px 15px 25px;
  background: url("/cnt_damovie/assets/images/arrow02.png") no-repeat 15px 50% / 4px auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: #333333 solid 1px;
}
header .inner nav ul li ul li:first-of-type a{
  border-top: 0;
}
header .inner nav ul li ul li a::after {
  transform: scale(0);
  display: none;
}
header .inner nav ul li ul li a:hover,
header .inner nav ul li ul li.current > a{
  padding: 15px 15px 15px 25px;
  background: url("/cnt_damovie/assets/images/arrow02.png") #222222 no-repeat 15px 50% / 4px auto;
}
header .inner nav ul li:last-of-type ul {
  right: 0;
  left: inherit;
}
@media screen and (max-width: 1024px) {
  header {
    padding: 2vw 0 1.8vw 0;
  }
  header .inner{
    position: relative;
  }
  header .inner .logo {
    width: 100%;
  }
  header .inner .logo a{
    display: inline-block;
  }
  header .inner .logo img {
    width: 5.5vw;
    height: auto;
  }
  header .inner .logo_dm{
    display: block;
    position: absolute;
    top: 0.8vw;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 16vw;
    height: 6vw;
    z-index: 10;
  }
  header .inner nav {
    width: 100%;
    max-width:initial;
    max-width:auto;
  }
  header .inner nav ul {
    display: block;
    width: 100%;
    margin-top: 20vw;
  }
  header .inner nav > ul {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 80%;
    padding-bottom: 10vw;
  }
  header .inner nav ul li{
    width: 100%;
    font-size: 1.25rem;
    border-bottom: solid 1px #232323;
  }
  header .inner nav ul li a{
    display: inline-block;
    padding: 3vw 3vw;
    width: 100%;
    background: url("/cnt_damovie/assets/images/arrow03.png") no-repeat right 3vw top 50% / 1vw auto;
  }
  header .inner nav ul li a.open{
    background: url("/cnt_damovie/assets/images/arrow04.png") no-repeat right 3vw top 50% / 2vw auto;
  }
  header .inner nav ul li a::after {
    display: none;
  }
  header .inner nav ul li ul {
    position: static;
    margin: 0;
    flex-wrap: wrap;
    padding: 0 3vw 5vw 3vw;
    width: 100%;
    display: none;
  }
  header .inner nav ul li ul.child_open {
    max-height:100vh;
    opacity: 1;
  }
  header .inner nav ul li ul li{
    height: auto;
    transform: scaleY(1);
    font-size: 0.875rem;
    width: 100%;
    border-bottom: 0;
  }
  header .inner nav ul li ul li a,
  header .inner nav ul li ul li a:hover{
    border-top: 0;
    padding: 2vw 2vw 2vw 5.5vw;
    background: url("/cnt_damovie/assets/images/arrow02.png") no-repeat 3vw 50% / 1.2vw auto;  
  }
  header .inner nav ul li ul li.current > a {
    padding: 2vw 2vw 2vw 5.5vw;
    background: url("/cnt_damovie/assets/images/arrow02.png") #222222 no-repeat 3vw 50% / 1.2vw auto;  
  }
}
@media screen and (max-width: 768px) {
  header .inner .logo img {
    width: 8vw;
  }
  header .inner .logo_dm{
    width: 22vw;
    height: 7.5vw;
  }
  header .inner nav ul li a{
    background: url("/cnt_damovie/assets/images/arrow03.png") no-repeat right 3vw top 50% / 2vw auto;
  }
}
@media screen and (max-width:480px){
  header {
    padding: 3vw 0 2.5vw 0;
  }
  header .inner .logo_dm{
    width: 24vw;
    height: 8.5vw;
  }
  header .inner .logo img {
    width: 11vw;
  }
  header .inner nav ul li a{
    background: url("/cnt_damovie/assets/images/arrow03.png") no-repeat right 3vw top 50% / 3vw auto;
    padding: 4vw 3vw;
  }
  header .inner nav ul li a.open{
    background: url("/cnt_damovie/assets/images/arrow04.png") no-repeat right 3vw top 50% / 3vw auto;
  }
  header .inner nav ul li ul li {
    font-size: 1.15rem;
  }
  header .inner nav ul li ul li a,
  header .inner nav ul li ul li a:hover{
    border-top: 0;
    padding: 2.2vw 2.2vw 2.2vw 7vw;
    background: url("/cnt_damovie/assets/images/arrow02.png") no-repeat 3vw 50% / 1.5vw auto;  
  }
  header .inner nav ul li ul li.current > a {
    padding: 2.2vw 2.2vw 2.2vw 7vw;
    background: url("/cnt_damovie/assets/images/arrow02.png") #222222 no-repeat 3vw 50% / 1.5vw auto;  
  }
}

header #hamburger {/*ハンバーガーメニュー*/
    display: none;
}
@media screen and (max-width: 1024px) {
  header #hamburger {
    display: block;
    position: absolute;
    top: 0.5vw;
    right: 0.5vw;
    width: 4vw;
    height: 3vw;
    cursor: pointer;
    transition: 0.5s;
    z-index: 99;
  }
  header #hamburger .inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3vw;
    background-color: #ffffff;
    transition: 1s;
    border-radius: 4px;
  }
  header #hamburger #line1 {
    top: 0;
  }
  header #hamburger #line2 {
    top: 1.3vw;
  }
  header #hamburger #line3 {
    bottom: 0px;
  }
  header #hamburger #line3::after {
    content: 'メニュー';
    display: block;
    font-size: 1vw;
    color: #ffffff;
    text-align: center;
    margin-top: 1vw;
  }
  nav{
   position: fixed;
   top: -100vh;
   left: 0;
   width: 40%;
   height: 100vh;
   background: #000000;
   /*０.7秒かけてナビメニューがスライドする*/
  transition: .7s;
    z-index: 11;
  }
  nav.in{
    transform: translateY(100vh);
  }
  header #hamburger .line_1 {
    transform: rotate(-45deg);
    top: 1.3vw !important;
  }
  header #hamburger .line_2 {
    transform: rotate(45deg);
    bottom: 1.3vw !important;
  }
  header #hamburger .line_3 {
    background: none;
  }
  header #hamburger #line3.line_3::after {
    content: '閉じる';
  }
}
@media screen and (max-width: 768px) {
  header #hamburger {
    top: 1vw;
    right: 1vw;
    width: 5vw;
    height: 4vw;
  }
  header #hamburger .inner_line {
    height: 0.5vw;
  }
  header #hamburger #line2 {
    top: 1.8vw;
  }
  header #hamburger #line3::after {
    font-size: 1.2vw;
    margin-top: 2vw;
  }
  header #hamburger .line_1 {
    top: 1.8vw !important;
  }
  header #hamburger .line_2 {
    bottom: 1.8vw !important;
  }
}
@media screen and (max-width:480px){
  header #hamburger {
    width: 9vw;
    height: 6vw;
  }
  header #hamburger #line2 {
    top: 2.8vw;
  }
  header #hamburger .line_1 {
    top: 3.2vw !important;
  }
  header #hamburger .line_2 {
    top: 3.2vw !important;
  }
  header #hamburger .line_3 {
    bottom: 0 !important;
  }
  header #hamburger #line3::after {
    font-size: 2vw;
  }
}
/*フッター
--------------------------*/
footer {
  position: relative;
  z-index: 3;
}
footer #damAll{ 
  background: #0f1010;
  padding: 45px 0; 
}
footer #damAll h3{
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}
footer #damAll h3::before{
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 15px;
  background: #ffffff;
}
footer #damAll h3 span{
  font-size: 1rem;
  margin-left: 10px;
}
footer #damAll ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 35px;
}
footer #damAll ul li{
  margin-right: 1em;
  margin-bottom: 10px;
  background: url("/cnt_damovie/assets/images/arrow02.png") no-repeat left 50% / 4px auto;
  padding-left: 15px;
}
footer #damAll ul li a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
footer #damAll ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #D3D3D3;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
footer #damAll ul li a:hover{
  color: #D3D3D3;
}
footer #damAll ul li a:hover::after {
  transform: scale(1, 1);
}
footer .copy {
  background: #1d1e1f;
  padding: 15px 0; 
}
footer .copy .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .copy p{
  text-align: center;
  color: #b3b3b3;
  font-size: 0.75rem;
}
footer .copy ul {
  display: flex;
  flex-wrap: wrap;
}
footer .copy ul li {
  font-size: .75rem;
}
footer .copy ul li + li {
  border-left: solid 1px #b3b3b3;
  padding: 0 0 0 20px;
  margin: 0 0 0 20px;
}
footer .copy ul li a {
  color: #b3b3b3;
  text-decoration: none;
  position: relative;
}
footer .copy ul li a:hover::after {
  transform: scale(1, 1);
}
footer .copy ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #D3D3D3;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
@media screen and  (max-width:1024px){
  footer .copy {
    padding: 2vw 3vw 2.5vw 3vw;
  }
}
@media screen and  (max-width:768px){
  footer #damAll {
    padding: 8vw 0;
  }
  footer #damAll h3 {
    font-size: 1.25rem;
    padding-left: 5vw
  }  
  footer #damAll h3::before {
    width: 3vw;
    top: 50%;
  }
  footer #damAll ul {
    padding: 0 0 0 5vw;
  }
  footer #damAll ul li {
    font-size: 1rem;
    width: 31%;
    width: -webkit-calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: calc(100% / 3);
    background: url("/cnt_damovie/assets/images/arrow02.png") no-repeat left 50% / 1vw auto;
    padding: 0 3% 0 3%;
    margin: 0 0 3vw 0;
  }
  footer .copy  {
    padding: 5vw 2vw;
  }
  footer .copy p {
    width: 100%;
    order: 2;
  }
  footer .copy ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    order: 1;
    width: 100%;
    margin-bottom: 3vw;
  }
}


