@charset "utf-8";


.flex02_ex {
    display: flex;
    justify-content: space-between; /* ← 両端に寄せる */
    align-items: stretch; /* 高さを揃える */
    width: 100%;
}
.flex02_ex2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* 左の画像ブロック */
.pl_ph1.imgWrap img {
    display: block;
    height: 100%;
}

/* 右のテキストブロック */
.pl_ph1.textWrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* ← 文字を縦中央へ */
    text-align: left;
}

/* 文字 */
.exc_text1 {
    font-size: 35px;
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    color: #000;
    letter-spacing: 0.5vw;
}

/* 下線を画像の底に揃える */
.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #796a56;
}
.exc_text2 {
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-size: 20px;
    line-height: 30px;
    color: #FFF;
    letter-spacing: 0.5em;
    font-feature-settings: "palt";
    text-align: left;
}
.ex_bg {
    width: 100%;
    padding: 5px 20px;
    background: linear-gradient(to right, 
        rgba(181, 137, 24, 1) 0%,     /* 左：濃い金色 */
        rgba(181, 137, 24, 0.4) 40%,  /* 中間：薄め */
        rgba(181, 137, 24, 0) 80%    /* 右：透明 */
    );
}
.ex_ph1{
    width: 15%;
}
.exc_text3 {
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-size: 13px;
    line-height: 24px;
    color: #000;
    font-feature-settings: "palt";
    text-align: center;
}

@media print, screen and (max-width: 750px) {
.flex02_ex {
    flex-direction: column;
}
.flex02_ex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4.3vw;
}
.exc_text1 {
    font-size: 2rem;
    letter-spacing: 0.25em;
}
.ex_bg {
    width: 100%;
    padding: 0;
    background: linear-gradient(to right, 
        rgba(181, 137, 24, 1) 0%,     /* 左：濃い金色 */
        rgba(181, 137, 24, 0.4) 40%,  /* 中間：薄め */
        rgba(181, 137, 24, 0) 100%    /* 右：透明 */
    );
}
.exc_text2 {
    padding: 12px 0 12px 20px;
    font-size: 1.7rem;
    letter-spacing: 0.3em;
}
.ex_ph1{
    width: 30%;
}
.exc_text3 {
    font-size: 1.2rem;
    line-height: 30px;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    text-align: justify;
}
}
