@charset "UTF-8";
/* CSS Document */
/* ttlArea */
.imgArea {
	background-image: url("../img/about/company_bg.jpg");
}
.ttlArea .inner .h1Area h1:after {
	content: "About KIYOSATO";
	display: block;
    width: 100%;
	position: absolute;
	bottom: -40px;
    left: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: min(6.5vw,30px);
    line-height: 1.5;
    color: #D77A61;
	text-align: center;
    letter-spacing: 0.19em;
}
/*aboutArea*/
.aboutArea .feature01{
	position: relative;
}
.aboutArea .feature01:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 12%;
    width: 18rem;
    height: 18rem;
    background-image: url("../img/about/circle01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotateAnimation 15s linear infinite; /* アニメーションの追加 */
}
.aboutArea .feature02{
	position: relative;
}
.aboutArea .feature02:before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 40%;
    width: 21rem;
    height: 21rem;
    background-image: url("../img/about/circle02.svg");
    background-repeat: no-repeat;
    background-size: cover;
    animation: rotateAnimation 15s linear infinite; /* アニメーションの追加 */
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg); /* 初期角度 */
    }
    to {
        transform: rotate(-360deg); /* 終了角度 */
    }
}
.aboutArea .feature .inner{
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}
.aboutArea .feature:nth-of-type(odd) .inner{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: center;
}
.aboutArea .feature:nth-of-type(odd) .inner .featureTxt .h2Area h2{
	color: #D77A61;
}
.aboutArea .feature:nth-of-type(odd) .inner .featureTxt .h2Area h2::after{
	bottom: -12px;
    background-color: #DBD3D8;
}
.aboutArea .feature:nth-of-type(even){
	background-color: #D77A61;
}
.aboutArea .feature:nth-of-type(even) .inner{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}
.aboutArea .feature:nth-of-type(even) .inner .featureTxt .h2Area h2{
	color: #FFF;
}
.aboutArea .feature:nth-of-type(even) .inner .featureTxt .h2Area h2::after{
	bottom: -11px;
    background-color: #D77A61;
}
.aboutArea .featureImg{
    width: 50%;
    padding: 0 15px;
	align-self:center;
}
.aboutArea .featureImg img{
	border-radius: 15px;
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.2);
}
.aboutArea .featureTxt{
    width: 50%;
    padding: 0 50px;
}
.aboutArea .featureTxt .h2Area{
	margin-bottom: 30px;
	padding-top: 20px;
	text-align: center;
}
.aboutArea .featureTxt .h2Area h2{
	padding-bottom: 30px;
	position: relative;
    line-height: 1.8;
    border-bottom: 3px solid #223843;
	font-size: 20px;
}
.aboutArea .featureTxt .h2Area h2::before,
.aboutArea .featureTxt .h2Area h2::after {
    position: absolute;
    left: 50%;
    transform:translate(-50%);
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.aboutArea .featureTxt .h2Area h2::before{
	background-color: #223843;
}
.aboutArea .featureTxt p{
	padding: 10px 0;
}

@media screen and (max-width: 1000px) {
.aboutArea .feature01:before {
    right: -5%;
}
}	

@media screen and (max-width: 767px) {
.aboutArea .feature01:before {
    right: -5%;
}
.aboutArea .feature02:before {
    left: -10%;
}
.aboutArea .feature .inner{
	padding:50px 3vw;
}
.aboutArea .feature:nth-of-type(odd) .inner,
.aboutArea .feature:nth-of-type(even) .inner{
	flex-direction: column;
}
.aboutArea .featureTxt{
    padding: 0 15px;
}
	.aboutArea .featureTxt .h2Area h2{
	padding-bottom: 15px;
}

.aboutArea .featureImg,
.aboutArea .featureTxt{
    width: 100%;
}
}	
@media screen and (max-width: 600px) {
}	

