@charset "UTF-8";
/* ***************************************
概要：ST-Mailer(type-b)専用スタイルシート
******************************************/

/*WEB ICONS
--------------------------------------------*/

@font-face {
  font-family: 'st-icon';
  src:  url('fonts/st-icon.eot?kvnne6');
  src:  url('fonts/st-icon.eot?kvnne6#iefix') format('embedded-opentype'),
    url('fonts/st-icon.ttf?kvnne6') format('truetype'),
    url('fonts/st-icon.woff?kvnne6') format('woff'),
    url('fonts/st-icon.svg?kvnne6#st-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="st-icon"], [class*=" st-icon"] {
  font-family: 'st-icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* COMMON
--------------------------------------------*/

*, *::before, *::after {
    box-sizing: border-box;
}

@-ms-viewport {
    width: device-width;
}
input:focus,textarea:focus {
  outline: 0;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

label {
    cursor: pointer;
}

:placeholder-shown {
    color: #aaa;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */

::-webkit-input-placeholder {
    color: #aaa;
}

/* Firefox 18- */

:-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

/* Firefox 19+ */

::-moz-placeholder {
    color: #aaa;
    opacity: 1;
}

/* IE 10+ */

:-ms-input-placeholder {
    color: #aaa;
}

/*==================================================
=    FORM BODY                                     =
==================================================*/
/*-- 本体		--*/
.ST-Mailer {
    margin: 0;
    position: relative;
    background: transparent;
}
/*-- 各項目 行	--*/
.ST-Mailer .item_row {	
    -ms-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0;
}

/*-- 1行目		--*/
.ST-Mailer .item_row:nth-of-type(1) {
    border-top: none;
}

/*-- 各ブロック	--*/
.ST-Mailer .item_row div {
    min-height: 10px;
    position: relative;
    float: left;
}
/*-- タイトル列	--*/
.ST-Mailer .item_row .itm_th{
    display: flex;
    align-items: top;
}
/*-- タイトル テキスト	--*/
.ST-Mailer .item_row .itm_th p {
    position:relative;
    width:95%;
    margin:.3em auto;
    font-size: calc(12px + 0.15vw);
}
/*-- タイトル テキスト 必須サイン	--*/
.ST-Mailer .item_row .itm_th p.required:after {
    position: absolute;
    top:0;
    right: 0;
    background: #429955;
    color: #fff;
    content: "必須";
    font-size: .75em;
    margin-left: 10px;
    padding: 2px 7px 1px;
}
.ST-Mailer .item_row div{
    width: 100%;
}
.ST-Mailer .item_row .itm_td.lg{
    width: 100%;
}

/*-- テキストエリア	--*/
.ST-Mailer .query {
    position: relative;
}
/*-- テキストエリア入力カウンター	--*/
.ST-Mailer #txtlgth {
    position: absolute;
    margin-bottom: 0;
    font-size: .9em;
    color: rgba(136, 136, 136, 0.8);
    bottom: -13px;
    right: 5px;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
}
/*-- 入力部品 列	--*/
.ST-Mailer .item_row .itm_td{
}
/*-- 入力部品 	--*/
.ST-Mailer input[ type="text" ],
.ST-Mailer input[ type="password" ],
.ST-Mailer input[ type="email" ],
.ST-Mailer textarea {
    background: #F7F7F7;
    border: solid 1px #ddd;
    color: #444;
    font-size: 14px;
    padding: 1px 8px;
    width: 100%;
    line-height: 2.5;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
//郵便番号
.ST-Mailer input.zip {
    min-width: 80px;
    width: 25%;
}

.ST-Mailer textarea {
    height: 150px;
    line-height: 1.5;
}
.ST-Mailer input[type="checkbox"],
input[type="radio"] {
    margin-right: 5px;
    width: auto;
}

/*--「内容を確認」ボタン 行	--*/
.ST-Mailer .sendbutton_area {
    position: relative;
    text-align:center;
}
.ST-Mailer .sendbutton_area button {
    margin: 0 auto;
}
/*-- 「内容を確認」ボタン 	--*/
.ST-Mailer button#submit {
    margin:0 0 0 auto;
}
/*-- 「内容を確認」ボタン 	--*/
.ST-Mailer button#submit {
    width:100%;
    color: #fff;
    border: none;
    padding: 10px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
/*-- 「内容を確認」ボタン クリック不可時	--*/
.ST-Mailer button#submit.disabled {
    background: #00000057;
    cursor: not-allowed;
    border: none;
    padding: 10px;
}
/*-- 「内容を確認」ボタン クリック可能時	--*/
.ST-Mailer button#submit:not(.disabled) {
    background: #333;
    cursor: pointer;
}
.ST-Mailer button#submit:not(.disabled):hover {
    opacity: .8;
}

/*-- 「ヘルプブロック」	--*/
.ST-Mailer #help_block {
    background: #0d0d0d8a;
    color: #fff;
    display: none;
    left: 0;
    margin: auto;
    max-width: 600px;
    padding: 30px 40px 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.ST-Mailer #help_block h6 {
    border-bottom: 1px #aaa dotted;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 15px;
    text-align: center;
}

.ST-Mailer #help_block h6.error:before {
    color: orange;
    content: "\e902";
    font-family: 'st-icon' !important;
    font-size: 1.1em;
}

.ST-Mailer #help_block button {
    background: #000;
    display: block;
    margin: 0 auto;
    padding: 10px 40px;
}

.ST-Mailer #info_block {
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.ST-Mailer #info_block p {
    border-bottom: 1px #bbb dotted;
    font-size: .9em;
    line-height: 1.5;
    margin: 0 auto 10px;
    max-width: 450px;
    position: relative;
    text-align: center;
    width: 95%;
}

.ST-Mailer #info_block span {
    font-size: 80%;
}

.ST-Mailer #info_block p.error:before {
    color: #ffb300;
    content: "\e901";
    font-family: 'st-icon' !important;
    font-size: 1em;
    left: 0;
    margin-left: 20px;
    position: absolute;
}

/*-- 「送信ステータスの確認画面」モーダルウインドウ	--*/
.ST-Mailer #sbumitmodal {
    position: fixed;
    background: #000000d6;
    bottom: 0;
    color: #fff;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1010;
}
.ST-Mailer #sbumitmodal #info_block {
    background: #fff;
    border: #00000029 solid 1px;
    color: #555;
    display: none;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 150px;
}
.ST-Mailer #sbumitmodal #info_block h6 {
    border-bottom: 1px #aaa dotted;
    font-size: 1em;
    font-weight: 500;
    margin: 30px auto 15px;
    padding-bottom: 9px;
    text-align: center;
    width: 90%;
}
.ST-Mailer #sbumitmodal #info_block h6.success:before {
    color: #429955;
    content: "\e900 ";
    font-family: 'st-icon' !important;
    font-size: 1.1em;
    margin-right: 5px;
    vertical-align: -2px;
}
.ST-Mailer #sbumitmodal #info_block h6.error:before {
    color: orange;
    content: "\e901";
    font-family: 'st-icon' !important;
    font-size: 1.1em;
}
.ST-Mailer #sbumitmodal #info_block p {
    position: relative;
    width: 94%;
    font-size: 0.85em;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    padding: 9px 0;
    border-bottom: 1px #bbb dotted;
    line-height: 2.5;
}
.ST-Mailer #sbumitmodal #info_block button {
    background: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inherit;
    margin: 15px auto;
    padding: 10px 40px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.ST-Mailer #sbumitmodal #info_block button:hover {
    opacity: .8;
}

.ST-Mailer #sbumitmodal table {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #fff;
    color: #333;
    left: 0;
    margin: auto;
    max-width: 650px;
    padding: 15px;
    position: fixed;
    right: 0;
    top: 50px;
    width: 100%;
}

.ST-Mailer .table th, .ST-Mailer .table tr:not(last-child) {
    border-bottom: 1px solid #d6efe0c7;
}

.ST-Mailer .table th, .ST-Mailer .table tr:last-child {
    border: none;
}

.ST-Mailer .table th, .ST-Mailer .table th {
    font-weight: 500;
}

.ST-Mailer .table th, .table td {
    border-bottom: 1px dotted #9e9e9e;
    font-size: 1em;
    padding: 2rem;
    vertical-align: top;
    word-break: break-all;
}

.ST-Mailer .table td:first-child {
    border-right: 1px dotted #9e9e9e;
    text-align: center;
    width: 30%;
}

.ST-Mailer .table td:last-child {
    width: 70%;
}

.ST-Mailer .table tr:last-child td {
    border: none;
}

.ST-Mailer .table button {
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    margin: 0 5px;
    padding: 10px;
}

.ST-Mailer .table td.qertxt {
    display: block;
    min-height: 100px;
    max-height: 250px;
    width: 100%;
    overflow-y: auto;
}

.ST-Mailer .table button:first-child {
    background: #2179a5;
}

.ST-Mailer .table button:last-child {
    background: #7cb522;
}

.ST-Mailer .table tr:last-child button:hover {
    opacity: .8;
}

.ST-Mailer #sbumitmodal #svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 200px;
    width: 50px;
    margin: 0 auto;
}

#sending {
    position: absolute;
    width: 78px;
    top: 250px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-left: 8px;
    -webkit-animation: 0.2s linear 0s alternate none infinite running blink;
    -moz-animation: 0.2s linear 0s alternate none infinite running blink;
    animation: 0.2s linear 0s alternate none infinite running blink;
    color: #60e205ad;
    font-size: .9em;
    font-weight: 600;
    line-height: 40px;
    text-shadow: 2px 2px 3px #00000061;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    19.9% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    19.9% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    19.9% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
/*==================================================
=    MEDIA QUERY FOR ST-MAIL FORM system      =
==================================================*/

@media (max-width:320px) {}

@media (min-width: 321px) and (max-width:375px) {}

@media (max-width:492px) {
    .ST-Mailer #help_block {
        padding: 30px 5px 10px;
        width: 95%;
    }
    .ST-Mailer #help_block h6 {
        font-size: 0.8em;
    }
    .ST-Mailer #info_block p {
        width: 100%;
        font-size: 0.7em;
        padding: 0 9px;
    }
    .ST-Mailer #info_block p.error:before {
        margin-left: 10px;
    }
    .ST-Mailer #info_block span {
        font-size: 0.68em;
    }
    .ST-Mailer #sbumitmodal table {
        padding: 0;
        font-size: .7em;
        width: 95%
    }
    .ST-Mailer .table th, .table td {
        padding: 0.7rem;
    }
    .ST-Mailer .table td:first-child {
        width: 35% !important;
    }
    .ST-Mailer .table td::last-child {
        width: 65%;
    }
    .ST-Mailer #sbumitmodal #info_block {
        top: 50px;
        width: 95%;
    }
    .ST-Mailer #sbumitmodal #info_block h6 {
        font-size: .9em;
    }
    .ST-Mailer #sbumitmodal #info_block p {
        font-size: .8em;
    }
}

@media (min-width: 376px) and (max-width:508px) {}

@media (min-width: 509px) and (max-width: 768px) {}

@media (min-width: 769px) and (max-width: 991px) {}

@media (max-width:769px) {
    /*-- エラーサインの閉じるボタン	--*/
    .ST-Mailer #help_block button {
        display: block;
    }
}

@media (min-width:770px) {
    /*-- エラーサインの閉じるボタン	--*/
    .ST-Mailer #help_block button {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {}

/*-- 「変更不可」	--*/
.ST-Mailer #help_block-false {
    display: none !important;
}
