/*------タグ設定-----------------*/
h1 {
	margin: 0;
	font-size: 23px;
	font-weight: normal;
	padding: 10px;
}
h2 {
	margin: -3px 0 5px;
	font-size: 24px;
}
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;
}

.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: #444;
	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);
}

#headWrap {
	width: 70%;
	margin: 0 auto;
}

#windowWrapper {
	width: 100%;
	height: 100%;
}

#pcWrapper {
	padding: 20px;
	height: auto;
	min-height: 75vh;
	background: transparent;
	margin: 0 auto;
}

#pcCentWrapper {
	width: 100%;
	height: auto;
	/* float: left;
	margin: 0; */
}
.container {
	display: grid;
  	grid-template-rows: auto;
  	grid-template-columns: repeat( auto-fill, minmax(240px,1fr) ) ;
  	grid-auto-flow: row;
  	gap: 20px;
}

#det {
  padding: 10px;
  color: #65513f;
  width: 700px;
  min-height: 100%;
  margin: 25px auto;
}
#det td:first-child {
  margin: 0;
  padding: 16px;
  vertical-align: top;
  width: 50%;
  text-align: center;
}
#det td:nth-child(2){
	padding: 5px;
	word-break: break-all;
	vertical-align: top;
}
#det img {
	max-width: 350px;
	max-height: 450px;
	object-fit: contain;
}
