@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-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;
	margin: 0 50px 0 0;
}
section{
	    position: relative;
}
.inner{
    width: 60%;
	    max-width: 1080px;
	    min-width: 900px;
    margin: 0 auto;
    padding: 5% 0;
}
a{
	display: block;
}


h1.midashi_title{
    color: #908963;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 15%;
}
h1.midashi_title img{
	height: 1.6vw;
    min-height: 20px;
    max-height: 35px;
}
.eng{
font-size: clamp(20px, 8vw, 30px);
    font-weight: bold;
    letter-spacing: 0.05rem;
}

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

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  	background: #AF3C15;
background: rgba(175, 60, 21, 1);
}


.logo {
width: 25%;
  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);
  }
}

/*-------------------
MENU
--------------------*/
header {
 /*opacity: 0;*/
  position: fixed;
  z-index: 299;
  translate: none;
}

nav.header_nav {
position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    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: #000;
    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;
  color: #fff;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(14px, 2vw, 18px);
}
nav.header_nav ul li a:hover {
  color: #E51A1D;
  transition: 0.8s;
}

nav.header_nav ul li a img{
    height: 1.4vw;
    min-height: 16px;
    max-width: inherit;
   /* filter: drop-shadow(0 0 5px #000);*/
}
.sns_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% 0 0;
}
.os_sns_wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translate(-50%, 0);
}
.os_text{
    color: #fff;
    writing-mode: vertical-rl;
    width: auto;
    margin: 0 auto 20px;
    letter-spacing: 0.1rem;
    font-size: clamp(16px, 0.8vw, 20px);
}
.sns_icon{
	        display: flex;
    justify-content: center;
	margin: 0 auto 20px;
}
.sns_wrap .sns_icon{
	margin: 0  20px 0 0;
}
.icon_wrap{
	display: flex;
	justify-content: center;
	align-content: center;
}
.sns_icon.insta{
	margin: 0;
}
.sns_icon a {
transition: .7s;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 30px;
    height: 30px;
}
.sns_icon a:hover {
	transition: .7s;
	opacity: .7;
}
.sns_icon a img{
	    width: 100%;
}
nav.header_nav ul.sns_wrap li a img {
     widows: 100%;
}
.sns_icon a:hover {
  transition: .7s;
}
.twitter {
  margin: 0 10px 0 0;
}
nav.header_nav ul.sns_wrap {
    height: auto;
    line-height: inherit;
	       width: 80px;
}
nav.header_nav ul.sns_wrap li {
    margin: 0 10% 0 0;
    height: auto;
    line-height: inherit;
}
nav.header_nav ul.sns_wrap li:last-child {
    margin: 0 auto;
}
nav.header_nav ul.sns_wrap li a{
display: flex;
}


/*--------------------
MENU
---------------------*/

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: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 779;
    background-color: #00030c;
  }
  .menu {
    height: 15px;
    position: absolute;
    top: 20px;
    right: 50%;
    width: 50%;
    z-index: 779;
    cursor: pointer;
    transform: translate(50%, 0);
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 2px;
    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: 8px;
    transform: rotate(40deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 5px;
    transform: rotate(-40deg);
  }
  /*gnav*/
  .gnav {
    background-color: #000;
    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%;
    height: 6vh;
    vertical-align: middle;
    line-height: 6vh;
    margin: 0 auto;
  }
  .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: auto;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
	height: auto;
  }
  nav.header_nav ul.gnav__menu li {
    text-align: center;
	padding: 0 0 7%;
  }
	nav.header_nav ul.gnav__menu li:last-child {
	padding: 0 auto;
  }
  nav.header_nav ul.gnav__menu li:first-child {
    border-left: none;
  }
     nav.header_nav ul.gnav__menu li img {
        height: 6vw;
        max-height: 30px;
    }

nav.header_nav ul li a {
    text-align: left;
	font-size: clamp(16px, 5vw, 20px);
	}
	
  /*humberger-menuここまで*/
	
li.sns_item:first-child img{
	   height: 1.6vw;
	        max-height: 30px;
	max-width: inherit;
}
ul.sns_list {
    display: flex;
	align-items: baseline;
	    line-height: 1;
}
li.sns_item:first-child{
	margin: 0 20px 0 0;
}
li.sns_item a{
    display: flex;
    justify-content: center;
    align-items: center;
	transition: .7s;
	width: 50px;
    height: 50px;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 60%;
	margin: 0 auto;
}


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

section.top{
	background: #AF3C15;
background: linear-gradient(135deg,rgba(175, 60, 21, 1) 5%, rgba(179, 2, 28, 1) 32%, rgba(194, 79, 29, 1) 68%, rgba(247, 187, 119, 1) 100%);
	z-index: -2;
}

section.top::before{
content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: top;
    background: url(../img/noise.svg);
    opacity: 0.2;
    background-size: 150px;
    background-repeat: repeat;
}

.top .inner{
    width: 100%;
	max-width: inherit;
    margin: 0 auto;
    padding: 0;
	display: flex;
	z-index: 1;	
}
.top_left{
	width: 50%;
}
.top_right{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10% 0;
    box-sizing: border-box;
	opacity: 0;
}
.top_right_text{
	width: 70%;
}

.loop {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
	}
.loop__box {
    display: flex;
    width: 100%;
	height: auto;
}
.loop__box img {
   /* max-width: inherit;
	height: 100%;*/
}

ul.loop li {
    height: 100%;
    margin: 0 auto;
	position: absolute;
	width: 100%;
	opacity: 0;
	animation: change-img-anim 16s infinite;
	display: flex;
        justify-content: flex-start;
	}

ul.loop li:nth-of-type(1) {
  animation: change-img-anim-first 16s infinite;
  animation-fill-mode:backwards;
	animation-delay: 0s;
}
ul.loop li:nth-of-type(2) {
	animation-delay: 8s;
}
@keyframes change-img-anim-first {
	0%{ opacity: 0;}
  30%{ opacity: 1;}
  36%{ opacity: 1;}
  80%{ opacity: 0;}
  100%{ opacity: 0;}
}
@keyframes change-img-anim {
  0%{ opacity: 0;}
  30%{ opacity: 1;}
  36%{ opacity: 1;}
  80%{ opacity: 0;}
  100%{ opacity: 0;}
}

.theater_bnr{
	    width: 400px;
    margin: 0 auto;
}
.theater_bnr a{
	 transition: .7s;
}
.theater_bnr a:hover{
	 transition: .7s;
	opacity: .7;
}

/*--------------------
TOP_BTM
---------------------*/
	
	.top_btm{
		background-color: #fff;
	}
	.top_btm .inner{
		padding: 2% 0;
	}


/*--------------------
NEWS
---------------------*/

.news{
	background: #AF3C15;
background: linear-gradient(-45deg,rgba(175, 60, 21, 1) 5%, rgba(179, 2, 28, 1) 32%, rgba(194, 79, 29, 1) 68%, rgba(247, 187, 119, 1) 100%);
position: relative;
z-index: 1;
}
.news::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.1;
}
.news .inner{
	padding: 3% 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 auto;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     /*width: 90%;*/
	width: 100%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}



.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 150px;
    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);
}

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: 25%;
    right: 10%;
    width: 30px;
    height: 2px;
    margin: 0 0 0 10px;
    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%;
}

/*--------------------
INTRO
---------------------*/

section.intro{
	background-image: url("../img/intro_bg.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	padding: 0 0 50%;
}
section.intro .inner {
    padding: 10% 0 0;
}

h1.midashi_title{
    text-align: left;
    margin: 0 auto 5%;
	color: #c9bf9a;
}

.text{
	color: #fff;
	text-align: justify;
	text-align-last: left;
}
.intro_lead{
    width: 80%;
    min-width: 300px;
    margin: 0 auto 2% 0;
}



/*--------------------
STORY
---------------------*/

section.intro .story .inner{
padding: 5% 0 0;
}

.story_lead{
	width: 75%;
    margin: 0 auto 3% 0;
}



/*--------------------
CAST
---------------------*/

.cast h1.midashi_title, .staff h1.midashi_title{
	color: #000;
}
ul.cast_list li.cast_list_item:first-child{
	margin: 0 auto 5%;
}
.cast_name_wrap{
text-align: left;
    margin: 0 auto 5%;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    border-bottom: 1px solid #000;
    padding: 0 0 2%;
	position: relative;
	box-sizing: border-box;
}
.cast_name_wrap::before{
position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 20px;
    background-color: #000;
    left: 0;
    bottom: 0;
    transform: translate(0, 55%);
}
.cast_name_wrap::after{
position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 20px;
    background-color: #000;
    right: 0;
    bottom: 0;
    transform: translate(0, 50%);
}
.character_name{
	font-weight: bold;
	font-size: clamp(16px, 1vw, 20px);
	    margin: 0 10px 2px 0;
}
.cast_name{
	font-weight: bold;
	font-size: clamp(18px, 1.5vw, 24px);
}

.cast_info_wrap{
	display:flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.cast_img{
	width: 30%;
	margin: 0 5% 0 0;
}
.text_wrap{
	width: 65%;
}
h2.komidashi{
	margin: 0 auto 10px;
	text-align: left;
}
h2.komidashi.cmt {
    margin: 20px auto 10px;
}
.cast .text, .staff .text{
	color: #000;
}

/*--------------------
STAFF
---------------------*/

.staff .text_wrap {
    width: 100%;
}


/*--------------------
FOOTER
---------------------*/

footer{
	background: #AF3C15;
background: linear-gradient(-45deg,rgba(175, 60, 21, 1) 5%, rgba(179, 2, 28, 1) 32%, rgba(194, 79, 29, 1) 68%, rgba(247, 187, 119, 1) 100%);
	    position: relative;
	z-index: 1;
}

footer::before{
content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: top;
    background: url(../img/noise.svg);
    opacity: 0.2;
    background-size: 150px;
    background-repeat: repeat;
}

footer .inner {
    padding: 5% 0;
	z-index: 1;
}
.footer_logo{
	    width: 45%;
    margin: 0 auto;
}

/*--------------------
GB SNS
---------------------*/
.gb_sns_area{
	border-top: 1px solid #fff;
}

.gb_sns_area .inner{
align-items: center;
    padding: 2% 0;
    display: flex;
   justify-content: flex-end;
    width: 40%;
}
.gb_logo{
        width: 55%;
		    text-align: left;
}
.gb_logo img{
        width: 40%;
}
.officialsns {
    color: #fff;
    width: 20%;
    display: flex;
    align-items: center;
    margin: 0 5% 0 0;
}
ul.gb_sns_list{
display: flex;
width: 20%;
}
ul.gb_sns_list li{
	margin: 0 10% 0 0;
}
ul.gb_sns_list li:last-child{
	margin: 0;
}
ul.gb_sns_list li a img{
	width: 90%;
}


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

}

@media screen and (max-width: 960px) {
	.inner {
		    width: 80%;
		    max-width: inherit;
	           min-width: 750px;
}


}

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

	.wrapper {
    margin: 0 auto 0;
	}

.inner {
	min-width: inherit;
    margin: 0 auto;
    padding: 15% 0;
}

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

.logo {
width: 70%;
	top: 45%;
}

/*-------------------
MENU
--------------------*/
	
	header{
		    background-color: #000;
	}
	.menu_bg {
    width: 50px;
    height: 50px;
	}
	li.menu_item img {
    height: 5vw;
	}
	li.sns_item:first-child img {
    height: 5vw;
	}
ul.sns_list {
    top: 3%;
    right: 6%;
}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}

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

	section.top{
	padding: 0;
		z-index: 1;
		padding: 50px 0 0;
	}
	.top .inner {
    width: 100%;
		flex-direction: column;
        align-items: center;
        justify-content: center;
	}
	.top_left {
    width: 100%;
}
    .top_right {
        width: 80%;
    }

h1.midashi_title {
    margin: 0 auto 15%;
}
    h1.midashi_title img {
        height: 6.5vw;
        min-height: 20px;
        max-height: 40px;
    }

	.theater_bnr{
		    width: 100%;
		max-width: 500px;
    margin: 10% auto 0;
	}
	.theater_bnr a{
	display: block;
		transition: .7s;
	}
		.theater_bnr a:hover{
	opacity: .7;
		transition: .7s;
	}
	
	
/*--------------------
TOP_BTM
---------------------*/
	
.top_btm  .inner {
        padding: 10% 0;
	}
	.os_sns_wrap{
		margin: 10% auto 0;
		    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: inherit;
    bottom: inherit;
    left: inherit;
    transform: inherit;
		
	}
	.os_sns_wrap .sns_icon{
		display: flex;
    justify-content: center;
		        margin: 0 20px 0 0;
	}
.os_sns_wrap .sns_icon.insta{
		        margin: 0;
	}
	.os_text{
		color: #fff;
		margin: 0 auto 10px;
		text-align: center;
		 letter-spacing: 0.05rem;
		writing-mode: inherit;
	}
	
/*--------------------
NEWS
---------------------*/
	
.news{
padding: 0;
}
	.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%;
        text-align: left;
        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;
}
	
	

/*--------------------
INTRO
---------------------*/

	section.intro {
    padding: 0 0 200%;
}
	section.intro .inner{
		padding: 15% 0 0;
	}
	.intro_lead {
    width: 90%;
	max-width: 400px;
    min-width: inherit;
    margin: 0 auto 10% 0;
}
	
/*--------------------
STORY
---------------------*/		
	section.intro .story .inner {
    padding: 15% 0 0;
}
	
.story_lead {
    width: 90%;
	max-width: 400px;
    margin: 0 auto 10% 0;
}
	
/*--------------------
CAST
---------------------*/	


	.cast_icon {
    flex-direction: column;
	}
	    ul.cast_list {
        width: 100%;
			margin: 0 auto;
			justify-content: center;
	}
	li.cast_list_item {
		width: 100%;
    margin: 0 0 20% 0;
}
	ul.cast_list li.cast_list_item:first-child {
    margin: 0 0 20% 0;
    width: 100%;
}
	    li.cast_list_item:last-child {
        width: 100%;
        margin: 0 auto;
    }

	a.md-btn {
    width: 80%;
    margin: 0 auto 7%;
}
	.cast_wrap {
            width: 90%;
        margin: 0 auto;
}
	.md-scroll {
    flex-direction: column;
    justify-content: flex-start;
	}
	
.md-inner {
    width: 90%;
    height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0px auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
	}
	.cast_img_wrap {
    width: 60%;
    margin: 0 auto 5%;
	}
	.cast_name, .staff_name {
    font-size: clamp(18px, 5.8vw, 21px);
		margin: 0 0 0 0.25rem;
	}
	.cast_name span {
    font-size: clamp(14px, 3.5vw, 16px);
	}
	.cast_info_wrap {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
	}
	.cast_name_wrap {
    margin: 0 auto 10%;
    padding: 0 0 5%;
	}
	.cast_img {
    width: 80%;
		        max-width: 400px;
    margin: 0 auto 10%;
}
	.text_wrap {
    width: 100%;
}
	
/*--------------------
STAFF
---------------------*/
	
	 .staff .inner {
        padding: 0 0 15%;
	}
	
	h2.profile_midashi {
    margin: 10% auto 3%;
	}
	.staff_name_wrap {
    margin: 0 auto;
}
	ul.staff_list li.staff_list_item:last-child {
    margin: 20% auto 0;
}
	.song_name {
    font-size: clamp(17px, 2vw, 20px);
    text-align: center;
    margin: 5% auto 0;
}
	
	
/*--------------------
FOOTER
---------------------*/	

	
	    footer .inner {
        padding: 10% 0 10%;
    }
    .footer_logo {
        width: 95%;
		max-width: 400px;
        margin: 0 auto;
    }
	.billing{
		margin: 0 auto;
		        max-width: 500px;
	}

	
/*--------------------
GB SNS
---------------------*/
	.gb_sns_area .inner {
    flex-direction: column;
    align-items: center;
    padding: 10% 0;
    display: flex;
    justify-content: flex-end;
    width: 80%;
}
.gb_logo {
            width: 75%;
        max-width: 300px;
    text-align: center;
    margin: 0 auto 5%;
}
.gb_logo img {
    width: 60%;
}
.officialsns {
    color: #fff;
    width: 40%;
	max-width: 200px;
    display: flex;
    align-items: center;
    margin: 0 auto 7%;
	}
ul.gb_sns_list {
    width: 40%;
	        max-width: 200px;
	}

	
}

@media screen and (max-width: 500px) {
	
li.sns_item a {
    width: 40px;
    height: 40px;
	}
	
footer .inner {
        padding: 15% 0 15%;
    }

	
	
	
}




	
	
	