
@charset "utf-8";
/* CSS Document */
.visual {
	background-image: url(../img/blogger/head_bg.png);
}
@media screen and (max-width: 800px) {
	.visual {
		background-color: #1c2c4e;
		background-image: none;
	}
	.mw {
		padding-left: 3vw;
		padding-right: 3vw;
	}
}
.visal_main {
	background-image: url(../img/blogger/main_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0;
}
.visal_main h2 {
	font-size: 60px;
}
.visal_main p {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}
.visal_main h2 span {
	background-color: #fa7821;
	color: #FFFFFF;
	padding: 0 15px;
}
.visal_main .mw {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1500px) {
	.visal_main h2 {
		font-size: 55px;
	}
	.visal_main .right img {
		width: 530px;
	}
	.visal_main p {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.visal_main {
		padding: 60px 0 90px 0;
	}
}
@media screen and (max-width: 1040px) {
	.visal_main h2 {
		font-size: 5vw;
	}
	.visal_main .right img {
		width: 48vw;
	}
	.visal_main p {
		font-size: 2.5vw;
		margin-bottom: 0.3vw;
	}
	.visal_main {
		padding: 60px 0;
	}
}
@media screen and (max-width: 800px) {
	.visal_main {
		padding: 5vw 0 10vw 0;
	}
	.visal_main .mw {
		flex-direction: column;
	}
	.visal_main .mw .left {
		margin-bottom: 3vw;
	}
	.visal_main h2 span {
		padding: 1.5vw 3vw;
		font-size: 9vw;
		margin-bottom: 2vw;
	}
	.visal_main p {
		font-size: 4vw;
		margin-bottom: 2vw;
		line-height: 1.2;
	}
	.right img {
		width: 100%;
	}
	.visal_main .right img {
		width: 100%;
	}

}


.qa a{
	text-decoration: underline;
	
}

/* ---------------------------------- */
/* 対談メンバー */
/* ---------------------------------- */
.image_box {
	background-color: #f7f7f7;
	padding: 4px;
	margin: -50px 0 0 0;
	position: relative;
}
.member {
	background-color: #ffffff;
	display: flex;
	padding: 50px;
	margin-bottom: 100px;
}
.member dt {
	display: flex;
	align-items: center;
	border-right: solid 1px #333333;
	width: 18.5%;
	min-width: 18.5%;
	font-size: 24px;
	font-weight: bold;
}
.member dd {
	flex-grow: 1;
}
.member dd ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.member dd ul li {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
}
.member dd ul li figure{
	margin-right: 15px;
}

@media screen and (max-width: 1500px) {
	.member {
		padding: 20px;
		margin-bottom: 60px;
	}
}

/* ---------------------------------- */
/* 探偵ってどんなイメージですか？ */
/* ---------------------------------- */
.image_box h2 {
	text-align: center;
	font-size: 50px;
	margin-bottom: 40px;
}
.image_list {
	padding: 0 100px;
}
.image_list ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 45px;
}
.image_list ul li {
	width: 48%;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	padding: 30px 0 30px 70px;
	border-bottom: solid 1px rgba(51,51,51,0.30);
	line-height: 1;
}
.image_list ul li::before {
    content: '';
    display: block;
    border: solid 2px #f3b204;
    height: 46px;
    width: 46px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -23px;
    border-radius: 50%;
    background-color: #FFFFFF;
}
.image_list ul li::after {
    content: '';
    display: block;
    height: 46px;
    width: 46px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -23px;
    background-image: url(../img/global/check.svg);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 75%;
}
.image_box::before{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: 0px;
	top: 100%;
	border-top: 90px solid #f7f7f7;
	border-right: 600px solid transparent;
	border-left: 600px solid transparent;
}
.image_box_footer {
	text-align: center;
	font-size: 48px;
	position: relative;
	padding-top: 30px;
	padding-bottom: 100px;
}
.image_box_footer span.min {
	display: block;
	font-size: 30px;
}
.image_box_footer span.orange {
	color: #fa7821;
}

@media screen and (max-width: 1500px) {
	.member {
		padding: 1.5vw;
		margin-bottom: 3vw;
	}
	.member dt {
		font-size: 1.6vw;
	}
	.image_box h2 {
		font-size: 2.5vw;
		margin-bottom: 1.5vw;
	}
	.member dd ul li figure {
		margin-right: 1vw;
	}
	.member dd ul li figure img {
		width: 6.5vw;
	}
	.member dd ul li {
		font-size: 1.3vw;
	}
	.image_list ul {
		padding-bottom: 30px;
	}
	.image_list ul li {
		font-size: 1.2vw;
		padding: 2.5vw 0 2.5vw 3.8vw;
	}
	.image_list ul li::before {
		height: 3vw;
		width: 3vw;
		margin-top: -1.5vw;
	}
	.image_list ul li::after {
		height: 3vw;
		width: 3vw;
		margin-top: -1.2vw;
		background-size: 75%;
	}
	.image_list {
		padding: 0 10vw;
	}
	.image_box::before{
		border-top: 90px solid #f7f7f7;
		border-right: 496px solid transparent;
		border-left: 496px solid transparent;
	}
	.image_box_footer {
		font-size: 2.8vw;
		padding-top: 3vw;
	    padding-bottom: 5vw;
	}
	.image_box_footer span.min {
		font-size: 2vw;
	}
}
@media screen and (max-width: 800px) {
	.image_box {
		padding: 1vw;
		margin: -3vw 0 0 0;
	}
	.image_box::before {
		border-top: 22vw solid #f7f7f7;
		border-right: calc(94vw / 2) solid transparent;
		border-left: calc(94vw / 2) solid transparent;
	}
	.member {
		flex-direction: column;
	}
	.member dt {
		font-size: 3vw;
		width: 100%;
		text-align: center;
		border: none;
		display: block;
		padding-bottom: 2vw;
		margin-bottom: 3vw;
	}
	.member dt::after {
		content: '';
		display: block;
		height: 2px;
		width: 10vw;
		background-color: #333333;
		margin: 1vw auto auto auto;
	}
	.member dd ul li {
		display: flex;
		flex-direction: column;
		font-size: 3vw;
	}
	.member dd ul li figure img {
		width: 15vw;
	}
	.image_list ul li {
		width: 100%;
		font-size: 3vw;
		padding: calc(3vw + 1px) 0 3vw 6vw;
		display: flex;
		align-items: center;
		line-height: 1;
	}
	.image_box h2 {
		font-size: 6vw;
		margin-bottom: 5vw;
		line-height: 1.2;
	}
	.image_list ul li::before {
		height: 4vw;
		width: 4vw;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.image_list ul li::after {
		height: 4vw;
		width: 4vw;
		top: 0;
		bottom: 0;
		margin: auto;
		background-size: 75%;
	}
	.image_box_footer {
		font-size: 6vw;
		padding-top: 4vw;
		padding-bottom: 5vw;
	}
	.image_box_footer span.min {
		font-size: 4vw;
	}
	.image_list ul {
		padding-bottom: 4vw;
	}
}


/* ---------------------------------- */
/* 調査員コメント */
/* ---------------------------------- */
.comment {
	position: relative;
	background-color: #22304f;
	background-image: url(../img/blogger/c_bg.jpg);
	background-size: cover;
	color: #FFFFFF;
	overflow: hidden;
}
.comment .mw {
	position: relative;
	padding-top: 100px;
	padding-bottom: 130px;
}
.comment .balloon {
	display: inline-block;
	background-color: #ffffff;
	color: #333333;
	border-radius: 48px;
	padding: 50px;
	font-size: 24px;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 50px;
	position: relative;
}
.comment .balloon strong {
	color: #fa7821;
}
.comment img{
	position: absolute;
	right: 0;
	bottom: 0;
}
.comment p {
	line-height: 1.8;
	font-size: 18px;
	font-weight: bold;
}
.comment .balloon::before{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: 120px;
	top: calc(100% - 30px);
	border-top: 100px solid #ffffff;
	border-right: 40px solid transparent;
	border-left: 40px solid transparent;
	transform: rotate(-30deg);
}
@media screen and (max-width: 1500px) {
	.comment .balloon {
		display: inline-block;
		background-color: #ffffff;
		color: #333333;
		border-radius: 20px;
		padding: 25px;
		font-size: 20px;
		line-height: 1.8;
		font-weight: bold;
		margin-bottom: 54px;
		position: relative;
	}
	.comment .balloon::before {
		right: auto;
		left: 680px;
	}
	.comment img {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 330px;
	}
	.comment p {
		line-height: 1.8;
		font-size: 16px;
		font-weight: bold;
	}
	.comment .mw {
		position: relative;
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 1050px) {
	.comment img {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 31%;
	}
	.comment .balloon::before {
		right: auto;
		left: 590px;
	}
}
@media screen and (max-width: 900px) {
	.comment img {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 31%;
	}
	.comment .balloon::before {
		right: auto;
		left: 520px;
	}
	.comment p {
		line-height: 1.8;
		font-size: 14px;
		font-weight: bold;
	}
	.comment .balloon {
		font-size: 18px;
	}
}
/*
@media screen and (max-width: 1050px) {
	.comment .balloon {
		border-radius: 48px;
		padding: 5vw;
		font-size: 2.1vw;
		margin-bottom: 4vw;
	}
	.comment p {
		font-size: 1.6vw;
	}
	.comment img {
		width: 38vw;
	}
}
*/
@media screen and (max-width: 800px) {
	.comment .mw {
		padding-top: 10vw;
		padding-bottom: 10vw;
	}
	.comment .balloon {
		border-radius: 5vw;
		padding: 5vw;
		font-size: 3.5vw;
		margin-bottom: 5vw;
	}
	.comment p {
		width: 50%;
		line-height: 1.6;
		font-size: 3vw;
	}
	.comment img {
		width: 62vw;
		right: -13vw;
	}
	.comment .balloon::before {
		left: 50vw;
	}
	.comment .balloon::before {
		content: '';
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		right: 120px;
		top: calc(100% - 6vw);
		border-top: 18vw solid #ffffff;
		border-right: 7vw solid transparent;
		border-left: 7vw solid transparent;
		transform: rotate(-30deg);
	}
}


/* ---------------------------------- */
/* 逆に質問されてしまいました! */
/* ---------------------------------- */
.qa {
	background-color: #e8eff7;
	padding: 60px 0;
}
.qa h2 {
	text-align: center;
    font-size: 50px;
    margin-bottom: 40px;
}
.qa_dl {
	margin-bottom: 50px;
}
.qa_dl > dt {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 24px;
	padding: 20px 40px;
	cursor: pointer;
}
.qa_dl > dt::before {
	content: 'Q';
	font-family: Arial, Helvetica, "sans-serif";
	color: #22304f;
	font-size: 50px;
	margin-right: 20px;
}
.qa_dl > dd {
	background-color: #f7f7f7;
	padding: 40px 40px;
}
.qa_dl > dd  p {
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.8;
}
.qa_dl > dd  p::before {
	content: 'A';
	font-family: Arial, Helvetica, "sans-serif";
	color: #fa2121;
	font-size: 50px;
	margin-right: 20px;
	font-weight: bold;
	line-height: 1;
}
.qa_dl > dt span.open_btn {
	background-color: #22304f;
	border-radius: 8px;
	display: block;
	height: 35px;
	width: 35px;
	margin-left: auto;
	position: relative;
}
.qa_dl > dt span.open_btn::before, 
.qa_dl > dt span.open_btn::after {
	content: '';
	display: block;
	width: 70%;
	height: 6px;
	background-color: #FFFFFF;
	position: absolute;
	left: 15%;
	top: calc(50% - 3px);
}
.qa_dl.active > dt span.open_btn::before {
	transform: rotate(0deg);
}
.qa_dl > dt span.open_btn::before {
	transform: rotate(90deg);
}
.qa_dl > dd {
	display: none;
}
.qa_dl > dd > div {
	background-color: #fee8e8;
	padding: 50px;
	font-size: 16px;
	line-height: 1.8;
	margin-top: 50px;
}
.qa_dl > dd > div.credit {
    padding: 0 0 0 50px;
    background-color: transparent;
    margin-top: 20px;
}
.qa_dl > dd > div strong{
	display: block;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}


@media screen and (max-width: 1500px) {
	.qa h2 {
		font-size: 40px;
		margin-bottom: 30px;
	}
	.qa {
		padding: 60px 0;
	}
	.qa_dl > dt {
		font-size: 20px;
		padding: 0px 20px;
	}
	.qa_dl {
		margin-bottom: 35px;
	}
	.qa_dl > dd {
		padding: 20px 20px;
	}
	.qa_dl > dd > div {
		padding: 15px;
		font-size: 14px;
		line-height: 1.8;
		margin-top: 20px;
	}
	.qa_dl > dd > div.credit {
		padding: 0 6vw;
		background-color: transparent;
		margin-top: 2vw;
	}
	.qa_dl > dd > div img {
		width: 100%;
	}
	.qa_dl > dd > div strong {
		font-size: 18px;
		margin-bottom: 5px;
	}
}

@media screen and (max-width: 800px) {
	.qa {
		padding: 10vw 0;
	}
	.qa h2 {
		font-size: 6vw;
		margin-bottom: 5vw;
		line-height: 1.2;
	}
	.qa_dl > dt span.open_btn {
		background-color: #22304f;
		border-radius: 1vw;
		display: block;
		height: 4vw;
		width: 4vw;
		min-width: 4vw;
		margin-left: auto;
		position: relative;
	}
	.qa_dl > dt span.open_btn::before, 
	.qa_dl > dt span.open_btn::after {
		content: '';
		display: block;
		width: 70%;
		height: 0.8vw;
		background-color: #FFFFFF;
		position: absolute;
		left: 15%;
		top: calc(50% - 0.4vw);
	}
	.qa_dl > dt {
		font-size: 4vw;
		padding: 3vw 6vw;
	}
	.qa_dl > dd {
		padding: 5vw;
	}
	.qa_dl > dt::before {
		font-size: 7vw;
		margin-right: 2vw;
	}
	.qa_dl > dd p::before {
		font-size: 7vw;
		margin-right: 2vw;
	}
	.qa_dl > dd p {
		font-size: 3.4vw;
	}
	.qa_dl > dd > div strong {
		font-size: 3.5vw;
		margin-bottom: 2vw;
	}
	.qa_dl > dd > div {
		padding: 6vw;
		font-size: 3.4vw;
		margin-top: 6vw;
	}
	.qa_dl {
		margin-bottom: 3vw;
	}
}



/* ---------------------------------- */
/* 調査させていただきました! */
/* ---------------------------------- */
.investigation {
	padding: 150px 0;
}
.investigation .mw {
	display: flex;
}
.investigation .left {
	margin-right: auto;
	width: 50%;
}
.investigation h2 {
	font-size: 34px;
	background-color: #f7f7f7;
	display: flex;
	padding: 35px 0;
	margin-bottom: 50px;
}
.investigation h2::before {
	content: ' ';
	border-left: solid 5px #22304f;
}
.investigation h2 span {
	display: inline-block;
	margin: auto;
}
.investigation p {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.investigation .left > span {
	display: flex;
	font-size: 18px;
}
.investigation .left > span::before {
	content: '※';
}
.boxbs {
	border: solid 8px #FFFFFF;
	box-shadow: 0 0 11px 0 #c5c5c5;
}
@media screen and (max-width: 1500px) {
	.investigation .right {
		width: 48%;
	}
	.investigation .right img{
		max-width: 100%;
	}
	.investigation h2 {
		font-size: 2.3vw;
		padding: 2vw 0;
		margin-bottom: 2vw;
	}
	.investigation p {
		font-size: 1.4vw;
		margin-bottom: 1.4vw;
	}
	.investigation {
		padding: 60px 0;
	}
}
@media screen and (max-width: 800px) {
	.investigation h2::before {
		border-left: solid 3px #22304f;
	}
	.investigation {
		padding: 10vw 0;
	}
	.investigation .mw {
		flex-direction: column;
	}
	.investigation .left {
		width: 100%;
		margin-bottom: 5vw;
	}
	.investigation h2 {
		font-size: 5vw
	}
	.investigation p {
		font-size: 3.4vw;
		margin-bottom: 2vw;
	}
	.investigation .left > span {
		font-size: 3.4vw;
	}
	.boxbs {
		border: solid 8px #FFFFFF;
		box-shadow: 0 0 11px 0 #c5c5c5;
	}
	.investigation .right {
		width: 100%;
	}
}


/* ---------------------------------- */
/* スライダー */
/* ---------------------------------- */
.slide {
	padding: 100px 0;
	background-color: #f7f7f7;
	overflow: hidden;
	display: flex;
	justify-content: center;
	position: relative;
}
.variable {
	width: 1980px;
	display: flex;
	position: relative;
}
.variable li {
	list-style: none;
	position: relative;
}
.variable li.size_s {
	width: 380px;
	max-width: 380px;
	min-width: 380px;
	margin: 0 20px;
}
.variable li.size_s.first {
	padding-left: 370px;
	width: 750px;
	max-width: 750px;
	min-width: 750px;
}
.variable li.size_s img {
	width: 100%;
	max-width: 100%;
}
.variable li.size_s p{
	background-color: #FFFFFF;
	padding: 30px 50px;
	min-height: 160px;
}
.variable li.size_l {
	height: 436px;
	min-width: 600px;
	margin: 0 20px;
}
.variable li.size_l iframe {
	width: 100%;
	height: 100%;
}
.slick-prev {
    left: calc(50% + 490px);
}
.slick-next {
    right: calc(50% + -600px);
}
.slick-prev, 
.slick-next {
	z-index: 5;
	display: block;
	height: 50px;
	width: 50px;
	background-color: #FFFFFF;
	border: solid 2px #333333;
	border-radius: 50%;
	top: 480px;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: 0.5;
	background-color: #FFFFFF;
}
.slick-next::before {
	content: '\f0da';
	color: #333333;
	right: -2px;
}
.slick-prev::before {
	content: '\f0d9';
	left: -2px;
}
.slick-next::before, 
.slick-prev::before {
	color: #333333;
	font-family: FontAwesome;
	line-height: 1;
	font-size: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}
.hover_data {
	position: absolute;
	background-color: #22304f;
	color: #FFFFFF;
	right: 0;
	top: 0;
	width: 380px;
	max-width: 380px;
	min-width: 380px;
    height: 100%;
	cursor: pointer;
	z-index: 10;
	display: none;
}
.hover_data::before {
	position: absolute;
	right: 0;
	top: 0;
	content: '閉じる \f00d';
	font-family: FontAwesome;
	padding: 5px 10px;
	font-size: 14px;
}
.hover_data dl{
	padding: 60px 30px;
}
.hover_data dl dt {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}
.slick-slide {
	outline: none;
}
.commentary {
	cursor: pointer;
}
.commentary::after {
	content: 'ちょっと解説 \f101';
	position: absolute;
	top: 0;
	right: 0;
	font-family: FontAwesome;
	padding: 5px 10px;
	font-size: 14px;
	background-color: #fa7821;
	color: #FFFFFF;
	z-index: 5;
}
@media screen and (max-width: 1500px) {
	.slide {
		padding: 100px 0;
		background-color: #f7f7f7;
		overflow: hidden;
		display: block;
		justify-content: center;
	}
	.variable li.size_s.first {
		padding-left: 0;
		width: 380px;
		max-width: 380px;
		min-width: 380px;
		margin: 0 20px;
	}
	.variable {
		width: auto;
		display: flex;
	}
	.slick-prev {
    	left: auto;
		right: 80px;
	}
	.slick-next {
		right: 20px;
	}
	.variable li.size_s p {
		padding: 20px 20px;
	    min-height: 115px;
		font-size: 14px;
	}
	.variable li.size_l {
		height: 390px;
		min-width: 600px;
		margin: 0 20px;
	}
	.slick-prev, .slick-next {
		top: 442px;
	}
}

@media screen and (max-width: 800px) {
	.variable li.size_s,
	.variable li.size_s.first {
		width: 70vw;
		max-width: 70vw;
		min-width: 70vw;
		margin: 0 2.5vw;
	}
	.variable li.size_l {
		min-height: 78vw;
		height: 78vw;
		min-width: 70vw;
		width: 70vw;
		margin: 0 2.5vw;
	}
	.variable li.size_l iframe {
		width: 100%;
		height: 100%;
	}
	.variable li.size_s p {
		padding: 3vw 5vw;
		min-height: 27vw;
		font-size: 3.4vw;
	}
	.slide {
	    padding: 10vw 0 20vw 0;
	}
	.slick-prev {
		right: 18vw;
	}
	.slick-next {
		right: 3vw;
	}
	.slick-prev, 
	.slick-next {
		top: 88vw;
		height: 12vw;
		width: 12vw;
	}
	.slick-next::before, 
	.slick-prev::before {
		font-size: 5vw;
	}
	
	.hover_data {
		width: 70vw;
		max-width: 70vw;
		min-width: 70vw;
	}
	.hover_data::before {
		padding: 1vw 2vw;
		font-size: 2.5vw;
	}
	.hover_data dl{
		padding: 12vw 2vw 0vw 2vw;
	}
	.hover_data dl dt {
		font-size: 4.4vw;
		margin-bottom: 2vw;
	}
	.hover_data dl dd {
		font-size: 3.4vw;
	}
	.commentary::after {
		padding: 1vw 2vw;
		font-size: 2.5vw;
	}
}





/* ---------------------------------- */
/* 探偵について対談していただきました */
/* ---------------------------------- */
.talk {
	padding: 150px 0 60px;
}
.talk h2 {
	font-size: 34px;
	background-color: #f7f7f7;
	display: flex;
	padding: 35px 0;
	margin-bottom: 50px;
}
.talk h2::before {
	content: ' ';
	border-left: solid 5px #22304f;
}
.talk h2 span {
	display: inline-block;
	margin: auto;
}
.talk strong {
	background: linear-gradient( #ffffff 0%, #ffffff 70%, #ffcd51 0%, #ffcd51 100%);
	line-height: 1;
	font-size: 20px;
	display: inline;
	margin-bottom: 20px;
	margin-top: 20px;
}
.talk strong:first-child {
	margin-top: 0;
}
.talk strong.nmb {
	margin-bottom: 10px;
}
.talk strong.nmt {
	margin-top: 0px;
}
.talk strong.nm {
	margin-top: 0px;
	margin-bottom: 10px;
}
.img_left img, 
.img_right img{
	border: solid 8px #FFFFFF;
    box-shadow: 0 0 11px 0 #c5c5c5;
}
.img_left img{
	float: left;
	margin: 0 40px 30px 0;
}
.img_right img{
	float: right;
	margin: 0 0 30px 40px;
}
.img_left, 
.img_right {
	margin-bottom: 100px;
	font-size: 16px;
	line-height: 1.8;
}
.inblock {
	display: inline-block;
}

@media screen and (max-width: 1500px) {
	.img_left img, .img_right img {
		width: 40%;
	}
	.talk strong {
		font-size: 18px;
		margin-bottom: 15px;
		margin-top: 15px;
	}
	.talk {
		padding: 60px 0 0px;
	}
}

@media screen and (max-width: 1100px) {
	.talk h2 {
		font-size: 34px;
		background-color: #f7f7f7;
		display: flex;
		padding: 25px 0;
		margin-bottom: 50px;
	}
	.talk strong {
		font-size: 1.7vw;
	}
	.img_left, .img_right {
		font-size: 1.7vw;
	}
	.img_left img, .img_right img {
		max-width: 33vw;
	}
	.talk strong.nm {
		margin-bottom: 0.8vw;
		margin-top: 0.8vw;
	}
	.talk strong.nmb {
		margin-bottom: 0vw;
	}
	.talk strong.nmt {
		margin-top: 0vw;
	}
	.img_left, .img_right {
		margin-bottom: 70px;
	}
	.talk {
		padding: 60px 0 0px;
	}
}
@media screen and (max-width: 880px) {
	.img_left, .img_right {
		font-size: 1.6vw;
	}
}
@media screen and (max-width: 800px) {
	.talk {
		padding: 10vw 0 0;
	}
	.talk h2 {
		font-size: 5vw;
	    padding: 3vw 0;
	    margin-bottom: 4vw;
	}
	.talk h2::before {
		border-left: solid 3px #22304f;
	}
	.img_left img, 
	.img_right img{
		display: block;
		float: none;
		width: 80vw;
		max-width: 80vw;
		margin: 0 auto 5vw auto;
	}
	.talk strong {
		font-size: 3.5vw;
	}
	.img_left, .img_right {
		font-size: 3.2vw;
	}
	.img_left, 
	.img_right {
		margin-bottom: 10vw;
	}
}

/* IE and EDGE のハック */
@media all and (-ms-high-contrast: none){
	.talk .img_left .inblock {
		display: inline;
	}
}
@supports (-ms-ime-align:auto) {
	.talk .img_left .inblock {
		display: inline;
	}
}

/* ---------------------------------- */
/* みなさん長い時間ありがとうございました！ */
/* ---------------------------------- */
.thank {
	background-image: url(../img/blogger/c_bg.jpg);
	background-position: center top;
	background-size: cover;
	padding: 150px 0;
}
.thank .mw {
	display: flex;
}
.thank .left {
	margin-right: auto;
	width: 47%;
}
.thank h2 {
	font-size: 30px;
	display: flex;
	padding: 35px 0;
	margin-bottom: 0px;
	color: #FFFFFF;
}
.thank h2::before {
	content: ' ';
	border-left: solid 5px #ffffff;
}
.thank h2 span {
	display: inline-block;
	margin: auto;
}
.thank p {
	padding: 45px;
	font-size: 18px;
	background-color: #FFFFFF;
}
.thank .left > span {
	display: flex;
	font-size: 18px;
}
.thank .left > span::before {
	content: '※';
}
.thank .boxbs {
	border: solid 8px #FFFFFF;
	box-shadow: 0 0 0px 0 #c5c5c5;
}
@media screen and (max-width: 1500px) {

	.thank {
		padding: 60px 0;
	}
	.thank .right {
		width: 48%;
	}
	.thank .right img{
		max-width: 100%;
	}
	.thank h2 {
		font-size: 2.3vw;
		padding: 2vw 0;
		margin-bottom: 0;
	}
	.thank p {
		font-size: 1.2vw;
		margin-bottom: 1.6vw;
		padding: 2vw;
	}
}



@media screen and (max-width: 800px) {
	.thank {
		padding: 3vw 0;
	}
	.thank .mw {
		flex-direction: column;
	}
	.thank .left {
		width: 100%;
		margin-bottom: 2vw;
	}
	.thank h2 {
		font-size: 5vw;
	    padding: 6vw 0;
	}
	.thank h2::before {
		display: none;
	}
	.thank h2 span {
		display: inline-block;
		margin: auto auto auto 0;
	}
	.thank p {
		font-size: 3.4vw;
		margin-bottom: 2vw;
		padding: 5vw;
	}
	.thank .left > span {
		font-size: 3.4vw;
	}
	.thank .boxbs {
		border: solid 8px #FFFFFF;
	}
	.thank .right {
		width: 100%;
	}
	.member {
		padding: 5vw;
		margin-bottom: 6vw;
	}
}



/* ---------------------------------- */
/* ボタン */
/* ---------------------------------- */
.indication_link {
	padding: 40px 0 0 0;
}
.indication_link a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 460px;
	margin: auto;
	background-color: #1e2a47;
	border: solid 2px #1e2a47;
	color: #FFFFFF;
	padding: 25px 0;
	position: relative;
    transition: all .4s;
}
.indication_link a span {
	display: flex;
	align-items: flex-end;
	font-size: 22px;
	line-height: 1;
	font-weight: bold;
}
.indication_link a span svg {
	fill: #FFFFFF;
	width: 100px;
	margin-left: 20px;
	position: absolute;
	right: 20px;
	transition: all .4s;
}
.indication_link a:hover {
	background-color: #ffffff;
	color: #1e2a47;
}
.indication_link a:hover span svg {
	fill: #1e2a47;
}
@media screen and (max-width: 800px) {
	.indication_link {
		padding: 4vw 0 0 0;
	}
	.indication_link a {
		width: 100%;
		padding: 3.5vw 0;
	}
	.indication_link a span {
    	font-size: 4vw;
	    padding: 0.5vw 0;
	}
	.indication_link a span svg {
		width: 15vw;
		right: 4vw;
		bottom: 4vw;
	}
}

section.slide div.video {
	height: 100%;
}



.faq_t_div{
    padding-bottom: 6%;
	display:block;
	margin-bottom:6%;
}

.faq_t_div_li_l{
	text-decoration: none!important;
	width: 49%; float: left;
	background-color: #fff;
	padding: 2% 0;
	text-align: center;
	list-style: none;
       background-color: #718cc7!important;
	font-weight: bold;
}

.faq_t_div_li_r{
	text-decoration: none!important;
	width: 49%; float: right;
	background-color: #fff;
	padding: 2% 0;
	text-align: center;
	list-style: none;
       background-color:#89c997!important;
	font-weight: bold;
}


.faq_t_div a{
	text-decoration: none;
	font-size:2.5vw;	
}

@media screen and (min-width: 1042px) {
.faq_t_div a{
	text-decoration: none;
	font-size:25px;	
}
}

@media screen and (max-width: 800px) {

	
.qa_dl > dd  p {
	display: block;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.8;
}	
	
	
.faq_t_div{
    padding-bottom: 6%;
	display:block;
	margin-bottom:8vw;
}

.faq_t_div_li_l{
	text-decoration: none!important;
	width: 49%; float: left;
	background-color: #fff;
	padding: 2% 0;
	text-align: center;
	list-style: none;
       background-color: #718cc7!important;
	font-weight: bold;
}

.faq_t_div_li_r{
	text-decoration: none!important;
	width: 49%; float: right;
	background-color: #fff;
	padding: 2% 0;
	text-align: center;
	list-style: none;
       background-color:#89c997!important;
	font-weight: bold;
}


.faq_t_div a{
	text-decoration: none;
	font-size:3.5vw;	
}
}



/* -------------------------------------------------------------------------------------

	コンバージョンエリア

-------------------------------------------------------------------------------------- */
.ttl{
    padding-bottom:2%;
    border-bottom:1px solid #000;
    margin-bottom:5%!important;
}

.action_box {
  width: 1200px;
  padding: 5% 0 2%;
  margin:0 auto;
}

.action_lead {
  background-color: #094;
  color: #fff;
  text-align: center;
  font-size: 2em;
  padding: 0.5% 0;
  font-weight: bold;
  margin-bottom:2%;
}

.strong_phot{margin-bottom:2%;}

.action {
  box-shadow: 0 0 0 4px #ccc inset;
  display: flex;
  background-color: #fff;
}

.action div {
  width: 50%;
  padding: 1%;
}

.action_txt{
  font-size: 1.5em;
  font-weight: bold;
  margin: 2%;
}

.action div:last-child{
  width: 49%;
  padding: 1%;
}
.action .f_img {
  width: 90%;
  display: block;
  margin: 3% auto 3%;
}
.action div img {
  width: 100%;
  display: block;
  margin: 1% auto;
}
.ac-tel{
	color:#323232;
	font-size:260%;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin-bottom:15px;
}
/* -------------------------------------------------------------------------------------

	トップ背景変更

-------------------------------------------------------------------------------------- */

.contents_item_07 {
padding: 60px 0;
  background-image: url(https://www.haraichi.co.jp/wp-content/uploads/2025/11/sec_bg.webp) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
.pc{ display: block;}    
.contents_item_07 h2 {
  line-height: 1.5!important;
}
.adq{display: none;}
/* -------------------------------------------------------------------------------------

	スマホ

-------------------------------------------------------------------------------------- */


@media (max-width:768px){
  .contents_item_07 .section_head .lg {
    font-size: 6vw;
  }    
    
.sp_footer_nav_btns{
        display: none!important;
    }
    
.contents_item_07 {
  padding: 60px 0 20px;
}    
    
.action_lead {
  font-size: 1em;
  margin-bottom: 0%;
}
    
.action {
  display: block;
}    
    
.action_box {
  width: 100%;
  padding: 0% 0 0%;
  margin: 5% auto;
}
    
.pc{ display: none;}    

.action div {
  width: 95%;
  margin:0 auto;
  display: block;
} 
.action div:last-child {
  width: 95%;
  margin:0 auto;
  display: block;
} 
.action_txt {
  font-size: 1em;
  font-weight: bold;
  margin: 5% 2% 0;
  padding-bottom:5%;
}    
    
}





