@charset "UTF-8";

/* General Style
-------------------------------------- */
*{
	margin : 0;
	padding : 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 15px;
	width: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: clamp(66px, 6vw, 120px);
}
@media screen and (max-width: 899px) {
	html {
		scroll-padding-top: clamp(50px, 12.5vw, 105px);
	}
}

body {
	position: relative;
	width: 100%;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  font-style: normal;
	color: #000;
	background: #fff;
  line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	line-break: anywhere;
	word-wrap: break-word;
	overflow-wrap: break-word;
	/* font-feature-settings: "palt"; */
}
body:has(.nav-button.active) {
	overflow:hidden;
}
body::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 105px;
  background: #f4f4f4;
}

/* chrome opera
-------------------------------------- */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  img {
      image-rendering: -webkit-optimize-contrast;
  }
}
img {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	image-rendering: auto;
}

/* リセット
-------------------------------------- */
a img{
	border: none;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a,
a:link,
a:visited {
	color: inherit;
	text-decoration: none;
}
@media screen and (min-width: 900px) {
  a:hover, a:active {
	  filter: invert(100%) grayscale(100%);
	  transition: all .3s ease;
  }
}

h1, h2, h3, h4, h5, h6, h7, h8, h9 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}
strong {
	font-weight: bold;
}

/* フォームリセット
-------------------------------------- */
input,
button,
select,
file,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
file,
button,
select {
	cursor: pointer;
}

/*メニューボタン
-------------------------------------- */
.nav-button {
	position: relative;
	display: block;
	right: 0;
	width: 40px;
	height: 20px;
	padding: 10px;
	cursor: pointer;
	pointer-events: auto;
	z-index: 9999;
  overflow: hidden;
}
.nav-button span {
	display: inline-block;
	transition: all .5s ease;
}
.nav-button p {
	position: relative;
	display: block;
	width: 30px;
	height: 20px;
}
.nav-button span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #707070;
}
.nav-button span:nth-of-type(1) {
	top: 0;
}
.nav-button span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.nav-button span:nth-of-type(3) {
	bottom: 0;
}
.nav-button.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-225deg);
	transform: translateY(11px) rotate(-225deg);
}
.nav-button.active span:nth-of-type(2) {
	opacity: 0;
}
.nav-button.active span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotate(225deg);
	transform: translateY(-11px) rotate(225deg);
}
@media screen and (min-width: 900px) {
	.nav-button {
		display: none;
	}
}

/* メニュー
-------------------------------------- */
@media screen and (max-width: 899px) {
	.nav-wrap {
		position: fixed;
		right: 0;
		top: 0;
		display: block;
		background: #f4f4f4;
		width: 100%;
		height: 100vh;
		overflow-x: hidden;
    overflow-y: auto;
		transform: translateX(100%);
		transition: all .3s ease;
		z-index: 999;
	}
	.nav-wrap .nav {
		position: relative;
		display: flex;
	}
	.nav-wrap.open {
		transform: translateX(0);
	}
	.nav-wrap.close {
		transform: translateX(100%);
	}
	.nav-wrap ul {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
	  width: 70%;
	  margin: 0 auto;
	  padding-top: calc(3.8em + 15.5%);
	  font-weight: normal;
	}
	.nav-wrap ul a {
	  display: block;
	  width: 100%;
	}
	.nav-wrap ul li {
	  width: 100%;
	  padding: 1em 0;
	  margin: 0;
	  text-align: left;
	  color: #2D2A24;
	}
	.nav-wrap ul li .material-symbols-outlined {
	  display: inline-block;
	  font-size: 1.2rem;
	  line-height: 1rem;
	  vertical-align: middle;
	  margin: 0 1em 0.05em 0;
	}
	.nav-wrap ul li.bt_link1 {
    padding: 1em 0.5em;
    margin: 1em 0 0;
	}
	.nav-wrap ul li.bt_link2 {
    padding: 1em 0.5em;
    margin: 1em 0;
    color: #000;
	}
}
@media screen and (max-width: 374px) {
  .nav-wrap ul {
	  width: 90%;
	}
}
@media screen and (min-width: 900px) {
  .nav-wrap {
		display: none;
	}
}

/* アニメーション
-------------------------------------- */
@keyframes fadeIn {
  from {
	  opacity: 0;
  }
  to {
	  opacity: 1;
  }
}
@keyframes fadeTside {
  from {
	  opacity: 0;
	  transform: translateY(-100%);
  }
  to {
	  opacity: 1;
	  transform: translateY(0%);
  }
}
@keyframes fadeBside {
  from {
	  opacity: 0;
	  transform: translateY(200px);
  }
  to {
	  opacity: 1;
	  transform: translateY(0%);
  }
}
@keyframes fadeGray {
  from {
	  opacity: 1;
  }
  to {
	  opacity: .5;
  }
}

/* header
-------------------------------------- */
header {
	position: fixed;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	background: #f4f4f4;
	font-size: 0.93em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
	z-index: 99;
	opacity: 0;
	animation: fadeTside .3s .3s ease-out forwards;
}
header section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1% 2%;
}
h1 {
	width: 17.1%;
}
h1 img {
	object-fit: contain;
	max-height: 70px;
}
.head_banner {
	display: none;
}
@media screen and (min-width: 900px) {
  header section {
		width: calc(100% - 90px);
		padding: 1% 1.5%;
	}
	header section:last-child {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 90px;
		padding: 0;
		background: #fff;
	}
	header section:last-child a {
		margin: 0 6px;
	}
	header section:last-child img {
		width: auto;
	  height: 24px;
	  filter: invert(100%) grayscale(100%);
	}
  header section ul {
		display: flex;
	  align-items: center;
	  justify-content: flex-end;
	  width: 100%;
	  white-space: nowrap;
	}
	header section ul li {
	  position: relative;
	  padding: 0.75em 0;
	  margin-left: clamp(10px, 1vw, 22px);
	  transition: all .5s ease;
	}
	header section ul li .material-symbols-outlined {
	  display: inline-block;
	  font-size: 1.6rem;
	  line-height: 1rem;
	  vertical-align: middle;
	  margin-bottom: 0.05em;
	}
	header section ul li.bt_link1 {
	  padding: 1em 0.5em;
	  border: 1px solid #FE3030;
	  border-radius: 6px;
	  background: #fff;
	  color: #FE3030;
	  font-size: clamp(12px, 4vw, 15px);
	  transition: all .3s ease;
	}
	header section ul li.bt_link2 {
	  padding: 1em 0.5em;
	  border: 1px solid #000;
	  border-radius: 6px;
	  background: #fff;
	  font-size: clamp(12px, 4vw, 15px);
	}
	header section ul li.bt_link1:hover, header section ul li.bt_link1:active {
	  border: 1px solid #fff;
	  border-radius: 6px;
	  background: #FE3030;
	  color: #fff;
  }
  header section h1 a:hover, header section h1 a:active, header section:last-child a:hover, header section:last-child a:active {
		opacity: 0.6;
		filter: grayscale(50%);
	}
  header section ul li.under::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: #000;
		transform: scale(0, 1);
		transform-origin: left top; /*変形原点*/
		transition: transform 0.3s;  /*変形時間*/
	}
	header section ul li.under:hover::after, header section ul li.under:active::after {
		transform: scale(1, 1);     /*ホバー後伸長*/
		transform-origin: left top; /*左から右*/
	}
	header section ul li.checked::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: #000;
	}
	a:hover:has(.under), a:active:has(.under), a:hover:has(.bt_link1), a:active:has(.bt_link1) {
		filter: none;
	}
}
@media screen and (max-width: 899px) {
	header {
		padding: 2%;
	}
	header section {
		padding: 0 2%;
	}
	h1 {
		width: 37%;
	}
	nav .nav a.sns {
		display: inline-block;
		width: auto;
		margin: 0 0.5em;
	}
	nav .nav a.sns:first-child {
		margin-left: 2.4em;
	}
	nav .nav a.sns img {
		width: auto;
	  height: 40px;
	  filter: invert(100%) grayscale(100%);
	}
	.head_banner {
		position: relative;
		display: block;
		width: calc(58% - 40px);
	}
}

/* contents共通
-------------------------------------- */
article {
	position: relative;
	width: 100%;
}
article section {
	position: relative;
	width: 96%;
	max-width: 930px;
	margin: 0 auto;
}
h2 {
	display: block;
	width: 94%;
	max-width: 550px;
	margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: bolder;
  line-height: 1.25;
}
h2 img {
  margin-bottom: 0.5em;
}
h2 strong {
  max-width: none;
  font-size: clamp(16px, 5vw, 48px);
  text-align: center;
  font-weight: bold;
}
a.bt_more {
  position: relative;
  display: block;
  width: 220px;
  background: #fff;
  padding: 1.5em 0;
  border: 1px solid #000;
  border-radius: 2em;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
a.bt_more span {
  position: absolute;
  right: 0.6em;
  top:0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1em;
  height: 1em;
}
a.bt_more span.material-symbols-outlined {
  font-size: 1.4em;
}
.arrows {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	width: 3.5vw;
	max-width: 20px;
	padding: 3em 0 0;
	animation: fadeGray 1s ease-out alternate infinite;
}
h3 {
	display: block;
	margin: 0 auto;
	padding: 0 0 0.25em;
}
h4 {
	display: inline-block;
	width: 6em;
	background: #fff;
	padding: 0.1rem 0;
	border: 1px solid #000;
	border-radius: 0.6rem;
	font-size: 0.86em;
	color: #000;
	line-height: 1;
	text-align: center;
}
h4.red {
  border: 1px solid #FE3030;
  color: #FE3030;
}
h4.ora {
  border: 1px solid #FFA401;
  color: #FFA401;
}
h5 {
	display: block;
	width: 100%;
	font-weight: normal;
	margin-bottom: 2em;
}
@media screen and (max-width: 899px) {
	.arrows {
		position: relative;
	}
}

/* メインイメージ
-------------------------------------- */
.main-img {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 9em 0 3em;
	opacity: 0;
	animation: fadeIn 1s .5s ease-out forwards;
}
.main-img::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 50%;
  transform: skewY(7deg);
	background: #f4f4f4;
}
.main-img section {
	max-width: none;
}
.main-img section:nth-of-type(1) {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 1.125vw;
	margin: 0 5%;
	opacity: 0;
	animation: fadeTside 1.5s .25s ease-out forwards;
}
.main-img section:nth-of-type(1) a {
	margin: 2.5em 0;
	animation: fadeGray 1s ease-out alternate infinite;
}
.main-img section:nth-of-type(2) {
	width: calc(90% - 1.125vw);
	margin: 0;
}
.main-img section a:hover, .main-img section a:active {
	filter: none;
}
@media screen and (max-width: 899px) {
	.main-img {
		padding: 4.5em 0 0;
	}
	.main-img::before {
		top: -10%;
		height: 100%;
	}
	.main-img section:nth-of-type(1) {
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin: -1em 6% 0;;
		order: 2;
	}
	.main-img section:nth-of-type(1) img:nth-of-type(1) {
		width: 3.5vw;
    margin: 0 0 1em 25vw;
	}
	.main-img section:nth-of-type(1) img:nth-of-type(2) {
		width: 36.5vw;
	}
	.main-img section:nth-of-type(2) {
		width: 100%;
		margin: 0;
		order: 1;
	}
}

/* video
-------------------------------------- */
.video_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 40vw;
  z-index: 1;
}
.video_wrap h2 {
  color: #fff;
  font-size: 2.2em;
  margin-bottom: 0;
}
.video_wrap p {
  display: block;
	width: 100%;
	max-width: 930px;
	margin: 1em auto 2em;
  font-weight: bold;
  color: #fff;
}

.video {
  width: 100%;
  height: 40vw;
  background: url(../img/top_mov.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
/*
	.video::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(#000 20%, transparent 20%), radial-gradient(#000 20%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}
.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
*/
@media screen and (max-width: 899px) {
	.video_wrap {
	  height: 176vw;
	}
	.video_wrap h2 {
	  font-size: 1.9em;
	}
	.video {
	  height: 176vw;
	}
}

/* About us
-------------------------------------- */
.about {
  padding-top: 7em;
}
.about::before {
  content: '';
  position: absolute;
  display: block;
  top: 5%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 83%;
  transform: skewY(7deg);
  background: #f4f4f4;
}
.about section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin-bottom: 5em;
}
.about section ul li {
  position: relative;
  width: 48%;
}
.about section ul li:last-child {
  width: 45%;
}
.about section ul li strong {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.about section ul li p {
  position: relative;
  display: -webkit-box;
  padding-left: 1em;
  margin-top: 2em;
  border-left: 1px solid #FE3030;
  line-height: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 16;
}
.about section ul li p::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: calc(100% - 1em);
  height: 8em;
  background: linear-gradient(rgba(244, 244, 244, 0),rgba(244, 244, 244, 1));
}
.about section ul li div {
  position: relative;
  display: block;
  width: 60%;
  margin: 0;
  transform: skewY(7deg);
  border-radius: 20px;
  aspect-ratio: 230 / 320;
  overflow: hidden;
  box-shadow: 3px 3px 0 3px #FE3030;
}
.about section ul li div:nth-of-type(2) {
  margin: -30% 0 0 auto;
}
.about section ul li div:nth-of-type(3) {
  margin: -15% 0 0;
}
.about section ul li div img {
  position: absolute;
  inset: 0;
  margin: auto;
  transform: skewY(-7deg);
  height: 110%;
  object-fit: cover;
}
.about section ul li a.bt_more {
  margin: 1.75em auto 0;
}
@media screen and (max-width: 899px) {
	.about {
	  padding-top: 4em;
	}
	.about::before {
	  top: 25vw;
	  height: 62%;
	}
	.about section ul {
	  justify-content: center;
	  margin: 3em 0 1.5em;
	}
	.about section ul li {
	  position: relative;
	  width: 100%;
	  order: 2;
	}
	.about section ul li:last-child {
	  width: 90%;
	  order: 1;
	}
	.about section ul li strong {
	  text-align: center;
	}
	.about section ul li p {
	  padding-left: 0;
    margin-top: 3.5em;
    border-left: none;
	  -webkit-line-clamp: 13;
	}
	.about section ul li p::after {
	  width: 100%;
	  background: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 1));
	}
}

/* Event&News
-------------------------------------- */
.event {
  padding-top: 1.5em;
}
.event::before {
  content: '';
  position: absolute;
  display: block;
  top: 9%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: skewY(-7deg);
  background: #f4f4f4;
}
.event section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 3em 0 7em;
}
.event section ul li {
  position: relative;
  width: 80%;
}
.event section ul li:first-child {
  width: 17%;
  margin-top: 0.5em;
}
input[name="tab_item"] {
  display: none;
}
.tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.tab_item {
  display: block;
  width: 100%;
  border: 1px solid #000;
  border-radius: 1em;
  background: #fff;
  line-height: 2em;
  font-size: 1em;
  color: #000;
  text-align: center;
  margin-bottom: 1em;
  transition: all .3s ease;
}
.tab_item:nth-child(4) {
  border: 1px solid #FE3030;
  color: #FE3030;
}
.tab_item:nth-child(6) {
  border: 1px solid #FFA401;
  color: #FFA401;
}
.tabs input:checked + .tab_item:nth-child(2) {
  color: #fff;
  background: #707070;
}
.tabs input:checked + .tab_item:nth-child(4) {
  color: #fff;
  background: #FE3030;
}
.tabs input:checked + .tab_item:nth-child(6) {
  color: #fff;
  background: #FFA401;
}
.tab_content {
  display: none;
}
ul:has(#tab_all:checked) li#tab_all_content,
ul:has(#tab_event:checked) li#tab_event_content,
ul:has(#tab_news:checked) li#tab_news_content {
  display: block;
}
.event section ul li dl {
	position: relative;
	width: 100%;
	margin: 0;
	text-align: left;
}
.event section ul li dl dt {
	width: 6.25em;
	float: left;
	padding: 1em 0.5em;
	color: #707070;
}
.event section ul li dl dd {
	width: 100%;
	padding: 1em 0 1em 12.5em;
	border-bottom: 1px solid #707070;
}
.event section ul li dl dd a:hover, .event section ul li dl dd a:active {
  text-decoration: underline;
  filter: none;
}
.event section ul li dl dd a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 4em;
}
.event section ul li dl dd a .material-symbols-outlined {
  position: absolute;
  display: block;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  font-size: 1.6rem;
  line-height: 1rem;
  vertical-align: middle;
}
.event section ul a.bt_more {
  margin: 2em 0 0 auto;
}
@media screen and (max-width: 899px) {
  .event::before {
	  height: 95%;
	}
  .event section ul {
	  justify-content: flex-start;
	  margin: 2em 0 5em;
	}
	.event section ul li {
	  width: 100%;
	}
	.event section ul li:first-child {
	  width: 100%;
	  margin-top: 0;
	}
	.tab_item {
	  display: block;
	  width: 32.333%;
	  margin-bottom: 1em;
	}
	.event section ul li dl dt {
		padding: 1em 0.5em 0;
	}
	.event section ul li dl dd {
		padding: 3em 0 1em 0em;
	}
	.event section ul a.bt_more {
	  margin: 2em auto 0;
	}
}

/* Mens Idol
-------------------------------------- */
.mens::before {
  content: '';
  position: absolute;
  display: block;
  top: -4%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1px;
  transform: skewY(9deg);
  background: #FE3030;
}
.mens section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 3em 0 7em;
}
.mens section ul li {
  position: relative;
  width: calc(100% / 2 - 2em);
  margin: 0 0 2em;
}
.mens section ul li div {
  display: block;
  border: 1px solid #aaa;
  border-radius: 8px;
  margin-bottom: 0.5em;
  overflow: hidden;
}
.mens section ul li div img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .mens section ul li div a:hover, .mens section ul li div a:active {
	  filter: none;
	  opacity: .6;
	  transition: all .3s ease;
  }
}
@media screen and (max-width: 899px) {
	.mens::before {
	  top: -5.25vw;
	}
	.mens section ul {
	  margin: 2em 0 3em;
	}
	.mens section ul li {
	  width: 100%;
	  margin: 0 0 1.5em;
	}
}

/* Characters
-------------------------------------- */
.chara::before {
  content: '';
  position: absolute;
  display: block;
  top: 5%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 55%;
  transform: skewY(7deg);
  background: #f4f4f4;
}
.chara section ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 3em 0 5em;
}
.chara section ul li {
  position: relative;
  width: calc(100% / 3 - 1em);
  margin: 0 1.5em 2em 0;
}
.chara section ul li div {
  display: block;
  border: 1px solid #aaa;
  border-radius: 8px;
  margin-bottom: 0.5em;
  overflow: hidden;
}
.chara section ul li div img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
	.chara section ul li:nth-child(3n) {
	  margin: 0 0 2em;
	}
}
@media screen and (max-width: 899px) {
	.chara::before {
	  top: 10vw;
	  height: 98%;
	}
	.chara section ul {
	  margin: 2em 0 1.5em;
	}
	.chara section ul li {
	  width: 48.5%;
	  margin: 0 3% 1.5em 0;
	  text-align: center;
	}
	.chara section ul li:nth-child(2n) {
	  margin: 0 0 1.5em;
	}
}

/* Collaboration
-------------------------------------- */
.collab {
  margin-top: 3em;
}
.collab::before {
  content: '';
  position: absolute;
  display: block;
  top: 5%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 90%;
  transform: skewY(7deg);
  background: #f4f4f4;
}
.collab section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin: 2em 0 5em;
}
.collab section ul li {
  position: relative;
  width: 48%;
}
.collab section ul li:last-child {
  width: 45%;
}
.collab section ul li strong {
  display: block;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.collab section ul li p {
  position: relative;
  display: -webkit-box;
  padding-left: 1em;
  border-left: 1px solid #FE3030;
  line-height: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
}
/*
.collab section ul li p::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: calc(100% - 1em);
  height: 8em;
  background: linear-gradient(rgba(244, 244, 244, 0),rgba(244, 244, 244, 1));
}
*/
.collab section ul li div {
  display: block;
  border: 1px solid #aaa;
  border-radius: 8px;
  overflow: hidden;
}
.collab section ul li div img {
  height: 100%;
  object-fit: cover;
}
.collab section ul li a.bt_more {
  margin: 1.75em auto 0;
}
@media screen and (max-width: 899px) {
	.collab {
    margin-top: 1em;
	}
	.collab::before {
	  content: none;
	}
	.collab section ul {
	  justify-content: center;
	  margin: 3em 0 1.5em;
	}
	.collab section ul li {
	  position: relative;
	  width: 100%;
	  order: 2;
	}
	.collab section ul li:last-child {
	  width: 100%;
	  order: 1;
	}
	.collab section ul li strong {
	  text-align: center;
	}
	.collab section ul li p {
	  padding-left: 0;
    margin-top: 1.5em;
    border-left: none;
	  -webkit-line-clamp: 7;
	}
	.collab section ul li p::after {
	  width: 100%;
	  background: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 1));
	}
}

/* Contact
-------------------------------------- */
.contact h2 {
	position: relative;
	width: 54.6%;
	max-width: 205px;
	margin: 8em auto 2em;
	text-align: center;
}
.contact.audition h2 {
	width: 100%;
	max-width: none;
}
.contact h2::before {
  content: '';
  position: absolute;
  display: block;
  top: -3em;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  background: url(../img/arrows1.png) center no-repeat;
  background-size: 100%;
}
.contact p {
	text-align: center;
}
.contact a.bt_more {
	margin: 2em auto 4em;
}
.contact.audition a.bt_more {
	margin: 2em auto 0;
}
@media screen and (max-width: 899px) {
	.contact h2 {
		margin: 6em auto 2em;
	}
	.contact h2::before {
	  top: -2em;
	  width: 14px;
	  height: 14px;
	}
	.contact p {
		width: 94%;
		margin: 0 auto;
		text-align: left;
	}
}

/* footer
-------------------------------------- */
footer {
	position: relative;
	width: 100%;
	background: #000;
	color: #fff;
}
.to-top {
  position: fixed;
  bottom: 80px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #707070;
  border-radius: 20px;
  cursor: pointer;
  z-index: 10;
}
.to-top .material-symbols-outlined {
  font-size: 20px;
}
footer section {
	position: relative;
	display: flex;
  align-items: center;
  justify-content: center;
	width: 100%;
	padding: 2em 0;
}
footer section a {
	margin: 0 1.5em;
}
footer section img {
	width: auto;
	height: 40px;
}
footer ul {
	position: relative;
	display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: clamp(10px, 3.2vw, 14px);
}
footer ul li {
  position: relative;
  padding: 2em 0 0;
  border-top: 1px solid #707070;
  white-space: nowrap;
}
footer ul li a {
  position: relative;
  padding: 0 0 1em;
  margin: 0 0.75em;
  transition: all .5s ease;
}
footer ul li a .material-symbols-outlined {
  font-size: 1.6rem;
  line-height: 1rem;
  vertical-align: middle;
  margin-bottom: 0.05em;
}
footer > p {
	padding: 4em 0 2em;
	font-size: 0.66em;
	text-align: center;
	margin-bottom: 0;
}
footer a.banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: 4em;
  border-radius: 2em;
  border: 1px solid #888;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 20;
  overflow: hidden;
}
footer a.banner img {
  height: 100%;
  width: auto;
}
@media screen and (min-width: 900px) {
  footer ul li a::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 1px;
		background: #fff;
		transform: scale(0, 1);
		transform-origin: left top; /*変形原点*/
		transition: transform 0.3s;  /*変形時間*/
	}
	footer ul li a:hover::after, footer ul li a:active::after {
		transform: scale(1, 1);     /*ホバー後伸長*/
		transform-origin: left top; /*左から右*/
	}
	footer section a:hover, footer section a:active, a.banner:hover, a.banner:active {
		opacity: 0.6;
	}
	footer a:hover, footer a:active {
		filter: none;
	}
}
@media screen and (max-width: 899px) {
	.to-top {
	  bottom: 65px;
	}
	footer section a {
		margin: 0 1em;
	}
	footer ul {
		flex-wrap: wrap;
	  justify-content: space-between;
	  width: 100%;
	  border-top: 1px solid #707070;
	}
	footer ul li {
	  position: relative;
	  width: 50%;
	  padding: 0;
	  border-top: none;
	  border-right: 1px solid #707070;
	  border-bottom: 1px solid #707070;
	}
  footer ul li:nth-child(2n) {
    border-right: none;
  }
	footer ul li a {
	  position: relative;
	  padding: 0;
	  margin: 0;
	  display: flex;
	  align-items: center;
	  height: 4em;
	  padding: 0.5em;
	  line-height: 1.25;
	}
	footer > p {
		padding: 3em 0 7em;
	}
	footer a.banner {
	  height: 3em;
	  border-radius: 1.5em;
	}
}

/* 2階層目　会社概要
-------------------------------------- */
.company {
	padding: 11em 0 3em;
}
.company::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 30%;
  transform: skewY(7deg);
	background: #f4f4f4;
}
a.bt_banner {
  position: relative;
  display: block;
  width: 81.8%;
  max-width: 395px;
  padding: 0.5em 0 0.5em 2.2em;
  margin: 1em -1em 2em auto;
  background: #fff;
  border: 1px solid #000;
  font-size: clamp(15px, 4.8vw, 24px);
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
a.bt_banner span {
  position: absolute;
  left: 0.6em;
  top:0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1em;
  height: 1em;
}
a.bt_banner span.material-symbols-outlined {
  font-size: 1.4em;
  color: #FE3030;
}
.company section dl {
	position: relative;
	width: 100%;
	margin: 0;
	text-align: left;
}
.company section dl dt {
	width: 18.8%;
	float: left;
	padding: 2em 0.5em;
	font-weight: bold;
}
.company section dl dd {
	width: 100%;
	padding: 2em 0 2em 18.8%;
	border-bottom: 1px solid #707070;
}
.destinat section {
	max-width: 665px;
	padding: 2em;
	margin: 0 auto;
	border: 1px solid #000;
	text-align: center;
}
.destinat section p {
	margin-top: 2em;
}
.map section {
	max-width: 895px;
	margin: 3em auto 0;
}
.map section div {
	position: relative;
	aspect-ratio: 895/445;
	overflow: hidden;
}
.map section div iframe {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map section p {
	margin-top: 1em;
}
@media screen and (max-width: 899px) {
	.company {
		padding: 5.5em 0 3em;
	}
	.company::before {
		top: -10vw;
    height: 30%;
	}
	a.bt_banner {
	  padding: 0.5em 0 0.5em 1.5em;
	  margin: 1.5em auto
	}
	.company section dl dt {
		width: 6em;
	}
	.company section dl dd {
		width: 100%;
		padding: 2em 0 2em 6.5em;
	}
	.company section dl dt.long {
		width: 6em;
		padding: 2em 0.5em 0 0.5em;
	}
	.company section dl dd.long {
		width: 100%;
		padding: 4em 0 2em 0.5em;
	}
	.map section div {
		aspect-ratio: 345/445;
	}
}

/* 2階層目　会社概要　バナー
-------------------------------------- */
.pdT4 {
  padding-top: 4em !important;
}
.banner section ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 1em 0 2em;
}
.banner section ul li {
  width: calc((100% - 4.5em) / 4);
  margin: 0 1.5em 1em 0;
  text-align: center;
}
.banner section ul li a {
  display: block;
  border: 1px solid #aaa;
  overflow: hidden;
}
.banner section ul li a img {
  height: 100%;
  object-fit: cover;
}
.banner h3 {
  position: relative;
  display: block;
  margin: 2em 0 0;
  padding: 0 0 0 1.5em;
  font-size: 1.2em;
  font-weight: bolder;
  line-height: 1.25;
}
.banner h3 span {
  position: absolute;
  left: -1rem;
  top:0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1em;
  height: 1em;
  transform: scale(1, 0.5);
  overflow: hidden;
}
.banner h3 span.material-symbols-outlined {
  font-size: 3em;
  color: #FE3030;
}
.banner section ul.col5 li {
  width: calc((100% - 6em) / 5);
}
.banner section ul.col5 {
  margin: 1em 0 4em;
}
@media screen and (min-width: 900px) {
	.banner section ul li:nth-child(4n) {
	  margin: 0 0 1em;
	}
	.banner section ul.col5 li:nth-child(4n) {
	  margin: 0 1.5em 1em 0;
	}
	.banner section ul.col5 li:nth-child(5n) {
	  margin: 0 0 1em;
	}
	.banner section ul li a:hover, .banner section ul li a:active {
	  filter: grayscale(100%);
	  opacity: .6;
	  transition: all .3s ease;
  }
}
@media screen and (max-width: 899px) {
	.banner h3 {
	  margin: 1em 0 0;
	}
	.banner section ul {
	  margin: 1em 0 0;
	}
	.banner section ul.col5 {
	  margin: 1em 0 3em;
	}
	.banner section ul li, .banner section ul.col5 li {
	  width: 48.5%;
	  margin: 0 3% 1em 0;
	}
	.banner section ul li:nth-child(2n) {
	  margin: 0 0 1em;
	}
}

/* 2階層目　About us
-------------------------------------- */
.second .about {
	padding: 11em 0 0;
}
.second .about::before {
  top: 0;
	height: 72%;
}
.second .about section {
	max-width: 850px;
}
.second .about h3 {
  margin:0 0 4rem;
  padding: 0;
  font-size: clamp(20px, 6.4vw, 31px);
  font-weight: bolder;
  line-height: 1.25;
}
.second .about section ul {
  margin: 0;
}
.second .about section ul li {
  width: 51%;
}
.second .about section ul li:last-child {
  width: 39%;
}
.second .about section ul li p {
  padding-left: 0;
  margin: 0 0 1em;
  border-left: none;
  overflow: auto;
  text-overflow: unset;
  -webkit-line-clamp: none;
}
.second .about section ul li p::after {
  content: none;
}
.second .about section ul li div {
  width: 100%;
  margin: 9em 0 0;
}
.second .about .arrows {
	position: relative;
	padding: 1em 0 0;
}
@media screen and (max-width: 899px) {
	.second .about {
		padding: 6.5em 0 0;
	}
	.second .about::before {
		top: -10vw;
    height: 30%;
	}
	.second .about h3 {
	  margin:0 0 2rem;
	  text-align: center;
	}
	.second .about section ul li {
	  width: 100%;
	}
	.second .about section ul li:last-child {
	  width: 66.4%;
	}
	.second .about section ul li div {
	  margin: 0 0 3.5em;
	}
}

/* 2階層目　About us　２コ目
-------------------------------------- */
.second #about2.about {
	padding: 3em 0 0;
}
.second #about2::before {
	top: 38%;
	width: 64.6%;
	height: 100%;
}
.second #about2.about section ul li {
  order: 2;
}
.second #about2.about section ul li:last-child {
  order: 1;
}
.second #about2.about section ul li div {
  margin: 0;
}
@media screen and (max-width: 899px) {
	.second #about2.about {
		padding: 2em 0 0
	}
	.second #about2.about::before {
		top: 28%;
		width: 100%;
		height: 69%;
	}
	.second #about2.about section ul li div {
	  margin: 0 0 3.5em;
	}
}

/* 2階層目　About us　3コ目
-------------------------------------- */
.second #about3.about {
	padding: 3em 0 0;
}
.second #about3.about::before {
	content: none;
}
.second #about3.about section ul li div {
  margin: 1em 0 0;
}
@media screen and (max-width: 899px) {
	.second #about3.about {
		padding: 2em 0 0
	}
	.second #about3.about::before {
		content: '';
		top: 28%;
		left: 0;
		width: 100%;
		height: 69%;
	}
	.second #about3.about section ul li div {
	  margin: 0 0 3.5em;
	}
}

/* 2階層目　About us　4コ目
-------------------------------------- */
.second #about4.about {
	padding: 3em 0 0;
}
.second #about4.about::before {
	top: 45%;
	left: initial;
	right: 0;
	width: 64.6%;
	height: 104%;
}
.second #about4.about h3 b {
  color: #FE3030;
}
.second #about4.about section ul li {
  order: 2;
}
.second #about4.about section ul li:last-child {
  order: 1;
}
.second #about4.about section ul li div {
  margin: 0;
}
.second #about4.about section ul li div img.left {
  object-position: 10%;
}
.second #about4.about .arrows {
	margin: 0;
	padding: 7em 0 0;
}
@media screen and (max-width: 899px) {
	.second #about4.about {
		padding: 2em 0 0
	}
	.second #about4.about::before {
		top: 28%;
		left: 0;
		right: initial;
		width: 100%;
		height: 74%;
	}
	.second #about4.about section ul li div {
	  margin: 0 0 3.5em;
	}
	.second #about4.about .arrows {
		margin: auto;
		padding: 1em 0 0;
	}
}

/* 2階層目　About us　5コ目
-------------------------------------- */
#about5 {
	padding-top: 3em;
}
.second #about5 section p {
	font-size: 1.2em;
	text-align: center;
	line-height: 2;
}
.second #about5 section img {
	width: 73%;
	max-width: 275px;
	margin: 2em auto;
}
@media screen and (max-width: 899px) {
	.second #about5 section p {
		font-size: 1.06em;
		text-align: left;
	}
}

/* 2階層目　Event News
-------------------------------------- */
.contents {
	padding: 11em 0 0;
}
.contents::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 160%;
  transform: skewY(7deg);
	background: #f4f4f4;
}
.cont_wrap {
	padding: 2em 0;
	margin-bottom: 2em;
}
.cont_wrap:has(#news) {
	margin-top: -50px;
}
.cont_wrap section {
	max-width: 960px;
}
@media screen and (min-width: 900px) {
	.cont_wrap a:hover, .cont_wrap a:active {
		opacity: 0.6;
		filter: none;
	}
}
@media screen and (max-width: 899px) {
	.contents {
		padding: 5.5em 0 0;
	}
	.contents::before {
		top: -10vw;
    height: 225%;
	}
	.cont_wrap {
		padding: 1em 0;
	}
}

/* 2階層目　Event News　コンテンツ内上書き
-------------------------------------- */
#event_title {
  text-align: left;
  padding-left: 1em;
}
#main_box {
  padding: 0;
}
.gazou img {
  width: 53.7%;
  margin: 0 auto;
}

/* 2階層目　Project　タブ
-------------------------------------- */
.project {
	padding: 11em 0 0;
	background: #f4f4f4;
	overflow: hidden;
}
.project ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
	padding: 2em 0 0;
	background: #f4f4f4;
	text-align: center;
}
.project ul a {
	position: relative;
	display: block;
	width: calc((100% - 2em) / 3);
	margin-right: 1em;
}
.project ul a:last-child {
	margin-right: 0;
}
.project ul li {
	position: relative;
	padding: 1em 0;
	background: #ddd;
	border-bottom: 4px solid #ddd;
	font-size: 1.333em;
	line-height: 1;
	font-weight: bold;
	color: #707070;
}
.project ul li.checked {
	background: #fff;
	border-bottom: 4px solid #FF3030;
	color: #000;
}
.project ul a li span {
  position: absolute;
  left: 0.6em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.project ul li span .material-symbols-outlined {
  display: block;
  font-size: 1.6rem;
  line-height: 1rem;
}
@media screen and (min-width: 900px) {
	.project ul a:hover {
		filter: none;
	}
	.project ul li:hover {
		background: #fff;
		border-bottom: 4px solid #FF3030;
		color: #000;
	}
}
@media screen and (max-width: 899px) {
	.project {
		padding: 5.5em 0 0;
	}
	.project ul a {
		position: relative;
		display: block;
		width: 86%;
		margin: 0 auto 0.5em;
	}
	.project ul a:last-child {
		margin: 0 auto;
	}
	.project ul li {
		position: relative;
	}
}

/* 2階層目　Project　コンテンツ
-------------------------------------- */
.proj_col1 section {
  text-align: center;
  font-size: 1.33em;
}
.proj_col1 div {
  position: relative;
  margin: 2em 0;
}
.proj_col1 div img:last-child {
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  transform: translateY(-50%);
  width: auto;
  height: 72%;
}
.proj_col2 {
  padding-top: 3em;
  z-index: 2;
}
.proj_col2::before {
  content: '';
  position: absolute;
  display: block;
  top: 40%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50%;
  transform: skewY(-7deg);
  background: #f4f4f4;
}
.proj_col2 section > img {
	width: 66.8%;
	padding: 0 0 4em;
}
.proj_col2 section > div {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 48.6%;
	padding: 1.5em 2em;
	background: rgba(255, 255, 255, .85);
	border: 1px solid #000;
}
.proj_col2 section > div p {
	display: block;
	width: 100%;
	line-height: 2;
}
.proj_col2 section > div p strong {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	line-height: 3em;
	font-size: 1.33em;
	line-height: 1em;
}
.proj_col2 section > div p img {
	display: inline-block;
	width: auto;
	height: 2.25em;
	margin-right: 0.5rem;
}
.proj_col2 section > div .arrows {
  position: absolute;
  bottom: -4.5em;
}
#project2.proj_col2 {
	z-index: 1;
}
#project2.proj_col2::before {
  content: none;
}
#project2.proj_col2 section > img {
	width: 60.1%;
	padding: 0 0 3em;
}
.proj_col2 a.bt_more {
  margin: 1em auto 0;
}
#project3.proj_col2 {
	z-index: 0;
}
#project3.proj_col2::before {
  top: 50%;
}
#project3.proj_col2 section > div {
	bottom: 15em;
}
#project3.proj_col2 section > img {
	width: 51.4%;
	padding: 0;
	margin-top: -2em;
}
@media screen and (max-width: 899px) {
	.proj_col1 section {
    text-align: left;
    font-size: 1em;
	}
	.proj_col2::before {
	  top: 30%;
	}
	.proj_col2 section > img {
		width: 100%;
		padding: 0 0 2em;
	}
	.proj_col2 section > div {
		position: static;
		width: 87.77%;
		padding: 1.5em 1em;
		margin: 0 auto 1em;
	}
	.proj_col2 section > div p strong {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 1em;
	}
	.proj_col2 section > div p img {
		margin: 0 0 0.5em;
	}
	.proj_col2 section > div .arrows {
	  position: absolute;
	  bottom: -3em;
	}
	#project2.proj_col2 section > img {
		width: 100%;
		padding: 0 0 2em;
	}
	.proj_col2 a.bt_more {
	  margin: 1em auto 0;
	}
	#project3.proj_col2::before {
	  top: 40%;
	  height: 40%;
	}
	#project3.proj_col2 {
		z-index: 0;
	}
	#project3.proj_col2::before {
	  top: 50%;
	}
	#project3.proj_col2 section > div {
		top: -3.5em;
	}
	#project3.proj_col2 section > img {
		width: 100%;
		padding: 0;
		margin: -0.5em auto 2em;
	}
}

/* 2階層目　Contact
-------------------------------------- */
.second .contact {
	font-size: 1.06em;
}
.mgT4 {
	margin-top: 4em !important;
}
.mgT8 {
	margin-top: 8em !important;
}
a.bt_more.long {
  width: 81%;
  max-width: 576px;
  padding: 1em 0;
  margin: 2em auto 4em;
  font-size: 1.06rem;
}
@media screen and (max-width: 899px) {
	.mgT4 {
    margin-top: 2em !important;
	}
	.second .contact.mg4 {
		margin: 2em auto 3em;
	}
}

/* 2階層目　Project　MOVIE
-------------------------------------- */
.proj_col3 {
  padding-top: 3em;
}
.proj_col3 section {
  width: 96%;
  max-width: 547px;
  margin: 0 auto;
  text-align: center;
}
.proj_col3 section > div {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
}
.proj_col3 section > div iframe {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* 2階層目　Project　EVENT
-------------------------------------- */
.second .mens.nobg::before {
  content: none;
}
.second .mens.mg0 section ul {
  margin: 3em 0 0;
}
h2.center {
	width: 94%;
	max-width: 325px;
	margin: 0 auto;
  font-size: 1em;
  text-align: center;
}
.second .chara::before {
  top: 10%;
  height: 110%;
  transform: skewY(-7deg);
}
.second .mens::before {
  top: 0;
  width: 100%;
  height:140%;
  transform: skewY(-7deg);
  background: #f4f4f4;
}
.proj_col4 {
  padding-top: 3em;
}
.proj_col4 section {
  width: 96%;
  max-width: 960px;
  margin: 0 auto;
}
h2 + p {
	width: 94%;
	margin: 0.5em 0 2em;
  text-align: left;
}
p.txtC {
  text-align: center;
}
.proj_col4 section > a {
  position: relative;
  display: block;
  margin: 2em 0;
}
.proj_col4 section > div:nth-of-type(1) {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
}
.proj_col4 section > div iframe {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.proj_col4 section > div.contact.top {
	display: flex;
	justify-content: center;
	flex-direction: row;
  align-items: center;
	font-size: 1em;
	aspect-ratio: auto;
}
.proj_col4 section > div.contact.top a.bt_more {
	margin: 2em 0.5em 4em;
}
@media screen and (min-width: 900px) {
	/*
	.proj_col4 section > a:hover {
		filter: grayscale(50%);
		opacity: .6;
	}
	*/
}
@media screen and (max-width: 899px) {
	.second .chara::before {
	  top: 10vw;
	  height: 100%;
	}
	.second .mens::before {
	  top: 0;
	  height:107%;
	}
	p.txtC {
	  text-align: left;
	}
	.proj_col4 {
	  padding-top: 1em;
	}
	.second .chara section ul li {
	  width: 100%;
	  margin: 0 0 1.5em 0;
	}
	.second .chara section ul li:nth-child(2n) {
	  margin: 0 0 1.5em 0;
	}
	.proj_col4 section > div.contact.top {
		flex-direction: column;
	}
	.proj_col4 section > div.contact.top a.bt_more {
		margin: 2em auto 4em;
	}
	.proj_col4 section > div.contact.top a.bt_more:nth-of-type(2) {
		margin: -2em auto 4em;
	}
}

/* 2階層目　Characters
-------------------------------------- */
.characters {
	padding: 2em 0;
	text-align: center;
}
.characters h3, .characters2 h3 {
  margin: 0 auto 2em;
  padding: 0;
  /* ロゴ画像に差し替える場合はこちら
  width: 71%;
  */
  width: 96%;
  max-width: 400px;
  font-size: clamp(16px, 5vw, 32px);
  text-align: center;
  font-weight: bold;
}
.characters2 {
	padding: 2em 0 3em;
	text-align: center;
}
@media screen and (max-width: 899px) {
	.characters {
		padding: 1em 0;
	}
	.characters h3 {
	  margin: 0 auto 1em;
	}
}

/* 2階層目　About us
-------------------------------------- */
.challenger {
	padding: 11em 0 0;
}
.challenger::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 175%;
  transform: skewY(7deg);
	background: #f4f4f4;
}
.challenger h3 {
  margin: 0 0 4rem;
  padding: 0;
  font-size: clamp(16px, 5vw, 31px);
  font-weight: bolder;
  line-height: 1.25;
  text-align: center;
}
.challenger2 {
	padding: 2em 0;
}
.challenger2 section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin-bottom: 5em;
}
.challenger2 section ul li {
  position: relative;
  width: 46%;
}
.challenger2 section ul li:last-child {
  width: 49%;
}
.challenger2 section ul li strong {
  display: block;
  font-size: 2.133em;
  font-weight: bold;
  margin: 5rem 0 0;
}
.challenger2 section ul li p {
  position: relative;
  display: block;
  margin-top: 2em;
  line-height: 2;
}
.challenger2 section ul li div {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1.5em;
  transform: skewY(7deg);
  border-radius: 8px;
  aspect-ratio: 432 / 200;
  overflow: hidden;
}
.challenger2 section ul li div img {
  position: absolute;
  inset: 0;
  margin: auto;
  transform: skewY(-7deg);
  height: 130%;
  object-fit: cover;
  object-position: center top;
}
.challenger2 section ul li div:nth-of-type(3) img {
  object-position: center bottom;
}
.challenger2 section ul li a.bt_more {
  margin: 2em auto 0;
}
@media screen and (max-width: 899px) {
	.challenger {
	  padding-top: 7.5em;
	}
	.challenger::before {
	  top: -7vw;
	  height: 175%;
	}
	.challenger h3 {
	  margin: 0;
	}
	.challenger2 {
		padding: 0;
	}
	.challenger2 section {
		width: 100%;
	}
	.challenger2 section ul {
	  justify-content: center;
	  margin: 3em 0 1.5em;
	}
	.challenger2 section ul li {
	  position: relative;
	  width: 100%;
	}
	.challenger2 section ul li:last-child {
	  width: 96%;
	}
	.challenger2 section ul li strong {
	  margin: 2rem 0 0;
	  text-align: center;
	}
	.challenger2 section ul li p {
    margin-top: 1.5em;
	}
	.challenger2 section ul li div {
	  border-radius: 0;
	}
}

/* 2階層目　オーディション
-------------------------------------- */
.second .contact.audition {
  margin: 2em auto 0;
  padding: 0 0 4em;
}
.contact.audition {
	background: #f4f4f4;
}
.contact.audition::before {
  content: '';
  position: absolute;
  display: block;
  top: -24%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 45%;
  transform: skewY(7deg);
  background: #f4f4f4;
}
.contact.audition h2 {
	width: 100%;
	max-width: none;
	margin: 0 auto 2em;
}
.contact.audition h2 img {
	width: 54.6%;
	max-width: 205px;
	margin: 0 auto 0.5em;
}
.contact.audition h2::before {
  content: none;
}
.contact.audition p {
	width: 100%;
}
@media screen and (max-width: 899px) {
	.second .contact.audition {
    margin: 6em auto 0;
    padding: 0 0 3em;
	}
	.contact.audition h2 {
		margin: 0 auto 1.5em;
	}
	.contact.audition::before {
	  top: -8vw;
	  width: 100%;
	  height: 45%;
	}
}

/* 2階層目　求人
-------------------------------------- */
.recruit {
	padding: 6em 0 0;
}
.recruit section {
	max-width: 550px;
}
.recruit section ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 2em 0 0;
	text-align: center;
}
.recruit section ul a {
	position: relative;
	display: block;
	width: 100%;
}
.recruit section ul li {
	position: relative;
	padding: 1em 0;
	margin-bottom: 2rem;
	background: #fff;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	font-size: 2.133em;
	line-height: 1;
}
.recruit section ul a:last-child li {
	margin-bottom: 0;
}
.recruit ul li::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 1em;
  width: 16px;
  height: 16px;
  background: url(../img/arrows1.png) center no-repeat;
  background-size: 100%;
  transform: translateY(-50%) rotate(-90deg);
}
.recruit section > img {
    width: 62%;
    max-width: 275px;
    margin: 6em auto 8em;
}
@media screen and (max-width: 899px) {
	.recruit {
		padding: 1em 0 0;
	}
	.recruit section ul {
		padding: 2em 0 0;
	}
	.recruit section ul li {
		margin-bottom: 2rem;
		font-size: 1.6em;
	}
}
@media screen and (max-width: 767px) {
	.recruit section > img {
	    margin: 3em auto 4em;
	}
}

/* 2階層目　Contact
-------------------------------------- */
.contact2 h2 {
	width: 54.6%;
	max-width: 351px;
	margin: 0 auto;
	text-align: center;
}
.contact_wrap {
	padding: 4em 0 0;
}
.contact_wrap section {
	max-width: 600px;
}
.contact_wrap h3 {
  padding: 0;
  font-size: clamp(15px, 4.2vw, 24px);
  font-weight: bolder;
  line-height: 1.5;
  text-align: center;
}
.contact_wrap section p {
	margin-top: 2em;
	line-height: 2;
	text-align: center;
}
.contact_wrap section p strong {
	display: block;
	font-size: 1.6em;
	line-height: 2rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.contact2 h2 {
		margin: 0;
		text-align: left;
	}
	.contact_wrap h3 {
	  text-align: left;
	}
	.contact_wrap {
		padding: 3em 0 0;
	}
	.contact_wrap section p:nth-of-type(1), .contact_wrap section p:nth-of-type(3) {
		text-align: left;
	}
}

/* 2階層目　Contact　フォーム
-------------------------------------- */
fieldset {
	border: none;
}
fieldset label {
	font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: normal;
  transition: all .3s ease;
}
fieldset a.bt_more {
	margin: 2em auto 3em;
}

/* 2階層目　著作権について
-------------------------------------- */
.copy {
  padding-top: 7.5em;
}
.contents.copy::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 160%;
  transform: skewY(7deg);
  background: #f4f4f4;
}
.contents.copy h3 {
  margin: 0 0 5rem;
  padding: 0;
  font-size: clamp(20px, 6.4vw, 40px);
  font-weight: bolder;
  line-height: 1;
  text-align: center;
}
.copyright{
	margin-bottom: 10em;
}
.copyright section {
	max-width: 700px;
}
.copyright section p {
	margin-top: 2em;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.contents.copy::before {
    top: -10vw;
    height: 400%;
	}
	.copyright{
		margin-bottom: 4em;
	}
}

/* SNS追加
-------------------------------------- */
p.sns, p.sns2 {
  position: absolute;
  right: 0;
  bottom: -0.5em;
  display: flex;
  justify-content: right;
	align-items: center;
}
p.sns a, p.sns2 a {
  margin-left: 0.5em;
}
p.sns a img, p.sns2 a img {
  display: inline-block;
  width: auto;
  height: 1.5em;
}
@media screen and (min-width: 900px) {
  p.sns a:hover, p.sns a:active, p.sns2 a:hover, p.sns2 a:active {
	  filter: none;
	  opacity: .6;
	  transition: all .3s ease;
  }
}
@media screen and (max-width: 899px) {
  p.sns2 {
	  position: relative;
	  right: 0;
	  bottom: 0;
	  display: flex;
	  justify-content: center;
		align-items: center;
		margin-top: 0.5em;
	}
}

/* トップバナー追加
-------------------------------------- */
.topbn section ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 3em 0 7em;
}
.topbn section ul li {
  position: relative;
  width: calc(100% / 2 - 1em);
  margin: 0 0 2em;
}
@media screen and (min-width: 900px) {
  .topbn a:hover, .topbn a:active {
	  filter: none;
	  opacity: .6;
	  transition: all .3s ease;
  }
}
@media screen and (max-width: 899px) {
	.topbn section ul {
	  margin: 3em 0 6em;
	}
	.topbn section ul li {
	  width: 100%;
	  margin: 0 0 1em;
	}
	.topbn section ul li:last-child {
	  margin: 0;
	}
}

/* スライダー
-------------------------------------- */
.slider {
  width: 100%;
  margin: 0 auto
  }
.slick-slide img {
	width: 100%;
	height: auto;
}
.slick-next {
}
.slick-prev {
	z-index: 1;
}
.slick-dots li button:before {
  opacity: .25;
  color: #fff;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #fff;
}
.slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}
@media screen and (max-width: 899px) {
  .slick-dots li button:before {
	  opacity: .25;
	  color: #fff;
  }
}

/*スライダーメインイメージ
-------------------------------------- */
.content {
	position: relative;
}
.slid_main {
	width: 100%;
	margin: 0;
}
.slid_main .slick-slide:not(.slick-center) {
	/*	filter: grayscale(100%);
	opacity: 0.5;
	transition: 0.2s linear; */
}
.slid_main .slick-slide {
    margin: 0 0.75em;
    border: 1px solid #aaa;
    border-radius: 10px;
    overflow: hidden;
}
.slid_main .slick-slide img {
	height: 45.25vw;
	object-fit: cover;
	object-position: top;
}
.slid_main .slick-dots li button:before {
  color: #0C316E;
}
.slid_main .slick-dots li.slick-active button:before {
  color: #0C316E;
}
@media screen and (max-width: 899px) {
	.slid_main .slick-slide img {
		height: 100vw;
		padding: 0;
	}
}

/*スライダー　キャラクター一覧
-------------------------------------- */
.slid_chara {
	width: 100%;
	margin: 0 auto;
}
.slid_chara .slick-slide:not(.slick-center) {
	/*	filter: grayscale(100%);
	opacity: 0.5;
	transition: 0.2s linear; */
}
.slid_chara .slick-slide img {
	padding: 0 0 1em;
}
.slid_chara .slick-dots li button:before {
  color: #0C316E;
}
.slid_chara .slick-dots li.slick-active button:before {
  color: #0C316E;
}
@media screen and (max-width: 899px) {
	.slid_chara .slick-slide img {
		padding: 0 0 0.5em;
	}
}

/* フェードイン
-------------------------------------- */
.trigger > div, .trigger section {
	opacity: 0;
}
.fadeIN > div, .fadeIN section {
	animation: fadeBside 1s .5s ease-out forwards;
}

/* 画角切替
-------------------------------------- */
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 899px) {
  .pc {
	  display: none;
  }
  .sp {
	  display: block;
  }
}

.destinat strong .pc {
	display: inline-block;
}
@media screen and (max-width: 899px) {
  .destinat strong .pc {
	  display: none;
  }
}
