@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;
}
html {
	scroll-behavior: smooth;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 20%;
  max-width: 130px;
  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%;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
	background: url("../images/bg.webp") no-repeat top center/100% 100% #000;
  background-attachment: fixed;
}
.bg_navy {
	background: radial-gradient(circle,rgba(44, 37, 89, 1) 0%, rgba(31, 33, 33, 1) 100%);
	position: relative;
	z-index: -2;
}
.bg_digital {
	position: absolute;
	max-width: 500px;
	width: 80%;
	z-index: -2;
}
.bg_digital.top {
	top: 0;
	left: 0;
}
.bg_digital.bottom {
	bottom: 0;
	right: 0;
}
.bg_digital.top-right {
	top: 0;
	right: 0;
}
.bg_op6 {
	background-color: rgba(0,0,0,0.60);
}
.bg_op8 {
	background-color: rgba(0,0,0,0.80);
}
.ozwald {
	font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;/*200~700*/
  font-style: normal;
}
.serif {
	font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  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;
}
.ls {
	letter-spacing: 3px;
}
.big {
	font-size: 125%;
}
.bold {
	font-weight: 700;
}
.bg_red {
	background-color: #bc1717;
}
.bg_gray {
	background-color: #323232;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	display: flex;
	align-items: center;
}
.flex_box.reverse {
	display: flex;
	flex-direction: row-reverse;
}
.flex_box.js {
	display: flex;
	justify-content: space-between;
}
.flex_box.jc {
	display: flex;
	justify-content: center;
}
.flex_box.fs {
	display: flex;
	align-items: flex-start;
}
.flex_box.ac {
	display: flex;
	align-items: center;
}
.w35 {
	width: 35%;
}
.w60 {
	width: 60%;
	margin: auto;
}
.w50 {
	width: 50%;
}
.flex_box.three {
	flex-wrap: wrap;
}
.flex_box.three li {
	width: 32%;
	margin-right: 2%;
}
.flex_box.three li:nth-of-type(3n) {
	margin-right: 0;
}
.flex_box.three li:nth-of-type(n+4) {
	margin-top: 4%;
}
/*-------------------------------------------------------------------------
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_menu {
	width: 100%;
	background-color:rgba(10,20,46,0.9);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 20px 0;
	position: fixed;
	top: 0;
	z-index: 10;
	box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
.menu {
	display: flex;
	justify-content: flex-end;
	color: #fff;
}
.menu li a {
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	margin-right: 30px;
	letter-spacing: 3px;
}
.menu li a:hover {
	animation: text-blur 1.0s;
}
@keyframes text-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(4px); /* ぼかしの強さ */
  }
  100% {
    filter: blur(0);
  }
  }
@keyframes btn-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(8px); /* ぼかしの強さ */
  }
  100% {
    filter: blur(0);
  }
  }
/* ----------------------------------------------
TOP
------------------------------------------------*/
.bg_navy.top_wrap {
	padding-top: 100px;
}
.flex_box.jc.top_logo {
	position: fixed;
	top: 20px;
	left: 20px;
	max-width: 400px;
	width: 70%;
	z-index: 5;
	align-items: center;
}
.flex_box.jc.top_logo .h_30 {
	width: auto;
	margin-right: 20px;
}
.flex_box.jc.top_logo .h_30 img {
	max-height: 30px;
}
.top_fix_height {
}
.top_ttl {
	text-align: center;
	letter-spacing: 5px;
	font-size: 2vw;
	font-weight: 700;
}
.top_box {
	padding: 30px 50px 0px;
}
.left_wrap {
	width: 60%;
}
.left_wrap img {
	box-shadow: 5px 5px 10px rgba(0,5,71,0.2);
}
.right_wrap {
	width: 35%;
	text-align: center;
}
.top_lead {
	font-size: 22px;
	font-weight: 600;
	padding: 0 0 15px;
	margin-bottom: 25px;
	letter-spacing: 3px;
	line-height: 1.2;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	text-align: center;
	
}
.obi {
	background: linear-gradient(90deg,rgba(209, 38, 38, 1) 0%, rgba(122, 10, 10, 1) 100%);
	text-align: center;
	padding: 10px 0;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 5px;
}
.bn_list {
	max-width: 650px;
	margin: 30px auto;
	width: 90%;
}
.bn_list li:nth-of-type(n+2) {
	margin-top: 20px;
}
/* -----------------------------------------------------------
BTN
-------------------------------------------------------------*/
.btn a {
  background: linear-gradient(90deg,rgba(72, 182, 201, 1) 0%, rgba(184, 239, 229, 1) 50%, rgba(249, 162, 121, 1) 100%);
  display: block;
  max-width: 500px;
  margin: 15px auto;
  border-radius: 10px;
  padding: 20px 0;
  position: relative;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	box-shadow: 3px 3px 10px rgba( 0,0,0,0.2);
	/*font-family: "Noto Serif JP", serif;*/
	letter-spacing: 5px;
	color: #0e1b3f;
}
.btn a::after {
  content: "";
  display: inline-block;
  background: url("../images/arrow.webp") no-repeat center center/ 100%;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1);
  right: 20px;
}
.btn.yet a {
	background: linear-gradient(284deg,rgba(84, 87, 105, 1) 0%, rgba(145, 147, 158, 1) 100%);
	color: #fff;
	pointer-events: none;
}
.btn.yet a::after {
	display: none;
}
/*.btn a:hover {
  animation: btn-blur 1.0s;
}*/
.btn a:hover::after {
	transition: transform .3s cubic-bezier(.59,-0.01,.26,.9);
	transform:translateY(-50%) scale(1.3);
}
.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;
}
/* ----------------------------------------------
SECTION
------------------------------------------------*/
.contents_wrap {
  padding: 100px 100px;
	border-bottom: 1px solid #fff;
}
#related.contents_wrap {
  padding-bottom: 30px;
}
main h2 {
  font-size: 36px;
	font-weight: 500;
  text-align: center;
  letter-spacing: 10px;
	padding-bottom: 30px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.0;
}
main h2.tal {
	padding-bottom: 50px;
}
main h2 span {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
	letter-spacing: 3px;
}
/* ----------------------------------------------
INFORMATION
------------------------------------------------*/
.info_tx {
	line-height: 1.8;
}
/* ----------------------------------------------------------
THE LATEST
------------------------------------------------------------*/
.youtube {
  width:60%;
  aspect-ratio:16/9;
	margin: 50px 0 30px;
}
iframe {
  width: 100%;
  height: 100%;
}
.content_num {
	font-size: 30px;
}
.content_lead {
	font-size: 18px;
	padding: 5px 10px 5px 20px;
	margin: 20px 0;
	background-color: #bc1717;
	display: inline-block;
}
.content_date {
	text-align: center;
	font-size: 48px;
	line-height: 1.6;
	font-weight: 400;
	margin: 20px 0;
}
.clock_ob {
	display: inline-block;
	background-color: #323232;
	margin:0 3px;
	padding: 0 8px;
}
.scene_list {	
	display: flex;
	justify-content: center;
	width: 100%;
}
.scene_list li {
	width: 19%;
	margin-right: 1%;
}
.scene_list li:last-of-type {
	margin-right: 0;
}
/* ----------------------------------------------------------
episode
------------------------------------------------------------*/
.content_name {
	font-size: 18px;
	padding: 25px 0 10px;
}
.episode_wrap li {
	margin-bottom: 30px;
}
.episode_wrap li:last-of-type {
	margin-bottom: 0;
}
/* ----------------------------------------------------------
campaign
------------------------------------------------------------*/
.cp_box {
	max-width: 1000px;
	width: 90%;
	margin: auto;
	background-color: rgba(255,255,255,0.1);
	text-shadow: 2px 2px 7px rgba(0,0,0,0.5);
	position: relative;
}
.end_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	align-content: center;
	text-align: center;
	font-size: 2.4em;
	line-height: 1.2;
}
.cp_ttl {
	text-align: center;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.5;
	background: linear-gradient(90deg,rgba(72, 182, 201, 1) 0%, rgba(184, 239, 229, 1) 50%, rgba(249, 162, 121, 1) 100%);
	color: #0e1b3f;
	padding: 10px ;
	text-shadow: 2px 2px 7px rgba(255,255,255,0.5);
}
.cp_inner {
	padding: 0 20px 20px;
}
.cp_lead {
	padding: 30px 0;
	line-height: 1.5;
	text-align: center;
}
.cp_date {
	background-color: #bc1717;
	text-align: center;
	padding: 5px 0;
	font-size: 18px;
	font-weight: 600;
}
.cp_list {
	text-align: center;
}
.cp_list li{
	margin: 10px 0;
}
.cp_list li.cp_list_ttl {
	background-color: rgba(0,0,0,0.2);
	padding: 3px 0;
}
.cp_img {
	max-width: 600px;
	margin: 20px auto;
	width: 90%;
}
.cp_box .btn a {
	text-shadow: 0 0 0 rgba(0,0,0,0);
}
/* ----------------------------------------------------------
規約
------------------------------------------------------------*/
.tokuten_scroll {
  color: #fff; 
  overflow: hidden;
	width: 100%;
  margin:0 auto ;
  font-size: 12px;
  font-weight: 400;
  padding: 1px;
	max-width: 1000px;
}
.tokuten_scroll .inn {
  height: 200px;
  overflow-y: scroll;
  text-align: left;
  background-color: rgba(0,12,35,0.5);
  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 {
  padding: 40px 0 10px;
}
.related_box {
	font-size: 14px;
	text-align: center;
}
/*----------------------------
ひかりTV
----------------------------*/
.white_bg {
	background-color: #fff;
	padding: 50px 0;
	position: relative;
}
.white_bg::after {
	content: "";
	display: inline-block;
	background: url("../images/kaesaru.webp") no-repeat center/100% ;
	width: 10%;
	height: 277px;
	position: absolute;
	right: 5%;
	bottom: 5px;
}
.btn.hikari a {
	background: #009be5;
	border: 0	;
	border-radius: 100px;
	font-family: "Noto Sans JP", sans-serif;
	padding: 20px 0;
	margin-top: 40px;
	margin-bottom: 0;
	color: #fff;
}
.attention {
	font-size: 14px;
	text-align: center;
	padding-top: 5px;
}
.white_bg .attention {
	font-size: 14px;
	color: #000;
	text-align: center;
}
/*----------------------------
追従
----------------------------*/
.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.webp") no-repeat top center/auto 100% #000;
}
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;
	background: none;
	font-size: 14px;
}
.tx_indent {
	padding-left: 1em;
	margin-left: 1em;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
.flex_box.reverse {
	flex-direction: column;
}
.flex_box.fs {
	flex-direction: column;
}
.flex_box.ac {
	flex-direction: column;
}
.w35 {
	width: 100%;
}
.w60 {
	width: 100%;
}
.w50 {
	width: 100%;
}
.flex_box.three {
	flex-wrap: wrap;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
.flex_box.three li {
	width: 48%;
	margin-right: 2%;
}
.flex_box.three li:nth-of-type(3n) {
	margin-right: 2%;
}
.flex_box.three li:nth-of-type(2n) {
	margin-right: 0;
}
.flex_box.three li:nth-of-type(n+3) {
	margin-top: 4%;
}
.flex_box>div {
	margin-bottom: 20px;
}
/* ----------------------------------------------
TOP
------------------------------------------------*/
.bg_navy.top_wrap {
	padding-top: 50px;
}

.flex_box.jc.top_logo {
	display: flex;
	flex-direction: row;
	top: 0;
	left: 0;
	width: 100%;
	justify-content: flex-start;
	background-color: #fff;
	padding: 15px 0 15px 10px;
}
.flex_box.jc.top_logo .h_30 {
	max-width: 200px;
	margin-right: 10px;
}
.flex_box.jc.top_logo .h_30 img {
	height: 20px;
	width: auto;
}
.top_fix_height {
	height: auto;
}
.top_ttl {
	font-size: 5vw;
	letter-spacing: 0;
	padding-bottom: 15px;
}
.top_box {
	padding: 0 0 0;
}
.left_wrap {
	width: 100%;
}
.right_wrap {
	width: 90%;
	margin: 15px auto;
}
.top_lead {
	font-size: 18px;
	padding: 0 0 10px;
	margin-bottom:10px;
	letter-spacing: 0;
	line-height: 1.2;
}
.obi {
	padding: 10px 0;
	font-size: 16px;
	letter-spacing: 0;
}
.bn_list {
	max-width: 500px;
	margin: 5px auto;
	width: 90%;
}
.bn_list li:nth-of-type(n+2) {
	margin-top: 15px;
}
/* ----------------------------------------------
SECTION
------------------------------------------------*/
.contents_wrap {
  padding: 60px 15px;
}
#related.contents_wrap {
  padding-bottom: 20px;
}
main h2 {
  font-size: 30px;
}
main h2 span {
  font-size: 24px;
}
/* ---------------------------------------
BTN
-----------------------------------------*/
.btn a {
  width: 90%;
  padding: 15px 0;
  font-size: 14px;
}
.btn a::after {
  width: 20px;
  height: 20px;
  right: 15px;
}
.btn .coming {
  width: 90%;
  height: 100%;
  font-size: 18px;
  padding: 10px 0;
}
/* ----------------------------------------------
INFORMATION
------------------------------------------------*/
.theday_logo {
	width: 80%;
	margin: auto;
}
/* ----------------------------------------------------------
THE LATEST
------------------------------------------------------------*/
.youtube {
  width:100%;
  aspect-ratio:16/9;
	margin: 0 0 30px;
}
.content_num {
	font-size: 24px;
}
.content_lead {
	font-size: 16px;
	padding: 5px 5px 5px 15px;
	margin: 20px 0;
	background-color: #bc1717;
	display: inline-block;
}
.content_tx {
	font-size: 14px;
}
.content_date {
	font-size: 30px;
	line-height: 1.6;
	font-weight: 300;
	margin: 0 0 20px; 
}
.clock_ob {
	margin:0 1px;
	padding: 0 5px;
}
.scene_list {	
	justify-content: center;
	flex-wrap: wrap;
}
.scene_list li {
	width: 32%;
	margin-right: 2px;
	margin-top: 2px;
}
/* ----------------------------------------------------------
episode
------------------------------------------------------------*/
.content_name {
	font-size: 16px;
	padding: 15px 0 10px;
}
.episode_wrap li {
	margin-bottom: 20px;
}
.related_box {
	font-weight: 300;
	font-size: 12px;
}
/* ----------------------------------------------------------
campaign
------------------------------------------------------------*/
.cp_box {
	width: 100%;
}
.cp_ttl {
	font-size: 21px;
}
.cp_inner {
	padding: 0 10px 10px;
}
.cp_lead {
	padding: 15px 0;
	font-size: 15px;
}
.cp_date {
	padding: 5px 0;
	font-size: 16px;
	line-height: 1.6;
}
/* ------------------------------------
規約
--------------------------------------*/
.tokuten_scroll {
  width: 100%;
  font-size: 12px;
}
.tokuten_scroll .inn {
  height: 220px;
  padding: 10px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 10px;
 }
/*----------------------------
ひかりTV
----------------------------*/
.white_bg {
	padding: 30px 15px;
}
.white_bg::after {
	display: none;
}
.btn.hikari a {
	padding: 20px 0;
	margin-top: 20px;
	margin-bottom: 0;
}
.white_bg .attention {
	font-size: 12px;
}
/*----------------------------
追従
----------------------------*/
.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: 40px;
  height:40px;
  right: 10px;
  top: 6px;
  z-index: 99999;
	background: linear-gradient(135deg,rgba(31, 31, 74, 1) 0%, rgba(0, 0, 0, 1) 100%);
	box-shadow: 0 1px 5px rgba(0,0,0,0.3);
	border-radius: 100%;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 16px;/*長さ*/
  background:  #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
}
#nav-open span:before {
  bottom: 7px;
}
#nav-open span:after {
  top: 7px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#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: center;
  font-size: 20px;
  padding-top: 60px;
  position: relative;
}
.nav_item li {
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 30px;
	width: 90%;
	margin: 0 auto 30px;
}
.nav_item li:last-of-type {
	border-bottom: 0;
}
.nav_item li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  color: #fff;
}
/*チェックがついたら表示させる*/
#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: 16px;
  left: 12px;
  width: 100px;
  max-width: 150px;
  z-index: 1000;
 }
}
.totop a {
	display: none!important
}
