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

/*	body
--------------------------------------------------------------------*/
body {
  font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif, 'Font Awesome 5 Free';
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #101010;
}

:before,
:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/*	img
--------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  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 {
  transition: all 0.3s ease 0s;
}

a:hover {
  text-decoration: none;
}

/*	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;
}
