@charset "UTF-8";

body {
    font-size: 14px;
}

/*====== Common Style =====*/
.for_sp { display: none !important; }

#main {
	padding: 30px 0;
}
.pop{
	background: rgba(0, 0, 0, 0.4);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.pop_content{
	background: #fff;
    left: 50%;
    padding: 55px 3%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}
.pop_kv img {
	width: 100%;
}
.inner {
	width: 90%;
	margin: 20px auto;
}

h1 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 20px;
}
h1::before {
	content: "■";
	margin-right: 5px;
}

h2 {
	font-size: 24px;
	padding: 5px 4px;
	border-bottom: solid 1px #000;
	margin-bottom: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 17px;
	margin-bottom: 15px;
}

h5 {
	font-size: 19px;
	margin-top: 30px;
	margin-bottom: 25px;
	text-align: center;
	width: 50%;
	padding: 5px 10px;
	background: #7D7D7D;
	color: #FFF;
	
}

.inner p {
	width: 98%;
	margin: 0px auto 15px;
	line-height: 23px;
}


.inner ul.mark li {
	width: 96%;
	margin: 0px auto 15px;
	list-style: circle;
	list-style-type: disc;
	line-height: 20px;
}

dl.table1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
	margin-left: 12px;
	margin-bottom: 16px;
	line-height: 20px;
	box-sizing: border-box;
}
dl.table1 dt {
  width: 45px;
  margin-bottom: 5px;
  box-sizing: border-box;
}

dl.table1 dd {
  width: calc( 100% - 45px );
  margin-bottom: 5px;
  box-sizing: border-box;
}

ol.number {
	margin-left: 2em; /* サイトに合せて調整 */
}
 
ol.number li {
	list-style-type: none;
	counter-increment: cnt;
	margin-bottom: 10px;
	line-height: 20px;
}
 
ol.number li::before {
	content: "(" counter(cnt) ")";
	display:inline-block;
	margin-left:-2em; /* サイトに合せて調整 */
	width: 2em; /* サイトに合せて調整 */
}

a.btn_pop {
    /*ボタンの形状*/
    display: block;
	position: relative;
    color: #fff;
	width: 350px;
	margin: 60px auto 30px;
	font-size: 20px;    
    padding: 12px 60px;
    border-radius:10px;
    text-decoration: none;
	text-align: center;
    outline: none;
    /*背景色*/
    background: linear-gradient(to right, #53B5FF 0%, #6DFF6F 100%);
    /*アニメーションの指定*/ 
    transition: all 0.3s ease-out;
}
a.btn_pop::before {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	content: "×";
	font-size: 45px;
	font-weight: 100;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}


/*hoverした際のスケールで全体を拡大し影を付ける*/
a.btn_pop:hover {
    transform: scale(1.02);
    /*ボックスの影*/  
    box-shadow: 0 3px 3px rgba(0,0,0,0.2);
}