/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

@font-face {
	font-family: 'themify';
	src: url("../fonts/themify/themify.eot?-fvbane");
	src: url("../fonts/themify/themify.eot?#iefix-fvbane") format("embedded-opentype"), url("../fonts/themify/themify.woff?-fvbane") format("woff"), url("../fonts/themify/themify.ttf?-fvbane") format("truetype"), url("../fonts/themify/themify.svg?-fvbane#themify") format("svg");
	font-weight: normal;
	font-style: normal;
}

/* 初期設定 */

* {
	margin: 0px;
	padding: 0px;
}
body {
	background: #fff;
	color: #333;
	font-size: 12px;
	line-height: 1.6em;
	font-family: “ＭＳ Ｐゴシック”, Osaka, “ヒラギノ角ゴ Pro W3”;
}
a:link {
	color: #333;
	text-decoration: none;
}
a:visited {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #333;
	text-decoration: none;
}
a img {
	border-width: 0px;
	border-style: none;
	border-color: #fff;
	background: transparent;
}
/* 初期設定ここまで */

* body {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: normal;
	background-image: url(/images/index/index_bg2.jpg);
	background-repeat: repeat;
	background-position: center;
	background-size: 100% auto;
}


/* ロゴ左上に固定 */
.resizeimage_lt {
	position:fixed;
	left:0px;
	top:0px;
	border: none;
}
.imagelt-vw {
	width : 18vw ;
}


/* ハンバーガーメニュー */
.menu-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
	display: none;
}
#menu-btn-check:checked ~ .menu-content {
	right: 0;/*メニューを画面内へ*/
}

.menu-content {
	position: fixed;
	top: 0;
	right: -100vw;
	width: 350px;
	height: 100%;
	cursor: pointer;
	-webkit-transition: 0.53s transform;
	transition: 0.53s transform;
	-webkit-transition-timing-function: cubic-bezier(.38,.52,.23,.99);
	transition-timing-function: cubic-bezier(.38,.52,.23,.99);
	background-color: #3584bb;
	z-index: 80;
	transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
	padding: 70px 20px 0;
}
.menu-content ul li {
	border-bottom: solid 1px #ffffff;
	list-style: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 20px;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 12px 15px 12px 0;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}

/* ガイド部分右上固定 */
.resizeimage_rt {
	position:fixed;
	right: 5px;
	top: 5px;
	display: flex;
}

a.cp_btn {
	display: block;
	width: 100px;
	padding: 3px;
	text-align: center;
	text-decoration: none;
	color: #EC407A;
	border: 2px solid #EC407A;
	transition: .4s;
	font-family: ;
	font-size: 11px;
	background: #fff;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
a.cp_btn:hover {
	background: #EC407A;
	color: #fff;
}


/* 画像右下に固定 */
.resizeimage_rb {
	position:fixed;
	right:0;
	bottom:0;
}
.imagerb-vw {
	width : 46vw ;
}

/* パブリックドメイン右下に固定 */
.resizeimage_rb2 {
	position:fixed;
	right:0;
	bottom:0;
}
.imagerb2-vw {
	width : 13vw;
}

/* 画像右下スライドイン＆ぽよよん */
.resizeimage_rb.poyoyon.is-animated {
	animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes poyoyon {
	0% {
		transform: translateX(140px);
		opacity: 0;
	}
	50% {
		transform: translateX(0);
	}
	65% {
		transform: translateX(30px);
	}
	100% {
		transform: translateX(0);
	}
	20%,100% {
		opacity: 1;
	}
}


/* ニューリリース左下側固定 */
.newgame_img {
	position:fixed;
	left:1%;
	top:12%;
	border: none;
}
.newgameimg-vw {
	width : 14vw ;
}
/* ズームイン */
.newgame_img.zoomin.is-animated {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

/* 3ポイント画像左下に固定 */
.resizeimage_lb {
	position:fixed;
	left:0px;
	bottom:0px;
}
.imagelb-vw {
	width : 26vw ;
}

/* 画像左下ズームイン */

.resizeimage_lb.zoomin.is-animated {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}


.textimg {
	position: fixed;
	right: 0;
	left: 0;
	top: 12%;
	text-align: center;
}
.textimg-vw {
	width : 60vw ;
}

.copyright {
	position:fixed;
	left: 0;
	bottom: 0;
	color: #131d3e;
	font-size: 10%;
	font-weight: 900;
}


/* 登録ボタンデザイン

.button_container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
}

.btn {
	width: 400px;
	height: 100px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-weight: 700;
	font-size: 36px;
	color: #fff;
	background-color: #e24d73;
	border: none;
	border-radius: 50px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
}

.btn:hover {
	background-color: #2EE59D;
	box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
	color: #fff;
	transform: translateY(-7px);
}

.dokidoki {
	animation: dokidoki 1.5s infinite;
}
@keyframes dokidoki {
	0% {
		transform: scale(1.05)
	}
	5% {
		transform: scale(1)
	}
	95% {
		transform: scale(1)
	}
	100% {
		-webkit-transform: scale(1.05)
	}
}
*/
/* 旧登録ボタンデザイン*/

@import url('https://fonts.googleapis.com/css?family=Amatic+SC');

.button_container {
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
}
.description, .link {
	font-family: 'Amatic SC', cursive;
	text-align: center;
}
.description {
	font-size: 35px;
}

.btn {
	border: none;
	border-radius: 50px;
	display: block;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	outline: none;
	overflow: hidden;
	position: relative;
	color: #fff;
	font-weight: 700;
	font-size: 36px;
	background-color: #e24d73;
	padding: 22px 70px;
	margin: 0 auto;
	box-shadow: 0 5px 15px rgba(0,0,0,0.20);
}

.dokidoki {
	animation: dokidoki 1.5s infinite;
}
@keyframes dokidoki {
	0% {
		transform: scale(1.05)
	}
	5% {
		transform: scale(1)
	}
	95% {
		transform: scale(1)
	}
	100% {
		-webkit-transform: scale(1.05)
	}
}


.btn span {
	position: relative;
	z-index: 1;
}

.btn:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 490%;
	width: 140%;
	color: black;
	background: #f6e414;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: translateX(-89%) translateY(-25%) rotate(45deg);
	transform: translateX(-89%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.link {
	font-size: 30px;
	margin-top: 30px;
}

.link a {
	display: block;
	color: #e24d73;
	font-size: 30px;
	height: 490%;
	width: 140%;
}

/* ログインボタンデザイン */
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');

.button_container2 {
	position: absolute;
	left: 0;
	right: 0;
	top: 64%;
}
.description, .link {
	font-family: 'Amatic SC', cursive;
	text-align: center;
}
.description {
	font-size: 35px;
}

.btn_login {
	border: none;
	border-radius: 50px;
	display: block;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	outline: none;
	overflow: hidden;
	position: relative;
	color: #fff;
	font-weight: 400;
	font-size: 18px;
	background-color: #009fb5;
	padding: 10px 60px;
	margin: 0 auto;
	box-shadow: 0 5px 15px rgba(0,0,0,0.20);
}

.btn_login span {
	position: relative;
	z-index: 1;
}

.btn_login:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 490%;
	width: 140%;
	color: black;
	background: #f6e414;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: translateX(-89%) translateY(-25%) rotate(45deg);
	transform: translateX(-89%) translateY(-25%) rotate(45deg);
}

.btn_login:hover:after {
	-webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
	transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.link {
	font-size: 20px;
	margin-top: 30px;
}

.link a {
	display: block;
	color: #009fb5;
	font-size: 25px;
	width: 100%;
}


/* 　仮登録メール送信ページ（https://mgdx.jp/app/register）　 */

.regist_centering {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.regist_centering2 {
	margin: 0 auto;
	text-align: center;
	padding: 100px 0;
}

.regist_back {
	width: 704px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	background-color: rgba( 255, 255, 255, 0.9 );
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	font-size: 16px;
}

.regist_back img {
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}

.regist_backhead {
	-webkit-border-radius:10px 10px 0px 0px;
	-moz-border-radius:10px 10px 0px 0px;
	border-radius:10px 10px 0px 0px;
	background-color:#2ABCA7;
	color:#FAFAFA;
}
h2 {
	text-align:center;
	padding:22px 0 16px 0;
	font-size: 24px;
	font-weight: 900;
}
/* メールフォーム */

.cp_iptxt {
	position: relative;
	width: 100%;
	margin: 24px 0px 20px 0px;
}
.cp_iptxt input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 450px;
	padding: 0.3em;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #000000;
	border: 6px solid #1b2538;
	border-radius: 6px;
}
.ef input[type='text']:focus {
	border: 6px solid #da3c41;
	outline: none;
}

/* 投信ボタン */

/*　---- ボタンデザイン 1　---- */

input[type="submit"]{
	display: block;
	margin:0 auto;
	text-decoration: none;
	border: none;
	outline: 0;
	cursor: pointer;
	color: #fff;
	background: #FF0000;
	font-weight: bold;
	position: relative;
	width: 36%;
	padding: 20px;
	transition: 0.5s;
	font-size: 18px;
	font-weight: bold;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}
input[type="submit"]:hover {
	background: lightcoral;
}


/*　---- OKボタン　---- */

a.btn_ok {
	display: block;
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #FF0000;
	border-radius: 3px;
	transition: .4s;
}
a.btn_ok:hover {
	background: lightcoral;
}

/*　---- 戻るボタン　---- */

a.btn_re {
	display: block;
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: blue;
	border-radius: 3px;
	transition: .4s;
}
a.btn_re:hover {
	background: cornflowerblue;
}



/*　---- 入力フォームデザイン　---- */

table.regist_input {
	width: 94%;
	border-collapse: collapse;
	margin: 0 auto;
}

table.regist_input tr{
	border-bottom: solid 3px white;
}

table.regist_input tr:last-child{
	border-bottom: none;
}

table.regist_input th{
	position: relative;
	text-align: left;
	width: 20%;
	background-color: #52c2d0;
	color: white;
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
	font-weight: bold;
}

table.regist_input th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid #52c2d0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

table.regist_input td{
	text-align: left;
	width: 80%;
	background-color: #eee;
	padding: 10px 10px;
	padding-left: 40px;
	font-size: 12px;
}

/*　---- ログインフォームデザイン　---- */

table.login_form{
	width: 70%;
	border-spacing: 0;
	margin: 0 auto;
}

table.login_form th{
	border-bottom: solid 2px #fb5144;
	padding: 10px 20px;
	text-align: left;
}

table.login_form td{
	border-bottom: solid 2px #ddd;
	text-align: left;
	padding: 10px 20px;
}

/*　---- テキストリストデザイン　---- */

.textlist h3{
	margin: 15px 0 10px 0;
	font-size: 18px;
	font-weight: bold;
	color: darkcyan;
	border: 0;
	background: gainsboro;/*背景色*/
	padding: 0.5em;/*文字まわり（上下左右）の余白*/
}

.textlist dl{
	margin: 0 20px;
	text-align: left;
	padding: 0;
}
.textlist dt{
	border-bottom: 1px dashed #D2B48C;
	padding:5px;
	font-size: 14px;
	font-weight: bold;
	color: black;
}
.textlist dd{
	list-style:none;
	padding: 10px 5px 5px 5px;
}
.textlist ol{

}
.textlist li{
	font-size: 12px;
}
.textlist p{
	font-size: 12px;
}

.textlist a{
	color: darkcyan;
}
.textlist a:hover{
	color: darkred;
}

/*　---- commerceテーブルデザイン　---- */

table.testlist {
	width: 92%;
	border-spacing: 0;
	margin: 0 auto;

}

table.testlist th{
	border-bottom: solid 2px #fb5144;
	padding: 10px 20px;
	font-size: 12px;
	text-align: left;
}

table.testlist td{
	border-bottom: solid 2px #ddd;
	padding: 10px 20px;
	font-size: 12px;
	text-align: left;
}
