body{
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
	font-size: 14px;
	line-height: 2;
	margin: 0;
}
.inner{
	width: 960px;
	margin: 0 auto;
}
.pc{
	display: inline-block;
}
.sp{
	display: none;
}
.title{
	display: flex;
	justify-content: center;
}
.title img{
	height: fit-content;
	padding: 10px 0;
}
.title img:first-child{
	padding-right: 10px;
}
.title img:last-child{
	padding-left: 10px;
}
h1{
	height: 70px;
	line-height: 70px;
	margin-bottom: 5px;
	text-align: center;
}
h2{
	margin: 48px 0 0;
  position: relative;
  height: 50px;
  line-height: 50px;
	padding: 0 1em;
	color: #fff;
  background-color: #e22727;
}
h2::before,
h2::after {
  content: '';
  position: absolute;
}
h2::before {
  top: 100%;
  left: 0;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: transparent;
  border-right-color: #8F1313;
}
h2::after {
  top: 0;
  right: 0;
  z-index: 2;
  border-width: 25px 20px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #fff;
}
h3{
	margin: 24px 0 0;
}
p{
	margin: 24px 0 0;
}

@media screen and (max-width: 768px){
	.inner{
		width: 95%;
	}
	.pc{
		display: none;
	}
	.sp{
		display: inline-block;
	}
	.title{
		display: block;
		text-align: center;
		margin-top: 12px;
	}
	.title img.sp{
		padding: 0;
	}
	h1{
		height: auto;
		line-height: 1.7;
		margin:0;
		font-size: 24px;
	}
	h2{
		height: auto;
		line-height: 1.2;
		padding: 5px 1em;
	}
	h2::after {
		border:none;
	}
}


/* header
**************/
header{
	height: 75px;
	border-bottom: solid 2px #e22727;
}

@media screen and (max-width: 768px){
	header{
		height: 60px;
		background-color: #fff;
		width: 100%;
	}
	header img{
		height: 60px;
	}
}

/* contents
**************/
.outline{
	position: relative;
}
.outline p{
	position: absolute;
	background-color: rgba(45, 45, 45, .3);
  background-image:
	linear-gradient(
		transparent 95%,
		rgba(204, 204, 204, .3) 5%
	),
	linear-gradient(
		90deg,
		transparent 95%,
		rgba(204, 204, 204, .3) 5%
	);
  background-size: 20px 20px;
  background-repeat: repeat;
	bottom: 20px;
	right: 20px;
	width: 400px;
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px #000;
}
.photo-inline{
	display: flex;
	justify-content: space-between;
}
.photo-inline img{
	height: fit-content;
	margin-top: 24px;
}
.inline-text{
	box-sizing: border-box;
	padding: 0 20px;
}
@media screen and (max-width: 768px){
	.outline p{
		position: relative;
		width: 100%;
		padding: 0;
		color: #000;
		font-weight: normal;
		bottom: initial;
		right: initial;
		background: none;
		text-shadow: initial;
	}
	.photo-inline{
		display: block;
	}
	.photo-inline img,
	.outline img{
		width: 100%;
		height: auto;
	}
}
/* footer
**************/
footer{
	border-bottom: solid 2px #e22727;
	text-align: center;
	margin-top: 48px;
}