@charset "utf-8";

/*cssファイルの読み込み
---------------------------------------------------------------------------*/

@import url("theme.css");
@import url("inview.css");

/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/

@keyframes animation1 {
    0% {
        right: -200px;
    }
    100% {
        right: 0px;
    }
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/

@keyframes opa1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*全体の設定
---------------------------------------------------------------------------*/

body * {
    box-sizing: border-box;
}

html {
    font-size: clamp(12px, 0.293vw + 10.9px, 15px);
    /*画面幅約375px〜1400pxの間で、12px〜15pxに可変*/
    overflow-x: visible;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--base-font);
    /*フォント指定。theme.cssのbase-fontを読み込みます。*/
    -webkit-text-size-adjust: none;
    line-height: 2;
    /*行間*/
    overflow-x: hidden;
}


/*リセット*/

figure {
    margin: 0;
}

dd {
    margin: 0;
}

nav,
ul,
li,
ol {
    margin: 0;
    padding: 0;
}

nav ul {
    list-style: none;
}


/*table全般の設定*/

table {
    border-collapse: collapse;
}


/*画像全般の設定*/

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}


/*videoタグ*/

video {
    max-width: 100%;
}


/*iframeタグ*/

iframe {
    width: 100%;
}


/*他*/

input {
    font-size: 1rem;
}

h2 .en {
    display: inline-block;
    font-size: 0.42em;
    letter-spacing: 0.18em;
    font-weight: 400;
    color: rgba(212, 175, 55, 0.8);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}


/*section
---------------------------------------------------------------------------*/

section {
    padding: 0 var(--content-space-l);
    /*上下、左右へのsection内の余白。左右については、theme.cssの--content-space-lを読み込みます。*/
    margin: var(--content-space-l) 0;
    /*上下、左右へのsectionの外側にとるマージン。上下については、theme.cssの--content-space-lを読み込みます。*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/

a {
    transition: 0.3s;
    /*hoverまでにかける時間。0.3秒。*/
}


/*マウスオン時*/

a:hover {
    filter: brightness(1.1);
    /*少しだけ明るくする*/
    text-decoration: none;
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/

#container {
    animation: opa1 0.2s 0.2s both;
    /*0.2(2つ目の数字)秒待機後、0.2(1つ目の数字)秒かけてフェードイン*/
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/*header
---------------------------------------------------------------------------*/


/*ヘッダー*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    /*ロゴとメニューブロックの間に空けるスペース。2文字分。*/
    height: 100px;
    /*ヘッダーの高さ。お好みで。*/
    padding-inline: var(--content-space-l);
    /*左右の余白。theme.cssのcontent-space-lを読み込みます*/
}


/*ロゴ画像*/

header .logo {
    margin: 0;
    flex-shrink: 0;
}

header .logo img {
    display: block;
    width: 200px;
    /*ロゴの幅。お好みで。*/
}

.header-x-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #f4e7c5;
    font-size: 1rem;
    transition: 0.3s;
    flex-shrink: 0;
    text-decoration: none;
}

.header-x-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.9);
    color: #f7d66b;
    filter: none;
}


/*大きな端末で見たメニュー
---------------------------------------------------------------------------*/


/*メニューブロック全体の設定*/

.large-screen #menubar {
    font-family: var(--accent-font), var(--base-font);
    display: flex;
    /* ← 追加 */
    align-items: center;
    /* ← 追加 */
    gap: 2rem;
    /* ← 追加 */
}

.large-screen #menubar>nav>ul {
    display: flex;
    gap: 2rem;
    /*メニュー同士に空けるスペース。2文字分。*/
    letter-spacing: 0.05em;
    /*文字間隔を少しだけ広く*/
}


/*メニュー１個あたりの設定*/

.large-screen #menubar li a {
    display: block;
    text-decoration: none;
}


/*小さな端末で見たメニュー（開閉メニュー）
---------------------------------------------------------------------------*/


/*メニューブロック共通*/

.small-screen #menubar {
    animation: animation1 0.2s both;
    position: fixed;
    overflow: auto;
    z-index: 100;
    right: 0px;
    top: 0px;
    width: 50%;
    /*画面の半分の幅*/
    height: 100%;
    padding: 100px var(--content-space-l) 50px;
    /*上下に100px、左右にtheme.cssのcontent-space-lで指定しているサイズ、下に50pxの余白*/
    background: var(--primary-color);
    /*背景色。theme.cssのprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
    background: linear-gradient( 135deg, rgba(13, 11, 8, 0.98), rgba(34, 24, 14, 0.98));
    color: #f4e7c5;
}

.small-screen #menubar {
    display: none;
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    .small-screen #menubar {
        width: 100%;
        /*幅を100%に*/
    }
}


/*追加指定ここまで*/


/*メニュー１個あたり*/

.small-screen #menubar a {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    /*下に１文字分のスペースを空ける*/
    padding: 1rem 2rem;
    /*メニュー内の余白。上下に１文字分、左右に２文字分。*/
    border-radius: 5px;
    /*角を少し丸くする*/
    background: transparent;
    color: #f4e7c5;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0;
    padding: 1.1rem 1.4rem;
    letter-spacing: 0.12em;
    font-family: "Jost", "Noto Sans JP", sans-serif;
}

.small-screen #menubar a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #f7d66b;
    border-color: rgba(212, 175, 55, 0.65);
}


/*子メニュー（ドロップダウンメニュー）*/

.small-screen #menubar ul ul a {
    margin-left: 2rem;
    /*左に２文字分のスペースを空ける*/
    padding: 0.5rem 1.5rem;
    /*メニュー内の余白。上下に0.5文字分、左右に1.5文字分。*/
}


/*ドロップダウンのアイコン*/

a.ddmenu::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    /*このアイコンを使う*/
    margin-right: 1em;
    /*アイコンとメニューテキストとの間に空けるスペース。1文字分。*/
    font-size: 0.7em;
    /*アイコンサイズ。70%*/
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}


/*ドロップダウン共通（デフォルトで非表示。チラつかないよう念の為。）
---------------------------------------------------------------------------*/

#menubar ul ul {
    display: none;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/

#menubar_hdr {
    display: none;
    /* デフォルトは非表示 */
    animation: opa1 0s 0.2s both;
    cursor: pointer;
    position: fixed;
    z-index: 101;
    right: 0px;
    /*右からの配置場所*/
    top: 0px;
    /*上からの配置場所*/
    width: 70px;
    /*ボタンの幅*/
    height: 70px;
    /*ボタンの高さ*/
    border-bottom-left-radius: 10px;
    /*左下の角だけ丸くする*/
}


/*ハンバーガーアイコンの線*/

#menubar_hdr span {
    display: block;
    transition: 0.3s;
    position: absolute;
    left: 18px;
    width: 35px;
    height: 1px;
    /*線の高さ*/
    background: var(--bg-inverse-color);
    /*線の色。theme.cssのbg-inverse-colorを読み込みます。*/
}


/*バツ印が出ている時のボタン色*/

#menubar_hdr.ham {
    background: rgba(13, 11, 8, 0.95);
}

#menubar_hdr.ham span {
    background: #d4af37;
}


/*以下変更不要*/

#menubar_hdr span:nth-of-type(1) {
    top: 24px;
}

#menubar_hdr span:nth-of-type(2) {
    top: 34px;
}

#menubar_hdr span:nth-of-type(3) {
    top: 44px;
}

#menubar_hdr.ham span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}

#menubar_hdr.ham span:nth-of-type(2) {
    opacity: 0;
}

#menubar_hdr.ham span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}


/*小さな画面での設定*/

.small-screen #menubar_hdr {
    display: flex;
}


/*メイン画像
---------------------------------------------------------------------------*/

.mainimg * {
    margin: 0;
    padding: 0;
}

.mainimg picture,
.mainimg img {
    display: block;
    width: 100%;
}


/*メイン画像ブロック全体*/

.mainimg {
    display: flex;
    gap: 5vw;
    position: relative;
    margin-bottom: var(--content-space-l);
    /*下に空けるスペース。theme.cssのcontent-space-lを読み込みます。*/
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*メイン画像ブロック全体*/
    .mainimg {
        flex-direction: column;
    }
}


/*追加指定ここまで*/


/*テキストブロック*/

.mainimg .text {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-left: 5vw;
    /*左に5%の余白をあける*/
    margin-right: -12vw;
    /*右に10%食い込ませる*/
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*テキストブロック*/
    .mainimg .text {
        margin: 0;
        align-items: center;
        text-align: center;
    }
}


/*追加指定ここまで*/


/*見出し*/

.mainimg .text h1 {
    font-family: var(--accent-font), var(--base-font);
    /*英語の場合は冒頭のaccent-fontに指定したフォントを読み込む。日本語はbase-fontで指定したフォントを読み込む。*/
    font-weight: 200;
    /*太さ*/
    font-size: max(20px, 4.5vw);
    /*文字サイズ。24pxより小さくならない。7.5は可変サイズなのでお好みで。*/
    line-height: 1.3;
    /*行間を狭く*/
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*見出しの改行を無効にして１行にする*/
    .mainimg .text h1 br {
        display: none;
    }
}


/*追加指定ここまで*/


/*説明文*/

.mainimg .text p {
    color: var(--accent-color);
    /*文字色。theme.cssのaccent-colorを読み込みます。*/
    font-size: 0.8rem;
    /*文字サイズ80%*/
}


/*画像ブロック*/

.mainimg .image {
    width: 65%;
    aspect-ratio: 3 / 2;
    /*画像のアスペクト比。お好みで。*/
    filter: drop-shadow(-3vw 2vw var(--light-color));
    /*影。右へ3%（マイナスがついているので左になる）、下へ2%、影の色はtheme.cssのlight-colorを読み込みます。*/
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*画像ブロック*/
    .mainimg .image {
        width: 100%;
    }
}


/*追加指定ここまで*/


/*画像*/

.mainimg .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#mainimgClip);
}


/*画像右下の「Nice to meet you」のテキストブロック*/

.mainimg .overlay {
    position: absolute;
    right: 0px;
    /*右からの配置場所*/
    bottom: -2vw;
    /*下からの配置場所。マイナスがついているので、下に向かっての指示になる。*/
    background: var(--primary-color);
    /*背景色。theme.cssのprimary-colorを読み込みます。*/
    font-size: 0.8rem;
    /*文字サイズ80%*/
    width: max(150px, 18vw);
    /*ブロック幅。18%。150pxより小さくしない。*/
    min-height: 15vw;
    /*ブロックの最低の高さ。15%*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    /*上下に1文字分、左右に2文字分の余白*/
    text-align: center;
}


/*アクセントライン*/

.mainimg .overlay>div::before {
    content: "";
    width: 20px;
    /*アクセントラインの幅*/
    display: block;
    margin: 0 auto 1rem;
    /*1remは、アクセントラインの下に空けるスペース。*/
    border-top: 1px solid var(--primary-color);
    /*上の線の幅、線種、var以降は色の指定でtheme.cssのaccent-colorを読み込みます*/
}


/*contents
---------------------------------------------------------------------------*/

#contents {
    flex: 1;
    min-height: 0;
}


/*main
---------------------------------------------------------------------------*/

main {
    container-type: inline-size;
}


/*h2見出し*/

main h2 {
    font-size: 2rem;
    font-weight: 500;
    gap: 1.5rem;
    /*h2内にspanを使う場合、間に空けるスペース。1.5文字分。*/
    align-items: center;
    letter-spacing: 0.05em;
    position: relative;
}


/*h2見出し内のspan（小文字）*/

main h2 span a {
    text-decoration: none;
}

main h2 span {
    display: inline-block;
    font-size: 0.8rem;
    /*文字サイズ80%*/
    font-weight: 300;
    /*文字の太さ。細く。*/
    background: var(--light-color);
    /*背景色。theme.cssのlight-colorを読み込みます。*/
    padding: 0 1rem;
    /*上下は0、左右に1文字分の余白。*/
    border-radius: 100px;
    /*角を丸く*/
}


/*spanの右側の「→」アイコン。font Awesome。*/

main h2 span a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
    /*このアイコンを使う*/
    margin-left: 0.7rem;
    /*テキストと、矢印との間に空けるスペース。0.7文字分。*/
    transition: 0.3s;
}

main h2 span a:hover::after {
    margin-left: 1rem;
    /*テキストと、矢印との間に空けるスペース。1文字分。*/
}


/*main内で使用するul,ol要素（リストタグ）*/

main ul,
main ol {
    margin-left: 2rem;
    margin-right: 2rem;
}


/*メニューオーバーレイ（メニュー領域外クリックで閉じる用）
---------------------------------------------------------------------------*/

#menubar-overlay {
    display: none;
    position: fixed;
    z-index: 99;
    /*#menubar(100)の下、ページの上*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /*半透明の黒。お好みで濃さを調整。*/
}


/*noscroll（メニュー表示中のスクロール禁止用）*/

body.noscroll {
    overflow: hidden;
}


/*list-grid1（Aboutブロック）
---------------------------------------------------------------------------*/


/*ブロック全体*/

.list-grid1 {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr 0.8fr;
    /*３列のそれぞれの幅。90%、120%、90%。お好みで。*/
    align-items: start;
    gap: 5vw;
    /*３カラム同士の間に空けるスペース。5%。*/
}


/*3つ目のブロック*/

.list-grid1 div:nth-of-type(3) {
    position: relative;
}


/*3つ目のブロック上の「About me」の飾り*/

.list-grid1 div:nth-of-type(3) img.kazari {
    position: absolute;
    width: 100px;
    /*幅。お好みで。*/
    right: 7%;
    /*右から7%*/
    top: 20%;
    /*上から20%*/
}


/*2つ目のブロックの上に余白を空ける。３つのブロックを階段状にするため。*/

.list-grid1>*:nth-child(2) {
    margin-top: 0;
}


/*3つ目のブロックの上に余白を空ける。３つのブロックを階段状にするため。*/

.list-grid1>*:nth-child(3) {
    margin-top: 0;
}


/*画面幅500px以下の追加指定*/

@media (max-width:500px) {
    .list-grid1 {
        grid-template-columns: 1fr;
        /* 1カラムに */
        margin: 5vw;
        /*外側に空けるスペース。これがないとキツキツになるので。*/
    }
    .list-grid1>*:nth-child(2),
    .list-grid1>*:nth-child(3) {
        margin-top: 0;
        /* 段差リセット */
    }
}


/*list-mask1（WorksやInstagramブロックで使っているカラムブロック）
---------------------------------------------------------------------------*/

.list-mask1 * {
    margin: 0;
    padding: 0;
}


/*ボックス全体*/

.list-mask1 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    /*4列*/
    gap: 7vw;
    /*ボックスの間に空けるスペース。7%。*/
    font-size: 0.9rem;
    /*文字サイズ90%*/
}


/*画面幅500px以下の追加指定*/

@media (max-width:500px) {
    .list-mask1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /*2列*/
    }
}


/*追加指定ここまで*/


/*ボックス１個あたり*/

.list-mask1 .list-parts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}


/*テキストボックス*/

.list-mask1 .list-parts .text-parts {
    flex: 1;
}


/*h4見出し*/

.list-mask1 h4 {
    text-align: center;
    /*テキストをセンタリング*/
}


/*説明だけ小さめにする*/

.list-mask1 .list-parts p {
    font-size: 0.9em;
    /*文字サイズ*/
    line-height: 1.5;
    /*行間*/
}


/*画像*/

.list-mask1 figure,
img.mask {
    aspect-ratio: 1 / 1;
    /* アスペクト比1:1の正方形 */
}

.list-mask1 figure img,
img.mask {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/*画像にリンクがある場合のみ110%に拡大*/

.list-mask1 figure a img:hover {
    transform: scale(1.1);
}


/* マスク対応ブラウザだけ「切り抜き」に切り替え */

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .list-mask1 figure,
    img.mask {
        overflow: hidden;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: 100% 100%;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: 100% 100%;
        /* 明示的に透過（アルファ）でマスクする指定を追加 */
        -webkit-mask-source-type: alpha;
        mask-mode: alpha;
    }
    .list-mask1 .list-parts.mask7 figure,
    img.mask.mask7 {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='black' d='M645,20.5C299.1-50.2,132.3,264.5,101.6,443.2c-42.8,248.8,55.1,526.1,359.7,549.9,333.3,26,430.4-283.2,444.5-416.3,21.2-199.3-19.8-506.9-260.9-556.2Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath fill='black' d='M645,20.5C299.1-50.2,132.3,264.5,101.6,443.2c-42.8,248.8,55.1,526.1,359.7,549.9,333.3,26,430.4-283.2,444.5-416.3,21.2-199.3-19.8-506.9-260.9-556.2Z'/%3E%3C/svg%3E");
    }
}


/*gallery
---------------------------------------------------------------------------*/

.gallery * {
    margin: 0;
    padding: 0;
}


/*ブロック全体*/

.gallery {
    display: flex;
    gap: 5vw;
    /*左右のブロックの間に空けるスペース。5%。*/
}


/*画像ブロック*/

.gallery .image {
    width: 100%;
    /*幅*/
}


/*テキストブロック*/

.gallery .text {
    flex: 1;
}


/*写真１枚あたり。以下以外の設定は別にあります。「.list-mask1」でテキスト検索をかけてください。*/

.gallery .list-mask1 {
    gap: 2vw;
    /*写真同士の間に空けるスペース。2%。*/
}

#link1 .gallery .image {
    width: 28%;
    flex-shrink: 0;
}
#link3 .gallery {
    flex-direction: column;
}

#link3 .gallery .image {
    width: 100%;
}

@media (max-width: 700px) {
    #link1 .gallery {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    #link1 .gallery .image {
        width: 65%;
        margin-top: 0;
    }
    #link1 .gallery .text {
        width: 100%;
    }
    #link3 .gallery {
        flex-direction: column;
    }
    #link3 .gallery .image {
        width: 100%;
    }
    #link3 .list-mask1 {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 500px) {
    #link3 .list-mask1 {
        grid-template-columns: 1fr;
    }

}

.writer-list {
    width: min(1000px, 100%);
    margin: 3rem auto 0;
}

.writer-head,
.writer-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(244, 231, 197, 0.35);
}

.writer-head {
    font-size: 0.9rem;
    color: #f4e7c5;
    letter-spacing: 0.08em;
}

.writer-row {
    color: #fff8e7;
}

.writer-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.writer-links {
    display: flex;
    gap: 0.6rem;
}

.writer-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    text-decoration: none;
    background: #0d0b08;
    color: #fff;
    border: 1px solid rgba(244, 231, 197, 0.4);
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.writer-links a:hover {
    background: #d4af37;
    color: #0d0b08;
    border-color: #d4af37;
}

.writer-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.writer-type {
    display: inline-block;
    padding: 0.18rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    font-family: "Jost", sans-serif;
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: rgba(244, 231, 197, 0.85);
    background: rgba(255, 255, 255, 0.03);
}

.writer-type.novel {
    border-color: rgba(212, 175, 55, 0.35);
}

.writer-type.comic {
    border-color: rgba(180, 120, 120, 0.45);
}

.writer-type.illust {
    border-color: rgba(120, 150, 190, 0.45);
}

.writer-type.poem {
    border-color: rgba(170, 140, 190, 0.45);
}

@media (max-width: 700px) {
    .writer-head {
        display: none;
    }
    .writer-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 1.2rem 0.5rem;
    }
    .writer-links {
        margin-top: 0.4rem;
    }
}

.writer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    margin-top: 3rem;
}

.writer-column {
    display: flex;
    flex-direction: column;
}

.writer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 231, 197, 0.25);
}

.writer-name {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.writer-links {
    display: flex;
    gap: 0.5rem;
}

.writer-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f4e7c5;
    font-size: 0.8rem;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
}

.writer-links a:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.8);
}

@media (max-width:700px) {
    .writer-grid {
        grid-template-columns: 1fr;
    }
}

.member-note {
  display: inline-block;
  margin-left: 0.8em;
  font-size: 0.7em;
  font-weight: normal;
  color: #8d7b68;
  letter-spacing: 0.03em;
}

.writer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(176,138,60,0.45);
  border-radius: 50%;
  color: #8f6b2d;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.writer-links a:hover {
  background: rgba(176,138,60,0.12);
  transform: translateY(-1px);
}

.writer-type.novel {
  background: #7b5b52;
}

.writer-type.comic {
  background: #5a4b7b;
}

.writer-type.illust {
  background: #7b6a4b;
}

.writer-type.poem {
  background: #6f7b52;
}

/*news（お知らせ）
---------------------------------------------------------------------------*/

dl.news * {
    margin: 0;
    padding: 0;
}


/*日付*/

dl.news dt {
    display: flex;
}


/*画面幅900px以上の追加指定*/

@media (min-width: 900px) {
    dl.news {
        display: grid;
        grid-template-columns: max-content minmax(0, 1fr);
        /*日付幅は最大の文字数幅に自動調整し、右側テキストは残り一杯使う。*/
        gap: 0 2rem;
        /*2remが、日付とテキストとの間に空けるスペース。お好みで。*/
        align-items: start;
    }
}


/*追加指定ここまで*/


/*contactブロック
---------------------------------------------------------------------------*/

.contact * {
    margin: 0;
    padding: 0;
}


/*ブロック全体*/

.contact {
    display: flex;
    flex-direction: column;
    /*縦積み*/
    justify-content: center;
    text-align: center;
    /*センタリング*/
    gap: 5vw;
    /*テキストと写真ブロックの間に5%空ける。*/
}


/*画面幅600px以上の追加指定*/

@media (min-width:600px) {
    .contact {
        flex-direction: row;
        /*横並びに*/
        align-items: center;
        text-align: left;
        /*テキストを左寄せ*/
    }
}


/*テキストブロック*/

.contact .text {
    flex: 1;
}


/*ブロック内のh2をセンタリング*/

.contact h2 {
    width: fit-content;
    margin-inline: auto;
}


/*画面幅600px以上の追加指定*/

@media (min-width:600px) {
    /*ブロック内のh2を左よせに*/
    .contact h2 {
        margin-inline: 0;
    }
}


/*追加指定ここまで*/


/*画像ブロック*/

.contact .image {
    width: 100%;
    position: relative;
}


/*画面幅600px以上の追加指定*/

@media (min-width:600px) {
    /*画像ブロック*/
    .contact .image {
        width: 60%;
        /*画像ブロックの幅。お好みで。*/
    }
}


/*追加指定ここまで*/


/*画像*/

.contact .img {
    border-radius: 20vw 20vw 10px 10px;
    /*角を丸くする。左上、右上、右下、左下の順番。*/
}


/*画像上の「Thank you」の画像*/

.contact .image .kazari {
    position: absolute;
    width: 100px;
    /*幅。お好みで。*/
    right: -4vw;
    /*右からの配置場所。マイナスがついているので本来とは逆向き。*/
    top: 20%;
    /*上からの配置場所*/
}


/*ボタン（btn-grad1）
---------------------------------------------------------------------------*/

.btn-grad1 a {
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0.5rem 2rem;
    /*上下に0.5文字分、左右に2文字分の余白*/
    border-radius: 3px;
    /*角を少しだけ丸く*/
    color: #fff;
    /*文字色。お好みで。*/
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
    /*テキストの影。右へ1px、下へ1px、0,0,0は黒のことで0.2は色が20%出た状態。*/
    transition: background-position 0.5s ease, transform 0.5s ease;
    /*「background-position」と「transform」の変化に0.5秒かける。数値はお好みで。*/
    background: linear-gradient(120deg, #cd9eb7, var(--accent-color)) left center / 200% 200%;
    /*背景グラデーション。120degは角度。#はグラデに使う色。グラデの表示範囲を左半分に。最後が縦横サイズ。*/
    letter-spacing: 0.1em;
    /*文字間隔を少しだけ広く*/
}


/*テキスト量にあったサイズ用*/

.btn-grad1.fit a {
    display: inline-flex;
}


/*テキスト量にあったサイズ用の左右中央用*/

.btn-grad1.c {
    text-align: center;
}


/*マウスオン時（色の追加をする際は、このブロックより上に入れて下さい。）*/

.btn-grad1 a:hover {
    filter: none;
    background-position: right center;
    /*グラデの表示範囲を、右半分に。*/
    transform: translateY(-2px);
    /*ボタンを2pxだけ浮かす*/
}

.btn-age-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}


/*footer
---------------------------------------------------------------------------*/

footer * {
    margin: 0;
    padding: 0;
}


/*フッターブロック全体*/

footer {
    padding: 2rem var(--content-space-l);
    /*フッター内の余白。上下に2文字分、左右は、theme.cssのcontent-space-lを読み込みます*/
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    /*文字サイズ80%*/
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*フッターブロック全体*/
    footer {
        flex-direction: column;
        /*縦積みに*/
    }
}


/*追加指定ここまで*/


/*フッター内のメニューブロック*/

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    /*メニュー同士に空けるスペース。1文字分。*/
}


/*フッター内のロゴ*/

footer .logo {
    flex-shrink: 0;
    width: 80px;
    /*幅。お好みで。*/
}


/*フッター内のSNSアイコン（Font Awesome）*/

footer .sns {
    font-size: 1.2rem;
    /*サイズ。120%。*/
}


/*Copyright*/

footer small {
    width: 100%;
}


/*画面幅700px以下の追加指定*/

@media (max-width:700px) {
    /*Copyrightをセンタリング*/
    footer small {
        text-align: center;
    }
}


/*追加指定ここまで*/


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/

.pr a {
    text-decoration: none;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    color: #ccc;
    text-align: right;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.pr a::before {
    font-family: "Font Awesome 6 Free";
    content: "\e2ca";
    font-weight: 900;
    margin-right: 0.5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/

.pagetop-show {
    display: block;
}


/*ボタンの設定*/

.pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 99;
    animation: opa1 1s 0.4s both;
    position: fixed;
    /*スクロールに追従しない(固定で表示)為の設定*/
    right: 20px;
    /*右からの配置場所指定*/
    bottom: 20px;
    /*下からの配置場所指定*/
    color: #fff;
    /*文字色*/
    font-size: 1.5rem;
    /*文字サイズ*/
    background: rgba(0, 0, 0, 0.2);
    /*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
    width: 60px;
    /*幅*/
    line-height: 60px;
    /*高さ*/
    border-radius: 50%;
    /*円形にする*/
}


/*bg1-parts
---------------------------------------------------------------------------*/

.bg1-parts {
    background: var(--bg-inverse-color);
    /*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
    color: var(--bg-color);
    /*背景色。theme.cssのbg-colorを読み込みます。*/
}


/*bg1-primary
---------------------------------------------------------------------------*/

.bg1-primary-parts {
    background: var(--primary-color);
    /*背景色。theme.cssのprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}


/*bg1-light
---------------------------------------------------------------------------*/

.bg1-light-parts {
    background: var(--light-color);
    /*背景色。theme.cssのlight-colorを読み込みます。*/
    color: var(--light-inverse-color);
    /*背景色。theme.cssのlight-inverse-colorを読み込みます。*/
}


/*bg1-accent
---------------------------------------------------------------------------*/

.bg1-accent-parts {
    background: var(--accent-color);
    /*背景色。theme.cssのaccent-colorを読み込みます。*/
    color: var(--accent-inverse-color);
    /*背景色。theme.cssのaccent-inverse-colorを読み込みます。*/
}


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/

.bleed-x-parts {
    --bleed-x: var(--content-space-l);
    /*エイリアスに*/
    width: calc(100% + (var(--bleed-x) * 2));
    /*section内容の幅＋両サイドpadding（対象要素の幅）*/
    margin-left: calc(var(--bleed-x) * -1);
    margin-right: calc(var(--bleed-x) * -1);
    max-width: none;
}


/*左右によせる専用
---------------------------------------------------------------------------*/

.bleed-left-parts {
    width: calc(100% + var(--content-space-l));
    margin-left: calc(-1 * var(--content-space-l));
}

.bleed-right-parts {
    width: calc(100% + var(--content-space-l));
    margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/

.color-check,
.color-check a {
    color: #c3547b !important;
}

.l {
    text-align: left !important;
}

.c {
    text-align: center !important;
}

.r {
    text-align: right !important;
}

.ws {
    width: 100%;
    display: block;
}

.wl {
    width: 100%;
    display: block;
}

.padding-x {
    padding: 0 var(--content-space-l);
}

.mt0 {
    margin-top: 0px !important;
}

.mt1rem {
    margin-top: 1rem !important;
}

.mt3rem {
    margin-top: 3rem !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb1rem {
    margin-bottom: 1rem !important;
}

.mb3rem {
    margin-bottom: 3rem !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.look {
    display: inline-block;
    padding: 0px 10px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 3px;
    margin: 5px 0;
    word-break: break-all;
}

.small {
    font-size: 0.75em;
}

.large {
    font-size: 2em;
    letter-spacing: 0.1em;
}

.pc {
    display: none;
}

.dn {
    display: none !important;
}

.block {
    display: block !important;
}

.is-clip {
    overflow: hidden;
}


/*大きな画面の場合*/

.large-screen .ws {
    width: 50%;
}

.large-screen .sh {
    display: none;
}

.large-screen .pc {
    display: block;
}


/* ---- 2列テーブル（ta2） (ta2) ---- */


/*テーブル（ta2-parts）
---------------------------------------------------------------------------*/


/*テーブル１行目に入った見出し部分（※caption）*/

.ta2-parts caption {
    font-weight: bold;
    /*太字に*/
    padding: 0.2rem 1rem;
    /*ボックス内の余白。上下に0.2文字分、左右に1文字分。*/
    margin-bottom: 1rem;
    /*下に空けるスペース。１文字分。*/
    background: var(--primary-color);
    /*背景色。theme.cssのprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}


/*テーブルブロック設定*/

.ta2-parts {
    table-layout: fixed;
    width: 100%;
    margin-bottom: 2rem;
    /*テーブルの下に空けるスペース。２文字分。*/
    background: rgba(20, 15, 10, 0.55);
    color: #f4e7c5;
    backdrop-filter: blur(2px);
}


/*th（左側）、td（右側）の共通設定*/

.ta2-parts th,
.ta2-parts td {
    padding: 1rem;
    /*ボックス内の余白。１文字分。*/
    word-break: break-all;
    /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
    border: 1px solid var(--bg-border-color);
    /*線の幅、線種、varは色の設定でtheme.cssのbg-border-colorを読み込みます。。*/
}


/*th（左側）のみの設定*/

.ta2-parts th {
    width: 13rem;
    /*幅。13文字分。*/
    text-align: left;
    /*左よせにする*/
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
}


/* ==============================
   アンドレ秘密の手帖 カラー調整
============================== */

body {
    background: radial-gradient( circle at top, #2a1d12 0%, #120d09 45%, #090705 100%);
    color: #f4e7c5;
}


/* 見出し */

h1,
h2,
h3,
h4 {
    color: #d4af37;
}


/* リンク */

a {
    color: #d4af37;
}

a:hover {
    color: #f7d66b;
}


/* ヘッダー・メニュー */

header,
#menubar {
    background-color: #000;
}


/* メニュー文字 */

#menubar a {
    color: #f4e7c5;
}

#menubar a:hover {
    color: #d4af37;
}


/* メイン画像まわり */

.mainimg {
    background-color: #0d0b08;
}


/* セクション背景 */

section {
    background: transparent;
}


/* 白っぽいブロックが残る場合 */

main,
.contents,
.list,
.list-grid1,
.list-flex1,
.news,
.contact {
    background-color: transparent;
}


/* ボタン */

.btn-grad1,
.btn {
    background: linear-gradient(135deg, #8c6a14, #d4af37, #f7d66b);
    color: #1a1208 !important;
    border: none;
}


/* 飾り線・枠 */

main h2::before {
    background-color: #d4af37;
}

.mainimg {
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .7)), url("../images/hero-book.jpg") center / cover no-repeat;
}


/*bg-parts（bg1-primary-parts、bg1-light-parts、bg1-accent-partsとセットで使います）
---------------------------------------------------------------------------*/

.bg-parts {
    padding-top: var(--content-space-l);
    /*ボックス内の上に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
    padding-bottom: var(--content-space-l);
    /*ボックス内の下に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.15));
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(2px)
}


/*背景色が続く場合に隙間を空けない*/

.bg-parts+.bg-parts {
    margin-top: calc(-1 * var(--content-space-l)) !important;
}


/*メイン画像
---------------------------------------------------------------------------*/

.mainimg * {
    margin: 0;
    padding: 0;
}

.mainimg .slide picture {
    display: block;
    width: 100%;
    height: 100%;
}


/*メイン画像全体を囲むブロック*/

.mainimg {
    width: 100%;
    position: relative;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}


/*変更不要*/

.mainimg .img1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mainimg .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*画像をコンテナのサイズに合わせてクリップ*/
    object-position: center;
    /*画像の中心を基準に*/
}


/*メイン画像上のテキスト
---------------------------------------------------------------------------*/


/*テキストブロックの基本設定（中央配置がデフォルト）*/

.mainimg .slide .text {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 3vw;
    color: #fff;
    /*文字色*/
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    /*テキストの影。右へ、下へ。rgbaは影の色。*/
}


/*テキストブロックを左に配置させたい場合*/

.mainimg .slide .text.left-parts {
    align-items: flex-start;
    text-align: left;
}


/*テキストブロックを右に配置させたい場合*/

.mainimg .slide .text.right-parts {
    align-items: flex-end;
    text-align: right;
}


/*テキストブロックをインラインにする為のブロック*/

.mainimg .slide .text .text-bg {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2vw 3vw;
    /*上下、左右へのブロック内の余白。*/
    background: rgba(0, 0, 0, 0.5);
    /*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
    border-radius: 5px;
    /*角を少し丸くする*/
    width: 40vw;
    /*幅。画面幅100% = 100vwです。*/
}


/*h2（大きな文字）*/

.mainimg .slide .text h2 {
    line-height: 1.5;
    font-weight: 500;
    /*テキストの太さ。100〜900まで指定可能。*/
    font-size: 3vw;
    /*文字サイズ。１文字あたり画面幅の約4%。*/
}


/*p（説明テキスト部分）*/

.mainimg .slide .text p {
    font-size: 0.9rem;
    /*文字サイズ90%*/
}


/* =========================
   Hero中央配置
========================= */


/* hero全体 */

.mainimg {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


/* 画像 */

.mainimg picture,
.mainimg picture img {
    width: 100%;
    height: 100%;
}

.mainimg picture img {
    object-fit: cover;
    display: block;
}


/* overlay配置 */

.mainimg .text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.hero-info p {
    margin: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: rgba(244, 231, 197, 0.92);
}

.hero-info span {
    display: inline-block;
    min-width: 90px;
    font-family: "Jost", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.72);
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: rgba(244, 231, 197, 0.85);
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 700px) {
    .hero-info {
        align-items: center;
        text-align: center;
    }
    .hero-info p {
        justify-content: center;
        flex-direction: column;
        gap: 0.2rem;
    }
    .hero-info span {
        min-width: 0;
    }
}

.hero-sub {
    display: inline-block;
    font-size: 0.5em;
    letter-spacing: 0.25em;
    font-weight: 300;
    margin-bottom: 0.2em;
    text-transform: uppercase;
}

.mainimg .btn-parts a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.8rem;
    text-decoration: none;
    color: #f4e7c5;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(10, 10, 10, 0.35);
    backdrop-filter: blur(3px);
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}


/* hover */

.mainimg .btn-parts a:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(247, 214, 107, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

@media (max-width: 700px) {
    .mainimg .slide .text .text-bg {
        width: 92vw;
        padding: 2.2rem 1.5rem;
        border-radius: 10px;
    }
    .mainimg .slide .text h2 {
        font-size: clamp(2.2rem, 9vw, 4rem);
        line-height: 1.35;
    }
    .hero-sub {
        font-size: 0.42em;
        letter-spacing: 0.18em;
    }
    .mainimg .slide .text p {
        font-size: 0.9rem;
        line-height: 1.9;
    }
    .mainimg .text,
    .mainimg .slide .text {
        left: 0;
        right: 0;
        margin: 0;
        padding: 0 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .mainimg .slide .text .text-bg {
        margin-left: auto;
        margin-right: auto;
        width: min(92vw, 520px);
    }
}


/* 矢印 */

.mainimg .btn-parts a i {
    font-size: 0.8rem;
    transition: 0.4s ease;
}

.mainimg .btn-parts a:hover i {
    transform: translateX(4px);
}

.mb1rem {
    margin-bottom: 1rem !important;
}


/*テキスト量にあったサイズ用*/

.btn6-parts.fit a {
    display: inline-flex;
}


/*テキスト量にあったサイズ用の左右中央用*/

.btn6-parts.fit.c {
    text-align: center;
}


/*ボタン*/

.list-yoko5-parts .btn-parts a {
    display: inline-block;
    text-decoration: none;
    background: var(--primary-color);
    /*背景色。theme.csのprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);
    /*文字色。theme.csのprimary-inverse-colorを読み込みます。*/
    border: 1px solid var(--primary-color);
    /*枠線の幅、線種、var以降は色の指定で、theme.cssのprimary-colorを読み込みます。*/
    padding: 0.4rem 1.2rem;
    /*上下に0.4文字分、左右に1.2文字分の余白*/
    border-radius: 3px;
    /*角を少しだけ丸く*/
    font-weight: 500;
    /*文字の太さ*/
}


/*矢印アイコン*/

.list-yoko5-parts .btn-parts a i {
    margin-left: 0.5em;
    /*テキストとの間に空けるスペース。0.5文字分*/
    transition: 0.3s;
}

.list-yoko5-parts .btn-parts a:hover i {
    transform: translateX(3px);
    /*マウスオン時に、アイコンを少しだけ右に移動する。*/
}

.novelty-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    margin-top: 3rem;
}

.novelty-card {
    background: rgba(20, 15, 10, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    padding: 1.2rem;
}

.novelty-card figure {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
}

.novelty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.novelty-text {
    padding: 1.4rem 0.3rem 0.3rem;
}

.novelty-label {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 0.4rem;
}

.novelty-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.novelty-text p {
    font-size: 0.9rem;
    line-height: 1.9;
}

@media (max-width: 700px) {
    .novelty-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.novelty-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(20, 15, 10, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.novelty-image {
    width: 180px;
    flex-shrink: 0;
}

.novelty-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.novelty-info {
    max-width: 520px;
}

.novelty-label {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 0.5rem;
}

.novelty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4e7c5;
}

.novelty-info p {
    line-height: 2;
    font-size: 0.95rem;
}

@media (max-width:700px) {
    .novelty-single {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.2rem;
    }
    .novelty-image {
        width: 140px;
    }
}
