@charset "utf-8";
/*============================
基本設定
============================*/
body {
	background-color: #1F1F1F;
	color: #FFF;
}

@media screen and (max-width: 640px) {
	main {
		padding-top: 0.70rem;
	}
}


/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	height: 1.00rem;
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	header {
		height: 0.70rem;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		background-color: #1F1F1F;
	}
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
*/

/* ロゴ */
header .logo {
	width: 2.05rem;
}
@media screen and (max-width: 640px) {
	header .logo {
		width: 1.40rem;
		padding: 0.17rem 0.20rem;
	}
}

header .logo img {
	display: block;
}

/* 言語切替 */
@media screen and (max-width: 640px) {
	header .lang {
		position: absolute;
		top: 50%;
		right: 0.80rem;
		transform: translateY(-50%);
	}
}

header .lang .lang_list {
	display: flex;
	align-items: center;
}

html[lang="en"] header .lang .lang_list.jp {
	display: none !important;
}
html[lang="ja"] header .lang .lang_list.en {
	display: none !important;
}

header .lang .lang_list a {
	display: block;
	color: #FFF;
	font-size: 0.16rem;
}
@media screen and (max-width: 640px) {
	header .lang .lang_list a {
		display: block;
		color: #FFF;
		font-size: 0.14rem;
	}
}

header .lang .lang_list a:hover {
	text-decoration: underline;
}

header .lang .lang_list a.current span {
	font-weight: 700;
	border-bottom: 1px solid #FFF;
}

header .lang .lang_list a:nth-of-type(1)::after {
	content: "/";
	display: inline-block;
	padding: 0 0.06rem;
}

/* ハンバーガーメニュー */
#SPnaviBtn {
	width: 0.65rem;
	height: 0.65rem;
}

#SPnaviBtn #SPmenuBars {
	width: 0.30rem;
	height: 0.11rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#SPnaviBtn #SPmenuBars span {
	background-color: #FFF;
	width: 0.30rem;
}

#SPnaviBtn #SPmenuBars span:nth-of-type(1) {
	top: 0;
}
#SPnaviBtn #SPmenuBars span:nth-of-type(2) {
	top: auto;
	bottom: 0;
}

#SPnaviBtn.active #SPmenuBars span:nth-of-type(1) {
	top: 50%;
}
#SPnaviBtn.active #SPmenuBars span:nth-of-type(2) {
	opacity: 1;
	transform: rotate(45deg);
	bottom: 50%;
}


/*============================
共通要素
============================*/
/* ナビゲーション */
.glo_navi {
	width: 100%;
	max-width: 6.00rem;
}
@media screen and (max-width: 640px) {
	header .glo_navi {
		max-width: 100%;
		position: absolute;
		top: 0.64rem;
		left: 0;
		box-shadow: 0 0.06rem 0.08rem rgba(0,0,0,0.7);
		display: none;
	}
}

.glo_navi .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	.glo_navi .list {
		display: block;
	}
	header .glo_navi .list {
		padding: 0.10rem 0.20rem 0.30rem;
		background-color: #1F1F1F;
	}
}

.glo_navi .list .link {
	position: relative;
	padding: 0.10rem 0;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link {
		padding: 0.20rem 0;
		border-bottom: 1px solid #666;
	}
	.glo_navi .list .link:first-child {
		border-top: 1px solid #666;
	}
}

.glo_navi .list .link a {
	font-size: 0.15rem;
	font-weight: 700;
	color: #FFF;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link a {
		font-size: 0.16rem;
	}
}

.glo_navi .list .link a:hover {
	color: #DD3885;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link a:hover {
		color: #FFF
	}
}

.glo_navi .list .link a span {
	position: relative;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link a span {
		display: block;
	}
}

.glo_navi .list .link.sub {
	padding-right: 0.20rem;
	cursor: pointer;
}

.glo_navi .list .link.sub a span::before {
	content: "";
	width: 0.09rem;
	height: 1px;
	background-color: #FFF;
	position: absolute;
	right: -0.20rem;
	top: 0.09rem;
	transition: all 0.5s;
}

.glo_navi .list .link.sub a span::after {
	content: "";
	width: 1px;
	height: 0.09rem;
	background-color: #FFF;
	position: absolute;
	right: -0.16rem;
	top: 0.05rem;
	transition: all 0.5s;
}

.glo_navi .list .link.sub.open a {
	color: #DD3885;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub.open a {
		color: #FFF;
	}
}

.glo_navi .list .link.sub.open a span::before {
	background-color: #DD3885;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub.open a span::before {
		background-color: FFF;
	}
}

.glo_navi .list .link.sub.open a span::after {
	transform: rotate(-90deg);
	background-color: #DD3885;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub.open a span::after {
		background-color: #FFF;
	}
}

.glo_navi .list .link.sub .sub_menu {
	position: absolute;
	top: 0.30rem;
	left: 0;
	background-color: #FFF;
	min-width: 2.00rem;
	padding: 0.10rem 0.20rem;
	display: none;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub .sub_menu {
		position: relative;
		top: auto;
		left: auto;
		background-color: transparent;
		min-width: 100%;
		padding: 0;
	}
}

.glo_navi .list .link.sub .sub_menu a {
	color: #000 !important;
	line-height: 2;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub .sub_menu a {
		color: #FFF !important;
		line-height: 1.875;
	}
	.glo_navi .list .link.sub .sub_menu a:first-child {
		padding-top: 0.10rem;
	}
}

.glo_navi .list .link.sub .sub_menu a::before {
	content: "";
	width: 0.08rem;
	height: 1px;
	background-color: #000;
	display: inline-block;
	position: relative;
	margin-right: 0.10rem;
	top: -0.04rem;
	transition: all 0.5s;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub .sub_menu a::before {
		background-color: #FFF;
		display: block;
		top: auto;
	}
}

.glo_navi .list .link.sub.open .sub_menu a span::before,
.glo_navi .list .link.sub.open .sub_menu a span::after {
	content: none;
}

.glo_navi .list .link.sub .sub_menu a:hover::before {
	width: 0.12rem;
}

.glo_navi .list .link.sub .sub_menu .sub_link {
	display: block;
}
@media screen and (max-width: 640px) {
	.glo_navi .list .link.sub .sub_menu .sub_link {
		display: flex;
		align-items: center;
	}
}

/* SNSリンク */
.sns_link_wrap {
	width: 100%;
	max-width: 3.20rem;
}
@media screen and (max-width: 640px) {
	.sns_link_wrap {
		max-width: 100%;
	}
	header .glo_navi .sns_link_wrap {
		position: relative;
		top: -0.01rem;
	}
	header .glo_navi .sns_link_wrap .list {
		padding-top: 0;
	}
	header .glo_navi .sns_link_wrap .link {
		border: 0;
		padding: 0;
	}
	header .glo_navi .sns_link_wrap .link:first-child {
		border: 0;
	}
}

.header_sns_link {
	width: 100%;
	max-width: 3.20rem;
}
@media screen and (max-width: 640px) {
	.header_sns_link {
		display: none;
	}
}

.sns_link_wrap .list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sns_link_wrap .list .link {
	width: 0.30rem;
}

.sns_link_wrap .list .link a:hover {
	opacity: 0.7;
}

/* セクションタイトル */
.sec_tit {
	font-family: "Offside", sans-serif;
	font-size: 0.45rem;
	padding-bottom: 0.25rem;
	color: #000;
}
@media screen and (max-width: 640px) {
	.sec_tit {
		font-size: 0.30rem;
	}
}

.sec_tit.-center {
	text-align: center;
}

.sec_tit.-pink {
	color: #DD3885;
}

.sec_tit.-green {
	color: #10CE09;
}

.sec_tit.-purple {
	color: #8056B5;
}

.sec_tit.-blue {
	color: #06AECA;
}

.sec_tit.-white {
	color: #FFF;
}

.lead {
	font-size: 0.18rem;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.lead {
		font-size: 0.14rem;
		line-height: 1.875;
		text-align: justify;
	}
	.en .lead {
		font-size: 0.14rem;
		line-height: 1.875;
		text-align: left;
	}
}

.btn {
	padding: 0 0.125rem;
	width: 100%;
	max-width: 3.00rem;
}

.btn a {
	display: block;
	background-color: rgba(255,255,255,0.8);
	text-align: center;
	padding: 0.17rem 0;
	border-radius: 0.30rem;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-size: 0.20rem;
	font-weight: 700;
	position: relative;
}

.btn a:hover {
	background-color: #FFF;
}

.btn.-pink a {
	border: 0.03rem solid #DD3885;
	color: #DD3885;
}

.btn.-pink a:hover {
	box-shadow: 0 0 0.08rem #DD3885;
}

.btn.-green a {
	border: 0.03rem solid #10CE09;
	color: #178613;
}

.btn.-green a:hover {
	box-shadow: 0 0 0.08rem #10CE09;
}

.btn.-purple a {
	border: 0.03rem solid #8056B5;
	color: #8056B5;
}

.btn.-purple a:hover {
	box-shadow: 0 0 0.08rem #8056B5;
}

.btn.-blue a {
	border: 0.03rem solid #06AECA;
	color: #06AECA;
}

.btn.-blue a:hover {
	box-shadow: 0 0 0.08rem #06AECA;
}

.btn.-arrow {
	max-width: 2.65rem;
	padding: 0;
}

.btn.-arrow a::after {
	content: '';
	position: absolute;
	width: 0.19rem;
	height: 0.11rem;
	display: block;
	background: url(../img/btn_arrow.svg) no-repeat;
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
	right: 0.20rem;
}

.in1000 {
	width: 100%;
    max-width: 10rem;
    margin: auto;
    position: relative;
    box-sizing: border-box;
}

/*============================
MV
============================*/
.mv {
	position: relative;
	z-index: 0;
}

.mv::before {
	content: "";
	width: 100%;
	height: 7.50rem;
	background-image: url(../img/mv_pc.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
@media screen and (max-width: 640px) {
	.mv::before {
		height: 150vw;
		background-image: url(../img/mv_sp.jpg);
	}
}

.mv::after {
	content: "";
	width: 100%;
	height: 3.10rem;
	background: linear-gradient(to bottom, rgba(31,31,31,0) 0%,rgba(31,31,31,1) 92%,rgba(31,31,31,1) 99%);
	position: absolute;
	top: 4.40rem;
	left: 0;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.mv::after {
		height: 3.10rem;
		top: auto;
		bottom: 0;
		background: linear-gradient(to bottom, rgba(31,31,31,0) 0%,rgba(31,31,31,1) 60%,rgba(31,31,31,1) 99%);
	}
}

.mv .in {
	position: relative;
	z-index: 2;
}

.mv .logo {
	padding-top: 1.50rem;
	width: 4.97rem;
	margin: auto;
}
@media screen and (max-width: 640px) {
	.mv .logo {
		padding-top: 1.00rem;
		width: 70.4vw;
	}
}

.mv .catch {
	padding-top: 0.36rem;
	font-family: "Tektur", sans-serif;
  font-optical-sizing: auto;
	font-size: 0.40rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #FFF;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.mv .catch {
		padding-top: 0.10rem;
		font-size: 0.24rem;
		line-height: 1.5;
	}
}

.mv .btn_wrap {
	padding-top: 0.45rem;
	padding-bottom: 1.00rem;
}

@media screen and (max-width: 640px) {
	.mv .btn_wrap {
		padding-top: 0.30rem;
		padding-bottom: 0.50rem;
	}
	.mv .btn_wrap .btn {
		margin-top: 0.15rem;
	}
}

.mv .btn_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.mv .bottom_ph_list .list {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.mv .bottom_ph_list {
		width: 100vw;
		margin: 0 -0.20rem;
	}
}

.mv .bottom_ph_list .list .ph {
	width: 1.92rem;
	height: 1.92rem;
	overflow: hidden;
	border-radius: 0.10rem;
}
@media screen and (max-width: 640px) {
	.mv .bottom_ph_list .list .ph {
		width: 1.00rem;
		height: 1.00rem;
		border-radius: 0.06rem;
	}
	.slick-slide {
		padding: 0 0.06rem;
	}
}

.mv .bottom_ph_list .list .ph img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*============================
About
============================*/
.about {
	padding: 0.50rem 0 1.00rem;
}
@media screen and (max-width: 640px) {
	.about {
		padding: 0.70rem 0;
	}
}

.about .sns_link_wrap {
	padding-top: 0.40rem;
	max-width: 100%;
}

.about .sns_link_wrap .list {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
@media screen and (max-width: 640px) {
	.about .sns_link_wrap .list {
		justify-content: space-between;
	}
}

.about .sns_link_wrap .list .link {
	width: 0.50rem;
	padding: 0 0.20rem;
}
@media screen and (max-width: 640px) {
	.about .sns_link_wrap .list .link {
		width: 0.30rem;
		padding: 0;
	}
}

.about .sns_link_wrap .list .link img {
	width: 100%;
}

/*============================
game
============================*/
.game {
	padding: 0.90rem 0 1.00rem;
	background-image: url(../img/game_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 640px) {
	.game {
		padding: 0.70rem 0;
		background-image: url(../img/game_bg_sp.jpg);
	}
}

.game .game_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 0.80rem;
}
@media screen and (max-width: 640px) {
	.game .game_box {
		display: block;
		padding-top: 0.50rem;
	}
}

.game .game_box:nth-of-type(2n) {
	flex-direction: row-reverse;
}

.game .game_box .txt_box {
	width: 100%;
	max-width: 4.00rem;
	padding-left: 0.40rem;
}
@media screen and (max-width: 640px) {
	.game .game_box .txt_box {
		max-width: 100%;
		padding-left: 0;
	}
}

.game .game_box:nth-of-type(2n) .txt_box {
	padding-left: 0;
	padding-right: 0.40rem;
}
@media screen and (max-width: 640px) {
	.game .game_box:nth-of-type(2n) .txt_box {
		padding-right: 0;
	}
}

.game .game_box .txt_box .icon {
	width: 100%;
	max-width: 2.00rem;
	text-align: center;
	margin: auto;
	padding-bottom: 0.15rem;
}

.game .game_box .txt_box .icon img {
	display: block;
	margin: auto;
}

.game .game_box .txt_box .tit {
	width: 2.30rem;
	margin: auto;
	background-color: #004757;
	border: 2px solid #A3ECFC;
	box-shadow: 0 0 0.08rem rgba(96,226,255,0.9);
	border-radius: 0.30rem;
	text-align: center;
	color: #FFF;
	font-size: 0.18rem;
	font-weight: 700;
	padding: 0.10rem 0;
}

.game .game_box .txt_box .txt {
	padding-top: 0.20rem;
	font-size: 0.14rem;
	line-height: 1.875;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.game .game_box .txt_box .txt {
		padding: 0.15rem 0.15rem 0.20rem;
		line-height: 1.70;
		text-align: justify
	}
}

.game .game_box .img_box {
	width: 100%;
	max-width: 6.70rem;
}

.game .game_box .img_box img {
	display: block;
}

/*============================
如月
============================*/
.kisaragi {
	background: #000 url(../img/kisaragi_bg.png) no-repeat center bottom;
	background-size: 100% auto;
	padding: 1.15rem 0 1.8rem;
}
@media screen and (max-width: 640px) {
	.kisaragi {
		padding: 0.70rem 0 1.00rem;
		background: #000 url(../img/kisaragi_bg_sp.png) no-repeat center bottom;
		background-size: 100% auto;
	}
}

.kisaragi .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.kisaragi .cont_wrap {
		display: block;
	}
}

.kisaragi .cont_wrap .text_wrap {
	width: 5.65rem;
}
@media screen and (max-width: 640px) {
	.kisaragi .cont_wrap .text_wrap {
		width: 100%;
		padding: 0 0.20rem;
		box-sizing: border-box;
	}
	.kisaragi .cont_wrap .text_wrap .sec_tit {
		text-align: center;
	}
}

.kisaragi .cont_wrap .text_wrap .text {
	font-size: 0.18rem;
	line-height: 1.8;
}
@media screen and (max-width: 640px) {
	.kisaragi .cont_wrap .text_wrap .text {
		font-size: 0.14rem;
		line-height: 1.7;
		text-align: justify;
		padding-top: 0.15rem;
	}
}

.kisaragi .cont_wrap .ph_wrap {
	width: 3.60rem;
}
@media screen and (max-width: 640px) {
	.kisaragi .cont_wrap .ph_wrap {
		width: 100%;
	}
}

.kisaragi .btn_wrap {
	padding-top: 0.45rem;
}
@media screen and (max-width: 640px) {
	.kisaragi .btn_wrap {
		padding-top: 0.15rem;
	}
}

.kisaragi .btn_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	.kisaragi .btn_wrap .list {
		display: block;
	}
}

.kisaragi .btn_wrap .list .btn {
	padding: 0;
}
@media screen and (max-width: 640px) {
	.kisaragi .btn_wrap .list .btn {
		padding-top: 0.20rem;
		margin: auto;
	}
}

/*============================
Let's play a game
============================*/
.play {
	background: url(../img/play_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 1.2rem 0 1.45rem;
}
@media screen and (max-width: 640px) {
	.play {
		padding: 1.00rem 0;
	}
}

.play .btn_wrap {
	padding-top: 0.45rem;
}
@media screen and (max-width: 640px) {
	.play .btn_wrap {
		padding-top: 0.15rem;
	}
}

.play .btn_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
	.play .btn_wrap .list {
		display: block;
	}
}

.play .btn_wrap .list .btn {
	padding: 0 0.20rem;
}
@media screen and (max-width: 640px) {
	.play .btn_wrap .list .btn {
		padding: 0.20rem 0 0;
		margin: auto;
		text-align: center;
	}
}

/*============================
GuildQB Token
============================*/
.token {
	background: #EFEFEF;
	padding: 0.95rem 0 1.00rem;
}
@media screen and (max-width: 640px) {
	.token {
		padding: 0.70rem 0.20rem;
	}
}

.token .cont_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	.token .cont_wrap {
		display: block;
	}
}

.token .cont_wrap .text_wrap {
	width: 5.10rem;
}
@media screen and (max-width: 640px) {
	.token .cont_wrap .text_wrap {
		width: 100%;
	}
	.token .cont_wrap .text_wrap .sec_tit {
		text-align: center;
	}
}

.token .cont_wrap .text_wrap .text {
	font-size: 0.18rem;
	line-height: 1.8;
	color: #000;
}
@media screen and (max-width: 640px) {
	.token .cont_wrap .text_wrap .text {
		font-size: 0.14rem;
		line-height: 1.7;
		text-align: justify;
	}
}

.token .cont_wrap .ph_wrap {
	width: 4.25rem;
	box-sizing: border-box;
	padding-left: 0.20rem;
}
@media screen and (max-width: 640px) {
	.token .cont_wrap .ph_wrap {
		width: 100%;
		padding-left: 0;
		padding-bottom: 0.20rem;
	}
}

.token .btn {
	padding-top: 0.26rem;
}
@media screen and (max-width: 640px) {
	.token .btn {
		margin: auto;
	}
}

/*============================
partnerships
============================*/
.partnerships {
	background: #E2E2E2;
	padding: 0.95rem 0 0.70rem;
}
@media screen and (max-width: 640px) {
	.partnerships {
		padding: 0.70rem 0 0.70rem;
	}
}

.partnerships .lead {
	color: #000;
	max-width: 10rem;
	margin: auto;
}

.partnerships .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 0.50rem;
	align-items: center;
}

.partnerships .list .item {
	max-width: 20%;
	box-sizing: border-box;
	padding: 0 0.40rem;
	margin-bottom: 0.30rem;
}
@media screen and (max-width: 640px) {
	.partnerships .list .item {
		max-width: 50%;
		padding: 0 0.20rem;
		margin-bottom: 0.20rem;
	}
}

/*============================
Community
============================*/
.community {
	background: url(../img/community_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 0.95rem 0 1.3rem;
}

.community .lead {
	font-size: 0.15rem;
}

.community .btn {
	padding-top: 0.5rem;
	margin: auto;
}
/*============================
フッター
============================*/
footer {
	padding: 0.80rem 0;
	background-color: #000;
}

footer::before {
	content: '';
	display: block;
	width: 50%;
	height: 0.10rem;
	background: #DD3885;
	bottom: 0;
	left: 0;
	position: absolute;
}

footer::after {
	content: '';
	display: block;
	width: 50%;
	height: 0.10rem;
	background: #10CE09;
	bottom: 0;
	right: 0;
	position: absolute;
}

footer .in .logo {
	width: 2.60rem;
	margin: auto;
}
@media screen and (max-width: 640px) {
	footer .in .logo {
		width: 2.00rem;
	}
}

footer .in .txt {
	font-size: 0.14rem;
	line-height: 1.75;
	text-align: center;
	padding: 0.20rem 0;
}
@media screen and (max-width: 640px) {
	footer .in .txt {
		font-size: 0.12rem;
		line-height: 1.7;
		text-align: justify;
	}
}

html[lang="en"] footer .in .txt.jp {
	display: none;
}
html[lang="ja"] footer .in .txt.en {
	display: none;
}

footer .in .glo_navi {
	margin: auto;
}
@media screen and (max-width: 640px) {
	footer .in .glo_navi .sns_link_wrap {
		display: none;
	}
}

footer .in .sns_link_wrap {
	margin: auto;
	padding: 0.40rem 0;
}

footer .in .copyright {
	text-align: center;
	font-size: 0.12rem;
}

