@charset "utf-8";

/* ==============================================
▼共通
=============================================== */
/* 共通設定
----------------------------------------------- */

/* 小見出し */
.heading,
.content h3,
.content h4 {
    border-left: .5em solid #007ec4;
    margin-top: 2em;
    padding: .125em 0 .25em .25em;
    position: relative;
}
.heading:before,
.content h3:before,
.content h4:before {
    content: "";
    border-bottom: 3px double #ccc;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* PDFリンク */
.pdf,
.content a[href$=".pdf"] {
    /*display: block;*/
    position: relative;
    padding-left: 2.5em;
}
.pdf:before,
.content a[href$=".pdf"]:before {
    content: "PDF";
    color: #fff;
    background-color: #007ec4;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-right: .5em;
    position: absolute;
    top: .25em;
    left: 0;
}

/* フォーム電話番号・郵便番号ハイフン */
.form_hyphen {
    position: relative;
}

.form_hyphen::after {
    position: absolute;
    content: "-";
    position: absolute;
    top: calc((1.5em + 0.75rem + 2px) / 2);
    right: 0px;
    transform: translate(-50%, -50%);
}

/*商品規制*/
.kisei_two_column {
  display: flex;
  flex-wrap: wrap; 
}

.kisei_two_column .kisei01 {
  width: 50%; 
  font-weight: normal;
}
.kisei_two_column .kisei02 {
  width: 50%; 
  font-weight: normal;
}

