@charset "utf-8";

.top-title-ex {
    border:1px solid var(--line-color);
    width:var(--width-content);
    height: auto;
    min-height:100px;
    padding:10px 10px 10px 10px;
    margin:0 0 10px 0;
    background:white;
    max-width: 100%;
    box-sizing: border-box;
}

.top-title-in {
    border:1px solid var(--line-color);
    height: auto;
    min-height:78px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
    font-size: 30px;
}

.big-ex {
    font-size:var(--font-size-little-big);
    font-family:Verdana;
}

.red-ex {
    font-size:var(--font-size-normal);
    color:red;
}

/* ################################## */
/* ######## ここからスマホ対応 ######### */
/* ################################## */
@media screen and (max-width: 740px) {
    /* タイトルボックス幅調整(Topページのみ) */
    .top-title-ex, .top-title-in {
        width: 100%;
        height: auto;
        min-height: 60px;
        box-sizing: border-box;
    }
    /* index.htmlのみ */
    .red-ex{
        font-size: 14px !important;
    }
}

