@charset "utf-8";
/* CSS Document */
#mainBlock .text {
    line-height: 180%;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-size: 18px;
}
.index {
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 700;
    font-size: 250%;
    line-height: 140%;
    letter-spacing: 2px;
    color: #603813;
    margin: 100px 0 60px;
    text-align: center;
}
.index span {
    border-bottom: 1px solid #603813;
    padding: 5px;
}
.idxFirst{
	margin: 70px 0 50px;
}

#story ul{
	display: flex;
    justify-content: space-between;
}
#story ul li{
	width: 49%;
}
#story ul li img{
	width: 100%;
}

#standard img{
	margin: 0 auto 20px;
}
#standard .point {
	position: relative;
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
}
#standard .point::before {
	content: attr(data-number);
    display: block;
    margin-bottom: 48px;
    font-size: 30px;
}
#standard .point::after {
	content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
}
#standard .type1::before {
	color: #F25C7B;
}
#standard .type1::after {
	background-color: #F25C7B;
}
#standard .type2::before {
	color: #F0BD3C;
}
#standard .type2::after {
	background-color: #F0BD3C;
}
#standard .type3::before {
	color: #47BF43;
}
#standard .type3::after {
	background-color: #47BF43;
}
#standard .type4::before {
	color: #49ADDE;
}
#standard .type4::after {
	background-color: #49ADDE;
}
#standard .type5::before {
	color: #A46DDE;
}
#standard .type5::after {
	background-color: #A46DDE;
}

#consider p img{
	margin-bottom: 30px;
}
#interview .interviewMember{
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
}
#interview .interviewBox {
	position:relative;
}
#interview .interviewBox img{
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 73%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 73%, 0% 100%);
}
#interview .interviewBox p{
	position: absolute;
    bottom: -18px;
    right: -16px;
    font-size: 15px;
    text-align: right;
    line-height: 180%;
    letter-spacing: 1px;
}
#interview .interviewBox p span{
	font-size: 20px;
	background: linear-gradient(transparent 85%, #FEDE18 85%);
    padding-top: 10px;
}
#interview .question{
	line-height: 1.4;
    margin: 0px 0px 10px;
    font-size: 20px;
    color: #99760E;
    font-weight: 700;
}
#interview .text{
	margin-bottom: 20px;
}
#interview .text span {
    font-weight: 600;
    padding-right: 20px;
}
#interview .questionImg {
	display: flex;
    justify-content: space-between;
	margin-bottom: 50px;
}
#interview .questionImg li{
	width: 49%;
}
#interview .questionImg li img{
	width: 100%;
}

#interview .member {
    background-color: #99760E;
    color: #fff;
    padding: 0.5em 1em calc(0.5em - 6px);
    position: relative;
    font-size: 23px;
    line-height: 180%;
    letter-spacing: 1.5px;
    margin: 50px 100px 0;
    text-align: center;
}
#interview .member::after {
	content: '';
	background-color: #99760E;
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -6px;
	left: 0;
}
#interview .memberList{
	line-height: 180%;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 20px 40px 20px;
    background-color: #f0dbb9;
    margin: 0 100px 20px;
}

*, ::before, ::after {
  box-sizing: content-box;
}

body{
	letter-spacing: 0;
}

@media screen and (max-width:640px){
	img {
    	width: 100%;
	}
	.index {
		font-size: 220%;
		line-height: 160%;
	}
	.index span {
		padding: 2px;
	}
	.idxFirst{
		margin: 50px 0 40px;
	}
	#story  ul {
		display: block;
	}
	#story  ul li {
		width: 100%;
		margin-bottom: 10px;
	}
	#interview .interviewMember{
		display:grid;
	    margin-bottom: 30px;
	}
	#interview .interviewBox {
		margin-bottom: 50px;
	}
	#interview .member {
		font-size: 20px;
		margin: 50px 0 0;
	}
	#interview .memberList {
		font-size: 15px;
		padding: 20px 10px 20px;
		margin: 0 0 20px;
	}
	#interview .questionImg {
		display: block;
	}
	#interview .questionImg li {
		width: 100%;
		margin-bottom: 10px;
	}
}