@charset "UTF-8";
/* ------------------
# font
------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;&display=swap");
/* ------------------
# base
------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, audio, video {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  height: auto;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: auto;
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5 !important;
}

img {
  width: 100%;
  vertical-align: top;
}

img,
a img {
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
  background-color: transparent;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul,
ol {
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  clear: both;
  overflow: visible;
  box-sizing: content-box;
  height: 0;
  margin: 0;
  color: inherit;
  border-top-width: 1px;
}

b,
strong {
  font-weight: bold;
  font-weight: 600;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  border: none;
}

td,
th {
  padding: 0;
  text-align: left;
  border: none;
}

:root {
  --main-red: #e4002b;
  --bg:#f9f9f9;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

main {
  font-size: 17px;
}

.hdg--lv2-01 {
  font-size: 30px;
  font-weight: bold;
  color: var(--main-red);
}

.hdg--lv2-02 {
  font-size: 28px;
  font-weight: 500;
  color: var(--main-red);
}
.hdg--lv2-02:after {
  display: block;
  content: "";
  width: 32px;
  height: 2px;
  margin-top: 8px;
  background: var(--main-red);
}

.hdg--lv2-02.ct {
  text-align: center;
}
.hdg--lv2-02.ct:after {
  margin: 8px auto 0;
}

.bg-type01 {
  margin-top: 100px;
  padding: 96px 0;
  background: var(--bg);
}

.btn-type01 {
  position: relative;
  display: block;
  width: 220px;
  padding: 18px 30px;
  background: var(--main-red);
  border: 3px solid var(--main-red);
  border-radius: 50px;
  color: var(--main-red);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.btn-type01:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 21px;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  z-index: 1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: border-color .65s ease;
  transition: border-color .65s ease;
}

   /*
 .btn-type01:after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background: url(/dx/cat_assets/img/icon_arrow_on.svg) no-repeat 0 0;
  transform: translateY(-50%);
}  */

@media screen and (min-width: 769px) {
  a {
    transition: all 0.5s ease;
  }
  .btn-type01 {
    transition: all 0.5s ease;
  }
  .btn-type01:hover,
  a:hover .btn-type01 {
    background: #fff;
    text-decoration: none;
    color: var(--main-red);
  }
  .btn-type01:hover:before,
  a:hover .btn-type01:before {
    border-color: var(--main-red);
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  main {
    font-size: 3.7333333333vw;
  }
  .hdg--lv2-01 {
    font-size: 7.4666666667vw;
  }
  .hdg--lv2-02 {
    font-size: 7.4666666667vw;
  }
  .hdg--lv2-02:after {
    width: 8.5333333333vw;
    margin-top: 2.1333333333vw;
  }
  .hdg--lv2-02.ct:after {
    margin: 2.1333333333vw auto 0;
  }
  .bg-type01 {
    margin-top: 13.3333333333vw;
    padding: 14.9333333333vw 0;
  }
  .btn-type01 {
    width: 58.6666666667vw;
    padding: 4.8vw 8vw;
    font-size: 4vw;
  }
  .btn-type01:before {
    right: 5.6vw;
    width: 2.13333333vw;
    height: 2.13333333vw;
  }
}
/*mv*/
.mv {
  width: 100%;
  height: 450px;
  margin-top: -50px;
}

.webp .mv {
  background: #e3eaf1 url(/dx/cat_assets/img/main-visual_img_pc.jpg.webp) no-repeat center 0/1532px 450px;
}

.no-webp .mv {
  background: url(/dx/cat_assets/img/main-visual_img_pc.jpg) no-repeat center 0/1532px 450px;
}

.p-second-hdg--lv1 {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 190px;
  line-height: 1.5;
}
.p-second-hdg--lv1 .r-jp {
  font-size:30px;
  font-weight: normal;
}
.p-second-hdg--lv1:after {
  display: none;
}
nav.l-main__inr {
  margin-top: 185px;
}
nav.l-main__inr ul {
  display: flex;
  justify-content: space-between;
}
nav.l-main__inr ul li {
  width: 242px;
}
nav.l-main__inr ul li a {
  position: relative;
  display: block;
  padding: 18px 30px;
  border-radius: 50px;
  background: #fff;
  text-decoration: none;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
  font-size: 15px;
}
nav.l-main__inr ul li a:after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(/dx/cat_assets/img/icon_arrow_off.svg) no-repeat 0 0;
}

@media screen and (min-width: 769px) {
  nav.l-main__inr ul li a {
    transition: all 0.5s ease;
  }
  nav.l-main__inr ul li a:hover {
    background: #e4002b;
    color: #fff;
  }
  nav.l-main__inr ul li a:hover:after {
    background: url(/dx/cat_assets/img/icon_arrow_on.svg) no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .webp .mv {
    background: url(/dx/cat_assets/img/main-visual_img_sp.jpg.webp) no-repeat center 0/contain;
  }
  .no-webp .mv {
    background: url(/dx/cat_assets/img/main-visual_img_sp.jpg) no-repeat center 0/contain;
  }
  .p-second-hdg--lv1 {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 17.3333333333vw;
    text-align: center;
  }
  .p-second-hdg--lv1 .r-en {
    font-size: 3.7333333333vw;
  }
  .p-second-hdg--lv1 .r-jp {
    margin-top: 2.6666666667vw;
    font-size: 6.4vw;
  }
  .p-second-hdg--lv1:after {
    display: none;
  }
  nav.l-main__inr {
    margin-top: 79.4666666667vw;
  }
  nav.l-main__inr ul {
    flex-wrap: wrap;
    padding-bottom: 5.3333333333vw;
  }
  nav.l-main__inr ul li {
    width: 42.9333333333vw;
    margin-top: 5.3333333333vw;
  }
  nav.l-main__inr ul li a {
    padding: 3.7333333333vw 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
  nav.l-main__inr ul li a:after {
    right: 5.3333333333vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.topics {
  width: 100%;
  margin-top: 150px;
}

.topics .l-main__inr {
  display: flex;
  gap: 52px;
  align-items: center;
  width: 1040px;
  padding: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.topics .l-main__inr a .btn-type01:before{
  display: none;
}
.topics .l-main__inr a .btn-type01:after{
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background: url(/dx/cat_assets/img/ico_document_pdf-01_on.svg) no-repeat 0 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .topics .l-main__inr a:hover{
    text-decoration: none;
  }
  .topics .l-main__inr a:hover .topics-detail-box-content-txt{
    text-decoration: underline;
  }
  .topics .l-main__inr a:hover img {
    opacity: 0.8;
  }
  .topics .l-main__inr a:hover .btn-type01{
  text-decoration: none;
  color: var(--main-red);
  }
  .topics .l-main__inr a:hover .btn-type01:after{
    background: url(/dx/cat_assets/img/ico_document_pdf-01_off.svg) no-repeat 0 0;
  }
}
.topics-detail-box {
  display: grid;
  grid-template-columns: auto 375px;
  -moz-column-gap: 52px;
       column-gap: 52px;
  row-gap: 28px;
  padding-left: 52px;
  border-left: 1px solid #ddd;
}
.topics-detail-box .topics-detail-box-content-txt {
  grid-column: 1/2;
  grid-row: 1/2;
  /*margin-top: 24px;*/
}
.topics-detail-box .topics-detail-box-content-btn {
  grid-column: 1/2;
  grid-row: 2/3;
  /*margin-bottom: 24px;*/
  /*margin-top: 28px;*/
}
.topics-detail-box .topics-detail-box-content-btn .btn-type01 {
  text-align: left;
  color: #fff;
}
.topics-detail-box .topics-detail-box-content-btn .btn-type01:after {
  background: url(/dx/cat_assets/img/ico_document_pdf-01_on.svg) no-repeat 0 0;
}
.topics-detail-box .topics-detail-box-content-btn p {
  width: 220px;
  margin-top: 8px;
  font-size: 15px;
  text-align: center;
  color: var(--main-red);
}
.topics-detail-box .topics-detail-box-content-img {
  grid-column: 2/3;
  grid-row: span 2;
  grid-row: 1/3;
  display: block;
  line-height: 0;
}
.topics-detail-box .topics-detail-box-content-img img,
.topics-detail-box .topics-detail-box-content-img source {
  border-radius: 10px;
}

.topics-detail-box-content-txt .date {
  display: block;
  font-size: 15px;
}

@media screen and (min-width: 769px) {
  .topics-detail-box .topics-detail-box-content-btn .btn-type01:hover:after {
    background: url(/dx/cat_assets/img/ico_document_pdf-01_off.svg) no-repeat 0 0;
  }
}
@media screen and (max-width: 768px) {
  .topics {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
  .topics .hdg--lv2-01 {
    width: 100%;
    padding: 4.2666666667vw 0;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .topics .l-main__inr {
    flex-direction: column;
    gap: 5.8666666667vw;
    align-items: center;
    width: 100%;
    padding: 0 5.3333333333vw;
    border: none;
  }
  .topics-detail-box {
    display: block;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #ddd;
  }
  .topics-detail-box .topics-detail-box-content-txt {
    margin-top: 6.4vw;
    margin-bottom:4.26666vw;
  }
  .topics-detail-box .topics-detail-box-content-btn {
    margin: 6.6666666667vw auto;
    text-align: left;
  }
  .topics-detail-box .topics-detail-box-content-btn .btn-type01 {
    width: 58.6666666667vw;
    margin: 0 auto;
    font-size: 4vw;
  }
  .topics-detail-box .topics-detail-box-content-btn .btn-type01:after {
    right: 4.2666667vw;
    width: 6.6666667vw;
    height: 6.6666667vw;
    background: url(/dx/cat_assets/img/ico_document_pdf-01_on.svg) no-repeat 0 0;
  }
    .topics-detail-box .topics-detail-box-content-btn p {
    width: 100%;
    margin-top: 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
  .topics-detail-box .topics-detail-box-content-img {
    margin-top: 6.4vw;
  }
  .topics-detail-box-content-txt .date {
    font-size: 4vw;
  }
}
.aim-for-area {
  width: 100%;
  margin-top: 98px;
}

.aim-for-detail-box {
  margin-top: 48px;
}

.aim-for-detail-box-content {
  position: relative;
  padding-left: 526px;
}
.aim-for-detail-box-content .hdg--lv3-01 {
  width: 100vw;
  padding: 60px 0 60px 50px;
  font-size: 30px;
  color: var(--main-red);
  border-top: 1px solid var(--main-red);
  border-left: 1px solid var(--main-red);
  border-bottom: 10px solid var(--main-red);
  border-radius: 30px 0 0 30px;
}
.aim-for-detail-box-content figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 484px;
}
.aim-for-detail-box-content figure img,
.aim-for-detail-box-content figure source {
  border-radius: 25px;
}
.aim-for-detail-box-content-name {
  position: absolute;
  top:500px;
  left:0;
  font-weight: normal;
}
.aim-for-detail-box-content-txt {
  margin-top: 50px;
}

.aim-for-detail-box-content-txt p {
  margin-bottom:1em;
}

@media screen and (max-width: 768px) {
  .aim-for-area {
    width: 100%;
    margin-top: 11.7333333333vw;
  }
  .aim-for-detail-box {
    margin-top: 6.6666666667vw;
  }
  .aim-for-detail-box-content {
    padding-left: 0;
  }
  .aim-for-detail-box-content .hdg--lv3-01 {
    width: 100vw;
    padding: 8.5333333333vw 0 8.5333333333vw 6.4vw;
    font-size: 6.4vw;
    border-radius: 8vw 0 0 8vw;
  }
  .aim-for-detail-box-content figure {
    position: static;
    width: 100%;
    margin-top: 6.6666666667vw;
  }
  .aim-for-detail-box-content-name {
    position: static;
    margin-top: 9.6vw;
  }
  .aim-for-detail-box-content-txt {
    margin-top: 9.6vw;
  }
}
.strategy-area {
  width: 100%;
  text-align: center;
}
.strategy-area .hdg--lv3-02 {
  margin-top: 46px;
  font-size: 30px;
}
.strategy-area p {
  margin-top: 28px;
  text-align: left;
}
.strategy-area figure {
  width: 508px;
  margin: 46px auto 0;
}

.strategy-list {
  display: flex;
  gap: 25px;
  margin-top: 56px;
  text-align: left;
}
.strategy-list li{
  width:320px;
}
.strategy-list li dt {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--main-red);
  text-align: center;
  font-weight: bold;
  color: var(--main-red);
}

@media screen and (max-width: 768px) {
  .strategy-area {
    width: 100%;
    text-align: center;
  }
  .strategy-area .hdg--lv3-02 {
    margin-top: 6.6666666667vw;
    text-align: left;
    font-size: 6.4vw;
  }
  .strategy-area p {
    margin-top: 6.6666666667vw;
  }
  .strategy-area figure {
    width: 100%;
    margin: 6.6666666667vw auto 0;
  }
  .strategy-list {
    flex-direction: column;
    gap: 9.3333333333vw;
    margin-top: 14vw;
  }
  .strategy-list li{
    width:100%;
  }
  .strategy-list li dt {
    margin-bottom: 6.6666666667vw;
    padding-bottom: 3.2vw;
    font-size: 4.2666666667vw;
  }
}
.ex-area {
  width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto 0;
}
.ex-area .l-txt__inr p {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .ex-area {
    width: 100%;
    flex-direction: column;
    margin: 13.3333333333vw auto 0;
  }
  .ex-area .l-txt__inr {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
  .ex-area .l-txt__inr p {
    margin-top: 6.6666666667vw;
  }
}
/*slider*/
.slider-box .slick-current,
.slider-box .is-active-next {
  opacity: 1;
  transition: 0.4s;
}

.slider-no-box {
  margin-top: 50px;
  font-size: 15px;
}
.slider-no-box .now-count {
  padding-right: 20px;
  color: var(--main-red);
}
.slider-no-box .all-count {
  padding-left: 20px;
}

.slider-arrow-box {
  display: flex;
  align-items: center;
  margin: 50px 0 0;
  position: relative;
}
.prev-arrow,
.next-arrow {
  display: block;
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid var(--main-red);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 13px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.prev-arrow::before {
  background: url(/dx/cat_assets/img/icon-arrow-r_off.svg) no-repeat;
}

.next-arrow::before {
  background: url(/dx/cat_assets/img/icon-arrow-r_off.svg) no-repeat;
}

.slider-wrap {
  width: 780px;
  overflow: hidden;
}

.slider-box {
  width: 780px;
}
.slider-box .slider-box-list {
  margin-left: 0;
}
.slider-box img {
  display:block; 
  width:100%;
  height:auto;
}
.slider-box-txt-block {
  margin-top: 30px;
}
.slider-box-txt-block .btn-type01 {
  margin-top: 30px;
}

.slider-box-txt-block-ttl {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: normal;
}
.slider-box-txt-block-txt {
  height: 130px;
}
@media screen and (min-width: 769px) {
  .slider-box-list a:hover{
    text-decoration: none;
  }
  .slider-box-list a:hover .slider-box-txt-block-txt{
    text-decoration: underline;
  }
  .slider-box-list a:hover img {
    opacity: 0.8;
  }
  .slider-box-list a:hover .btn-type01{
  text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  /*slider*/
  .slider-option-box {
    display: flex;
    justify-content: space-between;
    gap:24px;
    align-items: flex-start;
    margin-top: 6.6666666667vw;
  }
  .slider-no-box {
    margin-top: 0;
    font-size: 4vw;
  }
  .slider-no-box .now-count {
    padding-right: 6.4vw;
  }
  .slider-no-box .all-count {
    padding-left: 6.4vw;
  }
  .slider-arrow-box {
    margin: 0;
  }
  .prev-arrow,
  .next-arrow {
    width: 12.8vw;
    height: 12.8vw;
  }
    .slider-wrap {
    width: 100%;
    margin-top: 9.6vw;
    padding-left:5.3333333vw;
  }
  .slider-box {
    width: 149.333333vw;
  }
  .slider-box .slider-box-list {
    margin-left: 0;
  }
  .slider-box-txt-block {
    margin-top: 8vw;
  }
  .slider-box-txt-block .btn-type01 {
    margin: 8vw auto 0;
  }
  .slider-box-txt-block-ttl {
    margin-bottom: 4.2666667vw;
    font-size: 4.2333333333vw;
  }
  .slider-box-txt-block-txt {
    height:28.26666667vw;
  }
}
.promotion-area {
  width: 100%;
}
.promotion-area .l-main__inr {
  width: 1040px;
  margin-top: 50px;
  padding: 50px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 5px 0px -1px var(--main-red);
}
.promotion-area .hdg--lv3-02 {
  font-size: 30px;
  font-weight: normal;
}
.promotion-area .promotion-area-main-txt {
  margin-top: 30px;
}
.promotion-area .promotion-area-main-img {
  width: 508px;
  margin: 50px auto 0;
}
.promotion-area .btn-type01 {
  margin: 30px auto 0;
}

.promotion-sub-box {
  margin-top: 66px;
}
.promotion-sub-box .hdg--lv3-03 {
  padding: 18px 0;
  border-top: 1px solid var(--main-red);
  border-bottom: 1px solid var(--main-red);
  font-size: 30px;
}
.promotion-sub-box .hdg--lv3-03 span {
  padding-right:16px;
  font-size: 24px;
  font-weight: 500;
  color: var(--main-red);
}

.promotion-sub-box-detail {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.promotion-sub-box-detail p {
  width: 590px;
}
.promotion-sub-box-detail figure {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .promotion-area .l-main__inr {
    width: calc(100% - 40px);
    margin-top: 6.6666666667vw;
    padding: 10.6666666667vw 5.3333333333vw;
  }
  .promotion-area .hdg--lv3-02 {
    font-size: 6.4vw;
  }
  .promotion-area .promotion-area-main-txt {
    margin-top: 6.6666666667vw;
  }
  .promotion-area .promotion-area-main-img {
    width: 100%;
    margin: 6.6666666667vw auto 0;
  }
  .promotion-area .btn-type01 {
    margin: 6.6666666667vw auto 0;
  }
  .promotion-sub-box {
    margin-top: 11.2vw;
  }
  .promotion-sub-box .hdg--lv3-03 {
    padding: 2.1333333333vw 0 0;
    border-bottom: none;
    text-align: center;
    font-size: 6.4vw;
  }
  .promotion-sub-box .hdg--lv3-03 span {
    display: block;
    margin-bottom: 4.2666666667vw;
    padding-bottom: 1.0666666667vw;
    font-size: 5.3333333333vw;
    text-align: center;
    border-bottom: 1px solid var(--main-red);
  }
  .promotion-sub-box-detail {
    flex-direction: column;
    margin-top: 8vw;
  }
  .promotion-sub-box-detail p {
    width: 100%;
  }
  .promotion-sub-box-detail figure {
    width: 100%;
    margin-top:4.26666vw;
  }
}
.dx-certification-area {
  margin-top: 100px;
  padding: 50px 0;
  background: #fcfbf4;
}
.dx-certification-area .l-main__inr {
  text-align: center;
}

.dx-certification-area-logo img {
  width: 316px;
}

.dx-certification-area-catch {
  margin-top: 32px;
  font-size: 22px;
  color: var(--main-red);
}

.dx-certification-area-txt {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .dx-certification-area {
    margin-top: 6.6666666667vw;
    padding: 6.6666666667vw 0;
  }
  .dx-certification-area-logo img {
    width: 42.1333333333vw;
  }
  .dx-certification-area-catch {
    margin-top: 6.6666666667vw;
    font-size: 4.5333333333vw;
  }
  .dx-certification-area-txt {
    margin-top: 6.6666666667vw;
    text-align: left;
  }
}
.connection-area {
  width: 100%;
  padding-top: 96px;
}

.connection-list {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 50px;
}

.connection-list-cts {
  width: 375px;
}
.connection-list-cts figure img {
  border-radius: 10px;
}
.connection-list-cts figure figcaption {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  padding-left: 1em;
  font-size: 15px;
  padding-right: 1.2em;
  background: url(/dx/cat_assets/img/icon-link.svg) no-repeat right 53%;
  background-size: 0.8em auto;
}
.connection-list-cts figure figcaption:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  z-index: 1;
  border-right: 1px solid var(--main-red);
  border-bottom: 1px solid var(--main-red);
  transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .connection-list-cts a:hover,
  .connection-list-cts a:active,
  .connection-list-cts a:focus {
    text-decoration: none;
  }
  .connection-list-cts a:hover figcaption {
    text-decoration: underline;
    color: var(--main-red);
  }
}
@media screen and (max-width: 768px) {
  .connection-area {
    width: 100%;
    padding-top: 14.9333333333vw;
  }
  .connection-list {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-top: 6.6666666667vw;
  }
  .connection-list-cts {
    width: 100%;
  }
  .connection-list-cts figure figcaption {
    font-size: 4vw;
  }
  .connection-list-cts figure figcaption:before {
    top: 2.1333333333vw;
  }
}
.top-section .l-main__inr {
  padding-top:100px;
  border-top:1px solid #ddd;
}
.top-panel-list__itm__ttl {
  top: 50%;
  transform: translateY(-50%);
}

.top-panel-list__itm__link:before,
.top-panel-list__itm__link:after,
.top-panel-list__itm__link__inner:after {
  display: none;
}/*# sourceMappingURL=style.css.map */
@media screen and (max-width: 768px) {
  .top-section .l-main__inr {
    margin-top:0;
    padding-top:0;
    border:none;
  }
  .top-panel-list {
    padding-top:6.66667vw;
    border-top:1px solid #ddd;
  }  
}

