@charset "utf-8";
/*-------------------------------------------------
# リセット
-------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
 
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;

/*追記*/
    list-style:none;
}
 
body {
    line-height:1;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
 
nav ul {
    list-style:none;
}
 
blockquote, q {
    quotes:none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
 
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
 
del {
    text-decoration: line-through;
}
 
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
table {
    border-collapse:collapse;
    border-spacing:0;
}
th,td {
	text-align:left; vertical-align:top;
}
 
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
	background:#ccc;
    border:none;   
    margin:1em 0;
    padding:0;
	overflow:hidden;
}
 
input, select {
    vertical-align:middle;
}

/*フォーム*/
input[type="text"],input[type="password"],input[type="file"],textarea,select{
font-family: inherit; font-weight: 450; line-height: 1.4; display: inline-block; outline:none; font-size: 100%; -webkit-appearance: none;
border: none; border-radius: 0; background-color: #fff; padding: 0.5em; margin: 0.3em 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset,0 0 0 0.3em rgba(0,0,0,0.05) inset;
}
input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,textarea:focus, select:focus{
box-shadow: 0 0 0 1px rgba(61,156,255,1) inset,0 0 0 0.3em rgba(61,156,255,0.2) inset;}

/*ボタン*/
input[type="button"],input[type="submit"],input.button{display: inline-block; line-height: 1.4; text-align: center; font-family: inherit; font-size: 100%; -webkit-appearance: none;}

/*プレイスホルダ*/
::placeholder{font-size: 90%;}
@media screen and (max-width:960px){
::placeholder{font-size: 80%;}
}

/*ラベル*/
label{line-height:1.4; padding:0.1em 0 0.1em 2em; margin: 0.2em 1em 0.2em 0; vertical-align:middle; cursor: pointer; position:relative; display:inline-block;}
/*デフォルトのチェックとラジオを消す*/
label:has(input[type="checkbox"]) input,
label:has(input[type="radio"]) input{display:none;}
/*オリジナルのチェックとラジオを作成*/
label:has(input[type="checkbox"]):before,
label:has(input[type="radio"]):before{ content:""; display:block; width:1.6em; height:1.6em; position:absolute; top:0; left:0; box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset,0 0 0 0.3em rgba(0,0,0,0.05) inset; background: #fff;}
label:has(input[type="checkbox"]:checked):before,
label:has(input[type="radio"]:checked):before{ box-shadow: 0 0 0 1px rgba(61,156,255,1) inset,0 0 0 0.3em rgba(61,156,255,0.2) inset;}
/*チェックアイコン*/
label:has(input[type="checkbox"]):after,
label:has(input[type="radio"]):after{font-family:"Font Awesome 6 Free"; content:"\f00c"; font-weight:600; display:block; width:1.6em; height:1.6em; line-height:1.6em; position: absolute; top: 0; left: 0; text-align: center; color: rgba(61,156,255,1); opacity: 0;}
/*チェックされたら*/
label:has(input[type="checkbox"]:checked):after,
label:has(input[type="radio"]:checked):after{opacity: 1;}
/*ラジオは...*/
label:has(input[type="radio"]):before{ border-radius:99em;}
label:has(input[type="radio"]:checked):after{content:""; background: rgba(61,156,255,1); border-radius: 99em; width: 0.6em; height: 0.6em; top: 0.5em; left: 0.5em;}

/*セレクト*/
select::-ms-expand {display:none;}
select{ -webkit-appearance: none; -moz-appearance: none; appearance: none;
background-image:url(../img/select.png); background-repeat: no-repeat; background-position: right 0.6em center; background-size:0.6em auto; padding-right:1.8em; cursor:pointer;}
