/*共通*/
* {
  box-sizing: border-box;
  word-wrap: normal;
  vertical-align: middle;
}
html,body {
  padding: 0;
  margin: 0;
  line-height: 1;
  /*height: 100%;
  width: 100%;*/
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  display:inline-block;
  text-decoration: none;
  color: inherit;
}
h1,h2,h3,h4,h5,h6 {
  display: block;
  margin: 0;
  padding: 0;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.fade {
  animation: fade 0.5s linear;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

section{
  word-wrap: break-word;
}

table {
  border-collapse: collapse;
}




.flex-row-sa {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.flex-row-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-row-c {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-col-sa {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: wrap;
}
.flex-col-sb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}


ul.list li {
  background-color: #fff;
  padding: 10px 0;
  border: 1px solid #000;
  text-align: center;
}
.scrollable {
  overflow-y: auto;
  height: 100%;
}

.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.max {
  width: 100%;
  height: 100%;
}

.clickable:hover {
  background-color: #dfe;
}

/*スマホ*/
@media screen and (max-width: 480px){
  .sp-hidden {
    display: none;
  }
  /*文字入力*/
  .ipt{
    border: 1px #1e3453 solid;
    border-radius: 5px;
    max-width: 90%;
    font-size: 14px;
  }
  .ipt:active{
    order: 1px #5e84a3 solid;
  }

  /*ボタンスタイル*/
  .btn {
    display: inline-block;
    font-family: sans-serif;
    font-size: 14px;
    padding: 5px 10px;
    margin: 2px;
    background-color: #1e3453;
    color: #fff;
    border: none;
    border-radius: 5px;
    radius: 0;
  }
  .btn:active{
    background-color: #5e84a3;
  }
  a.btn {
    padding: 10px 10px;
  }
}
/*PC*/
@media screen and (min-width: 480px){
  .pc-hidden {
    display: none;
  }
  /*文字入力*/
  .ipt{
    border: 1px #1e3453 solid;
    border-radius: 5px;
    font-size: 14px;
    max-width: 90%;
  }
  .ipt:active{
    order: 1px #5e84a3 solid;
  }

  /*ボタンスタイル*/
  .btn {
    display: inline-block;
    font-family: sans-serif;
    font-size: 20px;
    padding: 5px 10px;
    margin: 2px;
    background-color: #1e3453;
    color: #fff;
    border: none;
    border-radius: 5px;
    radius: 0;
  }
  .btn:active{
    background-color: #5e84a3;
  }
}


*[hidden="hidden"]{
  display:none;
}
