@charset "utf-8";

/*======================================
商品サンプルページ
======================================*/

/*
0.625rem : 10px
0.687rem : 11px
0.75rem  : 12px
0.875rem : 14px
1rem     : 16px
1.125rem : 18px
1.5rem   : 24px
1.875rem : 30px
*/

/*--------------------------------------
商品名ロゴ
--------------------------------------*/
/* ロゴコンテナの追加 */
.logo-container {
    display: flex;
    align-items: center;
}

/* ヘッダーの商品名ロゴ「登記情報」 */
.product-name {
    position: relative;
    color: #000000;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
}

.product-name::before {
    position: absolute;
    top: -1.3em;
    left: 0;
    transform: none;
    padding: 0 0.4em;
    color: #353535;
    font-size: 13px;
    font-weight: 400;
    content: '配当要求終期の公告';
    letter-spacing: 0.3em;
    width: 100%;
}

@media only screen and (max-width: 768px){
    .product-name {
        font-size: 1.2rem;
        margin-top: 12px;
        margin-left: 10px;
    }

    .product-name::before {
        top: -1.2em;
        font-size: 10px;
    }
}

/* フッターーの商品名ロゴ「登記情報」 */
.product-name-footer {
    position: relative;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
}

.product-name-footer::before {
    position: absolute;
    top: -1.3em;
    left: 0;
    transform: none;
    padding: 0 0.4em;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    content: '配当要求終期の公告';
    letter-spacing: 0.3em;
    width: 150%;
}

@media only screen and (max-width: 768px){
    .product-name-footer {
        font-size: 1.2rem;
        margin-top: 12px;
        margin-left: 0px;
    }

    .product-name-footer::before {
        top: -1.2em;
        font-size: 10px;
    }
}


/*--------------------------------------
商品サンプル一覧
--------------------------------------*/
.sample-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 20px auto;
    align-items: stretch;
}

.sample-item {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.sample-item:hover {
    border-color: #b0b0b0;
}

.sample-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    border-left: 4px solid #333;
    padding: 2px 0 2px 16px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.sample-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    margin-left: 10px;
    border-radius: 2px;
    vertical-align: middle;
}

.sample-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sample-links li {
    position: relative;
    margin-bottom: 8px;
}

.sample-links li a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.2s ease;
}

/* 矢印を右側に配置 */
.sample-links li a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #333;
    border-right: 1.5px solid #333;
    transform: rotate(45deg);
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;

    transition: all 0.2s ease;
    /*margin-left: auto;
    transition: border-color 0.2s;*/
}

.sample-links li a:hover {
    color: #666;
}

.sample-links li a:hover::after {
    border-color: #666;
}

/* オプションセクション */
.sample-link-option {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
}

.option-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.option-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.option-body {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-body a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: underline;
}

.option-body a::after {
    display: none;
}

/* 注釈エリアを常に下部に固定 */
.sample-item-note {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #333;
}

.sample-item-note p {
    margin-bottom: 4px;
    text-indent: -1em;
    padding-left: 1em;
}

.note-alert {
    color: #e60012;
    font-weight: 600;
}

/* --- 2. スマホサイズ --- */
@media screen and (max-width: 768px) {
    .sample-list {
        flex-direction: column;
        gap: 8px;
        margin: 20px 0px;
    }

    .sample-item {
        padding: 25px 20px;
    }

    .sample-name {
        font-size: 0.9rem;
        font-weight: 600;
        border-left: 3px solid #333;
        padding: 0 0.5rem;
        margin-bottom: 0px;
        display: block;
    }

    .sample-tag {
        margin: 0 0 0 8px;
        display: inline-block;
    }

    .sample-links li a {
        padding: 10px;
        margin-top: 5px;
        font-size: 0.75rem;
        border-bottom: 1px solid #f5f5f5;
    }

    .sample-links li a::after {
        margin-left: auto;
        transform: rotate(45deg);
    }

    /* オプションセクション */
    .sample-link-option {
        margin-top: 15px;
        padding: 15px;
    }

    .option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }

    .option-header .sample-tag {
        margin-left: 0;
        margin-right: 5px;
    }

    .option-body a {
        background: #ffffff;
        padding: 12px;
        text-align: center;
        text-decoration: none;
        color: #1a1a1a;
        font-weight: 500;
    }

    .option-name {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .sample-item-note {
        padding-top: 10px;
        font-size: 0.75rem;
    }
}

.h4-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3e3a36;
    padding: 0 0 4px 0;
    margin: 0 0 25px 0;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

/* 下線を二重にする */
.h4-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
}

.h4-title-sub {
    font-size: 0.95rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 12px;
}

/* 推奨利用環境 */
.spec-info {
    margin-top: 40px;
    padding: 0 20px;
}

/* 定義リスト */
.spec-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    margin-bottom: 8px;
}

.spec-list dt, .spec-list dd {
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
}

.spec-list dt {
    width: 25%;
    background: #fff;
    font-weight: 600;
    color: #666;
}

.spec-list dd {
    width: 75%;
    color: #666;
}

/* 注意書き */
.spec-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    /* 推奨利用環境 */
    .spec-info {
        margin-top: 0px;
        padding: 0 0px;
    }

    .h4-title {
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0 0 3px 0;
        margin: 0 0 10px 0;
    }

    .h4-title-sub {
        font-size: 1em;
        margin-bottom: 5px;
    }

    /* 定義リスト */
    .spec-list {
        margin-bottom: 0px;
    }

    .spec-list dt, .spec-list dd {
        padding: 5px 0px;
        font-size: 0.9em;
        line-height: 1.4;
    }

    .spec-list dt {
        width: 100%;
        background: transparent;
        padding-bottom: 0;
        border-bottom: none;
    }

    .spec-list dd {
        width: 100%;
        padding-top: 4px;
    }

    /* 注意書き */
    .spec-note {
        font-size: 0.85em;
        margin-top: 5px;
    }
}


/* 購読料金表 */
.price-links {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

/* PDFリンクの基本スタイル */
.documentlist {
    margin: 15px 0 10px;
    padding-left: 0;
    width: 600px;
}

.documentlist-line {
    height: 20px;
    margin-bottom: 10px;
    width: 600px;
}

.documentlist-link {
    display: inline;
    text-decoration: none;
    color: #000000;
}

.documentlist-link:after {
    content: url(../../assets/img/dl.png);
    display: inline-block;
    margin-left: 4px;
    margin-top: 4px;
    vertical-align: top;
}

@media screen and (max-width: 768px) {
    .documentlist {
        width: auto;
        font-size: 12px;
    }

    .documentlist-line {
        height: auto;
        padding-bottom: 5px;
        width: 100%;
    }
}


/* 注文案内のグループ分け */
.order-group, .contact-guide {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dotted #d1c8bc;
}

.order-label {
    font-weight: bold;
    color: #3e3a36;
    margin-bottom: 8px;
    display: block;
}


.link-button-area {
    margin: 15px 0 10px;
}

.btn-official {
    display: inline-block;
    width: auto;
    min-width: 200px;
    text-align: center;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-official:hover {
    background: #1a1a1a;
    color: #fff;
}

.note {
    font-size: 90%;
}

@media screen and (max-width: 768px) {
    .price-content {
        padding: 0 5px;
    }

    .order-group, .contact-guide {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .price-lead {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .order-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    /* ボタンエリア */
    .link-button-area {
        margin: 0;
    }

    .btn-official {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        max-width: 400px;
        margin: 22px auto 10px;
        padding: 16px 20px;
        background: #1a1a1a;
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 2px;
        transition: background-color 0.3s, opacity 0.2s;
        position: relative;
    }

    /* 矢印アイコン */
    .btn-official::after {
        content: '';
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        position: absolute;
        right: 20px;
    }

    .btn-official:hover {
        opacity: 0.8;
    }

    .btn-official:active {
        opacity: 0.7;
        background-color: #333;
    }

    /* 注釈テキスト */
    .note {
        font-size: 0.75rem;
        color: #777;
        line-height: 1.5;
        margin-top: 0px;
        text-align: center;
    }


}

