﻿@charset "utf-8";
/* CSS Document */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
* {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0px;
    padding: 0px;
    width: 100%;
	text-shadow: 10px;
    color: #0C0C0C;
	font-family: 'Noto Serif JP', serif;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    transition: background-color 100ms, border-color 100ms, color 100ms, opacity 100ms
}
.cleafix {
    clear: both;
}
ul, li {
    list-style: none;
    margin: 0;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}