@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.totop a {
	display: none!important;
}
html {
	scroll-behavior: smooth;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 20%;
  max-width: 140px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  color: #fff;
	line-height: 1.2;
	background: url("../images/bg_past.webp") no-repeat top center /100% auto #000;
	background-attachment: fixed;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.5s ease-in-out;
  opacity: 0;
	transform: translateY(10px);
}
.scroll_up.on {
  opacity: 1.0;
	transform: translateY(0);
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
}
/*----------------------------------------------------------------
汎用
----------------------------------------------------------------*/
.small {
	font-size: 75%;
}
.big {
	font-size: 125%;
}
.bold {
	font-weight: 700;
}
.tac {
	text-align: center;
}
.ls5 {
	letter-spacing: 5px;
}
.ls0 {
	letter-spacing: 0;
}
.p15 {
	padding: 15px 0;
}
span.pink_bg {
	background-color: #f338a4;
	color: #F9F9F3;
}
.yellow_tx {
	color: #ffd400;
}
.bg_yellow {
	background-color: #ffd400;
	color: #151515;
	text-shadow: 0 0 0 rgba(0, 0, 0, 0);
	font-weight: 500;
}
.bg_red {
	background-color: #e80403;
	color: #fff;
}
/*----------------------------------------------------------------
flex
----------------------------------------------------------------*/
.flex_box {
	display: flex;
}
.flex_box.js {
	display: flex;
	justify-content: space-between;
}
.flex_box.jc {
	display: flex;
	justify-content: center;
}
.flex_box.ac {
	display: flex;
	align-items: center;
}
.flex_box.four {
	justify-content: space-between;
}
.flex_box.flex_box div {
	width: 24%;
}
.w19 {
	width: 19%;
}
.w30 {
	width: 30%;
	margin-right: 5%;
}
.w45 {
	width: 45%;
	margin-right: 5%;
}
.w50 {
	width: 50%;
}
.w65 {
	width: 65%;
	margin: auto;
}
.w75 {
	width: 75%;
	margin: auto;
}
.mw_1000 {
	max-width: 1000px;
	margin: auto;
	width: 90%;
}

/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 140px 0 100px;
	position: relative;
}
.bg_black {
	background: url("../images/bg_spatter.webp") repeat-y  top center /100% auto #000;
}
.bg_black::before {
	display: inline-block;
	content: "";
	width: 100%;
	min-height: 80px;
	background: url("../images/yabure_top.webp") no-repeat bottom center /100% auto;
	position: absolute;
	top: -70px;
	right: 0;
	z-index: 999;
}
.bg_black::after {
	display: inline-block;
	content: "";
	width: 100%;
	min-height: 80px;
	background: url("../images/yabure_under.webp") no-repeat bottom center /100% auto;
	position: absolute;
	bottom: -1.6%;
	right: 0;
	z-index: 999;
}
#campaign.bg_black::after {
	display: none;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn {
	position: relative;
	text-align: center;
}
.flex_box .btn {
	width: 48%;
}
.btn a {
	display: block;
	padding: 23px 0;
	text-align: center;
	border-radius: 100px;
	background: linear-gradient(90deg,rgba(254, 241, 59, 1) 0%, rgba(238, 136, 0, 1) 100%);
	color: #000;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 3px;
	position: relative;
	z-index: 0;
	width: 100%;
}
span.arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background: url("../images/arrow.webp") no-repeat center/35px;
	display: inline-block;
	width: 35px;
	height: 35px;
}
.btn.lemino a {
	background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
	padding: 10px 0;
	color: #fff;
}
.btn a:hover .arrow {
	transition: transform .3s cubic-bezier(.59,-0.01,.26,.9);
	transform:translateY(-50%) scale(1.2);
}
.btn.mw500 a {
	max-width: 500px;
	width: 90%;
	padding: 23px 0;
	margin: auto;
}
.btn.cp a {
	background: linear-gradient(90deg,rgba(224, 25, 25, 1) 0%, rgba(237, 95, 0, 1) 100%);
	color: #fff;
}
/*----------------------------------------------------------------
header
----------------------------------------------------------------*/
.sns_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding:5px 0;
	width: 100%;
	position: fixed;
  font-style: italic;
	z-index: 999;
}
.sns_list li {
	margin-right: 1%;
	font-size: 20px;
	text-align: center;
}
.sns_list li a {
	transition: 0.2s all ease-in;
}
.sns_list li a img {
	max-width: 65px;
	margin-right: 1%;
	text-align: center;
	transition: 0.2s all ease-in;
}
.sns_list li :last-of-type{
	margin-right: 0;
}
.sns_list li a:hover {
	color: #ffd400;
}
.sns_list li a:hover img {	
	transform:scale(1.05);
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
h1 {
  width: 100%;
	text-align: center;
	background: linear-gradient(0deg,rgba(128, 20, 20, 1) 0%, rgba(222, 44, 21, 1) 50%, rgba(0, 0, 0, 1) 100%);
}
h1 img {
	height: 100vh;
	margin: auto;
	width: auto;
}
main h2 {
  text-align: center;
	padding-bottom: 40px;
	font-size: 48px;
	letter-spacing: 5px;
  font-weight: 800;
  font-style: italic;
	line-height: 0.8;
	position: relative;
	text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
main h2::before {
	content: "";
	display: inline-block;
	background: url("../images/taxi.webp") no-repeat top center/100% 100%;
	width: 100px;
	height: 39px;
	position: absolute;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
	}
main h2 span {
	font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
	letter-spacing: 5px;
	font-size: 24px;
	background: linear-gradient(0deg,rgba(238, 136, 0, 1) 0%, rgba(254, 241, 59, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 0 rgba(0,0,0,0.0)
}
.top_date {
	text-align: center;
	font-size: 40px;
	padding:40px 0 ;
	line-height: 1.8;
	font-style: italic;
	letter-spacing: 2px;
	font-weight: 800;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.top_date span {
	background-color: #000;
	color: #ffce00;
	font-size: 28px;
	font-style: normal;
}
.lead_tx {
	text-align: center;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.8;
	padding:80px 0 20px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.pop {	
	max-width: 180px;
	position: fixed;
	right: 20px;
	bottom: 120px;
	z-index: 99999!important;
}
.pop a {
	position: relative;
	z-index: 99999!important;
}
.pop a:hover {
	transition: 0.3s all ease-in-out;
	transform: scale(0.95);
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
.youtube {
  width:700px;
  aspect-ratio:16/9;
	margin: auto;
}
iframe {
  width: 100%;
  height: 100%;
}
video {
	width: 100%;
  height: 100%;
}
/*----------------------------------------------------------------
STORY
----------------------------------------------------------------*/
#story.inner_wrap {	
	text-align: center;
}
.story_tx {
	line-height: 2;
	font-size: 1.3em;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
/*----------------------------------------------------------------
CAST
----------------------------------------------------------------*/
.cast_list {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto 60px;
	justify-content: center;
}
.cast_wrap {
	width: 48%;
	text-align: center;
	margin-right: 2%;
}
.cast_wrap:nth-of-type(n+3) {
	margin-top: 60px;
}
.cast_wrap:nth-of-type(2n) {
	margin-right: 0;
}
.cast_wrap:last-of-type {
	margin-right: 0;
}
.cast_img {
	width: 100%;
}
.cast_name {
	font-size: 1.3em;
	font-weight: 700;
	color: #000;
	padding: 5px 0;
}
.real_name {
	font-size: 1.8em;
	font-weight: 800;
	padding: 10px 0;
}
.cast_discription {
	line-height: 1.5;
	padding: 10px;
	background-color: rgba(255,255,255,0.15);
	margin-top: 10px;
}
/*----------------------------------------------------------------
前シリーズ
----------------------------------------------------------------*/
.series_box {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.series_box:nth-of-type(n+2) {
	margin-top: 80px;
}
.series_box .btn a {
	max-width: 500px;
	margin: 30px auto;
	width: 90%;
}
.year {
	display: inline-block;
	background-color: #ffce00;
	color: #000;
	font-size: 1.8em;
	font-weight: 800;
	padding: 5px;
	border-radius: 5px;
}
.series_ttl {
	font-size: 2.4em;
	font-weight: 800;
	padding: 30px 0;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.series_cap {
	margin-top: 20px;
	line-height: 1.6;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
/*----------------------------------------------------------------
DIAGRAM
----------------------------------------------------------------*/
.diagram_img {
	max-width: 900px;
	width: 80%;
	margin: auto;
}
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
.cp_wrap {
	max-width: 1000px;
	width: 90%;
	margin: auto;
	position: relative;
	
}
.end_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 5;
	font-size: 2em;
	text-align: center;
	align-content: center;
	font-weight: 600;
}
.cp_ttl {
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	line-height: 160%;
	padding-bottom: 20px;
}
.cp_lead {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
	padding-top: 20px;
}
.cp_tx {
	font-size: 18px;
	text-align: center;
	margin: 20px auto;
}
.cp_list {
	background-color:rgba(255,255,255,0.2);
	margin: 20px auto 0;
	padding: 20px;
}
.cp_list.attention {
	margin: 30px auto 60px;
	padding: 20px;
	font-size: 14px;
}
.cp_list li {
	text-indent: -1.2em;
	margin-left: 1.2em;
	padding: 5px 0;
	line-height: 1.4;
}
.cp_list.attention li {
	text-indent: -1.0em;
	margin-left: 1.0em;
	padding: 3px 0;
	font-weight: 400;
}

.cp_list .att_tx {
	text-indent: -1.0em;
	margin-left: 1.0em;
	font-size: 14px;
	padding: 3px 0;
}
.cp_list .list_ttl {
	border-bottom: 1px solid #ffd400;
	font-weight: 600;
	font-size: 20px;
	text-indent: 0;
	margin-left:0;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #ffd400;
}
.cp_list.attention li.list_ttl {
	margin-left: 0;
	text-indent: 0;
	padding-bottom: 10px;
}
.cp_list li a {
	text-decoration: underline;
	color: #00D7FB;
	display: inline;
}
.cp_wrap {
	margin-bottom: 100px;
}
.btn.cp a {
	max-width: 500px;
	width: 100%;
	margin: 30px auto;
}
/* ----------------------------------------------------------
規約
------------------------------------------------------------*/
.tokuten_scroll {
  color: #fff; 
  overflow: hidden;
  width: 100%;
  margin:20px auto 0;
  font-size: 12px;
  font-weight: 300;
  padding: 1px;
}
.tokuten_scroll .inn {
  height: 200px;
  overflow-y: scroll;
  text-align: left;
  background-color: rgba(255,255,255,0.15);
  padding: 15px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn .inn_box > ul > li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a{
  color: #fff;
  display: inline;
  text-decoration: underline;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
 }
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #fff;
    width: 10px;
    border-radius: 100px;
}
/*----------------------------------------------------------------
おすすめ作品
----------------------------------------------------------------*/
#contents h2 {
	font-size: 30px;
}
.contents_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	width: 90%;
	max-width: 1000px;
	margin: 50px auto 0;
}
.content {
	width:30%;
	margin-right: 5%;
	text-align: center;
	font-size: 14px;
}
.content:nth-of-type(3n) {
	margin-right: 0;
}
.content:nth-of-type(n+4) {
	margin-top: 4%;
}
.content p {
	padding-top: 5px;
}
.contents_copy {
	padding-top: 30px;
}
#recommend .btn.free {
	max-width: 400px;
	margin: 20px auto;
	width: 90%;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed.is-fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
  background-color:rgba(21,21,21,0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
	display: block;
	z-index: 55;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 10px;
}
.btn_wrap {
  display: flex;
  margin: auto;
  justify-content: center;
}
.btn.fix {
	width: 48%;
	margin-right: 2%;
}
.btn.fix:last-of-type {
	margin-right: 0;
}
.btn.fix::before {
  display: none;
}
.btn.fix a {
   padding: 24px 0;
   font-size: 18px;
   margin: 0 20px 0 0;
	 border: 0;
	 letter-spacing: 0;
}
.btn.fix.lemino a {
  background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
  padding: 22px 0;
	color: #fff;
	margin: 0;
}
@media screen and (max-width: 1100px) {
	
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  color: #fff;
	line-height: 1.2;
	background: none;
}
.wrapper::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background: url("../images/bg_past_sp.webp") no-repeat center center / 100% auto #000;
}
/*----------------------------------------------------------------
flex
----------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
.flex_box.ac {
	flex-direction: column;
}
.w30 {
	width: 100%;
	margin-right: 0;
}
.w45 {
	width: 100%;
	margin-right: 0;
}
.w50 {
	width: 100%;
}
.w65 {
	width: 100%;
}
.w75 {
	width: 100%;
	margin: auto;
}
h1 {
  width: 100%;
	background: none;
}
h1 img {
	width: 100%;
	margin: auto;
	height: auto;
}
main h2 {
	padding-bottom: 40px;
	font-size: 30px;
	letter-spacing: 0;
	line-height: 1.1;
}
main h2::before {
	width: 80px;
	height: 32px;
	top: -45px;
	}
main h2 span {
	font-size: 18px;
}
/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 100px 0 60px;
}
.bg_black {
	background: url("../images/bg_spatter_sp.webp") repeat-y  top center /100% auto #000;
}
.bg_black::before {
	min-height: 80px;
	background: url("../images/yabure_top_sp.webp") no-repeat bottom center /100% auto;
	position: absolute;
	top: -70px;
	right: 0;
	z-index: 999;
}
.bg_black::after {
	display: inline-block;
	content: "";
	width: 100%;
	min-height: 80px;
	background: url("../images/yabure_under_sp.webp") no-repeat bottom center /100% auto;
	position: absolute;
	bottom: -50px;
	right: 0;
	z-index: 999;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.flex_box .btn {
	width: 90%;
	margin: 10px auto;
}
.btn a {
	padding: 18px 0;
	font-size: 16px;
	letter-spacing: 0;
}
.btn span {
	font-size: 12px;
}
span.arrow {
	background: url("../images/arrow.webp") no-repeat center/25px;
	width: 25px;
	height: 25px;
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
.top_date {
	font-size:24px;
	padding:50px 0 10px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top_date span {
	font-size: 16px;
}
.lead_tx {
	font-size:1em;
	padding:20px 0;
}
.pop {	
	width: 30%;
	bottom: 95px;
	right: 10px;
	z-index: 999;
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
.youtube {
  width:90%;
	padding-bottom: 15px;
}
/*----------------------------------------------------------------
STORY
----------------------------------------------------------------*/
#story.inner_wrap p {	
	padding: 0 15px;
}
.story_tx {
	font-size: 16px;
}
/*----------------------------------------------------------------
CAST
----------------------------------------------------------------*/
.cast_list {
	flex-direction: column;
	width: 90%;
	margin: 0 auto 50px;
}
.cast_wrap {
	width: 100%;
}
.cast_wrap:nth-of-type(n+2) {
	margin-top: 40px;
}
.cast_wrap:nth-of-type(n+3) {
	margin-top: 40px;
}
.cast_name {
	font-size: 1.0em;
	padding: 3px 0;
}
.real_name {
	font-size: 1.5em;
}
.cast_discription {
	font-size: 14px;
}
.flex_box.poster {
	flex-direction: row;
	flex-wrap: wrap;
	width: 90%;
	justify-content: center;
}
.flex_box.poster li {
	width: 48%;
	margin-right: 2%;
	margin-top: 2%;
}
.flex_box.poster li:nth-of-type(2n) {
	margin-right: 0;
}
.flex_box.poster li:last-of-type(2n) {
	margin-right: 0;
}
/*----------------------------------------------------------------
前シリーズ
----------------------------------------------------------------*/
.series_box {
	width: 90%;
}
.series_box:nth-of-type(n+2) {
	margin-top: 60px;
}
.series_box .btn a {
	margin: 30px auto;
	width: 100%;
}
.year {
	font-size: 1.5em;
	padding: 3px;
	border-radius: 5px;
}
.series_ttl {
	font-size: 1.8em;
	padding: 15px 0;
}
.series_cap {
	font-size: 14px;
}
.series_box .flex_box.four {
	flex-direction: row;
	flex-wrap: wrap;
}
.series_box .flex_box.four div {
	width: 49%;
}
.series_box .flex_box.four div:nth-of-type(n+3) {
	margin-top: 1%;
}
/*----------------------------------------------------------------
DIAGRAM
----------------------------------------------------------------*/
.diagram_img {
	width: 90%;
}
/*----------------------------------------------------------------
SCHEDULE
----------------------------------------------------------------*/
.schedule_table tr {
	font-size: 1.5em;
}
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
/*.cp_wrap {
	padding: 0 15px;
}*/
.cp_tx {
	font-size: 15px;
	margin: 20px auto;
}
.cp_ttl {
	font-size: 20px;
	padding-bottom: 10px;
}
.cp_lead {
	font-size: 18px;
	padding-top: 10px;
}
.cp_list {
	margin: 20px auto 0;
	padding: 10px;
}
.cp_list li {
	padding: 5px 0;
	font-size: 14px;
	font-weight: 400!important;
}
.cp_list .list_ttl {
	padding-bottom: 8px;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 500;
}
.btn.cp a {
	font-size: 16px;
	letter-spacing: 0;
}
/*----------------------------------------------------------------
おすすめ作品
----------------------------------------------------------------*/
.contents_list {
	margin: 0px auto 0;
}
.content {
	width:48%;
	margin-right: 2%;
	font-size: 12px;
}
.content:nth-of-type(3n) {
	margin-right: 2%;
}
.content:nth-of-type(2n) {
	margin-right: 0;
}
.content:nth-of-type(n+3) {
	margin-top: 4%;
}
.content p {
	padding-top: 5px;
}
.contents_copy {
	padding-top: 30px;
	font-weight: 400;
	font-size: 11px;
}
.copy {
	text-align: center;
	padding-bottom: 20px;
}
/*----------------------------------------------------------------
追従
----------------------------------------------------------------*/
.lp_cta_fixed .point_cp {
  font-size: 12px;
  padding-bottom: 5px;
}
.btn_wrap {
  display: flex;
  width: 98%;
  margin: auto;
  justify-content: space-between;
}
.btn.fix {
  width:100%;
}

.btn.fix a {
  margin-top: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
	border-radius: 10px;
	height: 40px;
	padding: 0;
	align-content: center;
}
.btn.fix.lemino a {
	padding: 0;
} 
.btn.fix a .s_text {
  font-size: 9px;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  position: relative;
	font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.nav-unshown {
  display:none;/*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height:50px;
  right: 0;
  top: 0;
  z-index: 99999;
	border-radius: 0 0 0 10px;
	background: linear-gradient(90deg,rgba(254, 241, 59, 1) 0%, rgba(238, 136, 0, 1) 100%);
	color: #000;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
	position: absolute;
	left: 15px;
  height: 3px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #000;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 20px;
}
#nav-open span.nav_line.first {
	top: 12px;
}
#nav-open span.nav_menu {
	position: absolute;
	font-size: 9px;
	bottom: 3px;
}
/* アイコンがクリックされたらMENUを消す */
#nav-input:checked ~ #nav-open span.nav_menu {
  opacity: 0;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span.nav_line.first {
  transform: rotate(225deg);
	top: 23px;
}
#nav-input:checked ~ #nav-open span.nav_line.second {
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 300px;
  height: 100vh;
	background: url("../images/bg_spatter_sp.webp") repeat-y  top center /100% auto #000;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	border-bottom:1px solid #ffd400;
	padding-bottom: 15px;
	margin: 0 0 15px;
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #791f97;
}
.nav_item li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.nav_item li a span {
  font-family: "gooddog-new", sans-serif,Optima;
	font-weight: 400;
	font-style: normal;
	font-size: 30px;
}
.hum_sns {
	display: flex;
	justify-content: center;
	align-content: center;
}
.hum_sns li a {
	max-width: 70px;
	margin: auto;
}
.hum_sns li {
	margin-right: 10px;
}
.hum_sns li:last-of-type {
	margin-right: 0;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	height: 100vh;
}
.header_menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}
}
@media screen and (max-width: 370px) {
	.btn::before {
	display: none;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
 }
}
