
@charset "utf-8";

body {
	font-family: Meiryo, メイリオ, "ヒラギノ角ゴ Pro W3", "MS PGothic", "ＭＳ Ｐゴシック", Osaka, "Hiragino Kaku Gothic Pro", sans-serif;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
}
.row {
	margin-right: -10px;
	margin-left: -10px;
}

/**
 * ヘッダ
 */
header {
	background: #f9f2dc;
	background: linear-gradient(to bottom, #fffaeb 0%, #f2e9cf 100%);
	background: -moz-linear-gradient(top, #fffaeb 0%, #f2e9cf 100%);
	background: -webkit-linear-gradient(top, #fffaeb 0%, #f2e9cf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fffaeb', endColorstr='#f2e9cf', GradientType=0);
	margin-bottom: 15px;
}
header .wrapper {
	height: 45px;
	position: relative;
}
header .title {
	color: #534922;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	position: absolute;
	top: 14px;
	left: 10px;
}
header img {
	height: 20px;
	position: absolute;
	top: 12px;
	right: 10px;
}
header button {
	display: inline-block;
	background-color: #534922;
	border: none;
	color: #ffffff;
	font-size: 16px;
	line-height: 16px;
	padding: 4px;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 10px;
	right: 10px;
}
/*
header .cards {
	background-color: #eadeb8;
	color: #534922;
	font-size: 12px;
	font-weight: bold;
	padding: 10px;
	text-align: center;
}
*/
@media screen and (min-width: 768px) {
	header {
		margin-bottom: 40px;
	}
	header .wrapper {
		margin: 0 auto;
		width: 768px;
		height: 90px;
	}
	header .title {
		font-size: 24px;
		line-height: 30px;
		top: 30px;
		left: 0;
	}
	header img {
		height: 36px;
		top: 27px;
		right: 0px;
	}
	header button {
		font-size: 32px;
		line-height: 32px;
		width: 48px;
		height: 48px;
		top: 21px;
		right: 0;
	}
	/*
	header .cards {
		font-size: 13px;
		line-height: 20px;
		padding: 15px;
	}
	*/
}

/**
 * メイン
 */
main {
	padding: 0 10px;
}
main h1 {
	border-bottom: 2px solid #eadeb8;
	font-size: 18px;
	font-weight: normal;
	line-height: 25px;
	margin: 0 -10px 15px -10px;
	padding: 0 15px 15px 15px;
	text-align: center;
}
@media screen and (min-width: 768px) {
	main {
		margin: 0 auto;
		width: 768px;
	}
	main h1 {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 40px;
		padding: 0 0 40px 0
	}
}

/**
 * フッタ
 */
footer {
	margin: 40px auto 0 auto;
	text-align: center;
}
footer ul {
	display: grid;
	border-top: 1px solid #d1d1d1;
	grid-gap: 0;
	grid-template-columns: 50% 50%;
	list-style-type: none;
	margin: 0 0 20px 0;
	padding: 0;
}
footer ul > li {
	display: block;
	background-color: #ececec;
	border-right: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	font-size: 13px;
	line-height: 20px;
	margin: 0;
	padding: 0;
	text-align: left;
}
footer ul > li:nth-child(2n+0) {
	border-right: none;
}
footer ul > li > a {
	display: block;
	color: #333333;
	padding: 8px;
}
footer img {
	margin-bottom: 10px;
	height: 26px;
}
footer .copyright {
	font-size: 9px;
	margin-bottom: 20px;
}
footer .copyright span:after {
	content: "\A";
	white-space: pre;
}
@media screen and (min-width: 768px) {
	footer {
		border-top: 2px solid #ae9b62;
		margin-top: 60px;
		padding-top: 20px;
		width: 992px;
	}
	footer ul {
		display: block;
		border-top: none;
		margin-bottom: 60px;
	}
	footer ul > li {
		display: inline-block;
		background-color: transparent;
		border: none;
		font-size: 14px;
		margin: 0 0 0 25px;;
	}
	footer ul > li:first-child {
		margin-left: 0;
	}
	footer ul > li > a {
		display: inline;
		color: #755f1f;
		padding: 0;
	}
	footer img {
		height: 32px;
	}
	footer .copyright {
		font-size: 12px;
		margin-bottom: 40px;
	}
	footer .copyright span:after {
		content: none;
		white-space: normal;
	}
}

/**
 * ツールチップ
 */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 250px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #666666;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #666666;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #666666;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #666666;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #666666;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #666666;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #666666;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #666666;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #666666;
}



