@charset "utf-8";
/* CSS Document */
/*全てのページで使用
全てのリンク<a>タグに「no-scroll」をクラスに加えないとアンカー＃に影響
-----------------------------------------*/
/*スマホホバー用にontouchstart属性設定するため必要*/
html {
    height: 100%;
}
body {
    height: 100%;
}
/*MAINコンテンツだけにオーバーフロー設定ヘッダーとフッターは不要*/
.overflow_main_area {
    overflow: hidden
}
/*BTS用コンテナにも入れておくスマホの時余白出来る*/
.container {
    overflow: hidden;
}
/*コンテンツ内基本最大幅*/
.max_box {
    max-width: 1350px;
    margin: auto;
    left: 0;
    right: 0;
}
/*リンク無効化したいとき　aタグに class="disabled" tabindex="-1" */
a.disabled {
    pointer-events: none;
    opacity: 0.7;
    color: #999;
}
/*画像リンクのみ半透明化
a:hover+opacityでダブルタッチになるための対策@media使用*/
@media(max-width: 991px) {
    a img {
        transition: 0.7s;
    }
    a:hover img {
        opacity: 0.7;
    }
    a:active img {
        opacity: 0.7;
    }
}
/* a::hoverの流れボーダー テキストにalinkhoverクラス設定*/
.alinkhover {
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.alinkhover:before, .alinkhover:after {
    position: absolute;
    bottom: 0;
    content: "";
    width: 0;
    height: 1px;
    background: #28a745;
    transition: 0.3s;
}
.alinkhover:before {
    left: 50%;
}
.alinkhover:after {
    right: 50%;
}
.alinkhover:hover:before, .alinkhover:hover:after {
    width: 50%;
}
/*リストマーカー消しとオフセット*/
li {
    list-style: none;
    margin-left: 0;
}
ul {
    list-style: none;
    padding-left: 0;
}
/*LOADING用CSS-----------------------------------------*/
/* ローダー開始 */
#loading {
    position: absolute;
    top: 30%;
    z-index: 10001;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
#fade {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background: #212529;
    top: 0px;
    left: 0px;
    z-index: 10000;
}
/* ローダー終了 */
/* ----トップページのロゴ設定------- */
.top_logotext {
    font-size: 11px;
    color: #fff;
    font-family: Arial;
    font-weight: lighter;
}
.alumania_txtlogo {
    top: -10px;
}
.alumania_txtlogo img {
    width: 120px;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}
/*スマホではフォントサイズ変更575以下適用*/
@media(max-width: 575px) {
    .top_logotext {
        font-size: 8px;
    }
}
@media(max-width: 370px) {
    .top_logotext {
        display: block;
    }
}
/* ----強制設定------ */
.backgroud_black {
    background-color: #090e09 !important;
}
.backgroud_hdgray {
    background-color: #171717 !important;
}
.backgroud_mdgray {
    background-color: #161d16 !important;
}
/*トグルとbtnに使用背景色設定*/
.toggler_back {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
}
.toggler_in_back {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: right;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.3));
}
@media(max-width: 991px) {
    .toggler_in_back {
        width: 39%;
    }
}
@media(max-width: 575px) {
    .toggler_in_back {
        width: 80%;
    }
}
.toggler_in_back2 {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: right;
}
.toggler_in_text {
    color: #fff;
    text-align: center;
}
/*　---ドロップダウンホバー展開----　*/
.dropdown:hover .dropdown-menu {
    display: block;
}
a.nav-link {
    color: #fff;
    font-size: 1.0rem;
}
a:hover.nav-link {
    color: #28a745;
}
/*　----ページトップスムーズ移動用----　*/
#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 15px;
    bottom: 70px;
    opacity: 0.6;
    background: url("/common/icon/bts_page_top.svg");
    z-index: 100;
}
#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
}
#page_top a::before {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
/*___ちょっとグラデ____*/
#back_grd, .back_grd {
    background: -moz-linear-gradient(top, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#00ffffff', GradientType=0);
}
.back_grd_under {
    background: -moz-linear-gradient(bottom, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(bottom, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to top, rgba(230, 230, 230, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#c9c9c9', endColorstr='#00ffffff', GradientType=0);
}
/*___メニューアイコンボックス___*/
.nav_detail_box {
    display: block;
    border: 1px solid #484848;
}
#cse-search-box {
    padding-top: 0.3rem;
}
.menu_serch_box {
    width: auto;
    font-size: 0.7rem;
    border-radius: 0.2rem 0 0 0.2rem;
    height: 2rem;
    padding-left: 0.5rem;
    background: transparent;
    border-color: #28a745;
    color: #fff;
}
.menu_serch_box::placeholder {
    color: #fff;
}
.menu_serch_box + button {
    height: 2rem;
    border-radius: 0 0.2rem 0.2rem 0;
    border-left: none;
}
/*___タブ内個別商品カードのサイズ___*/
.ctg_card_w {
    max-width: 22rem;
}
.ctg_card_wimg {
    width: 10rem;
}
/*背景画像と透過のセット。アンカーポイント兼ねてクラス指定しない*/
/*ぼかし効果は複雑になるので元画像で処理*/
#bts_menu_area {
    background-image: url(/img_top/topback/sitemenu_1600.jpg);
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: color;
}
#bts_category_area {
    background-image: url(/img_top/topback/category_1600.jpg);
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: color;
}
#bts_newitem_area {
    background-image: url(/img_top/topback/newitem_1600.jpg);
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: color;
}
/* メインサイト達のコンテンツ内上部メニュー用　contactやcompanyで使用*/
.bts_submenu_li li a::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f3be';
    font-weight: 900;
    padding: 0 0 0 0.5rem;
}
/* Q&A　contactで使用*/
.question::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f059';
    font-weight: 900;
    padding: 0 0.5rem 0 0;
    font-size: 2rem;
    color: #003a79;
}
.question {
    border-bottom: 1px solid #007bff;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}
.answer::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f0eb';
    font-weight: 900;
    font-size: 2rem;
    color: #00b9d7;
}
/* h2,h3など見出し汎用アイコン*/
.pen_icon::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f56b';
    font-weight: 900;
    padding: 0 0.5rem 0 0;
    font-size: 2rem;
    color: #003a79;
}
/*product big icon*/
.ctg_big_btn {
    border-radius: 1rem;
    border: 3px solid #ccc;
    background-color: rgba(0, 53, 13, 0.5);
    color: #ccc;
    transition-duration: 1s;
}
.ctg_big_btn:hover {
    opacity: 0.6;
    color: #ccc;
}
/*　メールフォームの入力部分幅調整*/
.mailform_name {
    width: 50%;
}
.mailform_email {
    width: 70%;
}
/* 各種ページのイメージ画像全幅（旧サイト用）
-----------------------------------------*/
.back_black {
    background-color: #000;
}
.top_pic {
    margin: 0px auto;
    position: relative;
}
.top_pic > img {
    width: 100%;
    position: relative;
    opacity: 0.7;
    object-fit: cover;
    height: 200px;
}
.top_pic div, .top_pic h2 {
    width: 85%;
    margin: 0 auto;
    position: relative;
    bottom: 0px;
}
.top_pic div span, .top_pic h2 span {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #FFF;
    font-size: 39px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    opacity: 0.8;
    text-shadow: 3px 3px 5px #000, -3px 3px 5px #000, 3px -3px 5px #000, -3px -3px 5px #000,/* ふち */ 7px 0px 10px #000;/* グラデ */
    letter-spacing: 0.5px;
    line-height: 1;
}
/* アイコン縦動きモーション*/
.move_vertical {
    animation: fluffy1 3s ease infinite;
}
.move_vertical_1 {
    animation: fluffy1 3s ease infinite;
	animation-delay: 0.5s;
}
.move_vertical_2 {
    animation: fluffy1 3s ease infinite;
	animation-delay: 1s;
}
@keyframes fluffy1 {
    0% {
        transform: translateY(0)
    }
    5% {
        transform: translateY(0)
    }
    10% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-5px)
    }
    25% {
        transform: translateY(0)
    }
    30% {
        transform: translateY(-5px)
    }
    50% {
        transform: translateY(0)
    }
    100% {
        transform: translateY(0)
    }
}
/* アイコン横動きモーション（スワイパー用）*/
.move_holizontal {
    animation: fluffy2 5s ease infinite;
}
@keyframes fluffy2 {
    0% {
        transform: translateX(0)
    }
    5% {
        transform: translateX(0)
    }
    10% {
        transform: translateX(0)
    }
    20% {
        transform: translateX(-20px)
    }
    25% {
        transform: translateX(0)
    }
    30% {
        transform: translateX(-20px)
    }
    50% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(0)
    }
}
/*___footer___*/
.footer_sitemap > li {
    padding: 0.3rem;
}
.footer_sitemap > li > ul > li {
	padding: 0.3rem 0 0.3rem 1rem;
}
#footer_prd_li > ul > li {
	padding: 0.2rem 0 0.2rem 1.5rem;
	font-size: 0.85rem;
}
#footer_prd_li ul li a, #footer_prd_li li a{
   color:#D1FFE8;
}
.footer_sitemap > li > ul > li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f35a';
    font-weight: 900;
    padding-right: 0.3rem;
}
#footer_prd_li > ul > li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f35a';
    font-weight: 900;
    padding-right: 0.5rem;
}
#footer_prd_li > li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f107';
    font-weight: 900;
    padding-right: 0.5rem;
}
.footer_sitemap > li:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f0ac';
    font-weight: 900;
    padding-right: 0.5rem;
}