@charset "UTF-8";

.header-products {
	background: rgba(17, 24, 29, 1);
	padding: 20px;
	.logo {
		width: 120px;
		margin: 0 auto;
	}
}

/*-------------------------------------

products

-------------------------------------*/
.products {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
	.link-inline {
		display: block;
		text-align: center;
		font-weight: normal;
		text-decoration: underline;
		font-size: 14px;
		&.faq {
			font-size: 18px;
			font-weight: bold;
		}
	}
	
	.link-list {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 20px;
	}
}

@media screen and (max-width: 736px) {
  /* 文字サイズを小さく */
  .products .link-inline.faq {
    font-size: 16px; 
  }
}


/*-------------------------------------

特定商取引法に基づく表記

-------------------------------------*/
.legal {
	width: 80%;
	max-width: 800px;
	margin: 80px auto;
	h1 {
		font-size: 24px;
		margin-bottom: 2em;
	}
	h2 {
		font-size: 18px;
		border-bottom: 1px solid #ddd;
		padding-bottom: 1em;
		margin-bottom: 1em;
		margin-top: 3em;
	}
	p,ol,ul {
		font-size: 15px;
	}
	ol,ul {
		margin-left: 2em;
		margin-top: 1em;
		margin-bottom: 1em;
		list-style: revert;
		li + li {
			margin-top: 0.5em;
		}
	}
	ol.alpha {
		list-style: lower-alpha;
	}
}