@charset "utf-8";
/*
	検索用
	$・・・・・・セクションへ
	!・・・・・・コンテンツへ
	&・・・・・・各種パーツへ
	@768（画面幅）・・・・・・レスポンシブ対応へ
*/
/*--------------------------------------
$ハートフル商店街とは
----------------------------------------*/

.about{
    margin-top: 30px;
    margin-bottom: 80px;
}
.about-heartfulshops__title{
    margin-bottom: 30px;
}
.about-heartfulshops__text{
    font-size: 1.05rem;
    line-height: 2;
    letter-spacing: 0.1px;
    margin-bottom: 50px;
}

.about-heartfulshops__content{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
/*---------------------
!ハートフル商店街のカード
-----------------------*/
.about-heartfulshops__card{
    width: 48%;
    padding: 15px 30px 20px;
}

.about-heartfulshops__card-top{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.about-heartfulshops__circle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 22px;
    margin-left: 12px;
    min-width: 60px;
    min-height: 60px;
    color: #fff;
    background: #F97930;
    border-radius: 50%;
}
.about-heartfulshops__circle-symbol{
    background: url("../img/icon/ico_heart_w.svg");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}
.about-heartfulshops__circle-number{
    font-size: 0.8rem;
}
.about-heartfulshops__card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.about-heartfulshops__card-text{
    margin-bottom: 10px;
    padding-left: 12px;
    text-align: justify;
    line-height: 1.8;
}
.about-heartfulshops__btn{
    text-align: center;
}
.about-heartfulshops__btn-link{
    width: 50%;
}
/* @768:ハートフル商店街について */
@media(max-width: 768px){
    .about-heartfulshops__text{
    font-size: 0.875rem;
    }
    .about-heartfulshops__card{
        width: auto;
    }
    .about-heartfulshops__card-top{
    flex-direction: column;
    }
    .about-heartfulshops__circle-symbol{
        margin: 0;
    }
   .about-heartfulshops__card-title{
    font-size: 1.15rem;
    }
}
/*--------------------------------------
$ロゴマークの紹介
----------------------------------------*/
.logo-intro{
    background: url("../img/about_back.jpg");
    padding: 60px 0;
    margin-bottom: 80px;
    /*20250627追記*/
	background-size: cover;
} 
/*20250627追記*/
@media(max-width:768px){
	.logo-intro{
		padding:30px 20px;
	}
}
.logo-intro__container{
    padding: 60px 50px 90px;
    background: #fff;
    border-radius: 10px;
}
/*20250627追記*/
@media(max-width:768px){
	.logo-intro__container{
		padding:20px;
	}
}
.logo-intro__title{
    font-size: 1.3rem;
    margin-bottom: 40px;
}
.logo-intro__figure{
    text-align: center;
}
.logo-intro__img{

    width: 55%;
    margin-bottom: 50px;

}
.logo-intro__text{
    text-align: left;
    line-height: 2;
}
/* @768:ロゴマークの紹介 */
@media (max-width:768px){
    .logo-intro__img{
        width: 100%;
    }
    .logo-intro__title{
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .logo-intro__img{
        margin-bottom: 40px;
    }
    .logo-intro__text{
        text-align: justify;
    }
}
/*--------------------------------------
$運営者について
----------------------------------------*/ 
.about-operator{
    padding: 0 4%;
    margin-bottom: 60px;
}
.about-operator__title{
    font-size: 1.4rem;
    margin-bottom: 40px;
}
.about-operator__text{
    line-height: 2;
    letter-spacing: 0.4px;
}
.about-operator__strong{
    font-weight: 500;
}
/* .about-operator__text */
.about-operator__facility-link{
    position: relative;
    letter-spacing: 1pxx;
}
.about-operator__facility-link::after{
 content: "";
 display: block;
 width: 100%;
 height: 1px;
 background-color: #019500;
 position: absolute;
 bottom: 0;
 left:0;
 opacity: 0.5;
 box-shadow: 0 0 1px;
}
/* @768:運営者について */
@media (max-width: 768px){
    .about-operator{
        padding: 0;
    }
}