@charset "UTF-8";

/*ーーーーーーーーーーーーーーーーーーーーーーーー
 CSS　カスタムプロパティ
ーーーーーーーーーーーーーーーーーーーーーーーー */

:root {
--color-main: #0a1538;
--color-main-compl:#382E0A;
--color-vivid: #19358F;
--color-vivid-compl:#796415;
--color-bg:#fafafa;
}




/*ーーーーーーーーーーーーーーーーーーーーーーーー
css reset
ーーーーーーーーーーーーーーーーーーーーーーーー*/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
    margin:0;padding:0;
}
table{
    border-collapse:collapse;border-spacing:0;
}
fieldset,img{ border:0; }
address,caption,cite,code,dfn,em,strong,th,var{
    font-style:normal;font-weight:normal;
}
li { list-style:none; } caption,th{ text-align:left; }
h1,h2,h3,h4,h5,h6{
    font-size:100%;
}
q:before,q:after{ content:''; }
abbr,acronym{ border:0;font-variant:normal; }
sup{ vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
input,textarea,select{ font-family:inherit;font-size:inherit;font-weight:inherit; }
legend{ color:#000; }
img { vertical-align:middle; }






/*ーーーーーーーーーーーーーーーーーーーーーーーー
フォント
ーーーーーーーーーーーーーーーーーーーーーーーー*/

html {
font-family:
"Hiragino Kaku Gothic ProN",
"Hiragino Sans",
"Meiryo",
"Yu Gothic UI",
sans-serif;
font-weight: 400;
font-size:18px;
}

		@media screen and (max-width:743px) {
		html {
		font-size:16px;
		}
		/*smp end*/}






/*文字マージン
ーーーーーーーーーーーーーーーーーーーーーーーー*/

/*行上*/
p {
margin-top:20px;
}
ul,ol,dl {
margin-top:20px;
}
li,dt,dd {
margin-top:10px;
}

header p,
header ul,
header ol,
header li,
footer p,
footer ul,
footer ol,
footer li,
th > p:first-child,
th > ul:first-child,
th > ol:first-child,
th > dl:first-child,
td > p:first-child,
td > ul:first-child,
td > ol:first-child,
td > dl:first-child {
margin-top:0px;
}





/*ーーーーーーーーーーーーーーーーーーーーーーーー
リンク
ーーーーーーーーーーーーーーーーーーーーーーーー*/

a:link,
a:visited {
text-decoration: underline;
color: var(--color-vivid);
transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover,
a:active {
text-decoration: none;
color: var(--color-vivid-compl);
}

a.current {
text-decoration: underline !important;
color: var(--color-vivid-compl);
font-weight: 600;
}



/*リンク画像ロールオーバー(アルファ処理)
ーーーーーーーーーーーーーーーーーーーーーーーー*/

a img {
transition: opacity 0.3s ease;
}
a:hover img {
opacity:0.60;
}





/*ーーーーーーーーーーーーーーーーーーーーーーーー
基本レイアウト
ーーーーーーーーーーーーーーーーーーーーーーーー*/

/*全体
ーーーーーーーーーーーーーーーーーーーーーーーー*/


body {
background: var(--color-bg);
color: var(--color-main);
padding-top: 79px;
}
		@media screen and (max-width:733px) {
		body {
		padding-top: 67px;
		}
		/*smp end*/}


/*iPad調整用*/
@media screen and (min-width:744px) {
body {min-width:1220px;}
}

img {
max-width:100%;
height:auto;
}



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

#header-fixd {
position: fixed;
background: var(--color-bg);
width: 100%;
top: 0px;
box-shadow: 0px 0px 3px var(--color-main-compl);
}
header {
width: 1200px;
margin: 0 auto;
padding: 10px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}

header .boxa {
width: 100px;
}
header .boxb {
display: flex;
flex-wrap: wrap;
align-items: center;
}
header .boxb ul {
display: flex;
margin-right: 10px;
}
header .boxb li {
font-size: 16px;
}
header .boxb li a {
padding: 5px 15px;
display: inline-block;
text-decoration: none;
}
header .boxb p:last-child {
font-size: 16px;
}

		@media screen and (max-width:733px) {
		header {
		width: auto;
		display: flex;
		padding-right: 10px;
		padding-left: 10px;
		}

		header .boxa {
		width: 80px;
		}
		header .boxb {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		}
		header .boxb ul {
		display: none;
		}
		header .boxb p:last-child {
		font-size: 14px;
		margin-right: 55px;
		}

		/*smp end*/}




/*フッター
ーーーーーーーーーーーーーーーーーーーーーーーー*/

footer {
background: var(--color-main);
text-align: center;
color: #fff;
font-size: 14px;
padding: 20px 0px;
margin-top: 100px;
}


		@media screen and (max-width:733px) {
		footer {
		margin-top: 50px;
		}
		/*smp end*/}

