@charset "utf-8";

/*----------------------------------------------------------
　基本指定
 ----------------------------------------------------------*/
 
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

body {
    background: #fff;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
  	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	line-height: 35px;
	color: #333333;
    margin: 0;
    padding: 0;
}

section {
	margin: 0 auto 80px;
	width: 1000px;
}

section img{
	width: 100%;
}

h1{
	margin: 0 0 40px;
}

h2{
	margin: 40px 0 20px;
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: #ccc solid 1px;
}

h3{
	margin: 0 0 40px;
}

h4{
	margin: 0 20px 10px;
	font-size: 18px;
	border-bottom: #ccc solid 1px;
}

h5{
	margin: 0 1em;
	font-weight: 300;
	font-size: 1em;
}

p{
	margin-bottom: 20px;
	padding:0 20px;
	font-weight: 400;
}

p.lead{
	margin-bottom: 60px;
}

ul{
	margin-bottom: 20px;
	padding: 0 20px;
}

ul,li{
	list-style: none;
}

ul.note{
	font-size: 0.9em;
	line-height: 1.6;
}

ul.note li{
	text-indent: -1em;
	margin-left: 1em;
}

table.overview{
	margin: 20px;
	width: 100%;
	text-align: left;
	border-collapse: separate;
	border-spacing: 10px 0;
}

table.overview th{
	padding: 20px 0;
	font-weight: 500;
	border-bottom: #000 solid 1px;

}

table.overview td{
	padding: 20px 0;
	font-weight: 300;
	line-height: 1.4;
	border-bottom: #ccc solid 1px;
}

table.overview td span{
	font-size: 0.8em;
	line-height: 1.6;
}
a{
color: #0066cc;
}

/* ページタイトル */

section#pagetitle{
    margin: 3em auto 6em;
	text-align: center;
}

section#pagetitle p{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 2em;
}

section#pagetitle p span{
	padding: 15px 10px;
	color: #b3b3b3;
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.1em;
	border-top: #ccc solid 1px;
	border-bottom: #ccc solid 1px;
}
@media screen and (max-width: 767px) {
section {
	margin: 0 auto 6vh;
	width: 90%;
}
}

@media screen and (max-width: 767px) {

.pc_only {
    display: none;
}

.sp_only {
    display: block;
}


body {
	font-size: 1.4em;
	line-height: 1.8;
}

section {
	margin: 0 auto 6vh;
	width: 95vw;
}
h1{
	margin: 0 0 3vh;
}

h2{
	margin:3em 0 1em;
	font-size: 1.6em;
	padding-bottom: 0.1em;
}

h3{
	margin: 0 0 3vh;
}

h4{
	margin: 0 3vw 1vh;
	font-size: 1.52em;
}

h5{
	font-size: 1.5em;
	font-weight: 300;
}

p{
	margin-bottom: 1vh;
	padding:0 0.8em;
	line-height: 2;
	font-size: 1.4em;
}

p.lead{
	margin-bottom: 6vh;
}

ul{
	margin-bottom: 1em;
	padding: 0 1em;
}

table.overview{
	margin: 0;
	border-spacing: 0.4em 0;
	font-size: 1.2em;
}

table.overview th{
	padding: 1em 0.5em;
	width: 7em;
}

table.overview td{
	padding: 1em;
}

table.overview td span{
	font-size: 0.8em;
	line-height: 1.6;
}

section#pagetitle p{
	font-size: 2.4em;
	line-height: 2em;
}

section#pagetitle p span{
	padding: 1em 0.8em;
	font-size: 0.4em;
}


}



/*----------------------------------------------------------
　フォント設定
 ----------------------------------------------------------*/
/*
<weight>: Use a value from 100 to 900
<uniquifier>: Use a unique and descriptive class name
Thin:100
Light:300
Regular:400
Medium:500
Bold:700
Black:900
*/

.nsjp-Light {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.nsjp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nsjp-medium {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.nsjp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

