<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/***********************共通設定************************/
/*----------------------------------------------------
メディア
----------------------------------------------------*/
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
擬似要素
----------------------------------------------------*/
/*----------------------------------------------------
ボタン

基本のhtml
&lt;a href="" class="btn"&gt;
  &lt;span&gt;私たちについて&lt;/span&gt;
&lt;/a&gt;
----------------------------------------------------*/
/* 初期：bg塗りあり、枠線塗りあり ⇨ hoverで反転 */
/*----------------------------------------------------
縦のライン
----------------------------------------------------*/
.border-line {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF7171), to(#fff));
  background: -o-linear-gradient(#FF7171, #fff);
  background: linear-gradient(#FF7171, #fff);
}

.content {
  max-width: 960px;
  padding: 30px;
  margin: 0 auto;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .content {
    padding: 0 20px;
  }
}

/*----------------------------------------------------
セクションタイトル
----------------------------------------------------*/
.sec_tit {
  /* 750以下  */
}
.sec_tit h2 {
  font-family: "Rubik";
  font-style: italic;
  font-size: 35px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .sec_tit h2 {
    font-size: 60px;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
}
.sec_tit .sub {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.11em;
  line-height: 2;
}
@media all and (max-width: 750px) {
  .sec_tit {
    text-align: left;
  }
}

/*----------------------------------------------------
セクション下のロゴ
----------------------------------------------------*/
.about_logo {
  width: 180px;
  margin: 30px auto;
}

/*----------------------------------------------------
ページキャッチ
----------------------------------------------------*/
.com_catch {
  font-weight: bold;
  margin: 20px 0 60px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_catch {
    margin: 0px 0 60px;
  }
}
.com_catch p {
  font-size: 30px;
  line-height: 1.6;
  margin: 0 0 20px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_catch p {
    margin: 0 0 25px 0;
  }
  .com_catch p br {
    display: none;
  }
}

/*----------------------------------------------------
会社概要
----------------------------------------------------*/
.com_outline {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 1px 5px 10px #ccc;
          box-shadow: 1px 5px 10px #ccc;
  padding: 60px;
  margin: 0 0 120px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_outline {
    padding: 30px;
    margin: 25px 0 60px;
  }
}
.com_outline li {
  text-align: left;
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .com_outline li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (max-width: 750px) {
  .com_outline li {
    border-bottom: dashed 1px #ccc;
  }
}
.com_outline li p {
  font-weight: bold;
  padding: 20px 0 10px;
  font-size: 18px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .com_outline li p {
    border-bottom: dashed 1px #ccc;
    width: 15%;
    padding: 20px 0;
  }
}
.com_outline li span {
  padding: 20px 0;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .com_outline li span {
    width: 83%;
    border-bottom: dashed 1px #ccc;
  }
}

/*----------------------------------------------------
関連企業
----------------------------------------------------*/
.com_relate {
  margin: 0 0 120px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_relate {
    margin: 0 0 60px;
  }
}
.com_relate h3 {
  color: #FF7171;
  font-size: 25px;
  border-bottom: solid 1px #ccc;
  padding: 0 0 20px;
  margin: 0 0 20px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_relate h3 {
    font-size: 22px;
  }
}
.com_relate ul {
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .com_relate ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.com_relate p {
  margin-bottom: 40px;
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .com_relate p {
    height: 75px;
  }
}
@media all and (max-width: 750px) {
  .com_relate p {
    letter-spacing: 0;
  }
}
.com_relate li {
  text-align: left;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 1px 5px 10px #ccc;
  box-shadow: 1px 5px 10px #ccc;
  margin: 20px 0 0px;
  text-align: center;
  padding: 25px 15px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .com_relate li {
    width: 39%;
    margin: 40px 0 0px;
    padding: 40px;
  }
}

/*----------------------------------------------------
沿革
----------------------------------------------------*/
.com_history {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 1px 5px 10px #ccc;
          box-shadow: 1px 5px 10px #ccc;
  padding: 60px;
  margin: 0 0 120px;
  /* 750以下  */
}
@media all and (max-width: 750px) {
  .com_history {
    padding: 30px;
    margin: 25px 0 60px;
  }
}
.com_history li {
  text-align: left;
  /* 751以上 */
  /* 750以下  */
}
@media all and (min-width: 751px) {
  .com_history li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (max-width: 750px) {
  .com_history li {
    text-align: left;
    border-bottom: 1px dashed #ccc;
    padding: 0 0 10px;
  }
}
.com_history li p {
  padding: 10px 0;
  font-weight: bold;
  font-size: 18px;
  /* 751以上 */
}
@media all and (min-width: 751px) {
  .com_history li p {
    width: 15%;
  }
}
.com_history li span {
  /* 751以上 */
  padding: 10px 0;
}
@media all and (min-width: 751px) {
  .com_history li span {
    width: 83%;
  }
}

/*----------------------------------------------------
黒いボタン
----------------------------------------------------*/
a .btn_check {
  margin: 50px;
  font-size: 16px;
  color: #fff;
  background: #000000;
  padding: 10px 60px;
  border-radius: 5px;
  position: relative;
  margin: 40px auto 0px;
  /* 751以上 */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  a .btn_check {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0px;
  }
}
a .btn_check::after {
  content: "";
  position: absolute;
  background-image: url(../images/icon_check.png);
  width: 11px;
  height: 11px;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover .btn_check {
  background: #333333;
}
a:hover .btn_check::after {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

/*----------------------------------------------------
同階層のリンク
----------------------------------------------------*/
.same_prev {
  background-image: url(../images/about/samelink_company.jpg);
  background-position: center;
}
.same_prev::after {
  background: #FF8E2E;
}

.same_next {
  background-image: url(../images/about/samelink_csr.jpg);
  background-position: center;
}
.same_next::after {
  background: #FF7171;
}

.same_link a:hover .same_prev::after {
  background: #b6651f;
}
.same_link a:hover .same_next::after {
  background: #a03d6e;
}

.sublink_wrap li {
  color: #FF7171;
}
/*# sourceMappingURL=company.css.map */</pre></body></html>