@charset "UTF-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;

}

/* --- 基本設定 (Reset & Base) --- */
:root {
    --primary-color: #0F2C58; /* 信頼のネイビー */
    --primary-light: #1a4b8e;
    --accent-color: #E65C00; /* 装飾用オレンジ */
    
    /* ボタン色を信頼とアクションの緑に変更 */
    --button-color-start: #43A047; /* 明るすぎず暗すぎない信頼の緑 */
    --button-color-end: #2E7D32;   /* 立体感を出す濃い緑 */
    --button-shadow: #1B5E20;      /* クリック感を出す影色 */
    
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F9FAFC;
    --white: #ffffff;
    --gold: #D4AF37;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

li {
    list-style: none;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

/* ユーティリティ */
.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-primary { color: var(--primary-color); }
.font-bold { font-weight: 700; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

select,
button {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    ;
}

/* --- ヘッダー --- */
header {
    background-color: var(--primary-color); /* 紺色に変更 */
    border-bottom: 1px solid var(--primary-light);
    padding: 5px 0; /* 高さを極限まで詰める */
    position: relative;
    z-index: 100;
    color: #fff; /* 文字色を白に変更 */
    height: 60px; /* 高さ固定で計算しやすくする */
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.header-logo {
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    font-family: 'Sawarabi Gothic', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

.logo-main {
    font-size: 1.8rem;
    line-height: 1.1;
}

.header-info {
    font-size: 0.75rem;
    color: #eee;
    text-align: right;
    line-height: 1.4;
}

@media (max-width: 600px) {
    header {
        padding: 5px 0;
        height: auto;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .header-logo {
        margin-bottom: 0;
        line-height: 1.2;
    }
    .logo-sub {
        font-size: 0.65rem;
    }
    .logo-main {
        font-size: 1.5rem;
    }

    .header-info {
        text-align: left;
        font-size: 0.6rem;
        line-height: 1.2;
    }
}

/* --- ファーストビュー (FV) --- */
.fv {
    background-image: url('../images/bg.png');
    background-repeat: repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 10px 0 20px; 
    overflow: hidden;
    border-bottom: none;
}

/* FV幅広対応 */
.fv .container {
    max-width: 1280px; 
}

.fv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

.fv-container-inner {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

/* FVメイン画像エリア */
.fv-image-wrapper {
    width: 100%;
    max-width: 1200px; /* 横幅1200px維持 */
    margin-bottom: 5px; 
    position: relative;
    z-index: 1;
    text-align: center;
}

.fv-image-wrapper img {
    width: 90%; /* 変更: 80% -> 90% */
    height: auto;
    border-radius: 0;
    filter: none;
    max-width: 100%;
    /* max-height制限を削除 */
    object-fit: contain;
}

/* スマホでの画像調整 */
@media (max-width: 600px) {
     .fv-image-wrapper img {
        /* max-height制限を削除 */
        width: 80%; /* スマホは80%維持 */
        object-fit: contain;
    }
}

/* --- CTA フォーム (コンパクト化) --- */
.cta-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fffde7 100%);
    border: 4px solid var(--gold);
    border-radius: 20px;
    /* パディング削除 */
    padding: 5px 30px; 
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.cta-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* PCでの入力フォーム拡大 */
.cta-input {
    width: 100%;
    padding: 20px 25px; /* 高さを出すためにパディング増量 */
    font-size: 1.2rem; /* 文字サイズも少し大きく */
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.cta-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 44, 88, 0.1);
}

.cta-input::placeholder {
    color: #aaa;
}

/* PCでのボタン拡大 */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    background: linear-gradient(180deg, var(--button-color-start) 0%, var(--button-color-end) 100%);
    color: var(--white);
    font-size: 2rem; /* 文字サイズ拡大 */
    font-weight: 900;
    padding: 20px; /* パディング増量でボタンを太く */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 0 var(--button-shadow), 0 15px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.2s;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--button-shadow), 0 5px 10px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: none;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px; 
    width: 100%;
    padding-bottom: 20px;
}

/* --- 悩みの共感 (縦並び) --- */
.pain-section {
    background-color: var(--bg-light);
    background-image: radial-gradient(#dfe4ea 1px, transparent 1px);
    background-size: 30px 30px;
}

.pain-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pain-item {
    background: var(--white);
    width: 100%;
    max-width: 750px;
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 6px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.pain-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pain-title i { color: #ccc; }

.pain-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* --- 解決策強調エリア --- */
.solution-area {
    text-align: center;
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-arrow {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-7px);}
}

.solution-box {
    background: var(--primary-color);
    color: #fff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(15, 44, 88, 0.3);
    position: relative;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    border: 4px solid var(--gold);
}

.solution-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 20px 20px 20px;
    border-style: solid;
    border-color: transparent transparent var(--gold) transparent;
}

.solution-main {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .solution-area { margin-top: 40px; }
    .solution-arrow { font-size: 2.5rem; }
    .solution-box { padding: 25px 15px; width: 95%; }
    .solution-main { font-size: 1.5rem; }
}

/* --- 選ばれる理由 --- */
.reason-section {
    background: var(--white);
}

.reason-section .section-title::after {
    display: none;
}
.reason-section .section-title {
    padding-bottom: 0;
    margin-bottom: 40px;
}

.reason-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reason-box {
        flex-direction: column;
        text-align: center;
    }
}

.reason-img-area {
    width: 250px;
    min-height: 200px;
    background: #F0F4F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
    flex-shrink: 0;
    position: relative;
}

.reason-label {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
    border-bottom-right-radius: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reason-img-area { width: 100%; height: 180px; min-height: auto; }
}

.reason-content {
    flex: 1;
    padding: 30px;
}

.reason-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.reason-content p { font-size: 1rem; margin-bottom: 0; color: #555; }


/* --- お客様の声 --- */
.voice-section {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    background-blend-mode: overlay;
}

.voice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 44, 88, 0.9);
    z-index: 0;
}

.voice-section .container { z-index: 1; }
.voice-section .section-title { color: var(--white); }
.voice-section .section-title::after { background-color: var(--gold); }

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.voice-card {
    background: var(--white);
    color: var(--text-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    height: 100%; 
}

.voice-user {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.voice-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 15px;
}

.voice-meta strong { font-size: 1rem; display: block; }
.voice-meta span { font-size: 0.8rem; color: #888; }
.voice-text { font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* --- FAQ --- */
.faq-section { background: var(--white); }

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    background: #fff;
}

.faq-q {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.4;
}
.faq-q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-weight: 900;
}

.faq-a {
    padding-left: 30px;
    margin-top: 10px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    display: none; 
    display: block; 
}

/* --- フッター --- */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: left;
    padding: 60px 0 30px;
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
    font-family: 'Sawarabi Gothic', sans-serif;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    display: inline-block;
}

.footer-text {
    font-size: 0.75rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.footer-links a:last-child {
    border-right: none;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.75rem;
    color: #aaa;
}

/* スマホ向け調整 (レスポンシブFV最適化) */
@media (max-width: 600px) {
    .section { padding: 30px 0; }
    .section-title { 
        font-size: 1.4rem;
        margin-bottom: 30px; 
        line-height: 1.3;
    }
    
    /* FV調整（ボタンが見えるように徹底的に詰める） */
    .fv { 
        padding-top: 5px; 
        padding-bottom: 10px;
    }
    .fv-image-wrapper { 
        margin-bottom: 0px; 
    }
    
    /* FVコンテナの幅を広げる（左右余白削減） */
    .fv .container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* CTAフォームをコンパクトに */
    .cta-wrapper { 
        padding: 5px 10px; /* パディングをさらに縮小 */
        border-width: 3px; 
        margin-top: 0;
    }
    .cta-form {
        gap: 5px; /* ギャップ最小化 */
    }
    /* スマホ用に上書き */
    .cta-input {
        padding: 8px; /* パディング縮小 */
        font-size: 0.95rem;
    }
    /* スマホ用に上書き */
    .cta-button { 
        font-size: 1.1rem; /* フォント縮小 */
        padding: 10px; 
    }
    .text-center {
        margin-top: 5px;
    }
    
    .badges { 
        flex-wrap: wrap; 
        /* 間隔を狭く調整 */
        margin-top: 10px; 
    }
    .badge-item { width: 48%; margin-bottom: 10px; padding: 10px; }
    .badge-value { font-size: 1.4rem; }
    
    .solution-text { font-size: 1.1rem; padding: 15px 30px; width: 90%; }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-links a { border-right: none; }

    .reason-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}
/* ハイライト・強調用クラス（新規追加） */
.marker-yellow {
    background: linear-gradient(transparent 60%, #fff176 60%);
    font-weight: 700;
    padding: 0 2px;
}

.text-em-red {
    color: #d32f2f;
    font-weight: 700;
}

/* --- 共通クラス --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    /* コンテンツ間の余白を短縮して離脱を防止 */
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    /* タイトル下の余白も調整 */
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    line-height: 1.4;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}
/* 背景画像*/

.toppage {
    background: url(../images/background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* 背景画像*/


/* ナビ */
.top_navi {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
}



/* ナビ */



/* 画像フェードイン */

.fadeup {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    text-align: center;

}

.fadeup img {
    width: 75%;


}




@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーション用クラス */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* 画像フェードイン */

/* メール */

.mail_area {
    background-color: black;
    background-size: cover;
    color: #fff;
    padding: 20px;
}

.mail_form {
    width: 90%;
    margin: 0 auto;
}

.mail_area h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.form_1 {
    display: flex;
    justify-content: center;

}

.submit {
    width: 100%;
    height: 7vh;
    margin-left: 10px;

}

.submit:hover {
    opacity: 0.8;
}

.mail_check {
    text-align: left;
    margin: 0 auto;
    width: 60%;
}

.mail_check p {
    font-size: 0.9em;
}

#check {
    font-size: 1em;
    padding-left: 10px;
}

input[type="checkbox"] {
    transform: scale(1.7);

}

/* メール */


/* 日本株市場で狙うべき銘柄とは */

.top_2 {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}


.top_2 h2 {
    text-align: center;
    padding: 20px;
}

.top2_text1 {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: #f1a501 5px solid;
    width: 50vw;
    margin: 0 auto;
    animation-name: fadeLeftAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.top2_text2 {
    width: 50vw;
    margin: 0 auto;
    font-weight: bold;
    padding-top: 20px;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.top2_graph {
    padding: 30px;
}

.top2_graph1 {
    list-style: none;
    padding-inline-start: 0px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.top2_graph1 li {
    width: 20%;
    padding: 10px;
    text-align: center;
    margin: 0.7rem;
    font-size: 18px;
    font-weight: bold;
}

.top2_graph1 .growth {
    background-color: #84db09;
}

.top2_graph1 .value {
    background-color: #0eacb6;
}

.top2_graph2 {
    list-style: none;
    padding-inline-start: 0px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.top2_graph2 li {
    width: 20%;
    padding: 10px;
    text-align: center;
    margin: 0.7rem;
    font-size: 18px;
    font-weight: bold;
}

.top2_graph2 .bland {
    background-color: #f5960e;
}

.top2_graph2 .defensive {
    background-color: #1896df;
}

/* 下から */

.top2_graph2 {
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top2_graph1 {
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top_2_box {
    width: 50vw;
    margin: 50px auto;
    padding: 30px;

}

.top_2_box h3 {
    text-align: center;
    margin: 0 auto;
    background-color: #000000;
    color: #fff;
    padding: 10px;
}

.top2_textbox {
    background-color: #eeececd5;
    padding: 10px;
}

.top2_box_text1 {
    font-size: 18px;
}

.top2box_text1_1 {
    font-weight: bold;
    font-size: 21px;
}

.top_2_box_text2 {
    font-size: 18px;
    margin-top: 10px;
}

.top2box_text1_2 {
    font-weight: bold;
    font-size: 21px;
}

.top_2_text3 {
    font-size: 18px;
    margin-top: 10px;
}

.top2box_text1_3 {
    color: rgb(231, 3, 3);
    font-weight: bold;
    font-size: 21px;
}


/* 日本株市場で狙うべき銘柄とは */


/* 銘柄一覧 */

.top_3 {
    background-color: #000000cc;
    background-size: cover;
    padding: 10px;
    color: #fff;

}

.top_3 h2 {
    text-align: center;
    padding: 20px;

}

.top3_chartbox {
    display: flex;
    justify-content: center;
    margin: 0 auto;

}

.chartbox {
    padding: 10px;
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}


.chartbox.active {
    opacity: 1;
    transform: translate(0, 0);
}

.chartbox h3 {
    text-align: center;
}



.chartbox h4 {
    margin: 5px auto;
    text-align: left;
}

.chartbox_1_day {
    background-color: #0eacb6;
    background-size: cover;
    font-size: 1.1rem;
    padding-left: 5px;
    height: auto;
    text-align: left;

}

.chartbox_1_textbox {
    border: 1px solid #fff;
    padding: 8px;
    max-width: 100%;
    height: auto;
    text-align: left;
}

.chartbox_1_result {
    font-weight: bold;
    margin: 5px 0;
}

.top3_chartbox2 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}


.chartbox_4 h5 {
    border-bottom: 1px solid #fff;
}

.chartbox_5 h5 {
    border-bottom: 1px solid #fff;
}

.chartbox_6 h5 {
    border-bottom: 1px solid #fff;
}

.chartbox_1_img img {
    max-width: 100%;
    height: auto;
}


/* 銘柄一覧 */


/*　 画像を回す */
.top2_circle {
    text-align: center;
    padding: 20px 0;
}

.top2_circle img {
    animation: 3s linear infinite rotation1;
}

@keyframes rotation1 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* 画像を回す */


/* 上記の銘柄群には～ */

.principal {
    padding: 50px 0;
}

.principal_text {
    text-align: center;
    width: 45%;
    margin: 0 auto;
}

.principal_pickup {
    background-color: #f1e101ef;
    font-size: 2.8rem;
}

.principal_img {
    margin: 20px 0;
    text-align: center;
}

.principal_img img {
    max-width: 70%;
    height: auto;
}

.principal_text2 {
    text-align: center;
    width: 40%;
    margin: 0 auto;
}

.principal_text2_pickup {
    color: #f50e0e;
    font-size: 2.5rem;
}



/* 上記の銘柄群には～ */


/* 時期により変動する～ */

.principal2_1 {
    display: flex;
    justify-content: center;
}


.principal2 {
    width: 90%;
    margin: 30px auto;
}

.principal2 h2 {
    text-align: center;
    margin-bottom: 30px;
}

.principal2_img {
    padding-top: 7%;

}

.principal2_img img {
    max-width: 100%;
}

.principal2_top {
    padding: 0 50px;
    width: 50%;
}

.principal2_top p {
    line-height: 25px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
}


/* 時期により変動する～ */


/* フッター　ナビゲーション */

.navigation {
    background-color: #fff;
    padding: 30px;
}

.navigation ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.navigation ul a {
    text-decoration: none;
}

.navigation ul li:hover {
    color: #df1818;
}

.navigation ul li {
    padding: 10px;
    color: #000;
    font-weight: bold;
}

.copy {
    text-align: center;
    margin-top: 40px;
}


/*  フッター　ナビゲーション  */



/* 個人情報保護方針 */

.personal_top h2 {
    background: url(../images/personal_topimg.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 80px;
}


.personal_box {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
}

.personal_1 {
    margin-bottom: 20px;
}

/* 個人情報保護方針 */

/* 利用規約 */

.rule_top h2 {
    background: url(../images/rule_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 80px;
}

/* 利用規約 */

/* 動作環境 */

.operating_top h2 {
    background: url(../images/operating_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 80px;
}

/* 動作環境 */

/* インストール／アンインストールについて */

.install_top h2 {
    background: url(../images/install_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 80px;
}

/* インストール／アンインストールについて */

/* 製品情報 */

.product {
    margin: 30px 0;
}

.product h2 {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: rgb(223, 38, 38) 2px solid;
    border-bottom: rgb(223, 38, 38) 2px solid;
    width: 20vw;
    color: rgb(223, 38, 38);
}

.product_box_top p {
    background-color: rgb(223, 38, 38);
    color: #fff;
    text-align: center;
    padding: 10px;
}

.product_box {
    padding: 30px 0;
}

.product_textbox {
    padding: 40px;
    width: 80%;
    margin: 0 auto;
}

.product_text {
    margin-bottom: 30px;
}

.product_text h4 {
    margin-bottom: 5px;
    border-left: rgb(223, 38, 38) 4px solid;
    padding-left: 20px;
}



/* 製品情報 */



/* 特定商 */

.spacific_top {
    background: url(../images/spacific_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 80px;
}

.spacific_1 table {
    border-collapse: collapse;
    margin: 30px auto;

}

.spacific_1 table tr {
    border-bottom: 1px solid#cccccc;
    padding-right: 10px;
}

.spacific_1 table tr td {
    padding: 15px;
    font-size: 18px;
}

.spacific_title {
    font-weight: bold;

}

@media screen and (max-width:767px) {
    .spacific_1 table tr td {
        font-size: 14px;
    }
}

/* 特定商 */


/* ログイン */


.login_top h1 {
    background: url(../images/login_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 5%;
}

.login_box {
    margin-top: 50px;
}

.login_box h2 {
    text-align: center;
}

.login_body {
    margin: 10px auto;
}

.form_number {
    text-align: center;
}

.form_number input[type="text"] {
    margin: 10px auto;
    height: 3%;
    padding: 10px;
    font-size: 1.5rem;
}

.form_number input[type="password"] {
    margin: 10px auto;
    height: 3%;
    padding: 10px;
    font-size: 1.5rem;
}

.login_submit {
    text-align: center;

}

.login_submit:hover {
    opacity: 0.7;
}

.loginform_top h4 {
    text-align: center;
    margin-top: 8px;
}

.loginform_top h4 a {
    color: #df1818;
    font-size: 23px;
}

.loginform_top h4 a:hover {
    color: #df18187e;
}

.form2_mail {
    text-align: center;
}

.form2_mail input[type="email"] {
    font-size: 1.5rem;
    margin: 10px auto;
    height: 3%;
    padding: 10px;
}

.login_box2 {
    margin-top: 50px;
}

.login_box2 h2 {
    text-align: center;
}

.login_button {
    text-align: center;
}

.login_button input[type="submit"] {
    background-color: #003f64;
    color: #fff;
    width: 250px;
    height: 3%;
    padding: 10px;
    font-size: 22px;
    margin: 10px auto;
}

.login_button2:hover {
    background-color: #003f6496;
}

.loginbox2_text {
    width: 90%;
    text-align: center;
    display: block;
    margin: 10px auto;
}

.loginbox2_text p {
    text-align: left;
    display: inline-block;
}



/* ログイン */

.space {
    margin: 0 10px;
}


/* タブレット */

@media (min-width:600px) and (max-width:1120px) {
    body {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .navigation {
        padding: 10px;
    }

    .navigation ul li {
        padding: 5px;
    }

    .top_2 h2 {
        width: 100%;
    }

    .top_2_box {
        width: 60vw;
        margin: 0px auto;
    }

    .top2_text1 {
        width: 80vw;
        margin: 0 auto;
    }

    .top2_text2 {
        width: 80vw;
        margin: 0 auto;
    }

    .principal_text {
        width: 80%;
    }

    .principal_text2 {
        width: 80%;
    }

    .mail_check {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .principal2_top {
        padding: 0 20px;
        width: 50%;
    }

    .mail_form {
        width: 100%;
        margin: 0 auto;

    }
   

    .mail_area h1 {
        margin-bottom: 10px;
        font-size: 2.8rem;
    }

    input[type="email"] {
        width: 60vw;
        height: 6.4vh;
        font-size: 2.5rem;
        padding: 0px;
        margin-right: 0px;
    }



}

@media screen and (max-width:800px) {
    .principal2_1 {
        display: block;
    }

    .principal2_img {
        padding-top: 0;
    }

    .principal2_img img {
        display: block;
        margin: 10px auto;
    }

    .principal2_top {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .form_1 {
        display: block;
        text-align: center;

    }

    .form_button {
        margin-top: 10px;
    }

    input[type="email"] {
        width: 90%;
        margin: 0 auto;
        height: 6.4vh;

    }

    .submit {
        width: 50%;
        margin: 0 auto;
        height: 6.4vh;
    }

    #check {
        font-size: 1em;
        padding-left: 5px;
    }

    .mail_check p {
        font-size: 0.8em;
    }

}


/*スマートフォン用*/
@media only screen and (max-width:599px) {
    body {
        font-size: 1.3rem;
        line-height: 1.5;
        margin: 0 auto 0;
    }

    .top_navi {
        padding: 10px;
    }

    .top_navi h3 {
        font-size: 15px;
    }

    .top_logo img {
        width: 150px;
    }

    .form_1 {
        display: block;
        text-align: center;

    }

    .form_button {
        margin-top: 10px;
    }

    .mail_area h1 {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .mail_area {
        padding: 10px;
    }

    .mail_form {
        width: 100%;

    }

    input[type="email"] {
        width: 90%;
        margin: 0 auto;
        height: 2.9vh;
        font-size: 1.6rem;
    }

    .submit {
        width: 70%;
        height: auto;
    }



    .top_2 {
        width: 80%;
        margin: 0 auto;
        padding: 0px;
    }

    .top_2 h2 {
        padding: 10px;
    }

    .top2_text1 {
        width: 100%;
    }

    .top2_text2 {
        width: 100%;

    }

    .top2_graph1 {
        display: block;
    }

    .top2_graph1 li {
        width: 90%;
    }

    .top2_graph2 li {
        width: 90%;
    }

    .top_2_box {
        width: 90%;
        margin: 20px auto;
        padding: 10px;
    }

    .top2_graph {
        padding: 0px;
    }

    .top_3 {
        padding: 10px;
    }

    .top3_chartbox {
        display: block;
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }


    .chartbox h4 {
        text-align: center;
    }

    .chartbox_1_img {
        text-align: center;
    }

    .chartbox_1_textbox {
        margin: 0 auto;
        max-width: 70%;
        font-size: 1rem;
    }

    .chartbox_1_day {
        text-align: center;
        margin: 0 auto;
        width: 60%;

    }

    .top3_chartbox2 {
        display: block;
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }


    .principal_text {
        width: 90%;
    }


    .principal_pickup {
        font-size: 20px;
    }

    .principal_text2 {
        width: 90%;
    }

    .principal2_1 {
        display: block;
    }

    .principal2_img img {
        display: block;
        margin: 10px auto;
    }

    .top_nav ul {
        display: block;
    }

    .top_nav ul li {
        font-size: 18px;
        text-align: center;
        padding: 5px;
    }

    .navigation {
        padding: 10px;
    }

    .navigation ul {
        display: block;
        text-align: center;
    }

    .navigation ul li {
        padding: 5px;
    }

    .product h2 {
        padding: 10px;
        width: 80%;
    }

    .product_textbox {
        padding: 10px 0 0 0;
    }

    .product_box {
        padding: 30px 0 0 0;

    }

    .copy {
        margin-top: 10px;
    }
 .mail_check{
        width: 100%;
    }
}