@charset "UTF-8";
/* Reset */

body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, 
blockquote, pre, table, caption, th, td, address, 
form, fieldset, legend, object {
	margin: 0;
	padding: 0;
}

p,h5, h6, pre, table, design, kbd, samp, acronym, input, textarea, select {
	font-size: 14px;
}
@media screen and (min-width: 960px) {
	p,h5, h6, pre, table, design, kbd, samp, acronym, input, textarea, select {
	font-size: 16px;
	}
}
address, em, cite, dfn, var {
	font-style: normal;
}

input, textarea {
	font-family: sans-serif;
	font-weight: normal;
}

img {
	max-width: 100%;
    border: 0;
    vertical-align: bottom;
}

a img {
  	border: none;
}


/* Setting */

html {  
	overflow-y: scroll;  
}

body {
	line-height: 1.5;
	background: #FFF;
	color: #333;
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: none;
	overflow-x : hidden;
}


h1 {
	margin: 0px;
	padding: 0px;
}

ul {
	list-style-position: outside;
}
ul li {
	list-style-type: none;
}

ol {
	list-style-position: outside;
}
  
table {
	border-collapse: collapse;
}

legend {
	color: #333;
}

.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.clear {
	clear: both;
}

.title {
  margin-top: 20px;
	margin-bottom: 40px;
  text-align: center;
  line-height: 1.8;
}
.title strong {
  font-size: 48px;
  border-bottom: solid 5px #00529F;
  letter-spacing: 0.15em;
}
.title img {
    max-width: 400px;
    padding-right: 10px;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .title {
    margin-top: 10px;
    padding: 0 10px;
  }
  .title strong {
    font-size: 32px;
    letter-spacing: 0.15em;
  }
  .title img {
    position: relative;
    top: -5px;
    max-width: 250px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 479px) {
  .title {
    padding: 0 5px;
  }
  .title strong {
    font-size: 26px;
    letter-spacing: 0.1em;
  }
  .title img {
    max-width: 200px;
    padding-right: 10px;
  }
}

.subtitle {
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.8;
}

.subtitle span {
  font-size: 34px;
  font-weight: bold;
  padding-bottom: 2px;
  letter-spacing: 0.2em;
  border-bottom: solid 4px #00B050;
}

@media screen and (max-width: 767px) {
  .subtitle span {
    font-size: 28px;
    letter-spacing: 0.12em;
  }
}

@media screen and (max-width: 479px) {
  .subtitle span {
    font-size: 24px;
    letter-spacing: 0.08em;
  }
}
.mini {
  font-size: 12px;
}

.caution {
	color: #FF4629;
}

/*header*/
.header {
	position: relative;
	max-width: 960px;
	margin: auto;
}
.logo {
	position: relative;
	top: 10px;
	left: 10px;	
}
.logo img {
	width: 250px;
}
.header nav {
	position: fixed;
	top: 10px;
	right: calc((100vw - min(100%, 960px)) / 2 + 10px);
  z-index: 1;
}
.header nav ul li {
	float: right;
}
.header nav ul li a {
	display: block;
	width: 120px;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	box-sizing: border-box;
}
.header nav ul li:nth-of-type(1) a {
	margin-left: 10px;
	color: #00529F;
	background: #fff;
	border: solid 1px #00529F;
}
.header nav ul li:nth-of-type(1) a:hover {
	color: #fff;
	background: #00529F;
}
.header nav ul li:nth-of-type(2) a {
	color: #fff;
	background: #00529F;
}
.header nav ul li:nth-of-type(2) a:hover {
	color: #00529F;
	background: #fff;
	border: solid 1px #00529F;
}
@media screen and (max-width: 639px) {
	.logo img {
		width: 200px;
	}
	.header nav ul li a {
	}
}
@media screen and (max-width: 479px) {
	.logo img {
		width: 150px;
	}
	.header nav ul li a {
		width: auto;
		padding: 10px 5px;
		font-size: 14px;
	}
}

/*contents共通*/
.contents {
	max-width: 960px;
	margin: auto;
	padding: 30px 10px;
}

.contents p {
	text-align: center;
	margin-bottom: 20px;
}

section {
    padding-bottom: 80px;
}
section:last-child {
    border-bottom: none;
}

.subsc_merit {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: start;
    justify-content: center;
    margin: auto;
}
.subsc_merit > li {
    width:  calc(100%/3);
    margin-bottom: 30px;
    padding: 1%;
    box-sizing: border-box;
}
@media screen and (max-width: 819px) {
    .subsc_merit > li {
        width: calc(100%/2);
    }
}
@media screen and (max-width: 639px) {
    .subsc_merit > li {
        width: 100%;
    }
}
.subsc_merit > li > div {
    border: solid 1px #d9d9d9;
    border-radius: 6px;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.5);
}
.subsc_merit > li > div .subsc_merit_par {
    position: relative;
    top: -20px;
    margin: 0 auto 0;
    width: 220px;
    padding: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 6px;
}
.subsc_merit_save .subsc_merit_par {
    letter-spacing: 0.1em;
    background: #ff555c;
    border: solid 8px #fe6d73;
}
.subsc_merit_user .subsc_merit_par{
    letter-spacing: 0.1em;
    background: #6950ff;
    border: solid 8px #aa9cff;
}
.subsc_merit_soft .subsc_merit_par{
    background: #00bf63;
    border: solid 8px #17c3b2;
}
.subsc_merit_complete .subsc_merit_par{
    background: #ffc000;
    border: solid 8px #fbcd82;
}
.subsc_merit_data .subsc_merit_par{
    letter-spacing: 0.1em;
    background: #e12eff;
    border: solid 8px #f095ff;
}
.subsc_merit_asset .subsc_merit_par{
    letter-spacing: 0.1em;
    background: #ff913e;
    border: solid 8px #ffac6e;
}
.subsc_merit > li > div .subsc_merit_par2 {
    font-size: 20px;
    font-weight: bold;
    height: 90px;
    margin-bottom: 10px;
}
.subsc_merit > li > div .subsc_merit_par2 span {
    color: #00529F;
}

.subsc_btn {
    padding-bottom: 60px;
}
.subsc_btn p {
    font-size: 20px;
    font-weight: bold;
}
.subsc_btn p:nth-of-type(1) {
}
.subsc_btn p:nth-of-type(2) {
    color: #FF4629;
}
.subsc_btn div {
    padding-bottom: 20px;
    text-align: center;
}
.subsc_btn img {
    width: 400px;
}

#subsc_package table {
    margin: 15px auto 20px auto;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
#subsc_package table th {
    padding: 8px;
    color: #333;
    text-align: center;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #f0f0f0;
}
#subsc_package table th:nth-of-type(1) {
    width: 20%;
}
#subsc_package table th:nth-of-type(2) {
    width: 30%;
    background: #fffac6;
}
#subsc_package table th:nth-of-type(3) {
    width: 30%;
}
#subsc_package table td {
    padding: 8px;
    text-align: center;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#subsc_package table td:nth-of-type(1) {
    text-align: right;
    font-weight: bold;
}
.subsc_package_btn a,
.subsc_flow_btn a {
    display: block;
    margin: auto;
    padding: 10px;
    width: 300px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    background: #00529F;
    border-radius: 8px;
}
.subsc_package_btn a:hover,
.subsc_flow_btn a:hover {
    color: #00529F;
    background: #fff;
    border: solid 1px #00529F;
}

.subsc_purchase_soft_menu h3,
.subsc_purchase_series_menu h3{
    padding:0;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4em;
}

.subsc_purchase_soft_menu_item,
.subsc_purchase_series_menu_item{
    display: flex;
    flex-wrap: wrap;
}

.subsc_purchase_soft_menu_item li{
    width: calc(100%/4);
    margin-top: 0;
    padding: 1%;
    text-align: center;
    box-sizing: border-box;
}

.subsc_purchase_series_menu_item li{
    width: calc(100%/3);
    padding: 0 2%;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    box-sizing: border-box;
}

.subsc_purchase_series_menu_item li:first-child {
    /*padding: 0 2% 0 0;*/
}
@media screen and (max-width: 819px) {
    .subsc_purchase_soft_menu_item li{
        width: calc(100%/3);
    }
}
@media screen and (max-width: 639px) {
    .subsc_purchase_soft_menu_item li{
        width: calc(100%/2);
    }
  .subsc_purchase_series_menu_item li{
        width: calc(100%/2);
        margin-bottom: 1.5%;
    }
}
@media screen and (max-width: 479px) {
  .subsc_purchase_series_menu_item li{
        width: 100%;
    }
}

#subsc_flow {
    max-width: 600px;
    margin: auto;
}
#subsc_flow p {
    text-align: left;
}

/*footer*/
.footer {
	border-top: 10px solid #18388d;
}
.footer_contents {
	max-width: 960px;
	margin: auto;
}
.footer_contents > ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: start;
    justify-content: center;
    margin: auto;
}
.footer_contents > ul > li:nth-of-type(1) {
    width: 70px;
    padding: 1%;
    box-sizing: border-box;
}
.footer_contents > ul > li:nth-of-type(2) {
    width: calc(100% - 70px);
    padding: 1%;
    box-sizing: border-box;
}
.footer small {
	display: block;
	padding-bottom: 20px;
	text-align: center;
}

.gotop {
    bottom: 20px;
    right: 20px;
    position: fixed;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    opacity: 0.5;
}
