@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;600;700&display=swap');

@font-face{
    font-family:"IPAex明朝";
    src: url('https://cdn.leafscape.be/IPAexfont/ipaexm_web.woff')
        format("woff");
}



html,
body { margin: 0; padding: 0;
       width: 100%;}

body {
	background: #002C81;
	font-size: 16px;
    color: #555;
	line-height: 1.5;
	text-align:center;
    letter-spacing: 0.1em;
	font-family: 'Noto Sans JP', Meiryo, メイリオ, sans-serif;
	font-weight: 400;
}

html { font-size: 100%;}

header,footer {
  display: block;
}

::selection {
    background: #333;
	color: #1F7CFF;
}

::-webkit-scrollbar{
	width: 16px;
}
::-webkit-scrollbar-track{
	background-color: rgba(255,255,255,0);
	border-left: solid 2px #CCE1FF;
}
::-webkit-scrollbar-thumb{
	background: #fff;
	box-shadow: inset 0 0 0 2px #fff;
}

/*------------------------------------------------------------
汎用
------------------------------------------------------------*/

a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: #555;
}

a:hover{
    cursor: pointer;
}

a:hover::after {
    width: 100%;
}

.flex {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content : center;
}


/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/


header{
    position: relative;
    width: 100%;
    height: 200px;
    margin: 0;
    padding: 60px 0 20px;
}

header a {
    display: inline-block;
    margin: 0 5px;
}


h1{
	position: absolute;
	width: 800px;
	margin: 20px auto;
	padding: 24px;
	right: 0.1em;
	font-size: 90px;
	font-family: "Hannari", "IPAex明朝", 'Alegreya Sans', 'メイリオ', sans-serif;
	font-weight: 600;
	color: #fff;
	transform: rotate(7deg);
	-moz-transform: rotate(7deg);
	-webkit-transform: rotate(7deg);

}

h1::before, h1::after {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
}

h1::before {
    border-left: solid 5px #fff;
    border-top: solid 5px #fff;
    top: 0;
    left: 0;
}

h1::after {
    border-right: solid 5px #fff;
    border-bottom: solid 5px #fff;
    bottom: 0;
    right: 0;
}


.name {
	height: 70px;
}

input {
    padding: 10px 16px;
    margin: 0 0 15px;
    height: auto;
	border: 5px solid #fff;
	border-left: none;
	border-radius: 0;
	font-weight: 900;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
	float: left;
}

input[type=text] {
	width: 200px;
	background: #002C81;
	color: #fff;
	cursor: text;
}

input[type=submit] {
	width: 165px;
	background: #fff;
	color: #002C81;
    cursor: pointer;
	appearance: none;
	-webkit-appearance: none;/* IOS用 */
}

/*------------------------------------------------------------
メイン
------------------------------------------------------------*/

main{
	width : 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

article {
    width: 100%;
    counter-reset: number;
}
article a::before {
    counter-increment: number;
    content: counter(number,decimal-leading-zero) " ";
    font-family: 'Fira Code', monospace;
    font-weight: 700;
	color: #B80F11;
}

section {
    position: relative;
    margin: 40px 0 60px;
    padding: 60px 140px;
    width: 720px;
    height: auto;
    background-color:#fff;
    word-wrap: break-word;
    text-align: justify;
    vertical-align: top;
}

section a{
    display: block;
    padding-right: 0.5em;
    font-family: 'Noto Sans JP', Meiryo, メイリオ, sans-serif;
    font-weight: 700;
    color: #333;
}
section a:hover{
	color: #1F7CFF;
	text-indent: 2em;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}



h2 {
	position: absolute;
	margin : 0;
	padding: 30px;
	width: 1em;
	top: 0;
	right: -3.7em;
	background: #002C81;
	border: 5px solid #fff;
	line-height : 1;
	font-size : 24px;
	font-weight: 900;
	color: #fff;
}


h3 {
	margin: 0 0 32px;
	color: #B80F11;
	font-size : 20px;
	font-weight: 700;
}


h3 {
	position: relative;
	display: inline-block;
	padding: 0.25em 1em;
	width: 100%;
	line-height: 1.4;
	text-align: center;
}

h3:before, h3:after { 
	position: absolute;
	top: 0;
	content:'';
	width: 8px;
	height: 100%;
	display: inline-block;
}
h3:before {
	border-left: solid 4px #0f55b8;
	border-top: solid 4px #0f55b8;
	border-bottom: solid 4px #0f55b8;
	left: 0;
}
h3:after {
	content: '';
	border-top: solid 4px #0f55b8;
	border-right: solid 4px #0f55b8;
	border-bottom: solid 4px #0f55b8;
	right: 0;
}



h3 span {
	display: block;
	margin: 0;
	font-size : 16px;
}

.main-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content : space-between;
    width: 100%;
    margin: auto;
}

.main-list ol {
    padding-top: 20px;
    padding-right: 100px;
    width: 270px;
}

.main-list ol:last-child {
    padding-right: 0;
}

.main-list ol li {
    list-style: none!important;
	margin-bottom: 5px;
}



/*------------------------------------------------------------
MediaQuery
------------------------------------------------------------*/

/*-----------------------------------------
SP SMALL(~319px)
------------------------------------------*/
@media screen and (max-width: 319px) { 




}/*-------SP SMALL--------*/

/*-----------------------------------------
SP(320~599px)
------------------------------------------*/
@media screen and (max-width: 599px) { 

/*---------
ヘッダー
-----------*/

	header{
		height: 180px;
		margin: 0;
		padding: 80px 0 20px;
	}

	header a {
		margin: 0 5px;
	}


	h1{
		display: block;
		width: 90%;
		margin: 0 auto;
		padding: 40px 14px;
		right: 0.2em;
		font-size: 42px;
	}

	h1::before, h1::after {
		width: 30px;
		height: 30px;
	}

	h1::before {
		border-left: solid 4px #fff;
		border-top: solid 4px #fff;
	}

	h1::after {
		border-right: solid 4px #fff;
		border-bottom: solid 4px #fff;
	}

	.name {
		margin-bottom: 10px;
	}


	input {
		padding: 10px 16px;
		margin: 0 0 15px;
		font-size: 24px;
		letter-spacing: 0.1em;
	}

	input[type=text] {
		width: 200px;
	}

	input[type=submit] {
		width: 165px;
	}

/*---------
メイン
-----------*/


	main{
		width : 100%;
		margin: 0 auto;
		padding: 0;
	}


	section {
		margin: 0 0 80px;
		padding: 0;
		width: 100%;
	}

	section a{
		padding-right: 0.5em;
	}

	h2 {
		position: static;
		margin : 0 auto;
		padding: 30px 0;
		width: 100%;
		border-left: none;
		border-right: none;
		box-sizing: border-box;
		font-size : 30px;
		text-align: center;
	}

	h3 {
		font-size : 22px;
	}

	h3:before, h3:after { 
		top: 0;
		width: 8px;
	}

	h3:before {
		border-left: solid 4px #1F7CFF;
		border-top: solid 4px #1F7CFF;
		border-bottom: solid 4px #1F7CFF;
		left: 0;
	}
	h3:after {
		content: '';
		border-top: solid 4px #1F7CFF;
		border-right: solid 4px #1F7CFF;
		border-bottom: solid 4px #1F7CFF;
		right: 0;
	}


	h3 span {
		margin: 0;
		font-size : 16px;
	}

	.main-list {
		flex: none;
		margin: 40px auto;
		width: 314px;
	}

	.main-list ol {
		padding-top: 32px;
		padding-right: 0;
		width: 270px;
	}

	.main-list ol:first-child {
		padding-top: 0;
	}

	
	
	
	
	
	
/*---------
本文
-----------*/
	
	
	
	
.text{
    margin: 0 auto;
    text-align:left;
    font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", メイリオ, Meiryo, sans-serif;
}

.pagenation ul {
    margin: 30px auto 45px;
    width: 400px;
    width: 85%;
    text-align: center;
}

.pagenation ul li {
    display: inline;
    background: #fff;
    border-radius: 10px;
    margin: 30px;
    padding: 8px;
}

.pagenation ul li a {
    text-decoration: none;
    border: none;
    font-family: "Hannari", "游明朝", YuMincho, IPAex明朝, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif;
}


}/*-------SP--------*/

/*-----------------------------------------
TABLET SMALL(600~900)
------------------------------------------*/
@media screen and (max-width: 800px) { 
}
