@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  overflow-y: scroll;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner {
  width: 50%;
	max-width: 1080px;
	min-width: 750px;
  margin: 0 auto;
  padding: 5% 0;
	    z-index: 3;
    position: relative;
}
a {
  display: block;
}

h1.midashi_title{
margin: 0 auto 5%;
    font-family: "Baskervville", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(20px, 2vw, 50px);
    letter-spacing: 0.5rem;
    color: #214e74;
}
h2.komidashi_title{
	margin: 10% auto 5%;
     font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
    font-size: clamp(20px, 1.5vw, 50px);
    letter-spacing: 0.5rem;
    color: #214e74;
}
.text{
	color: #000;
	text-align: justify;
	text-align-last: left;
}

/*--------------------
LOADING
---------------------*/

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}
.logo {
width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  opacity: 0;

}

/*--------------------
ANIMATION
---------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
 
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
	display: none;
  }
}
.slideInY{
  animation-name: slideInAnimeY;
animation-duration:2s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

.trailer.on{
	animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.trailer.off{
	animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: #000;
    opacity: 1;
    z-index: 999999997;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
transition: .7s;
opacity: .7;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}

.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	z-index: 999999998;
	 font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

.trailer .trailer_tab li{
    display: flex;
    justify-content: center;
    width: calc(50% - 2.5px);
    padding: 10px;
    font-weight: bold;
    background: #fff;
    color: #000;
    margin: 0 5px 5px 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    box-sizing: border-box;
    letter-spacing: 0.1rem;
    text-align: center;
}
.trailer_tab li:nth-child(2n){
	margin: 0 0 5px;
}
.trailer .trailer_tab li:last-child{
    width: 100%;
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1, #youtube2, #youtube3, #youtube4, #youtube5, #youtube6{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1,.trailer.on #youtube2, .trailer.on #youtube3, .trailer.on #youtube4, .trailer.on #youtube5, .trailer.on #youtube6{
    transform: scale(1,1);
    opacity: 1;
}


.youtube_wrapper{
		width: 48%;
	
	}
.youtube_wrapper:first-child{
		margin-right: 4%;
	}
.youtube_inner{
position: relative;
 padding-bottom: 56.25%;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ytp-cued-thumbnail-overlay-image {
    filter: none;
    -webkit-filter: none;
}

/*--------------------
MENU
---------------------*/
header {
  opacity: 0;
  position: fixed;
  z-index: 299;
  translate: none;
align-items: center;
}
nav.header_nav {
  position: fixed;
  top: 5%;
  right: 5%;
  z-index: 300;
}
.nav_inner {
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 60px;
  margin: 0 auto;
}
nav.header_nav ul {
  display: -webkit-flex;
  justify-content: center;
  padding: 0;
  width: auto;
  vertical-align: middle;
  box-sizing: border-box;
  z-index: 300;
  align-items: center;
	min-height: 600px;
}
nav.header_nav ul li {
  vertical-align: middle;
  padding: 0 1.5% 0 0;
}
nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
	font-family: "Baskervville", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(20px, 2vw, 50px);
    letter-spacing: 0.5rem;
    color: #214e74;
	text-align: center;
}
nav.header_nav ul li a:hover {
  opacity: 0.7;
  transition: 0.8s;
}
header {
height: auto;
    position: fixed;
    top: 2vw;
    right: 2vw;
    display: flex;
    flex-direction: column;
	justify-content: center;
}
nav.header_nav {
  z-index: 777;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/*hamburger-menu*/

.menu_bg {
    width: 100px;
    height: 100px;
	position: relative;
  z-index: 779;
}

.sns_icon {
    width: 40px;
    height: 40px;
	z-index: 779;
	position: relative;
}
.sns_icon a{
	transition: .7s;
}
.sns_icon a:hover{
	transition: .7s;
	opacity: .7;
}


.menu {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 779;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

/*gnav*/
.gnav {
 background-image: url("../img/atm_c2_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	    background-position: center 15%;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto;
  width: 100%;
  z-index: 778;
}
.gnav__wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 600px;
}
.gnav__menu__item {
  width: 100%;
  vertical-align: middle;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {

  font-weight: 700;
  text-decoration: none;
  transition: .5s;
  cursor: default;
  padding: 0;
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
nav.header_nav ul.gnav__menu {
  width: 80%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
nav.header_nav ul.gnav__menu li {
  text-align: center;
  padding: 0 0 40px;
}
nav.header_nav ul.gnav__menu li:last-child {
  padding: 0;
}
nav.header_nav ul.gnav__menu li:first-child {
  border-left: none;
}
nav.header_nav ul.gnav__menu li img {
  height: 6vw;
  max-height: 26px;
}
/*humberger-menuここまで*/
.change {
}

input[type=checkbox] {
  display: none;
}

.open .gnav {
  transform: translateX(0);
}

.close .gnav {
  transform: translateX();
}


/*--------------------
TOP
---------------------*/

.top{
	position: relative;
}

.top .inner{
	width: 100%;
	max-width: inherit;
	padding: 0;
}
.top_text{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}
.sns_icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 10%;
	z-index: 50;
}
.sns_icon a{
	background-color: #214e74;
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 50px;
	transition: .7s;
	
}
.sns_icon a:hover{
	transition: .7s;
	opacity: .7;
}
.sns_icon img{
	width: 50%;
}

.date{
	width: 100%;
	    margin: 0 auto 5%;
}
.mvtk_bnr{
	margin: 0 auto 5%;
	width: 300px;
	
}
.mvtk_bnr a{
	transition: .7s;
}
.mvtk_bnr a:hover{
	transition: .7s;
	opacity: .7;
}


/*--------------------
MOVIE
---------------------*/

section.movie{
	position: relative;
	z-index: 1;
  background-image: linear-gradient(0deg, #ababb6, #d0c3c2);
}
	section.movie::before{
	    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-repeat: repeat;
    background-size: contain;
    background-position: top;
    filter: contrast(100%) brightness(100%);
    background: url(../img/noise.svg);
    opacity: 0.2;
    background-repeat: repeat;
    background-size: 150px;
}

.movie .inner{
	position: relative;
	z-index: 2;
}

.movie_wrap{
display: flex;
	flex-direction: column;
}

.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/yt_logo.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

.trailer_s {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
	border: 5px solid #ffc84d;
	box-sizing: border-box;
}

.trailer_s.home {
	border: 5px solid #556e86;
}
.trailer_s .inner {
  width: 100%;
  padding: 0;
}
.trailer_s iframe{
	width: 100%;
	height: 100%;
	display: block;
}
.trailer_btn {
  overflow: hidden;
  width: 50%;
  margin: 0 auto;
  cursor: pointer;
}
.trailer_s .trailer_overlay {
  position: relative;
}
.trailer_s .trailer_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  z-index: 2;
  transition-duration: 0.5s;
}
.movie .trailer_tab {
  position: inherit;
}
.movie .trailer_tab {
  position: inherit;
  color: #fff;
  top: 100%;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
ul.trailer_tab li {
  cursor: pointer;
  background: #556e86;
  color: #fff;
  width: calc(50% - 0.2vw);
  margin: 0 0.4vw 0.4vw 0;
  box-sizing: border-box;
  font-size: clamp(12px, 0.9vw, 18px);
  padding: 0.4vw;
}
.movie .trailer_tab li:nth-child(2n) {
  margin: 0 0 0.4vw 0;
}

.movie .trailer_tab li.f_act {
  transition: .7s;
  background: #fff;
  color: #556e86;
}
.movie .trailer_tab li.f_act:hover {
  transition: .7s;
  background: #556e86;
  color: #fff;
}



/*--------------------
Introduction
---------------------*/

.intro{
	background-image: url("../img/intro_bg_pc.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
}
.intro .inner{
	    padding: 35% 0 5%;
	    filter: drop-shadow(0 0 10px black);
}
.intro h1.midashi_title{
	color: #fff;
}
.intro_lead{
	margin: 0 auto 5%;
}
.intro .text{
	color: #fff;
}
ul.intro_imgs{
	    display: flex;
    margin: 5% auto 0;
}
ul.intro_imgs li{
    margin: 0 10px 0 0;
}
ul.intro_imgs li:last-child{
    margin: 0;
}



/*--------------------
Staff
---------------------*/

section.staff{
	position: relative;
	z-index: 1;
 background-image: linear-gradient(0deg, #556e86, #6d8797);
}
section.staff::before{
	    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-repeat: repeat;
    background-size: contain;
    background-position: top;
    filter: contrast(100%) brightness(100%);
    background: url(../img/noise.svg);
    opacity: 0.2;
    background-repeat: repeat;
    background-size: 150px;
}
.staff h1.midashi_title{
	color: #000;
}

.staff_inner{
	display: flex;
    align-items: center;
}
.staff_img{
	    width: 30%;
    margin: 0 5% 0 0;
}
.staff_info{
	width: 65%;
}
.staff_name_wrap{
	display: flex;
	align-items: center;
	    margin: 0 auto 2%;
}
.staff_name_jp{
	margin: 0 1rem 0 0;
}
.staff_name_jp img{
	height: 1.6vw;
    max-width: inherit;
    max-height: 30px;
    min-height: 16px;
    object-fit: contain;
}
.staff_name_eng img{
	height: 1vw;
    max-width: inherit;
    max-height: 30px;
    min-height: 16px;
    object-fit: contain;
}


/*--------------------
About the MOVIE
---------------------*/

/*--------------------
chapter2
---------------------*/

.atm .inner{
	width: 90%;
}

.atm.chapter2{
	/*background-image: url("../img/atm_c2_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;*/
}

.atm_bg_2 {
content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/atm_c2_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 5% 0;
    max-height: 100vh;
	z-index: -1;
}

li.atm_list_item{
  background-image: linear-gradient(0deg, #ffffff 80%, #ffffff4d);
    padding: 3%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	margin: 0 auto 2%;
}

.atm_img{
	    width: 45%;
    margin: 0 2% 0 0;
}
.atm_info{
	width: 53%;
}
.atem_text{
	    margin: 0 auto 20px;
}
.atm .text{
	font-size: 14px;
}


/*--------------------
chapter1
---------------------*/

.atm.chapter1{
	background-image: url("../img/atm_c1_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

/*.atm_bg_1 {
content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/atm_c1_bg.jpg");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    padding: 5% 0;
    max-height: 100vh;
	z-index: -1;
}*/

.atmFixed {
position: fixed;
background-size: cover;
z-index: -1;
}

.chapter1_lead{
	width: 65%;
    margin: 0 0 5%;
}



.ch1_bnr{
	width: 60%;
    margin: 0 auto;
    max-width: 550px;
    min-width: 350px;
}
.ch1_bnr a{
	transition: .7s;
}
.ch1_bnr a:hover{
	transition: .7s;
	opacity: .7;
}

h1.midashi_title.ch1 {
    margin: 7% auto 2%;
    font-size: clamp(20px, 1.5vw, 50px);;
    color: #fff;
    filter: drop-shadow(0 0 6px black);
}

/*--------------------
FOOTER
---------------------*/
footer{
  background-image: linear-gradient(0deg, #ffd794 10%, #214e74 90%);
	z-index: 1;
	position: relative;
}
footer::before{
	    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-repeat: repeat;
    background-size: contain;
    background-position: top;
    filter: contrast(100%) brightness(100%);
    background: url(../img/noise.svg);
    opacity: 0.2;
    background-repeat: repeat;
    background-size: 150px;
}
footer .inner{
	position: relative;
	z-index: 3;
}
.footer_title{
	    width: 50%;
    min-width: 400px;
    margin: 0 auto;
    max-width: 600px;
}


@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 960px) {
	
/*--------------------
TRAILER
---------------------*/
	.trailer .trailer_inner {
top: 45%;
    width: 90%;
	}
		.inner {
    width: 80%;
    padding: 15% 0;
			min-width: inherit;
}	
	.intro .inner {
    padding: 50% 0 5%;
	}

}
@media screen and (max-width: 768px) {
	

	h1.midashi_title{
margin: 0 auto 10%;
		        line-height: 1.2;
    font-size: clamp(20px, 7.5vw, 50px);
}
	
  /*--------------------
LOADING
---------------------*/
	.logo {
    width: 50%;
	min-width: 250px;
    padding: 0;
	}
	
  /*--------------------
MENU
---------------------*/	
	header {
    top: 5vw;
    right: 5vw;
	}
	.menu_bg {
    width: 80px;
    height: 80px;
	}
	.gnav {
    background-size: 280%;
		    background-position: top;
	}
	nav.header_nav ul.gnav__menu li{
		padding: 0 0 6vw;
	}
	nav.header_nav ul li a {
    font-size: clamp(20px, 7vw, 40px);
	}
	
/*--------------------
TOP
---------------------*/
	
		.sns_icon {
    width: 50px;
    height: 50px;
}
	.date {
    width: 85%;
    margin: 0 auto 10%;
    max-width: 300px;
	}
	.mvtk_bnr{
		    width: 80%;
    margin: 0 auto 10%;
    max-width: 300px;
	}
	.sns_icon {
    margin: 0 auto 15%;
	}
	
/*--------------------
TRAILER
---------------------*/
	
.movie h1.midashi_title {
    margin: 0 auto 5%;
	font-size: clamp(20px, 8vw, 50px);
}
	.ch1_bnr {
    width: 100%;
    margin: 0 auto;
    min-width: inherit;
}
	.trailer_s {
    border: 3px solid #ffc84d;
	}
	.trailer_s.home {
    border: 3px solid #556e86;
}
	.movie .trailer_tab {
    margin: 10px auto 0;
		align-items: flex-start;
	}
    ul.trailer_tab li {
    width: calc(50% - 2.5px);
        margin: 0 5px 5px 0;
        font-size: clamp(12px, 0.9vw, 16px);
        padding: 0 5px;
        line-height: 1.3;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 45px;
    }
	.movie .trailer_tab li:nth-child(2n) {
    margin: 0 0 5px 0;
}

	
/*--------------------
Introduction
---------------------*/
	
	.intro {
    background-image: url(../img/intro_bg_sp.jpg);
	}

	.intro .inner {
    padding: 60% 0 15%;
    filter: drop-shadow(0 0 10px black);
}
	.intro_lead {
    margin: 0px auto 10%;
}
	ul.intro_imgs {
    display: flex;
    margin: 5% auto 0;
    flex-wrap: wrap;
	}
	ul.intro_imgs li{
    width: calc(50% - 5px);
	margin: 0 10px 10px 0;
	}
	ul.intro_imgs li:nth-child(2) {
        margin: 0 0 10px 0;
    }
	ul.intro_imgs li:nth-child(3) {
        margin: 0 10px 0 0;
    }
	ul.intro_imgs li:nth-child(4) {
        margin: 0;
    }
	
	
/*--------------------
Staff
---------------------*/
	.staff_inner {
    flex-direction: column;
	}
	.staff_img {
    width: 80%;
    margin: 0 auto 10%;
}
	.staff_info {
    width: 100%;
}
	.staff_name_wrap {
    margin: 0 auto 8%;
    flex-direction: column;
}
	.staff_name_jp {
    margin: 0 auto 10px;
}
	.staff_name_jp img {
    height: 6.5vw;
    max-width: inherit;
    max-height: 30px;
    min-height: 18px;
    object-fit: contain;
}
	
.staff_name_eng img {
    height: 5vw;
	}
	    ul.intro_imgs {
        margin: 10% auto 0;
	}
	
	
/*--------------------
About the MOVIE
---------------------*/
	
	li.atm_list_item {
    flex-direction: column;
    background-image: linear-gradient(0deg, #ffffff 80%, #ffffff4d);
    padding: 10% 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5%;
}
 .atm_img {
    width: 100%;
	 margin: 0 auto 7%;
}
	.atm_info {
    width: 100%;
}
	h1.midashi_title.ch1 {
    margin: 10% auto 5%;
	}
	.chapter1_lead {
    width: 90%;
    margin: 0 auto 10%;
}
	
  /*--------------------
FOOTER
---------------------*/
	
	.footer_title {
    width: 80%;
    min-width: inherit;
}
	
}
@media screen and (max-width: 500px) {

}