html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #444;
  font-family: sans-serif;
  line-height: 1.0;
}

html,
body {
  flex-direction: column;
  min-height: 100vh;
  background-color: #f4f4f4 !important;
}


br {
  letter-spacing: 0;
}

ul,
li {
  list-style: none;
}

img,
a img {
  border: 0;
  text-decoration: none;
  vertical-align: top;
}

mark {
  background: #ff0;
  color: #000;
}

b,
strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: sans-serif;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

a {
  background-color: transparent;
  outline: 0;
}

a:link {
  color: #3366CC;
  text-decoration: none;
}

a:visited {
  color: #3366CC;
  text-decoration: none;
}

a:hover {
  color: #3366CC;
}

a:active {
  color: #99CCFF;
  text-decoration: none;
}


/* Layout - detail
--------------------------------------------  */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --------------------------header */
header {
  background: #fff;
}

/* --------------------------footer */
footer {
  margin-top: auto;
  background: #fff;
  text-align: center;
}

footer p {
  font-size: 80%;
}


/* --------------------------form_head common */
.form_head p,
.comp_body p {
  line-height: 1.8;
}

.attred {
  color: #d70049;
  font-weight: bold;
}


/* form tag common */
input[type="text"],
input[type="email"],
input[type="password"],
button,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input {
  box-sizing: border-box;
  font-size: 100%;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  box-shadow: 0 0 4px #3498db;
  border: 1px solid #3498db;
}

textarea {
  box-sizing: border-box;
  width: 94%;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

textarea:focus {
  box-shadow: 0 0 4px #3498db;
  border: 1px solid #3498db;
}

select {
  padding: .5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* detail style */
input[type="email"] {
  box-sizing: border-box;
  width: 94%;
}

textarea {
  height: 8em;
  padding: .2em .4em;
  font-size: 100%;
}

input[type="submit"] {
  border-radius: 0;
  background: -moz-linear-gradient(top, #FFF 0%, #EEE);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#EEE));
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #111;
}

input[type="submit"]:hover {
  background: -moz-linear-gradient(top, #EFEFEF 0%, #EEE);
  background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#EEE));
}

/*Radio Check*/
label.radio,
label.radio_t,
label.checkbox,
label.checkbox_t {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
}

label.radio {
  width: 18px;
  height: 18px;
  border: 1px solid #666666;
  border-radius: 100%;
}

label.radio_t {
  min-height: calc(18px + 5px);
  margin-right: calc(18px + 5px);
  padding-left: calc(18px + 5px);
  line-height: calc(18px + 5px);
}

label.checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #B3B3B3;
  background: #fff;
}

label.checkbox_t {
  padding-left: calc(20px + 5px);
  line-height: 20px;
}

/** before after **/
label.radio:before,
label.radio_t:before,
label.checkbox_t:before,
label.checkbox:after,
label.radio_t:after,
label.checkbox_t:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

label.radio:before,
label.radio_t:before {
  border-radius: 100%;
}

label.radio:before,
label.checkbox:after {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}

label.checkbox:after,
label.checkbox_t:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  border-right: 2px solid #0080ff;
  border-bottom: 2px solid #0080ff;
  top: calc(50% - (((15px / 12) * 5) / 2));
  display: block;
  margin-top: calc(((15px / 12) * 5) * -1);
  width: calc(((15px / 12) * 5));
  height: 15px;
  z-index: 1;
}

label.radio_t:before,
label.radio_t:after {
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
}

label.radio:before {
  display: block;
  width: 10px;
  height: 10px;
  z-index: 1;
  background-color: #0080ff;
}

label.radio_t:before {
  width: 18px;
  height: 18px;
  border: 1px solid #666666;
  left: 0px;
  z-index: 3;
}

label.checkbox_t:before {
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0;
  border: 1px solid #B3B3B3;
  z-index: 3;
  box-sizing: border-box;
}

label.radio_t:after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  left: calc(((18px/2) - (10px) / 2));
  background-color: #0080ff;
  z-index: 1;
}

label.checkbox_t:after {
  left: calc((20px / 2) - (((15px / 12) * 5) / 2));
}

/** input **/
label.radio input[type="radio"],
label.radio_t input[type="radio"],
label.checkbox input[type="checkbox"],
label.checkbox_t input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  outline: none;
}

label.radio input[type="radio"],
label.radio_t input[type="radio"] {
  left: calc(18px * -1);
  width: 18px;
  height: 18px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 100%;
}

label.checkbox input[type="checkbox"],
label.checkbox_t input[type="checkbox"] {
  left: calc(20px * -1);
  padding: 0;
}

label.radio input[type="radio"] {
  display: block;
  box-shadow: 18px 0px #FFF;
}

label.radio_t input[type="radio"] {
  box-shadow: 18px 0px #FFF;
}

label.checkbox input[type="checkbox"] {
  box-shadow: 20px 0px #FFF;
}

label.checkbox_t input[type="checkbox"] {
  display: block;
  box-shadow: 20px 0px #FFF;
}

/** checked forcus */
label.checkbox_t input[type="checkbox"]:checked,
label.checkbox input[type="checkbox"]:checked,
label.radio_t input[type="radio"]:checked,
label.radio input[type="radio"]:checked {
  box-shadow: none;
}

label.checkbox_t input[type="checkbox"]:checked:focus,
label.checkbox input[type="checkbox"]:checked:focus {
  opacity: 0.1;
}

label.radio_t input[type="radio"]:focus,
label.radio input[type="radio"]:focus {
  opacity: 0.2;
}

label.checkbox_t input[type="checkbox"]:checked:focus {
  box-shadow: 20px 0px #666;
}

label.checkbox_t input[type="checkbox"]:focus {
  box-shadow: 20px 0px #EEE;
}

label.checkbox input[type="checkbox"]:checked:focus {
  box-shadow: 20px 0px #666;
}

label.checkbox input[type="checkbox"]:focus {
  box-shadow: 20px 0px #EEE;
}

label.radio_t input[type="radio"]:focus {
  box-shadow: 18px 0px #FFF;
}

label.radio input[type="radio"]:focus {
  box-shadow: 18px 0px #FFF;
}

/* text */
.error_mes {
  box-sizing: border-box;
  padding: 1rem;
  background: #fffde5;
  border: 2px solid #f45f5d;
  line-height: 1.6;
}

.error_mes_t {
  color: #e0044a;
  font-weight: bold;
}

.error_mes p {
  padding-left: 1em;
  color: #e0044a;
  font-size: 90%;
}

.form_body .hissu {
  display: inline-block;
  margin: 0 0 0 8px;
  padding: 4px 4px;
  background: #d70049;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
}

.s-btn {
  text-align: center;
}


/* -------------------------------------------------------
for SmartPhone
---------------------------------------------------------- */
@media only screen and (max-width:959px) {

  /* common ------------------------- */
  body {
    background: #f4f4ef;
  }

  .pcv {
    display: none;
  }

  .container {
    box-sizing: border-box;
    margin: 32px 8px;
    padding: 8px 8px 32px;
    background: #fff;
  }

  /* header ------------------------- */
  header {
    text-align: center;
  }

  .header_inner {
    padding: 16px 0;
  }

  .header_tel {
    display: none;
  }

  .title_txt {
    margin-top: 16px;
  }

  /* form_title ------------------------- */
  .form_title {
    margin-bottom: 16px;
    padding: .6em .6em;
    background: #f3f3f3;
    line-height: 1.4;
  }

  .form_title h1 {
    font-size: 100%;
    font-weight: bold;
  }


  /* form_head ------------------------- */
  .form_head {
    padding: 0 8px;
  }

  .tel_box {
    margin-bottom: 16px;
  }

  .phone_num {
    display: block;
  }

  .phone_num a {
    display: block;
    margin-bottom: 8px;
    padding: 0 1em;
    background: #134ba0;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
  }

  .phone_num a img {
    height: 18px;
    vertical-align: middle;
  }

  .tel_info {
    display: block;
    font-size: 12px;
  }

  .domain_att {
    font-weight: bold;
  }

  input.domain_name {
    display: block;
    padding: 4px 8px;
    border: 1px solid #ccc;
    color: #36c;
  }

  /* form_body ------------------------- */
  .form_body {
    margin: 32px 0;
  }

  .form_info {
    padding: .5em 1em;
    background: #5eb7c9;
    color: #fff;
    font-size: 90%;
    line-height: 1.4;
  }

  .form_info2 {
    padding: .5em 1em;
    background: #35ad83;
    color: #fff;
    font-size: 90%;
    line-height: 1.4;
  }

  .form_body dt {
    margin: 8px 0;
    padding: 8px;
    background: #eee;
    font-weight: bold;
  }

  .form_body dd {
    padding: 0 0 24px;
    line-height: 1.2;
  }

  .form_body dd label {
    display: block;
    margin: 0 0 1em;
  }

  .form_body dd label:last-child {
    margin: 0;
  }

  /* complete ------------------------- */
  .comp_body {
    margin: 0 0 30px;
    padding: 0 8px;
  }

  .comp_body .bth a {
    display: block;
    margin-bottom: 8px;
    padding: 0 1em;
    background: #134ba0;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
  }


  /* footer ------------------------- */
  footer {
    padding: 16px 0;
  }



  /* form tag */
  input.ipt_s-s {
    width: 30%;
  }

  input.ipt_m-s {
    width: 50%;
  }

  input.ipt_l-s {
    width: 94%;
  }

  .form_body input+input {
    display: block;
    margin-top: 8px;
  }

  .form_body input+select {
    margin-top: 8px;
  }

  input[type="text"] {
    box-sizing: border-box;
    padding: .5em;
  }

  input[type="email"] {
    box-sizing: border-box;
    padding: .5em;
    font-size: 100%;
    font-family: sans-serif;
  }

  input[type="submit"] {
    padding: 1em 2em;
    font-size: 14px;
  }

  textarea {
    height: 8em;
    padding: .5em;
    font-size: 100%;
  }

  select {
    margin-right: 2px;
    font-size: 120%;
  }

  .form_body select+select {
    margin-left: 16px;
  }

}

/* end SP */



/* -------------------------------------------------------
for PC
---------------------------------------------------------- */
@media only screen and (min-width:960px) {

  /* common ------------------------- */
  body {
    background: #f4f4ef;
    font-family: Arial, sans-serif;
    zoom: 1;
  }

  .spv {
    display: none;
  }

  .container {
    box-sizing: border-box;
    width: 960px;
    margin: 48px auto;
    padding: 48px;
    background: #fff;
  }

  /* header------------------- */
  header {
    width: 100%;
    min-width: 960px;
  }

  .header_inner {
    width: 960px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
  }

  .title_txt {
    padding-left: 1em;
    font-weight: bold;
  }

  /* form_title ------------------------- */
  .form_title {
    margin-bottom: 24px;
    padding: 1em;
    background: #f3f3f3;
  }

  .form_title h1 {
    font-size: 120%;
    font-weight: bold;
  }

  /* form_head ------------------------- */
  input.domain_name {
    margin-right: 8px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    color: #36c;
  }

  .domain_att {
    font-weight: bold;
  }

  .tel_box {
    margin-bottom: 16px;
  }

  .phone_num {
    font-size: 20px;
  }

  .tel_info {
    display: block;
    font-size: 12px;
  }

  /* form_body ------------------------- */
  .form_body {
    margin: 56px auto;
  }

  .form_info {
    padding: 1em;
    background: #5eb7c9;
    color: #fff;
    font-size: 80%;
  }

  .form_info2 {
    padding: 1em;
    background: #35ad83;
    color: #fff;
    font-size: 80%;
  }

  .form_info,
  .form_info2 {}

  .error_mes {
    margin: 8px 0;
  }

  .form_body dl {
    display: table;
    width: 100%;
    border-bottom: 1px solid #d5d5d5;
  }

  .form_body dt {
    display: table-cell;
    width: 220px;
    padding: 1.2em 1em;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
  }

  .form_body dd {
    display: table-cell;
    min-width: 600px;
    padding: 1.2em 0;
    vertical-align: middle;
  }

  .form_body dd span {
    font-size: 100%;
  }

  .form_body dd input+span {
    display: inline-block;
    margin-left: 8px;
  }

  .form_body dd select+span {
    display: inline-block;
    margin-left: 8px;
  }

  .form_body dd textarea+span {
    display: block;
    margin-top: 8px;
  }

  /* clear */
  .form_body dl:before,
  .form_body dl:after {
    content: "";
    display: table;
  }

  .form_body dl:after {
    clear: both;
  }

  .form_body dl {
    zoom: 1;
  }


  .form_body .s-btn {
    text-align: center;
    margin-top: 2em;
  }

  .form_body label {
    display: inline-block;
    margin-right: 16px;
  }

  .form_body label:hover {
    cursor: pointer;
  }


  /* complete------------------- */
  .comp_body {
    margin: 50px auto;
  }

  .comp_body .bth {
    font-size: 80%;
  }

  /* footer------------------- */
  footer {
    width: 100%;
    padding: 32px 0;
  }

  .pp {
    margin: 0 0 1em;
    font-size: 12px;
    text-align: center;
  }

  .cp {
    font-size: 12px;
    text-align: center;
  }


  /* form tag------------------- */
  input.ipt_s {
    width: 20%;
  }

  input.ipt_m {
    width: 50%;
  }

  input.ipt_l {
    width: 94%;
  }

  .form_body input+input {
    margin-left: 8px;
  }

  .form_body input+select {
    margin-left: 8px;
  }

  input[type="text"],
  input[type="tel"] {
    box-sizing: border-box;
    padding: .5em;
  }

  input[type="email"] {
    box-sizing: border-box;
    padding: .5em;
    font-size: 120%;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }

  input[type="submit"] {
    padding: 1em 2em;
    font-size: 14px;
  }

  textarea {
    height: 8em;
    padding: .5em;
    font-size: 16px;
  }

  select {
    font-size: 100%;
  }

  .form_body select+select {
    margin-left: 16px;
  }


}

/* end PC */


/* -------------------------------------------------------
Common
---------------------------------------------------------- */
.fs80 {
  font-size: 80%;
}

.fs90 {
  font-size: 90%;
}

.fs100 {
  font-size: 100%;
}

.fs110 {
  font-size: 110%;
}

.fs120 {
  font-size: 120%;
}

.fs10px {
  font-size: 10px;
}

.fs11px {
  font-size: 11px;
}

.fs12px {
  font-size: 12px;
}

.fs13px {
  font-size: 13px;
}

.fs14px {
  font-size: 14px;
}

.fs15px {
  font-size: 15px;
}

.fs16px {
  font-size: 16px;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}

.lh18 {
  line-height: 1.8;
}

.lh19 {
  line-height: 1.9;
}

.lh20 {
  line-height: 2.0;
}

.mgb8 {
  margin-bottom: 8px;
}

.mgb16 {
  margin-bottom: 16px;
}

.mgb24 {
  margin-bottom: 24px;
}

.mgb32 {
  margin-bottom: 32px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb48 {
  margin-bottom: 48px;
}

.mgb56 {
  margin-bottom: 56px;
}

.mgb64 {
  margin-bottom: 64px;
}

.mgb80 {
  margin-bottom: 80px;
}

.mgb100 {
  margin-bottom: 100px;
}

.mgb05em {
  margin-bottom: 0.5em;
}

.mgb1em {
  margin-bottom: 1em;
}

.mgb15em {
  margin-bottom: 1.5em;
}

.mgb2em {
  margin-bottom: 2em;
}

.mgr8 {
  margin-right: 8px;
}

.mgr16 {
  margin-right: 16px;
}

.mgr24 {
  margin-right: 24px;
}

.pdlr8 {
  padding: 0 8px;
}

.pdlr16 {
  padding: 0 16px;
}

.pdlr24 {
  padding: 0 24px;
}

.pdlr32 {
  padding: 0 32px;
}

.pdlr1em {
  padding: 0 1em;
}

.pdlr2em {
  padding: 0 2em;
}

.ti1em {
  text-indent: 1em;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: bold;
}

.fc_red {
  color: #ff0000;
}

.udl {
  border-bottom: 1px solid #ff0000;
}