/* HTMLマニュアル 全体スタイルファイル */

/* CSS変数 */
:root {
    --honda-red-color: #CC0000;
}

/*============================
全体
============================*/
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", MS-PGothic, sans-serif;
    font-size: 100%;
    line-height: 150%;
}

.main {
    display: flex;
    height: calc(100vh - 90px);
    max-width: 1010px;
    margin: 0 auto;
    padding-top: 30px;
}

.content {
    background-color: white;
    overflow-y: auto;
    flex: 1;
    padding-left: 30px;
    padding-right: 5px;
    padding-bottom: 30px;
}

/*============================
ヘッダー、フッター
============================*/
/* ヘッダー */
header {
    height: 50px;
    padding-left: 15px;
    padding-right: 8px;
    background-color: #cc0000;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
    display: flex !important;
    align-items: center;
}

/* ハンバーガーアイコン（メニュー表示非表示切替） */
#nav-toggle {
    height: 40px;
    width: 40px;
    border-right: 1px solid #aa0000;
    position: relative;
    cursor: pointer;
}

#nav-toggle span {
    background: #fff;
    display: block;
    height: 3px;
    border-radius: 2px;
    width: 60%;
    position: absolute;
}

#nav-toggle span:nth-child(1) {
    top: 10px;
}

#nav-toggle span:nth-child(2) {
    top: 18px;
}

#nav-toggle span:nth-child(3) {
    top: 26px;
}

/* ヘッダーのタイトル */
header .header-title {
    margin-left: 1rem;
    flex: 1 1 auto;
}

header .header-title a {
    font-size: 110%;
    font-weight: bold;
    color: white;
    vertical-align: middle;
}

/* ヘッダーの検索フォーム */
header .header-search {
    flex: 0 0 auto;
}

header .header-search .btn-search-show {
    display: none;
}

header .header-search .search-keyword {
    background-color: #ECECEC;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
}

header .header-search .search-keyword > input[type="text"] {
    background-color: transparent;
    border: none;
}

header .header-search .search-keyword > input[type="text"]:focus::placeholder {
	color: transparent; /* フォーカスしたときプレースホルダーを透明にして見えなくする */
}

header .header-search .btn-search-show,
header .header-search .search-keyword > button {
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 0;
    overflow: hidden;
    margin-right: 0px;
}

/* ヘッダーの検索フォームのルーペアイコン */
.search-on {
    padding-top: 1px;
}

#btn-search-show .search-on {
    left: 5px;
}

.search-on .fa-circle {
    color: darkgray;
}

.search-on .fa-search {
    color: whitesmoke;
}

.search-on .fas.fa-search {
    padding-left: 10px;
}

/* フッター */
footer {
    height: 40px;
    color: #000;
    background: #efefef;
    border-top: 1px solid #aaa;
    background: #efefef url(./image//bg_footer_border.png) repeat-x;
}

footer .footer-inner {
    display: flex;
}

footer .footer-inner div {
    border-left: 1px solid #ccc;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-inner div a {
    font-size: 12px;
    color: #333;
}

footer img.hondaLogo {
    height: 30px;
    padding-top: 6px;
    vertical-align: baseline; /* bootstrapによるスタイル崩れの防止 */
}

/*============================
パンくず
============================*/
.breadcrumb {
    display: none;
}

/*============================
「前へ」「次へ」（コンテンツ最下部）
#2621
============================*/
.page-jump {
    display: none;
}

/*============================
「^」アイコン（コンテンツ最下部）
============================*/
.page-top {
    position: fixed;
    bottom: 45px;
    right: 20px;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    z-index: 9000;
}

.page-top a {
    background-color: rgba(255,255,255,0.2);
    border: 1px solid #cc0000;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    width: 50px;
    height: 50px;
    position: relative;
}

.page-top a:after {
    border-color: #cc0000;
    border-style: solid;
    border-width: 3px 0 0 3px;
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: calc(50% - 7.5px + 2px);
    left: calc(50% - 7.5px);
    transform: rotate(45deg);
}

/*============================
言語による表示切替
============================*/
.ja:lang(en) {
    display: none;
}

.en:lang(ja) {
    display: none;
}

/*============================
印刷時のスタイル
============================*/
@media print {
    .menu-nav {
        display: none !important;
    }

    .content {
        height: 100% !important;
    }

    #searchPopup {
        display: none !important;
    }

    .page-top {
        display: none !important;
    }
}
