@charset "UTF-8";

/* ===================================================================
format
=================================================================== */
/*	html
--------------------------------------------------------------------*/
html {
  /* font-size指定をremで設定するための処理　1.6rem = 16px */
  font-size: 62.5%;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}


/*	body
--------------------------------------------------------------------*/
body {
  font-family: 'NotoSansJP', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: #000000;
}


/*	img
--------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

wrapper img {
  vertical-align: bottom;
}

/*	h
--------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/*	p,ul,ol,li,dl,dt,dd,figure,figcaption
--------------------------------------------------------------------*/
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*	a
--------------------------------------------------------------------*/
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/*	form
--------------------------------------------------------------------*/
[data-whatinput="mouse"] :focus,
[data-whatinput="touch"] :focus,
[data-whatselect="mouse"] :focus,
[data-whatselect="touch"] :focus {
  outline: none;
}

input[type="date"] {
  -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0 .5em;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  -webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
.prt_select select {
  height: 40px;
}

input[type="radio"],
input[type="check"] {
  margin-right: .2em;
}

textarea {
  height: 120px;
  padding-top: 10px;
  padding-bottom: 10px;
}

button {
  display: block;
}

button:hover {
  cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/*====================================
リセット
====================================*/
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;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*====================================
改行コントロール
====================================*/
.sp_br {
  display: none;
}

.pc_br {
  display: block;
}

@media only screen and (max-width: 450px) {
  .sp_br {
    display: block;
  }

  .pc_br {
    display: none;
  }
}