@charset "UTF-8";
/* ********************************************
// --- リセット ---
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */
  
/* Reset CSS */
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;
    overflow-x: hidden;
    width: 100%;
}

ol, ul {
    list-style: none;
}

a {
    display: block; /* ブロック要素に変更 */
    width: 100%; /* 幅を100%に設定 */
    height: 100%; /* 高さを100%に設定 */
    text-align: center; /* テキストを中央揃え */
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* 下線を表示しない */
}
a:hover {
    opacity: 0.7; /* 透明度を50%に変更 */
}
/* a:focus {
    outline: 3px dashed #0056b3;
    outline-offset: 2px;
} */

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;              /* 1 */
    height: auto;                 /* 1 */
    vertical-align: middle;       /* 2 */
    font-style: italic;           /* 3 */
    background-repeat: no-repeat; /* 4 */
    background-size: cover;       /* 4 */
    shape-margin: 0.75rem;        /* 5 */
  }
