@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 Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  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: 60%;
	min-width: 600px;
  margin: 0 auto;
  padding: 5% 0;
}
a {
  display: block;
}
.lead{
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


/*--------------------
LOADING
---------------------*/
	
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}
.logo {
width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  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(POPUP)
--------------------*/
.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: calc(50% - 40px);
    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;
}

.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 0 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    box-sizing: border-box;
    letter-spacing: 0.5rem;
    text-align: center;
}

.trailer .trailer_tab li:last-child{
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	border: 1px solid #fff;
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
	box-sizing: border-box;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1, #youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1{
    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;
}


video{
	width: 100%;
}


/*--------------------
MENU
---------------------*/


header {
 /*opacity: 0;*/
  position: fixed;
  z-index: 299;
  translate: none;
}

nav.header_nav {
position: fixed;
    top: 5%;
    right: 5%;
    width: 50px;
    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;
    background-color: #fff;
    height: 50px;
}
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;
}
nav.header_nav ul li a:hover {
  opacity: 0.7;
  transition: 0.8s;
}
nav.header_nav ul li a img{
    height: 1vw;
    min-height: 16px;
    max-width: inherit;
	margin: 0 auto;
}

header{
height: 50px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
}
nav.header_nav{
z-index: 777;
    position: fixed;
    top: inherit;
    left: inherit;
    width: 100%;
}
  /*hamburger-menu*/
  .menu_bg {
width: 50px;
        height: 50px;
        position: fixed;
        top: 3vw;
    right: 5vw;
        z-index: 779;
	  background-color: #af1e24;
  }
  .menu {
         height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    z-index: 779;
    cursor: pointer;
    transform: translate(-50%, -50%);
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 3px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--top {
    top: 0;
  }
  .menu__line--center {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 10px;
    transform: rotate(45deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 7px;
    transform: rotate(-45deg);
  }
  /*gnav*/
  .gnav {
    background-color: #fff;
    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: inherit;
  }
  .gnav__menu__item {
    width: 100%;
    vertical-align: middle;
  }
  .gnav__menu__item:last-child {
    border: none;
  }
  .gnav__menu__item a {
    color: #fff;
    font-size: clamp(18px, 6vw, 22px);
    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 4vw;
  }
	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: 35px;
    }

nav.header_nav ul li a {
    text-align: center;
	font-size: clamp(16px, 5vw, 20px);
	}
	
  /*humberger-menuここまで*/
	
	.sns_wrap {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
	}

/*--------------------
TOP
---------------------*/

.top .inner{
	width: 100%;
	padding: 0;
}

/*--------------------
NEWS
---------------------*/

h1.midashi_title{
	    margin: 0 auto 5%;
}
h1.midashi_title img{
	    max-height: 40px;
    min-height: 20px;
    margin: 0 auto;
    object-fit: contain;
    height: 5vw;
}

.news{
background-color: #af1e24;
position: relative;
z-index: 1;
}
.news .inner{
	padding: 5% 0;
	position: relative;
	z-index: 3;
}
.news h1.midashi_title{
	color: #fff;
}
.news_wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.news h1.midashi_title{
    margin: 0 5% 0 0;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
	width: 100%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}
.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 120px;
    margin: 0 0 0 auto;
}
a.nor{
color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    transition: .7s;
    position: relative;
    display: block;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

ul.ulblogtitle{
width: 100%;
margin: 0 auto 1%;
}

ul.ulblogtitle li{
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0 0 10px 0;
    margin: 0 auto 2%;
    box-sizing: border-box;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
	color: #fff;
}
ul.ulblogtitle li a:hover .news_title, ul.ulblogtitle li a:hover .news_date{
	transition: .7s;
	color: #fff;
}
.arrow {
    position: absolute;
    display: inline-block;
    bottom: 20%;
    right: 0;
    width: 30px;
    transform: translate(0, -50%);
    height: 2px;
    margin: 0 0 0 0px;
    border-radius: 9999px;
    background-color: #fff;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

/*--------------------
MOVIE
---------------------*/

section.movie{
	position: relative;
	z-index: 1;
}
.movie .inner{
	position: relative;
	z-index: 3;
}
.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 100%;
    margin: 0 auto;
    display: flex;
        justify-content: flex-start;
    align-items: center;
  }
li.trailer_item {
    width: calc(95% / 2);
    margin: 0 5% 0 0;
}
li.trailer_item:last-child {
    margin: 0;
}
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
}
.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: 70px;
    height: 70px;
    background-image: url("../img/yt_logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    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;
}

.movie_midashi{
    color: #000;
    margin: 10px 0 0 0;
	    letter-spacing: 0.05rem;
		text-align: center;
	font-weight: bold;
	font-size: 16px;
		font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*--------------------
ABOUT THE MOVIE
---------------------*/
.atm{
	overflow: hidden;
}

ul.atm_img_list{
display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 10% auto;
}
.atm_lead_01{
	color: #000;
   font-size: clamp(18px, 1.5vw, 24px);
    letter-spacing: 0.05rem;
}
.top_lead{
	 color: #000;
	font-size: clamp(20px, 2vw, 30px);
	margin: 0 auto 1%;
}
.top_lead .red{
	color: #af1e24;
}
.atm_lead_02{
	    color: #af1e24;
    font-size: clamp(20px, 2vw, 30px);
    letter-spacing: 0.05rem;
	margin: 0 auto 3%;
}
.atm_lead_03{
	    color: #d07033;
   font-size: clamp(16px, 1.3vw, 22px);
    letter-spacing: 0.05rem;
	margin: 0 auto 3%;
}
.text{
	text-align: justify;
	text-align-last: left;
}




/*--------------------
THEATER
---------------------*/


section.theater{
	background-color: #f0f0f0;
	overflow-y: auto;
	z-index: 2;
    position: relative;
		font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.theater_wrap{
	margin: 0 auto;
    width: 70%;
}
.theater_inner{
    margin: 0 auto;
}


.area{
	text-align: left;
	font-weight: bold;
	margin: 0 auto 20px;
	font-size: 1.1rem;
}

table{
	width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: .9rem;
	border-collapse: separate;
	border-spacing: 0;
}
tbody{
	display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
tr {
	box-sizing: border-box;
    /*border: 1px solid #444b48;*/
}
tr.tr_last td{
	border-bottom: 1px solid #444b48;
}

th {
    padding: 10px 0;
    padding-right: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #444b48;
	border: 1px solid #444b48;
	/*border-top: 1px solid transparent;*/
}
th p{
	width: 70%;
	margin: 0 auto;
	
	text-align: left;
	color: #af1e24;
}
table .tb1 {
    width: 15%;
	/*border-left: 1px solid transparent;*/
}
table .tb2 {
    width: 55%;
}
table .tb3 {
    width: 30%;
	border-right: 1px solid #444b48;
}
table .tb4 {
    width: 15%;
	border-right: 1px solid #444b48;
	/*border-right: none;*/
	/*border-right: 1px solid transparent;*/
}
td {
        padding: 15px 0;
    padding-right: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #444b48;
    vertical-align: middle;
    border: 1px solid #444b48;
	border-bottom: none;
    word-wrap: break-word;
    text-align: left;
	    height: auto;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
}
td p{
	/*text-decoration: underline;*/
	width: 70%;
	margin: 0 auto;
    display: block;

}
.pref {
   /* height: 52px;*/
	padding-top: 10px;
	
}
.pref.row2{
	border-bottom: 1px solid #000;
}
.date{
	border-right: 1px solid #000;
}
.multi{
	vertical-align: top;
}
.theater_name{
		line-height: 1.7;
	}
	th, td{
		padding-right: 0;
		line-height: 1.7;
		    border-bottom: none;
    border-right: none;
	}
.theater_name a{
    color: #444b48;
	transition: .7s;
	border-bottom: 1px solid #b6463c;
	    display: inline-block;
}
.theater_name a:hover{
	color: #b6463c;
	transition: .7s;
}

.theater_cs{
	text-align: center;
	font-weight: 600;
}
.theater_inner{
	margin-bottom: 60px;
}
.theater_inner:last-child{
	margin-bottom: 0;
}
.tel-link-none {
pointer-events: none;
	color: #000;
}


.theater_obj_pc01{
	width: 8%;
    position: absolute;
    top: 4%;
    left: 8%;
}
.theater_obj_pc02{
	    width: 10%;
    position: absolute;
    bottom: 3%;
    left: 5%;
}
.theater_obj_pc03{
	width: 15%;
    position: absolute;
        top: 4%;
    right: 10%;
}
.theater_obj_pc04{
	    width: 3%;
    position: absolute;
    top: 42%;
    right: 9%;
}
.theater_obj_pc05{
	width: 13%;
    position: absolute;
    bottom: 3%;
    right: 6%;
}
/*--------------------
FOOTER
---------------------*/
@media screen and (max-width: 1200px) {}
@media screen and (max-width: 960px) {
  /*--------------------
LOADING
---------------------*/
  /*--------------------
TRAILER(POPUP)
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
MENU
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
RAILER
---------------------*/
  /*--------------------
INTRODUCTION
---------------------*/
  /*--------------------
STORY
---------------------*/
  /*--------------------
CAST
---------------------*/
  /*--------------------
STAFF
---------------------*/
  /*--------------------
FOOTER
---------------------*/
}
@media screen and (max-width: 768px) {
	
	.wrapper{
		    margin: 50px auto 0;
	}
	.inner {
    width: 80%;
		min-width: inherit;
    margin: 0 auto;
    padding: 10% 0;
}
 .logo {
width: 40%;
	}
	
  /*--------------------
MENU
---------------------*/
	.menu_bg {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0%;
    right: 0%;
	}
	.menu {
    top: 50%;
    right: 5%;
		left: inherit;
    transform: translate(0, -50%);
}
	nav.header_nav ul.gnav__menu li{
		height: auto;
		line-height: inherit;
		    padding: 0 0 12%;
	}
	nav.header_nav ul.gnav__menu li:nth-child(4) a img {
        height: 28vw;
        max-height: 100px;
    }
	    nav.header_nav ul.gnav__menu li img {
        max-height: 24px;
    }
	
	
/*--------------------
NEWS
---------------------*/
	
    h1.midashi_title {
        margin: 0 auto 7%;
    }
	
	h1.midashi_title img {
    min-height: 30px;
	}

	
	.news .inner {
        width: 80%;
        padding: 10% 0;
    }
.news_wrap {
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
	}
.news h1.midashi_title{
          margin: 0px 0px 10%;
        width: 100%;
}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
    margin: 0 0 5px;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
	line-height: inherit;
}
	.mvtk_wrap {
    margin: 0 auto 10%;
}
	ul.ulblogtitle {
    width: 100%;
    margin: 0 auto 5%;
}
	
 /*--------------------
MOVIE
---------------------*/
	
	ul.trailer_list {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
	}
	li.trailer_item {
    width: 100%;
    margin: 0 auto 7%;
}
	
  /*--------------------
ABOUT THE MOVIE
---------------------*/
	
		.atm h1.midashi_title img {
           max-height: 200px;
        height: 32vw;
        min-height: 120px;
	}
	.top_lead {
    color: #000;
    font-size: clamp(20px, 6.5vw, 30px);
    margin: 0 auto 5%;
}
	ul.atm_img_list{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		
	}
	li.atm_img_item{
		width: 50%;
	}
	.atm_lead_02 {
    color: #af1e24;
    font-size: clamp(18px, 5.8vw, 30px);
    letter-spacing: 0.05rem;
    margin: 0 auto 10%;
}
	.mdl {
        font-size: clamp(18px, 5vw, 30px);
    }
	.strong{
		font-size: clamp(18px, 8vw, 30px);
	}
	    .atm_lead_03 {
        font-size: clamp(16px, 4.5vw, 22px);
        margin: 0px auto 7%;
    }


	ul.atm_img_list {
        margin: 15% auto;
    }
	

  /*--------------------
THEATER
---------------------*/
	
	.theater_name{
		line-height: 1.7;
	}
	th, td{
		padding-right: 0;
		line-height: 1.7;
	}
		
	
	th{
		line-height: 1.3;
	}
	table{
		 margin: 0 auto 8%;

	}
	
	.area {
    margin: 0 auto 10px;
	}
	table .tb1 {
    width: 25%;
}
table .tb2 {
    width: 45%;
}
table .tb3 {
    width: 30%;
	
}
table .tb4 {
    width: 15%;
	
	line-height: 1.1;
}
	table .tb4 p{
		text-align: center;
	}
	
	th p, td p{
	width: auto;
		margin: 0 7px;
	}
	td.tell {
		text-align: center;
	}
	
  /*--------------------
FOOTER
---------------------*/
}
@media screen and (max-width: 500px) {
	
	.inner {
        padding: 20% 0;
    }
	.news .inner {
        padding: 15% 0;
    }
	
    h1.midashi_title {
        margin: 0 auto 15%;
    }
		ul.atm_img_list {
    margin: 20% auto;
}
	
	
}