/* 全頁共通CSS */

*{
    margin: 0;
    padding: 0;
}
*,
*::before, *::after{
    box-sizing: inherit;
}
body{
    box-sizing: border-box;
    color: #231815;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden!important;
    -webkit-text-size-adjust: 100%;
}
body.active{
    width: 100%;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden!important;
    overscroll-behavior: none;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    cursor: pointer;
    word-wrap:break-word;
}
*:focus {
    outline: none;
}

/*--------------------------------------------------------
    ヘッダー
--------------------------------------------------------*/
/* 固定 */
.ly_header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 900;
}
@media (min-width:1200px){
    .ly_header{
        height: 60px;
    }
}

/*===== ロゴ =====*/
.el_headerLogo{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 150px;
    z-index: 900;
}
.el_headerLogo a{
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}
.el_headerLogo a:hover{
    opacity: 0.5;
}
.el_headerLogo img{
    margin: 0;
    width: 100%;
}
@media (min-width:1200px){
    .el_headerLogo{
        max-width: 160px;
        left: 30px;
    }
}

/*===== スマホメニュー 開閉ボタン =====*/
.el_headerBtn{
	cursor: pointer;
	position: absolute;
	top: 50%;
    right: 15px;
    transform: translateY(-50%);
	margin: 0;
    width: 40px;
    height: 35px;
    z-index: 999;
}
.el_headerBtn span{
	position: absolute;
	left: 0;
    width: 100%;
	height: 3px;
    background-color: #fff;
	border-radius: 5px;
}
.el_headerBtn.active span,
.ly_header.bk .el_headerBtn span{
    background-color: #000;
}
.el_headerBtn,
.el_headerBtn span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
.el_headerBtn span:nth-of-type(1){
	top: 0;
}
.el_headerBtn span:nth-of-type(2){
	top: 50%;
    transform: translateY(-50%);
}
.el_headerBtn span:nth-of-type(3){
	bottom: 0;
}
/* メニュー開いたとき */
.el_headerBtn.active span:nth-of-type(1){
	-webkit-transform: translateY(15.5px) rotate(-45deg);
	transform: translateY(15.5px) rotate(-45deg);
}
.el_headerBtn.active span:nth-of-type(2){
	opacity: 0;
}
.el_headerBtn.active span:nth-of-type(3){
	-webkit-transform: translateY(-15.5px) rotate(45deg);
	transform: translateY(-15.5px) rotate(45deg);
}
@media (min-width:1200px){
	.el_headerBtn{
		display: none;
	}
}

/*===== メニューコンテンツ =====*/
.bl_headerMenuCont{
    background-color: #fff;
    transition: 0.5s;
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    z-index: 900;
}
.bl_headerMenuCont.active{
    right: 0;
}
@media (min-width:768px){
    .bl_headerMenuCont{
        max-width: 400px;
    }
}
@media (min-width:1200px){
    .bl_headerMenuCont{
        background-color: transparent;
        display: block;
        overflow: hidden;
        right: 0;
        width: 82%;
        height: 60px;
        padding: 0;
        max-width: none;
    }
}
@media (min-width:1400px){
    .bl_headerMenuCont{
        width: 84%;
    }
}
@media (min-width:1900px){
    .bl_headerMenuCont{
        width: 86%;
    }
}

/* メニューインナー */
.bl_headerMenuInner{
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
}
@media (min-width:1200px){
    .bl_headerMenuInner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: static;
        width: 100%;
    }
}

/* グローバルメニュー */
.bl_globalMenu{
    list-style: none;
    width: 100%;
}
.bl_globalMenu li{
    padding: 15px;
}
.bl_globalMenu li+li{
    border-top: 1px solid #231815;
}
.bl_globalMenu li.pc{
    display: none;
}
.bl_globalMenu li a{
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: relative;
}
.bl_globalMenu li a::after{
    background-image: url("/product/stainless/nssc/campaigns/colxam/assets/img/icon_menu-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.bl_globalMenu li a:hover{
    opacity: 0.5;
}
.bl_globalMenu li.el_contact,
.bl_globalMenu li.el_catalog{
    border: none;
    padding: 0;
}
.bl_globalMenu li.el_contact a,
.bl_globalMenu li.el_catalog a{
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 15px 0;
}
.bl_globalMenu li.el_contact a{
    background-color: #0F6497;
}
.bl_globalMenu li.el_catalog a{
    background-color: #13315E;
}
.bl_globalMenu li.el_contact a::after,
.bl_globalMenu li.el_catalog a::after{
    display: none;
}
.bl_globalMenu li.el_contact a::before,
.bl_globalMenu li.el_catalog a::before{
    content: '';
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.bl_globalMenu li.el_contact a::before{
    background-image: url("/product/stainless/nssc/campaigns/colxam/assets/img/icon_mail.svg");
}
.bl_globalMenu li.el_catalog a::before{
    background-image: url("/product/stainless/nssc/campaigns/colxam/assets/img/icon_catalog.svg");
}
@media (min-width:1200px){
    .bl_globalMenu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: static;
        max-width: 600px;
        height: 100%;
    }
    .bl_globalMenu li{
        height: 100%;
        padding: 0;
        position: relative;
    }
    .bl_globalMenu li+li{
        border-top: none;
        margin-top: 0;
    }
    .bl_globalMenu li.sp{
        display: none;
    }
    .bl_globalMenu li.pc{
        display: block;
    }
    .bl_globalMenu li a{
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        text-align: center;
        height: 100%;
        padding: 0;
    }
    .ly_header.bk .bl_globalMenu li a{
        color: #000;
    }
    .bl_globalMenu li a::after{
        display: none;
    }
    .bl_globalMenu:last-of-type{
        justify-content: flex-end;
        max-width: none;
    }
    .bl_globalMenu li.el_contact{
        width: 180px;
    }
    .bl_globalMenu li.el_catalog{
        width: 220px;
    }
    .bl_globalMenu li.el_catalog{
        margin: 0;
    }
    .ly_header.bk .bl_globalMenu li.el_contact a,
    .ly_header.bk .bl_globalMenu li.el_catalog a{
        color: #fff;
    }
}
@media (min-width:1400px){
    .bl_globalMenu{
        max-width: 650px;
    }
    .bl_globalMenu li.el_contact,
    .bl_globalMenu li.el_catalog{
        width: 250px;
    }
    .ly_header .bl_globalMenu li a{
        font-size: 16px;
    }
}

/*--------------------------------------------------------
    コンテンツ
--------------------------------------------------------*/
.bl_cont{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}
.bl_cont p+p{
    margin-top: 20px;
}
.bl_cont a{
    color: #000;
    text-decoration: none;
}
@media (min-width:768px){
    .bl_cont{
        padding: 0 30px;
    }
}
@media (min-width:1550px){
    .bl_cont{
        padding: 0;
    }
}

/*--------------------------------------------------------
    ボタン
--------------------------------------------------------*/
.bl_cont .el_btn{
    background-color: #E30033;
    border-radius: 60px;
    color: #fff!important;
    display: block;
    font-size: 18px!important;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 0;
}
.bl_cont *+.el_btn{
    margin-top: 40px;
}
.bl_cont .el_btn:hover{
    background-color: #000;
    color: #fff!important;
    opacity: 1!important;
}
.bl_cont .el_btn.black{
    background-color: #000;
    border: 1px solid #000;
}
.bl_cont .el_btn.black:hover{
    background-color: #fff;
    color: #000!important;
}

/*--------------------------------------------------------
    ページトップボタン
--------------------------------------------------------*/
.el_pageTop{
    margin: auto;
    text-align: center;
    text-decoration: none;
    width: 80px;
    height: 80px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 850;
}
.el_pageTop a{
    background-color: #13315E;
    border-radius: 50%;
    color: #fff;
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 95px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}
.el_pageTop a::before{
    background-image: url("/product/stainless/nssc/campaigns/colxam/assets/img/icon_pagetop.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    display: block;
    margin: auto;
    text-align: center;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 10px;
    right: 0;
    left: 0;
}
.el_pageTop a:hover{
    opacity: 0.5;
}

/*--------------------------------------------------------
    フッター
--------------------------------------------------------*/
.ly_footer{
  background-color: #1B305B;
    position: relative;
    z-index: 30;
    padding: 12px 8px;
}
.bl_footer a{
    transition: 0.3s;
}
.bl_footer a:hover{
    opacity: 0.5;
}

.ly_footer p {
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-align: center;
  @media (min-width:768px){
    font-size: 18px;
}
}

.ly_footer small {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-align: center;
  @media (min-width:768px){
    font-size: 14px;
}
}

/* コピーライト */
.bl_footer .el_copyright{
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
}
@media (min-width:768px){
    .bl_footer .el_copyright{
        text-align: right;
    }
}



/*--------------------------------------------------------
    ヘルパー
--------------------------------------------------------*/
/* clear fix  */
.clear::before, .clear::after,
.hp_clearFix::before,
.hp_clearFix::after{
    content: "";
    display: table;
    table-layout: fixed;
}
.clear::after,
.hp_clearFix::after{
    clear: both;
}

/* フォントサイズ */
.hp_fzXS{
    font-size: 12px!important;
}
.hp_fzSm{
    font-size: 14px!important;
}
.hp_fzMd{
    font-size: 18px!important;
}
.hp_fzLg{
    font-size: 24px!important;
}
.hp_fzXL{
    font-size: 32px!important;
}
.hp_fzXXL{
    font-size: 40px!important;
}
.hp_fzXXXL{
    font-size: 50px!important;
}
.hp_fz20{
    font-size: 20px!important;
}

/* フォントファミリー */
.hp_ffSerif{
    font-family: 'Noto Serif JP', serif!important;
}
.hp_ffSans{
    font-family: 'Noto Sans JP', sans-serif;
}

/* フォントウェイト */
.hp_fwBold{
    font-weight: bold!important;
}

/* フォントカラー */
.hp_fcWhite{
    color: #fff!important;
    font-weight: bold;
}
.hp_fcRed{
    color: #E30033!important;
    font-weight: bold;
}
.hp_fcYellow{
    color: #ffa500!important;
    font-weight: bold;
}
.hp_fcBlue{
    color: #0055FF!important;
    font-weight: bold;
}
.hp_fcBlack{
    color: #000!important;
    font-weight: bold;
}
.hp_fcGray{
    color: #8c94a6!important;
    font-weight: bold;
}

/* 上マージン */
.hp_mt1rem{
    margin-top: 1rem !important;
}
.hp_mt2rem{
    margin-top: 2rem !important;
}
.hp_mt3rem{
    margin-top: 3rem !important;
}
.hp_mt4rem{
    margin-top: 4rem !important;
}
.hp_mt5rem{
    margin-top: 5rem !important;
}
.hp_mt6rem{
    margin-top: 6rem !important;
}
.hp_mt7rem{
    margin-top: 7rem !important;
}
.hp_mt8rem{
    margin-top: 8rem !important;
}
.hp_mt9rem{
    margin-top: 9rem !important;
}
.hp_mt10rem{
    margin-top: 10rem !important;
}
.hp_mt0{
    margin-top: 0!important;
}

/* 下マージン*/
.hp_mb1rem{
    margin-bottom: 1rem !important;
}
.hp_mb2rem{
    margin-bottom: 2rem !important;
}
.hp_mb3rem{
    margin-bottom: 3rem !important;
}
.hp_mb4rem{
    margin-bottom: 4rem !important;
}
.hp_mb5rem{
    margin-bottom: 5rem !important;
}
.hp_mb6rem{
    margin-bottom: 6rem !important;
}
.hp_mb7rem{
    margin-bottom: 7rem !important;
}
.hp_mb8rem{
    margin-bottom: 8rem !important;
}
.hp_mb9rem{
    margin-bottom: 9rem !important;
}
.hp_mb10rem{
    margin-bottom: 10rem !important;
}
.hp_mb0{
    margin-bottom: 0 !important;
}

/* マージンなし */
.hp_mNone{
    margin: 0!important;
}

/* スペーサー */
.bl_spacer{
    margin: 120px auto;
    width: 100%;
}

/* 文章の揃え */
.hp_txtCenter{
    text-align: center !important;
}
.hp_txtLeft{
    text-align: left !important;
}
.hp_txtRight{
    text-align: right !important;
}

/* 表示 */
.hp_pcOnly{
    display: none;
}
@media (min-width:768px){
    .hp_spOnly{
        display: none;
    }
    .hp_pcOnly{
        display: block;
    }
}
@media (min-width:1024px){
    .hp_none{
        display: none;
    }
}
