@charset "UTF-8";

body {
    font-size: 16px;
}

/*====== Common Style =====*/
.for_pc { display: none !important; }


#main {
	padding: 0;
}

.pop_kv img {
	width: 100%;
}
.pop{
	background: rgba(0, 0, 0, 0.4);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.pop_content{
	background: #fff;
    left: 50%;
    padding: 20px 3%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}
.inner {
	width: 90%;
	margin: 20px auto;
}

h1 {
	text-align: center;
	font-size: 26px;
	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: 20px;
	margin-top: 30px;
	margin-bottom: 25px;
	text-align: center;
	width: 90%;
	padding: 5px 10px;
	background: #7D7D7D;
	color: #FFF;
	
}

.inner p {
	width: 94%;
	margin: 0px auto 15px;
	line-height: 23px;
	font-size: 14px;
}


.inner ul.mark li {
	width: 90%;
	margin: 0px auto;
	list-style: circle;
	list-style-type: disc;
	line-height: 23px;
	margin-bottom: 16px;
	font-size: 14px;
}

dl.table1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	line-height: 23px;
	margin-left: 12px;
	margin-bottom: 16px;
	box-sizing: border-box;
	font-size: 14px;
}
dl.table1 dt {
  width: 55px;
  padding-bottom: 10px;
  margin-bottom: 5px;
  box-sizing: border-box;
}

dl.table1 dd {
  width: calc( 100% - 55px );
  padding-bottom: 10px;
  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: 23px;
}
 
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: 100%;
	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";
}
