<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* -------------------------------------------------------------------------------
* font
------------------------------------------------------------------------------- */

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), url("../../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../../fonts/NotoSansCJKjp-Regular.otf") format("opentype");
}

@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), url("../../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../../fonts/NotoSansCJKjp-Bold.otf") format("opentype");
}


/* -------------------------------------------------------------------------------
* reset
------------------------------------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  background-color: #eff4fa;
  font-size: 10px;
}

body {
  height: 100%;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  background: #000000;
  color: #000;
  min-width: 1280px;
  font-size: 1.4rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  font-weight: normal;
  font-feature-settings: "palt";
}

ul,
li {
  list-style: none;
}

input[type="submit"] {
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  opacity: 1;
  transition: 0.5s all ease;
  cursor: pointer;
  color: #00a0e9;
}

a:hover {
  opacity: 0.55;
}

input[type="reset"] {
  cursor: pointer;
}

@media only screen and (max-width: 768px){
  body{
    min-width: 320px;
  }
  img{
    max-width: 100%;
  }
}


.l-backToTop {
  position: fixed;
  bottom: 0;
  right: 15px;
}

.l-backToTop a {
  color: #000;
  font-size: 50px;
}
#content {
  position: relative;
}
.l-content {
  margin-bottom: 80px;
}
.l-maxWrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}
.l-wrap {
  width: 1180px;
  margin: 0 auto;
  position: relative;
  height: inherit;
}
.wrap984 {
  width: 984px;
  margin: 0 auto;
  position: relative;
  height: inherit;
}
.wrap1044 {
  width: 1044px;
  margin: 0 auto;
  position: relative;
  height: inherit;
}
.wrap1230 {
  width: 1260px;
  margin: 0 auto;
  position: relative;
  height: inherit;
}


@media only screen and (max-width: 768px){
  .l-content {
    margin-bottom: 40px;
  }
  .l-maxWrap {
    margin: 0 15px;
    padding: 0;
  }
  .l-wrap {
    width: auto;
    margin: 0 15px;
  }
  .wrap984 {
    width: auto;
    margin: 0 15px;
  }
  .wrap1044 {
    width: auto;
    margin: 0 15px;
  }
  .wrap1230 {
    width: auto;
    margin: 0 15px;
  }
}

/* 共通要素
--------------------------------------- */
.c-button01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #009fb9;
  color: #fff;
  min-width: 200px;
  min-height: 50px;
  padding: 12px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-button01:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.c-button02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #999999;
  color: #fff;
  min-width: 200px;
  min-height: 30px;
  padding: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-button02:hover {
  background: #009fb9;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.c-button03 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #009fb9;
  color: #009fb9;
  min-width: 200px;
  min-height: 50px;
  padding: 12px;
  font-size: 2.1rem;
  line-height: 1;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-button03::after {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url('../img/true/icon-plus.svg') no-repeat center / 20px;
}
.c-button03.open::after {
  background: url('../img/true/icon-minus.svg') no-repeat center / 20px;
}
.c-button03:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.secTitle {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}


.midTitle {
  margin-bottom: 50px;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: center;
}

.c-text01 {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px){

  .secTitle{
    font-size: 1.8rem;
    line-height: 1.7777777778;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
  }
  .secTitle:after{
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin-left: -40px;
  }
  .c-text01{
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 30px;
  }

}


/* font-family - utility
--------------------------------------------------------- */
.u-ff-noto {
  font-family: "NotoSansCJKjp", sans-serif;
}

/* PC / SP 出しわけ
--------------------------------------- */
@media only screen and (min-width: 769px){
  .u-hide-pc {
    display: none;
  }
}

@media only screen and (max-width: 768px){
  .u-hide-sp {
    display: none;
  }
}

/* clearfix
--------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* bass
--------------------------------------- */

#container {
  background-color: #000;
}



/* header
--------------------------------------------------------- */
.l-header {
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  height: 0;
  min-width: 1280px;
  z-index: 100;
  position: fixed;
  top:0;
  left: 0;
  overflow: hidden;
}
.l-header {
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}
.l-header.scrolled {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
}


.p-header-area {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
}
.p-header-area__logo {
  width: 220px;
}
.p-header-area__navi {
  display: flex;
  align-items: center;
}
.p-header-area__navi-list {
  display: flex;
}
.p-header-area__navi-list li {
  margin-right: 30px;
}
.p-header-area__navi-list li:last-child {
  margin-right: 40px;
}
.p-header-area__navi-list a {
  display: flex;
  align-items: center;
  height: 70px;
  color: #999999;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}
.p-header-area__navi-list a:hover {
  color: #159bce;
  opacity: 1;
  position: relative;
}


@media only screen and (max-width: 768px){
  .l-header {
    min-width: auto;
    height: 64px;
    display: block;
    position: absolute;
    top: 0;
    left:0;
  }
  .l-header.scrolled {
    position: absolute;
  }
  .p-header-area {
    height: 60px;
    justify-content:center;
  }
  .p-header-area__logo {
    width: 140px;
  }
  .p-header-area__navi {
    display: none;
  }
}

/* footer
--------------------------------------------------------- */
.l-footer {
  background: #000;
  padding: 50px 0 40px;
}
.l-footer .l-wrap::after {
  content: '';
  display:block;
  width: 190px;
  height: 218px;
  background: url('../img/foot-character.png') no-repeat top center;
  position: absolute;
  bottom:-20px;
  left:100px;
}
.p-footer__copy {
  margin-bottom: 40px;
}
.p-footer__copy img {
  width: 400px;
}
.p-footer__logo {
  text-align: center;
  margin-bottom: 30px;
}

.p-footer__logo img {
  width: 200px;
}

.p-footer__social {
  text-align: center;
  font-size: 0;
  margin-bottom: 80px;
}

.p-footer__social &gt; div {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
  color: #000;
}

.p-footer__social &gt; div img {
  width: 22px;
  height: 22px;
}

.p-footer__copy {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #fff;
}

.p-footer__copy a {
  color: #00a0e9;
  text-decoration: underline;
}

.p-footer__copy a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px){
  .l-footer{
    padding: 30px 0 30px;
  }
  .l-footer .l-wrap::after {
    content: none;
  }
  .p-footer__copy {
    margin-bottom: 40px;
  }
  .p-footer__copy img {
    width: 70%;
  }
  .p-footer__logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .p-footer__social{
    text-align: center;
    font-size: 0;
    margin-bottom: 40px;
  }
  .p-footer__social &gt; div{
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
  }
  .p-footer__copy{
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
  }
}



/* mainvisual
--------------------------------------------------------- */
.mvArea {
  width: 100%;
  height: 800px;
  background: #000 url('../img/bg-hexagon-true02-pc.svg') no-repeat top center;
  background-size: 2000px;
}
.mvArea__inner {
  margin: 0 auto;
  width: 1280px;
  position: relative;
}
.mvArea__inner-title {
  position: absolute;
  top:512px;
  left:137px;
}
.mvArea__inner-logo {
  display: block;
  position: absolute;
  top:335px;
  left:731px;
}
.mvArea__inner-link--sp {
  display: none;
}
.mvArea__inner-link--pc {
  display: block;
  width: 100%;
}
.mvArea__inner-link--pc a:hover g {
  opacity: 0;
}

@media only screen and (max-width: 768px){
  .mvArea {
    width: 100vw;
    height: 180vw;
    background: #000 url('../img/bg-hexagon-true02-sp.svg') no-repeat top center;
    background-size: 100%;
  }
  .mvArea__inner {
    margin: 0;
    width: auto;
    position: relative;
  }

  .mvArea__inner-link--pc {
    display: none;
  }
  .mvArea__inner-link--sp {
    display: block;
    width: 100vw;
    height: 180vw;
  }
  .mvArea__inner-link--sp a:hover g {
    opacity: 0;
  }
  .mvArea__inner-title {
    width: 45.33vw;
    position: absolute;
    top:56vw;
    left:6.66vw;
    vertical-align: top;
  }
  .mvArea__inner-title img {
    width: 100%;
    height: auto;
  }
  .mvArea__inner-logo {
    display: none;
  }

}



/* sectionBlock
--------------------------------------------------------- */

.sectionBlock {
  padding: 80px 0;
}
.sectionBlock .title {
  margin-bottom: 20px;
  font-size: 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: center;
}
.sectionBlock .titleText {
  margin-bottom: 60px;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: center;
}
.sectionBlock .subTitle {
  margin-bottom: 40px;
  font-size: 2.8rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  text-align: center;
  color: #009fb9;
}
.sectionBlock .linkArea {
  margin-top: 80px;
}
.sectionBlock .linkArea ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 50px;
}
.sectionBlock .moreArea {
  margin-top: 40px;
}
.sectionBlock .moreArea.hide {
  display: none;
}
.sectionBlock .moreArea .btnWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


@media only screen and (max-width: 768px){
  .sectionBlock {
    padding: 50px 0 60px;
  }
  .sectionBlock .title {
    font-size: 2.2rem;
  }
  .sectionBlock .titleText {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
  .sectionBlock .subTitle {
    margin-bottom: 40px;
    font-size: 2.1rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .sectionBlock .linkArea {
    margin-top: 60px;
  }
  .sectionBlock .linkArea ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 50px;
  }

}

/* 動画サムネイルのホバー時 */
.thumbWrap {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.thumbWrap:hover {
  opacity: 1;
}
.thumbWrap:hover::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url('../img/true/movie_cover.svg') no-repeat top center;
  background-size: 100%;
  position: absolute;
  top:0;
  left:0;
  z-index: 2;

}

/* sec01
--------------------------------------------------------- */

.sec01 {
  padding: 110px 0 120px;
  overflow: hidden;
}
.sec01 .l-wrap {
  position: relative;
}
.sec01 .title {
  margin-bottom: 36px;
}
.sec01 .title img {
  width: 770px;
}
.sec01 .text {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.03em;
  text-align: center;
}
.sec01 .imageText {
  margin-top: 36px;
  text-align: center;
}
.sec01 .imageText img {
  width: 690px;
}
.sec01 .element {
  position: absolute;
  bottom: -20px;
  right: -240px;
  width: 430px;
}


@media only screen and (max-width: 768px){

  .sec01 {
    padding: 60px 0 40px;
  }
  .sec01 .title img {
    width: 270px;
  }
  .sec01 .text {
    font-size: 1.5rem;
    line-height: 2.1;
  }
  .sec01 .imageText {
    margin-top: 46px;
  }
  .sec01 .imageText img {
    width: 303px;
  }
  .sec01 .element {
    margin-top: 10px;
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
  }

}



/* sec02
--------------------------------------------------------- */

.sec02 {
  overflow: hidden;
}
.sec02 .title img {
  width: 437px;
}
.sec02 .titleText {
  margin-bottom: 32px;
}
.sec02 .thumbList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 0;
  margin: 0 auto;
}
.sec02 .box {
  width: calc(100% / 3);
  text-align: center;
  color: #999;
}
.sec02 .box dt {
  width: 288px;
  margin: 28px auto 15px;
  position: relative;
}
.sec02 .box dt img {
  max-width: 100%;
}
.sec02 .box dd {
  font-size: 1.3rem;
  line-height: 1.6;
}
.sec02 .box .imageTag {
  position: absolute;
  top: -28px;
  right: -30px;
  z-index: 3;
}
.sec02 .box .imageTag img {
  width: 60px;
}


@media only screen and (max-width: 768px){

  .sec02 .title img {
    width: 232px;
  }
  .sec02 .titleText {
    margin-bottom: 12px;
  }
  .sec02 .thumbList {
    display: block;
  }
  .sec02 .box {
    width: 100%;
    padding-top: 28px;
    margin-bottom: 12px;
  }
  .sec02 .box dt {
    margin: 0 auto 15px;
  }
  .sec02 .box dd {
    font-size: 1.4rem;
    line-height: 1.7;
  }

}



/* sec03
--------------------------------------------------------- */

.sec03 .title img {
  width: 416px;
}
.sec03 .titleText {
  margin-bottom: 40px;
}
.sec03 .subTitle {
  margin-bottom: 10px;
}
.sec03 .textArea {
  text-align: center;
}
.sec03 .textArea p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.sec03 .textArea + .textArea {
  margin-top: 80px;
}
.sec03 .imageGraph {
  margin-bottom: 40px;
  text-align: center;
}
.sec03 .imageGraph img {
  width: 1048px;
}
.sec03 .medalList {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}
.sec03 .medalList li {
  width: calc(100%  / 6);
  min-width: 190px;
  text-align: center;
}
.sec03 .medalList .medal {
  margin-bottom: 10px;
}
.sec03 .medalList .medal .number {
  display: none;
}
.sec03 .medalList .medal img {
  width: 192px;
}
.sec03 .medalList .text {
  font-size: 1rem;
  color: #999;
  letter-spacing: -0.05em;
}
.sec03 .sourceText {
  display: none;
}


@media only screen and (max-width: 768px){

  .sec03 .wrap1230 {
    margin: 0 20px;
  }
  .sec03 .title img {
    width: 221px;
  }
  .sec03 .subTitle {
    margin-bottom: 30px;
  }
  .sec03 .textArea {
    text-align: left; 
  }
  .sec03 .textArea + .textArea {
    margin-top: 60px;
  }
  .sec03 .imageGraph {
    margin-bottom: 35px;
  }
  .sec03 .imageGraph img {
    width: 100%;
  }
  .sec03 .medalList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 16px;
    margin-top: 35px;
  }
  .sec03 .medalList li {
    width: auto;
    min-width: auto;
  }
  .sec03 .medalList .medal {
    margin-bottom: 0;
    position: relative;
  }
  .sec03 .medalList .medal .number {
    display: block;
    font-size: 1rem;
    position: absolute;
    bottom:0;
    right: -4px;
  }
  .sec03 .medalList .medal img {
    width: 95px;
  }
  .sec03 .sourceText {
    display: block;
    margin-top: 40px;
  }
  .sec03 .sourceText .text {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #999;
  }
  .sec03 .sourceText .text .number {
    display: inline-block;
    margin-right: 8px;
  }

}



/* sec04
--------------------------------------------------------- */

.sec04 .title img {
  width: 521px;
}
.sec04 .titleText {
  margin-bottom: 32px;
}
.sec04 .thumbList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 0;
  margin: 0 auto;
}
.sec04 .box {
  width: calc(100% / 3);
  text-align: center;
  color: #fff;
}
.sec04 .box.moreHide {
  display: none;
}
.sec04 .box dt {
  width: 288px;
  margin: 28px auto 12px;
  position: relative;
}
.sec04 .box dt img {
  max-width: 100%;
}
.sec04 .box dd {
  font-size: 1.3rem;
  line-height: 1.6;
}
.sec04 .box .imageTag {
  position: absolute;
  top: -28px;
  right: -30px;
  z-index: 3;
}
.sec04 .box .imageTag img {
  width: 60px;
}


@media only screen and (max-width: 768px){

  .sec04 .wrap1044 {
    margin: 0 auto;
  }
  .sec04 .title img {
    width: 277px;
  }
  .sec04 .titleText {
    margin-bottom: 12px;
    padding: 0 15px;
  }
  .sec04 .thumbList {
    display: block;
    overflow: hidden;
    padding: 0 15px;
  }
  .sec04 .box {
    width: 100%;
    padding-top: 28px;
    margin-bottom: 12px;
  }
  .sec04 .box:last-child {
    margin-bottom: 0;
  }
  .sec04 .box dt {
    margin: 0 auto 12px;
  }
  .sec04 .box dd {
    font-size: 1.4rem;
    line-height: 1.7;
  }

}



/* sec05
--------------------------------------------------------- */

.sec05 .l-wrap {
  width: 1160px;
}
.sec05 .title img {
  width: 541px;
}
.sec05 .subTitle {
  margin-bottom: 40px;
}
.sec05 .wrap01 {
  margin-bottom: 40px;
}
.sec05 .newShowcaseList {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.sec05 .newShowcaseList .box{
  width: 360px;
  background-color: #fff;
}
.sec05 .newShowcaseList .box a {
  display: block;
}
.sec05 .newShowcaseList .box .image img {
  width: 100%;
}
.sec05 .newShowcaseList .box .textArea {
  padding: 0 20px 20px 20px;
  border-right:1px solid #e0e0e0;
  border-bottom:1px solid #e0e0e0;
  border-left:1px solid #e0e0e0;
}
.sec05 .newShowcaseList .box .companyLogo {
  height: 65px;
  display: flex;
  align-items:center;
}
.sec05 .newShowcaseList .box .companyType {
  margin-bottom: 5px;
  font-size: 1.4rem;
  color: #999999;
}
.sec05 .newShowcaseList .box .companyName {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}
.sec05 .newShowcaseList .box .companyNumber {
  display: inline-block;
  padding: 0 10px;
  height: 28px;
  font-size: 1.4rem;
  line-height: 28px;
  color: #00818e;
  background-color: #d3f1f2;
  border-radius: 28px;
}
.sec05 .sortFilter {
  margin-bottom: 40px;
  padding: 12px 20px;
  width: 100%;
  background-color: #e7f2f2;
  display: flex;
  align-items: center;
}
.sec05 .sortFilter .fiterTitle {
  width: 180px;
  font-size: 1.5rem;
  position: relative;
}
.sec05 .sortFilter .fiterTitle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #00818e;
  border-right: solid 2px #00818e;
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(135deg);
}
.sec05 .sortFilter .fiterTitle.open::after {
  transform: rotate(-45deg);
  margin-top: -3px;
}
.sec05 .sortFilter .fiterTitle img {
  margin-right: 4px;
  width: 14px;
}
.sec05 .sortFilter .listWrap {
  padding-left: 20px;
  width: calc(100% - 180px);
  display: flex;
  justify-content: space-between;
  border-left:1px solid #a9d5d8;
}
.sec05 .sortFilter .btnList {
  display: flex;
}
.sec05 .sortFilter .btnList li {
  margin-right: 16px;
}
.sec05 .sortFilter .listWrap .btn {
  display: inline-block;
  padding: 0 15px;
  height: 36px;
  line-height: 36px;
  font-size: 1.5rem;
  background-color: #fff;
  border-radius: 36px;
}
.sec05 .sortFilter .listWrap .btn.selected {
  background-color: #009fb9;
  color: #fff;
}
.sec05 .sortFilter .listWrap .btn.selected .number {
  background-color: #fff;
  color: #009fb9;
}
.sec05 .sortFilter .listWrap .btn:hover {
  cursor: pointer;
  opacity: 0.7;
}
.sec05 .sortFilter .listWrap .btn span {
  display: inline-block;
  margin-left: 4px;
  padding: 0 4px;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #009fb9;
  border-radius: 22px;
}
.sec05 .sortFilter .listWrap .allBtn {
  padding-left: 20px;
  border-left:1px solid #a9d5d8;
}

.sec05 .filterList {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 0 17.5px;
}
.sec05 .filterList .box {
  margin-bottom: 35px;
  width: 218px;
}
.sec05 .filterList .box.hide,
.sec05 .filterList .box.moreHide {
  display: none;
}
.sec05 .filterList .box a {
  display: block;
}
.sec05 .filterList .box .image {
  margin-bottom: 12px;
  width: 100%;
  
}
.sec05 .filterList .box .image img {
  width: 100%;
  vertical-align:top;
  border: 1px solid #e0e0e0;
}
.sec05 .filterList .box .companyType {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: #999;
}
.sec05 .filterList .box .companyName {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}
.sec05 .filterList .box .companyNumber {
  display: inline-block;
  padding: 0 10px;
  min-height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
  color: #00818e;
  background-color: #d3f1f2;
  border-radius: 24px;
}

@media only screen and (max-width: 768px){
  .sec05 .l-wrap {
    width: auto;
  }
  .sec05 .subTitle {
    margin-bottom: 20px;
  }
  .sec05 .title img {
    width: 287px;
  }
  .sec05 .newShowcaseList {
    display: block;
  }
  .sec05 .newShowcaseList .box {
    margin-bottom: 15px;
    width: 100%;
  }
  .sec05 .newShowcaseList .box .companyName {
    font-size: 1.8rem;
  }
  .sec05 .sortFilter {
    padding: 0;
    width: 100%;
    display: block;
  }
  .sec05 .sortFilter .fiterTitle {
    padding: 0 15px;
    width: 100%;
    height: 56px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  .sec05 .sortFilter .listWrap {
    display: none;
    padding: 0 15px 15px 15px;
    width: 100%;
    border-left:none;
  }
  .sec05 .sortFilter .listWrap.open {
    display: block;
  }
  .sec05 .sortFilter .btnList {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    border-top:1px solid #a9d5d8;
  }
  .sec05 .sortFilter .listWrap li {
    margin-bottom: 15px;
  }
  .sec05 .sortFilter .listWrap .btn {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
    font-size: 1.3rem;
    border-radius: 30px;
  }
  .sec05 .sortFilter .listWrap .btn span {
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
  }
  .sec05 .sortFilter .listWrap .allBtn {
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
    border-top:1px solid #a9d5d8;
  }

  .sec05 .filterList {
    display: block;
  }
  .sec05 .filterList .box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
  }
  .sec05 .filterList .box a {
    display: flex;
  }
  .sec05 .filterList .box .image {
    width: 41.159%;
    min-width: 142px;
    height: auto;
  }
  .sec05 .filterList .box .textArea {
    width: 58.84%;
    padding-left: 20px;
  }
  .sec05 .filterList .box .companyName {
    margin-bottom: 6px;
  }
  .sec05 .filterList .box .companyNumber {
    
  }
}



/* sec06
--------------------------------------------------------- */

.sec06 {
  padding-top: 100px;
}
.sec06 .title img {
  width: 451px;
}
.sec06 .thumbList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px 0;
  margin: 0 auto;
}
.sec06 .box {
  width: calc(100% / 3);
  text-align: center;
  color: #fff;
}
.sec06 .box dt {
  width: 288px;
  margin: 0 auto 12px;
  position: relative;
}
.sec06 .box dt img {
  max-width: 100%;
}
.sec06 .box dd {
  font-size: 1.3rem;
  line-height: 1.6;
}


@media only screen and (max-width: 768px){

  .sec06 {
    padding-top: 50px;
  }
  .sec06 .title img {
    width: 242px;
  }
  .sec06 .thumbList {
    gap: 40px 0;
  }
  .sec06 .box {
    width: 100%;
  }
  .sec06 .box dd {
    font-size: 1.4rem;
    line-height: 1.7;
  }

}



/* sec07
--------------------------------------------------------- */

.sec07 {
  overflow: hidden;
}
.sec07 .wrap984 {
  position: relative;
}
.sec07 .title img {
  width: 605px;
}
.sec07 .titleText {
  margin-bottom: 30px;
}
.sec07 .textArea {
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
.sec07 .imageLogo {
  margin-top: 12px;
  text-align: center;
}
.sec07 .imageLogo img {
  width: 163px;
}
.sec07 .imageList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.sec07 .box img {
  width: 180px;
}
.sec07 .linkArea {
  margin-top: 25px;
  position: relative;
  z-index: 2;
}
.sec07 .linkArea + .linkArea {
  margin-top: 80px;
}
.sec07 .element01 {
  position: absolute;
  width: 320px;
  top: 160px;
  left: -200px;
}
.sec07 .element02 {
  position: absolute;
  width: 148px;
  bottom: 0;
  right: -74px;
}


@media only screen and (max-width: 768px){

  .sec07 {
    padding-top: 60px;
  }
  .sec07 .title img {
    width: 321px;
  }
  .sec07 .titleText {
    margin-bottom: 40px;
  }
  .sec07 .imageLogo {
    margin-top: 25px;
  }
  .sec07 .imageList {
    max-width: 400px;
    margin: 15px auto 0;
    justify-content: space-between;
    gap: 20px;
  }
  .sec07 .box {
    width: calc((100% - 20px) / 2);
  }
  .sec07 .box img {
    width: 100%;
    max-width: 163px;
  }
  .sec07 .linkArea {
    margin-top: 40px;
  }
  .sec07 .linkArea + .linkArea {
    margin-top: 60px;
  }
  .sec07 .element01 {
    position: absolute;
    top: auto;
    bottom: 86px;
    left: -70px;
    width: 202px;
  }
  .sec07 .element02 {
    display: none;
  }

}



/* sec
--------------------------------------------------------- */
.sec01,
.sec03,
.sec05,
.sec07 {
  background: #fff;
}
.sec02 .titleText,
.sec04 .titleText,
.sec06 .titleText {
  color: #fff;
}



/* 
--------------------------------------------------------- */

.companyArea {
  position: relative;
  padding: 65px 0 ;
  color: #fff;
}

.companyArea .companyInfo {
  padding: 35px 60px;
  border: 1px solid #5d5d5d;
  background: rgba(51, 51, 51, .8);
}
.companyArea .companyInfo .title{
  margin-bottom: 35px;
  padding-bottom: 35px;
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #5d5d5d;
}
.companyArea .companyInfo .wrap01 {
  display: table;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #5d5d5d;
}
.companyArea .companyInfo .wrap01 .imageBox {
  display: table-cell;
  width: 300px;
  text-align: center;
  vertical-align: middle;
}
.companyArea .companyInfo .wrap01 .imageBox img {
  width: 240px;
}
.companyArea .companyInfo .wrap01 h4 {
  margin-bottom: 15px;
  font-size: 21px;
  line-height: 1.86;
}
.companyArea .companyInfo .wrap01 .right {
  display: table-cell;
  padding: 0 20px;
  font-size: 14px;
  line-height: 2;
}
.companyArea .companyInfo .wrap02 {
  margin-bottom: 35px;
  padding: 0 20px 35px;
  border-bottom: 1px solid #5d5d5d;
}
.companyArea .companyInfo .wrap02 h4 {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
}
.companyArea .companyInfo .wrap02 dl {
  margin-right: 30px;
  width: 316px;
  float: left;
  font-size: 12px;
  line-height: 1.5;
}
.companyArea .companyInfo .wrap02 dl:last-child {
  margin-right: 0;
}
.companyArea .companyInfo .wrap02 dl dt{
  clear: both;
  font-weight: bold;
  float: left;
}
.companyArea .companyInfo .wrap02 dl dd{
  margin-bottom: 10px;
  padding-left: 80px;
}
.companyArea .companyInfo .wrap02 dl dd.short{
  padding-left: 110px;
}
.companyArea .companyInfo .wrap02 dl dd a{
  color: #fff;
}
.companyArea .companyInfo .wrap02 dl dd a:hover{
  text-decoration: underline;
}
.companyArea .linkArea {
  padding-bottom: 20px;
}
.companyArea .linkArea ul {
  text-align: center;
}
.companyArea .linkArea .btn {
  display: inline;
}
.companyArea .linkArea .c-button01 {
  display: inline-block;
  margin: 0 50px;
  min-width: 320px;
  background: #159bce;
  padding: 20px 30px;
  text-align: center;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  border-radius: 2px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, .4);
}


@media only screen and (max-width: 768px){

  .companyArea {
    padding: 30px 0;
  }
  .companyArea .companyInfo {
    padding: 15px 20px;
  }
  .companyArea .companyInfo .title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  .companyArea .companyInfo .wrap01{
    display:block;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .companyArea .companyInfo .wrap01 .imageBox,
  .companyArea .companyInfo .wrap01 .right {
    display:block;
    width: auto;
  }
  .companyArea .companyInfo .wrap01 .imageBox {
    margin-bottom: 20px;
  }
  .companyArea .companyInfo .wrap01 .imageBox img{
    width: 120px;
  }
  .companyArea .companyInfo .wrap01 .right {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.75;
  }
  .companyArea .companyInfo .wrap01 h4 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
  }
  .companyArea .companyInfo .wrap02 {
    margin-bottom: 20px;
    padding: 0 0 20px 0;
  }
  .companyArea .companyInfo .wrap02 h4 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
  }
  .companyArea .companyInfo .wrap02 dl {
    width: 100%;
  }
  .companyArea .linkArea {
    padding: 0;
  }
  .companyArea .linkArea .btn {
    display: block;
  }
  .companyArea .linkArea .c-button01 {
    display: block;
    width: 80%;
    margin: 0 auto 20px;
    padding: 15px 30px;
    min-width: auto;
    font-size: 14px;
  }

}
</pre></body></html>