@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*==================== top_back*/

#page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #000;
    opacity: 0.5;
    border-radius: 5px;
}

#page_top a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;

}

#page_top a::after {
    content: '▲';
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}


/*==================== select*/

::selection {
    background: rgba(193, 212, 54, 0.64);
}


/*-----------------------

   h1 SVG

-----------------------*/

.main_logo {
    max-width: 200px;
    margin: 0px auto;
}

path {
    fill: none;
    stroke: #333;
    /*線の色を指定する*/
    stroke-dasharray: 2000;
    /*線の間隔を指定する*/
    stroke-dashoffset: 0;
    /*線の位置を指定する(IEは効かない属性)*/
    stroke-width: 1;
    /*線の太さを指定する*/
    stroke-linecap: round;
    /*線の形状*/
    animation: hello 2.8s ease-out both;
}

@keyframes hello {
    0% {
        stroke-dashoffset: 2000;
        fill: transparent;
        /*透過*/
    }

    45% {
        fill: transparent;
        /*透過*/
    }

    90% {
        stroke-dashoffset: 0;
        fill: #333;
    }

    100% {
        stroke-dashoffset: 0;
        fill: #333;
    }
}


path.st2 {
    animation: none;
    fill: #FFFFFF;
}


#d_bg path {
    fill: none;
    stroke: none;
    animation: hello2 2.8s ease-out forwards;
}


@keyframes hello2 {
    0% {
        fill: transparent;
        /*透過*/
    }

    95% {
        fill: transparent;
        /*透過*/
    }

    100% {
        fill: #F5DA47;
    }
}