@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
  -webkit-transition: all 300ms ease-in-out;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
img {
	width: 100%;
	height: 100%;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 30px;
  width: 20%;
  max-width: 130px;
  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;
  /*background: url("../images/bg_pc.png") no-repeat top left /100% 100% #deddf3;*/
	background-color: #060a23;
  background-attachment: fixed;
  line-height: 1.5;
  color: #fff;
	
}

.copy {
  text-align: center;
  font-size: 12px;
}
small {
	font-size: 75%;
}
.big {
	font-size: 125%;
}
.bold {
	font-weight: bold;
}
.tac {
	text-align: center;
}
.en_font {
	font-family: "effra", sans-serif;
	font-weight: 400;/*300~900*/
	font-style: normal;
}
.jp_font {
	font-family: "ab-quadra", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.pink_bg {
	background-color: #ff4791;
	display: inline-block;
	padding: 0 5px;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 1.0s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.start {
  display: none;
}
/* -------------------------------------------------------------------
header
---------------------------------------------------------------------*/
.menu.pc {
  background-color: #fff;
  padding: 5px 0 5px 30px;
  display: flex;
  justify-content: flex-end;
  color: #060a23;
  text-align: center;
	font-weight: 600;
	font-size: 1.2em;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	align-items: center;
	border-radius: 0 0 20px 20px;
	width: 100%;
}
.menu.pc li {
	margin-right: 30px;
}
.menu.pc li.img {
	margin-right: 15px;
}
.menu.pc li a {
  display: block;
}
.menu.pc li.img a {
}
.menu.pc li.img a img {
	height: 50px;
}
.menu.pc li a:hover {
	color: #0080ff;
	transition: 0.3s all ease-in-out;
}
/* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
.top_bn {
	background: #C978FF;
	background: linear-gradient(90deg,rgba(201, 120, 255, 1) 0%, rgba(255, 140, 182, 1) 100%);
	width: 95%;
	max-width: 1000px;
	margin: auto;
	border-radius: 15px;
	color: #fff;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 10px 10px 30px;
	font-size:16px;
}
.bn_btn {
	width: 40%;
	text-align: center;
	margin-left: 15px;
}
.bn_btn a{
	display: block;
	border-radius: 10px;
	color: #ff4791;
	background-color: #fff;
	padding: 10px;
	font-size: 1.2em;
	letter-spacing: 5px;
	position: relative;
}
.bn_btn a::after {
	content: "";
	display: inline-block;
	background: url("../images/arrow_1.png") no-repeat center / 100%;
	width: 28px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.bn_btn a:hover::after {
	transform: translateY(-50%) translateX(5px);
	transition: all 0.3s ease-in-out; 
}
h1 {
	width: 100%;
}
/* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
.contents_wrap {
	padding: 80px 0;
	position: relative;
}
.contents_wrap.bg_blue {
	background: linear-gradient(180deg,rgba(0, 128, 255, 1) 0%, rgba(4, 43, 122, 1) 50%);
}
.contents_wrap.bg_bright {
	background: linear-gradient(140deg,rgba(0, 128, 255, 0.5) 0%, rgba(0, 238, 255, 0.25) 100%);
}
.contents_wrap.bg_ordinal {
	background: rgba(0, 128, 255, 0.2)
}
.contents_wrap.bg_white {
	background-color:#fff;
	color: #060a23;
}
.contents_wrap h2 {
	text-align: center;
	font-weight: 700;
	font-size: 2.0em;
	position: relative;
	padding-bottom: 40px;
	line-height: 1;
}
.contents_wrap h2 span {
	color: #d9f104;
	font-size: 0.6em;
	letter-spacing: 6px;
	font-family: "effra", sans-serif;
	font-weight: 600;/*300~900*/
	font-style: normal;
}
/*.contents_wrap h2::before {
	content: "";
	display: inline-block;
	background: url("../images/icon.webp") no-repeat top center /100%;
	width: 60px;
	height: 60px;
	position: absolute;
	top: -70px;
	left: 50%;
	transform: translateX(-50%);
}*/
.contents_wrap h2.small_h2 {
	font-size: 1.8em;
	line-height: 1.2;
	text-align: center;
}
/* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
.btn a {
	border: 2px	solid #d9f104;
  display: block;
  width: 100%;
	text-align: center;
	max-width: 500px;
  margin:40px auto 0;
  border-radius: 100px;
  color: #d9f104;
  min-height: 60px;
	padding: 10px 0;
	align-content: center;
  position: relative;
	font-size: 1.2em;
	font-weight: 600;
}
.btn.lemino a {
 background: linear-gradient(90deg,rgba(255, 187, 44, 1) 0%, rgba(255, 114, 107, 1) 50%, rgba(255, 7, 119, 1) 100%);
 border: 0;
 color: #fff;
}
.btn.entry a {
 background: linear-gradient(90deg,rgba(139, 232, 46, 1) 0%, rgba(38, 209, 152, 1) 100%);
}
.btn.red a{
	color: #fff;
	background-color: #CC3341;
	border: 2px	solid #CC3341;
}
.btn {
  position: relative;
}
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 a:hover {
	transition: all .5s ease-in-out;
	background-color: #d9f104;
	color: #060a23;
}
.btn.red a:hover {
	transition: all .5s ease-in-out;
	color: #CC3341;
	background-color:#fff;
}
.btn.lemino a:hover  {
	color: #fff;
}
.btn.lemino a:hover .arrow {
	transition: transform .3s cubic-bezier(.59,-0.01,.26,.9);
	transform:translateY(-50%) scale(1.2);
}
.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;
}
.flex_box {
	display: flex;
	justify-content: space-between;
}
.flex_box .btn {
	width: 48%;
}
.flex_box .btn a{
	width: 100%;
}
/* ---------------------------------------------------------
MV
-----------------------------------------------------------*/
.mv {
	padding-top: 30px;
}
/* ---------------------------------------------------------
INTRO
-----------------------------------------------------------*/
.contents_wrap#intro {
	padding: 30px 0;
	position: relative;
}

.contents_wrap#intro .intro_txt_wrap {
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
}

.contents_wrap#intro p.intro_ttl {
	font-size: 28px;
	font-weight: 700;
	color: #042b7a;
	text-align: center;
}

.contents_wrap#intro p.intro_txt {
    margin-top: 30px;
    font-size: 16px;
	font-weight: 500;
}

.contents_wrap#intro p.intro_txt span {
    background: linear-gradient(#d9f104, #d9f104) no-repeat;
    background-size: 100% 8px;
    background-position: 0 108%;
}
/* ---------------------------------------------------------
common
-----------------------------------------------------------*/
._common .txt_left {
	text-align: left;
}
._common .txt_right {
	text-align: right;
}
._common .line_height_1 {
	line-height: 1;
}
._common .info_box {
	text-align: center;
	max-width: 1000px;
	width: 100%;
	margin: auto;
	background: linear-gradient(135deg,rgba(242, 247, 255, 0.2) 0%, rgba(155, 196, 248, 0.2) 100%);
	border: 2px solid #9BC4F8;
	box-shadow: inset 0 0 10px rgba(155, 196, 248, 0.3);
	border-radius: 10px;
	padding: 0 0 60px;
	margin-bottom: 20px;
}
._common .info_ttl {
	display: block;
	font-size: 24px;
	font-weight: 500;
	margin-top: 60px;
	margin-bottom: 0;
	line-height: 1.5;
}
._common .info_ttl .num {
	font-size: 32px;
}
._common .info_ttl .txt_big {
	font-size: 28px;
}
._common ._underline::after {
	content: '';
	display: block;
	width: 100%;
	max-width: 400px;
	height: 2px;
	margin: 34px auto 0;
	background-color: #9bc4f8;
}
._common .info_ttl .big_color_num {
	font-size: 44px;
	font-weight: 700;
	color: #d9f104;
}
._common .comment {
	margin-top: 26px;
	font-size: 16px;
}
._common .info_box .info_img01 {
	max-width: 580px;
	margin: 40px auto 0;
}
._common .txt._01 {
	font-size: 16px;
}
._common .txt._02 {
	font-size: 18px;
}
._common .info_ttl._flex {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
._common .sub_txt_wrap {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
}
._common .sub_txt {
	font-size: 12px;
}
._common .info_point_wrap {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}
._common .info_point_wrap p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 40px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 500;
	background-color: #042b7a;
}
._common .info_point_wrap p sup {
	margin-right: -1em;
}
._common .info_box .info_img02 {
	max-width: 600px;
	margin: 40px auto 0;
}
.copyright {
	margin: 80px auto 0;
	font-size: 12px;
	text-align: center;
}
/* ---------------------------------------------------------
PART1
-----------------------------------------------------------*/
#part1 .txt._01 {
	margin-top: 40px;
}
#part1 .comment.txt_right {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}
/* ---------------------------------------------------------
PART2
-----------------------------------------------------------*/
#part2 .part2_ttl {
	font-family: 'Effra';
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.2em;
}
#part2 .txt._01 {
	margin-top: 22px;
	font-size: 18px;
}
/* ---------------------------------------------------------
STORE
-----------------------------------------------------------*/
#store ._underline::after {
	margin-top: 60px;
}
#store .txt_wrap {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	width: 80%;
	margin: 36px auto 0;
}
#store .txt._02 {
	display: flex;
	flex-direction: column;
	gap: 27px;
	width: 50%;
}
#store .comment {
	margin-top: 0;
}
/* ---------------------------------------------------------
PAYMENT
-----------------------------------------------------------*/
#payment {
	padding-top: 80px;
}
#payment .txt._02 {
	width: 80%;
	margin: 60px auto 0;
}
/* ---------------------------------------------------------
notes
-----------------------------------------------------------*/
#notes {
	padding-top: 80px;
}
#notes .txt._02 {
	width: 80%;
	margin: 60px auto 0;
}
#notes .txt._02 li {
	padding-left: 1em;
	text-indent: -1em;
}
/* ------------------------------------------------------------
アプリダウンロード
--------------------------------------------------------------*/
.app_block {
	background-color:rgba(6,10,35,0.1);
	max-width: 1000px;
	margin: auto;
	padding: 30px;
	border-radius: 25px 5px 25px 5px;
}
.app_list {
	display: flex;
	justify-content: center;
	align-content: center;
	margin: 30px 0 0;
}
.app_list li {
	margin-right: 5%;
}
.app_list li:last-of-type {
	margin-right: 0;
}
.app_list li img {
	height: 50px;
}
/* ------------------------------------------------------------
PAGE TOPボタン
--------------------------------------------------------------*/
.totop a {
 display: none!important;
}
#totop_btn {
 width: 120px;
}
#totop_btn.is-fixed {
 position: fixed;
 right: 10px;
 bottom: 80px;
 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;
  }
.btn_wrap {
  display: flex;
  width: 70%;
  margin: auto;
  justify-content: center;
}

.btn.fix {
  width: 49%;
	margin-right: 1%;
}
.btn.fix:last-of-type {
	margin-right: 0;
}
.btn.fix a {
   width: 100%;
   margin: 0;
	 max-width: 1000px;
}
/* ----------------------------------------------------------------------------------------
今回追加した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.png") no-repeat top left /100% 100% #fff;
}*/
main {
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	margin: 0;
	padding-top: 50px;
}
.start {
  display: none;
}
.big {
	font-size: 115%;
}
/* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
.top_bn {
	padding: 10px ;
	font-size: 10px;
	width: 95%;
	border-radius: 10px;
}
.top_bn p {
	font-size: 2.8vw;
}
.bn_btn {
	width: 42%;
	margin-left: 0;
}
.bn_btn a{
	padding: 10px 0;
	font-size: 1.5em;
	letter-spacing: 0;
	border-radius: 8px;
}
.bn_btn a::after {
	width: 14px;
	height: 5px;
	right: 5px;
}
/* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
.contents_wrap {
	padding: 40px 15px;
}
.contents_wrap::before {
	width: 150px;
	height: 150px;
	left: 0;
}
.contents_wrap::after {
	width: 150px;
	height: 150px;
	right: 0;
}
.contents_wrap h2 {
	font-size: 1.7em;
	padding-bottom: 20px;
	line-height: 1.0;
}
.contents_wrap h2::before {
	width: 50px;
	height: 50px;
	top: -55px;
}
.contents_wrap h2.small_h2 {
	font-size: 1.6em;
	line-height: 1.2;
	text-align: center;
}
/* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
.btn a {
  padding: 15px 0;
	font-size: 1.1em;
	width: 90%;
}
span.arrow {
	background: url("../images/arrow.webp") no-repeat center/25px;
	width: 25px;
	height: 25px;
	right: 10px;
}
.flex_box .btn {
	width: 100%;
	margin-top: 15px;
}
/* ---------------------------------------------------------
MV
-----------------------------------------------------------*/
.mv {
	padding-top: 0;
}
/* ---------------------------------------------------------
INTRO
-----------------------------------------------------------*/
.contents_wrap#intro {
	padding: 24px 15px;
	position: relative;
}

.contents_wrap#intro p.intro_ttl {
	font-size: 20px;
	font-weight: 700;
	color: #042b7a;
}

.contents_wrap#intro p.intro_txt {
    margin-top: 11px;
    font-size: 12px;
	font-weight: 500;
}

.contents_wrap#intro p.intro_txt span {
    background: linear-gradient(#d9f104, #d9f104) no-repeat;
    background-size: 100% 6px;
    background-position: 0 108%;
}
/* ---------------------------------------------------------
common
-----------------------------------------------------------*/
._common .txt_left {
	text-align: left;
}
._common .txt_right {
	text-align: right;
}
._common .line_height_1 {
	line-height: 1;
}
._common .info_box {
	width: 95%;
	padding: 0 14px 40px;
}
._common .info_ttl {
	display: block;
	font-size: 20px;
	margin-top: 38px;
	margin-bottom: 0;
	line-height: 1.5;
}
._common .info_ttl .num {
	font-size: 28px;
}
._common .info_ttl .txt_big {
	font-size: 24px;
}
._common ._underline::after {
	content: '';
	display: block;
	width: 53.33vw;
	max-width: 200px;
	height: 2px;
	margin: 24px auto 0;
	background-color: #9bc4f8;
}
._common .info_ttl .big_color_num {
	font-size: 40px;
	font-weight: 700;
	color: #d9f104;
}
._common .comment {
	margin-top: 10px;
	font-size: 12px;
}
._common .info_box .info_img01 {
	max-width: 288px;
	margin: 24px auto 0;
}
._common .txt._01 {
	font-size: 12px;
}
._common .txt._02 {
	font-size: 14px;
}
._common .info_ttl._flex {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
._common .sub_txt_wrap {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
}
._common .sub_txt {
	font-size: 10px;
}
._common .info_point_wrap {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}
._common .info_point_wrap p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 145px;
	height: 36px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 500;
	background-color: #042b7a;
}
._common .info_point_wrap p sup {
	margin-right: -1em;
}
._common .info_box .info_img02 {
	max-width: 255px;
	margin: 24px auto 0;
}
.copyright {
	margin: 38px auto 0;
	font-size: 12px;
	text-align: center;
}
/* ---------------------------------------------------------
PART1
-----------------------------------------------------------*/
#part1 .txt._01 {
	margin-top: 22px;
}
#part1 .comment.txt_right {
	max-width: 298px;
	margin-left: auto;
	margin-right: auto;
}
/* ---------------------------------------------------------
PART2
-----------------------------------------------------------*/
#part2 .part2_ttl {
	font-family: 'Effra';
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.2em;
}
#part2 .txt._01 {
	margin-top: 22px;
}
/* ---------------------------------------------------------
STORE
-----------------------------------------------------------*/
#store ._underline::after {
	margin-top: 34px;
}
#store .txt_wrap {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: unset;
	margin: 22px auto 0;
}
#store .txt._02 {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: unset;
}
#store .comment {
	margin-top: 0;
}
/* ---------------------------------------------------------
PAYMENT
-----------------------------------------------------------*/
#payment {
	padding-top: 38px;
}
#payment .txt._02 {
	width: unset;
	margin: 38px auto 0;
}
/* ---------------------------------------------------------
notes
-----------------------------------------------------------*/
#notes {
	padding-top: 38px;
}
#notes .txt._02 {
	width: unset;
	margin: 38px auto 0;
}
#notes .txt._02 li {
	padding-left: 1em;
	text-indent: -1em;
}
/* ------------------------------------------------------------
アプリダウンロード
--------------------------------------------------------------*/
.app_block {
	padding: 30px 20px;
	border-radius: 25px 5px 25px 5px;
}
.app_list {
	margin: 20px 0 0;
}
/* ----------------------------------------------------------------
PAGE TOPボタン
------------------------------------------------------------------*/
#totop_btn {
 width: 80px;
}
#totop_btn.is-fixed {
 right: 10px;
 bottom: 80px;
}
/*----------------------------------------------------------------------
追従
----------------------------------------------------------------------*/
.lp_cta_fixed.is-fixed {
  }
.btn_wrap {
  display: flex;
  width: 100%;
  margin: auto;
  justify-content: center;
}
.btn.fix {
  width: 98%;
	margin-right: 0;
}
.btn.fix a {
   min-height: 50px;
	 padding: 0;
	 font-size: 0.9em;
	 line-height: 1;
	 border-radius: 10px;
}
/* -----------------------------------------------------------------------
ハンバーガーメニュー
-------------------------------------------------------------------------*/
#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-color: #0080ff;
	color: #fff;
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
	position: absolute;
	left: 15px;
  height: 2px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #fff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
}
#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: 1010;
  width: 90%;
  max-width: 300px;
  height: 100vh;
	background: linear-gradient(30deg,rgba(0, 128, 255, 1) 0%, rgba(4, 43, 122, 1) 100%);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	margin: 0 0 30px;
	
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #791f97;
}
.nav_item li a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
.nav_item li a small {
	font-family: "effra", sans-serif;
	font-weight: 800;/*300~900*/
	font-style: normal;	
	color: #d9f104;
}
.hum_sns {
	display: flex;
	justify-content: center;
	align-content: center;
	border-top: 1px solid #aed7ff;
	padding: 20px 0 0;
	margin: 0 20px ;
}
.hum_sns li a {
	height: 50px;
	width: 50px;
	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;
}
}
/* ----------------------------------------------------------------------------------------
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: 12px;
  left: 10px;
  width: 22%;
  max-width: 140px;
  z-index: 1000;
 }
}

/* 260430 追加 */
#part2 .info_ttl._01 {
	display: flex;
	flex-direction: column;
}

#part2 .info_ttl._01 span:not(:first-child) {
	margin-top: 12px;
}

#part2._common .info_box .info_img04 {
	max-width: 680px;
	margin: 0 auto;
}

#part2._common .info_box .info_img05 {
	max-width: 600px;
	margin: 40px auto 0;
}

#part2 .txt._01 {
	display: flex;
	justify-content: center;
	font-size: 16px;
	text-align: left;
}

#part2 .txt._02 {
	display: flex;
	justify-content: center;
	margin: 20px auto 0;
	font-size: 16px;
	text-align: center;
}
	
#part2 .comment.txt_right {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

._common .info_ttl .big_color_num {
	line-height: 1.1;
}

@media screen and (max-width: 812px) {
	#part2 .comment._01 {
		max-width: 255px;
		margin: 10px auto;
	}

	#part2._common .info_box .info_img04 {
		max-width: 297px;
		margin: 0 auto;
	}

	#part2._common .info_box .info_img05 {
		max-width: 255px;
		margin: 40px auto 0;
	}

	#part2 .txt._01 {
		display: flex;
		justify-content: center;
		font-size: 12px;
		text-align: left;
	}

	#part2 .txt._02 {
		display: flex;
		justify-content: center;
		max-width: 255px;
		margin: 12px auto 0;
		font-size: 12px;
		text-align: center;
	}

	#part2 .comment.txt_right {
        max-width: 298px;
        margin-left: auto;
        margin-right: auto;
    }
}