@charset "utf-8";
@media screen and (min-width:769px){
  /* PC 769px以上 */
  html{
    font-size: 16px;
  }
}
@media screen and (max-width:768px){
  /* タブレット 768px以下 */
  html{
    font-size: 2vw;
  }
}
@media screen and  (max-width:480px){
  /* スマートフォン 480px以下 */
  html{
    font-size: 3.4vw;
  }
}
html {
  overflow-x: hidden;
}
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", "ＭＳ ゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  color: #242424;
  line-height: 1.4;
}
@media screen and ( max-width: 768px ){
  .pc {
    display: none !important;
  }
}
@media screen and ( min-width: 769px ){
  .sp {
    display: none !important;
  }
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
select,
input[type="text"],
input[type="date"] {
  font-size: 16px;
  width: 100%;
}
.btn:not(.disabled):hover {
  color: #fff;
  opacity: .8;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
a {
  color: #F1641E;
  text-decoration: none;
}
a:hover {
  opacity: .8;
  text-decoration: none;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
  padding: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: none;
}
button:focus {
  outline: 0;
  cursor: pointer;
}
iframe {
  max-width: 100%;
}
.container {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

#main {
  padding: 30px 0 0 0;
}
.contents {
  display: flex;
}
.left-contents {
  padding: 15px 0 0 0;
}
.left-contents-inner{
  padding-bottom: 30px;
  transition-delay: 0s;
  transition-duration: 0.05s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

@media (min-width: 769px) {
  p,li,dl,table {
    font-size: .9rem;
  }
  .contents {
    justify-content: space-between;
  }
  .left-contents {
    width: 25%;
    padding-right: 25px;
  }
  .main-contents {
    flex: 1;
  }
}
@media (max-width: 768px) {
  p,li,dl,table {
    font-size: 1.1rem;
  }
  #primary {
    padding-top: 50px;
  }
  .contents {
    flex-direction: column-reverse;
  }
  .main {
    padding-top: 50px;
  }
}
