@charset "utf-8";
/* CSS Document */
/*------------------------------------------------*/
/* h2距離調整 */
.c-text:first-child {
	margin-top: 27px;
}
@media screen and (max-width:600px) {
.c-text:first-child {
	margin-top: 0;
}
}
.image-container {
    display: flex;
	align-items: center; /* 垂直方向の中央寄せ */
    flex-wrap: wrap; /* 画像がコンテナの幅を超えた場合に折り返し */
}
@media (max-width:767px){
.image-rotate {
    transform: rotate(90deg);
}
.image-container {
    justify-content: center; /* 画像を中央寄せ */
}
}


