/* BASE */

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,
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%;
font-weight: normal;
box-sizing: border-box;
}
input, select, textarea {
font-family : inherit;
font-size: 100%;
}
.clearfix::after{
content: "";
display: block;
clear: both;
}
.clear{
clear:both;
}
body {
background-color: #eee;
font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
font-feature-settings: "palt";
font-size:20px;
}
a {
color:#333333;
text-decoration:none;
}
a:hover {
text-decoration:underline;
opacity: 0.7;
}
.wrapper{
width:95%;
margin:0 auto;
}

/* NAV */
nav{
width:100%;
text-align:center;
padding:10px 0;
}
nav > a{
display:inline-block;
border-radius:5px;
margin-right:5px;
padding:3px 10px;
background:#fff;
}

.submenu{
width:100%;
text-align:center;
padding:10px 0;
}
.submenu > a{
display:inline-block;
border-radius:5px;
margin-right:5px;
padding:3px 10px;
background:#333;
color:#fff;
}

/* CONTENT */
section{
margin-bottom:50px;
}
h1{
width:100%;
margin:10px 0;
text-align:center;
font-size:150%;
}
h1 span{
font-weight:bold;
}
p{
display:block;
margin:20px 0;
font-weight:bold;
}
p span{
color:red;
font-weight:bold;
font-size:120%;
}

/* ALERT */
.alert{
width:100%;
margin:10px 0;
padding:2px 10px;
border:dotted 2px #555;
color:red;
font-size:90%;
}

/* FORM */
select{
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; 
      position: relative;
      display: inline-block;
      width: 90%;
      padding: 10px 84px 10px 20px;
      font-size: 100%;
      font-weight: 300;
      color: #fff;
      line-height: 2em;
      background: #5c9cd8;
      border-radius: 4px;
      cursor: pointer;
}
.button {
  -webkit-appearance: none;
  display       : inline-block;
  font-size     : 120%; 
  text-align    : center;
  cursor        : pointer;
  padding       : 12px 25px;
  background    : #5c9cd8;
  color         : #ffffff;
  line-height   : 1em;
  transition    : .3s;
  box-shadow    : 3px 3px 3px #aaa;
  border        : 2px solid #5c9cd8;
}
.button:hover {
  box-shadow    : none;
  color         : #5c9cd8;
  background    : #ffffff;
}

/* FOOTER */
footer{
font-size:90%;
}
footer span{
font-weight:bold;
}


@media screen and (max-width: 768px) {
body {
font-size:17px;
}
.wrapper{
width:98%;
}
}

@media screen and (max-width: 480px) {
body {
font-size:15px;
}
    .custom-select-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding: 5px 50px 5px 10px;
      font-size: 100%;
}
}