@charset "UTF-8";
/******************************************************

fonts

******************************************************/
/*! ALL ***************************************************/
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /* 62.5% 10px 1em */
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  color: #000000;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  background: #edf4f6;
  -webkit-text-size-adjust: none;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  color: #000;
}

a:hover {
  filter: brightness(120%);
}

/*! SP ***************************************************/
@media screen and (max-width: 740px) {
  body {
    min-width: 320px;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .pc {
    display: none !important;
  }
}

/*! PC ***************************************************/
@media screen and (min-width: 741px) {
  .sp {
    display: none !important;
  }
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

#wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

#wrap.flex_center {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 740px) {
  #wrap.flex_center {
    min-height: auto;
  }
}

.login_box {
  width: 800px;
  text-align: center;
}

.login_box h1 {
  padding-bottom: 60px;
}

.login_box h1 .logo {
  width: 368px;
  height: auto;
}

.login_box .login_box_inner {
  background: #fff;
  padding: 50px;
  box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.14);
}

.login_box .login_box_inner .input {
  margin: 0 auto 30px;
  width: 330px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login_box .login_box_inner .input em {
  width: 110px;
  text-align: left;
}

.login_box .login_box_inner .input input {
  border: #cbcbcb solid 1px;
  width: 220px;
  height: 36px;
  box-sizing: border-box;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-shadow: none;
}

.login_box .login_box_inner .submit input[type="submit"] {
  width: 250px;
  height: 50px;
  background: #1ca1a7;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  cursor: pointer;
  outline: none;
}

.login_box .login_box_inner .submit input[type="submit"]:hover {
  filter: brightness(120%);
}

@media screen and (max-width: 740px) {
  .login_box {
    width: calc(100% - 30px);
  }
  .login_box h1 {
    padding-bottom: 30px;
  }
  .login_box h1 .logo {
    width: 70vw;
  }
  .login_box .login_box_inner {
    background: #fff;
    padding: 60px 15px;
    box-shadow: 0px 0px 5px 0px rgba(4, 0, 0, 0.14);
  }
  .login_box .login_box_inner .input {
    margin: 0 auto 20px;
    width: 100%;
    flex-direction: column;
  }
  .login_box .login_box_inner .input em {
    display: block;
    width: 100%;
    text-align: left;
  }
  .login_box .login_box_inner .input input {
    width: 100%;
  }
  .login_box .login_box_inner .submit {
    margin-top: 30px;
  }
  .login_box .login_box_inner .submit input[type="submit"] {
    width: 100%;
    height: 46px;
    font-size: 1.6rem;
    -webkit-border-radius: 23px;
    border-radius: 23px;
  }
}

header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.14);
  position: relative;
  z-index: 10;
}

header #slidemenuBtn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header #slidemenuBtn span {
  width: 25px;
  height: 21px;
  border-top: #000 solid 3px;
  border-bottom: #000 solid 3px;
  position: relative;
  box-sizing: border-box;
  transition: all 0.4s ease 0.2s;
  backface-visibility: hidden;
}

header #slidemenuBtn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 3px;
  background: #000;
  transition: all 0.2s ease 0s;
  backface-visibility: hidden;
}

header #slidemenuBtn span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 3px;
  background: #000;
  transition: all 0.2s ease 0s;
  backface-visibility: hidden;
}

header #slidemenuBtn.open span {
  border-color: #fff;
  transition: all 0.4s ease 0.2s;
}

header #slidemenuBtn.open span:before {
  transform: rotate(45deg);
  transition: all 0.2s ease 0.2s;
}

header #slidemenuBtn.open span:after {
  transform: rotate(-45deg);
  transition: all 0.2s ease 0.2s;
}

header h1 {
  margin-left: 25px;
  height: 22.5px;
}

header h1 .logo {
  width: 200px;
}

header .header_btn {
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .header_btn a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 30px;
}

header .header_btn a i {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #1ca1a7;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .header_btn a span {
  font-size: 1.3rem;
  color: #000;
  padding-left: 10px;
}

header .header_btn a:hover span {
  color: #1ca1a7;
}

@media screen and (max-width: 740px) {
  header {
    width: 100%;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 5px 0px rgba(4, 0, 0, 0.14);
  }
  header #slidemenuBtn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
  }
  header #slidemenuBtn span {
    width: 20px;
    height: 14px;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 2px;
    position: relative;
    box-sizing: border-box;
  }
  header #slidemenuBtn span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.2s ease;
    backface-visibility: hidden;
  }
  header #slidemenuBtn span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.2s ease;
    backface-visibility: hidden;
  }
  header h1 {
    margin-left: 0;
    height: 22.5px;
  }
  header h1 .logo {
    width: 200px;
  }
  header .header_btn {
    display: none;
  }
}

article {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

article .update {
  display: block;
  margin: 0 30px;
  text-align: right;
  font-size: 1rem;
  line-height: 1;
  margin-top: 30px;
}

article .update + section {
  margin-top: 20px;
}

article section {
  width: 740px;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
  margin: 30px auto;
  box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.14);
}

article section.wide {
  width: auto;
  margin: 30px;
}

article section h2 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  font-feature-settings: "palt";
  text-align: justify;
  padding-bottom: 15px;
}

article section h2 + small {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 20px;
  line-height: 1;
}

article section .inner {
  width: 100%;
  overflow-x: auto;
}

@media screen and (max-width: 740px) {
  article {
    padding: 0 15px;
  }
  article .update {
    width: 100%;
    font-size: 1rem;
    line-height: 1;
    margin-top: 15px;
  }
  article .update + section {
    margin-top: 15px;
  }
  article section {
    width: 100%;
    padding: 15px 10px;
    margin: 15px 0;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(4, 0, 0, 0.14);
  }
  article section h2 {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
  article section .inner {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.brand_list {
  width: 100%;
  white-space: nowrap;
}

.brand_list thead tr th {
  border-bottom: #c1c1c1 solid 2px;
  text-align: center;
  font-weight: normal;
  padding-bottom: 5px;
}

.brand_list tbody tr td {
  padding: 10px;
  border-bottom: #ededed solid 1px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.brand_list tbody tr td .red {
  color: red;
}

.brand_list tbody tr td.code {
  text-align: center;
}

.brand_list tbody tr td.volume {
  text-align: right;
}

.brand_list tbody tr td.price {
  text-align: right;
}

.brand_list tbody tr td.account {
  text-align: center;
}

.brand_list tbody tr td.times {
  text-align: center;
}

.brand_list tbody tr td.rate {
  text-align: center;
}

.brand_list tbody tr td.date {
  text-align: center;
}

.brand_list tbody tr:hover td {
  background: #effafa;
}

@media screen and (max-width: 740px) {
  .brand_list tbody tr td {
    padding: 8px;
  }
}

#slide_menu {
  position: fixed;
  left: 0;
  top: 0px;
  width: 330px;
  height: 100%;
  padding-top: 60px;
  box-sizing: border-box;
  background: #15afb7;
  transition: all 0.2s cubic-bezier(1, 0, 0, 1) 0.1s;
  backface-visibility: hidden;
  transform: translate(-100%, 0);
}

#slide_menu.open {
  transform: translate(0%, 0);
}

#slide_menu #slide_menu_hover {
  position: fixed;
  left: calc(330px - 4px);
  top: -60px;
  height: 45px;
  background: #006367;
  width: 4px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  opacity: 0.8;
}

#slide_menu ul > li {
  position: relative;
}

#slide_menu ul > li .active {
  background: #108b91;
}

#slide_menu ul > li > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 45px;
}

#slide_menu ul > li > a i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

#slide_menu ul > li > a span {
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

#slide_menu ul > li > a.toggle {
  position: relative;
}

#slide_menu ul > li > a.toggle .icon-arrow {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  transform: scale(0.8);
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

#slide_menu ul > li > a.toggle.on .icon-arrow {
  transform: scale(0.8) rotate(180deg);
}

#slide_menu ul > li a:hover {
  filter: brightness(100%);
}

#slide_menu ul > li a:hover i, #slide_menu ul > li a:hover span {
  color: #006367 !important;
}

#slide_menu ul > li ol {
  display: none;
}

#slide_menu ul > li ol li a {
  padding-left: 45px;
  font-size: 1.4rem;
  height: 45px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}

#slide_menu ul > li ol li a:hover {
  color: #006367;
  filter: brightness(100%);
}

@media screen and (max-width: 740px) {
  #slide_menu {
    width: 100%;
    height: 100%;
    padding-top: 40px;
  }
  #slide_menu #slide_menu_hover {
    width: 3px;
    left: auto;
    right: 0;
  }
}

.brand_search .input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.brand_search .input input[type="date"] {
  border: #cbcbcb solid 1px;
  height: 35px;
  padding: 0 5px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.brand_search .input span {
  margin: 0 1em;
}

.brand_search .input input[type="text"] {
  width: 250px;
  padding: 0 10px;
  height: 35px;
  border: #cbcbcb solid 1px;
  outline: none;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.brand_search .input ::placeholder {
  color: #a6a6a6;
}

.brand_search .input .submit {
  margin-left: 30px;
}

.brand_search .input .submit input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  width: 120px;
  height: 35px;
  border-radius: 18px;
  background: #1ca1a7;
  color: #fff;
  font-size: 1.6rem;
  outline: none;
  border: none;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

.brand_search .input .submit input[type="submit"]:hover {
  filter: brightness(120%);
}

.brand_search .input + .input {
  margin-top: 20px;
}

.search_results {
  background: #dde6e8;
}

@media screen and (max-width: 740px) {
  .brand_search .input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .brand_search .input input[type="date"] {
    padding: 0;
    width: calc(50% - 10px);
    font-size: 16px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  .brand_search .input span {
    margin: 0;
  }
  .brand_search .input input[type="text"] {
    width: 100%;
    padding: 0 10px;
    height: 35px;
    border: #cbcbcb solid 1px;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  .brand_search .input ::placeholder {
    color: #a6a6a6;
  }
  .brand_search .input .submit {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px;
  }
  .brand_search .input .submit input[type="submit"] {
    width: 100%;
    font-size: 1.6rem;
    outline: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  .brand_search .input + .input {
    margin-top: 10px;
  }
}

.victory ol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: #c1c1c1 solid 2px;
  width: 100%;
}

.victory ol li {
  text-align: left;
  font-weight: normal;
  padding: 5px 10px;
  line-height: 1.5;
}

.victory ol li em {
  color: #1ca1a7;
  font-size: 1.8rem;
  padding-left: 1em;
}

.victory ul li {
  padding: 10px;
  border-bottom: #ededed solid 1px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.victory ul li em {
  width: 160px;
}

@media screen and (max-width: 740px) {
  .victory ol {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .victory ol li {
    text-align: center;
    padding: 5px 0;
    line-height: 1.5;
  }
  .victory ol li em {
    display: block;
    font-size: 1.4rem;
    padding-left: 0;
  }
  .victory ul li {
    padding: 10px;
    border-bottom: #ededed solid 1px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .victory ul li em {
    width: 160px;
  }
}

h1.article_title {
  width: 740px;
  margin: 40px auto 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 740px) {
  h1.article_title {
    margin: 25px auto 0;
    font-size: 1.6rem;
  }
}

h1.sub_article_title {
  width: 740px;
  margin: 30px auto 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 740px) {
  h1.sub_article_title {
    margin: 20px auto 0;
    width: 100%;
    font-size: 1.6rem;
  }
}

.rank_name .input input[type="text"] {
  width: 300px;
  padding: 0 10px;
  height: 35px;
  border: #cbcbcb solid 1px;
  outline: none;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.rank_name .input ::placeholder {
  color: #a6a6a6;
}

.rank_name .input + .input {
  margin-top: 10px;
}

@media screen and (max-width: 740px) {
  .rank_name .input input[type="text"] {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
  }
  .rank_name .input + .input {
    margin-top: 10px;
  }
}

.save_btn {
  text-align: center;
  padding-bottom: 50px;
}

.save_btn input[type="submit"] {
  max-width: 100%;
  width: 450px;
  height: 50px;
  background: #1ca1a7;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  cursor: pointer;
}

.save_btn input[type="submit"]:hover {
  filter: brightness(120%);
}

@media screen and (max-width: 740px) {
  .save_btn {
    padding-bottom: 30px;
  }
  .save_btn input[type="submit"] {
    width: 100%;
    height: 46px;
    font-size: 1.6rem;
    -webkit-border-radius: 23px;
    border-radius: 23px;
    font-feature-settings: "palt";
    text-align: center;
  }
}

.narrowing .input_box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.narrowing .input_box .input {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.narrowing .input_box span {
  padding-right: 10px;
}

.narrowing .input_box .selectBox + span {
  padding-left: 10px;
  padding-right: 0;
}

.narrowing .input_box + .input_box {
  padding-top: 20px;
}

.narrowing .save_btn {
  padding-top: 30px;
  text-align: center;
  padding-bottom: 0px;
}

@media screen and (max-width: 740px) {
  .narrowing .input_box {
    flex-wrap: wrap;
  }
  .narrowing .input_box .input {
    width: 100%;
    flex-wrap: wrap;
  }
  .narrowing .input_box span {
    display: block;
    width: 100%;
    padding-right: 0px;
    line-height: 1.5;
    padding-bottom: 5px;
  }
  .narrowing .input_box .selectBox + span {
    padding-left: 0px;
    padding-right: 0;
    padding-top: 5px;
    width: 100%;
  }
  .narrowing .input_box .input + .input {
    padding-top: 10px;
  }
  .narrowing .input_box .selectBox {
    width: 100%;
  }
  .narrowing .input_box + .input_box {
    padding-top: 10px;
  }
  .narrowing .save_btn {
    padding-top: 30px;
    text-align: center;
    padding-bottom: 0px;
  }
}

.selectBox {
  display: block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 120px;
}

.selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 1.6rem;
  height: 35px;
  margin: 0;
  padding: 0 6px;
  box-sizing: border-box;
  background: #fff;
  border: #cbcbcb solid 1px;
  padding-right: 50px;
  color: #000;
  width: 125%;
  max-width: none;
  box-shadow: none;
  border-radius: 0;
  background: #fff;
  outline: none;
}

.selectBox select option, .selectBox select optgroup {
  color: #000;
  font-style: normal;
}

.selectBox:after {
  background: #fff;
  color: #000;
  content: "\e90b";
  font-family: "icomoon";
  font-size: 1rem;
  height: 100%;
  line-height: 35px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 35px;
  box-sizing: border-box;
  border: #cbcbcb solid 1px;
  border-left: 0;
  display: inline-block;
}
