@charset "UTF-8";
/* 目次
******************************************************************
01. General Setting
    01-01. Reset
    01-02. Text
        01-02-01. Title
        01-02-02. Font
        01-02-04. List
        01-02-05. Link
02. Color
    02-01. Site Color
******************************************************************/
/******************************************************************
01. General Setting
******************************************************************/
/*****************************************
01-01. Reset
******************************************/
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike,
sub, sup, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-style: inherit;
    font-size: 100%;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-feature-settings: "palt";
    vertical-align: baseline;
    list-style: none;
    word-break: break-word;
    letter-spacing: .1rem;
}
:focus {
    outline: none;
    box-shadow: 0 0 2px 1px #ff5722;
}
a:focus,
input[type="file"]:focus,
th a:focus, td a:focus {
    box-shadow: none;
}
/* rem初期化 */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    min-height: 100vh;
}
body {
    font-size: 1.6rem;
    background-color: #FAF8F7;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
}
input, textarea, keygen, select, button {
    font-size: 1.4rem;
}
* {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    max-width:100%;
    min-height: 100vh;
    height: auto;
    height: -webkit-fill-available;
    box-sizing: border-box;
}
/*body * {
    outline: red 1px solid;
}*/

main {
}
a {
    color: #000;
    text-decoration: none;
}
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
*:focus {
	outline: none;
}
p {
    text-align: justify;
    word-break: break-all;
}
select {
    -webkit-appearance: none;
    appearance: none;
    color: var(--font-baseColor-black);
}
ol {
    counter-reset: count 0;
}
ol li:before {
    margin-right: .5rem;
    content: counter(count) ". ";
    counter-increment: count 1;
    color: #E0C4A1; /* 色を変更 */
}

/*****************************************
01-02. Text
******************************************/
/*********************
01-02-01. Title
/********************/
/*********************
01-02-02. Font
/********************/
p, em, li, dt, dd, table, button, textarea,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"] {}
em {}
/** for .icon **/
.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
/*********************
01-02-01. text
/********************/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.strong { font-weight: 600; }

/******************************************************************
02. Color
******************************************************************/
/*****************************************
02-01. Site Color
******************************************/
:root {
    --main-color-fvOrange: #F46B00;
    --sub-color-bule: #48486C;
    --body-bg-color: #FAF8F7;
    --font-baseColor-black: #1f2933;
    --moble-content-padding: 2rem;
}
body { background-color: var(--body-bg-color); }

/*****************************************
02-02. Text Color
******************************************/
.color-fvOrange { color: var(--main-color-fvOrange); }
p { color: var(--font-baseColor-black); }
