@charset "UTF-8";
/* ==========================================================================//
//
// 会社を知る
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
.page_body section {
  padding: 56px 0;
}
@media all and (min-width: 751px) {
  .page_body section {
    padding: 100px 0;
  }
}
.page_body section .sec_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
@media all and (min-width: 751px) {
  .page_body section .sec_ttl {
    margin-bottom: 76px;
  }
}
.page_body section .sec_ttl .en {
  color: #F7AD00;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 70px;
}
@media all and (min-width: 751px) {
  .page_body section .sec_ttl .en {
    font-size: 100px;
  }
}
.page_body section .sec_ttl .jp {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-top: -1.8em;
}
@media all and (min-width: 751px) {
  .page_body section .sec_ttl .jp {
    font-size: 24px;
  }
}
.page_body section:nth-child(even) {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #fff 0, #fff 50px, #F7AD00 50px, #F7AD00 calc(100% - 50px), #fff calc(100% - 50px), #fff 100%);
}
.page_body section:nth-child(even)::before, .page_body section:nth-child(even)::after {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url(../../images/common/bg_wave.svg);
  background-size: 78px auto;
  background-repeat: repeat-x;
  background-position: center top;
}
@media all and (min-width: 751px) {
  .page_body section:nth-child(even)::before, .page_body section:nth-child(even)::after {
    height: 171px;
    background-size: 142px auto;
    background-position: left top;
  }
}
.page_body section:nth-child(even)::before {
  top: 0;
}
.page_body section:nth-child(even)::after {
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page_body section:nth-child(even) .sec_ttl .en {
  color: #fff;
}

/* outline
---------------------------------------------------------- */
section.outline .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid #2e2c2c;
  padding: 0 10px 20px;
}
@media all and (min-width: 751px) {
  section.outline .list > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding: 0 36px 24px;
  }
}
section.outline .list > li:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  section.outline .list > li:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media all and (min-width: 751px) {
  section.outline .list > li .head {
    width: 120px;
  }
}
@media all and (min-width: 751px) {
  section.outline .list > li .cont {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (hover: hover) {
  section.outline .list > li .cont a {
    background-image: -webkit-gradient(linear, left top, right top, from(#222222), to(#222222));
    background-image: linear-gradient(90deg, #222222, #222222);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.4s, color 0.4s;
    transition: background-size 0.4s, color 0.4s;
  }
  section.outline .list > li .cont a:hover {
    background-size: 100% 1px;
    color: #222222;
  }
}

/* access
---------------------------------------------------------- */
section.access .map {
  aspect-ratio: 10/6;
}
section.access .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.access p {
  margin-top: 16px;
}
section.access .map_btn {
  --default_color: #F7AD00;
  --font_color: #fff;
  margin-inline: auto;
  margin-top: 40px;
  width: min(400px, 100%);
}
@media all and (min-width: 751px) {
  section.access .map_btn {
    width: 182px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  section.access .map_btn {
    width: 140px;
  }
}
section.access .map_btn a {
  display: block;
  background-color: var(--default_color);
  border: 2px solid var(--font_color);
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: var(--font_color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 1.2em;
}
@media all and (min-width: 751px) {
  section.access .map_btn a {
    padding: 1.1em;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  section.access .map_btn a {
    font-size: 15px;
    padding: 0.9em;
  }
}
section.access .map_btn a span {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
section.access .map_btn a span::before {
  position: absolute;
  content: "";
  background-image: url(../../images/common/icon/link_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 12px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  section.access .map_btn a, section.access .map_btn a span::before {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  section.access .map_btn a:hover {
    color: var(--default_color);
    background-color: var(--font_color);
  }
  section.access .map_btn a:hover span::before {
    background-image: url(../../images/common/icon/link.svg);
  }
}

/* media
---------------------------------------------------------- */
section.media .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  flex-flow: row wrap;
}
@media all and (min-width: 751px) {
  section.media .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
section.media .item {
  background-color: #F7AD00;
  text-align: center;
  padding: 10px;
}
@media all and (min-width: 751px) {
  section.media .item {
    width: calc(33.3333% - 20px);
  }
}
section.media .item .content {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: #F7AD00;
  background-image: linear-gradient(45deg, #fff 10px, transparent 0), linear-gradient(-45deg, #fff 10px, transparent 0), linear-gradient(135deg, #fff 10px, transparent 0), linear-gradient(-135deg, #fff 10px, transparent 0);
  padding: 22px 4px;
}
@media all and (min-width: 751px) {
  section.media .item .content {
    padding: 10px 4px;
  }
}
section.media .item .date {
  font-size: 16px;
  margin-bottom: 10px;
}
section.media .item .ttl {
  font-weight: bold;
  font-size: 20px;
}

/* history
---------------------------------------------------------- */
section.history .history_wrap {
  position: relative;
}
section.history .history_wrap .readmore_btn {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  cursor: pointer;
  z-index: 1;
}
@media all and (min-width: 751px) {
  section.history .history_wrap .readmore_btn {
    height: 100px;
  }
}
section.history .history_wrap .readmore_btn::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../../images/common/icon/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 250/143;
  width: 20px;
}
@media all and (min-width: 751px) {
  section.history .history_wrap .readmore_btn::before {
    width: 24px;
  }
}
section.history .history_wrap .readmore_btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#F7AD00));
  background: linear-gradient(transparent 0%, #F7AD00 100%);
  pointer-events: none;
  z-index: -1;
}
@media all and (min-width: 751px) {
  section.history .history_wrap .readmore_btn::after {
    height: 680px;
  }
}
@media (hover: hover) {
  section.history .history_wrap .readmore_btn::before {
    -webkit-transition: top 0.4s;
    transition: top 0.4s;
  }
  section.history .history_wrap .readmore_btn:hover::before {
    top: 60%;
  }
}
section.history .history_wrap input[type=checkbox] {
  display: none;
}
section.history .history_wrap .history_list {
  overflow: hidden;
  height: 500px;
}
@media all and (min-width: 751px) {
  section.history .history_wrap .history_list {
    height: 800px;
  }
}
section.history .history_wrap input[type=checkbox]:checked ~ .history_list {
  height: auto;
}
section.history .history_wrap input[type=checkbox]:checked ~ label {
  display: none;
}
section.history .history_list {
  position: relative;
}
section.history .history_list::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 2px;
  height: calc(100% - 40px);
  top: 20px;
  left: 107px;
}
@media all and (min-width: 751px) {
  section.history .history_list::before {
    height: calc(100% - 60px);
    top: 32px;
    left: 166px;
  }
}
section.history .history_list .history_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item {
    gap: 20px;
    padding-bottom: 30px;
  }
}
section.history .history_list .history_item:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item:not(:last-child) {
    margin-bottom: 30px;
  }
}
section.history .history_list .history_item .year {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item .year {
    font-size: 50px;
  }
}
section.history .history_list .history_item .year span {
  font-size: 0.53em;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item .year span {
    font-size: 0.48em;
  }
}
section.history .history_list .history_item .content .month_list .month_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1.77;
  padding-left: 22px;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item .content .month_list .month_item {
    line-height: 1.75;
  }
}
section.history .history_list .history_item .content .month_list .month_item:not(:last-child) {
  margin-bottom: 1em;
}
section.history .history_list .history_item .content .month_list .month_item::before {
  position: absolute;
  content: "";
  background-color: #fff;
  aspect-ratio: 1;
  width: 8px;
  border-radius: 50%;
  top: 0.6em;
  left: 0;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item .content .month_list .month_item::before {
    width: 10px;
  }
}
section.history .history_list .history_item .content .month_list .month_item .month {
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.6em;
}
@media all and (min-width: 751px) {
  section.history .history_list .history_item .content .month_list .month_item .month {
    width: 2.8em;
  }
}
section.history .history_list .history_item .content .month_list .month_item p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* data
---------------------------------------------------------- */
section.data .block:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  section.data .block:not(:last-child) {
    margin-bottom: 60px;
  }
}
section.data .ttl {
  text-align: center;
  color: #F7AD00;
  font-size: 22px;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  section.data .ttl {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
section.data .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media all and (min-width: 751px) {
  section.data .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media all and (min-width: 751px) {
  section.data .list .item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media all and (min-width: 751px) {
  section.data .employee .list {
    gap: 40px;
  }
  section.data .environment .list {
    gap: 32px;
  }
}