html {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500; /*font-size Medium*/
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 1.3rem;
  color: #1E1E1E;
  background: #F3F3F3;
  line-height: 1;
}
table th,
table td,
header,
footer {
  font-size: 1.3rem;
}
p {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  line-height: 2.0rem;
  margin: 0;
}
select {
  width: 30%;
  padding: 5px 20px 5px 10px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  background-image: url(https://d1q08lkutgkcx2.cloudfront.net/image/arrow-select.webp);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right 6px center;
  box-shadow: none;
  margin-bottom: 0px;
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: #000;
}
select::-ms-expand {
  display: none;
}
.select::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
select:after {
  position: absolute;
  top: 0;
  right: 2.5em;
  bottom: 0;
  width: 1px;
  content: "";
  border-left: 1px solid #bbbbbb;
}
img{
  width: auto;
  height: auto;
}
h1,
ul.List {
  margin: 0em;
  padding-left: 0px;
  font-size: 62.5%;
}
input::-ms-reveal {
  visibility: hidden;
}
div.content-container {
  width: 100%;
  margin: auto;
}
div.section-container {
  max-width: 980px;
  margin: auto;
  box-sizing: border-box;
}
.inner{
  max-width: 980px;
  margin: 0 auto;
  z-index: 4;
}
.tb {
  display: none;
}
.sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .hide-tb {
    display: none;
  }
  .tb {
    display: block;
  }
  .tb-hide {
    display: none;
  }
  body {
    min-width: 768px;
    overflow-x: hidden;
  }
  .inner{
    max-width: 680px;
  }
}
@media screen and (max-width: 767px) {
	.pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    min-width: unset;
  }
  .inner{
    max-width: 100%;
  }
}