@charset "utf-8";

/* CSS Document */

main{
	
}
/*タイトル*/
.page-title {
	background-color:#1CBDF1;
	padding:130px 50px 50px;
	width:100%;
	box-sizing: border-box;
}
.page-title p{
	color:#fff;
	text-align:center;
	margin:0;
	font-weight:bold;
	font-size:24px;
}
.page-title h1{
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	margin:0;
	font-size:36px;
	font-weight: bold;
}
.page-title h1::before{
	content:"";
	background-color:#fff;
	height:3px;
	width:100px;
	display:block;
	margin-right:16px;
	border-radius: 10px;
}
.page-title h1::after{
	content:"";
	background-color:#fff;
	height:3px;
	width:100px;
	display:block;
	margin-left:16px;
	border-radius: 10px;
}
.page-title span {
    display: inline-block;
}
@media(max-width:1109px){
	.page-title {
	padding:50px 50px 50px;
}
}
@media(max-width:640px){
	.page-title p{
		font-size:15px;
}
	.page-title h1{
		font-size:24px;
}
	.page-title h1::before{
		height:3px;
		margin-right:8px;
		width:40px;
}
	.page-title h1::after{
		height:3px;
		margin-left:8px;
		width:40px;
}
}
/*トップ*/
.interview-top{
	display: flex;
	align-items: center;
	width:90%;
	max-width:960px;
	margin:25px auto 50px;
	box-sizing: border-box;
	
}
.interview-top-img {
	width: 40%;
}
.interview-top-img img{
	width:100%;
	display:block;
	border-radius:10px;
}
.interview-top-text{
	width: 60%;
	margin-left: 32px;
}
.interview-top-text p{
	font-size:17px;
}
/*タグ風*/
.interview-top-text h2 {
	position: relative;
	display: inline-block;
	/*padding: 1rem 2rem 1rem 4rem;*/
	padding: 0.5rem 3rem 0.5rem 4rem;
	color: #fff;
	border-radius: 100vh 0 0 100vh;
	background: #1CBDF1;
	font-size: 30px;
}
.interview-top-text h2:before {
	position: absolute;
	top: calc(50% - 10px);
	left: 10px;
	width: 20px;
	height: 20px;
	content: '';
	border-radius: 50%;
	background: #fff;
}

.interview-top-text h3{
	color: #656565;
	font-size: 28px;
	position: relative;
	padding-left: 16px; 
}
.interview-top-text h3 span{
	font-size: 16px;
	margin-left: 12px;
	
}
.interview-top-text h3::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.3em; 
	height: 1em; 
	width: 8px;
	background-color: #1CBDF1;
}
.interview-top p{
	color: #656565;
}
@media(max-width:768px){
	.interview-top-text h2 {
		padding: 0.5rem 3rem 0.5rem 4rem;
		font-size: 24px;
		margin-top: 24px;
}
}
@media(max-width:640px){
	.interview-top{
		flex-direction: column;
}
	.interview-top-img {
		width: 90%;
}
	.interview-top-text{
		width: 100%;
		margin-left: 0px;
}
}
@media(max-width:480px){
	.interview-top-text h2 {
		padding: 0.5rem 3rem 0.5rem 4rem;
		font-size: 20px;
		margin-top: 24px;
}
}
/*インタビュー*/
.interview{
	display: flex;
	align-items: center;
	width:90%;
	max-width:960px;
	margin:24px auto;
	box-sizing: border-box;
	border-top: #1CBDF1 solid 2px;
	padding-top: 60px;
}
.interview-1{
	display: flex;
	align-items: center;
	width:90%;
	max-width:960px;
	margin:56px auto 0px;
	box-sizing: border-box;
	border-bottom: #1CBDF1 solid 2px;
	padding-bottom: 80px;
}
.interview-img {
	width: 40%;
	
	position: relative;
	display: inline-block;
}
.interview-img img{
	width:100%;
	border-radius:10px;

	position: relative;
	display: block;
	z-index: 1;
}
.background-box {
	position: absolute;
	top: 20px; 
	left:20px;  
	width: 100%;
	height: 100%;
	background-color: #DEDEDE; 
	z-index: 0;
	border-radius: 10px; 
}
.interview-text{
	width: 60%;
	margin-right: 32px;
}
.interview-text h2{
	color: #1CBDF1;
	font-weight: bold;
	font-size: 26px;
}
.interview-text-1{
	width: 60%;
	margin-left: 40px;
}
.interview-text-1 h2{
	color: #1CBDF1;
	font-weight: bold;
	font-size: 26px;
}
.interview-text  p{
	font-size: 16px;
}
.interview-text-1 p{
	font-size: 16px;
}

.empty{
	border-bottom: #1CBDF1 solid 2px;
	padding-bottom: 80px;
	width:90%;
	max-width:960px;
	margin: 0 auto;
}


@media(max-width:640px){
	.interview{
		flex-direction: column-reverse;
		justify-content: center;
	}
	.interview-1{
		flex-direction: column;
		justify-content: center;
		padding-bottom: 60px;
	}
	.interview-text{
		width: 100%;
	    margin-right: 0px;
		margin-top: 32px;
	}
	.interview-text-1{
		width: 100%;
	    margin-left: 0px;
		margin-top: 32px;
	}
	.interview-img {
		width: 90%;
}
	.interview-text h2{
		font-size: 24px;
}
	.interview-text-1 h2{
		font-size: 24px;
}
	.interview-text  p{
		font-size: 15px;
}
	.interview-text-1 p{
		font-size: 15px;
}
}

/*インタビュー2*/
.content-3{
	background-color: #EEF7FF;
	padding-top: 32px;
	padding-bottom: 32px;
}
.question{
	width:90%;
	max-width:640px;
	margin: 0px auto 56px;
	box-sizing: border-box;
}
.question h2{
	color: #1CBDF1;
	font-size: 22px;
}
.question h2 span{
	color: #008EBB;
	font-size: 36px;
	margin-right: 16px;
	
	position: relative;
    top: 2px;
}


.question p {
    position: relative;
    padding: 24px;
    border-radius: 5px;
    border: 2px solid #1CBDF1;
    color: #333;
    font-size: 16px;
    text-align: center;
	
	background-color: #FFFFFF
}

.question p:before {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 20px;
    background-color: #fff;
    content: "";
}

.question p:after {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    width: 2px;
    background-color: #1CBDF1;
    content: "";
}
@media(max-width:640px){
	.question h2{
    font-size: 20px;
}
	.question p{
	font-size: 15px;	
	}
	.question h2 span{
	font-size: 34px;	
	}
}
/*メッセージ*/
.content-4{
	margin-bottom: 80px;
}
.message{
	width:90%;
	max-width:640px;
	margin:56px auto 0px;
	box-sizing: border-box;
	text-align: center;
}
.message h2{
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	margin:0;
	margin-bottom: 32px;
	font-size:30px;
	font-weight: bold;
	color:  #008EBB;
}
.message h2::before{
	content:"";
	background-color: #008EBB;
	height:2px;
	width:100px;
	display:block;
	margin-right:10px;
}
.message h2::after{
	content:"";
	background-color: #008EBB;
	height:2px;
	width:100px;
	display:block;
	margin-left:10px;
}
.message h3{
	color: #1CBDF1;
	padding-top: 16px;
	font-size: 20px;
}
.message-img img{
	width:100%;
	display:block;
}
@media(max-width:640px){
	.message h2{
	font-size:26px;
}
.message h3{
	font-size: 18px;
}
.message p{
	font-size: 14px;
}
}


