@charset "UTF-8";
img {
  width: 100%;
}

.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
#section01 {
  width: 100%;
  padding-top: 84px;
  position: relative;
}
@media screen and (max-width:800px) {
  #section01 {
    padding-top: 68px;
  }
}
#section01 .section__in {
  width: 84%;
  max-width: 1100px;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width:800px) {
  #section01 .section__in {
    width: 84%;
    margin: 0 auto;
  }
}
#section01 .title_block .page_title {
  width: 242px;
}
@media screen and (max-width:800px) {
  #section01 .title_block .page_title {
    width: 68%;
  }
  #section01 .title_block .page_title span {
    color: #0D6521;
  }
}
#section01 .title_block .page_title--ja {
  margin-top: 30px;
}
@media screen and (max-width:800px) {
  #section01 .title_block .page_title--ja {
    margin-top: 15px;
    font-size: 6vw;
  }
}

.link_list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 70px auto 0;
  background-color: #fff;
  padding: 15px;
  position: sticky;
  top: 150px;
}
@media screen and (max-width:800px) {
  .link_list {
    display: block;
    position: relative;
    top: auto;
    padding: 15px 0;
  }
}
@media screen and (max-width:800px) {
  .link_list .link_item {
    margin-top: 40px;
  }
  .link_list .link_item:first-child {
    margin-top: 0;
  }
}
.link_list .link_item a {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.12em;
}
.link_list .link_item a .text {
  padding-right: 1em;
}
.link_list .link_item a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10px;
  background: url(../images/company/history/link_ancher.svg) no-repeat center/100% auto;
}
.link_list .link_item a:hover {
  font-weight: bold;
  color: #0D6521;
}
.link_list .link_item a:hover .text span.lines_text {
  background-image: linear-gradient(#0D6521, #0D6521);
}
@media screen and (max-width:800px) {
  .link_list .link_item a:hover {
    font-weight: 400;
    color: #333;
  }
  .link_list .link_item a:hover .text span.lines_text {
    background-image: linear-gradient(#0D6521, #0D6521);
  }
}
.link_list .link_item a.active {
  font-weight: bold;
  color: #0D6521;
}
.link_list .link_item a.active .text span.lines_text {
  background-image: linear-gradient(#0D6521, #0D6521);
}
@media screen and (max-width:800px) {
  .link_list .link_item a.active {
    font-weight: 400;
    color: #333;
  }
  .link_list .link_item a.active .text span.lines_text {
    background-image: linear-gradient(#fff, #fff);
  }
}

#section02 {
  padding: 0 0 220px;
  max-width: 100vw;
}
@media screen and (max-width:800px) {
  #section02 {
    padding: 0 0 160px;
  }
}
#section02 .section__in {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto 0 auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width:800px) {
  #section02 .section__in {
    width: 84%;
    margin: 0 auto;
  }
}
#section02 .company_wrap--outline {
  margin-top: 255px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap--outline {
    margin-top: 70px;
  }
}
#section02 .company_wrap--relation {
  margin-top: 130px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap--relation {
    margin-top: 118px;
  }
}
#section02 .company_wrap--chart {
  margin-top: 90px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap--chart {
    margin-top: 120px;
  }
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .bottom--line {
    font-size: 6.1vw;
  }
}
#section02 .company_wrap .bottom--line span {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  padding-right: 23px;
  /*
  &:after{
  	content: "";
  	position: absolute;
  	bottom: -12px;
  	right: 0;
  	background-color: #27831B;
  	height: 10px;
  	width: 50vw;
  	@media screen and (max-width:800px){
  		bottom: -11px;
  		height: 5px;
  	}
  }
  */
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .bottom--line span {
    padding-right: 0;
  }
}
#section02 .company_wrap .bottom--line span .line_greenbox {
  position: absolute;
  bottom: -12px;
  height: 10px;
  right: 0;
  width: 50vw;
  /*background-color: rgba(255,0,0,0.1);*/
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .bottom--line span .line_greenbox {
    bottom: -11px;
    height: 5px;
  }
}
#section02 .company_wrap .bottom--line span .line_greenbox .line_greenbox__in {
  width: 0%;
  background-color: #0D6521;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
#section02 .company_wrap .bottom--line span .line_greenbox .line_greenbox__in.active {
  width: 100%;
}
#section02 .company_wrap .company_block {
  margin-top: 80px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block {
    margin-top: 52px;
  }
}
#section02 .company_wrap .company_block .company_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
  font-family: "Noto Sans JP", sans-serif;
}
#section02 .company_wrap .company_block .company_item .company_head {
  background-color: #EDEDED;
  padding: 14px 20px;
  min-width: 210px;
  line-height: 175%;
  display: flex;
  align-items: center;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_head {
    min-width: 21vw;
    width: 21vw;
    padding: 16px 2vw;
  }
}
#section02 .company_wrap .company_block .company_item .company_content {
  line-height: 175%;
  background-color: #F8F8F8;
  padding: 14px 20px;
  width: 100%;
  margin-left: 3px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content {
    padding: 16px 2vw;
    line-height: 184%;
  }
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content.company_content--map {
    display: block;
  }
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_text {
  line-height: 190%;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_text {
    line-height: 184%;
  }
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon {
  text-align: center;
  margin-left: 50px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon {
    margin-left: 0;
  }
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0D6521;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  color: #fff;
  font-style: normal;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon a {
    margin-left: 0;
    width: 17vw;
    height: 17vw;
    margin-top: 9px;
  }
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon a:hover {
  /*
  img{
  	translate: 5px;
  }
  */
}
#section02 .company_wrap .company_block .company_item .company_content.company_content--map .map_icon img {
  display: block;
  width: 18px;
  margin-top: 6px;
  transition: all 0.3s ease-out;
}
#section02 .company_wrap .company_block .company_item .company_content .box {
  display: flex;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content .box {
    display: block;
  }
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_text {
  width: 100%;
  margin-right: 16px;
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_img {
  min-width: 200px;
  width: 200px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content .box .box_img {
    min-width: 0;
    width: 100%;
    margin-top: 16px;
  }
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_img.box_img--flex {
  display: flex;
  justify-content: space-between;
  min-width: 410px;
  width: 410px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content .box .box_img.box_img--flex {
    min-width: 0;
    width: 100%;
    display: block;
  }
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_img.box_img--flex figure:first-child {
  margin-right: 10px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content .box .box_img.box_img--flex figure:first-child {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_img figure {
  width: 200px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_item .company_content .box .box_img figure {
    width: 100%;
  }
}
#section02 .company_wrap .company_block .company_item .company_content .box .box_img figcaption {
  margin-top: 8px;
}
#section02 .company_wrap .company_block .docs_img {
  margin-top: 10px;
  max-width: 400px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .docs_img {
    max-width: 100%;
    width: 72%;
  }
}
#section02 .company_wrap .company_block .company_title {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #0D6521;
  border-left: 5px solid #0D6521;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block .company_title {
    font-size: 5.4vw;
    padding: 5px 0;
    padding-left: 0.5em;
  }
}
#section02 .company_wrap .company_block.company_block--firstchild {
  margin-top: 124px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .company_block.company_block--firstchild {
    margin-top: 60px;
  }
}
#section02 .company_wrap .chart {
  margin-top: 70px;
}
@media screen and (max-width:800px) {
  #section02 .company_wrap .chart {
    margin-top: 50px;
  }
}/*# sourceMappingURL=company_history.css.map */