@charset "UTF-8";
/*-----------------------私たちの想い2*/
.section_mv #thoughts.mv_inner {
	background-image: url("../img/thoughts/bg_main.jpg");
}
.thoughts {
	background-color: #f4efe6;
	background-image: url("../img/common/bg_pattern.png");
	background-size: 100px auto;
}
.thoughts .section {
	padding: 100px 0;
	position: relative;
}
.thoughts_img_wrap {
	/*width: 80%;*/
	/*width: 60%;*/
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
}
.thoughts_img_wrap .inner {
	/*width: 100%;*/
	/*width: 66%;*/
	width: 60%;
	/*margin-left: auto;*/
	border-radius: 10px 0 0 10px;
	position: relative;
	overflow: hidden;
}
.thoughts_img_wrap .inner .swiper-container {
	height: inherit;
}
.thoughts_img_wrap .inner .thoughts_img {
	width: 100%;
}
.thoughts_img_wrap .inner .thoughts_img .slide_img {
	padding-top: 66.6%;
	position: relative;
	overflow: hidden;
}
.thoughts_img_wrap .inner .thoughts_img .slide_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.thoughts_img_wrap .inner .thoughts_img .slide_img::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(247,242,242,0) 50%);
	position: absolute;
	left: 0;
	top: 0;
}
.thoughts_text_box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	/*flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: center;*/
	/*width: 34%;*/
	width: 40%;
	/*padding-top: 2%;*/
	padding-left: 4%;
}
.thoughts_text {
	/*font-size: 1.25rem;*/
	/*font-size: clamp(0.875rem, 0.679rem + 0.65vw, 1.25rem);*/
	font-size: clamp(1rem, 0.679rem + 0.65vw, 1.5rem);
	font-weight: 400;
	line-height: 1.6;
	/*white-space: nowrap;*/
	/*-ms-writing-mode: tb-lr;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	margin-right: 0.6em;*/
	margin-bottom: 1em;
	opacity: 0;
	animation: fadein 2s ease forwards;
	position: relative;
}
.thoughts_text_box .thoughts_text:first-child {
	margin-right: 0;
	animation-delay: 1s;
}
.thoughts_text_box .thoughts_text.text02 {
	animation-delay: 2.5s;
}
.thoughts_text_box .thoughts_text.text03 {
	animation-delay: 4s;
}
.thoughts_text_box .thoughts_text.text04 {
	animation-delay: 5.5s;
}
.thoughts_text_box .thoughts_text.text05 {
	animation-delay: 7s;
}
.thoughts_text_box .thoughts_text.text06 {
	animation-delay: 8.5s;
}
.thoughts_text_box .thoughts_text.text07 {
	animation-delay: 10s;
}
.thoughts_text_box .thoughts_text.text08 {
	animation-delay: 11.5s;
}
.thoughts_text_box .thoughts_text.text09 {
	animation-delay: 13s;
}
@keyframes fadein {
	100% {
		opacity: 1;
	}
}
@media screen and (max-width: 1199px) {
	/*.thoughts_text {
		font-size: 1rem;
	}*/
}
@media screen and (max-width: 991px) {
	.thoughts .section {
		padding: 80px 0;
	}
	.thoughts_img_wrap {
		flex-direction: column;
	}
	.thoughts_img_wrap .inner {
		width: 94%;
		margin: 0 auto;
		border-radius: 5px;
	}
	.thoughts_text_box {
		align-items: center;
		justify-content: center;
		width: 100%;
		position: relative;
		margin-top: 30px;
	}
	.thoughts_text {
		margin-bottom: 0.7em;
	}
}
@media screen and (max-width: 480px) {
	.thoughts .section {
		padding: 50px 0;
	}
	.thoughts_text {
		font-size: 0.937rem;
	}
}


