@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 20px; } }

[data-trigger] {
  position: relative;
  transform: translate(0, -5px);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  -o-transition: -o-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; }
  [data-trigger].visible {
    transform: translate(0, 0px);
    opacity: 1; }

.bottomLink {
  position: absolute;
  bottom: 33px;
  right: 0;
  width: 307px;
  height: 46px;
  transition: opacity .6s, transform .6s;
  opacity: 0;
  transform: translate(0, 46px);
  transition-delay: 2.7s; }
  @media only screen and (max-width: 767px) {
    .bottomLink {
      width: 100%;
      position: fixed;
      left: 0;
      bottom: 0;
      z-index: 99;
      transition-delay: 0s;
      transform: translate(0, 0px);
      opacity: 1; }
      .bottomLink.static {
        position: absolute;
        bottom: 110px; } }
  .bottomLink.is-active {
    opacity: 1;
    transform: translate(0, 0); }
  .bottomLink a {
    width: 307px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px 0 0 0;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.1875;
    transition: background-color 0.3s; }
    @media only screen and (max-width: 767px) {
      .bottomLink a {
        width: 100%;
        height: 50px;
        border-radius: 0px;
        padding-bottom: 3px; } }
    @media only screen and (min-width: 768px) {
      .bottomLink a:hover {
        background-color: #E60012; }
        .bottomLink a:hover i {
          right: -5px; }
          .bottomLink a:hover i svg path {
            stroke: #000; } }
  .bottomLink span {
    display: inline-block;
    margin-right: 6px; }
  .bottomLink i {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
    right: 0;
    transition: right .3s;
    padding-left: 1px; }
    @media only screen and (max-width: 767px) {
      .bottomLink i {
        padding-top: 1px; } }
    .bottomLink i svg path {
      transition: stroke .3s; }

.footer {
  background: #fff;
  padding: 8px 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0; }
  @media only screen and (max-width: 767px) {
    .footer {
      position: static;
      padding: 76px 0 12px; } }
  .footer .inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer .inner {
        display: block; } }
  .footer__link {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .footer__link {
        justify-content: center;
        margin-bottom: 27px; } }
    .footer__link li {
      font-size: 10px;
      font-size: 1rem;
      line-height: 1.5; }
      .footer__link li:last-of-type:after {
        content: none; }
      .footer__link li:after {
        content: "";
        width: 1px;
        height: 14px;
        display: inline-block;
        background: #E2E2E2;
        margin: 0 7px;
        position: relative;
        top: 3px; }
      .footer__link li a {
        transition: color .3s;
        position: relative; }
        @media only screen and (min-width: 768px) {
          .footer__link li a:hover {
            color: #515151; }
            .footer__link li a:hover:after {
              opacity: 1; } }
        .footer__link li a:after {
          content: "";
          width: 100%;
          height: 1px;
          display: block;
          background: #515151;
          position: absolute;
          left: 0;
          bottom: 1px;
          opacity: 0;
          transition: opacity .3s; }
  .footer__copyright {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.5; }
    @media only screen and (max-width: 767px) {
      .footer__copyright {
        text-align: center;
        padding-top: 12px; } }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  background: #fff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 78px;
      border-bottom: 5px solid #E60012; } }
  .header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100%; }
  .header__logo {
    display: block;
    width: 176px;
    margin-left: 44px; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 182px;
        margin-left: 0; } }
  .header__link {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26666667; }
    @media only screen and (max-width: 767px) {
      .header__link {
        font-size: 11px;
        font-size: 1.1rem; } }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

/**

 */
body.top main {
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    body.top main {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center; } }

@media only screen and (min-width: 768px) {
  body.top .wrap {
    position: relative;
    overflow: hidden;
    max-width: 100vw;
    width: 177.763329vh;
    height: 100vh;
    max-height: 56.25457206vw;
    margin: 0 auto; } }

body.top .background img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

body.top .companion {
  max-width: 12.88433382vw;
  width: 22.88686606vh;
  position: absolute;
  top: 42.39271782%;
  right: 39.8683248%; }
  @media only screen and (max-width: 767px) {
    body.top .companion {
      max-width: 100%;
      width: 32.53333333vw;
      top: 65.86666667vw;
      right: 24.8vw; } }

body.top .desk {
  width: 47.33420026vh;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 62.02860858%; }
  @media only screen and (min-width: 768px) {
    body.top .desk {
      max-width: 26.64714495vw; } }
  @media only screen and (max-width: 767px) {
    body.top .desk {
      width: 67.2vw;
      top: 93.86666667vw; } }

body.top .comment {
  width: 21.84655397vh;
  height: 11.70351105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: #fff;
  border-radius: 0.78023407vh;
  filter: drop-shadow(0 0 0.39012vh rgba(0, 0, 0, 0.1));
  font-size: clamp(0.01vw, 1.82055vh, 1.02489vw);
  line-height: 1.5;
  position: absolute;
  top: 35.37061118%;
  right: 28.55051245%;
  transition: opacity .3s;
  opacity: 0; }
  @media only screen and (min-width: 768px) {
    body.top .comment {
      max-width: 12.29868228vw;
      max-height: 6.5885798vw; } }
  @media only screen and (max-width: 767px) {
    body.top .comment {
      width: 100%;
      height: auto;
      text-align: center;
      background: #9F9F9F;
      filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
      color: #fff;
      padding: 16px 0 34px;
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.61538462;
      font-weight: 400;
      position: relative;
      border-radius: 0px;
      top: auto;
      right: auto; } }
  @media only screen and (max-width: 767px) {
    body.top .comment:after {
      content: "";
      width: 9px;
      height: 8px;
      display: block;
      background: #fff;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translate(-50%, 0%); } }
  body.top .comment.is-active {
    opacity: 1; }

body.top .link {
  position: absolute; }
  @media only screen and (max-width: 767px) {
    body.top .link {
      position: static;
      width: max-content; } }
  body.top .link a {
    border-radius: clamp(1px, 0.78023vh, 0.43924vw);
    height: 4.55136541vh;
    padding: 0 0.87847731vw 0.14641288vw;
    padding-left: clamp(1px, 1.56047vh, 0.87848vw);
    padding-right: clamp(1px, 1.56047vh, 0.87848vw);
    padding-bottom: clamp(1px, 0.78023vh, 0.14641vw);
    background: #E60012;
    color: #fff;
    display: flex;
    align-items: center;
    width: max-content;
    transition: background-color .3s, transform .3s; }
    @media only screen and (min-width: 768px) {
      body.top .link a {
        max-height: 2.56222548vw; } }
    @media only screen and (max-width: 767px) {
      body.top .link a {
        height: 30px;
        position: relative;
        padding: 0 11px;
        border-radius: 5px; } }
    body.top .link a:hover {
      background-color: #464646;
      transform: translate(0, -5px); }
      body.top .link a:hover:after {
        background-color: #464646; }
      body.top .link a:hover i svg path {
        stroke: #E60012; }
    body.top .link a:after {
      content: "";
      width: 0.91027308vh;
      height: 0.78023407vh;
      display: block;
      background: #E60012;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      left: 50%;
      bottom: -14.28571429%;
      transform: translate(-50%, 0);
      transition: background-color .3s, transform .3s; }
      @media only screen and (min-width: 768px) {
        body.top .link a:after {
          max-width: 0.5124451vw;
          min-height: 0.43923865vw; } }
      @media only screen and (max-width: 767px) {
        body.top .link a:after {
          width: 6px;
          height: 5px;
          bottom: -5px; } }
  body.top .link .num {
    font-size: clamp(0.01vw, 2.08062vh, 1.1713vw);
    font-weight: 500;
    position: relative;
    top: 0px; }
    body.top .link .num:after {
      content: "";
      width: 0.13003901vh;
      height: 2.08062419vh;
      max-width: 0.07320644vw;
      max-height: 1.17130307vw;
      display: inline-block;
      background: #fff;
      margin-left: clamp(0.01vw, 1.04031vh, 0.58565vw);
      margin-right: clamp(0.01vw, 1.04031vh, 0.58565vw);
      position: relative;
      top: 0.14641288vw; }
  body.top .link .pdf {
    display: inline-block;
    width: 1.69050715vh;
    position: relative;
    top: 2%;
    margin-right: 0.29282577vw; }
    @media only screen and (min-width: 768px) {
      body.top .link .pdf {
        max-width: 0.95168375vw; } }
    @media only screen and (max-width: 767px) {
      body.top .link .pdf {
        width: 13px;
        top: 0;
        margin-right: 4px; } }
    body.top .link .pdf img {
      display: block; }
  body.top .link .item {
    font-size: clamp(0.01vw, 2.08062vh, 1.1713vw);
    position: relative;
    top: 0.05vw; }
    @media only screen and (max-width: 767px) {
      body.top .link .item {
        font-size: 14px;
        font-size: 1.4rem; } }
  body.top .link .arrow {
    width: 2.2106632vh;
    height: 2.2106632vh;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -0.43923865vw;
    bottom: -0.43923865vw;
    filter: drop-shadow(0 0 0.21962vw rgba(0, 0, 0, 0.1)); }
    @media only screen and (min-width: 768px) {
      body.top .link .arrow {
        max-width: 1.24450952vw;
        max-height: 1.24450952vw; } }
    @media only screen and (max-width: 767px) {
      body.top .link .arrow {
        width: 15px;
        height: 15px;
        filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
        right: -5px;
        bottom: -5px; } }
    @media only screen and (min-width: 768px) {
      body.top .link .arrow svg {
        width: 0.45513654vh;
        max-width: 0.25622255vw; } }
    @media only screen and (max-width: 767px) {
      body.top .link .arrow svg {
        width: 3px; } }
    body.top .link .arrow svg path {
      transition: stroke .3s; }

body.top .link01 {
  top: 20.80624187%;
  left: 4.39238653%; }

body.top .link02 {
  top: 26.52795839%;
  left: 12.44509517%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 0.3s, 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s, opacity 0.3s 0.3s;
  -o-transition: -o-transform 0.3s 0.3s, opacity 0.3s 0.3s;
  transition: transform 0.3s 0.3s, opacity 0.3s 0.3s; }

body.top .link03 {
  top: 26.52795839%;
  right: 12.51830161%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 0.6s, 0.6s;
  -moz-transition: -moz-transform 0.3s 0.6s, opacity 0.3s 0.6s;
  -o-transition: -o-transform 0.3s 0.6s, opacity 0.3s 0.6s;
  transition: transform 0.3s 0.6s, opacity 0.3s 0.6s; }

body.top .link04 {
  top: 20.80624187%;
  right: 4.83162518%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 0.9s, 0.9s;
  -moz-transition: -moz-transform 0.3s 0.9s, opacity 0.3s 0.9s;
  -o-transition: -o-transform 0.3s 0.9s, opacity 0.3s 0.9s;
  transition: transform 0.3s 0.9s, opacity 0.3s 0.9s; }

body.top .link05 {
  top: 33.289987%;
  left: 43.11859444%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 1.2s, 1.2s;
  -moz-transition: -moz-transform 0.3s 1.2s, opacity 0.3s 1.2s;
  -o-transition: -o-transform 0.3s 1.2s, opacity 0.3s 1.2s;
  transition: transform 0.3s 1.2s, opacity 0.3s 1.2s; }

body.top .link06 {
  top: 50.84525358%;
  left: 7.61346999%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 1.5s, 1.5s;
  -moz-transition: -moz-transform 0.3s 1.5s, opacity 0.3s 1.5s;
  -o-transition: -o-transform 0.3s 1.5s, opacity 0.3s 1.5s;
  transition: transform 0.3s 1.5s, opacity 0.3s 1.5s; }

body.top .link07 {
  top: 49.15474642%;
  left: 26.57393851%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 1.8s, 1.8s;
  -moz-transition: -moz-transform 0.3s 1.8s, opacity 0.3s 1.8s;
  -o-transition: -o-transform 0.3s 1.8s, opacity 0.3s 1.8s;
  transition: transform 0.3s 1.8s, opacity 0.3s 1.8s; }

body.top .link08 {
  top: 49.15474642%;
  right: 26.57393851%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 2.1s, 2.1s;
  -moz-transition: -moz-transform 0.3s 2.1s, opacity 0.3s 2.1s;
  -o-transition: -o-transform 0.3s 2.1s, opacity 0.3s 2.1s;
  transition: transform 0.3s 2.1s, opacity 0.3s 2.1s; }

body.top .link09 {
  top: 51.23537061%;
  right: 15.37335286%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -webkit-transition-delay: 2.4s, 2.4s;
  -moz-transition: -moz-transform 0.3s 2.4s, opacity 0.3s 2.4s;
  -o-transition: -o-transform 0.3s 2.4s, opacity 0.3s 2.4s;
  transition: transform 0.3s 2.4s, opacity 0.3s 2.4s; }

body.top .cont {
  padding-top: 22px;
  padding-bottom: 20px; }
  body.top .cont dl {
    padding: 30px 0 0;
    border-bottom: 1px solid #E2E2E2; }
    body.top .cont dl:last-of-type {
      border-bottom: none; }
    body.top .cont dl dt {
      margin-bottom: 30px;
      display: flex;
      align-items: center; }
      body.top .cont dl dt span {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 500;
        font-family: "Poppins", sans-serif; }
        body.top .cont dl dt span:after {
          content: "";
          width: 1px;
          height: 16px;
          background: #000;
          display: inline-block;
          margin: 0 8px;
          position: relative;
          top: 2px; }
      body.top .cont dl dt strong {
        font-size: 16px;
        font-size: 1.6rem;
        position: relative;
        top: -1px; }
    body.top .cont dl dd .serviceList {
      display: flex;
      flex-wrap: wrap; }
      body.top .cont dl dd .serviceList li {
        width: calc((100% - 15px) / 2);
        margin-right: 15px;
        margin-bottom: 30px;
        position: relative; }
        body.top .cont dl dd .serviceList li:nth-of-type(2n) {
          margin-right: 0; }
        body.top .cont dl dd .serviceList li .link {
          margin: 0 auto 15px; }
        body.top .cont dl dd .serviceList li .image {
          background: #F5F5F5;
          display: block;
          height: 120px;
          text-align: center; }
          body.top .cont dl dd .serviceList li .image img {
            height: 100%;
            width: auto; }
    body.top .cont dl dd .card {
      display: flex;
      border-radius: 10px;
      background: #E60012;
      filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.07));
      overflow: hidden;
      margin-bottom: 30px;
      transform: translateZ(0); }
      body.top .cont dl dd .card .text {
        width: calc(100% - 130px);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top: 14px; }
        body.top .cont dl dd .card .text .col {
          display: flex;
          align-items: center;
          justify-content: center; }
          body.top .cont dl dd .card .text .col span {
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 500;
            font-family: "Poppins", sans-serif;
            color: #E60012;
            position: relative; }
            body.top .cont dl dd .card .text .col span:after {
              content: "";
              width: 1px;
              height: 15px;
              display: inline-block;
              background: #E60012;
              margin: 0 8px;
              position: relative;
              top: 2px; }
          body.top .cont dl dd .card .text .col strong {
            font-size: 14px;
            font-size: 1.4rem;
            position: relative;
            color: #E60012;
            top: 1px; }
            body.top .cont dl dd .card .text .col strong i {
              display: inline-block;
              position: relative;
              top: 3px;
              margin-right: 2px; }
        body.top .cont dl dd .card .text > i {
          display: block;
          width: 15px;
          height: 15px;
          background: #fff;
          filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.1));
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          margin-top: 13px; }
      body.top .cont dl dd .card .image {
        width: 130px;
        display: block; }
