@charset "UTF-8";
/* CSS Document */

/* 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;
}

/* 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;
}

*:focus {
    outline: none;
}

/* reset css */

html {
    font-size: 100%;
}


body {
    font-size: 1em;
    font-family: "Noto Sans JP", source-han-sans-japanese, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
}


h1 {
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: 0.1em;
}

h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}


h4 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
}

p {
    font-size: 0.875em;
    line-height: 1.5;
}

a {
    text-decoration: none;
    transition: 0.5s;
    color: #008B9C;
}

a:hover {
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/*表示・非表示*/
@media screen and (min-width: 576px) {
    .pconly3 {
        display: block !important;
    }

    .mobileonly3 {
        display: none !important;
    }


}

@media screen and (max-width: 575px) {
    .pconly3 {
        display: none !important;
    }

    .mobileonly3 {
        display: block !important;
    }

    .mb-none {
        display: none !important;
    }
}

@media screen and (min-width: 1025px) {
    .pconly {
        display: block !important;
    }


    .mobileonly {
        display: none !important;
    }

    .pc-none {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .pconly {
        display: none !important;
    }

    .mobileonly {
        display: block !important;
    }

    .mb-none2 {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {
    .pconly2 {
        display: block !important
    }

    .mobileonly2 {
        display: none !important;
    }

    .desktop-hidden {
        display: none;
    }

}

section {
    margin-bottom: 30px;
}

/*スペース*/

div.space10 {
    height: 10px;
    clear: both;
}

div.space20 {
    height: 20px;
    clear: both;
}

div.space30 {
    height: 30px;
    clear: both;
}

div.space50 {
    height: 50px;
    clear: both;
}

/*ポジション*/

.relative {
    position: relative;
}