@charset "UTF-8";
#history_frame .select {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
#history_frame .select span {
  position: relative;
}
#history_frame .select span::after {
  content: "…";
  color: #333;
  margin: 0 5px;
}
#history_frame .select span.icn1::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #f3a354;
  border-radius: 12px;
  vertical-align: -2px;
}
#history_frame .select span.icn2::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #00b1da;
  border-radius: 12px;
  vertical-align: -2px;
}
#history_frame .history {
  transition: 0.3s;
  position: relative;
  padding: 15px 0;
}
#history_frame .history::before {
  content: "";
  height: 100%;
  width: 30px;
  background: #f3a354;
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 15px);
}
#history_frame .history::after {
  content: "";
  height: 100%;
  width: 30px;
  background: #00b1da;
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% + 15px);
}
#history_frame .history .block {
  position: relative;
  z-index: 1;
}
#history_frame .history .block.history1 {
  width: calc(50% + 15px);
  margin-right: auto;
  text-align: right;
  padding-right: 40px;
  box-sizing: border-box;
}
#history_frame .history .block.history1::after {
  content: "";
  background: url("/company/img/dot.svg") no-repeat;
  background-size: 22px 22px;
  background-position: 4px 2px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1;
}
#history_frame .history .block.history1 .year::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #f3a354;
  margin: 5px 0 0 auto;
}
#history_frame .history .block.history1 + .history1 {
  margin-top: 20px;
}
#history_frame .history .block.history2 {
  width: calc(50% - 15px);
  margin-left: auto;
  padding-left: 40px;
  box-sizing: border-box;
}
#history_frame .history .block.history2::before {
  content: "";
  background: url("/company/img/dot.svg") no-repeat;
  background-size: 22px 22px;
  background-position: 4px 2px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1;
}
#history_frame .history .block.history2 .year::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #00b1da;
  margin: 5px 0 0;
}
#history_frame .history .block.history2 + .history2 {
  margin-top: 20px;
}
#history_frame .history .block .year {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  padding-top: 2px;
}
#history_frame .history .block p {
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
#history_frame .history .col {
  display: flex;
  margin: 20px 0;
}
#history_frame .history .col .mr_s {
  margin-top: 40px;
}
#history_frame .start {
  transition: 0.3s;
  position: relative;
  padding: 25px 0;
}
#history_frame .start::before {
  content: "";
  height: 100%;
  width: 60px;
  background: #e84237;
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 15px);
}
#history_frame .start p {
  position: relative;
  background: #e84237;
  color: #fff;
  text-align: center !important;
  padding: 10px !important;
  width: 100%;
  font-size: 1.4rem !important;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 5px;
  box-sizing: border-box;
}
#history_frame .start p br {
  display: none;
}
@media screen and (max-width: 767px) {
  #history_frame .select {
    font-size: 1rem;
    margin: 15px 0;
    position: relative;
    padding-left: 2.8rem;
  }
  #history_frame .select span {
    position: absolute;
    left: 0;
  }
  #history_frame .select span.icn1::before {
    width: 14px;
    height: 14px;
  }
  #history_frame .select span.icn2::before {
    width: 14px;
    height: 14px;
  }
  #history_frame .history {
    padding: 10px 0 20px;
  }
  #history_frame .history::before {
    width: 20px;
    left: 0px;
  }
  #history_frame .history::after {
    width: 20px;
    left: 20px;
  }
  #history_frame .history .block:not(:first-child) {
    margin-top: 20px;
  }
  #history_frame .history .block.history1 {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-left: 50px;
  }
  #history_frame .history .block.history1::after {
    background-size: 14px 14px;
    background-position: 3px 3px;
    top: 2px;
    right: auto;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
  }
  #history_frame .history .block.history1 .year::after {
    display: none;
  }
  #history_frame .history .block.history1 p {
    background: rgba(243, 163, 84, 0.3);
    padding: 5px;
    border-radius: 3px;
  }
  #history_frame .history .block.history2 {
    width: 100%;
    text-align: left;
    margin-left: auto;
    padding-left: 50px;
  }
  #history_frame .history .block.history2::before {
    background-size: 14px 14px;
    background-position: 3px 3px;
    top: 2px;
    right: auto;
    left: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
  }
  #history_frame .history .block.history2 .year::after {
    display: none;
  }
  #history_frame .history .block.history2 p {
    background: rgba(0, 177, 218, 0.3);
    padding: 5px;
    border-radius: 3px;
  }
  #history_frame .history .block.history2 + .history2 {
    margin-top: 20px;
  }
  #history_frame .history .block .year {
    font-size: 16px;
    padding: 2px 0 5px;
  }
  #history_frame .history .block p {
    padding: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  #history_frame .history .col {
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  #history_frame .history .col .mr_s {
    margin-top: 10px;
  }
  #history_frame .history .col .block {
    margin-top: 20px;
  }
  #history_frame .history .col .block:not(:first-child) {
    margin-top: 10px;
  }
  #history_frame .history .col.same .block:nth-child(2) {
    margin-top: 5px;
  }
  #history_frame .history .col.same .block:nth-child(2) .year {
    display: none;
  }
  #history_frame .history .col.same .block.history1::after {
    display: none;
  }
  #history_frame .history .col.same .block.history2::before {
    display: none;
  }
  #history_frame .history .col.same::after {
    content: "";
    background: url("/company/img/dot.svg") no-repeat;
    background-size: 14px 14px;
    background-position: 3px 3px;
    color: #fff;
    position: absolute;
    top: 2px;
    right: auto;
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1;
  }
  #history_frame .history .col.same::before {
    content: "";
    background: url("/company/img/dot.svg") no-repeat;
    background-size: 14px 14px;
    background-position: 3px 3px;
    color: #fff;
    position: absolute;
    top: 2px;
    right: auto;
    left: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1;
  }
  #history_frame .history .col.different .block:nth-child(2) {
    margin-top: 20px;
  }
  #history_frame .start {
    padding: 15px 0;
  }
  #history_frame .start::before {
    width: 40px;
    left: 0;
  }
  #history_frame .start p {
    width: calc(100% - 50px);
    margin-left: auto;
    padding: 5px 10px !important;
    font-size: 1.1rem !important;
    border: none;
  }
  #history_frame .start p br {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .disp_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .disp_pc {
    display: none;
  }
}