@charset "utf-8";

:root {
    --main-dark: #1a1a1a;
    --accent-gold: #D8C8A8;
    --accent-yellow: #fef4ad;
    --accent-beige: #d1b894;
    --line-color: #1a1a1a;
}

.article_box {
	padding-bottom: 4em;
    font-weight: 300;
}
.article_box p {
    line-height: 2;
    margin-bottom: 2em;
}
.article_box h2 {
    display: inline-block;
    position: relative;
    font-size: 1.6em;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding: 0 28px;
	margin-top: 1em;
	margin-bottom: 1em;
}

.article_box h2::before,
.article_box h2::after {
    content: '"';
    position: absolute;
    font-size: 1.4em;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    font-family: Georgia, serif;
    color: gray;
}

.article_box h2::before {
    left: 0;
}

.article_box h2::after {
    right: 0;
}

.article_box h3 {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding: 8px 30px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
	margin-top: 1em;
	margin-bottom: 1em;
}

.article_box h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05em;
    font-weight: bold;
    letter-spacing: 0.1em;
	margin-top: 1em;
	margin-bottom: 1em;
}

.article_box h4::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #000;
    flex-shrink: 0;
}

.article_box ul ,
.article_box ol {
    margin-bottom: 2em;
}

.article_box ul li,
.article_box ol li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    line-height: 1.7;
}
.article_box ul li::before {
    content: "◆";
    font-size: 0.45em;
    color: #999;
    align-self: center;
}
.article_box ol {
    counter-reset: lv-count;
}
.article_box ol li {
    counter-increment: lv-count;
}
.article_box ol li::before {
    content: counter(lv-count, decimal-leading-zero);
    font-size: 0.72em;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #999;
    flex-shrink: 0;
    min-width: 2em;
}

.article_box blockquote {
    margin: 2em 0;
}
.article_box blockquote p {
    display: block;
    position: relative;
    padding: 22px 24px 22px 52px;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    font-size: 1.05em;
    line-height: 1.8;
    letter-spacing: 0.06em;
}
.article_box blockquote p::before {
    content: "\201C";
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 3.5em;
    font-family: Georgia, serif;
    line-height: 1;
    color: var(--accent-beige);
}
/* インタビュー名前＋コメント */
.lv-interview {
    display: flex;
    align-items: flex-start;
    text-align: left;
    line-height: 1.8;
	margin: 2em 0 4em;
}

.lv-interview__name {
    flex-shrink: 0;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.lv-interview__name::after {
    content: "：";
    font-weight: normal;
}

.lv-interview__comment {
    flex: 1;
}

/* 1. 六角形（上下白線入り） */
.lv-badge-hexagon {
    display: inline-block;
    background-color: var(--main-dark);
    color: #fff;
    padding: 12px 50px;
    font-weight: bold;
    letter-spacing: 0.15em;
    position: relative;
    clip-path: polygon(18px 0%, calc(100% - 18px) 0%, 100% 50%, calc(100% - 18px) 100%, 18px 100%, 0% 50%);
}

.lv-badge-hexagon::before,
.lv-badge-hexagon::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
}

.lv-badge-hexagon::before {
    top: 7px;
}

.lv-badge-hexagon::after {
    bottom: 7px;
}

/* 2. 斜め線入り（縫い付けはみ出し風） */
.lv-badge-stitch {
    display: inline-block;
    position: relative;
    background-color: var(--accent-gold);
    padding: 15px 50px;
    font-weight: bold;
}

.lv-badge-stitch::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    width: 1.5px;
    height: 35px;
    background-color: var(--line-color);
    transform: rotate(45deg);
}

.lv-badge-stitch::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 1.5px;
    height: 35px;
    background-color: var(--line-color);
    transform: rotate(45deg);
}
/* 3. 4つ角凹み + 文字細縁取り */
.lv-badge-corner {
    display: inline-block;
    padding: 18px 45px;
    position: relative;
    background-color: var(--accent-beige);
}

.lv-badge-corner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle 12px at top left, #fff 99%, transparent 100%),
        radial-gradient(circle 12px at top right, #fff 99%, transparent 100%),
        radial-gradient(circle 12px at bottom left, #fff 99%, transparent 100%),
        radial-gradient(circle 12px at bottom right, #fff 99%, transparent 100%);

}

.lv-badge-corner span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: bold;
}

/* 4. 対称L字フレーム */
.lv-badge-l-frame {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    font-weight: bold;
    --diag-arm-ratio: 60%;
}

.lv-badge-l-frame::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: var(--diag-arm-ratio);
    height: 30px;
    border-left: 3px solid var(--line-color);
    border-top: 3px solid var(--line-color);
}

.lv-badge-l-frame::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: var(--diag-arm-ratio);
    height: 30px;
    border-right: 3px solid var(--line-color);
    border-bottom: 3px solid var(--line-color);
}

.lv-badge-l-frame__text {
    position: relative;
    display: inline-block;
    padding-right: 14px;
}

.lv-badge-l-frame__text::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-20%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #000;
}

/* 5. 波打ちライン（SVG波線） */
.lv-badge-wave {
    display: inline-block;
    text-align: center;
}

.lv-badge-wave__line {
    display: block;
    height: 10px;
    width: 100%;
    margin: 8px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q6 1 12 5 T24 5 T36 5 T48 5' fill='none' stroke='%23333' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 48px 10px;
}

.lv-badge-wave__text {
    font-weight: bold;
    font-size: 1.1em;
    padding: 0 10px;
}

.lv-badge-wave__text::before,
.lv-badge-wave__text::after {
    content: "●";
    font-size: 0.45em;
    vertical-align: middle;
    color: #000;
}

.lv-badge-wave__text::before {
    margin-right: 8px;
}

.lv-badge-wave__text::after {
    margin-left: 8px;
}

/* 6. 両端ダブルスラッシュ */
.lv-badge-dslash {
    display: inline-block;
    font-weight: bold;
    padding: 0 35px;
    position: relative;
    font-size: 1.1em;
}

.lv-badge-dslash::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 9px;
    height: 32px;
    background-image:
        linear-gradient(black),
        linear-gradient(black);
    background-size: 2px 28px, 2px 28px;
    background-position: 0 5px, 6px 0;
    background-repeat: no-repeat, no-repeat;
    transform: translateY(-110%) rotate(42deg);
}

.lv-badge-dslash::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 9px;
    height: 32px;
    background-image:
        linear-gradient(black),
        linear-gradient(black);
    background-size: 2px 28px, 2px 28px;
    background-position: 0 5px, 6px 0;
    background-repeat: no-repeat, no-repeat;
    transform: translateY(110%) rotate(42deg);
}

/* インライン強調（桃色背景） */
.lv-mark {
    background: linear-gradient(transparent 50%, var(--accent-gold) 50%);
    padding: 0 2px;
}


.wp-caption-text {
	font-size: 90%;
    font-weight: 400;
    color: #999;
    display: block;
    margin-top: 10px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .article_box img {
        max-width: 100%;
        height: auto;
    }
}