/*Style Setting
=======================================*/
@charset "utf-8";

/*基本情報
--------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6 a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
    body {
        font-family: 'Noto Sans JP', sans-serif;
    }
}
@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

/*余白調整
-------------------*/
.contents-wrap {
    padding-left: 15px;
    padding-right: 15px;
}
.page-size {
    max-width: 1400px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .contents-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/*初期タグ
-------------------*/
.front-h0 {
    font-size: 0;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}

img {
    max-height: 100%;
    max-width: 100%;
    vertical-align: bottom;
}
.object-fit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

ul,
ol,
li {
    list-style: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}
td,
th {
    padding: 0;
}

video,
iframe {
    max-width: 100%;
    border: none;
}

/*フォーム
-------------------*/
input,
button,
select,
textarea {
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
    border-radius: 0;
    -webkit-appearance: none;
    cursor: pointer;
}
input[type='text'],
input[type='email'],
input[type='number'],
input[type='tel'],
input[type='password'] {
    background: none;
    border: none;
    outline: none;
}
input[type='number'] {
    -moz-appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type='radio'] {
    display: none;
}
input[type='radio']:checked + label {
    background: #ff0000;
}
input[type='checkbox'] {
    display: none;
}
select {
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
    background: transparent;
    padding: 0;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
}
button,
input[type='submit'] {
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*レスポンシブ
-------------------*/
.sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block;
    }
}

/*内部スクロール
-------------------*/
.scorll-target {
    padding-top: 64px;
    margin-top: -64px;
}

@media print {
   .noprint {
      visibility: hidden;
   }
}