@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap");
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;
    transition-duration: 0.5s;
}

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

/* Base
------------------------------------------------------------ */
html {
    box-sizing: border-box;
    font-family: Arial, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.1em;
    color: #333;
    font-size: 62.5%;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    line-height: 1.5;
    font-size: 1.6rem;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}

img {
    display: block;
}

small {
    font-size: inherit;
}

.cf:after {
    content: "";
    display: block;
    clear: both;
}

h1 {
    line-height: 1.5;
    font-size: 2.8rem;
}

h2 {
    line-height: 1.5;
    font-size: 2.4rem;
}

h3 {
    line-height: 1.5;
    font-size: 1.8rem;
}

p, dt, dd, ul, li {
    color: #333;
    line-height: 1.5;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    p, dt, dd, ul, li {
        font-size: 1.4rem;
    }
}

strong {
    font-weight: bold;
}

a {
    transition: all 0.5s;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a img:hover {
    opacity: 0.75;
    transition: all 0.5s;
}

.bold {
    font-weight: bold;
}

.pc-none {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc-none {
        display: block;
    }
}

.sp-none {
    display: block;
}

@media screen and (max-width: 767px) {
    .sp-none {
        display: none;
    }
}

/* ------------------------------------------------------------
   Layout
------------------------------------------------------------ */
/* ----- whole ----- */
#wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

.main {
    min-height: 0%;
}

@media screen and (max-width: 767px) {
    .main {
        padding-top: 0;
    }
}

/* -----header ----- */
.header {
    position: absolute;
    z-index: 99;
    width: 100%;
    padding: 5px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.header h1 svg {
    max-width: 100px;
    display: block;
}

.header__sns a {
    color: #fff;
    text-shadow: 0px 0px 3px #c3c3c3;
}

.header__sns i {
    margin: 0 3px;
    font-size: 2.6rem;
}

.header__column {
    display: flex;
    justify-content: space-between;
}

.header__logo {
    fill: #fff;
    width: 230px;
}

@media screen and (max-width: 767px) {
    .header__logo {
        max-width: 160px;
        padding: 5px;
        margin: 0 auto;
        width: 100%;
        min-width: initial !important;
    }
}

.header__logo img {
    width: 100%;
}

.header__logo-sp {
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 99;
    fill: #fff;
    width: 100px;
}

.header p {
    padding: 25px 0 0;
    font-size: .8rem;
}

@media screen and (max-width: 1199px) {
    .header p {
        display: none;
    }
}

.drawer-txt {
    display: none;
}

@media screen and (max-width: 767px) {
    .drawer-txt {
        display: block;
        color: #fff;
        padding-right: .75rem;
        padding-left: 1.5rem;
        font-size: 0.75rem;
        text-align: center;
        padding-bottom: 10px;
    }
}

/* ----- global-nav ----- */
/* ----- side-nav ----- */
/* ----- breadcrumb ----- */
/* ----- footer ----- */
.footer {
    border-top: 1px solid #000;
}

.footer p {
    margin-top: 3px;
    text-align: center;
}

/* ----- drawer menu ----- */
/* ----- .back-to-top ----- */
.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 2;
    display: none;
    transition: initial;
    font-family: serif;
    z-index: 9999;
}

.back-to-top:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
}

.back-to-top:after {
    content: "↑";
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 0;
    top: 0;
}
