@charset "UTF-8";
/*===================================================================================
背景　Star
==================================================================================*/
#starry_sky {
  width: 100%;
  height: 100%;
  position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
.star {
  background-color: #FFFDDE;
  position: relative;
  border-radius: 50%;
  animation-name: twinkle;
  animation-iteration-count: infinite;
  box-shadow: 0 0 10px #fff;
}
@keyframes twinkle {
  50% {
    transform: scale(0.2);   
  }
} 
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
html {
	scroll-behavior: smooth;
}

/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 20%;
  max-width: 100px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif,YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  background: linear-gradient(90deg,rgba(255, 227, 240, 1) 0%, rgba(255, 235, 230, 1) 50%, rgba(255, 252, 232, 1) 100%);
}
.wrapper {
  min-height: 100vh;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  line-height: 150%;
  color: #122143;
  height: 100%;
}
.bg_wrap {
	background-image: url("../images/bg_kira.webp");
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
  z-index: 0;
  animation: opacity 3s cubic-bezier(0.33, 1, 0.68, 1) infinite;
  width: 100%;
  height: 100vh;
  position: fixed;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main_inner {
  position: relative;
  z-index: 2;
}
.abril {
	font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}
.serif {
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
a.push:hover {
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(0.52,-0.37,0.45,1.4);
}
.tx_indent {
	padding-left: 1.5em;
	margin-left: 1.5em;
}
.big {
	font-size: 125%;
}
.from_to_arrow {
	max-width: 50px;
	margin: auto;
	transform: rotate(-90deg);
}
.red_tx {
	color: #FF2428;
}
.bg_red {
	background-color: #FF2428;
}
.m_auto{
  margin: auto;
}
.p10 {
	padding: 10px 0;
}
.yellow_tx {
	color: #ffd100;
}
.w100	{
	width: 100%;
}
.mw700{
  max-width: 700px;
}
.mb2em {
  margin-bottom: 2em!important;
}
.mb1em {
  margin-bottom: 1em!important;
}
.margin0 {
  margin: 0!important;
}
.text_bg {
  display: inline-block;
  background: linear-gradient(90deg,rgba(255, 156, 145, 1) 0%, rgba(255, 112, 193, 1) 100%);
  color: #122143;
  font-weight: bold;
  padding: 2px 10px;
}
.gold_tx {
  background: linear-gradient(120deg,rgba(109, 75, 47, 1) 0%,  rgba(212, 155, 81, 1) 15%,rgba(153, 92, 60, 1) 30%,rgba(179, 121, 87, 1) 50%, rgba(109, 75, 47, 1) 65%, rgba(201, 142, 96, 1) 75%,rgba(212, 155, 81, 1) 90%, rgba(153, 92, 60, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fw_b{font-weight: bold!important;}
.coming_soon {
  text-align: center;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  letter-spacing: 3px;
  padding: 50px 0;
}
.tac  {
  text-align: center!important;
}
.mt0 {
  margin-top: 0!important;
}
.mb0 {
  margin-bottom: 0!important
} 
.pt0 {
  padding-top: 0!important;
}
.pb0 {
  padding-bottom: 0!important;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	display: flex;
	align-items: center;
}
.flex_box.js {
	display: flex;
	justify-content: space-between;
}
.flex_box.jc {
	display: flex;
	justify-content: center;
}
/*-------------------------------------------------------------------------
scroll_up ｜下から上へ出現
-------------------------------------------------------------------------*/
.scroll_up {
  transition: 0.8s ease-in;
  opacity: 0;
}
.scroll_up.on {
  opacity: 1.0;
}
.start {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
  opacity: 0;
  transform: translateY(50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}
/* ----------------------------------------------
header
------------------------------------------------*/
.head_bg {
  background-color: #122143;
  width: 100%;
  height: 70px;
}
.head_menu {
	width: 99%;
  height: 50px;
	background-color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: fixed;
	top: 10px;
  left: 50%;
  transform: translateX(-50%);
	z-index: 10;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(51, 51, 51, 0.3);
}
.menu {
	display: flex;
	justify-content: flex-end;
	color: #122143;
}
.menu li.now a {
	color: #29beef;
  pointer-events: none;
}
.menu li a {
	display: block;
	margin-right: 20px;
	text-align: center;
	font-size: 12px;
  line-height: 1.2;
}
.menu li a:hover {
	color: #fd5a82;
	transition: 0.5s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.menu li a span {
	font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
	font-size: 14px;
	letter-spacing: 1px;
}
.sns_list {
	display: flex;
	justify-content: flex-end;
}
.sns_list li {
	margin-right: 5px;
}
.sns_list li a {
	width: 30px;
  transition: .6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.sns_list li a img {
  display: block;
  width: 100%;
}
/* -----------------------------------------------------------
BTN
-------------------------------------------------------------*/
.btn a {
  background: linear-gradient(90deg,rgba(255, 201, 226, 1) 0%, rgba(255, 204, 204, 1) 100%);
  display: block;
  max-width: 500px;
  margin: 15px auto;
  border-radius: 100px;
  color:#122143;
  position: relative;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
  height: 55px;
  align-content: center;
}
.btn a::after {
  content: "";
  display: inline-block;
  background: url("../images/playbtn_navy.png") no-repeat center center/ 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.btn a:hover::after {
  transition: all 0.2s ease-in;
	right: 15px;
}
.btn.navy a {
	background: #122143;
	color:#ffd7e9;
}
.btn.red a {
	background: #ff0033;
	color:#fff;
}
.btn.navy a::after {
  background: url("../images/playbtn_pink.png") no-repeat center center/ 100%;
}
.btn.red a::after {
  background: url("../images/playbtn.png") no-repeat center center/ 100%;
}
.btn.end_btn a {
	background: linear-gradient(90deg,rgba(158, 158, 158, 1) 0%, rgba(94, 94, 94, 1) 100%);
	pointer-events: none;
	color: #fff;
}
.btn.end_btn a::after {
	display: none;
}
.btn {
  position: relative;
}
.btn .coming {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(21,21,21,0.7);
  width: 70%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 100px;
  text-align: center;
  padding: 10px 0;
  z-index: 3;
}

.btn.lemino a {
  background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
	color: #fff;
}
.btn.lemino a::after {
  content: "";
  display: inline-block;
  background: url("../images/playbtn.png") no-repeat center / 20px;
  width: 20px;
  height: 20px;
}

/* ----------------------------------------------
SECTION
------------------------------------------------*/
.contents_wrap {
  padding: 60px 0;
}
.bg_navy {
	background-color: #fff;
	color:#ffd7e9;
	padding: 120px 50px;
  position: relative;
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  z-index: 0;
}
.bg_navy::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
  background-color: #122143; 
  z-index: -1;
}
.bg_navy.end {
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.bg_navy.end::before {
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.bg_navy h2 {
	text-align: left;
	border-bottom: 1px solid #ffd7e9;
  margin-bottom: 40px;
}
main h2 {
  font-size: 16px;
	font-weight: 500;
  text-align: center;
  line-height: 180%;
  letter-spacing: 2px;
	padding-bottom: 30px;
}
main h2 span {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  text-shadow: 2px 2px 0 #fff;
}
main .bg_navy h2 span,.tab.blue h2 span{
  text-shadow: 3px 3px 0 #122143,4px 4px 0 rgba(255,255,255,0.5);
}
li.small {
  line-height: 1.2;
  font-size: 80%!important;
} 
.back_link {
  text-align: center;
  margin-top: 30px;
}
.back_link.line a {
  display: inline-block;
  position: relative;
}
.back_link.line a::before {
  display: inline-block;
  content: "";
  background: url("../images/btn_left.webp") no-repeat top left / 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 4px;
  left: -25px;
}
.back_link.line a::after {
  background-color: #122143; 
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform .3s;
}
.back_link.line a:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
/* =======================================================================================
NEWS 一覧ページ
 =======================================================================================*/
 h1 {
 	text-align: center;
	background: linear-gradient(90deg, rgba(255, 113, 200, 1) 0%, rgba(255, 144, 149, 1) 35%, rgba(255, 172, 131, 1) 100%);
 }
h1 img {
	max-width: 160px;
	width: 90%;
	margin: auto;
	padding: 20px 0;
}
.news_list {
	max-width: 1000px;
	width: 85%;
	margin: auto;
}
.news {
	border-bottom: 1px solid #122143;
}
/*.news:last-of-type {
	border-bottom: 0 solid #122143;
}*/
.news a {
	display: flex;
  justify-content: space-between;
  align-items: center;
	position: relative;
	padding: 30px 15px 30px;
}
.news a:hover {
	background-color: rgba(255, 143, 210, 0.1);
	transition: all 0.5s ease-in-out;
}
.news_ttl {
	font-size: 24px;
	font-weight: 600;
  display: flex;
  justify-content: space-between;
  width: 70%;
  align-items: center;
}
.news_date {
	font-size: 20px;
  width: 30% ;
}
.news_date span{
	background-color: #122143;
	color: #ffd7e9;
	display: inline-block;
	padding: 0 15px;
	margin-left: 10px;
  font-size: 14px;
  border-radius: 30px;
}
.news_ttl::after {
  display: inline-block;
  content: "";
  background: url("../images/arrow.webp") no-repeat top right / 100%;
  width: 60px;
  height: 8px;
}
.news:hover {
	right: 0;
	transition: all 0.5s ease-in-out;
}
.intervew_page .news_ttl{
  width: 98%;
  margin: auto;
}

/* =======================================================================================
NEWS 子ページ
 =======================================================================================*/
 .news_inner {
 	max-width: 1000px;
	width: 90%;
	margin: auto;
 }
 .pankuzu {
 	padding-bottom: 20px;
  font-size: 14px;
 }
 .news_inner .news_ttl {
 	border-bottom: 1px solid #122143;
	padding-bottom: 20px;
  width: 100%;
 }
 .news_inner .news_ttl::after {
   display: none;
 }
 .i_box {
   padding: 25px 0;
   border-bottom: 1px solid #fccacf;
 }
 .news_inner .news_date {
   padding-bottom: 15px;
 }
 .news_q {
	 font-weight: 700;
	font-size: 14px;
  display: flex;
  align-items: flex-start;
 }
 .news_q::before {
   display: inline-block;
   content: "Q.";
   margin-right: 10px;
   font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #ff6c9b;
 }
 .news_tx::before {
   display: inline-block;
   content: "A.";
   margin-right: 10px;
   font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #ff6c9b;
 }
 .news_tx {
 	padding: 30px 0 0;
	font-size: 14px;
  display: flex;
 }
.news_q +  .news_tx{padding-top: 15px;}
 .news_inner .flex_box.three {
 	flex-wrap: wrap;
 }
 .news_inner .flex_box.three li {
 	width: 32%;
	margin-right: 2%;
 }
 .news_inner .flex_box.three li:nth-of-type(3n) {
	margin-right: 0;
 }
 .news_inner .flex_box.three li:nth-of-type(n+4) {
	margin-top: 2%;
 }
 .news_page .news_tx, .news_page .news_q{
   display: block;
 }
 .news_page .news_q::before {
   display: none;
 }
 .news_page .news_tx::before {
   display: none;
 }
/* ---------------------------------------
PAGE TOPボタン
-----------------------------------------*/
.totop a {
 display: none;
}
#totop_btn {
 width: 110px;
}
#totop_btn.is-fixed {
 position: fixed;
 right: 15px;
 bottom: 10px;
 z-index: 1001;
}
.top.season1#totop_btn.is-fixed {
 position: fixed;
 right: 15px;
 bottom: 100px;
 z-index: 1001;
}
/*----------------------------
追従
----------------------------*/
.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;
  }
.lp_cta_fixed .point_cp {
  text-decoration: underline;
  font-size: 16px;
  padding-bottom: 10px;
}
.btn_wrap {
  display: flex;
  width: 70%;
  margin: auto;
  justify-content: space-between;
}
.btn.fix {
  width: 49%;
}
.btn.fix a {
   width: 100%;
   height: 55px;
   padding: 19px;
   font-size: 18px;
   margin: 0;
}
.btn.fix.lemino a {
  background: linear-gradient(90deg, rgba(255,168,49,1) 0%, rgba(255,40,135,1) 100%);
  padding: 12px;
	color: #fff;
}
.btn.fix a .s_text {
  font-size: 14px;
}
.btn.fix a::after {
  content: "";
  display: inline-block;
  background: url("../images/playbtn.png") no-repeat center / 25px;
  width: 25px;
  height: 25px;
}
.btn.fix a:hover::after {
  transition: all 0.4s cubic-bezier(0.52,-0.37,0.45,1.4);
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
/*.wrapper::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../images/bg_sp.webp") no-repeat top left /100% auto, url("../images/grid_white.webp") repeat top left /15px 15px #ffc600;
}*/
body {
  font-family: "Noto Sans JP", sans-serif,YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
}
main {
	padding-top: 0;
}
.tx_indent {
	padding-left: 1em;
	margin-left: 1em;
}
#performers,#ticket {
  scroll-margin-top: 0;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
/* ----------------------------------------------
SECTION
------------------------------------------------*/
.contents_wrap {
  padding: 40px 0;
}
main h2 {
  font-size: 16px;
  line-height: 160%;
}
main h2 span {
  font-size: 32px;
}
/* ---------------------------------------
BTN
-----------------------------------------*/
.btn a {
  width: 90%;
  padding: 10px 0;
  font-size: 14px;
}
.btn a::after {
  background: url("../images/playbtn.png") no-repeat center center/ 15px 15px;
  width: 15px;
  height: 15px;
  right: 10px;
}
.btn .coming {
  width: 90%;
  height: 100%;
  font-size: 18px;
  padding: 10px 0;
}
/* =======================================================================================
NEWS 一覧ページ
 =======================================================================================*/
 .head_bg {
   display: none;
 }
h1 {
	width: 100%;
}
h1 img {
	width: 30%;
	padding: 20px 0 10px;
}
h1 {
 	text-align: center;
	background: linear-gradient(90deg, rgba(255, 113, 200, 1) 0%, rgba(255, 144, 149, 1) 35%, rgba(255, 172, 131, 1) 100%);
 }
/* =======================================================================================
NEWS 子ページ
 =======================================================================================*/
 .news_inner .news_ttl {
	padding-bottom: 20px;
 }
 .news_inner .news_date {
   padding-bottom: 10px;
   font-size: 14px;
 }
 .news_inner .news_ttl {
   padding-left: 0;
   padding-bottom: 10px;
   font-size: 15px;
 }
 .news_page .news_inner .news_tx {
   padding-top: 15px;
 }
 .news_q {
   font-size: 12px;
   line-height: 1.6;
 }
 .news_q::before {
   margin-right: 5px;
  font-size: 20px;
  transform: translateY(-7px);
 }
 .news_tx::before {
   margin-right: 10px;
  font-size: 20px;
  transform: translateY(-7px);
 }
 .news_list {
	width: 90%;
}
 .news a {
	padding: 15px 0;
  display: flex;
  justify-content: space-between;
}
 .news_date {
	font-size: 12px;
  width: 20%;
  padding-bottom: 0;
   text-align: center;
   line-height: 1;
}
.news_date span {
  font-size: 10px;
  margin-left: 0;
   padding: 3px 10px;
   display: inline-block;
   margin-top: 5px;
}
 .news_ttl {
	font-size: 14px;
	line-height: 160%;
  width: 80%;
  padding-left: 10px;
}
.news_ttl::after {
  width: 30px;
  height: 4px;
}
.intervew_page .news_ttl{
  padding-left: 0;
}
 .news_tx {
  line-height: 1.8;
  font-size: 12px;
 }
 .flex_box.three {
 	flex-direction: row;
 }
 .news_inner .flex_box.three li {
 	width: 48%;
	margin-right: 2%;
 }
 .news_inner .flex_box.three li:nth-of-type(3n) {
	margin-right: 2%;
 }
 .news_inner .flex_box.three li:nth-of-type(2n) {
	margin-right: 0;
 }
 .news_inner .flex_box.three li:nth-of-type(n+3) {
	margin-top: 2%;
 }
/* ---------------------------------------
PAGE TOPボタン
-----------------------------------------*/
#totop_btn {
 width: 80px;
}
#totop_btn.is-fixed {
 right: 2px;
 bottom: 10px;
}
.top.season1#totop_btn.is-fixed {
 right: 2px;
 bottom: 90px;
}
/*----------------------------
追従
----------------------------*/
.lp_cta_fixed {
	z-index: 10;
}
.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: 98%;
}
.btn.fix a {
  margin-top: 0;
  width: 98%;
  height: 55px;
  margin-bottom: 0;
  font-size: 12px;
  padding: 18px 0;
}
.btn.fix.lemino a {
  padding: 13px 5px;
}
.btn.fix a .s_text {
  font-size: 9px;
}
.btn.fix a::after {
  display: none;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  position: relative;
}
.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(175deg,rgba(255, 113, 200, 1) 0%, rgba(255, 144, 149, 1) 35%, rgba(255, 172, 131, 1) 100%);
	box-shadow: 0 1px 5px rgba(0,0,0,0.3);
	border-radius: 0 0 0 10px;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 16px;/*長さ*/
  background:  #122143;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 10px;
	color: #122143;
}
#nav-open span {
	background-: rgba(0,0,0,0.0);
}
#nav-open span .menu_tx {
 position: absolute;
 bottom: -18px;
 right: -5px;
 font-weight: bold;
 font-size: 9px;
}
#nav-open span:before {
  bottom: 10px;
}
#nav-open span:after {
  top: 0;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#nav-input:checked ~ #nav-open span {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span::before {
  bottom: 0;
  transform: rotate(225deg);
}
#nav-input:checked ~ #nav-open span::after {
  top: 0;
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #122143;
  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: 100%;
  background:#122143;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: left;
  padding:60px 30px 0;
  position: relative;
}
.nav_item::before {
  display: inline-block;
  content: "";
  background: url("../images/bg_line_01_sp.webp") no-repeat center center/100% auto;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -50%;
  left: 0;
}
.nav_item li {
  border-bottom: 1px solid #5e677c;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.nav_item li a {
  display: inline-block;
  font-size: 12px;
  font-weight: 3300;
  line-height: 160%;
  color: #ffd7e9;
}
.nav_item li.now a {
  color: #d7f3ff;
}
.nav_item a span {
  font-size: 18px;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
#nav-content .sns_list {
	justify-content: center;
	padding-top: 20px;
}
#nav-content .sns_list li {
	margin-right: 8px;
}
#nav-content .sns_list li:last-of-type {
	margin-right: 0;
}
#nav-content .sns_list li a{
	width: 35px;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.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) {
  .lead {
    font-size: 16px;
  }
  .works_wrap h3 {
    font-size: 16px;
  }
}
/* ----------------------------------------------------------------------------------------
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;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 12px;
  width: 100px;
  max-width: 150px;
  z-index: 1000;
 }
}
