@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
body {
  padding-bottom: 90px;
}
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;
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease, transform 2s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}
/* ----------------------------------------------------------------------------------------
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;
}
  .point_wrap > li:first-of-type {
    width: 100%;
  }
  .mt_music {
    margin-top: 60px;
  }
  
.strike-target {
  position: relative;
  display: inline-block;
  z-index: 2;
  color: #fff17f;
}

.strike-target::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 97%;
  height: 10px;
  background: linear-gradient(90deg,#b7b8f2 10%, #dac2fc 40%,#b7b8f2 60%, #dac2fc 70%, #e0d0e6 90%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s ease;
  z-index: 1;
  opacity: .3
}
#story .strike-target::after {
  bottom: 7px;
  width: 100%;
}
.strike-target.active::after {
  transform: scaleX(1);
}

.kv {
  width: 100%;
  overflow: hidden;
}

.kv img {
  display: block;
  margin: 0 auto;
}
  .sns_list li a:hover {
  transform: scale(1.05);
  transition: 0.3s all ease-in;
  border-color: #eae9e2;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  color: #474844;
	line-height: 1.2;
  background:#eae9e2;
  background-position: center;
  background-attachment: fixed;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;

}
/*----------------------------------------------------------------
汎用
----------------------------------------------------------------*/
.small {
	font-size: 75%;
}
.big {
	font-size: 125%;
}
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
.tac {
	text-align: center;
}
.ls5 {
	letter-spacing: 5px;
}
.ls0 {
	letter-spacing: 0;
}
.p15 {
	padding: 15px 0;
}
.gold_tx {
	color: #e1bd7a;
}
.mb20px {
  margin-bottom: 20px;
}

/*----------------------------------------------------------------
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;
  gap:1.3%;
}
.flex_box.four > * {
	width: 24%;
}
.w50 {
	width: 49%;
}
.mw_1000 {
	max-width: 1000px;
	margin: auto;
	width: 90%;
}
/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 100px 0;
	position: relative;
}
.l_inner {
  max-width: 1500px;
  margin: auto;
  width: 90%;
}
.parallax-container {
}
.parallax-content {
  clip-path: inset(0);
  width:100%;
  height:auto;
}
.parallax-content-1::after {
  content:'';
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100%;
  background-image: url("../images/bg_live_02.webp");
  background-size:cover;
  background-position: center;
}
.parallax-content-2::after{
  content:'';
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background: url("../images/bg_live_01.webp");
  background-size:cover;
  color:#000;
  background-position: center;
}
.parallax-content-3::after{
  content:'';
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background-image: url("../images/bg_live_02.webp");
  background-size:cover;
  color:#000;
  background-position: center;
}

/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.btn {
	position: relative;
	text-align: center;
}
.flex_box .btn {
	width: 48%;
}
.btn a {
	display: block;
	text-align: center;
	border-radius: 3px;
  background-color: #ad6f00;
	background-color: linear-gradient(110deg,#ad6f00 0%,#fec643 100%);
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 65px;
	align-content: center;
  line-height: 1;
  letter-spacing: 1px;
}
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;
	transition: 0.2s all ease-in;
}
span.arrow.brown {
	background-image: url("../images/arrow_b.webp");
}
.btn.lemino a {
	background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
	color: #fff;
  padding: 0;
}
.btn a:hover .arrow {
	transition: transform .3s cubic-bezier(.59,-0.01,.26,.9);
	transform:translateY(-50%) translateX(5px);
}
.btn.mw500 a {
	max-width: 500px;
	width: 90%;
	margin: auto;
}
.btn.cp a {
	background: linear-gradient(90deg,rgba(224, 25, 25, 1) 0%, rgba(148, 5, 19, 1) 100%);
	color: #fff;
}
.btn.yet a {
  background-color: #666!important;
  pointer-events: none!important;
  color: #fff!important;
}
/*----------------------------------------------------------------
header
----------------------------------------------------------------*/
.sns_list {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 40px 0;
}
.sns_list li {
	margin-right: 2%;
/*	font-size: min(1.1vw,24px);*/
  font-size: 17px;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 3px;
}
.sns_list li:last-of-type {
  margin-right: 0;
}
.sns_list li a {
  position: relative;
	transition: 0.4s all ease-in;
  padding-bottom: 7px;
  border-bottom: 1px solid;
}
/*
.sns_list li a::before {
  position: absolute;
}
*/
.sns_list li a span {
	transition: 0.4s all ease-in;
	color: #d479ff;
	font-size: min(1vw,14px);
  display: block;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.sns_list li a img {
	max-width: 100px;
	margin-right: 1%;
	text-align: center;
	transition: 0.2s all ease-in;
}
.sns_list li :last-of-type{
	margin-right: 0;
}

/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
h1 {
  width: 100%;
	text-align: center;
	background: #000000;
}
main h2 {
  margin-bottom: 70px;
  padding-top: 20px;
  text-align: center;
	line-height: 1.2;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 24px;
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
.youtube {
  margin: 0 auto 0;
  max-width: 700px;
  aspect-ratio:16/9;
}
iframe {
  width: 100%;
  height: 100%;
}
video {
	width: 100%;
  height: 100%;
}
/*----------------------------------------------------------------
CONTENTS
----------------------------------------------------------------*/
#contents .flex_box > div {
  width: 48%;
}
.contents_text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 1px;
}
.songs {
  margin-top: 25px;
  padding: 1em;
  background: #deddd6;
}
.songs h3 {
  margin-bottom: 5px;
  border-bottom: 1px solid #aeada8;
}
.songs li:nth-of-type(n+2) {
  margin-top: 3px;
}
.contents_info {
  margin-top: 60px;
}
.contents_info dt {
  text-align: center;
  font-size: 19px;
  margin-bottom: 25px;
}
.contents_info dt:nth-of-type(n+2) {
  margin-top: 50px;
}
.contents_info .flex_box {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#contents .flex_box > div.performer_im {
  width: 35%;
}
#contents .flex_box > div.performer_info {
  width: 62%;
  line-height: 2.2;
  letter-spacing: 1px;
  font-size: 14px;
}
.performer_info .name {
  font-size: 19px;
  margin-bottom: 10px;
}
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
#campaign h2 {
  color: #fff;
}
.cp_wrap {
	max-width: 1000px;
	width: 90%;
	margin: auto;
	position: relative;
  color: #fff;
}
.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_info {
  color: #fff;
}
.cp_img {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.cp_ttl {
	font-size: 25px;
	font-weight: 800;
	text-align: center;
	line-height: 160%;
}
.cp_lead {
	font-size: 22px;
	font-weight: normal;
	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.15);
	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 rgba(222, 180, 115, 1);
	font-weight: 600;
	font-size: 20px;
	text-indent: 0;
	margin-left:0;
	padding-bottom: 10px;
	margin-bottom: 10px;
  color: rgba(222, 180, 115, 1);
}
.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;
}
.campaign_inner {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}
.campaign_ttl_cap {
  text-align: center;
  font-size: 25px;
}
.campaign_ttl {
  margin-top: 10px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.5;
  color: #fff;
}
.campaign_cap {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}
.campaign_im {
  max-width: 800px;
  margin: 30px auto 0;
}
.cp_info {
  margin-top: 50px;
}
.cp_info dt {
  width: 100%;
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.cp_info dt::after {
content: "";
flex: 1;
height: 1px;
background: #fff;
margin-left: 12px;
}
.cp_info dt:nth-of-type(n+2) {
  margin-top: 50px;
}
.cp_info dd {
  margin-top: 15px;
}
.cp_info ul li {
  line-height: 1.5;
}
.cp_info ul li:nth-of-type(n+2) {
  margin-top: 10px;
}
#campaign .btn {
  margin-top: 50px;
}
#campaign .btn a {
  background: #b7d0b9;
  color: #474844;
}

#tocp_btn {
  position: fixed;
  width: 200px;
  right: 10px;
  bottom: 40px;
  transition: transform .5s ease;
}
#tocp_btn:hover {
  transform: scale(1.1);
  transition: transform .5s ease;
}
/* ----------------------------------------------------------
規約
------------------------------------------------------------*/
.tokuten_scroll {
  color: #fff; 
  overflow: hidden;
  width: 100%;
  margin:20px auto 0;
  font-size: 13px;
  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;
}
.copy {
	text-align: center;
	font-size: 12px;
	padding: 20px 0;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed.is-fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
/*  background-color:rgba(157,156,152,0.5);*/
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
	display: block;
	z-index: 55;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 14px;
	font-weight: normal;
}
.btn_wrap {
  display: flex;
  margin: auto;
  justify-content: center;
	width: 75%;
}
.btn.fix {
	max-width: 550px;
  width: 48%;
}
.btn.fix:last-of-type {
	margin-right: 0;
}
.btn.fix::before {
  display: none;
}
.btn.fix a {
   font-size: 18px;
	 border: 0;
	 letter-spacing: 0;
  min-height: 50px;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
}
.btn.fix {
  margin: auto!important;
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
	line-height: 1.2;
}
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.strike-target span{
  position: relative;
  display: inline-block;
  z-index: 2;
  color: #fff17f;
}

.strike-target span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg,#b7b8f2 10%, #dac2fc 40%,#b7b8f2 60%, #dac2fc 70%, #e0d0e6 90%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s ease;
  z-index: 1;
  opacity: .3
}
#story .strike-target span::after {
  bottom: 3px;
}
.strike-target.active span::after {
  transform: scaleX(1);
}

/*----------------------------------------------------------------
flex
----------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
.flex_box.ac {
	flex-direction: column;
}
h1 {
  width: 100%;
	background: none;
}
h1 img {
	width: 100%;
	margin: auto;
	height: auto;
}
/*----------------------------------------------------------------
bg
----------------------------------------------------------------*/
.inner_wrap {
	padding: 50px 0 60px;
}
/*----------------------------------------------------------------
BTN
----------------------------------------------------------------*/
.flex_box .btn {
	width: 90%;
	margin: 10px auto;
}
.btn a {
	font-size: 16px;
	letter-spacing: 0;
	min-height: 50px;
}
.btn span {
	font-size: 12px;
}
span.arrow {
	background: url("../images/arrow.webp") no-repeat center/100%;
	width: 25px;
	height: 25px;
}
/*----------------------------------------------------------------
TOP
----------------------------------------------------------------*/
main h2 {
  font-size: 17px;
  margin-bottom: 50px;
}
/*----------------------------------------------------------------
TRAILER
----------------------------------------------------------------*/
  .movie {
    padding-bottom: 30px;
  }
.youtube {
  width:90%;
}
/*----------------------------------------------------------------
CONTENTS
----------------------------------------------------------------*/
  #contents .flex_box > div {
    width: 100%;
  }
  .contents_text {
    font-size: 13px;
  }
  .songs {
    margin-top: 30px;
    font-size: 13px;
  }
  #contents .flex_box > div.performer_im {
    width: 60%;
    max-width: 400px;
    margin: 0 auto 15px;
  }
  #contents .flex_box > div.performer_info {
    width: 100%;
    font-size: 12px;
  }
  .performer_info .name {
    font-size: 17px;
    margin-bottom: 0;
  }
/*----------------------------------------------------------------
CAMPAIGN
----------------------------------------------------------------*/
.cp_wrap {
	margin-bottom: 0;
}
.cp_tx {
	font-size: 15px;
	margin: 20px auto;
}
.cp_ttl {
	font-size: 20px;
}
.cp_ttl span {
  font-size: 14px;
}
.cp_lead {
	font-size: 16px;
	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;
}
/*----------------------------------------------------------------
追従
----------------------------------------------------------------*/
.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 {
  
}
.btn.fix a {
  margin-top: 0;
  width: 100%;
  margin-bottom: 0;
  font-size: 12px;
	border-radius: 5px;
	min-height: 40px;
	align-content: center;
}
  /* ----------------------------------------------------------
キャンペーン
------------------------------------------------------------*/
.campaign_inner {
  border-radius: 10px;
}
.campaign_ttl_cap {
  font-size: 16px;
}
.campaign_ttl {
  font-size: 15px;
}
.campaign_cap {
  font-size: 14px;
  text-align: center;
}
.campaign_im {
  margin: 20px auto 0;
}
.cp_info {
  margin-top: 30px;
}
.cp_info dt {
  padding: 7px 10px;
  font-size: 14px;
}
.cp_info dt:nth-of-type(n+2) {
  margin-top: 30px;
}
.cp_info dd {
  margin-top: 15px;
  font-size: 13px;
}
.cp_info ul li:nth-of-type(n+2) {
  margin-top: 7px;
}
#campaign .btn {
  margin-top: 30px;
}
#campaign .btn a {
  width: 100%;
}
  .tokuten_scroll {
    font-size: 12px;
  }
#tocp_btn {
  position: fixed;
  width: 35%;
  max-width: 190px;
  right: -10px;
  bottom: 72px;
  transition: transform .5s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity .4s ease,
    transform .4s ease;
}

#tocp_btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#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;
	/*background: linear-gradient(90deg,rgba(254, 241, 59, 1) 0%, rgba(238, 136, 0, 1) 100%);*/
	color: #fff;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
	position: absolute;
	right: 15px;
  height: 1px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  box-shadow:  0 0 3px #474844,0 0 3px #474844,0 0 5px #474844;
}
#nav-open span.nav_line.first {
	top: 18px;
	width: 30px;
}
#nav-open span.nav_line.second {
	top: 26px;
}
#nav-open span.nav_menu {
	position: absolute;
	font-size: 9px;
	bottom: 0;
	right: 15px;
  text-shadow: 0 0 3px #474844,0 0 3px #474844,0 0 5px #474844;
}
/* アイコンがクリックされたらMENUを消す */
#nav-input:checked ~ #nav-open span.nav_menu {
  opacity: 0;
  text-shadow: none;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span.nav_line.first {
  transform: rotate(225deg);
	top: 26px;
  background: #474844;
  box-shadow: none;
}
#nav-input:checked ~ #nav-open span.nav_line.second {
  transform: rotate(-225deg);
	width: 30px;
  background: #474844;
  box-shadow: none;
}  
/*閉じる用の薄黒箇所*/
#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: 100%;
  height: 100vh;
  transition: .5s ease-in-out;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  color: #8ae6ff;
  background-size:cover;
  background-position: center;
	opacity: 0;
  background: #eae9e2;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	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: 20px;
  font-weight: 500;
  line-height: 160%;
  color: #474844;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
}
  .nav_menu {
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
    font-weight: normal;
  }
.nav_item li a span {
	font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #d479ff;
}
  .hum_sns_p {
    position: relative;
  }
.hum_sns {
	position: absolute;
  max-width: 120px;
  width: 25%;
  bottom: -40px;
  right: 5px;
  z-index: 2;
  transform: translateY(50%)
}
  
.gentle-tilt {
  animation: gentleTilt 4s ease-in-out infinite;
}

@keyframes gentleTilt {
  0%, 100% {
    transform: rotate(-3deg) translateY(50%);
  }
  50% {
    transform: rotate(3deg) translateY(50%);
  }
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-open span.nav_line{
  background-color: #fff;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	opacity: 1;
	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;
 }
}
