@charset "UTF-8";
/* ===================================================================
CSS information

file name  : company.css
author     : Abilive
style info : 会社案内
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* 冪乗計算(乗数は整数のみ)
 *
 * $base: 冪乗される数
 * $exp : 冪乗する回数
 *
 * @return: $baseの$exp乗
 *
 * 例: $base=2, $exp=3 => @return=8
 */
/* 階乗計算
 *
 * $val: 階数
 *
 * @return: $valの階乗
 *
 * 例: $val=5 => @return=120
 */
/* 正弦(sin)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: sin($angle)
 *
 * 例: $angle=30, $degrees=true => @return=0.5
 */
/* 余弦(cos)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: cos($angle)
 *
 * 例: $angle=60, $degrees=true => @return=0.5
 */
/* 正接(tan)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: tan($angle)
 *
 * 例: $angle=45, $degrees=true => @return=1
 */
.con_company .box_contents {
  margin-inline: auto;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents {
    max-width: calc(1280 / 18 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents {
    width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents {
    width: 90%;
  }
}

.con_company .box_page_header {
  position: relative;
}
.con_company .box_page_header:before {
  position: absolute;
  content: "Copy";
}
@media screen and (min-width: 120.0625em) {
  .con_company .box_page_header:before {
    font-size: 15rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .con_company .box_page_header:before {
    font-size: calc(15rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_company .box_page_header:before {
    font-size: calc(12.5rem + (1vw - 0.640625rem) * (9.6385542169));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_page_header:before {
    font-size: calc(6.25rem + (1vw - 0.48rem) * (39.0625));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .con_company .box_page_header:before {
    font-size: calc(3.125rem + (1vw - 0.234375rem) * (12.7551020408));
  }
}
@media screen and (max-width: 23.375em) {
  .con_company .box_page_header:before {
    font-size: calc(2.6666666667rem + (1vw - 0.2rem) * (13.5802469136));
  }
}
.con_company .box_page_header:before {
  color: #23263b;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_page_header:before {
    bottom: 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_page_header:before {
    bottom: 90px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_page_header:before {
    bottom: 45px;
  }
}
.con_company .box_page_header:before {
  right: 0;
  font-family: "sofia-pro", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.con_company #tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #292e49;
  padding: 4px;
  border-radius: 5px;
  margin-bottom: 3rem;
}
.con_company #tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .con_company #tab ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.con_company #tab ul {
  gap: 4px;
  width: 100vw;
}
.con_company #tab ul li {
  list-style: none;
}
@media screen and (min-width: 48em) {
  .con_company #tab ul li {
    padding: 20px 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company #tab ul li {
    padding: 15px 0;
  }
}
.con_company #tab ul li {
  cursor: pointer;
  border-radius: 5px;
  background: #292e49;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
  color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.con_company #tab ul li:hover {
  background: #b7b8bf;
  color: #292e49;
}
.con_company #tab ul li.active {
  background: #ffffff;
  color: #292e49;
  font-weight: bold;
}
.con_company .box_contents_inner-page {
  display: none;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner-page .title_medium {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner-page .title_medium {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner-page .title_medium {
    margin-bottom: 25px;
  }
}
.con_company .box_contents_inner-page.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.con_company .box_contents_inner .company {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.con_company .box_contents_inner .company_contents .sub_tb tr th {
  padding: 0.5em 0;
  border: none;
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .company_contents .sub_tb tr th {
    text-align: left;
  }
}
.con_company .box_contents_inner .company_contents .sub_tb tr td {
  padding: 0.5em 0;
  border: none;
}
.con_company .box_contents_inner .about-us {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.con_company .box_contents_inner .about-us_contents-ceo-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    gap: 70px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    gap: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message {
    gap: 15px;
  }
}
.con_company .box_contents_inner .about-us_contents-ceo-message {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message img {
    max-width: 40%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message img {
    max-width: 80%;
  }
}
.con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 {
  margin-bottom: 30px;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 120.0625em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: calc(2.5rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: calc(1.875rem + (1vw - 0.640625rem) * (2.4096385542));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: calc(1.875rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: calc(1.25rem + (1vw - 0.234375rem) * (2.5510204082));
  }
}
@media screen and (max-width: 23.375em) {
  .con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
    font-size: calc(1.0666666667rem + (1vw - 0.2rem) * (5.4320987654));
  }
}
.con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt h4 span {
  color: #292e49;
}
.con_company .box_contents_inner .about-us_contents-ceo-message .about-us_txt .ceo-name {
  text-align: right;
  margin-top: 25px;
}
.con_company .box_contents_inner .about-us_contents-promise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 20px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner .about-us_contents-promise {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-promise {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 120.0625em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: 2rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: calc(2rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: calc(1.5rem + (1vw - 0.640625rem) * (1.9277108434));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: calc(1.5rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: calc(1.25rem + (1vw - 0.234375rem) * (1.0204081633));
  }
}
@media screen and (max-width: 23.375em) {
  .con_company .box_contents_inner .about-us_contents-promise ul {
    font-size: calc(1.0666666667rem + (1vw - 0.2rem) * (5.4320987654));
  }
}
.con_company .box_contents_inner .about-us_contents-promise ul {
  font-weight: 900;
  color: #292e49;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner .about-us_contents-promise ul li {
    margin-block: 30px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_company .box_contents_inner .about-us_contents-promise ul li {
    margin-block: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise ul li {
    margin-block: 15px;
  }
}
.con_company .box_contents_inner .about-us_contents-promise .bracket {
  width: 84px;
  height: 83px;
  border: 9px solid #b37f4e;
  position: absolute;
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise .bracket {
    width: 40px;
    height: 40px;
    border: 4px solid #b37f4e;
  }
}
.con_company .box_contents_inner .about-us_contents-promise .bracket.top {
  top: 0;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .about-us_contents-promise .bracket.top {
    left: -80px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise .bracket.top {
    left: -40px;
  }
}
.con_company .box_contents_inner .about-us_contents-promise .bracket.top {
  border-bottom: none;
  border-right: none;
}
.con_company .box_contents_inner .about-us_contents-promise .bracket.bottom {
  bottom: 0;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .about-us_contents-promise .bracket.bottom {
    right: -80px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .about-us_contents-promise .bracket.bottom {
    right: -40px;
  }
}
.con_company .box_contents_inner .about-us_contents-promise .bracket.bottom {
  border-top: none;
  border-left: none;
}
.con_company .box_contents_inner .history {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 64.0625em) {
  .con_company .box_contents_inner .history_contents th {
    min-width: 7rem;
  }
}
.con_company .box_contents_inner .history_contents .date-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .history_contents .date-group {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .history_contents .date-group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 48em) {
  .con_company .box_contents_inner .history_contents .date-group .year {
    margin-right: auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .history_contents .date-group .year {
    margin-right: inherit;
  }
}
.con_company .box_contents_inner .history_contents .date-group .month {
  margin-left: auto;
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .history_contents .event-list li {
    text-indent: -50px;
    padding-left: 50px;
  }
  .con_company .box_contents_inner .history_contents .event-list li:not(.sub-event) {
    padding-left: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .history_contents .event-list li .event-month {
    display: inline-block;
    width: 2rem;
    margin-right: 1rem;
    text-align: right;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_company .box_contents_inner .history_contents .event-list .sub-event {
    margin-left: 3em;
    padding-left: 0;
    text-indent: 0px;
  }
}
.con_company .box_contents_inner .history_contents .opac0 {
  opacity: 0;
}

.box_contents_inner-page {
  display: none;
}

.box_contents_inner-page.active {
  display: block;
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 48em) {
  .banner {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.banner li a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.banner li a:hover {
  opacity: 0.8;
}