/*------タグ設定-----------------*/
body, html {
  overflow-x: hidden;
}

h1 {
	margin: 0 0 5px;
	font-size: 23px;
	font-weight: normal;
	padding: 10px;
}
h2 {
	margin: -1px 0 5px;
	font-size: 22px;
}
h3 {
	margin: 0;
	font-size: 18px;
}
h4 {
	margin: 0 10px;
	font-size: 20px;
}
input, select, button, textarea {
    font-family: inherit;
}
textarea {
    background: rgba(0, 0, 0, 0);
}
header {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: #aaa 1px solid;
	box-shadow:1px 1px 10px;
}

/*-----------id設定-----------------*/
#pcWrapper {
	padding: 20px;
}
#pcCentWrapper {
	width: 100%;
	height: auto;
	/* float: left;
	text-align: center; */
}
.container {
	display: grid;
  	grid-template-rows: auto;
  	grid-template-columns: repeat( auto-fill, minmax(240px,1fr) ) ;
  	grid-auto-flow: row;
  	gap: 20px;
}

#det {
  position: relative;
  padding: 10px;
  color: #65513f;
  width: 99%;
  margin: 15px auto;
}
#det td:first-child {
  width: 99%;
  margin: 0;
  padding: 10px 2px;
  vertical-align: middle;
  display: block;
  text-align: center;
}
#det td:nth-child(2){
	width: 95%;
	padding: 10px 10px;
	display: block;
	word-break: break-all;
}
#det img {
	max-width: 100%;
	max-height: 400px;
	object-fit: cover;
}

.sanbon,
.sanbon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.sanbon {
	position: relative;
	width: 37px;
	height: 33px;
}
.sanbon span {
	position: absolute;
	left: 0;
	width: 90%;
	height: 3px;
	background-color: #333;
	border-radius: 3px;
}
.sanbon span:nth-of-type(1) {
	top: 5px;
}
.sanbon span:nth-of-type(2) {
	top: 15px;
}
.sanbon span:nth-of-type(3) {
	bottom: 5px;
}
.add4 span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.add4 span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	-webkit-animation: add4bar .8s forwards;
	animation: add4bar .8s forwards;
}
@-webkit-keyframes add4bar {
	100% {
		height: 0;
	}
}
@keyframes add4bar {
	100% {
		height: 0;
	}
}
.add4 span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

.fixedBottom {
	position: fixed;
	bottom: 0;
}