@charset "UTF-8";

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
}

body, header, h1, h2, h3, p, div, ul, ol, li, dl, dd, dt, table, form, blockquote, pre, address {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  text-align: center;
  font: 100% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-weight: 500;
  overflow: auto;
  background-color: #666;
  padding-top: 50px; /* メニューの高さと一致させる */
}

img {
  border: none;
}

span.disp {
  display: none;
}

span.line {
  text-decoration: line-through;
}

header img {
  height: 180px;
}

.policy div {
  padding: 10px;
}

#container {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  background-color: #fff;
}

/* メニュー固定表示 */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 9999;
  background-color: #CF2725;
  padding: 0;
  display: flex;
  align-items: center;
}

.menu ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu li {
  flex: 0;
  text-align: center;
}

.menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CF2725;
  color: #fff;
  text-decoration: none;
  border: 5px solid #CF2725;
  white-space: nowrap;
  padding: 5px;
  width: auto;
  height: 50px;
  box-sizing: border-box;
}

.menu li a:hover {
  background-color: #fff;
  color: #CF2725;
  font-weight: bold;
}

.menu li.social {
  flex: 0;
  width: 50px;
  text-align: center;
}

.menu li.social a {
  width: 50px;
  height: 50px;
}

.menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}

/* Twitterロゴ */
.logo-twitter {
  content: url("img/logo-white.png");
  background-size: 30px 30px;
  height: 30px;
  width: 30px;
}
.logo-twitter:hover {
  content: url("img/logo-black.png");
}

/* Instagramロゴ */
.logo-instagram {
  content: url("img/Instagram_Glyph_White.png");
  background-size: 30px 30px;
  height: 30px;
  width: 30px;
}
.logo-instagram:hover {
  content: url("img/Instagram_Glyph_Black.png");
}


.contents {
  padding: 0 20px 20px 0;
  clear: both;
}

.contents li,
.contents p {
  padding: 3px 3px;
  font-size: 120%;
}

.contents ul {
  padding: 10px;
}

.contents img {
  float: right;
  padding: 10px 10px 10px 20px;
}

div.indent,
blockquote {
  padding: 10px 20px 20px 30px;
}

h2,
h3 {
  clear: both;
  padding: 10px;
  margin: 10px;
}

h2 {
  font-weight: bold;
  color: #fff;
  background-color: #CF2725;
  margin: 15px 10px 5px 10px;
}

h3 {
  font-weight: bold;
  border-color: #CF2725;
  border-style: solid;
  border-width: 0 0 3px 0;
  margin: 15px 10px 5px 15px;
}

#main a {
  background-position: 0px 0px;
}

#main a:hover {
  background-position: 0px -75px;
}

hr {
  float: none;
  border: 0;
  height: 0;
  border-top: 2px solid #CF2725;
  border-bottom: 2px solid #CF2725;
  margin: 20px 0 10px 0;
}

p,
ul {
  margin: 5px 2px 5px 20px;
  padding: 0;
}

table {
  width: 100%;
}

th,
td {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border-bottom: 1px solid #ccc;
  margin: 0.2em;
  padding: 0.5em;
}

th {
  width: 10%;
  border-right: 1px solid #CF2725;
}

td {
  width: 50%;
}

.info,
.google {
  margin: 5px 2px 5px 20px;
  clear: both;
  padding: 0;
  width: 719px;
  text-align: left;
}

.google {
  border: 0px;
  height: 450px;
  background-color: rgb(239, 238, 220);
  overflow: hidden;
}

/* アンカー対策 */
[id]::before {
  content: "";
  display: block;
  height: 60px;
  margin-top: -60px;
}
