@charset "utf-8";
/*------------------------------*/
/* 基本仕様 */
body {

	/* 複数同時設定 */
	background-image:url('/image/top/top_bg_left.jpg'),url('/image/top/top_bg_right.jpg');
	background-repeat: no-repeat,no-repeat;
	background-attachment: fixed,fixed;
	background-position: left center,right center;
	background-size:auto 80%,auto 80%;
	background-attachment: fixed,fixed;

}


/*------------------------------*/
/* ページ固有の設定
/*------------------------------*/
/* ご挨拶の文章 */
.greetings_text_box {
	padding:10px;
	line-height:30px;
	background-color:rgba(255,255,255,0.7);

}
.representative_image {
	float:right;
	width:40%;
}
/* タブレット画面 */
@media only screen and (max-width:767px) {
	.representative_image {
		width:50%;
	}
}
/* スマホ画面 */
@media only screen and (max-width:550px) {
	.representative_image {
		width:75%;
		float:initial;
		margin:0px auto;
	}
}

/*------------------------------*/
/* ChatGPTによる改版　2025.03.11
/*------------------------------*/
/* コンテナ全体 */
.greeting_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* タイトル */
.greeting_header {
    text-align: left;
    margin-bottom: 20px;
}

.greeting_title {
    font-size: 24px;
    font-weight: bold;
}

/* 導入文（1カラム・左揃え） */
.greeting_intro {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal; /* 本文と統一 */
    margin-bottom: 20px;
}

/* 本文＋代表者写真のエリア（2カラム） */
.greeting_content {
    display: flex;
    align-items: flex-start; /* 左側の本文の上端を基準にする */
    justify-content: space-between;
    gap: 20px;
}

/* 本文（0.6カラム・左揃え） */
.greeting_text {
    flex: 0.6;
    min-width: 350px;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

/* 代表者の写真＋情報（0.4カラム・右寄せ・下詰め） */
.greeting_image {
    flex: 0.4;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center; /* 画像を中央揃え */
    justify-content: flex-end; /* 画像を下に配置 */
    margin-top: auto; /* 本文の最後の行に揃えて画像が下がる */
}

.greeting_image_inner {
    text-align: center;
    padding-top: 20px; /* 本文より少し下げる */
}

.representative_photo {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.greeting_info {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
    .greeting_content {
        flex-direction: column;
        text-align: center;
    }

    .greeting_text {
        width: 100%;
        text-align: left;
    }

    .greeting_image {
        width: 100%;
        text-align: center;
        margin-top: 30px; /* 代表者写真を最後に表示 */
    }
}
/* リストのスタイル */
.greeting_strengths {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.greeting_strengths li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px; /* 各項目の間に適度な余白 */
}

/* タイトル部分を強調 */
.strength_title {
    font-weight: bold;
    display: inline-block; /* 太字部分を目立たせつつ、改行を防ぐ */
    margin-bottom: 5px;
}

/* 重要なフレーズの強調 */
.highlight_text {
    font-weight: bold;
    font-size: 18px;
    color: #333; /* 目立たせたい色（カスタマイズ可能） */
}
