@charset "utf-8";

/*---------------------------------------------------
    reset
---------------------------------------------------*/
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,
column, 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;
}

html, body {
    overflow-x: hidden;
}

body{
    overflow: visible;
}

body {
    line-height: 1;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #222222;
    background: #fff;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
    letter-spacing: 0.05rem;
    width: 100%;
    font-feature-settings: "palt";
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /* Safari */
}

column, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

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;
    color: inherit;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

button {
    cursor: pointer;
}

input[type="text"] {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    vertical-align: bottom;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*---------------------------------------------------
    共通
---------------------------------------------------*/
/* 改行調整 */
.nopc {
    display: none;
}

.nosp {
    display: block;
}

@media screen and (max-width: 768px) {
    .nopc {
        display: block;
    }

    .nosp {
        display: none;
    }
}
/* 調整用汎用クラス */

body .center{
    text-align: center;
}
body .left{
    text-align: left;
}
html body .mb0{
    margin-bottom: 0;
}

html body .mb100 {
    margin-bottom: 100px;
}
html body .mb72 {
    margin-bottom: 72px;
}
html body .mb56 {
    margin-bottom: 56px;
}
html body .mb40 {
    margin-bottom: 40px;
}
html body .mb32 {
    margin-bottom: 32px;
}
html body .mb24 {
    margin-bottom: 24px;
}
html body .mb16 {
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    html body .mb100 {
        margin-bottom: 60px;
    }
    html body .mb72 {
        margin-bottom: 40px;
    }
    html body .mb56 {
        margin-bottom: 36px;
    }
}
