/*======================================
    共通
======================================*/
/* ボックスサイズ計算方法 */
*, ::after, ::before {
    box-sizing: initial;
}

.row,.row * {
    box-sizing: border-box;
}

/* 基本フォント */
body {
    font-family: "Noto Sans JP", san-serif;
    background-color: transparent;
    background-image: none;
    color: #000;
    padding-top: 52px;
}

@media (min-width: 960px) {
    body {
        padding-top:120px;
    }
}

/* フォーカス */
:focus {
    outline: none;
}

/*======================================
    コンポーネント
======================================*/
/* 埋め込みコンテンツ */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*======================================
    ヘッダー
======================================*/
header h1 a {
    text-decoration: none;
    color: #fff;
    display: block;
    position: absolute;
    top: 8px;
    left: 10px;
    height: 40px;
    font-size: 22px;
}

header h1 a:hover {
    color: #fff;
}

header {
    background-color: #424242;
    top: 0;
}

header .h_tel a {
    font-family: inherit;
    padding-top: 0;
    display: flex;
    align-items: center;
    height: 30px;
}

header .h_btn a {
    background-color: #e27262;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    line-height: 1;
}

.h_lang {
    display: none;
    transition: 0.2s linear;
}

@media (min-width: 640px) {
    header .h_btn a {
        border-color: #424242;
    }

    header .h_btn a:hover {
        background-color: #fff;
        border-color: #424242;
        color: #000;
    }
}

@media (min-width: 960px) {
    header h1 a {
        font-size: 32px;
        top: 10px;
        left: 10px;
    }

    header.fixed h1 a {
        height: 40px;
        top: 5px;
    }

    header .h_btn a {
        right: 85px;
    }

    header .h_tel a {
        right: 265px;
        top: 12px;
    }

    header.fixed .h_tel a {
        top: 10px;
    }

    .h_lang {
        position: absolute;
        top: 15px;
        right: 10px;
        width: 60px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    header.fixed .h_lang {
        top: 12px;
    }
}

@media screen and (min-width: 1200px) {
    header h1 a {
        left: 50%;
        margin-left: -600px;
    }

    header .h_btn a {
        right: 50%;
        margin-right: -520px;
    }

    header .h_tel a {
        right: 50%;
        margin-right: -320px;
    }

    .h_lang {
        right: 50%;
        margin-right: -600px;
    }
}

/* SNSアイコン */

header .sns_area{
    font-family: inherit;
    text-align: center;
    align-items: center;
    padding: 0 0 0;
    margin-top: 12px;
    height: 30px;
    position: absolute;
}

header .sns_area ul{
    width: 184px;
  	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    margin: 0 auto;
}

header .sns_area li{
	width: 45px;
    margin-bottom: 0;
}

header .sns_area li:nth-child(3){
	width: 40px;
}

header .sns_area li:nth-child(4){
	width: 40px;
}

header .sns_area li img{
    width: 30px;
    height: auto;
}

header .sns_area li a:hover img{
    opacity: 1!important;
    filter: alpha(opacity=100)!important;
}

@media screen and (max-width: 960px){
    header .sns_area{
        right: 340px;
        top: -2px;
    }

}

@media (max-width: 695px) {/* 上2段へ変更　*/

    body{
        padding-top: 95px;
    }

    header {
        height: 95px;
    }

    header .sns_area{
        top: 40px;
        right: 285px;
    }

    header .h_tel a {
        top: 52px;
        right: 145px;
    }

    header .h_btn a {
        top: 45px;
        right: 6px;
    }

}

@media (max-width: 640px) {

    header .h_tel a {
        right: 50px;
        top: 50px;
    }

    header .h_btn a {
        top: 50px;
        right: 10px;
    }

    header .sns_area{
        top: 38px;
        right: 105px;
    }


}

@media (min-width: 960px) {

    header .sns_area{
        right: 490px;

    }
}

@media screen and (min-width: 1200px) {

    header .sns_area {
        right: 50%;
        margin-right: -90px;
    }

}

/*======================================
    フッター
======================================*/
footer {
    background-color: #424242;
    background-image: none;
    padding-bottom: 0;
}

address {
    background-color: inherit;
}

.to_top a {
    background-color: #424242;
}

/*======================================
    グローバルナビ
======================================*/
#g_navi {
    background-color: #424242;
    background-image: none;
}

@media (min-width: 960px) {
    #g_navi ul.navi_base {
        display: flex;
        justify-content: space-between;
    }

    #g_navi ul li {
        flex: 1 0 auto;
    }

    #g_navi li a {
        width: 100%;
    }

    #g_navi li a::before {
        display: none;
    }

    #g_navi li a:hover {
        background-color: rgba(0,0,0,0.1);
    }

    #g_navi .lang {
        display: none;
    }
}

/*======================================
    フォーム
======================================*/
/* ラベル */
form#mail_form dl dt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

form#mail_form dl dt span.required, form#mail_form dl dt span.optional {
    border-radius: 0;
    font-weight: normal;
}

form#mail_form dl dt span:not([class]) {
    width: 100%;
    margin-top: 3px;
}

/* 入力項目 */
input, textarea {
    max-width: 100% !important;
    box-sizing: border-box;
}

form#mail_form .form-control:focus {
    box-shadow: none;
    border: 1px solid #ccc;
}

form#mail_form .form-control {
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    padding: 0.5em 0.5em;
    font-family: inherit;
    min-height: 3em;
}

form#mail_form input#name_1, form#mail_form input#name_2 {
    width: 100%;
}

form#mail_form input#mail_address {
    width: 100%;
}

form#mail_form input#postal {
    margin-bottom: 10px;
}

form#mail_form input#address_1 {
    width: 100%;
}

/* ボタン */
form#mail_form input#mail_submit_button {
    background-color: #e27262;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

form#mail_form input#mail_submit_button:hover {
    background-color: #c54634;
}

@media (min-width: 640px) {
    form#mail_form dl dt {
        display: block;
    }
}

/*======================================
    見出し（汎用）
======================================*/
.content h2 {
    font-family: inherit;
    font-weight: 500;
}

.content h3 {
    font-family: inherit;
    background-color: #424242;
    background-image: none;
}

.content h3::after {
    background-color: #ccc;
}

/*======================================
    お問い合わせ
======================================*/
.box_contact {
    background-color: #d1d1d1;
    padding-top: 70px;
}

.box_contact h3 {
    color: inherit;
}

.box_contact .tel a {
    color: inherit;
}

.box_contact .tel a:focus {
    outline: none;
}

.box_contact .btn a {
    background-color: #e27262;
    border-color: #e27262;
    border-radius: 0;
}

.box_contact .btn a:hover {
    color: #e27262;
    border-color: #e27262;
}

@media (min-width: 960px) {
    .box_contact .btn a {
        font-size: 30px;
        line-height: 40px;
    }

    .box_contact .tel a {
        font-size: 36px;
    }

    .box_contact p {
        font-size: 16px;
    }
}

/*======================================
    会社概要
======================================*/
/* テーブル */
.content table.table_01 th {
    font-family: inherit;
}

/*======================================
    取引先
======================================*/
/* リスト */
.partner__list {
    line-height: 1.8;
    padding: 10px 15px;
}

.partner__list li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px dotted #987;
}

.partner__list i {
    margin-right: 0.5em;
    color: #ccc;
}

@media (min-width: 640px) {
    .partner__list {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .partner__list li {
        flex: 1 0 50%;
    }
}

/*======================================
    トップページ
======================================*/
/* スライド */
#top_slide {
    padding-top: 0;
    background-color: transparent;
    background-image: none;
}

#top_slide img {
    width: 100%!important;
    margin: 0 !important;
}

#top_slide .sp-grab {
    cursor: initial;
}

.sp-button {
    border-color: #424242;
}

.sp-selected-button {
    background-color: #000;
}

.sp-previous-arrow:before, .sp-previous-arrow:after, .sp-next-arrow:before, .sp-next-arrow:after {
    background-color: #424242;
}

/* 取扱商品 */
.pickup {
    padding-top: 45px;
    background-color: #f7f7f7;
    position: relative;
}

.pickup .link-target {
    position: absolute;
    top: -50px;
}

.pickup__heading {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
}

.pickup__heading::before,.pickup__heading::after {
    content: '';
    height: 2px;
    width: 1em;
    display: block;
    background-color: #000;
    margin: 0 0.5em;
}

.pickup__list {
    padding-left: 15px;
    padding-right: 15px;
}

.pickup__item {
    margin-bottom: 30px !important;
}

.pickup__item a:hover {
    background-color: transparent !important;
}

.pickup__item img {
    margin-bottom: 10px;
    filter: none !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
}

.pickup__item img:hover {
    filter: none !important;
}

.pickup__item figcaption {
    text-align: center;
    color: #424242;
    font-weight: bold;
}

@media screen and (min-width: 640px) {
    .pickup__item {
        width: calc((100% - 20px) / 2) !important;
    }
}

@media screen and (min-width: 960px) {
    .pickup .link-target {
        top: -100px;
    }

    .pickup__list {
        padding-left: 0;
        padding-right: 0;
    }

    .pickup__heading {
        font-size: 30px;
    }

    .pickup__item {
        width: calc((100% - 50px) / 3) !important;
        margin-bottom: 60px !important;
    }

    .pickup__item figcaption {
        font-size: 18px;
    }
}

/* 当社について */
.aboutus {
    padding-top: 45px;
    padding-bottom: 45px;
    position: relative;
}

.aboutus .link-target {
    position: absolute;
    top: -50px;
}

.aboutus .cont_wrap {
    max-width: 1280px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

.content .aboutus__heading {
    border-bottom: none;
    padding-top: 0;
    margin-bottom: 10px;
}

.aboutus__body {
    margin-bottom: 30px;
}

.aboutus__body p {
    padding: 0;
    margin: 0 0 1em;
}

.aboutus__img {
    width: 100%;
    box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.5);
}

@media screen and (min-width: 640px) {
    .aboutus__body p {
        font-size:18px;
    }
}

@media screen and (min-width: 960px) {
    .aboutus {
        padding-top: 70px;
    }

    .aboutus .link-target {
        top: -100px;
    }
}

/* NEWS */
.news {
    background-color: #f7f7f7;
    padding-top: 35px;
    padding-bottom: 45px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.content .news__heading {
    padding-top: 0;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

.content .ul_news li {
    border-bottom-style: solid;
}

.news_date {
    color: inherit !important;
}

@media screen and (min-width: 640px) {
    .news {
        padding-bottom: 60px;
    }
}

@media screen and (min-width: 960px) {
    .news {
        padding-bottom: 120px;
    }

    .content .news__heading {
    }
}

/*======================================
    LP
======================================*/
.lp {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.lp__box {
    margin: 0 auto 15px;
}

.lp__box img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lp__box .embed-responsive {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

