﻿@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
body {
	background: #fff;
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	line-height: 1.8;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
img {
	max-width: 100%;
	box-sizing: border-box
}
div {
	box-sizing: border-box
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	box-sizing: border-box
}
ul, ol {
	padding: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box
}
dd, dt, dl {
	padding: 0;
	margin: 0;
	box-sizing: border-box
}
a {
	box-sizing: border-box;
	text-decoration: none
}
a:focus, *:focus {
	outline: none
}
p {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
.sp {
	display: none
}
body {
	margin: 0;
	padding: 0
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
}


.btns{
	display: flex;
	gap: 10px;
	padding: 10px;
	background-color: #fff;
	border-radius: 50px;
	width: fit-content;
	margin: 0 auto;
}
.btn {

}
.btn a {
	color: #fff;
	text-decoration: none;
	width: 270px;
	height: 60px;
	background-color: #0076FF;
	border: 2px solid #fff;
	border-radius: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: 0.3s;
	position: relative;
	box-shadow: 0 2px 4px #00000045;
}
.btn a p{
	font-size: 20px;
	line-height: 1;
	text-align: center;
	font-weight: 700;
}
.btn a .sub{
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: 700;
}
.btn a .pointer{
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #fff;
	padding: 0;
	position: absolute;
	top: 50%;
	right: 10px;
	translate: 0 -50%;
}
.btn a .pointer::before{
	content: "";
	width: 8px;
	height: 10px;
	background-color: #001E5A;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	left: 10px;
	translate: 0 -50%;
}

.btn.btnSignup a{
	color: #001E5A;
	background-color: #FAEC0E;
	border: 0;
}
.btn.btnTrial a{
	color: #fff;
	background-color: #0076FF;
	border: 0;
}
@media screen and (max-width: 1240px) {
	.btns{
		
	}
	.btn a{
		width: 235px;
	}
	.btn a p{
		font-size: 16px;
	}
}
@media screen and (max-width: 1023px) {
	.btn a{
		width: 235px;
	}
}
@media screen and (max-width: 768px) {
	.btns{
		flex-direction: column;
		gap: 3vw;
		padding: 3vw 3vw;
		border-radius: 4vw;
		margin: 0 auto;
	}
	.btn {

	}
	.btn a {
		width: 74vw;
		height: 15vw;
		border-radius: 8vw;
		gap: 1vw;
	}
	.btn a p{
		font-size: 4.5vw;
	}
	.btn a .sub{
		font-size: 3vw;
	}
	.btn a .pointer{
		width: 7vw;
		height: 7vw;
		right: 2vw;
	}
	.btn a .pointer::before{
		content: "";
		width: 1.5vw;
		height: 2vw;
		left: 3vw;
	}

	.btn.btnSignup a{
		color: #001E5A;
		background-color: #FAEC0E;
		border: 0;
	}
	.btn.btnTrial a{
		color: #fff;
		background-color: #0076FF;
		border: 0;
	}	
}


.fuki {
	position: relative;
	padding: 0.3em 0.5em;
	background: #fff;
	border-radius: 6px;
}
.fuki:after {
	position: absolute;
	content: '';
	top: 100%;
	left: calc(50% - 10px);
	border: 10px solid transparent;
	border-top: 10px solid #fff;
	width: 0;
	height: 0;
}
.point{
	font-size: 25px;
	color: #fff;
	font-weight: bold;
	width: 200px;
	height: 62px;
	border-radius: 100px;
	background: #002146;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.point{
		font-size: 5vw;
		width: 40vw;
		height: 12vw;
		border-radius: 40vw;
	}	
}



header {
	position: relative;
	background: #fff;
	width: 100%;
	z-index: 100
}
header .headerMain {
	width: 1200px;
	height: 90px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
header .headerMain .title {
	display: flex;
	align-items: center;
	gap: 20px;
	transition: 0.3s;
}
header .headerMain .title span {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	color: #040000;
}
header .headerMain img.logo {
	width: 260px;
	position: relative;
}
header .headerMain .btns{
	padding: 0;
	background-color: unset;
	margin: 0;
}
@media screen and (max-width: 1240px) {
	header .headerMain {
		width: 1000px
	}
}
@media screen and (max-width: 1023px) {
	header .headerMain {
		width: 700px;
	}
	header .headerMain .title {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	header .headerMain .title br{
		display: none;
	}
	header .headerMain .btn a{
		width: 200px;
	}
	header .headerMain .btn .pointer{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	header .headerMain {
		width: 95%;
		height: 18vw;
	}
	header .headerMain .title {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-top: 2vw;
	}
	header .headerMain .title span {
		font-size: 2.5vw;
		font-weight: 500;
	}
	header .headerMain img.logo {
		width: 40vw;
	}
	header .headerMain .btns{
		flex-direction: row;
		gap: 2vw;
		margin: 0;
	}
	header .headerMain .btn a{
		width: 24vw;
		height: 10vw;
	}
	header .headerMain .btn a p{
		font-size: 3.5vw;
	}
	header .headerMain .btn .sub,
	header .headerMain .btn .pointer{
		display: none;
	}
}


footer {
	padding: 40px 0;
	color: #fff;
	background: #333
}
footer .copyright {
	width: 100%;
	color: #5b5b5b;
	text-align: center;
	font-size: 11px
}
@media screen and (max-width: 768px) {
	
}

