@charset "UTF-8";
/* CSS Document */
section{overflow: hidden;}
section .inner,.title{
	max-width: 962px;
	margin: 0 auto;
	width: 90%;
}
img{max-width: 100%;}
.sp{display: none;}
@media screen and (max-width: 750px){
	.pc{display: none;}
	.sp{display: block;}
}
/*=====================================================================================
***************************************************************************************

mv
		
***************************************************************************************
=====================================================================================*/
.mv{
	position: relative;
	text-align: left;
}
.mv .mvimg{
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.mv #pankuzu{margin: 25px 0 50px;}
.mv .title{
	padding: 160px 0 60px;
	font-weight: bold;
}
.mv .title h2{
	font-size: 40px;
	line-height: 1.3;
	color: #c51a1f;
	font-weight: bold;
}
.mv .title p{
	line-height: 2;
	color: #c51a1f;
}
.member{
	padding-top: 60px;
	background-color: #f8f8f8;
	z-index: -2;
    position: relative;
}
@media screen and (max-width: 1300px){
	.mv .mvimg{
		width: 68%;
		right: -100px;
	}
}
@media screen and (max-width: 750px){
	.mv #pankuzu{margin: 15px 0 25px;}
	.mv .title {padding: 100px 0 30px;}
	.member{padding-top: 0;}
	.member .spmv{margin: 0 0 auto;}
	.member .inner{margin-top: 25px;}
}

/*=====================================================================================
***************************************************************************************

目次
		
***************************************************************************************
=====================================================================================*/
#slideR {
	box-sizing: content-box!important;
	z-index:100;
	cursor: pointer;
	position: fixed;
	bottom: 40px;
	right: -261px;
	width: 330px;
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 15px 0 0 15px;
	/*はじめは非表示*/
	transition:all 0.5s;
	opacity: 0;
	transform: translateX(100px);
}
.mokuzi span{
	background-color: #c51a1f;
	border-radius: 15px 0 0 15px;
	padding: 60px 16px;	
}
.mokuzi ul{
	margin: 0 auto;
	text-align: left;
}
.mokuzi ul li{line-height: 2.5;}
.mokuzi ul li a{
	font-size: 12px;
	font-weight: bolder;
	color: #000000;
	text-decoration: none;	
}
.mokuzi ul :hover{color: #c51a1f;}

/*　左の動き　*/

#slideR.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#slideR.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}
@media screen and (max-width: 750px){
	
	.mokuzi span{
		padding: 30px 12px;
		width: 55px;
	}
	.mokuzi ul li {line-height: 2;}
	#slideR{right: -275px;}
}

/*=====================================================================================
***************************************************************************************

contents
		
***************************************************************************************
=====================================================================================*/
.contents{background-color: #f8f8f8;}
.contents .inner{
	position: relative;
	z-index: 1;
}
.contents h3{
	font-size: 25px;
	font-weight: bold;
	color: #c51a1f;
	border: 2px solid #c51a1f;
	border-left: none;
	border-right: none;
	padding: 35px 0;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
    justify-content: center;
}
.contents h3 img{margin-right: 22px;}
.contents section{
	position: relative;
	padding-top: 150px;
}
.contents section:last-child{padding-bottom: 150px;}
.contents ul {margin: 50px auto 60px;}
.contents ul li{
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
	margin-bottom: 20px;
}
.contents ul li:nth-child(even){
	flex-direction: row-reverse;
}
.contents ul li .textbox{
	max-width: 550px;
	position: relative;
	border: 1px solid #c51a1f;
	border-radius: 30px;
	padding: 30px 0;
	background-color: #FFFFFF;
	width: 100%;
}
.contents ul li:nth-child(odd) .textbox{margin-left: 30px;}
.contents ul li:nth-child(even) .textbox{margin-right: 30px;}
.contents ul li .textbox p{
	width: 85%;
	margin: 0 auto;
	text-align: justify;
}
.contents ul li .textbox p span{
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #c51a1f;
	display: block;
}
/* 吹き出し左 */
.contents ul li:nth-child(odd) .textbox::after,
.contents ul li:nth-child(odd) .textbox::before{
	content: '';
	position: absolute;
	border: 20px solid transparent;
	border-left: 0;
	border-top: 0;
	margin-left: -20px;
}
.contents ul li:nth-child(odd) .textbox::after{
	border-right-color: #FFFFFF;
	left: 2px;
    top: 26px;
}
.contents ul li:nth-child(odd) .textbox::before { /* 線になる部分 */
	border-right-color: #c51a1f;
	left: 0;
	top: 25px;
}
/* 吹き出し右 */
.contents ul li:nth-child(even) .textbox::after,
.contents ul li:nth-child(even) .textbox::before{
	content: '';
	position: absolute;
	border: 20px solid transparent;
	border-right: 0;
	border-top: 0;
	margin-right: -20px;
}
.contents ul li:nth-child(even) .textbox::after{
	border-left-color: #FFFFFF;
	right: 2px;
    top: 26px;
}
.contents ul li:nth-child(even) .textbox::before { /* 線になる部分 */
	border-left-color: #c51a1f;
	right: 0;
	top: 25px;
}
.contents ul li:last-child{margin-bottom: 0;}
.contents ul li .imgbox{
	max-width: 73px;
    width: 28%;
}
.contents .bg{position: absolute;}
.contents #contents01 .bg,
.contents #contents03 .bg{left: 0;bottom: 10%;}
.contents #contents02 .bg{left: 20%;top: 48%;}
.contents #contents04 .bg,
.contents #contents06 .bg{left: 20%;top: 33%;}
.contents #contents05 .bg{left: 0;top: 27%}

.contents .position_R{
	display: block;
	margin: 0 0 0 auto;
}
@media screen and (max-width: 750px){
	.contents section {padding-top: 80px;}
	.contents section:last-child{padding-bottom: 20px;}
	.contents h3{
		font-size: 20px;
		padding: 12px 0;
	    margin-bottom: 25px;
	}
	.contents ul {margin: 30px auto;}
	.contents ul li .textbox{padding: 20px 0;}
	.contents ul li .textbox p span {margin-bottom: 5px;}
	.contents .btm{bottom: 7%;}
	.contents .top {
		left: 2%;
		top: 310px;
	}
	.contents #contents01 .bg,
	.contents #contents03 .bg{bottom:9%;}
	.contents #contents02 .bg{left: 10%;top: 26%;}
	.contents #contents04 .bg,
	.contents #contents06 .bg{left: 10%;top: 22%;}
	.contents #contents05 .bg{top: 18%}
}
.contents #contents02 ul,
.contents #contents05 ul,
.contents #contents06 ul{margin-bottom: 0;}
/*=====================================================================================
***************************************************************************************

lst
		
***************************************************************************************
=====================================================================================*/
.lst p{
	font-size: 13px;
	text-align: right;}
.lst img{width: 100%;}