@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic:wght@500;700;900&display=swap');

/* ==========================================================================
   RESET
   ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

img,
svg {
	width: 100%;
	height: auto;
}

a,
a:hover {
	color: inherit;
	text-decoration: none;
}

b {
	font-weight: bold;
}

*:focus {
	outline: none;
}

/* ==========================================================================
   common
   ========================================================================== */
html {
	scroll-behavior: smooth;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

#page-wrapper {
	width: 100%;
	overflow: hidden;
	background: #fbf4ef;
	color: #222233;
}

#page-wrapper .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#page-wrapper img {
	max-width: 100%;
	height: auto;
}

.flex-box {
	display: flex;
	flex-flow: row nowrap;
}

#page-wrapper .disp-pc {
	display: block;
}

#page-wrapper .disp-sp {
	display: none;
}

#page-wrapper .sec-title {
	width: 220px;
	flex: 0 0 220px;
}

.sec-title-inner{
	display:inline-block;
	margin-left:auto;
	margin-top: -10px;
}

#page-wrapper .sec-title h2 {
	font-size: 84px;
	font-weight: 700;
	line-height: 1;
}

#page-wrapper .sec-title p {
	margin-top: 15px;
	font-size: 16px;
	text-align: right;
}

@media only screen and (max-width: 1024px) {
	#page-wrapper .disp-pc {
		display: none;
	}

	#page-wrapper .disp-sp {
		display: block;
	}

	#page-wrapper .sec-inner {
		width: 80%;
	}

	#page-wrapper .sec-title {
		width: 100%;
		flex-basis: auto;
	}

	#page-wrapper .sec-title h2 {
		font-size: 6vw;
	}
	
	#page-wrapper .sec-title p {
		margin-top: 10px;
		font-size: 12px;
		text-align: left;
	}
}

@media only screen and (max-width: 767px) {
/* 	#page-wrapper .disp-pc {
		display: none;
	}

	#page-wrapper .disp-sp {
		display: block;
	}

	#page-wrapper .sec-inner {
		width: 80%;
	}

	#page-wrapper .sec-title {
		width: 100%;
		flex-basis: auto;
	}
 */
	#page-wrapper .sec-title h2 {
		font-size: 11vw;
	}
	
/* 	#page-wrapper .sec-title p {
		margin-top: 10px;
		font-size: 12px;
		text-align: left;
	} */
}

#page-wrapper .text{
	font-size: 16px;
	line-height: 1.75;
}

#page-wrapper .s-text{
	font-size: 17px;
	line-height: 1.4;
}

#page-wrapper .indent{
	padding-left:1rem;
	text-indent:-1rem;
}

@media screen and (max-width: 1024px) {
	#page-wrapper .text{
	  font-size: 14px;
	  line-height: 1.7;
	}

	#page-wrapper .s-text{
	  font-size: 12px;
	}
}

@media screen and (max-width: 767px) {
	#page-wrapper .text{
	  font-size: 14px;
	  line-height: 1.7;
	}

	#page-wrapper .s-text{
	  font-size: 12px;
	}
}

/* - Anime
----------------------------------------------*/
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn {
  opacity: 0;
  transition: all 600ms cubic-bezier(0.33, 1, 0.68, 1);
}

.fadeIn.is-inview {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   header / navigation
   ========================================================================== */
#gHeader {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 92px;
	/*! height: 100vh; */
	background: #fbf4ef;
}

#gHeader .header-inner {
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 68px;
}

.site-nav {
	display: block;
	width: 100%;
	height: 100%;
}

.site-nav-list {
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	gap: 24px 28px;
}

.site-nav-list li {
	width: 100%;
}

.site-nav-list a {
	display: block;
	color: #222333;
	text-align: center;
}

.site-nav-list span {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.site-nav-list em {
	display: block;
	margin-top: 3px;
	font-size: 10px;
	font-style: normal;
	line-height: 1.3;
}

.site-nav-list img {
	width: 26px;
	height: auto;
}

.site-nav-list a.is-disabled{
	color:#b2b2b2;
	pointer-events:none;
	cursor:default;
}

.site-nav-list a.is-disabled img{
	opacity:.5;
}

.nav-sns-first{
	margin-top:165px;
}

.nav-sns + .nav-sns{
	margin-top: 18px;
}

.site-nav-title{
	display:none;
}

/*---------- drawerSwitch ----------*/
.drawerSwitch {
	display: none;
	width: 45px;
	height: 45px;
	border-radius:50%;
	background: #ffd384;
	position: fixed;
	top: 15px;
	right: 5px;
	z-index: 200;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	padding: 0;
}

.drawerSwitch_text {
	display: none;
}

.drawerSwitch_border {
	display: block;
	width: 18px;
	height: 15px;
	position: relative;
}

.drawerSwitch_border span {
	display: block;
	width: 18px;
	height: 2px;
	background: #222333;
	position: absolute;
	left: 0;
	transition: all 300ms;
}

.drawerSwitch_border span:nth-child(1) {
	top: 5px;
}

.drawerSwitch_border span:nth-child(2) {
	top: 10px;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span {
	background: #fff;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(1) {
	transform: rotate(45deg);
	top: 7px;
}

.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(2) {
	transform: rotate(-45deg);
	top: 7px;
}

@media only screen and (max-width: 1024px) {
	#gHeader {
		width: 100%;
		height: 64px;
		background: transparent;
	}

	.site-nav-title{
		display:block;
		margin:70px 0 50px 20px;
		color:#fbf4ef;
		font-size:10vw;
		font-weight:700;
	}

	.site-nav {
		width: 100%;
		height: 100%;
		background: #222333;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 150;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-100%);
		transition: all 500ms;
	}

	.site-nav[aria-expanded="true"] {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-nav-list {
		min-height: 100%;
		padding: 0 20px;
		gap: 45px;
	}
	
	.site-nav-list a {
		color: #faf5f6;
		text-align: left;
		border-bottom: 1px solid #faf5f6;
		padding: 0 10px 5px 5px;
		position: relative;
	}
	
	.site-nav-list a:after{
		content: "";
		position: absolute;
		background: url("../img/arrow.svg") no-repeat 0 0;
		width: 18px;
		height: 20px;
		right: 5px;
		top: 10px; 
	}
	
	.site-nav-list a.is-disabled{
		color:#63626e;
		border-bottom: 1px solid #63626e;
  }
	
	.site-nav-list a.is-disabled:after{
		background: url("../img/arrow2.svg") no-repeat 0 0;
	}

	.site-nav-list span {
		font-size: 25px;
		display: inline-block;
		width: 28%;
	}

	.site-nav-list em {
		margin-top: 6px;
		font-size: 14px;
		display: inline;
	}
	
	.site-nav-list .nav-list ul{
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		width: 50%;
		margin: 20px auto 0 auto;
	}
	
  .site-nav-list .nav-list ul li a:after,
  .site-nav-list li.nav-list a:after{
		background: none;
	}

	.nav-sns-first{
		margin-top:0;
	}

	.nav-sns + .nav-sns{
		margin-top: 0;
	}
	
	.site-nav-list .nav-sns a{
		border: none;
		text-align: center;
	}
	
	.site-nav-list img {
		width: 35px;
		height: auto;
	}
	
	.drawerSwitch {
		display: flex;
		flex-direction: column;
		gap: 7px;
	}

	.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span {
		background: #222333;
	}
}

#page-wrapper {
	opacity: 0;
	visibility: hidden;
}

body.is-loaded #page-wrapper {
	opacity: 1;
	visibility: visible;
	transition: opacity .8s ease;
}


/* ==========================================================================
   opening
   ========================================================================== */
#opening {
	position: fixed;
	inset: 0;
	background: url("../img/opening-bg.jpg") repeat;
	z-index: 9999;
}

.opening-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 405px;
	opacity: 0;
	transform: translate(-50%, -50%);
}

.opening-logo img{
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
}

.opening-logo .opening-title{
	color: #faf5f6;
	text-align: center;
	font-size: 12px;
	margin: 10px;
	letter-spacing: 4px;
}

.opening-logo.is-show {
	animation: logoAnime 1s ease forwards;
}

@keyframes logoAnime {
	0% {
		opacity: 0;
	}

	60% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

.opening-logo.is-hide {
	animation: logoHide .5s ease forwards;
}

@keyframes logoHide {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.loading-count {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #faf5f6;
	font-size: 25px;
	line-height: 1.5;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.modaal-wrapper .modaal-container {
	background: transparent;
	box-shadow: none;
}

.modaal-wrapper .modaal-content-container {
	padding: 0;
}

.modaal-wrapper .modaal-close {
	background: transparent;
}

.modaal-wrapper .modaal-close {
	width: 56px;
	height: 56px;
	border: 1px solid rgba(255,255,255,1);
	border-radius: 50%;
}

.modaal-close:after,
.modaal-close:before {
  top:8px;
  left:26px;
  width:3px;
  height:38px;
}

.modaal-close:focus:after,
.modaal-close:focus:before{
  background: #fff;
}

.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff;
	opacity: .8;
}

#topContent {
	opacity: 0;
	visibility: hidden;
}

body.is-loaded #topContent {
	opacity: 1;
	visibility: visible;
	transition: opacity .8s ease;
}

.youtube-wrap {
	position: relative;
	width: 80vw;
	max-width: 960px;
	aspect-ratio: 16 / 9;
}

.youtube-wrap iframe {
	width: 100%;
	height: 100%;
}

.youtube-wrap .opening-title{
	color: #faf5f6;
	text-align: center;
	font-size: 28px;
	margin-top: 30px;
	letter-spacing: 16px;
}

@media only screen and (max-width: 1024px) {
	#opening {
		background: url("../img/opening-bg.jpg") repeat;
		background-size: cover;
	}
	
	.opening-logo img {
		width: 80%;
		margin: 0 auto;
	}
	
	.opening-logo .opening-title{
		font-size: 14px;
	}
	
	.loading-count {
		font-size: 20px;
	}

	.youtube-wrap {
		width: 88vw;
	}
	
	.youtube-wrap .opening-title{
		font-size: 20px;
	}
}

/* ====================
   mv
   ==================== */
#page-wrapper .mv {
	padding-right: 92px;
	/* background: #222333; */
	position: relative;
}

#page-wrapper .mv img {
	display: block;
	width: 100%;
	height: auto;
}

#page-wrapper .mv-release{
	position:absolute;
	right:145px;
	bottom:22px;
	color:#ffd384;
	text-align:right;
}

/* #page-wrapper .mv-release-date{
	font-size:30px;
	font-weight:700;
	line-height:1;
} */

#page-wrapper .mv-release-place{
	font-size:41px;
	font-weight:700;
	line-height:1.1;
}

@media only screen and (max-width:1024px){
	#page-wrapper .mv {
		padding-right: 45px;
	}
	#page-wrapper .mv-release{
		right:100px;
		bottom:40px;
	}

	#page-wrapper .mv-release-date{
		font-size:3rem;
	}

	#page-wrapper .mv-release-place{
		font-size:3rem;
	}
}

@media only screen and (max-width:767px){
		#page-wrapper .mv {
		padding-right: 0;
	}
	#page-wrapper .mv-release{
		right:35px;
		bottom:25px;
		/*! left: 0; */
		/*! margin: 0 auto; */
		/*! text-align: center; */
	}

/* 	#page-wrapper .mv-release-date{
		font-size:5vw;
	} */

	#page-wrapper .mv-release-place{
		font-size:6vw;
	}
}

/* ====================
   .sec-news
   ==================== */
#page-wrapper .sec-news {
	padding: 140px 0 220px 0;
	background: #fbf4ef;
}

#page-wrapper .sec-news .sec-inner {
	max-width: 1060px;
	margin: 0 auto;
}

#page-wrapper .sec-news .news-body {
	flex: 1;
	padding-left: 143px;
}

#page-wrapper .sec-news .news-item {
	align-items: flex-start;
	gap: 43px;
}

#page-wrapper .sec-news .news-item + .news-item {
	margin-top: 33px;
}

#page-wrapper .sec-news .news-date {
	width: 110px;
	flex: 0 0 110px;
	font-size: 12px;
	line-height: 1.6;
	border: 1px solid #222333;
	border-radius: 20px;
	text-align: center;
	margin-top: 10px;
}

#page-wrapper .sec-news .news-content {
	flex: 1;
}

#page-wrapper .sec-news .news-content dl{
	margin-bottom: 30px;
}

#page-wrapper .sec-news .news-content dt {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.7;
}

#page-wrapper .sec-news .news-content dd {
	margin-top: 3px;
	font-size: 25px;
	font-weight: 900;
	line-height: 1.8;
}

#page-wrapper .sec-news .news-content-text{
	gap: 0 50px;
}

#page-wrapper .news-sns {
	background: #f3c97b;
	border-radius: 999px;
	margin-top: 37px;
	align-items: center;
	width: 340px;
	padding: 10px 0 12px 40px;
	font-weight: 700;
	letter-spacing: 1.5px;
}

#page-wrapper .news-sns-list {
	margin: 2px 0 0 39px;
	align-items:center;
}

#page-wrapper .news-sns-list li + li {
	margin-left: 15px;
	padding-left: 11px;
	border-left:  1px solid #000;
}

#page-wrapper .news-sns-list img {
	width: 24px;
	height: auto;
	transition: opacity .3s;
}

#page-wrapper .news-sns-list li:first-of-type img{
	width: 28px;
}

#page-wrapper .news-sns-list a:hover img {
	opacity: .7;
}

#page-wrapper .sec-news .news-img {
	width: 139px;
	flex: 0 0 139px;
}

#page-wrapper .sec-news .news-img figure{
	width: 120px;
	margin: 4px auto 14px auto;
}

#page-wrapper .sec-news .news-img img {
	max-width: 100%;
	height: auto;
}

#page-wrapper .sec-news .modal-img {
	display: block;
	margin-top: 8px;
}

@media only screen and (max-width: 1024px) {
	#page-wrapper .sec-news {
		padding: 60px 0 80px 0;
	}

	#page-wrapper .sec-news .sec-inner {
		flex-flow: row wrap;
	}

	#page-wrapper .sec-news .news-body {
		flex: none;
		padding-left: 0;
		margin-top: 10px;
		width: 100%;
	}

	#page-wrapper .sec-news .news-item {
		flex-flow: row wrap;
		gap: 13px 0;
	}

	#page-wrapper .sec-news .news-item + .news-item {
		margin-top: 30px;
	}

	#page-wrapper .sec-news .news-date {
		width: 90px;
		flex: 0 0 90px;
		font-size: 10px;
		margin-top: 10px;
		padding: 0 0 2px 0;
		line-height: 1.2;
	}

	#page-wrapper .sec-news .news-content {
		flex: none;
		width: 100%;
	}

	#page-wrapper .sec-news .news-content dl{
		margin-bottom: 24px;
	}

	#page-wrapper .sec-news .news-content dt {
		font-size: 15px;
	}

	#page-wrapper .sec-news .news-content dd {
		margin-top: 3px;
		font-size: 20px;
		line-height: 1.6;
	}

	#page-wrapper .sec-news .news-content-text{
		flex-flow: row wrap;
		gap: 30px 0;
	}

	#page-wrapper .news-sns {
		width: 90%;
		margin: 27px auto 0 auto;
		padding: 10px 0 12px 0px;
		flex-flow: row wrap;
		justify-content: center;
	}
	
	#page-wrapper .news-sns-list {
		margin: 7px 0 0 0;
		justify-content: center;
		width: 100%;
	}

	#page-wrapper .news-sns-list li + li {
		margin-left: 15px;
		padding-left: 11px;
	}

	#page-wrapper .news-sns-list img {
		width: 25px;
	}

	#page-wrapper .news-sns-list li:first-of-type img{
		width: 30px;
	}
	
	#page-wrapper .sec-news .news-img{
		width: 100%;
		flex: none;
		display:flex;
		align-items:flex-end;
		gap: 0 10px;
	}
	
	#page-wrapper .sec-news .news-img figure{
		margin: 0;
		width: 60%;
		flex:0 0 60%;
	}
	
	#page-wrapper .sec-news .modal-img{
		width: 30%;
		flex:0 0 30%;
		margin:0;
	}
}	
	

@media only screen and (max-width: 767px) {
	#page-wrapper .sec-news {
		padding: 60px 0 80px 0;
	}

	#page-wrapper .sec-news .sec-inner {
		flex-flow: row wrap;
	}

	#page-wrapper .sec-news .news-body {
		flex: none;
		padding-left: 0;
		margin-top: 10px;
		width: 100%;
	}

	#page-wrapper .sec-news .news-item {
		flex-flow: row wrap;
		gap: 13px 0;
	}

	#page-wrapper .sec-news .news-item + .news-item {
		margin-top: 30px;
	}

	#page-wrapper .sec-news .news-date {
		width: 90px;
		flex: 0 0 90px;
		font-size: 10px;
		margin-top: 10px;
		padding: 0 0 2px 0;
		line-height: 1.2;
	}

	#page-wrapper .sec-news .news-content {
		flex: none;
		width: 100%;
	}

	#page-wrapper .sec-news .news-content dl{
		margin-bottom: 24px;
	}

	#page-wrapper .sec-news .news-content dt {
		font-size: 15px;
	}

	#page-wrapper .sec-news .news-content dd {
		margin-top: 3px;
		font-size: 20px;
		line-height: 1.6;
	}

	#page-wrapper .sec-news .news-content-text{
		flex-flow: row wrap;
		gap: 30px 0;
	}

	#page-wrapper .news-sns {
		width: 90%;
		margin: 27px auto 0 auto;
		padding: 10px 0 12px 0px;
		flex-flow: row wrap;
		justify-content: center;
	}
	
	#page-wrapper .news-sns-list {
		margin: 7px 0 0 0;
		justify-content: center;
		width: 100%;
	}

	#page-wrapper .news-sns-list li + li {
		margin-left: 15px;
		padding-left: 11px;
	}

	#page-wrapper .news-sns-list img {
		width: 25px;
	}

	#page-wrapper .news-sns-list li:first-of-type img{
		width: 30px;
	}
	
	#page-wrapper .sec-news .news-img{
		width: 100%;
		flex: none;
		display:flex;
		align-items:flex-end;
		gap: 0 10px;
	}
	
	#page-wrapper .sec-news .news-img figure{
		margin:0;
		width: 50%;
		flex:0 0 50%;
	}
	
	#page-wrapper .sec-news .modal-img{
		width: 50%;
		flex:0 0 50%;
		margin:0;
	}
}

/* ====================
   .sec-cast
   ==================== */
#page-wrapper .sec-cast {
	background: url("../img/cast-bg.jpg") repeat-y;
	background-size: contain;
	color: #fbf4ef;
}

#page-wrapper .sec-cast .sec-inner {
	max-width: 1124px;
	margin: 0 auto 0 200px;
	padding: 95px 0 0 0;
}

#page-wrapper .sec-cast .cast-box {
	flex: 1;
	background: #fbf4ef;
	color: #222333;
	padding: 45px 0 60px 135px;
	margin: 5px 0 100px 130px;
}

#page-wrapper .sec-cast .cast-list {
	flex-wrap: wrap;
	gap: 20px 0;
}

#page-wrapper .sec-cast .cast-list li {
	width: 50%;
	font-size: 24px;
	line-height: 2.1;
}

#page-wrapper .sec-cast .cast-list li span{
  margin-right: 5px;
}

#page-wrapper .sec-cast .cast-photo picture {
	display: block;
	width: 50%;
}

#page-wrapper .sec-cast .cast-photo img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 1024px) {
	#page-wrapper .sec-cast {
		background: url("../img/cast-bg-sp.jpg") repeat-y center center;
		background-size: contain;
	}

	#page-wrapper .sec-cast .sec-inner {
		width: 90%;
		margin: 0 auto;
		padding: 37px 0 0 0;
		flex-flow: row wrap;
	}

	#page-wrapper .sec-cast .sec-title{
		padding-left: 5%;
	}
	
	#page-wrapper .sec-cast .cast-box {
		padding: 15px;
		margin: 25px 0 35px 0;
		display:flex;
		justify-content:center;
	}

	#page-wrapper .sec-cast .cast-list {
		display:inline-block;
	}

	#page-wrapper .sec-cast .cast-list li {
	  width:auto;
		text-align:left;
		font-size: 18px;
		line-height: 2.1;
	}
	
	#page-wrapper .sec-cast .cast-list li + li{
		margin-top: 3px;
	}

	#page-wrapper .sec-cast .cast-list li span{
		margin-right: 5px;
	}
	
	#page-wrapper .sec-cast .cast-photo{
		flex-flow: row wrap;
	}

	#page-wrapper .sec-cast .cast-photo picture {
		display: block;
		width: 50%;
	}

	#page-wrapper .sec-cast .cast-photo img {
		display: block;
		width: 100%;
		height: auto;
	}
}


/* ====================
   .sec-staff
   ==================== */
#page-wrapper .sec-staff {
	background: url("../img/staff-bg.jpg") repeat-y;
	background-size: contain;
}

#page-wrapper .sec-staff .sec-inner {
	max-width: 1150px;
  margin: 0 auto 0 180px;
  padding: 85px 0 0 0;
}

#page-wrapper .sec-staff .sec-inner .sec-title{
	color: #fbf4ef;
}

#page-wrapper .sec-staff .staff-box {
	flex: 1;
	background: #fbf4ef;
	color: #222333;
  padding: 45px 40px 40px 40px;
  margin: 5px 0 80px 150px;
}

#page-wrapper .sec-staff .staff-profile {
/* 	align-items: flex-start;
	gap: 30px; */
}

#page-wrapper .sec-staff .staff-text h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.7;
	margin-top: 10px;
}

#page-wrapper .sec-staff .staff-profile p {
	font-size: 14px;
	line-height: 2.1;
	margin-top: 25px;
}

	#page-wrapper .sec-staff .staff-text{
 justify-content: space-between;
align-items: center;
}

#page-wrapper .sec-staff .staff-img {
	width: 280px;
	flex: 0 0 280px;
}

#page-wrapper .sec-staff .staff-profile img,
#page-wrapper .sec-staff .staff-main-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 1024px) {
	#page-wrapper .sec-staff {
		background: #7a8ec3 url("../img/staff-bg-sp.jpg") no-repeat;
		background-size: contain;
	}
	
	#page-wrapper .sec-staff .sec-inner {
		width: 90%;
		margin: 0 auto;
		padding: 37px 0 0 0;
		flex-flow: row wrap;
	}

	#page-wrapper .sec-staff .sec-title{
		padding-left: 5%;
	}


	#page-wrapper .sec-staff .staff-box {
		padding: 50px 35px 35px 35px;
		margin: 40px 0 35px 0;
		display:flex;
		justify-content:center;
	}

	#page-wrapper .sec-staff .staff-text h3 {
		font-size: 20px;
		margin-top: 40px;
	}

	#page-wrapper .sec-staff .staff-profile p {
		font-size: 14px;
		line-height: 2.1;
		margin-top: 25px;
	}

	#page-wrapper .sec-staff .staff-text{
		 flex-flow: row wrap;
	}
	
	#page-wrapper .sec-staff .staff-text h3{
		order: 2;
	}

	#page-wrapper .sec-staff .staff-img {
		width: 80%;
		margin: 0 auto;
		flex: none;
		order: 1;
	}
	
	#page-wrapper .sec-staff .staff-profile p{
		line-height: 1.7;
		font-size: 15px;
    margin-top: 15px;
	}
}

/* ====================
   .sec-credit
   ==================== */
#page-wrapper .sec-credit{
	padding: 90px 20px 0 0;
	background:#222333;
	color:#fbf4ef;
	text-align:center;
}

#page-wrapper .credit-logo{
	width: 380px;
	margin:0 auto;
	padding-left: 24px;
}

#page-wrapper .credit-cast{
	margin-top:49px;
	font-size:16px;
	line-height:2;
}

#page-wrapper .credit-director{
	margin:18px 0 30px 0;
	font-size:18px;
	font-weight:700;
	line-height:1.8;
}

#page-wrapper .sec-credit .text{
  font-size: 13px;
	line-height: 1.8;
}

#page-wrapper .sec-credit .text + .text{
  margin-top: 5px;
}

#page-wrapper .credit-sns{
	margin-top:90px;
	justify-content:center;
	align-items:center;
}

#page-wrapper .credit-sns li + li{
	margin-left:24px;
}

#page-wrapper .credit-sns img{
	width:28px;
	height:auto;
}


@media only screen and (max-width:1024px){
	#page-wrapper .credit-logo{
		width:280px;
	}
}

@media only screen and (max-width:767px){
	#page-wrapper .sec-credit{
		padding: 60px 20px 0 0;
	}

	#page-wrapper .credit-logo{
		width: 80%;
		padding-left: 24px;
	}

	#page-wrapper .credit-cast{
		margin-top: 30px;
		font-size: 13px;
		line-height:2.8;
	}

	#page-wrapper .credit-director{
		margin: 10px 0 30px 0;
		font-size: 16px;
	}

	#page-wrapper .sec-credit .text{
		font-size: 10.5px;
		line-height: 2;
	}

	#page-wrapper .sec-credit .text + .text{
		margin-top: 2px;
	}

	#page-wrapper .credit-sns{
		margin-top: 60px;
		justify-content:center;
		align-items:center;
	}

	#page-wrapper .credit-sns li + li{
		margin-left: 35px;
	}

	#page-wrapper .credit-sns img{
		width: 38px;
	}
}

/* ==========================================================================
   footer
   ========================================================================== */
#gFooter {
	color: #fbf4ef;
	background: #222333;
	padding: 70px 0 30px;

}

.copyright {
	font-size: 13px;
	text-align: center;
	line-height: 1.6;
}

@media only screen and (max-width: 1024px) {
	#gFooter {
	 padding: 80px 0 20px;
	}
	
	.copyright {
		font-size: 11px;
	}
}

/*---------- .pagetop ----------*/
.page-top-stop {
	position: relative;
	height: 0;
}

.pagetop {
	display: block;
	width: 92px;
	height: 92px;
	position: fixed;
	right: 5%;
	bottom: 20px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
}

.pagetop.is-show {
	opacity: 1;
	visibility: visible;
}

.pagetop.is-bottom {
	position: absolute;
	top: -112px;
	right: 5%;
	bottom: auto;
}

@media only screen and (max-width: 1024px) {
	.pagetop {
		width: 53px;
		height: 53px;
		position: fixed;
		right: 20px;
		bottom: 60px;
	}

	.pagetop.is-bottom {
		position: fixed;
		top: auto;
		right: 20px;
		bottom: 60px;
	}
}