@charset "UTF-8";

/* default */
body {
  color: #2D2D2E;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition        : all 400ms linear;
}
body.complete {
  opacity: 1 !important;
}
.w100important {
  width: 100% !important;
}
form.w100important select ,
form.w100important input[type="text"] ,
form.w100important input[type="email"] ,
form.w100important textarea {
  width: 100% !important;
}
@media only screen and (max-width: 768px){
  html,body {
    height: 100%;
  }
  body.contentsNoScroll {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

/* main */
#main {
  position: relative;
  background-color: #fff;
  padding-left: 336px;
  margin: 0;
}
@media only screen and (max-width: 968px){
  #main {
    padding-left: 0;
    padding-top: 50px;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 768px){
  #main {
    padding-left: 0;
    padding-top: 13.333333333333333vmin;
    overflow-x: hidden;
  }
}

/* sidebar */
#sidebar {
  position: absolute;
  z-index: 9;
  width: 336px;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 100;
  padding-top: 1px;
  margin-top: -1px;
  height: 100vh;
  height: -webkit-calc(100vh + 1px);
  height:         calc(100vh + 1px);
}
.sticky.on #sidebar {
  position: fixed;
}
.sticky.endSticky #sidebar {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}
#sidebar:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('/assets/images/common/sidebar.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#sidebar:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('/assets/images/common/sidebar-gnav.png');
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition        : all 400ms linear;
  z-index: -1;
}
#sidebar.open-gnav:after {
  opacity: 1;
}

#sidebar.open-gnav .menuBtn::after{
    opacity:0;
}

@media screen and (min-width: 1024px) {
    #sidebar.open-gnav .sidebar-bottom{
        z-index: -10;/* bugfix 2024-01-30 */
        position: relative;

    }
    #sidebar.open-gnav .sidebar-bottom *{
        pointer-events: none;/* bugfix 2024-01-30 */
    }
}


#sidebar a {
  color: #fff;
}
#sidebar .logo {
  position: absolute;
  top: 24px;
  left: 24px;
}
#sidebar .logo img {
  width: 144px;
}
#sidebar .menuBtn {
  position: absolute;
  right: 24px;
  top: 29px;
}


#sidebar .menuBtn::after {
    content: "menu";
    font-size: 80%;
    text-align: center;
    position: relative;
    top: 2px;
    display: block;
    opacity: 1.0;
    transition: all 50ms ease-out;
}


#sidebar .menuBtn a {
  height: 24px;
  display: inline-block;
}
#sidebar .menuBtn span {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 130ms ease-out;
  transition        : all 130ms ease-out;
}
#sidebar .menuBtn span:before {
  content: '';
  position: absolute;
  top: -400%;
  right: 0;
  /*
  width: 81.25%;*/
  width:100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: top 130ms ease-out 130ms, width 130ms ease-out 130ms, -webkit-transform 130ms ease-out, margin-top 130ms ease-out;
  transition        : top 130ms ease-out 130ms, width 130ms ease-out 130ms, transform         130ms ease-out, margin-top 130ms ease-out;
}
#sidebar .menuBtn span:after {
  content: '';
  position: absolute;
  bottom: -400%;
  right: 0;
  /*
  width: 56.25%;*/
  width:100%;
  height: 2px;
  background-color: #fff;
  -webkit-transition: bottom 130ms ease-out 130ms, width 130ms ease-out 130ms, -webkit-transform 130ms ease-out, margin-bottom 130ms ease-out;
  transition        : bottom 130ms ease-out 130ms, width 130ms ease-out 130ms, transform         130ms ease-out, margin-bottom 130ms ease-out;
}
.ua-pc #sidebar .menuBtn a:hover span:before {
  margin-top: -2px;
}
.ua-pc #sidebar .menuBtn a:hover span:after {
  margin-bottom: -2px;
}
#sidebar.open-gnav .menuBtn a:hover span:after ,
#sidebar.open-gnav .menuBtn a:hover span:before {
  margin: 0;
}
#sidebar.open-gnav .menuBtn span {
  background-color: transparent;
}
#sidebar.open-gnav .menuBtn span:before {
  -webkit-transition: top 130ms ease-out, width 130ms ease-out, -webkit-transform 130ms ease-out 130ms;
  transition        : top 130ms ease-out, width 130ms ease-out, transform         130ms ease-out 130ms;
  top: 0;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform        : rotate(45deg);
}
#sidebar.open-gnav .menuBtn span:after {
  -webkit-transition: bottom 130ms ease-out, width 130ms ease-out, -webkit-transform 130ms ease-out 130ms;
  transition        : bottom 130ms ease-out, width 130ms ease-out, transform         130ms ease-out 130ms;
  bottom: 0;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform        : rotate(-45deg);
}

#sidebar > .innerBox {
  position: relative;
  /*z-index: 2;*/
  height: 100vh;
  padding: 80px 0 84px;
  overflow: hidden;
}
#sidebar .sidebar-contents > * ,
#sidebar .navBox > * {
  direction: ltr;
}
#sidebar .sidebar-contents ,
#sidebar .navBox {
  width: 100%;
  overflow-x: hidden;
  height: calc(100% - 40px);
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
  direction: rtl;
  /*scrollbar-track-color: transparent;
  scrollbar-color: #c2c2c2 transparent;*/
}
#sidebar.open-gnav .sidebar-header ,
#sidebar.open-gnav .sidebar-contents {
  width: 0;
  opacity: 0;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}
#sidebar .navBox ul {
  width: 100%;
  max-height: 100%;
  padding: 0 24px;
  margin-top: -5px;
}
#sidebar .navBox a {
  display: inline-block;
  min-width:85px;/* 最小幅を追記 */
  padding: 0.533333333333333em 0;
  font-weight: 100;
  /*font-size: 1.2rem;*/
  /*サイズ変更*/
  font-size: 1.3rem;
  line-height: 1.6;
  -webkit-transition: none;
  transition        : none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition        : transform 150ms cubic-bezier(0.22, 0.61, 0.36, 1);
}


#sidebar .navBox a.active {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.392857142857143em 0;
}
.ua-pc #sidebar .navBox a:hover {
  -webkit-transform: translateX(-6px);
  transform        : translateX(-6px);
}
#sidebar .contact {
  background-color: rgba(7,0,41,0.7);
  width: 100%;
  height: 84px;
  bottom: 0;
  left: 0;
  text-align: center;
  padding-top: 15px;
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
}

#sidebar .sc-quote{
    /* .contact */
    margin-bottom:-15px;
}


#sidebar.open-gnav .contact {
  width: 0;
  opacity: 0;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}
@media screen and (max-width: 768px) {
 #sidebar.open-gnav .contact {
    display: block;
    width: 100%;
    opacity: 1;
    position: absolute;
 }
}

#sidebar .button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  min-width: 288px;
  height: 52px;
  border-radius: 3px;
}
.msie #sidebar .button {
  font-weight: 600;
}
#sidebar .button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 250ms;
  background-color: #871d97;
  background: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:    -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:         linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
}
#sidebar .button:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  margin: 0 !important;
  background: -webkit-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background:    -moz-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background:         linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
}
.ua-pc #sidebar .button:hover:before {
  opacity: 0;
}
#sidebar .button .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  padding: 0 3.846153846153846em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#sidebar .button i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  background-color: #F5F2F5;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-ppl.svg');
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
}
.ua-pc #sidebar .button.action01:hover i {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#gnav {
  position: absolute;
  width: 0;
  top: 99px;
  bottom: 84px;
  font-size: 1.3rem;
  line-height: 1;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}
#sidebar.open-gnav #gnav {
  width: 100%;
  opacity: 1;
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
}
#gnav .innerBox {
  height: 100%;
  padding-left: 26px;
  overflow-y: auto;
  /*scrollbar-track-color: transparent;
  scrollbar-color: #c2c2c2 transparent;*/
}
#gnav .slideToggleAction {
  cursor: pointer;
}
#gnav .slideToggleAction .pulldown {
  -webkit-transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
  transition        : all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
}
#gnav .slideToggleAction-on .pulldown {
  -webkit-transform: rotate(180deg);
  transform        : rotate(180deg);
}
#gnav i.pulldown {
  display: inline-block;
  width: 0.642857142857143em;
  line-height: 0.3;
  vertical-align: middle;
  margin: 0 0.4em;
}
#gnav .menu > li {
  margin-left: 10px;
  opacity: 0;
  -webkit-transition: all 200ms linear 200ms;
  transition        : all 200ms linear 200ms;
}
#gnav .menu > li:nth-child(2) {
  -webkit-transition-delay: 250ms;
  transition-delay        : 250ms;
}
#gnav .menu > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  transition-delay        : 300ms;
}
#gnav .menu > li:nth-child(4) {
  -webkit-transition-delay: 350ms;
  transition-delay        : 350ms;
}
#gnav .menu > li:nth-child(5) {
  -webkit-transition-delay: 400ms;
  transition-delay        : 400ms;
}
#gnav .menu > li:nth-child(6) {
  -webkit-transition-delay: 450ms;
  transition-delay        : 450ms;
}
#sidebar.open-gnav #gnav .menu > li {
  margin-left: 0;
  opacity: 1;
}
#gnav .menu span {
  font-weight: 400;
}
#gnav .menu > li > span ,
#gnav .menu > li > a {
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  font-size: 1.4rem;
  padding: 0.571428571428571em 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
}
#gnav i.pulldown {
  display: inline-block;
  width: 0.642857142857143em;
  line-height: 0.3;
  vertical-align: middle;
  margin-left: 0.4em;
}
#gnav i.blank {
  display: inline-block;
  width: 0.923076923076923em;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0.4em;
}
#gnav li ul {
  margin: 8px 0 0 20px;
}
#gnav li + li {
  margin-top: 24px;
}
#gnav .submenu {
  display: none;
}
#gnav .submenu li + li {
  margin-top: 8px;
}
#gnav .submenu > li > span ,
#gnav .submenu > li > a {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.75;
  padding: 4px 0;
  font-weight: 400;
  -webkit-transition: margin-left 150ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition        : margin-left 150ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ua-pc #gnav .submenu > li > a:hover {
  margin-left: 6px;
}
#gnav .submenu > li > a > span {
  display: inline-block;
  vertical-align: middle;
}
#gnav .submenu > li > a > span.sub-menu-link-child{
    position:relative;
    margin-left: 20px;
}
#gnav .submenu > li > a > span.sub-menu-link-child::before{
    content:"";
 display: inline-block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 10px;
    left: -17px;
 }
#sidebar .search {
  bottom: 0;
  height: 84px;
  letter-spacing: -0.4em;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}

#sidebar.open-gnav .search {
  width: 0;
  opacity: 0;
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #sidebar.open-gnav .search {
    bottom: 15%;
    opacity: 1;
    position: absolute;
    width: 100%;
  }
}
@media only screen and (max-width: 450px){
    #sidebar.open-gnav .search {
      bottom: 83px;
    }
}

#sidebar .search .innerBox {
  width: 100%;
  padding: 24px 15px 24px 24px;
}
#sidebar .search .innerBox > * {
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
}
#sidebar .search form {
  position: relative;
}
#sidebar .search form input {
  border: none;
  width: 219px;
  height: 36px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.2);
  padding: 0 1em 0 40px;
  color: #fff;
}
#sidebar .search form button {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  width: 18px;
  border: none;
  background-color: transparent;
  padding: 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#sidebar .search .colbox {
  position: relative;
  width: -webkit-calc(100% - 219px);
  width:         calc(100% - 219px);
  text-align: right;
  font-size: 1.3rem;
  font-weight: 400;
}

/* 言語切り替え対応wovn */
#sidebar .search .colbox .wovn-languages .wovn-lang-list .wovn-switch{
  cursor: pointer;
}
#sidebar .search .colbox .wovn-languages .wovn-lang-list .wovn-switch.selected {
    display: none;
  }
#sidebar .search .colbox .wovn-languages .wovn-lang-list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    width: 17px;
    height: 16px;
    background-image: url(/assets/images/element-list/icon/global_icon.png);
    background-size: cover;
    -webkit-transform: translateY(-46%);
    transform: translateY(-46%);
  }

  #sidebar .search .colbox .wovn-languages .wovn-lang-list .wovn-switch {
  margin-left: calc(100% - 43px);
  text-align: left;}

  @media only screen and (max-width: 768px) and (min-width: 590px){
    #sidebar .search .colbox .wovn-languages .wovn-lang-list::before {
        left: -12px; }
    #sidebar .search .colbox .wovn-languages .wovn-lang-list .wovn-switch {
        margin-left: calc(100% - 100px);
    }
  }

  @media only screen and (max-width: 589px){
    #sidebar .search .colbox .wovn-languages .wovn-lang-list::before {
        left: -12px; }
    #sidebar .search .colbox .wovn-languages .wovn-lang-list .wovn-switch {
        margin-left: calc(100% - 55px);
    }
  }
#sidebar .search .colbox .col.active {
  color: #fff;
}
#sidebar .search .colbox .col {
  vertical-align: middle;
  color: rgba(255,255,255,0.5);
}
#sidebar .search .colbox .col + .col {
  margin-left: 1.5em;
}
#sidebar .innerBox02 {
  width: 100%;
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
}
#sidebar.open-gnav .innerBox02 {
  width: 0;
  opacity: 0;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}
#breadcrumb ol {
  padding: 0 24px;
  letter-spacing: -0.4em;
  line-height: 1.6;
  font-size: 1.1rem;
  font-weight: 100;
  margin: -0.3em 0 0;
  /*overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow     : ellipsis;
  text-overflow        : ellipsis;*/
}
#breadcrumb li {
  letter-spacing: normal;
  display: inline;
  vertical-align: baseline;
}
#breadcrumb li + li:before {
  content: '';
  display: inline-block;
  vertical-align: baseline;
  width: 0.363636363636364em;
  height: 0.727272727272727em;
  background-image: url('/assets/images/element-list/breadcrumb-arrow.png');
  background-size: cover;
  background-position: center;
  margin: 0 6px;
}
#breadcrumb .icon-home {
  display: inline-block;
  vertical-align: baseline;
  width: 1.454545454545455em;
  line-height: 1;
}
#sidebar header {
  padding: 24px 24px 32px;
}
#sidebar header.pb0 {
  padding-bottom: 0;
}
#sidebar header .time {
  font-size: 1.3rem;
  line-height: 2;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}
#sidebar header .return_link {
  position: relative;
  background: #FAFBFC;
  display: inline-block;
  vertical-align: bottom;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 3px 11px 3px 7px;
  font-size: 1.1rem;
  line-height: 1.636363636363636;
  color: #2D2D2E;
  margin-bottom: 8px;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
  font-weight: 400;
}
#sidebar header .return_link svg ,
#sidebar header .return_link img {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 4px;
  margin: 0 4px 0.2em 0;
}
#sidebar header .return_link svg * {
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
.ua-pc #sidebar header .return_link:hover line {
  stroke: #fff !important;
}
.ua-pc #sidebar header .return_link:hover {
  background: #2D2D2E;
  border-color: #2D2D2E;
  color: #2D2D2E;
  color: #fff;
}
#sidebar header h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
.msie #sidebar header h1 {
  font-weight: 600;
}
#sidebar .icon-event-end {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid #CDD0D4;
  background-color: rgba(230,231,232,0.99);
  background-image: -webkit-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  color: #7C7E80;
  padding: 0.541666666666667em 16px;
  font-family: YuGo-Medium;
}
#sidebar header p {
  /*font-weight: 100; 2023-12-19 変更*/
  font-weight: normal;
}
#sidebar p {
  padding-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.75;
}
#sidebar .navBox.formNav ul {
  display: block;
  width: auto;
  background-color: #fff;
  border-radius: 3px;
  margin: 16px 24px 0;
  margin: 0 24px 0;
  padding: 24px;
  text-align: left;
  line-height: 1.5;
}
#sidebar .navBox.formNav .item {
  display: inline-block;
  padding: 0.533333333333333em 0;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1.6;
  -webkit-transition: none;
  transition: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  position: relative;
  font-size: 1.4rem;
  color: #2D2D2E;
  padding: 8px 0 8px 22px;
  overflow: visible;
  font-weight: 400;
}
#sidebar .navBox.formNav .active .item {
  font-weight: 500;
  color: #840D84;
}
.msie #sidebar .navBox.formNav .active .item {
  font-weight: 600;
}
#sidebar .navBox.formNav .item span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.5;
}
#sidebar .navBox.formNav .item:after {
  content: '';
  position: absolute;
  top: 16px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #840D84;
}
#sidebar .navBox.formNav .item:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 37px;
  left: 6.5px;
  top: 50%;
  background-color: #840D84;
}
#sidebar .navBox.formNav li:last-child .item:before {
  display: none;
}
#sidebar .navBox.formNav .active .item:after {
  width: 15px;
  height: 15px;
  background: #840D84;
  left: 0;
  top: 12.5px;
}
#sidebar .navBox.formNav .active .item:before ,
#sidebar .navBox.formNav .active ~ li .item:before {
  background-color: #D8D8D8;
}
#sidebar .navBox.formNav .active ~ li .item:after {
  background-color: #D8D8D8;
  border: none;
}
#sidebar .news_search_title {
  margin: 16px 24px 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 3em;
  height: 3em;
}
#sidebar .news_search_title .return_link {
  position: relative;
  background: #FAFBFC;
  display: inline-block;
  vertical-align: bottom;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 3px 11px 3px 7px;
  font-size: 1.1rem;
  line-height: 1.636363636363636;
  color: #2D2D2E;
  margin-top: 5px;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
  font-weight: 400;
  float: right;
}
#sidebar .news_search_title .return_link span {
  font-size: 1.1rem;
  line-height: 1.636363636363636;
}
#sidebar .news_search_title .return_link svg ,
#sidebar .news_search_title .return_link img {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 4px;
  margin: 0 4px 0.2em 0;
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
#sidebar .news_search_title .return_link svg * {
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
.ua-pc #sidebar .news_search_title .return_link:hover line {
  stroke: #fff !important;
}
.ua-pc #sidebar .news_search_title .return_link:hover {
  background: #2D2D2E;
  border-color: #2D2D2E;
  color: #2D2D2E;
  color: #fff;
}
#sidebar .news_search_title span {
  font-size: 2.2rem;
  display: inline-block;
  vertical-align: baseline;
  font-weight: 400;
}
#sidebar .news_search_title span:first-child {
  padding-right: 8px;
}
#sidebar .news_search_title + .news_search_keyword {
  margin-top: 0;
  word-break: break-all;
}
#sidebar .news_search_keyword {
  padding: 8px 24px 32px;
  font-size: 1.3rem;
  line-height: 1.75;
}
#sidebar .news_search_keyword span {
  font-size: 1.6rem;
  font-weight: 400;
}
#sidebar .news_search {
  margin: 0 24px;
}
#sidebar .sidebar-bottom .news_search {
  position: absolute;
  /*bottom: 190px;*/
  bottom: 250px;
  width: calc(100% - 48px);
  margin: 0 24px;
  left: 0;
}

#sidebar .news_search .news_search_innerBox {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 3px;
  color: #333;
  overflow: hidden;
}
#sidebar .news_search .news_search_row02 {
  padding: 16px;
  background-color: #fff;
  display: none;
}
#sidebar .news_search.open .news_search_row02 {
  display: block;
}
#sidebar .news_search .news_search_row02 form {
  position: relative;
  display: block;
  width: 100%;
}
#sidebar .news_search .news_search_row02 form input {
  background: #F5F6F7;
  border-radius: 4px 0 0 4px;
  border: none;
  font-size: 1.2rem;
  padding: 15.5px 8px;
  width: -webkit-calc(100% - 64px);
  width:         calc(100% - 64px);
  display: inline-block;
  vertical-align: top;
  height: 43px;
}
#sidebar .news_search .news_search_row02 form button {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  border: none;
  width: 64px;
  font-size: 1.2rem;
  padding: 15.5px 0;
  line-height: 1;
	background-color: #5D0F84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
  border-radius: 0 4px 4px 0;
  color: #fff;
  height: 43px;
}
#sidebar .news_search .serch_option a {
  position: relative;
  margin-top: 16px;
  text-align: left;
  padding: 0.59375em 0 0.59375em 12px;
  background: #FFFAFF;
  border: 1px solid #840D84;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #840D84;
  display: block;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
.ua-pc #sidebar .news_search .serch_option a:hover {
  background: #840D84;
  color: #fff;
}
#sidebar .news_search {
  font-weight: 400;
}
#sidebar .news_search .serch_option a span {
  display: inline-block;
  /*vertical-align: middle;*/
}
#sidebar .news_search .serch_option a i img ,
#sidebar .news_search .serch_option a i svg {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 13px;
  margin-right: 8px;
}
#sidebar .news_search .serch_option a i svg * {
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
.ua-pc #sidebar .news_search .serch_option a:hover line ,
.ua-pc #sidebar .news_search .serch_option a:hover circle {
  stroke: #fff !important;
}
#sidebar .news_search .news_search_row01 {
  position: relative;
  padding: 1.13em 16px;
  border: 1px solid #E6E6E6;
  background-color: #FAFBFC;
}
#sidebar .news_search .news_search_row01 > * {
  display: inline-block;
  vertical-align: middle;
}
#sidebar .news_search .news_search_row01 a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#sidebar .news_search .icon-news_search {
  width: 18px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/news_search.png');
  background-size: cover;
  background-position: center;
}
#sidebar .news_search p {
  padding: 0 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.5;
  width: -webkit-calc(100% - 30px);
  width:         calc(100% - 30px);
}
#sidebar .news_search .icon-plus {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 14px;
  top: 14px;
	background-color: #e6e7e8;
  background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
}
#sidebar .news_search .icon-plus:after ,
#sidebar .news_search .icon-plus:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 11px;
  background-color: #2D2D2E;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
  -webkit-transition: transform 0.25s ease-out;
  transition        : transform 0.25s ease-out;
}
#sidebar .news_search .icon-plus:after {
  height: 1px;
  width: 11px;
}
#sidebar .news_search.start .icon-plus:before {
  -webkit-transform: translate(-50%,-50%) rotate(90deg);
  transform        : translate(-50%,-50%) rotate(90deg);
}
#sidebar .news_search.start .icon-plus:after {
  -webkit-transform: translate(-50%,-50%) rotate(180deg);
  transform        : translate(-50%,-50%) rotate(180deg);
}
#sidebar .sidebar-contents {
  position: relative;
  overflow-y: auto;
}
#sidebar .sidebar-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(7,0,41,0.7);
  -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
  transition        : width 0s linear, opacity 200ms linear 200ms;
}

#sidebar.open-gnav .sidebar-bottom {
  width: 0;
  opacity: 0;
  -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
  transition        : width 0s linear 200ms, opacity 200ms linear;
}
@media screen and (max-width: 768px) {
  #sidebar.open-gnav .sidebar-bottom {
    opacity: 1;
    width: 100%;
  }
}

#sidebar .sidebar-bottom .pageNav02 {
  white-space: nowrap;
  position: absolute;
  bottom: 170px;
  left: 0;
  width: 100%;
}
/* 半導体のみ */
#sidebar .sidebar-bottom .pageNav02.has-sc-quote {
  bottom: 240px;
}

#sidebar .newsPanel {
  padding: 20px 24px 0;
}
#sidebar .newsPanel .body {
  padding: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
}
#sidebar .newsPanel .colbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 16px 0 32px;
}
#sidebar .newsPanel .colbox .col {
  vertical-align: bottom;
}
#sidebar .newsPanel .colbox .col .time {
  font-size: 1.3rem;
}
#sidebar .newsPanel .colbox .col .company {
  padding-top: 0;
}
#sidebar .newsPanel .newsLabel {
  background: #2D2D2E;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  padding: 4px;
  min-width: 76px;
  display: inline-block;
}
#sidebar .event-radio {
  border-radius: 3px;
  overflow: hidden;
  margin-top: 19px;
  font-weight: 400;
}
.ua-pc #sidebar .event-radio .col.active:hover ,
#sidebar .event-radio .col.active {
  color: #fff;
  background-color: #5D0F84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#sidebar .event-radio .col {
  width: 50%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 12px 16px;
  color: #7C7E80;
  background-color: #e6e7e8;
  background-image: -webkit-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
.ua-pc #sidebar .event-radio .col:hover {
  color: #840D84;
  background-color: #FFF7FF;
  background-image: -webkit-linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
  background-image:    -moz-linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
  background-image:         linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF7FF', endColorstr='#FFFCFF',GradientType=0 );
}
#sidebar .news_list {
  margin: 0 24px;
}
#sidebar .news_list .news_list_innerBox {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 3px;
  color: #333;
  overflow: hidden;
  border: 1px solid #E6E6E6;
}
#sidebar .news_list .news_list_row02 {
  padding: 16px;
  background-color: #fff;
  display: none;
}
#sidebar .news_list.open .news_list_row02 {
  display: block;
}
#sidebar .news_list .news_list_row01 {
    padding: 1.13em 16px;
    background-color: #FAFBFC;
}
#sidebar .news_list .news_list_row01 p {
  padding: 0;
  font-weight: 500;
}
.msie #sidebar .news_list .news_list_row01 p {
  font-weight: 600;
}
#sidebar .news_list .icon-arror {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 14px;
  top: 14px;
	background-color: #e6e7e8;
  background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
}
#sidebar .news_list .icon-arror:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/sc/icon/sidebar_news_list.png');
  background-size: cover;
  background-position: center;
  -webkit-transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
  transition        : all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
}
#sidebar .news_list.open .icon-arror:before ,
.ua-pc #sidebar .news_list a:hover .icon-arror:before {
  -webkit-transform: rotate(180deg);
  transform        : rotate(180deg);
}
#sidebar .qaBox {
  margin: 0 24px 16px;;
}
#sidebar .qaBox_innerBox {
  position: relative;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 16px 0 16px 69px;
}
#sidebar .qaBox_innerBox p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  padding: 0;
}
#sidebar .qaBox_innerBox i {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 37px;
  height: 37px;
  background-image: url('/assets/images/sc/icon/info.png');
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#sidebar .sidebar-contents .panele + .panele {
  margin-top: 16px;
}
#sidebar .fae_contact {
  margin: 0 24px;
  font-weight: 400;
}
#sidebar .fae_contact .fae_contact_innerBox {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 3px;
  color: #333;
  overflow: hidden;
}
#sidebar .fae_contact .fae_contact_row02 {
  padding: 16px;
  background-color: #fff;
  display: none;
}
#sidebar .fae_contact.open .fae_contact_row02 {
  display: block;
}
#sidebar .fae_contact .fae_contact_row01 {
  position: relative;
  padding: 1.13em 16px;
  border: 1px solid #E6E6E6;
  background-color: #FAFBFC;
}
#sidebar .fae_contact .fae_contact_row01 .toggle:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#sidebar .fae_contact .fae_contact_row01 > * {
  display: inline-block;
  vertical-align: middle;
}
#sidebar .fae_contact .fae_contact_row01 i {
  width: 19.91px;
  height: 19.91px;
  background-image: url('/assets/images/sc/icon/contact.png');
  background-size: cover;
  background-position: center;
}
#sidebar .fae_contact .fae_contact_row01 p {
  padding: 0 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.461538461538462;
  width: -webkit-calc(100% - 30px);
  width:         calc(100% - 30px);
}
#sidebar .fae_contact .fae_contact_row01 .icon-plus {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 14px;
  top: 22px;
  background-color: #e6e7e8;
  background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
}
#sidebar .fae_contact .fae_contact_row01 .icon-plus:after ,
#sidebar .fae_contact .fae_contact_row01 .icon-plus:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 11px;
  background-color: #2D2D2E;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
  -webkit-transition: transform 0.25s ease-out;
  transition        : transform 0.25s ease-out;
}
#sidebar .fae_contact .fae_contact_row01 .icon-plus:after {
  height: 1px;
  width: 11px;
}
#sidebar .fae_contact.start .icon-plus:before {
  -webkit-transform: translate(-50%,-50%) rotate(90deg);
  transform        : translate(-50%,-50%) rotate(90deg);
}
#sidebar .fae_contact.start .icon-plus:after {
  -webkit-transform: translate(-50%,-50%) rotate(180deg);
  transform        : translate(-50%,-50%) rotate(180deg);
}
#sidebar .fae_contact .fae_contact_row02 p {
  font-size: 1.2rem;
  line-height: 1.75;
  padding: 0;
}
#sidebar .fae_contact .fae_contact_row02 .button {
  min-width: 0;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  height: 46px;
}
#sidebar .selectBox {
  position: relative;
  margin: 0 24px;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  background-color: #FAFBFC;
}
#sidebar .selectBox:before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 14px;
  top: 14px;
  background-color: #e6e7e8;
  background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image: -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image: linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
}
#sidebar .selectBox:after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  right: 14px;
  top: 14px;
  background-image: url('/assets/images/sc/icon/sidebar_news_list.png');
  background-size: cover;
  background-position: center;
  -webkit-transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
  transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
}
#sidebar .selectBox select {
  position: relative;
  z-index: 1;
  padding: 16px 40px 16px 16px;
  border: none;
  font-size: 1.3rem;
  line-height: 1.461538461538462;
  background-color: transparent;
  width: 100%;
}
#sidebar header .news_search_title {
  padding: 0;
  font-size: 1.2rem;
  line-height: 3em;
  height: 3em;
  margin-bottom: 0;
}
#sidebar .site_search {
  padding: 16px 0;
}
#sidebar .site_search form {
  display: block;
  background-color: #fff;
  color: #2D2D2E;
  font-weight: 400;
  border-radius: 3px;
  padding: 24px 16px 32px;
}
#sidebar .site_search .row + .row {
  margin-top: 24px;
}
#sidebar .site_search p.label {
  margin-bottom: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}
#sidebar .site_search .site_search_row02 p.label {
  padding-top: 24px;
}
#sidebar .site_search .input_button_box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #F5F6F7;
  padding-right: 64px;
}
#sidebar .site_search .input_button_box input {
  border: none;
  background-color: transparent;
  font-size: 1.2rem;
  line-height: 1.25;
  padding: 14px 8px 12px;
  width: 100%;
}
#sidebar .site_search .input_button_box button {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  width: 64px;
  height: 100%;
  cursor: pointer;
}
#sidebar .site_search .input_button_box button:before ,
#sidebar .site_search .input_button_box button:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transition: opacity 250ms;
  transition        : opacity 250ms;
}
#sidebar .site_search .input_button_box button:before {
  background-color: #871d97;
  background-image: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background-image:    -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background-image:         linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
}
#sidebar .site_search .input_button_box button:after {
  z-index: -2;
  background-color: #6C2093;
  background-image: -webkit-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background-image:    -moz-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background-image:         linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
}
.ua-pc #sidebar .site_search .input_button_box button:hover:before {
  opacity: 0;
}
#sidebar .site_search .input_radio_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sidebar .site_search .bkclr-F5F6F7 {
  background-color: #F5F6F7;
  padding: 16px;
  margin-top: 8px;
}
#sidebar .site_search input[type="checkbox"] + span {
  font-size: 1.2rem;
  line-height: 1.633333333333333;
}
#sidebar .site_search .input_checkbox_box label.block + label.block {
  margin-top: 8px;
}
#sidebar .site_search .input_checkbox_box.colbox label {
  min-width: 50%;
  margin-top: 8px;
}
#sidebar .selectBox select::-ms-expand {
  display: none;
}
@media only screen and (min-width: 969px){
  #sidebar #site_search_pulldownContents {
    display: block !important;
  }
}
@media only screen and (max-width: 968px){
  #sidebar:after {
    display: none;
  }
  #sidebar .sidebar-bottom ,
  #breadcrumb {
    display: none;
  }
  #sidebar {
    position: static !important;
    width: 100%;
    height: auto;
    z-index: 999;
    /*margin-left: -336px;*/
    -webkit-transition: all 200ms linear;
    transition        : all 200ms linear;
  }
  #sidebar > .innerBox {
    position: relative;
    /*z-index: 2;*/
    height: auto;
    padding: 0;
    overflow: hidden;
  }
  #sidebar.open-gnav {
    margin-left: 0;
  }
  #sidebar .header {
    position: fixed;
    z-index: 999999;
    background-color: #fff;
    height: 50px;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 1px 2px 18px 0 rgba(0,0,0,0.08);
  }
  #sidebar .logo {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 144px;
    margin-left: -72px;
  }
  #sidebar .logo .pc {
    display: none !important;
  }
  #sidebar .logo .sp {
    display: inline-block !important;
  }
  #sidebar .menuBtn {
    top: 13px;
  }
  #sidebar .menuBtn span ,
  #sidebar .menuBtn span:before ,
  #sidebar .menuBtn span:after {
    background-color: #000;
  }
  /*#sidebar .sidebar-contents {
    width: 0 !important;
    opacity: 0 !important;
    display: none !important;
  }*/
  #sidebar .sidebar-header {
    background-image: -webkit-linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
    background-image:    -moz-linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
    background-image:         linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
  }
  #sidebar .innerBox02 header {
    width: 100%;
  }
  #sidebar:before {
    display: none;
  }
  #sidebar.open-gnav .innerBox02 {
    width: 100%;
    opacity: 1;
  }


  #sidebar .globalNavArea {
    position: fixed;
    z-index: 99;
    width: 0;
    top: 50px;
    opacity: 0;
    overflow: hidden;
    height: -webkit-calc(100vh - 50px);
    height:         calc(100vh - 50px);
    -webkit-transition: width 0ms linear 400ms, opacity 200ms linear;
    transition        : width 0ms linear 400ms, opacity 200ms linear;
  }
  #sidebar.open-gnav .globalNavArea {
    width: 100%;
    opacity: 1;
    overflow: visible;
    -webkit-transition: width 0ms linear, opacity 200ms linear;
    transition        : width 0ms linear, opacity 200ms linear;
  }
  #sidebar.open-gnav .globalNavArea:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('/assets/images/common/sidebar.png');
    background-size: cover;
    background-position: center;
  }
  #sidebar .globalNavArea #gnav {
    top: 0;
  }
  #sidebar.open-gnav:before {
    background: #000000;
  }
  #gnav .innerBox {
    padding: 32px 24px;
  }
  #sidebar .sidebar-contents {
    height: auto !important;
    overflow: visible;
  }
  #sidebar .tabBox .tab.ai_iot .col.active a:after {
    background-color: #24C2C9;
    background-image: -webkit-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
    background-image: -moz-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
    background-image: linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
  }
  #sidebar .tabBox .subTab.active {
    display: block;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #sidebar .tabBox .subTab {
    position: relative;
    display: none;
    padding: 10px 0;
    text-align: center;
    letter-spacing: -0.4em;
    margin-bottom: -8px;
  }
  #sidebar .tabNav.subTab > .showBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
  }
  #sidebar .tabBox .subTab .col {
    position: static;
    letter-spacing: normal;
    margin-left: 0;
    margin-right: 0;
  }
  #sidebar .tabBox .subTab a {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 0.480769230769231em 16px;
    color: #C6C6C6;
    font-weight: 400;
  }
  #sidebar .tabBox .subTab a span.col {
    vertical-align: middle;
    white-space: nowrap;
  }
  .ua-pc #sidebar .tabBox .subTab .col a:hover span ,
  #sidebar .tabBox .subTab .col.active a span {
    color: #fff;
    text-decoration: none;
  }
  #sidebar .tabBox .subTab.is-a-hover .active a span ,
  #sidebar .tabBox .subTab.is-a-hover a span ,
  #sidebar .tabBox .subTab a span {
    color: #C6C6C6;
  }
  #sidebar .tabBox .subTab a:after {
    display: none;
  }
  #sidebar .tabBox .subTab .bk {
    position: absolute;
    top: 50%;
    height: 2em;
    border-radius: 1em;
    padding: 0;
    margin-left: 0;
		background-color: #ef7763;
    background: -webkit-linear-gradient(315deg, #ef7763 0%, #e9462b 100%);
    background: -moz-linear-gradient(315deg, #ef7763 0%, #e9462b 100%);
    background: linear-gradient(315deg, #ef7763 0%, #e9462b 100%);
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    margin: 0;
    margin-right: 0px;
    margin-left: 0px;
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 50px;
  }
  #sidebar .tabBox .subTab .type-maas{
    background: -webkit-linear-gradient(135deg, #70D6BE 0%, #2BAB9C 100%);
    background:    -moz-linear-gradient(135deg, #70D6BE 0%, #2BAB9C 100%);
    background:         linear-gradient(135deg, #70D6BE 0%, #2BAB9C 100%);
  }
  #sidebar .tabBox .subTab .type-healthcare{
    background: -webkit-linear-gradient(135deg, #EF71B0 0%, #E72D8A 100%);
    background:    -moz-linear-gradient(135deg, #EF71B0 0%, #E72D8A 100%);
    background:         linear-gradient(135deg, #EF71B0 0%, #E72D8A 100%);
  }
  #sidebar .type-sekkei ,
  #sidebar .tabBox .subTab .bk.type-sekkei {
    border-color: transparent;
    color: #fff;
    background-color: #436BB6;
    background: -webkit-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
    background:    -moz-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
    background:         linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  }
  #sidebar .type-pckup ,
  #sidebar .tabBox .subTab .bk.type-pckup {
    background-color: #E26C4F;
    background: -webkit-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
    background:    -moz-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
    background:         linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  }
  #sidebar .tabBox .subTab .bk.ai_iot {
    background-color: #24C2C9;
    background-image: -webkit-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
    background-image:    -moz-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
    background-image:         linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
  }
  #sidebar .tabBox .subTab .bk.type-servicerobot {
    background-color: #239E2C;
    background-image: -webkit-linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
    background-image:    -moz-linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
    background-image:         linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
  }

}
@media only screen and (max-width: 968px) and (min-width: 769px){
  #sidebar .navBox {
    display: none;
  }
  #sidebar #cloneTabBoxArea ,
  #sidebar #cloneTabBoxArea .tabBox {
    display: block !important;
  }
  #sidebar #cloneTabBoxArea {
    position: relative;
  }
  #sidebar .tabBox {
    background-color: #242424;
    padding-top: 8px;
    border-bottom: 8px solid #000;
  }
  #sidebar .tabBox a {
    color: #C4C4C4;
  }
  #sidebar .tabBox .active a {
    color: #fff;
  }
  #sidebar .tabBox .tab {
    table-layout: fixed;
    display: table;
    width: 100%;
    padding: 0 32px;
    max-width: 1024px;
    margin-left:auto;
    margin-right:auto;
    font-weight: 400;
  }
  #sidebar .tabBox .tab .col {
    display: table-cell;
    vertical-align: middle;
    height: 72px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    border-top: 4px solid transparent;
  }
  #sidebar .tabBox .tab .col a {
    position: relative;
    display: block;
    -webkit-transition: all 150ms ease-in-out;
    transition        : all 150ms ease-in-out;
  }
  .ua-pc #sidebar .tabBox .tab .col a:hover {
    color: #fff;
  }
  .ua-pc #sidebar .tabBox .tab .col a:hover > span {
    text-decoration: none;
  }
  #sidebar .tabBox .tab .col a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 72px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
  }
  #sidebar .tabBox .tab .col a[target="_blank"] span:after {
    content: '';
    background-image: url('/assets/images/common/window_blk-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: baseline;
    width: 12px;
    height: 11px;
    line-height: 1;
    margin: 0 0.8em 0 0.5em;
  }
  #sidebar .tabBox .tab .col.active {
    background-color: #000;
  }
  #sidebar .tabBox .tab .col a:after {
    display: none;
  }
  #sidebar .tabBox .tab.default .col.active a:after ,
  #sidebar .tabBox .tab .col.active a:after {
    content: '';
    position: absolute;
    display: block;
    margin: 0;
    left: 0;
    top: 50%;
    margin-top: -38px;
    width: 100%;
    height: 4px;
    background-color: #6542B4;
    background-image: -webkit-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
    background-image:    -moz-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
    background-image:         linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6542B4', endColorstr='#9C4BD9',GradientType=0 );
    border-radius: 3px 3px 0 0;
  }
  #sidebar .news_search_title {
    color: #2d2d2e;
    font-weight: 400;
  }
  #sidebar .news_search .news_search_row02 {
    border: 1px solid #E6E6E6;
    border-top: none;
  }
  #sidebar .news_search ,
  #sidebar .event-radio ,
  #sidebar .news_search_title {
    margin-left: 32px;
    margin-right: 32px;
    color: #fff;
  }
  #sidebar .news_search.panele{
    margin: 32px;
  }
  #sidebar .event-radio {
    margin-bottom: 32px;
  }
  #sidebar .sp-bk-wht {
    padding: 32px 0 0;
    background-color: #fff;
  }
  #sidebar header .sp-bk-wht {
    margin: 32px -24px -32px;
    padding: 1px 0;
  }
  #sidebar .sp-bk-wht .selectBox {
    margin: 0 32px;
  }
  #sidebar .tabBox .sp ,
  #sidebar .tabBox.sp {
    display: block !important;
  }
  #sidebar .tabBox img.sp ,
  #sidebar .tabBox span.sp {
    display: inline-block !important;
  }
  #sidebar .tabBox .searchContentArea ,
  #sidebar .tabBox .menuBox ,
  #sidebar .tabBox .spMenuArea {
    display: none !important;
  }
  #sidebar .newsPanel .colbox {
    margin: 16px 0 0;
    padding-bottom: 32px;
  }
  #sidebar .search .innerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  #sidebar .search .colbox {
    width: auto;
    margin-left: auto;
  }
  #sidebar .search .colbox:before {
    margin-left: 0;
  }
}

  @media screen and (min-width: 769px) {
    #sidebar .globalNavArea  .search,
    #sidebar .globalNavArea  .contact {
      display: none;
    }
  }

@media only screen and (max-width: 768px){
  #sidebar header .sp-bk-wht {
    margin: 6.4vmin -5.333333333333333vmin -6.4vmin;
    padding: 6.4vmin 0;
  }
  #sidebar header .sp-bk-wht .event-radio {
    margin-top: 7.466666666666667vmin;
  }
  #sidebar .tabBox .sp ,
  #sidebar .tabBox.sp {
    display: block !important;
  }
  #sidebar .tabBox img.sp ,
  #sidebar .tabBox span.sp {
    display: inline-block !important;
  }
  body.contentsNoScroll #sidebar ,
  .sticky.endSticky #sidebar {
    position: fixed;
    top: 0;
    bottom: auto;
  }
  #sidebar .sidebar-contents {
    height: auto !important;
  }
  #sidebar header .return_link svg path {
    stroke: #fff !important;
  }
  #sidebar .sidebar-contents > div ,
  #sidebar .sidebar-bottom ,
  #sidebar .navBox ,
  #sidebar .contact {
    display: none;
  }
  #sidebar.open-gnav .sidebar-header ,
  #sidebar.open-gnav .sidebar-contents {
    width: 100%;
    opacity: 1;
  }
  #sidebar .sp.contact {
    display: none !important;
  }
  #sidebar.open-gnav .contact.sp {
    display: block !important;
    width: 100% !important;
    opacity: 1;
    padding-left: 5.333333333333333vmin;
    padding-right: 5.333333333333333vmin;
  }
  #sidebar .contact {
  }
  #sidebar {
    position: relative !important;
    z-index: 9999;
    width: 100%;
    height: 13.333333333333333vmin;
    height: auto;
  }
  #sidebar:before {
    opacity: 0;
    -webkit-transition: height 0ms linear 200ms, opacity 200ms linear;
    transition        : height 0ms linear 200ms, opacity 200ms linear;
  }
  #sidebar.open-gnav:before {
    height: 100vh;
    margin-top: 1px;
    opacity: 1;
    -webkit-transition: height 0ms linear, opacity 200ms linear;
    transition        : height 0ms linear, opacity 200ms linear;
  }
  #sidebar:after {
    display: none !important;
  }
  #sidebar .innerBox02 {
    width: 100%;
    -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
    transition: width 0s linear, opacity 200ms linear 200ms;
  }
  /*#sidebar > .innerBox {
    position: relative;
    height: 0;
    padding: 0;
    overflow: visible;
    -webkit-transition: height 0ms linear 200ms;
    transition        : height 0ms linear 200ms;
  }*/
  #sidebar > .innerBox {
    height: auto;
    overflow: visible;
    padding: 0;
  }
  /*#sidebar.open-gnav > .innerBox {
    -webkit-transition: height 0ms linear;
    transition        : height 0ms linear;
    height: 100%;
    height: -webkit-calc(100vh - 76px);
    height:         calc(100vh - 76px);
  }*/
  #sidebar .search {
    bottom: 0;
  }
  #sidebar .header {
    position: fixed;
    z-index: 999;
    top: -1px;
    left: 0;
    width: 100%;
    height: 13.5vmin;
    background-color: #ffff;
    box-shadow: 1px 2px 18px 0 rgba(0,0,0,0.08);
  }
  .is_tabBox #sidebar .header {
    position: relative;
    top: 0;
    height: 13.333333333333333vmin;
    margin-top: -13.333333333333333vmin;
  }
  #sidebar .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform        : translate(-50%,-50%);
    margin: 0;
  }
  #sidebar .logo ,
  #kv .logo {
    width: 26.666666666666667vmin;
  }
  #sidebar .menuBtn {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
  }
  #sidebar .menuBtn.spleft {
    left: 5.333333333333333vmin;
    right: auto;
  }
  #sidebar .menuBtn span {
    top: 50%;
    background-color: #000;
    margin-bottom: 22px;
  }
  #sidebar .menuBtn span:before ,
  #sidebar .menuBtn span:after {
    background-color: #000;
  }
  #sidebar .menuBtn.spleft span:before ,
  #sidebar .menuBtn.spleft span:after {
    left: 0;
  }
  #sidebar .search form input {
    width: 62.666666666666667vmin;
    width: 83.555555555555556vmin !important;
    height: 10.8vmin;
    height: 14.4vmin;
    padding: 0 1em 0 10.8vmin;
    font-size: 1.6rem;
    margin-right: -20.888888888888889vmin;
  }
  #sidebar .search form button {
    left: 4.4vmin;
    width: 4.4vmin;
    margin-top: -1.8vmin !important;
    margin-left: -2vmin
  }
  #sidebar .search .innerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
  #sidebar .search .colbox {
    width: -webkit-calc(100% - 62.666666666666667vmin);
    width:         calc(100% - 62.666666666666667vmin);
    width: 19vmin;
    font-size: 3.466666666666667vmin;
    margin-top: -5vmin !important;
    margin-left: auto;
  }
  #gnav {
    top: 26.666666666666667vmin;
  }
  #gnav .menu > li > span ,
  #gnav .menu > li > a {
    font-size: 4vmin;
  }
  #gnav .submenu > li > span ,
  #gnav .submenu > li > a {
    font-size: 3.733333333333333vmin;
    padding: 0.8em 0;
  }
  #breadcrumb li {
    width: 0;
    overflow: hidden;
    padding: 0;
    display: none;
    font-size: 3.466666666666667vmin;
  }
  #breadcrumb {
    display: none;
  }
  #sidebar .innerBox02 header {
    width: 100%;
    padding: 6.4vmin 5.333333333333333vmin;
    font-size: 3.466666666666667vmin;
    background-image: linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
  }
  #sidebar.open-gnav .innerBox02 {
    width: 100%;
    opacity: 1;
  }
  #sidebar header h1 {
    font-size: 5.866666666666667vmin;
  }
  #sidebar header .time {
    font-size: 2.933333333333333vmin;
    line-height: 1.6;
    display: block;
    text-align: right;
    margin-top: 4.266666666666667vmin;
  }
  #sidebar header p {
    font-size: 3.2vmin;
    font-weight: 400;
  }
  #breadcrumb li:last-of-type {
    display: block;
  }
  #sidebar header .return_link {
    line-height: 1.75;
    font-size: 3.466666666666667vmin;
    padding: 0;
    background-color: transparent;
    border: none;
    color: #fff;
  }
  #sidebar header .return_link i svg line {
    stroke: #fff !important;
  }
  /*#sidebar.open-gnav .innerBox02 {
    width: 0;
    opacity: 1;
  }
  #sidebar.open-gnav .innerBox02:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #333333;
    top: 26.666666666666667vmin;
  }*/
  #sidebar .globalNavArea {
    position: fixed;
    z-index: 99;
    width: 0;
    top: 13.333333333333333vmin;
    opacity: 0;
    overflow: hidden;
    height: -webkit-calc(100% - 13.333333333333333vmin);
    height:         calc(100% - 13.333333333333333vmin);
    -webkit-transition: width 0ms linear 400ms, opacity 200ms linear;
    transition        : width 0ms linear 400ms, opacity 200ms linear;
  }
  #sidebar.open-gnav .globalNavArea {
    width: 100%;
    opacity: 1;
    overflow: visible;
    -webkit-transition: width 0ms linear, opacity 200ms linear;
    transition        : width 0ms linear, opacity 200ms linear;
  }
  #sidebar.open-gnav .globalNavArea:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url('/assets/images/common/sidebar.png');
    background-size: cover;
    background-position: center;
  }
  #sidebar .globalNavArea #gnav {
    top: 0;
  }
  #sidebar.open-gnav:before {
    background: #000000;
  }
  #gnav .innerBox {
    padding: 7.333333333333333vmin 5.333333333333333vmin;
    -webkit-overflow-scrolling: touch;
  }
  #sidebar .button {
    display: inline-block;
    font-size: 13px;
    min-width: 288px;
    border-radius: 0.8vmin;
    border: none;
    color: #fff;
  }
  #breadcrumb li:last-of-type {
    position: absolute;
    color: #fff;
    -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
    transition        : width 0s linear, opacity 200ms linear 200ms;
    opacity: 0;
    right: 5.333333333333333vmin;
    top: 17vmin;
    width: auto;
  }
  #sidebar.open-gnav #breadcrumb li:last-of-type {
    width: auto;
    opacity: 1;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear, -webkit-transform 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear, transform 200ms linear;
  }
  #sidebar #breadcrumb li:last-of-type:before {
    display: none;
  }
  #sidebar #breadcrumb li:last-of-type a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 4.133333333333333vmin;
    height: 4.133333333333333vmin;
    background-image: url('/assets/images/element-list/breadcrumb-arrow.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 0 4.266666666666667vmin;
    -webkit-transform: rotate(-90deg);
    transform        : rotate(-90deg);
  }
  #sidebar.search-content-open #breadcrumb li:last-of-type {
    -webkit-transform: translateX(150%);
    transform        : translateX(150%);
    opacity: 0;
  }
  /*#sidebar.search-content-open #gnav {
    width: 0;
    opacity: 0;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear;
  }
  #sidebar.search-content-open .contact.sp {
    width: 0;
    opacity: 0;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear;
  }*/
  #sidebar.open-gnav #gnav {
    height: calc(100% - 170px);
    width: 100%;
    opacity: 1;
    -webkit-transition: width 0s linear, opacity 200ms linear 200ms;
    transition: width 0s linear, opacity 200ms linear 200ms;
  }
  #sidebar .tabBox .spMenuArea {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    height: -webkit-calc(100vh - 13.333333333333333vmin);
    height:         calc(100vh - 13.333333333333333vmin);
    width: 0;
    opacity: 0;
    top: 13.333333333333333vmin;
    background-color: #000;
    border-top: 1px solid #333;
    -webkit-transition: opacity 200ms linear, width 0s linear 200ms;
    transition        : opacity 200ms linear, width 0s linear 200ms;
  }
  #sidebar.tabMenuToggle-open .tabBox .spMenuArea {
    width: 100%;
    opacity: 1;
    -webkit-transition: opacity 200ms linear, width 0s linear;
    transition        : opacity 200ms linear, width 0s linear;
  }
  #sidebar .tabBox .spMenuArea:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    top: 0;
    left: 0;
  }
  #sidebar .tabBox .spMenuArea .menu {
    position: relative;
    overflow-y: scroll;
    overflow-y: auto;
    max-height: 100%;
    max-height: -webkit-calc(100vh - 76px - 13.333333333333333vmin);
    max-height:         calc(100vh - 76px - 13.333333333333333vmin);
    font-weight: 400;
    padding: 7.333333333333333vmin 5.333333333333333vmin 76px;
    -webkit-overflow-scrolling: touch;
  }
  #sidebar .tabBox .spMenuArea .menu > li > span ,
  #sidebar .tabBox .spMenuArea .menu > li > a {
    line-height: 1;
    display: inline-block;
    vertical-align: top;
    font-size: 1.4rem;
    padding: 0.571428571428571em 0;
    overflow: hidden;
    white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 100%;
    cursor: pointer;
  }
  #sidebar .tabBox .spMenuArea .menu .button.action01 {
    text-align: center;
  }
  #sidebar .tabBox .spMenuArea i.pulldown {
    display: inline-block;
    width: 0.642857142857143em;
    line-height: 0.3;
    vertical-align: middle;
    margin: 0 0.4em;
    -webkit-transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
    transition        : all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
  }
  #sidebar .tabBox .spMenuArea .slideToggleAction-on i.pulldown {
    -webkit-transform: rotate(180deg);
    transform        : rotate(180deg);
  }
  #sidebar .tabBox .spMenuArea i.blank {
    display: inline-block;
    width: 0.923076923076923em;
    line-height: 1;
    vertical-align: middle;
    margin-left: 0.4em;
  }
  #sidebar .tabBox .spMenuArea li ul {
    margin: 8px 0 0 20px;
  }
  #sidebar .tabBox .spMenuArea li + li {
    margin-top: 24px;
  }
  #sidebar .tabBox .spMenuArea .submenu {
    display: none;
  }
  #sidebar .tabBox .spMenuArea .submenu li + li {
    margin-top: 0;
  }
  #sidebar .tabBox .spMenuArea .submenu > li > span ,
  #sidebar .tabBox .spMenuArea .submenu > li > a {
    display: inline-block;
    vertical-align: top;
    padding: 0.653846153846154em 0;
    overflow: hidden;
    white-space: nowrap;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  #sidebar .searchContentArea {
    font-size: 1.3rem;
    width: 0;
    line-height: 1;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear;
  }
  #sidebar #serchContetToggle img {
    position: absolute;
    z-index: 999;
    width: 5.2vmin;
    left: 5.333333333333333vmin;
    top: 4vmin;
    /*-webkit-transform: translateX(-150%);
    transform        : translateX(-150%);*/
    opacity: 1;
    -webkit-transition: opacity 200ms linear, -webkit-transform 200ms linear;
    transition        : opacity 200ms linear, transform 200ms linear;
  }
  #sidebar.tabMenuToggle-open #serchContetToggle img {
    -webkit-transform: translateX(-250%);
    transform        : translateX(-250%);
    opacity: 1;
    -webkit-transition: opacity 200ms linear, -webkit-transform 200ms linear;
    transition        : opacity 200ms linear, transform 200ms linear;
  }
  #sidebar .searchContentArea > .searchContent {
    position: absolute;
    width: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    background-color: #000;
    top: 13.333333333333333vmin;
    height: -webkit-calc(100vh - 76px - 13.333333333333333vmin);
    height:         calc(100vh - 76px - 13.333333333333333vmin);
    -webkit-transition: width 0s linear 200ms, padding 0s linear 200ms, opacity 200ms linear;
    transition        : width 0s linear 200ms, padding 0s linear 200ms, opacity 200ms linear;
  }
  #sidebar .searchContentArea > .searchContent > * {
    position: relative;
  }
  #sidebar .searchContentArea:before {
    content: '';
    position: absolute;
    top: 13.333333333333333vmin;
    left: 0;
    z-index: 0;
    width: 0;
    height: 100vh;
    background-color: #000;
    border-top: 1px solid #333333;
    opacity: 0;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear;
  }
  #sidebar.serchContetToggle-open .searchContentArea:before {
    width: 100vw;
    opacity: 1;
    -webkit-transition: width 0s linear, opacity 200ms linear;
    transition        : width 0s linear, opacity 200ms linear;
  }
  #sidebar.serchContetToggle-open .searchContent {
    overflow-y: auto;
    padding: 7.466666666666667vmin 5.333333333333333vmin;
    width: 100vw;
    opacity: 1;
    -webkit-transition: width 0s linear, padding 0s linear, opacity 200ms linear;
    transition        : width 0s linear, padding 0s linear, opacity 200ms linear;
    -webkit-overflow-scrolling: touch;
  }
  #sidebar .searchContent .row01 form {
    position: relative;
    display: block;
    width: 100%;
  }
  #sidebar .searchContent .row01 form input {
    background: #F5F6F7;
    border-radius: 0.8vmin 0 0 0.8vmin;
    border: none;
    font-size: 4.266666666666667vmin;
    line-height: 1.4;
    padding: 1.383em 4.266666666666667vmin;
    width: -webkit-calc((100% - 1px - 22.133333333333333vmin) * 1.333333333333333) !important;
    width:         calc((100% - 1px - 22.133333333333333vmin) * 1.333333333333333) !important;
    display: inline-block;
    vertical-align: top;
    line-height: 1.4;
    margin: 0;
  }
  #sidebar .searchContent .row01 form button {
    display: inline-block;
    vertical-align: top;
    background-color: transparent;
    border: none;
    width: 22.133333333333333vmin;
    font-size: 4.266666666666667vmin;
    padding: 0.8625em 0;
    line-height: 1.4;
    background-color: #5D0F84;
    background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
    border-radius: 0 4px 4px 0;
    color: #fff;
    margin: 0 0 0  -22.133333333333333vmin;
  }
  #sidebar .searchContent .row02 {
    margin-top: 7.466666666666667vmin;
    padding-top: 7.466666666666667vmin;
  }
  .entry-mfr #sidebar .searchContent .row02 {
    margin-top: 0;
    padding-top: 0;
  }
  #sidebar .searchContent .row02 p {
    font-size: 4.8vmin;
    line-height: 1;
    padding: 0;
  }
  #sidebar .searchContent .row02 img {
    width: 10vmin;
    margin-right: 3.2vmin;
    vertical-align: middle;
  }
  #sidebar .searchContent .row03 {
    padding-top: 6.4vmin;
  }
  #sidebar .searchContent .row03 p {
    font-size: 3.2vmin;
    line-height: 1;
    padding: 0;
  }
  #sidebar .searchContent .row03 p span {
    font-size: 8.533333333333333vmin;
  }
  #sidebar .searchContent .row04 dl {
    margin-top: 5.333333333333333vmin;
    border-right: 1px solid #CDD0D4;
    border-bottom: 1px solid #CDD0D4;
    background-color: #fff;
    color: #333;
    font-size: 3.2vmin;
    font-weight: 400;
  }
  #sidebar .searchContent .row04 dt ,
  #sidebar .searchContent .row04 dd {
    border-top: 1px solid #CDD0D4;
    border-left: 1px solid #CDD0D4;
    padding: 3.2vmin;
  }
  #sidebar .searchContent .row04 dt {
    background: #FAF7FA;
  }
  #sidebar .searchContent .row04 dd {
    padding: 4.266666666666667vmin;
  }
  #sidebar .searchContent .row04 dd .colbox {
    margin-bottom: -2.133333333333333vmin ;
    margin-top: 0 !important;
  }
  #sidebar .searchContent h3 {
    position: relative;
    line-height: 1.6;
    font-weight: 400;
    font-size: 4.8vmin;
    padding-bottom: 0.583333333333333em;
    margin: 12.8vmin 0 4.266666666666667vmin;
  }
  #sidebar .searchContent h3:before ,
  #sidebar .searchContent h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #CDD0D4;
  }
  #sidebar .searchContent h3:after {
    width: 30%;
    background: #5D0F84;
    background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
  }
  #sidebar .searchContent label {
    padding-right: 1em;
    margin-top: 2.133333333333333vmin !important;
    margin-bottom: 2.133333333333333vmin !important;
  }
  #sidebar .searchContent label.block {
    margin: 0 !important;
  }
  #sidebar .searchContent label.block + label.block {
    margin-top: 4.266666666666667vmin !important;
  }
  #sidebar .chrSearch {
    letter-spacing: -0.4em;
  }
  #sidebar .chrSearch ul {
    margin-bottom: -6.4vmin;
    margin-left: -6.4vmin;
  }
  #sidebar .chrSearch li {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    text-align: center;
    width: -webkit-calc((100% - 1px - 4.266666666666667vmin * 5) / 5);
    width:         calc((100% - 1px - 4.266666666666667vmin * 5) / 5);
    margin: 0 0 4.266666666666667vmin 4.266666666666667vmin;
  }
  #sidebar .chrSearch li > * {
    border: 1px solid #E6CEE6;
    border-radius: 0.533333333333333vmin;
    -webkit-transition: all 200ms linear;
    transition        : all 200ms linear;
    position: relative;
    padding-top: 100%;
    display: block;
    color: #73168E;
    font-size: 3.466666666666667vmin;
  }
  .ua-pc #sidebar .chrSearch li > a:hover ,
  #sidebar .chrSearch li.active > a {
    background: #75178F;
    background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    border-color: transparent;
    color: #fff;
  }
  #sidebar .chrSearch li > * {
  }
  #sidebar .chrSearch li > * span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform        : translate(-50%,-50%);
  }
  #sidebar .chrSearch li > span {
    background-color: #F5F6F7;
    color: #7C7E80;
    border-color: transparent;
  }
  #sidebar .chrSearch li:nth-child(26) {
    content: '';
    display: inline-block;
    width: -webkit-calc((100% - 1px - 4.266666666666667vmin * 5) / 5 * 6);
    width:         calc((100% - 1px - 4.266666666666667vmin * 5) / 5 * 6);
    padding-right: -webkit-calc((100% - 1px - 4.266666666666667vmin * 5) / 5 * 5);
    padding-right:         calc((100% - 1px - 4.266666666666667vmin * 5) / 5 * 5);
  }
  #sidebar .h3 {
    position: relative;
    line-height: 1.6;
    font-size: 4.8vmin;
    padding-top: 0;
    padding-bottom: 0.583333333333333em;
    margin: 4.266666666666667vmin 0 4.266666666666667vmin;
  }
  #sidebar .h3:before ,
  #sidebar .h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #CDD0D4;
  }
  #sidebar .h3:after {
    width: 30%;
    background: #5D0F84;
    background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
  }
  #sidebar .searchContent .submitButton {
    margin-top: 8.533333333333333vmin;
  }
  #sidebar .searchContent .resetButton {
    margin-top: 4.266666666666667vmin;
    padding-bottom: 4.266666666666667vmin;
    text-align: center;
  }
  #sidebar .searchContent .resetButton button {
    position: relative;
    width: 58.4vmin;
    height: 10.666666666666667vmin;
    font-size: 3.2vmin;
    color: #7C7E80;
    text-align: center;
    background: #F5F6F7;
    border: 1px solid #7C7E80;
    border-radius: 4px;
  }
  #sidebar .searchContent .resetButton button:after ,
  #sidebar .searchContent .resetButton button:before {
    display: none;
  }
  #sidebar .searchContent .resetButton button i {
    right: 8.533333333333333vmin;
    width: 2.666666666666667vmin;
    height: 2.666666666666667vmin;
    background-color: transparent;
    border-radius: 0;
    background-image: none;
  }
  #sidebar .searchContent .resetButton button i:after ,
  #sidebar .searchContent .resetButton button i:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4.266666666666667vmin;
    height: 1px;
    background-color: #7C7E80;
    -webkit-transform: rotate(-45deg);
    transform        : rotate(-45deg);
  }
  #sidebar .searchContent .resetButton button i:after {
    -webkit-transform: rotate(45deg);
    transform        : rotate(45deg);
  }

  #sidebar .tabBox {
    /*! position: absolute; */
    position: relative;

    z-index: 1;
    width: 100%;
    background-color: #000;
    top: 0;
    /*! height: 13.333333333333333vmin !important; */
    margin-top: 0 !important;
  }
  #sidebar .tabBox .subTab {
    display: none !important;
    border-top: 1px solid #333333;
    padding: 2.666666666666667vmin 0;
    text-align: left;
  }
  .entry-mfr #sidebar .tabBox .subTab {
    display: block !important;
  }
  #sidebar .tabNav.subTab > .showBox {
    display: block;
    justify-content: space-between;
    margin: 0 auto -2.666666666666667vmin;
    align-items: center;
    padding: 0 5.333333333333333vmin 2.666666666666667vmin;
    white-space: nowrap;
  }
  /*#sidebar.search-content-open .tabBox .subTab {
    width: 0;
    padding: 0;
  }*/
  #sidebar .tabBox .subTab .showBox > .col:last-child {
    margin-right: 5.333333333333333vmin;
  }
  #sidebar #cloneTabBoxArea.isSubTab .tabBox {
    padding-top: 13.333333333333333vmin;
  }
  #cloneTabBoxArea {
    min-height: 13.333333333333333vmin;
    background-color: #000;
  }
  #sidebar #cloneTabBoxArea.on .tabBox {
    position: fixed;
    top: 0;
    height: 13.333333333333333vmin;
  }
  #sidebar .tabBox .subTab .bk {
    height: -webkit-calc(100% - 5.333333333333334vmin);
    height:         calc(100% - 5.333333333333334vmin);
    border-radius: 100px;
    margin-top: 0.1vmin;
  }
  #sidebar .tabBox .subTab .bk:before ,
  #sidebar .tabBox .subTab .bk:after {
    border-radius: 100px;
  }
  #sidebar .tabBox .subTab a {
    font-size: 3.466666666666667vmin;
  }
  #sidebar .tabBox .menuBox {
    /*! position: relative; */
    right: 0
  }
  #sidebar .tab {
    height: 0;
    overflow: hidden;
  }
  #sidebar .tabBox .menuBox a {
    position: absolute;
    color: #fff;
    opacity: 0;
    right: 5.333333333333333vmin;
    top: 5vmin;
    width: auto;
    font-size: 3.466666666666667vmin;
    width: auto;
    font-weight: 400;
    opacity: 1;
    -webkit-transition: width 0s linear 200ms, opacity 200ms linear, -webkit-transform 200ms linear;
    transition        : width 0s linear 200ms, opacity 200ms linear, transform 200ms linear;
  }
  #sidebar.serchContetToggle-open .tabBox .menuBox a{
    -webkit-transform: translateX(150%);
    transform        : translateX(150%);
    opacity: 0;
  }
  #sidebar .tabBox .menuBox a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 3.733333333333333vmin;
    height: 3.733333333333333vmin;
    background-image: url('/assets/images/element-list/breadcrumb-arrow.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 0 4.266666666666667vmin;
    -webkit-transform: rotate(90deg);
    transform        : rotate(90deg);
  }
  #sidebar .tabBox .menuBox #tabMenuToggle:after {
    -webkit-transition: all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
    transition        : all 350ms cubic-bezier(0.01, 0.79, 0.46, 1.14);
  }
  #sidebar.tabMenuToggle-open .tabBox .menuBox #tabMenuToggle:after {
    -webkit-transform: rotate(270deg);
    transform        : rotate(270deg);
  }
  #sidebar.search-content-open #breadcrumb li:last-of-type {
    -webkit-transform: translateX(150%);
    transform        : translateX(150%);
    opacity: 0;
  }


  #sidebar .sidebar-contents {
    color: #2D2D2E;
    font-weight: 400;
    overflow: visible;
    height: auto !important;
  }
  #sidebar .sidebar-contents > .formNav {
    display: block;
  }
  #sidebar .sidebar-contents > .formNav > ul {
    background-color: #F5F6F7;
    border-radius: 0.8vmin;
    padding: 3.733333333333333vmin 6.4vmin;
    margin: 5.333333333333333vmin 5.333333333333333vmin 0;
  }
  #sidebar .sidebar-contents > .formNav a {
    font-weight: 400;
    font-size: 3.2vmin;
    padding-top: 2.666666666666667vmin;
    padding-bottom: 2.666666666666667vmin;
  }
  #sidebar .sidebar-contents > .formNav a.active {
    font-weight: 500;
  }
  .msie #sidebar .sidebar-contents > .formNav a.active {
    font-weight: 600;
  }
  #sidebar .navBox.formNav .active a:after ,
  #sidebar .navBox.formNav a:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
  }
  #sidebar .navBox.formNav .active a:before ,
  #sidebar .navBox.formNav .active ~ li a:before ,
  #sidebar .navBox.formNav .active ~ li a::after {
    background-color: #d3d2d3;
  }

  #sidebar .sidebar-contents > .newsPanel {
    display: block;
    padding: 5.333333333333333vmin 5.333333333333333vmin 6.4vmin;
    background-image: -webkit-linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
    background-image:    -moz-linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
    background-image:         linear-gradient(-135deg, #212A53 0%, #2262A1 100%);
  }
  #sidebar .sidebar-contents > .newsPanel h1 {
    font-size: 5.066666666666667vmin;
    line-height: 1.5;
  }
  #sidebar .newsPanel .colbox {
    margin-top: 4.8vmin;
    margin-bottom: 0;
  }
  #sidebar .newsPanel .colbox .time ,
  #sidebar .newsPanel .colbox .company {
    font-size: 2.933333333333333vmin;
    line-height: 1.6;
  }
  #sidebar .newsPanel .newsLabel {
    font-size: 2.933333333333333vmin;
    min-width: 20.266666666666667vmin;
  }
  #sidebar .sidebar-contents > .news_list {
    display: block;
    margin: 6.4vmin 5.333333333333333vmin 0;
  }
  #sidebar .news_list .icon-arror {
    position: absolute;
    width: 5.333333333333333vmin;
    height: 5.333333333333333vmin;
    border-radius: 50%;
    right: 14px;
    top: 4vmin;
    background-color: #e6e7e8;
    background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
    background-image:    -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
    background-image:         linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
  }
  #sidebar .news_list .icon-arror:after ,
  #sidebar .news_list .icon-arror:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 11px;
    background-color: #2D2D2E;
    -webkit-transform: translate(-50%,-50%);
    transform        : translate(-50%,-50%);
    -webkit-transition: transform 0.25s ease-out;
    transition        : transform 0.25s ease-out;
  }
  #sidebar .news_list .icon-arror:after {
    height: 1px;
    width: 11px;
  }
  #sidebar .news_list.open .icon-arror:before ,
  .ua-pc #sidebar .news_list a:hover .icon-arror:before {
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transform        : translate(-50%,-50%) rotate(90deg);
  }
  #sidebar .news_list.open .icon-arror:after ,
  .ua-pc #sidebar .news_list a:hover .icon-arror:after {
    -webkit-transform: translate(-50%,-50%) rotate(180deg);
    transform        : translate(-50%,-50%) rotate(180deg);
  }
  #sidebar .news_search_title {
    padding: 6.4vmin 0 0;
    padding: 6.4vmin 5.333333333333333vmin 0;
    font-size: 2.933333333333333vmin;
    line-height: 1.636363636363636em;
    height: auto;
    margin: 0 0 4.266666666666667vmin;
  }
  .entry-mfr #sidebar .news_search_title {
    padding: 6.4vmin 5.333333333333333vmin 0;
  }
  #sidebar .news_search_title span {
    font-size: 5.866666666666667vmin;
  }
  #sidebar .news_search_title + .news_search_keyword {
    margin-top: -4.266666666666667vmin;
    padding: 4.266666666666667vmin 5.333333333333333vmin 0;
    font-size: 2.933333333333333vmin;
    line-height: 1.636363636363636em;
    height: auto;
  }
  #sidebar .news_search_keyword span {
    font-size: 4.8vmin;
  }
  #sidebar .event-radio {
    margin: 4.266666666666667vmin 5.333333333333333vmin 0 !important;
  }
  #sidebar .sp-bk-wht .event-radio {
    margin-top: 0 !important;
  }
  #sidebar .event-radio .col {
    font-size: 3.2vmin;
    padding: 3.2vmin 5.333333333333333vmin;
    line-height: 1.708333333333333;
  }
  #sidebar .icon-event-end {
    display: none;
  }
  #sidebar .sp-bk-wht {
    padding: 6.4vmin 0 0;
    background-color: #fff;
  }
  #sidebar .sp-bk-wht .selectBox {
    margin: 0 5.333333333333333vmin;
  }
  #sidebar .selectBox select {
    font-size: 3.466666666666667vmin;
    line-height: 1;
    padding: 7.066666666666667vmin 9.6vmin 7.066666666666667vmin 4.266666666666667vmin;
  }
  #sidebar .selectBox:before {
    width: 6.933333333333333vmin;
    height: 6.9333333333333337vmin;
    right: 4.266666666666667vmin;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
  }
  #sidebar .selectBox:after {
    width: 6.933333333333333vmin;
    height: 6.9333333333333337vmin;
    right: 4.266666666666667vmin;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
  }
}

/* mainFooter */
#mainFooter {
  position: relative;
  z-index: 999;
  background-color: #1A1A1A;
  color: #fff;
}
#mainFooter .pagetop {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  right: 32px;
  top: -25px;
  background: -webkit-linear-gradient(-139deg, #5D0F84 0%, #871D97 100%);
  background:    -moz-linear-gradient(-139deg, #5D0F84 0%, #871D97 100%);
  background:         linear-gradient(-139deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d0f84', endColorstr='#871d97',GradientType=0 );
  opacity: 1;
  -webkit-transition: opacity 200ms linear;
  transition        : opacity 200ms linear;
}
#mainFooter.pagetopShowAction .pagetop {
  opacity: 1;
}
#mainFooter .pagetop span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/common/pagetop.png');
  background-size: cover;
  -webkit-transition: none;
  transition        : none;
}
.ua-pc #mainFooter .pagetop:hover span {
  opacity: 1;
  background-position: 0 -50px;
  -webkit-transition: all 350ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 350ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainFooter .innerBox {
  max-width: 1280px;
  margin: 0 auto;
}
#mainFooter .row a {
  color: #aaa;
  -webkit-transition: all 250ms ease-in-out;
  transition        : all 250ms ease-in-out;
}
#mainFooter .row figcaption a {
  color: #fff;
}
.ua-pc #mainFooter .row a:hover {
  opacity: .7;
}
#mainFooter a i {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1em;
  margin-left: 0.4em;
}
#mainFooter .row01 {
  padding: 32px;
}
#mainFooter .row01 .innerBox {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#mainFooter .row01 .col {
  max-width: 222px;
  width: -webkit-calc((100% - 73px - 222px) / 3);
  width:         calc((100% - 73px - 222px) / 3);
}
#mainFooter .row01 .col + .col {
  margin-left: 2.5%;
}
#mainFooter .row01 .col + .col04 {
  min-width: 222px;
  padding-left: 24px;
  border-left: 1px solid #333;
  margin-left: auto;
}
#mainFooter .row01 figure + * {
  margin-top: 18px;
}
#mainFooter .row01 figcaption {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
#mainFooter .row01 figcaption + figcaption {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
#mainFooter .row01 .bannerLink {
  margin-top: 40px;
}
#mainFooter .row01 .bannerLink li {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  width: 80%;
}
#mainFooter .row01 .bannerLink li + li {
  margin-top: 10px;
}
#mainFooter .row01 .bannerLink li a {
  padding: 0;
  display: block;
}
#mainFooter .row01 .bannerLink li a img {
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainFooter .row01 .bannerLink li a:hover {
  opacity: 1;
}
#mainFooter .row01 .bannerLink li a:hover img {
  -webkit-transform: scale(1.08);
  transform        : scale(1.08);
}
#mainFooter .row01 .bannerLink li a span {
  position: absolute;
  top: 50%;
  color: #fff;
  left: 16px;
  font-size: 1.4rem;
  display: block;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  padding-right: 4px;
}
#mainFooter .row01 .bannerLink li a span:after ,
#mainFooter .row01 .bannerLink li a span:before {
  content: '';
  position: absolute;
  overflow: hidden;
  width: 26px;
  height: 5px;
  background-image: url('/assets/images/top/link-arrow-white.svg');
  background-size: 16px 5px;
  background-position: -160%;
  background-repeat: no-repeat;
  padding: 0 5px;
  left: 100%;
  top: 50%;
  margin: -2.5px 0 0;
  line-height: 0;
  -webkit-transition: none;
  transition: none;
}
#mainFooter .row01 .bannerLink li a[target="_blank"] span:after {
  display: none;
}
#mainFooter .row01 .bannerLink li a[target="_blank"] span:before {
  width: 22px;
  height: 11px;
  background-image: url('/assets/images/top/row06_window_wht.png');
  background-size: auto 100%;
  margin-top: -5.5px;
  background-position: center;
}
#mainFooter .row01 .bannerLink li a span:before {
  background-position: 5px;
}
.ua-pc #mainFooter .row01 .bannerLink li a:hover span:before {
  background-position: 26px;
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
}
.ua-pc #mainFooter .row01 .bannerLink li a:hover span:after {
  background-position: 5px;
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
}
.ua-pc #mainFooter .row01 .bannerLink li a[target="_blank"]:hover span:before {
  background-position: center;
}
#mainFooter .row01 li {
  font-size: 1.2rem;
}
#mainFooter .row01 li > span {
    position: relative;
    font-size: 1.4rem;
    line-height: 2;
    padding-left: 14px;
}
#mainFooter .row01 li > span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 1px;
    background-color: #fff;
}
#mainFooter .row01 li + li > span {
    margin-top: 8px;
    display: block;
}
#mainFooter .row01 li a {
  vertical-align: top;
  display: inline-block;
  padding: 0.666666666666667em 0;
  line-height: 1.6;
}
#mainFooter .row02 {
  background-color: #000;
  padding: 16px 32px;
}
#mainFooter .row02 .innerBox {
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}
#mainFooter .row02 a {
  font-size: 1.2rem;
}
#mainFooter .row02 .col01 {
  margin-left: -17px;
}
#mainFooter .row02 .col01 li:before {
  content: '';
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
  height: 9.75px;
  width: 1px;
  background-color: #aaa;
}
#mainFooter .row02 .col02 {
  font-size: 1.2rem;
  color: #aaa;
  vertical-align: middle;
  /*float: right;*/
  line-height: 1;
}
#mainFooter .row02 * {
  line-height: 1 !important;
  overflow: visible !important;
}
#mainFooter .row00 {
  position: relative;
  padding: 36px 32px 32px;
	background-color: #232324;
}
#mainFooter .row00:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background-color: #5D0F84;
  background-image: -webkit-linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  background:-image         linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#mainFooter .row00 .innerBox {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#mainFooter .row00 .col {
  max-width: 222px;
  width: -webkit-calc((100% - 73px - 222px) / 3);
  width:         calc((100% - 73px - 222px) / 3);
}
#mainFooter .row00 .col + .col {
  margin-left: 2.5%;
}
#mainFooter .row00 .col + .col04 {
  min-width: 222px;
  margin-left: auto;
}
#mainFooter .row00 figure + * {
  margin-top: 18px;
}
#mainFooter .row00 figcaption {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
#mainFooter .row00 figcaption + figcaption {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
#mainFooter .row00 .bannerLink li {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  width: 80%;
}
#mainFooter .row00 .bannerLink li + li {
  margin-top: 10px;
}
#mainFooter .row00 .bannerLink li a {
  padding: 0;
}
#mainFooter .row00 .bannerLink li a img {
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainFooter .row00 .bannerLink li a:hover {
  opacity: 1;
}
.ua-pc #mainFooter .row00 .bannerLink li a:hover img {
  -webkit-transform: scale(1.08);
  transform        : scale(1.08);
}
#mainFooter .row00 .bannerLink li a span {
  position: absolute;
  top: 50%;
  color: #fff;
  left: 16px;
  font-size: 1.4rem;
  display: block;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainFooter .row00 ul + ul {
  margin-top: 8px;
}
#mainFooter .row00 li {
  font-size: 1.2rem;
}
#mainFooter .row00 li > span {
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  padding-left: 14px;
}
#mainFooter .row00 li + li > span {
  margin-top: 8px;
  display: block;
}
#mainFooter .row00 li > span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #fff;
}
#mainFooter .row00 li a {
  vertical-align: top;
  display: inline-block;
  padding: 0.666666666666667em 0;
}
#mainFooter .bannerLink02 a {
  display: block;
  max-width: 240px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  font-weight: 100;
}
#mainFooter .bannerLink02 a span {
  display: block;
}
#mainFooter .bannerLink02_row02 {
  position: relative;
  padding: 8px 16px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #fff;
  background-color: #5D0F84;
  background-image: -webkit-linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#mainFooter .bannerLink02_row02:after ,
#mainFooter .bannerLink02_row02:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 26px;
  height: 5px;
  background-image: url('/assets/images/top/link-arrow-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainFooter .bannerLink02_row02:after {
  background-position-x: -26px;
}
.ua-pc #mainFooter .bannerLink02 a:hover {
  opacity: 1;
}
.ua-pc #mainFooter .bannerLink02 a:hover .bannerLink02_row02:before {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 26px;
}
.ua-pc #mainFooter .bannerLink02 a:hover .bannerLink02_row02:after {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 5px;
}
#mainFooter .bannerLink03 a {
  position: relative;
  display: block;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 100;
  max-width: 240px;
  color: #fff;
  padding: 16px 14px 16px 52px;
  background-color: #6542B4;
  background-image: -webkit-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background-image:    -moz-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background-image:         linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6542B4', endColorstr='#9C4BD9',GradientType=0 );
}
#mainFooter .bannerLink03 a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  width: 30px;
  height: 22.06px;
  background-image: url('/assets/images/sc/icon/footer_mail.png');
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainFooter .bannerLink03 a span {
  display: block;
}
#mainFooter .bannerLink03_row02 {
  position: relative;
  background-color: rgba(0,0,0,0.3);
  font-size: 1rem;
  text-align: center;
  line-height: 2;
  margin-top: 12px;
  border-radius: 1em;
  overflow: hidden;
}
#mainFooter .bannerLink03_row02:after ,
#mainFooter .bannerLink03_row02:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 26px;
  height: 5px;
  background-image: url('/assets/images/top/link-arrow-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-55%);
  transform        : translateY(-55%);
}
#mainFooter .bannerLink03_row02:after {
  background-position-x: -26px;
}
.ua-pc #mainFooter .bannerLink03 a:hover {
  opacity: 1;
}
.ua-pc #mainFooter .bannerLink03 a:hover .bannerLink03_row02:before {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 26px;
}
.ua-pc #mainFooter .bannerLink03 a:hover .bannerLink03_row02:after {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 5px;
}
#mainFooter .bannerLink04 a {
  position: relative;
  display: block;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 100;
  max-width: 240px;
  color: #fff;
  padding: 16px 28px 16px 68px;
  background-color: #24C2C9;
  background-image: -webkit-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
  background-image:    -moz-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
  background-image:         linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24C2C9', endColorstr='#1889B8',GradientType=0 );
}
#mainFooter .bannerLink04 a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  width: 34px;
  height: 25px;
  background-image: url('/assets/images/sc/icon/footer_mail.png');
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainFooter .bannerLink04.type-ia a:before {
  left: 29px;
  width: 27px;
  height: 36px;
  background-image: url('/assets/images/ia/icon/dl.png');
}
#mainFooter .bannerLink04 a span {
  display: block;
  text-align: center;
}
#mainFooter .bannerLink04_row02 {
  position: relative;
  background-color: rgba(0,0,0,0.3);
  font-size: 1rem;
  text-align: center;
  line-height: 2;
  margin-top: 8px;
  border-radius: 1em;
  overflow: hidden;
  padding-right: 10px;
}
#mainFooter .bannerLink04_row02:after ,
#mainFooter .bannerLink04_row02:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 26px;
  height: 5px;
  background-image: url('/assets/images/top/link-arrow-white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-55%);
  transform        : translateY(-55%);
}
#mainFooter .bannerLink04_row02:after {
  background-position-x: -26px;
}
.ua-pc #mainFooter .bannerLink04 a:hover {
  opacity: 1;
}
.ua-pc #mainFooter .bannerLink04 a:hover .bannerLink04_row02:before {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 26px;
}
.ua-pc #mainFooter .bannerLink04 a:hover .bannerLink04_row02:after {
  -webkit-transition: all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  transition        : all 350ms cubic-bezier(0.24, 0.02, 0.22, 1.24);
  background-position-x: 5px;
}



/* SNSアイコン */
#mainFooter .sns_box {
width: 223px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px auto 40px;
flex-wrap: unset!important;
text-align: unset !important;
}

#mainFooter .sns_box .icon_sns {
    position: relative;
    width: 27px!important; 
    height: 27px;
    border: none!important;
}

#mainFooter .sns_box .icon_text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

#mainFooter .sns_box .icon_fb::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    background-image: url("/assets/uploads/footer/icon/footer_snsicon_fb.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


#mainFooter .sns_box .icon_x::before {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 11px;
    background-image: url("/assets/uploads/footer/icon/footer_snsicon_x.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#mainFooter .sns_box .icon_yt::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    background-image: url("/assets/uploads/footer/icon/footer_snsicon_yt.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#mainFooter .sns_box .icon_in::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    background-image: url("/assets/uploads/footer/icon/footer_snsicon_In.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



@media only screen and (max-width: 768px){
  #mainFooter .row02 {
    padding: 0;
  }
  #mainFooter .pagetop {
    position: fixed;
    z-index: 9;
    width: 11.733333333333333vmin;
    height: 11.733333333333333vmin;
    top: auto;
    right: 3.066666666666667vmin;
    bottom: 3.066666666666667vmin;
    opacity: 0;
  }
  #mainFooter.pagetopAction .pagetop {
    position: absolute;
    bottom: 100%;
    margin-bottom: 3.066666666666667vmin;
    opacity: 1;
  }
  #mainFooter.pagetopShowAction .pagetop {
    opacity: 1;
  }
  #mainFooter .row02 .innerBox {
    margin: 0;
    overflow: hidden;
    text-align: center;
  }
  #mainFooter .row02 .col01 {
    letter-spacing: -0.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  #mainFooter .row02 li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    width: -webkit-calc((100% - 1px) / 2);
    width:         calc((100% - 1px) / 2);
  }
  #mainFooter .row02 li a {
    display: block;
    letter-spacing: normal;
    font-size: 2.933333333333333vmin;
    padding: 4.266666666666667vmin 1em;
    line-height: 1.5;
  }
  #mainFooter .row02 ul li:nth-child(2n + 1) {
    border-right: 1px solid #333;
  }
  #mainFooter .row02 ul li:nth-child(n + 3) {
    border-top: 1px solid #333;
  }
  #mainFooter .row02 .col01 li:before {
    display: none;
  }
  #mainFooter .row02 .col02 {
    font-size: 2.933333333333333vmin;
    float: none;
    padding: 6.4vmin 1em;
    font-weight: 500;
  }
  .ua-pc #mainFooter .pagetop:hover span {
    background-position: 0 -11.733333333333333vmin;;
  }
  #mainFooter .row01 {
    display: block !important;
    padding: 0;
    background-color: #000;
  }
  #mainFooter .row01 .col {
    display: none;
  }
  #mainFooter .row01 .col + .col04 {
    border: none;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }
  #mainFooter .row01 .col + .col04 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1;
  }
  #mainFooter .row01 .col + .col04 ul * {
    line-height: 1;
  }
  #mainFooter .row01 .col + .col04 li {
    width: 50%;
    border-bottom: 1px solid #333333;
  }
  #mainFooter .row01 .col + .col04 li:nth-child(even) {
    border-left: 1px solid #333333;
  }
  #mainFooter .row01 .col + .col04 li a {
    font-size: 2.933333333333333vmin;
    font-weight: 500;
    color: #F5F6F7;
    padding: 4.266666666666667vmin 0;
    display: block;
  }
#mainFooter .sns_box {
width:300px;
}
#mainFooter .sns_box li{
width:100%!important; }

#mainFooter .sns_box a{
    padding:0px!important;
}
#mainFooter .sns_box .icon_x::before {
    top: 4px;
}
}

/* マージンリスト */
.ml0 {margin-left:0 !important;}
.mr0 {margin-right:0 !important;}
.mt0 {margin-top:0 !important;}
.mt8 {margin-top:8px !important;}
.mt16 {margin-top:16px !important;}
.mt24 {margin-top:24px !important;}
.mt32 {margin-top:32px !important;}
.mt40 {margin-top:40px !important;}
.mt48 {margin-top:48px !important;}
.mt56 {margin-top:56px !important;}
.mt64 {margin-top:64px !important;}
.mt72 {margin-top:72px !important;}
.mt80 {margin-top:80px !important;}
.mt88 {margin-top:88px !important;}
.mt96 {margin-top:96px !important;}
.mb0 {margin-bottom:0 !important;}
.mb8 {margin-bottom:8px !important;}
.mb16 {margin-bottom:16px !important;}
.mb24 {margin-bottom:24px !important;}
.mb32 {margin-bottom:32px !important;}
.mb40 {margin-bottom:40px !important;}
.mb48 {margin-bottom:48px !important;}
.mb56 {margin-bottom:56px !important;}
.mb64 {margin-bottom:64px !important;}
.mb72 {margin-bottom:72px !important;}
.mb80 {margin-bottom:80px !important;}
.mb88 {margin-bottom:88px !important;}
.mb96 {margin-bottom:96px !important;}
@media only screen and (max-width: 768px){
  .mt8 {margin-top:1.066666666666667vmin !important;}
  .mt16 {margin-top:2.133333333333333vmin !important;}
  .mt24 {margin-top:3.2vmin !important;}
  .mt32 {margin-top:4.266666666666667vmin !important;}
  .mt40 {margin-top:5.333333333333333vmin !important;}
  .mt48 {margin-top:6.4vmin !important;}
  .mt56 {margin-top:7.466666666666667vmin !important;}
  .mt64 {margin-top:8.533333333333333vmin !important;}
  .mt72 {margin-top:9.6vmin !important;}
  .mt80 {margin-top:10.666666666666667vmin !important;}
  .mt88 {margin-top:11.733333333333333vmin !important;}
  .mt96 {margin-top:12.8vmin !important;}
  .mb8 {margin-bottom:1.066666666666667vmin !important;}
  .mb16 {margin-bottom:2.133333333333333vmin !important;}
  .mb24 {margin-bottom:3.2vmin !important;}
  .mb32 {margin-bottom:4.266666666666667vmin !important;}
  .mb40 {margin-bottom:5.333333333333333vmin !important;}
  .mb48 {margin-bottom:6.4vmin !important;}
  .mb56 {margin-bottom:7.466666666666667vmin !important;}
  .mb64 {margin-bottom:8.533333333333333vmin !important;}
  .mb72 {margin-bottom:9.6vmin !important;}
  .mb80 {margin-bottom:10.666666666666667vmin !important;}
  .mb88 {margin-bottom:11.733333333333333vmin !important;}
  .mb96 {margin-bottom:12.8vmin !important;}
  .sp-mt0 {margin-top:0 !important;}
  .sp-mt8 {margin-top:1.066666666666667vmin !important;}
  .sp-mt16 {margin-top:2.133333333333333vmin !important;}
  .sp-mt24 {margin-top:3.2vmin !important;}
  .sp-mt32 {margin-top:4.266666666666667vmin !important;}
  .sp-mt40 {margin-top:5.333333333333333vmin !important;}
  .sp-mt48 {margin-top:6.4vmin !important;}
  .sp-mt56 {margin-top:7.466666666666667vmin !important;}
  .sp-mt64 {margin-top:8.533333333333333vmin !important;}
  .sp-mt72 {margin-top:9.6vmin !important;}
  .sp-mt80 {margin-top:10.666666666666667vmin !important;}
  .sp-mt88 {margin-top:11.733333333333333vmin !important;}
  .sp-mt96 {margin-top:12.8vmin !important;}
  .sp-mt124 {margin-top:16.533333333333333vmin !important;}
  .sp-mt152 {margin-top:20.266666666666667vmin !important;}
  .sp-mb0 {margin-bottom:0 !important;}
  .sp-mb8 {margin-bottom:1.066666666666667vmin !important;}
  .sp-mb16 {margin-bottom:2.133333333333333vmin !important;}
  .sp-mb24 {margin-bottom:3.2vmin !important;}
  .sp-mb32 {margin-bottom:4.266666666666667vmin !important;}
  .sp-mb40 {margin-bottom:5.333333333333333vmin !important;}
  .sp-mb48 {margin-bottom:6.4vmin !important;}
  .sp-mb56 {margin-bottom:7.466666666666667vmin !important;}
  .sp-mb64 {margin-bottom:8.533333333333333vmin !important;}
  .sp-mb72 {margin-bottom:9.6vmin !important;}
  .sp-mb80 {margin-bottom:10.666666666666667vmin !important;}
  .sp-mb88 {margin-bottom:11.733333333333333vmin !important;}
  .sp-mb96 {margin-bottom:12.8vmin !important;}
  .sp-mr0 {margin-right:0 !important;}
  .sp-ml0 {margin-left:0 !important;}
  .sp-mlr0 {
	  margin-right:0 !important;
	  margin-left:0 !important;
	}
}

/* mainContents */
#mainContents {
  min-height: 100vh;
  color: #2D2D2E;
  padding-bottom: 136px;
  padding-top: 1px;
  margin-top: -1px;
  font-weight: 400;
}
#mainContents .word-break-break-all {
  word-break: break-all;
}
#mainContents img.w100 {
  width: 100%;
}
#mainContents figcaption {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 8px;
  color: #2D2D2E;
}
#mainContents p + figure {
  margin-top: 24px;
}
#mainContents figure + p {
  margin-top: 24px;
}
#mainContents p ,
#mainContents a {
  -webkit-font-smoothing: antialiased;
  font-smoothing        : antialiased;
}
#mainContents h1 ,
#mainContents h2 ,
#mainContents h3 ,
#mainContents h4 ,
#mainContents h5 ,
#mainContents h6 ,
#mainContents .h1 ,
#mainContents .h2 ,
#mainContents .h3 ,
#mainContents .h4 ,
#mainContents .h5 ,
#mainContents .h6 {
  font-weight: 500;
  color: #2d2d2e;
  -webkit-font-smoothing: antialiased;
}
.msie #mainContents h1 ,
.msie #mainContents h2 ,
.msie #mainContents h3 ,
.msie #mainContents h4 ,
.msie #mainContents h5 ,
.msie #mainContents h6 ,
.msie #mainContents .h1 ,
.msie #mainContents .h2 ,
.msie #mainContents .h3 ,
.msie #mainContents .h4 ,
.msie #mainContents .h5 ,
.msie #mainContents .h6 {
  font-weight: 600;
}
#mainContents .showBox {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}
#mainContents a {
  color: #0000ee;
}
#mainContents a:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 5px;
  line-height: 0;
  margin: 0 0.8em 0.3em 0.4em;
  background-image: url('/assets/images/element-list/icon/arrow01_mainclr.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: margin-left 150ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : margin-left 150ms cubic-bezier(0, 0, 0.5, 1.3);
}

#mainContents .event-features a:after {
  display: none;/* イベントの特徴内のリンクマークを非表示 */
}

#mainContents a.image-link:after ,
#mainContents a.none-after-icon:after {
  display: none !important;
}
#mainContents a.image-link {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
#mainContents a.image-link img {
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents a.image-link:hover img {
    -webkit-transform: scale(1.08);
    transform        : scale(1.08);
}
#mainContents a.hover-image-action img {
  -webkit-transition: opacity 250ms ease-in-out;
  transition        : opacity 250ms ease-in-out;
}
.ua-pc #mainContents a.hover-image-action:hover img {
  opacity: 0.7;
}
.ua-pc #mainContents a:hover:after {
  margin-left: 0.6em;
}
#mainContents ul a:after {
  display: none;
}
.ua-pc #mainContents a:hover > span {
  text-decoration: underline;
}
#mainContents blockquote {
  margin-top: 24px;
  padding: 24px 24px 24px 18px;
  background-color: #F5F6F7;
  border-left: 6px solid #CDD0D4;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #7C7E80;
}
#mainContents blockquote p {
  margin: 0;
}
#mainContents blockquote .link {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 16px;
}
@media only screen and (max-width: 768px){
  #mainContents .showBox {
    padding: 0 5.333333333333333vmin;
  }
  #mainContents figcaption {
    font-size: 3.2vmin;
    margin-top: 2.133333333333333vmin;
    line-height: 1.75;
  }
  #mainContents p + figure {
    margin-top: 3.2vmin;
  }
  #mainContents figure + p {
    margin-top: 3.2vmin;
  }
  #mainContents blockquote {
    margin-top: 6.4vmin;
    padding: 5.333333333333333vmin 5.333333333333333vmin 5.333333333333333vmin 4.533333333333333vmin;
    font-size: 3.466666666666667vmin;
  }
  #mainContents blockquote .link {
    margin-top: 5.333333333333333vmin;
  }
}
#mainContents .caption01 {
  font-size: 3rem;
  line-height: 1.4;
  color: #2d2d2e;
  padding: 1.066666666666667em;
  background: #F5F6F7;
  background-image: -webkit-llinear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
}
#mainContents h1 ,
#mainContents .caption01 .h1 {
  margin: 0;
}
#mainContents h1 ,
#mainContents .h1 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.4;
}
#mainContents h2 ,
#mainContents .h2 {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  padding-left: 0.875em;
  margin-top: 72px;
  margin-bottom: 24px;
}
#mainContents h2:before ,
#mainContents .h2:before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 0;
  margin-top: -1px;
  width: 0.583333333333333em;
  height: 2px;
  background: #5D0F84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#mainContents h3 ,
#mainContents .h3 {
  position: relative;
  font-size: 2rem;
  line-height: 1.6;
  padding-bottom: 0.5em;
  margin-top: 56px;
  margin-bottom: 16px;
}
#mainContents h2 + section > h3:first-of-type {
  margin-top: 40px;
}
#mainContents h3:before ,
#mainContents h3:after ,
#mainContents .h3:before ,
#mainContents .h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #CDD0D4;
}
#mainContents h3:after ,
#mainContents .h3:after {
  width: 30%;
  background: #5D0F84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#mainContents h4 ,
#mainContents .h4 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 8px;
}
#mainContents h5 ,
#mainContents .h5 {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 4px;
}
#mainContents h6 ,
#mainContents .h6 {
  font-size: 1.3rem;
  line-height: 1.6;
}
#mainContents h4:before ,
#mainContents h4:after ,
#mainContents .h4:before ,
#mainContents .h4:after ,
#mainContents h5:before ,
#mainContents h5:after ,
#mainContents .h5:before ,
#mainContents .h5:after ,
#mainContents h6:before ,
#mainContents h6:after ,
#mainContents .h6:before ,
#mainContents .h6:after {
  display: none;
}
#mainContents .none-h2-style ,
#mainContents .none-h3-style {
  padding: 0;
}
#mainContents .none-h2-style:before ,
#mainContents .none-h2-style:after ,
#mainContents .none-h3-style:before ,
#mainContents .none-h3-style:after {
  display: none;
}
@media only screen and (max-width: 768px){
  #mainContents {
    font-size: 3.466666666666667vmin;
    padding-bottom: 25.6vmin;
  }
  #mainContents .caption01 {
    padding: 5.226666666666667vmin 6.4vmin;
  }
  #mainContents h1 ,
  #mainContents .h1 {
    font-size: 6.4vmin;
  }
  #mainContents h2 ,
  #mainContents .h2 {
    font-size: 5.333333333333333vmin;
    padding-left: 1.1em;
    margin: 17.066666666666667vmin 0 6.4vmin;
  }
  #mainContents h2:before ,
  #mainContents .h2:before {
    width: 0.7em;
  }
  #mainContents h3 ,
  #mainContents .h3 {
    font-size: 4.8vmin;
    padding-bottom: 0.583333333333333em;
    margin: 12.8vmin 0 4.266666666666667vmin;
  }
  #mainContents h2 + section > h3:first-of-type {
    margin-top: 6.4vmin;
  }
  #mainContents h4 ,
  #mainContents .h4 {
    font-size: 4.266666666666667vmin;
    margin: 9.6vmin 0 2.133333333333333vmin;
  }
  #mainContents h5 ,
  #mainContents .h5 {
    font-size: 3.466666666666667vmin;
    margin: 6.4vmin 0 1.066666666666667vmin;
  }
  #mainContents h6 ,
  #mainContents .h6 {
    font-size: 3.2vmin;
    margin: 6.4vmin 0 1.066666666666667vmin;
  }
  #mainContents .content-top-caption {
    margin-top: 9.6vmin;
  }
}
#mainContents .red {
  color: #FD2D2D;
}
#mainContents .attention {
  display: block;
  position: relative;
  padding-left: 30px;
}
#mainContents .attention:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/attention.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
}
#mainContents .mktoErrorMsg {
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #FD2D2D;
  position: relative;
  padding-left: 30px;
}
#mainContents .mktoErrorMsg:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/attention.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 0;
}
@media only screen and (max-width: 768px){
  #mainContents .attention {
    padding-left: 6.933333333333333vmin;
  }
  #mainContents .attention:before {
    width: 4.8vmin;
    height: 4.8vmin;
    top: 0.875em;
    margin-top: -2.95vmin;
  }
  #mainContents .attention * {
    font-size: 3.466666666666667vmin;
  }
  #mainContents .mktoErrorMsg {
    margin-top: 2.666666666666667vmin;
    padding-left: 6.933333333333333vmin;
    font-size: 3.2vmin;
  }
  #mainContents .mktoErrorMsg:before {
    width: 4.8vmin;
    height: 4.8vmin;
    top: 0.875em;
    margin-top: -2.95vmin;
  }
}
#mainContents p {
  line-height: 1.75;
  word-wrap: break-word;
  /*word-break: break-all;*/
}
#mainContents p.news {
  line-height: 2;
}
@media only screen and (max-width: 768px){
  #mainContents p.default {
    font-size: 3.733333333333333vmin;
  }
}
#mainContents .addition {
  font-size: 1.2rem;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}
#mainContents .addition.text-indent {
  padding-left: 1em;
  text-indent: -1em;
}
#mainContents .addition[data-before]:before {
  content: attr(data-before);
}
@media only screen and (max-width: 768px){
  #mainContents .addition {
    font-size: 3.2vmin;
  }
}
#mainContents .icon-arrow01_mainclr {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  line-height: 0;
  margin: 0 0.8em 0.5em 0.4em;
}
@media only screen and (max-width: 768px){
  #mainContents .icon-arrow01_mainclr {
    width: 3.733333333333333vmin;
  }
  #mainContents .icon-arrow01_mainclr img {
    margin: 0 !important;
  }
}
#mainContents a[target="_blank"]:after {
  content: '';
  background-image: url('/assets/images/element-list/icon/window_blk.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: baseline;
  width: 12px;
  height: 11px;
  line-height: 1;
  margin: 0 0.8em 0 0.5em;
}

#mainContents .copy-paste-block a[target="_blank"]:after{
    display: none;
}


#mainContents a[target="_blank"].addition:after ,
#mainContents .addition a[target="_blank"]:after {
  -webkit-transform: translateY(0.1em);
  transform        : translateY(0.1em);
}
#mainContents a.no-icon[target="_blank"]:after {
  display: none;
}
/*.ua-pc #mainContents a[target="_blank"]:hover:after {
  margin-left: 0.5em;
}*/
@media only screen and (max-width: 768px){
  #mainContents a[target="_blank"]:after {
    width: 3.066666666666667vmin;
    height: 2.8vmin;
  }
}
#mainContents a[href$=".pdf"] ,
#mainContents a[href$=".zip"] ,
#mainContents a[href$=".xls"] ,
#mainContents a[href$=".xlsx"] {
  display: inline-block;
  vertical-align: baseline;
}
#mainContents a[href$=".pdf"] span ,
#mainContents a[href$=".zip"] span ,
#mainContents a[href$=".xls"] span ,
#mainContents a[href$=".xlsx"] span {
  display: inline-block;
  vertical-align: middle;
}
#mainContents a[href$=".pdf"]:after ,
#mainContents a[href$=".zip"]:after ,
#mainContents a[href$=".xls"]:after ,
#mainContents a[href$=".xlsx"]:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 23px;
  line-height: 1;
  margin: 8px 0.8em 8px 0.5em;
}
#mainContents a[href$=".pdf"]:after {
  background-image: url('/assets/images/element-list/icon/pdf.png');
}
#mainContents a[href$=".pdf"][data-size]:after {
  content: attr(data-size);
  width: auto;
  background-position: left center;
  vertical-align: middle;
  height: auto;
  background-size: 18px 23px;
  padding: 5px 0 5px 18px;
}
#mainContents a[href$=".zip"]:after {
  background-image: url('/assets/images/element-list/icon/zip.png');
}
#mainContents a[href$=".xls"]:after ,
#mainContents a[href$=".xlsx"]:after {
  background-image: url('/assets/images/element-list/icon/excel.png');
}
#mainContents a.icon-pdf span ,
#mainContents a.icon-zip span ,
#mainContents a.icon-xlsx span {
    display: inline-block;
    vertical-align: middle;
}
#mainContents a.icon-pdf:after ,
#mainContents a.icon-zip:after ,
#mainContents a.icon-xlsx:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 23px;
  line-height: 1;
  margin: 8px 0.8em 8px 0.5em;
}
#mainContents a.icon-pdf:after {
  background-image: url('/assets/images/element-list/icon/pdf.png');
}
#mainContents a.icon-pdf[data-size]:after {
  content: attr(data-size);
  width: auto;
  background-position: left center;
  vertical-align: middle;
  height: auto;
  background-size: 18px 23px;
  padding: 5px 0 5px 18px;
}
#mainContents a.icon-zip:after {
  background-image: url('/assets/images/element-list/icon/zip.png');
}
#mainContents a.icon-xlsx:after {
  background-image: url('/assets/images/element-list/icon/excel.png');
}
.ua-pc #mainContents a[target="_blank"]:hover:after ,
.ua-pc #mainContents a[href$=".pdf"]:hover:after ,
.ua-pc #mainContents a[href$=".zip"]:hover:after ,
.ua-pc #mainContents a[href$=".xls"]:hover:after ,
.ua-pc #mainContents a[href$=".xlsx"]:hover:after {
  margin-left: 0.5em;
}
@media only screen and (max-width: 768px){
  #mainContents a[href$=".pdf"]:after ,
  #mainContents a[href$=".zip"]:after ,
  #mainContents a[href$=".xls"]:after ,
  #mainContents a[href$=".xlsx"]:after {
    width: 3.466666666666667vmin;
    height: 4.266666666666667vmin;
    margin: 8px 0.8em 8px 0.5em;
  }
  #mainContents a[href$=".pdf"]:after {
    background-image: url('/assets/images/element-list/icon/sp/pdf.png');
  }
  #mainContents a[href$=".pdf"][data-size] span {
    display: inline;
  }
  #mainContents a[href$=".pdf"][data-size]:after {
    background-size: 3.466666666666667vmin 4.266666666666667vmin;
    padding: 5px 0 5px 3.466666666666667vmin;
    margin-right: 0;
  }
  #mainContents a[href$=".zip"]:after {
    background-image: url('/assets/images/element-list/icon/sp/zip.png');
  }
  #mainContents a[href$=".xlsx"]:after ,
  #mainContents a[href$=".xls"]:after {
    background-image: url('/assets/images/element-list/icon/sp/excel.png');
  }
  #mainContents a.icon-pdf:after ,
  #mainContents a.icon-zip:after ,
  #mainContents a.icon-xlsx:after {
    width: 3.466666666666667vmin;
    height: 4.266666666666667vmin;
    margin: 8px 0.8em 8px 0.5em;
  }
  #mainContents a.icon-pdf:after {
    background-image: url('/assets/images/element-list/icon/sp/pdf.png');
  }
  #mainContents a.icon-pdf[data-size] span {
    display: inline;
  }
  #mainContents a.icon-pdf[data-size]:after {
    background-size: 3.466666666666667vmin 4.266666666666667vmin;
    padding: 5px 0 5px 3.466666666666667vmin;
    margin-right: 0;
  }
  #mainContents a.icon-zip:after {
    background-image: url('/assets/images/element-list/icon/sp/zip.png');
  }
  #mainContents a.icon-xlsx:after {
    background-image: url('/assets/images/element-list/icon/sp/excel.png');
  }
}
#mainContents .icon-info {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  line-height: 1;
  margin: 8px 0.4em 8px 0;
}
#mainContents p.icon-info {
  position: relative;
  width: auto;
  font-size: 1.4rem;
  line-height: 1.75;
  padding-left: 30px;
  margin: 0;
}
#mainContents p.icon-info:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/info.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1;
}
#mainContents p.icon-info.info-blck:before {
  background-image: url('/assets/images/element-list/icon/info-blck.png');
}
#mainContents a.icon-info {
  width: auto;
}
#mainContents a.icon-info span {
  position: relative;
  width: auto;
  margin: 0;
  padding-left: 1.971428571428571em;
  line-height: 1.75;
  margin: 8px 0;
  text-indent: 0;
}
#mainContents a.icon-info[href$=".pdf"] span:before ,
#mainContents a.icon-info[href$=".zip"] span:before ,
#mainContents a.icon-info[href$=".xls"] span:before ,
#mainContents a.icon-info[href$=".xlsx"] span:before {
  margin-top: 0.13em;
}
#mainContents a.icon-info[href$=".pdf"] ,
#mainContents a.icon-info[href$=".zip"] ,
#mainContents a.icon-info[href$=".xls"] ,
#mainContents a.icon-info[href$=".xlsx"] ,
#mainContents a.icon-info[href$=".pdf"]:after ,
#mainContents a.icon-info[href$=".zip"]:after ,
#mainContents a.icon-info[href$=".xls"]:after ,
#mainContents a.icon-info[href$=".xlsx"]:after {
  margin-top: 0;
  margin-bottom: 0;
}
#mainContents a.icon-info span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/info.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1;
}
#mainContents a .icon-info + span {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 768px){
  #mainContents .icon-info {
    padding-left: 6.666666666666667vmin;
    margin: 4.666666666666667vmin 0;
  }
  #mainContents .icon-info:before {
    width: 5.866666666666667vmin;
  }
  #mainContents a.icon-info {
    text-indent: -6.666666666666667vmin;
    margin-bottom: 0;
  }
  #mainContents a[href$=".pdf"].icon-info:before ,
  #mainContents a[href$=".zip"].icon-info:before ,
  #mainContents a[href$=".xls"].icon-info:before ,
  #mainContents a[href$=".xlsx"].icon-info:before {
    top: 3.7vmin;
  }
  #mainContents a[href$=".pdf"].icon-info:after ,
  #mainContents a[href$=".zip"].icon-info:after ,
  #mainContents a[href$=".xls"].icon-info:after ,
  #mainContents a[href$=".xlsx"].icon-info:after {
    width: 3.466666666666667vmin;
    height: 4.266666666666667vmin;
    margin: 0 0.8em 0 0.5em;
  }
  #mainContents p.icon-info {
    font-size: 3.466666666666667vmin;
    padding-left: 8vmin;
  }
  #mainContents p.icon-info:before {
    top: 0;
    width: 5.866666666666667vmin;
    height: 5.866666666666667vmin;
  }
}
#mainContents .bold18 {
  font-weight: 500;
  font-size: 1.8rem;
}
#mainContents .bold24 {
  font-weight: 500;
  font-size: 2.4rem;
}
.msie #mainContents .bold18 ,
.msie #mainContents .bold24 {
  font-weight: 600;
}
@media only screen and (max-width: 768px){
  #mainContents .bold18 {
    font-size: 4.266666666666667vmin;
  }
  #mainContents .bold24 {
    font-size: 4.8vmin;
  }
  #mainContents .sp-bold {
	  font-weight: 500;
  }
}
#mainContents pre {
  overflow-y: auto;
  background-color: #050505;
  margin-top: 24px;
}
#mainContents pre code {
  font-family: 'Lato', sans-serif;
  display: inline-block;
  color: #fff;
  padding: 32px 0 32px 32px;
  white-space: pre-wrap;
  line-height: 1.75;
  margin-right: 32px;
}
@media only screen and (max-width: 768px){
  #mainContents pre {
    margin-top: 6.4vmin;
  }
  #mainContents pre code {
    padding: 5.333333333333333vmin 0 5.333333333333333vmin 5.333333333333333vmin;
    margin-right: 5.333333333333333vmin;
    font-size: 3.733333333333333vmin;
  }
}
#mainContents .mathBox .math {
  text-align: center;
  background-color: #F5F6F7;
  padding: 24px;
}
#mainContents .mathBox .math * {
    font-family:
        'Noto Sans JP',
        'Hiragino Sans',
        'ヒラギノ角ゴシック',
        'Hiragino Kaku Gothic ProN',
        'ヒラギノ角ゴ ProN W3',
        'Droid Sans',
        'YuGothic',
        '游ゴシック',
        'Meiryo',
        'メイリオ',
        'Verdana',
        'ＭＳ Ｐゴシック',
        'sans-serif';
}
#mainContents .mathBox .mathAddition {
  margin: 16px 0 24px;
}
#mainContents .mathBox .mathAddition sub {
    bottom: -0.25em;
}
#mainContents .mathBox .mathAddition sub ,
#mainContents .mathBox .mathAddition sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
#mainContents .mathBox p {
  font-size: 1.4rem;
  line-height: 1.75;
}
#mainContents .inlineMathBox p + p {
  margin-top: 16px;
}
#mainContents .inlineMath {
  display: block;
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 1em;
}
@media only screen and (max-width: 768px){
  #mainContents .inlineMath {
    font-size: 4.266666666666667vmin;
    margin: 1em;
  }
}
#mainContents ol ,
#mainContents ul {
  font-size: 1.4rem;
  line-height: 1.75;
}
#mainContents ol ol ,
#mainContents ol ul ,
#mainContents ul ol ,
#mainContents ul ul ,
#mainContents ol li + li ,
#mainContents ul li + li {
  margin-top: 8px;
}
#mainContents ul.link {
  line-height: 1.75;
}
#mainContents ul.circle li {
  position: relative;
  padding-left: 1em;
}
#mainContents ul.circle li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.9;
  background: #840D84;
  left: 0;
  top: 0.875em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents ul.circle li[data-before]:before {
  content: attr(data-before);
  position: absolute;
  width: auto;
  height: auto;
  opacity: 1;
  background: transparent;
  color: #840D84;
  top: 0em;
  -webkit-transform: translateY(0);
  transform        : translateY(0);
}
#mainContents ul.link li {
  position: relative;
  padding-left: 9px;
  line-height: 1.75;
}
#mainContents ul.link li:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 8px;
  left: 0;
  top: 1.1em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  background-image: url('/assets/images/element-list/icon/link_list.png');
  background-size: cover;
  background-position: center;
}
#mainContents ul.link li.before-icon-arrow {
  padding-left: 12.5px;
}
#mainContents ul.link li.before-icon-arrow:before {
  width: 5px;
  height: 10px;
  background-image: url('/assets/images/element-list/icon/arrow01_blk.png');
  background-size: contain;
  background-repeat: no-repeat;
}
#mainContents ul.link a[target="_blank"]:after {
  display: inline-block;
}
#mainContents ul.link a ,
#mainContents ul.link span ,
#mainContents ul.link a span ,
#mainContents ul.link a[href$=".pdf"] span ,
#mainContents ul.link a[href$=".zip"] span ,
#mainContents ul.link a[href$=".xls"] span ,
#mainContents ul.link a[href$=".xlsx"] span ,
#mainContents ul.link a[target="_blank"] span {
  display: inline-block;
  vertical-align: middle;
}
#mainContents ul.link a[href$=".pdf"]:after,
#mainContents ul.link a[href$=".zip"]:after,
#mainContents ul.link a[href$=".xls"]:after,
#mainContents ul.link a[href$=".xlsx"]:after ,
#mainContents ul.link a[target="_blank"]:after {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
}
.ua-pc #mainContents ul.link a[href$=".pdf"]:hover:after,
.ua-pc #mainContents ul.link a[href$=".zip"]:hover:after,
.ua-pc #mainContents ul.link a[href$=".xls"]:hover:after,
.ua-pc #mainContents ul.link a[href$=".xlsx"]:hover:after ,
.ua-pc #mainContents ul.link a[target="_blank"]:hover:after {
  margin-left: 0.5em;
}
#mainContents ul.link-clr-black a {
  color: #2D2D2E;
}
#mainContents ul.annotation li {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.75;
  padding-left: 21px;
}
#mainContents ul.annotation li:before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}
#mainContents ul.annotation li[data-before]:before {
  content: attr(data-before);
}
#mainContents ul.type-mini {
  margin-bottom: -8px;
  margin-left: -32px;
  letter-spacing: -0.4em;
}
#mainContents ul.type-mini li + li ,
#mainContents ul.type-mini li {
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
  min-width: -webkit-calc((100% - 65px) / 2);
  min-width:         calc((100% - 65px) / 2);
  width: auto;
  margin: 0 0 8px 32px;
}
#mainContents ul li.icon-check + li.icon-check ,
#mainContents ul li.icon-check {
  position: relative;
  width: auto;
  font-size: 1.4rem;
  line-height: 1.75;
  padding-left: 30px;
  margin-bottom: 16px;
}
#mainContents ul li.icon-check:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('/assets/images/ia/icon/check.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1;
}
#mainContents ul.icon-text li {
  position: relative;
  line-height: 1.285714285714286;
  white-space: nowrap;
}
#mainContents ul.icon-text li[data-before] {
  padding-left: 26px;
}
#mainContents ul.icon-text li[data-before]:before {
  content: attr(data-before);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 1.5em;
  text-align: center;
  font-weight: 500;
  color: #fff;
  background: #7C7E80;
  border-radius: 2px;
}
.msie #mainContents ul.icon-text li:before {
  font-weight: 600;
}
#mainContents ul.icon-text li + li {
  margin-top: 1.285714285714286em;
}
#mainContents ul.icon-text.colbox {
  margin-bottom: -1.285714285714286em;
}
#mainContents ul.icon-text li.col {
  margin-bottom: 1.285714285714286em;
  margin-right: 16px;
}
#mainContents ul.icon-text li.col + li.col {
  margin-top: 0;
}
#mainContents ul.type-04 {
  margin-left: -16px;
  margin-bottom: -8px;
}
#mainContents ul.type-04 li + li ,
#mainContents ul.type-04 li {
  width: -webkit-calc((100% - 65px) / 4);
  width:         calc((100% - 65px) / 4);
  margin: 0 0 8px 16px;
  padding-right: 1em;
}
#mainContents ul.mrgin-large {
  margin-bottom: -24px;
}
#mainContents ul.mrgin-large li + li ,
#mainContents ul.mrgin-large li {
  margin-bottom: 24px;
}
#mainContents .news-content ul.tokutyou ,
#mainContents ul.tokutyou {
  margin-top: 40px;
  font-size: 1.5rem;
  line-height: 1.866666666666667;
  counter-reset: tokutyou;
}
#mainContents ul.tokutyou li {
  position: relative;
  padding-left: 89px;
}
#mainContents ul.tokutyou li:before {
  counter-increment: tokutyou;
  content: '特徴 0' counter(tokutyou);
  position: absolute;
  top: 1.4rem;
  left: 0;
  background: #D8D8D8;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  border-radius: 2px;
  font-size: 1.4rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.75;
  width: 81px;
  padding: 5px;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents ul.tokutyou li:nth-of-type(9) ~ li:before {
  content: '特徴 ' counter(tokutyou);
}
#mainContents ul.tokutyou li + li {
  margin-top: 16px;
}
@media only screen and (max-width: 768px){
  #mainContents ul {
    font-size: 3.466666666666667vmin;
  }
  #mainContents ul.annotation li {
    font-size: 3.2vmin;
    padding-left: 5.333333333333333vmin;
  }
  #mainContents ul li + li {
    margin-top: 2.133333333333333vmin;
  }
  #mainContents ul.news li + li {
    margin-top: 0;
  }
  #mainContents ul.circle li:before {
    width: 1.333333333333333vmin;
    height: 1.333333333333333vmin;
  }
  #mainContents ul.icon-text li {
    padding-left: 6.933333333333333vmin;
    line-height: 1.75;
    font-size: 3.2vmin;
    text-align: left;
  }
  #mainContents ul.icon-text li:before {
    top: 0.1em;
    font-size: 3.2vmin;
    border-radius: 0.533333333333333vmin;
    font-weight: 400;
  }
  #mainContents ul.icon-text.colbox {
    margin-bottom: -1.285714285714286em;
  }
  #mainContents ul.icon-text li.col {
    margin-bottom: 1.285714285714286em;
    margin-right: 5.333333333333333vmin;
  }
  #mainContents ul.icon-text li.col + li.col {
    margin-top: 0;
  }
  #mainContents ul.type-04 {
    margin-left: -4.266666666666667vmin;
    margin-bottom: -2.133333333333333vmin;
  }
  #mainContents ul.type-04 li + li ,
  #mainContents ul.type-04 li {
    width: -webkit-calc((100% - 1px - 8.533333333333333vmin) / 2);
    width:         calc((100% - 1px - 8.533333333333333vmin) / 2);
    margin: 0 0 2.133333333333333vmin 4.266666666666667vmin;
  }
  #mainContents ul.mrgin-large {
    margin-bottom: -2.133333333333333vmin;
  }
  #mainContents ul.mrgin-large li + li ,
  #mainContents ul.mrgin-large li {
    margin-bottom: 2.133333333333333vmin;
  }
  #mainContents .news-content ul.tokutyou ,
  #mainContents ul.tokutyou {
    margin-top: 9.6vmin;
    font-size: 3.733333333333333vmin;
    line-height: 1.75;
  }
  #mainContents ul.tokutyou li {
    position: relative;
    padding-left: 0;
  }
  #mainContents ul.tokutyou li + li {
    margin-top: 6.4vmin;
  }
  #mainContents ul.tokutyou li:before {
    position: static;
    -webkit-transform: translateY(0);
    transform        : translateY(0);
    display: block;
    width: 21.333333333333333vmin;
    font-size: 3.733333333333333vmin;
    padding-top: 2.866666666666667vmin;
    padding-bottom: 2.866666666666667vmin;
    line-height: 0.875;
    margin-bottom: 2.133333333333333vmin;
  }
  #mainContents ul.sp-type-01 li + li ,
  #mainContents ul.sp-type-01 li {
    min-width: 100% !important;
    width: 100% !important;
  }
}
#mainContents ul.news {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.75;
  /* bugfixの為追記 */
  height: 0;
  overflow-y: hidden;
}
#mainContents ul.news li {
  display: block;
  margin: 0;
}
#mainContents ul.news li a {
  position: relative;
  display: table;
  width: 100%;width: 100%;
  color: #2D2D2E;
}
#mainContents ul.news li a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.55s cubic-bezier(0.23, 1, 0.58, 1), width 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  transition        : opacity 0.55s cubic-bezier(0.23, 1, 0.58, 1), width 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: #F5F6F7;
}
#mainContents ul.news li a[target="_blank"]:after {
  display: none;
}
.ua-pc #mainContents ul.news li a:hover:before {
  opacity: 1;
  width: 100%;
}
#mainContents ol li a:after ,
#mainContents ul li a:after {
  display: none;
}
#mainContents ul.news li a > * {
  position: relative;
  display: table-cell;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #D2D4D8;
}
#mainContents ul.news li a > *:nth-child(1) {
  white-space: nowrap;
  padding-right: 16px;
  padding-left: 16px;
}
#mainContents ul.news li a > *:nth-child(2) span {
  font-size: 1.2rem;
  line-height: 1.5;
  white-space: nowrap;
  background: #2D2D2E;
  border-radius: 2px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.5;
  padding: 0.291666666666667em;
  min-width: 76px;
  display: inline-block;
  margin-right: 16px;
}

/* 事例・コラム用に追加 */
#mainContents ul.news li a .marker_biz .marker_biz-inner{display: flex;}
#mainContents ul.news li a .marker_biz .marker_biz-inner span.client_label {
    box-sizing: border-box;
    background-color: #555;
    color: #FFF;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

#mainContents ul.news li a > *:last-child {
  padding-right: 16px;
  width: 100%;
}
#mainContents ul.news li a[target="_blank"] > *:last-child:after {
  content: '';
  background-image: url('/assets/images/element-list/icon/window_blc.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: baseline;
  width: 12px;
  height: 11px;
  line-height: 1;
  margin: 0 0.8em 0 0.5em;
}
@media only screen and (max-width: 768px){
  #mainContents ul.news {
    display: block;
    font-size: 3.466666666666667vmin;
  }
  #mainContents ul.news li a ,
  #mainContents ul.news li {
    display: block;
  }
  #mainContents ul.news li a > * {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 0;
    padding-top: 6.4vmin;
    border-bottom: none;
  }
  #mainContents ul.news li a > :nth-child(1) {
    padding-right: 4vmin;
    padding-left: 0;
  }
  #mainContents ul.news li a > *:nth-child(2) span {
    font-size: 3.2vmin;
    border-radius: 2px;
    padding: 0.933333333333333vmin;
    min-width: 19.2vmin;
  }
  #mainContents ul.news li a > *:nth-child(3){
    width: 100%;
    border-bottom: 1px solid #D2D4D8;
    padding: 3.2vmin 0 6.4vmin;
  }
  #mainContents ul.news li + li a > *:nth-child(1) ,
  #mainContents ul.news li + li a > *:nth-child(2) {
    padding-top: 6.4vmin;
  }
}

/* form */
#mainContents .clm02 {
  letter-spacing: -0.4em;
}
#mainContents .clm02 > * {
  letter-spacing: normal;
  width: 50%;
  width: -webkit-calc((100% - 17px) / 2);
  width:         calc((100% - 17px) / 2);
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
#mainContents .clm02.image-right {
  direction: rtl;
}
#mainContents .clm02.image-right > * {
  direction: ltr;
}
#mainContents .clm02.image-left > div > img ,
#mainContents .clm02.image-right > div > img {
  display: block;
  margin: 0 auto;
}
#mainContents .clm02.width-auto {
  flex-wrap: nowrap;
}
#mainContents .clm02.width-auto > * {
  width: auto;
}
#mainContents .clm02.width-auto > * + * {
  padding-left: 17px;
}
#mainContents .clm03 {
  letter-spacing: -0.4em;
}
#mainContents .clm03 > * {
  letter-spacing: normal;
  width: 33%;
  width: -webkit-calc((100% - 33px) / 3);
  width:         calc((100% - 33px) / 3);
  display: inline-block;
  vertical-align: top;
}
#mainContents .clm04 {
  letter-spacing: -0.4em;
}
#mainContents .clm04 > * {
  letter-spacing: normal;
  width: 50%;
  width: -webkit-calc((100% - 49px) / 4);
  width:         calc((100% - 49px) / 4);
  display: inline-block;
  vertical-align: top;
}
#mainContents [class*="clm"] {
  margin-top: 24px;
  /*margin-bottom: 32px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#mainContents [class*="clm"] > * {
  margin-bottom: 24px;
}
#mainContents [class*="clm"] .button {
  width: 100%;
}
#mainContents [class*="clm"] .button.small {
  width: auto;
}
#mainContents [class*="clm"][class*="image-"] + p {
  margin-top: 32px;
}
#mainContents [class*="clm"][class*="image-"] + p {
  margin-top: 6px;
}
#mainContents .checkbox[class*="clm"] {
  margin: 24px 0;
}
#mainContents .radio[class*="clm"] {
  margin: 24px 0;
}

/*追加（イベントセミナー ）*/
@media only screen and (min-width: 769px){
    #main #mainContents .clm03.flex-center {
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    #main #mainContents .clm03.flex-left {
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
    }

    #main #mainContents .clm03.flex-center > div,
    #main #mainContents .clm03.flex-center > a{
        width:calc( (100% / 3) - ( 32 / 3) );
        margin-left:8px;
        margin-right:8px;
    }

    #main #mainContents .clm03.flex-left > div,
    #main #mainContents .clm03.flex-left > a{
        width:calc( (100% / 3) - ( 32 / 3) );
        margin-left:8px;
        margin-right:8px;
    }

    #main #mainContents .clm03.flex-center > div:nth-child(3n),
    #main #mainContents .clm03.flex-center > a:nth-child(3n),
    #main #mainContents .clm03.flex-left > div:nth-child(3n),
    #main #mainContents .clm03.flex-left > a:nth-child(3n) {
        margin-right:0;
    }

    #main #mainContents .clm03.flex-center > div:nth-child(3n-2),
    #main #mainContents .clm03.flex-center > a:nth-child(3n-2),
    #main #mainContents .clm03.flex-left > div:nth-child(3n-2),
    #main #mainContents .clm03.flex-left > a:nth-child(3n-2){
        margin-left:0;
    }

    #mainContents .add-profile_block .profile_image img{
        width: 160px;
        height: auto;
    }

    #mainContents .add-profile_content .profile_text{
        text-align:left;
    }

    #mainContents .add-profile_content .profile_text.text-center{
        text-align:center;
    }


}


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


    #main #mainContents [class*="clm"][class*="flex-"]{
        display: block;

    }

    #main #mainContents .add-profile_block:not(:last-child) [class*="clm"][class*="flex-"]{
        margin-bottom: 0;
    }

    #mainContents .add-profile_content{
        display: flex;
        flex-wrap: wrap;
        width:100%;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
    }

    #mainContents .add-profile_content .profile_image {
        width: 30vw;
        height: auto;
    }

    #mainContents .add-profile_content .profile_text {
        width: calc( 100% - 30vw );
        height: auto;
        margin:0;
        box-sizing:border-box;
        padding: 0 0 0 1em;
    }


}







/*追加 (終わり) */


#mainContents [class*="clm"] > div > .col ,
#mainContents [class*="clm"] > div > figure.col img ,
#mainContents [class*="clm"] > div > figure.col a ,
#mainContents [class*="clm"] > figure img ,
#mainContents [class*="clm"] > figure a ,
#mainContents [class*="clm"] > div > .col > *:first-of-type img {
  width: 100%;
}
#mainContents form input ,
#mainContents form button ,
#mainContents form label ,
#mainContents form select ,
#mainContents form textarea {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Droid Sans', 'Meiryo', 'メイリオ', 'YuGothic', '游ゴシック', 'Verdana', 'ＭＳ Ｐゴシック', 'sans-serif';  font-size: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  /*! display: block; */
}
#mainContents .clm02.radio > *:nth-child(n + 3) ,
#mainContents .clm02.checkbox > *:nth-child(n + 3) {
  padding-top: 16px;
}
input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
input[type="checkbox"] + span:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #CDD0D4;
  border-radius: 2px;
}
input[type="checkbox"]:checked + span:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #840D84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
  border: none;
}
input[type="checkbox"]:checked + span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url('/assets/images/element-list/icon/checked.png');
  background-size: cover;
  background-position: center;
}
input[type="radio"] {
  position: absolute;
  opacity: 0;
}
input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  font-size: 1.2rem;
  line-height: 1.6;
}
input[type="radio"] + span:before {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #CDD0D4;
  border-radius: 10px;
}
input[type="radio"]:checked + span:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: 0.2em;
  background: #840D84;
  background-image: linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  border-radius: 10px;
}
@media only screen and (max-width: 768px){
  #mainContents [class*="clm"] > * + *  {
    margin: 0;
  }
  #mainContents [class*="clm"] {
    margin-top: 6.4vmin;
    margin-bottom: 10.666666666666667vmin;
  }
  #mainContents [class*="clm"] + * .button {
    display: block !important;
    margin-top: -10.666666666666667vmin !important;
  }
  #mainContents .clm02.image-left > * ,
  #mainContents .clm02.image-right > * ,
  #mainContents .clm03 > * {
    width: 100%;
  }
  #mainContents [class*="clm03"] > * {
    margin-bottom: 0;
  }
  [class*="radio"] ,
  [class*="checkbox"] {
    /*text-align: center;*/
    margin: 4.266666666666667vmin 0 0 !important;
  }
  [class*="radio"] +  [class*="checkbox"] ,
  [class*="checkbox"] +  [class*="radio"] ,
  [class*="radio"] +  [class*="radio"] ,
  [class*="checkbox"] +  [class*="checkbox"] {
    /*text-align: center;*/
    margin-top:  0 !important;
  }
  #mainContents [class*="clm"][class*="radio"] > :nth-child(n+2) ,
  #mainContents [class*="clm"][class*="checkbox"] > :nth-child(n+2) ,
  #mainContents [class*="radio"] > * ,
  #mainContents [class*="checkbox"] > * {
    width: auto;
    min-width: 50%;
    text-align: left;
    margin: 4.266666666666667vmin 0;
  }
  #mainContents [class*="radio"].ac > * ,
  #mainContents [class*="checkbox"].ac > * {
    text-align: center;
  }
  input[type="radio"] + span ,
  input[type="checkbox"] + span {
    padding-left: 7.466666666666667vmin;
    font-size: 3.2vmin;
    line-height: 1.6;
  }
  input[type="checkbox"] + span:before ,
  input[type="checkbox"]:checked + span:before ,
  input[type="checkbox"]:checked + span:after {
    top: -0.1vmin;
    left: 0;
    width: 5.333333333333333vmin;
    height: 5.333333333333333vmin;
    border-radius: 0.8vmin;
  }
  input[type="radio"] + span:before {
    top: -0.1vmin;
    left: 0;
    width: 5.333333333333333vmin;
    height: 5.333333333333333vmin;
    border: none;
    background-color: transparent;
    background-image: url('/assets/images/element-list/icon/sp/radio.png');
    background-size: contain;
    text-align: center;
  }
  input[type="radio"]:checked + span:after {
    top: -0.1vmin;
    left: 0;
    width: 5.333333333333333vmin;
    height: 5.333333333333333vmin;
    margin-top: 0;
    border: none;
    background-color: transparent;
    background-image: url('/assets/images/element-list/icon/sp/radio-checked.png');
    background-size: contain;
    text-align: center;
  }
  #mainContents .clm02.radio > *:nth-child(n + 3) ,
  #mainContents .clm02.checkbox > *:nth-child(n + 3) {
    padding-top: 0;
  }
  #mainContents .sp-clm02 {
    margin-top: 6.4vmin !important;
  }
  #mainContents .sp-clm02 > * {
    letter-spacing: normal;
    width: 50%;
    width: -webkit-calc((100% - 4.266666666666667vmin) / 2);
    width:         calc((100% - 4.266666666666667vmin) / 2);
    display: inline-block;
    vertical-align: top;
    margin: 0;
    margin-top: 0 !important;
  }
  #mainContents .sp-clm01 > * {
    width: 100%;
    display: block;
  }
  #mainContents .sp-clm01 > * + * {
    margin-top: 4.266666666666667vmin !important;
  }
  #mainContents .sp-clm01 > * + ol ,
  #mainContents .sp-clm01 > * + ul {
    margin-top: 8.533333333333333vmin !important;
  }
  #mainContents .sp-clm01.bannerBox > * + * {
    margin-top: 6.4vmin !important;
  }
  #mainContents .sp-clm01 > * + .buttonArea {
    margin-top: 0 !important;
  }
  #mainContents .clm02 > * ,
  #mainContents .clm02 > * + *  {
    margin-bottom: 6.4vmin;
  }
}
#mainContents .selectBoxArea {
  margin: 24px 0;
  letter-spacing: -0.4em;
}
#mainContents .selectBoxArea > * {
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
}
#mainContents .selectBoxArea > span {
  margin: 0 16px 0 8px;
}
#mainContents .selectBox {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  max-width: 100%;
}
#mainContents .selectBox.multiple select ,
#mainContents .selectBox.multiple {
  width: 100%;
  background-image: none;
  padding: 0 0;
}
#mainContents .selectBox.multiple select option {
  padding: 0.375em;
}
#mainContents .selectBox select {
  background: #FAFBFC;
  border: 1px solid #E6E6E6;
  border-radius: 2px;
  padding: 8px 32px 8px 16px;
  background-image: url('/assets/images/element-list/icon/select.png');
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 50% right 8px;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance   : none;
  appearance        : none;
}
#mainContents .selectBox select::-ms-expand {
    display: none;
}
#mainContents .checkbox_select > * {
  vertical-align: baseline;
}
#mainContents .checkbox_select .selectBoxArea {
  margin: 0 0 0 24px;
}
#mainContents .icon-required {
  vertical-align: middle;
  display: inline-block;
  margin-left: 8px;
  background: #840D84;
  border-radius: 2px;
  font-size: 1.1rem;
  color: #fff;
  padding: 0 0.454545454545455em;
  font-weight: 400;
}
@media only screen and (max-width: 768px){
  #mainContents .selectBoxArea {
    margin: 8.533333333333333vmin 0;
  }
  #mainContents .selectBoxArea > span {
    margin: 0 4.266666666666667vmin 0 2.133333333333333vmin;
  }
  #mainContents .selectBox {
    font-size: 3.2vmin;
  }
  #mainContents .selectBox select {
    background: #FAFBFC;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    padding: 2.133333333333333vmin 7.466666666666667vmin 2.133333333333333vmin 4.266666666666667vmin;
    background-image: url('/assets/images/element-list/icon/select.png');
    background-size: 1em 0.5em;
    background-repeat: no-repeat;
    background-position: top 50% right 8px;
    line-height: 1.666666666666667;
  }
  #mainContents .icon-required {
    margin-left: 2.133333333333333vmin;
    border-radius: 0.533333333333333vmin;
    font-size: 2.933333333333333vmin;
  }
  #mainContents .checkbox_select {
    white-space: nowrap;
  }
  #mainContents .checkbox_select > label {
    min-width: 0;
  }
  #mainContents .checkbox_select .selectBoxArea {
    margin: 0 0 0 4.266666666666667vmin;
  }
}
#mainContents table caption {
  padding: 16px 0;
}
#mainContents table.input-text {
  width: 100%;
  table-layout: fixed;
}
#mainContents table.input-text tr + tr th ,
#mainContents table.input-text tr + tr td {
  padding-top: 8px;
}
#mainContents table.input-text th ,
#mainContents table.input-text td {
  vertical-align: top;
}
#mainContents table.input-text p {
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height: 1.4;
}
#mainContents table.input-text th {
  font-weight: normal;
  text-align: left;
  font-size: 1.4rem;
  width: 84px;
  padding-left: 32px;
  padding-top: 12px;
  white-space: nowrap;
  padding-right: 20px;
}
#mainContents table.input-text tr + tr th {
  padding-top: 20px;
}
#mainContents table.input-text th:nth-of-type(1) {
  width: 48px;
  padding-left: 0;
}
#mainContents table.input-text td {
  width: -webkit-calc((100% - 132px) / 2);
  width:         calc((100% - 132px) / 2);
}
#mainContents textarea ,
#mainContents input[type="text"] ,
#mainContents input[type="tel"] ,
#mainContents input[type="email"] {
  background: #F5F6F7;
  border-radius: 3px;
  border: none;
  font-size: 1.2rem;
  line-height: 1.4;
  /*color: #7C7E80;*/
  padding: 16px;
  width: 100%;
}
#mainContents textarea {
  height: 140px;
  resize: vertical;
}
#mainContents textarea.error ,
#mainContents input[type="text"].error {
  color: #FD2D2D;
  background: #FFF2F2;
}
#mainContents .inputBox + .inputBox {
  margin-top: 8px;
}
#mainContents .buttonArea .button.large {
  margin-top: 40px;
  margin-bottom: 40px;
}
#mainContents .buttonArea + .buttonArea .button.large {
  margin-top: 0;
}
#mainContents .buttonArea .button.small {
  margin-top: 24px;
  margin-bottom: 24px;
}
#mainContents .buttonArea + .buttonArea .button.small {
  margin-top: 0;
}
#mainContents .buttonArea .button {
  margin-top: 32px;
  margin-bottom: 32px;
}
#mainContents .buttonArea + .buttonArea .button {
  margin-top: 0;
}
#mainContents .buttonBox {
  text-align: center;
  margin-top: 56px;
}
#mainContents button.conf {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  min-width: 288px;
  height: 52px;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  background: #871d97;
  background: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:    -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:         linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d0f84', endColorstr='#871d97',GradientType=0 );
}
.msie #mainContents button.conf {
  font-weight: 600;
}
#mainContents button.conf .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  padding: 0 3.846153846153846em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents button.conf i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  background-color: #F5F2F5;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-ppl.svg');
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
}
.ua-pc #mainContents button.conf:hover i {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents button.reset {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1.583333333333333;
  border-radius: 4px;	background-color: #F5F6F7;
  border: 1px solid #7C7E80;
  padding: 7.5px 48px 7.5px 28px;
	color: #7C7E80;
  cursor: pointer;
}
#mainContents button.reset i {
  position: absolute;
  width: 1em;
  height: 1em;
  right: 20px;
  top: 50%;
  margin-top: -0.5em;
}
#mainContents button.reset i:after ,
#mainContents button.reset i:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 100%;
  background-color: #7C7E80;
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform        : translate(-50%,-50%) rotate(-45deg);
}
#mainContents button.reset i:after {
  height: 100%;
  width: 1px;
}
@media only screen and (max-width: 768px){
  #mainContents table.input-text th ,
  #mainContents table.input-text td ,
  #mainContents table.input-text tr ,
  #mainContents table.input-text tbody ,
  #mainContents table.input-text thead ,
  #mainContents table.input-text {
    display: block;
    letter-spacing: -0.4em;
    width: 100%;
  }
  #mainContents table.input-text tr > *:nth-child(n + 3) ,
  #mainContents table.input-text tr + tr {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents table.input-text td ,
  #mainContents table.input-text th {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    font-size: 3.733333333333333vmin;
  }
  #mainContents table.input-text th:nth-of-type(2) ,
  #mainContents table.input-text th:nth-of-type(1) {
    width: 10vmin;
    padding: 4.266666666666667vmin 0 0 0;
  }
  #mainContents table.input-text td:nth-of-type(2) ,
  #mainContents table.input-text td:nth-of-type(1) {
    width: -webkit-calc(100% - 1px - 10vmin);
    width:         calc(100% - 1px - 10vmin);
    padding: 0;
  }
  #mainContents table.input-text.sp-table {
    display: table;
  }
  #mainContents table.input-text.sp-table thead {
    display: table-header-group;
  }
  #mainContents table.input-text.sp-table tbody {
    display: table-row-group;
  }
  #mainContents table.input-text.sp-table tr {
    display: table-row;
  }
  #mainContents table.input-text.sp-table tr + tr td {
    padding-top: 4.266666666666667vmin;
  }
  #mainContents table.input-text.sp-table tr + tr th {
    padding-top: 8.533333333333334vmin;
  }
  #mainContents table.input-text.sp-table td ,
  #mainContents table.input-text.sp-table th {
    display: table-cell;
  }
  #mainContents table.input-text.sp-table th {
    display: table-cell;
    padding-right: 3.2vmin;
  }
  #mainContents form textarea ,
  #mainContents form input[type="email"] ,
  #mainContents form input[type="tel"] ,
  #mainContents form input[type="text"] {
    border-radius: 0.8vmin;
    font-size: 3.2vmin;
    padding: 4.266666666666667vmin;
    width: 100%;
  }
  #mainContents textarea {
    height: 40vmin;
  }
  #mainContents table.input-text p {
    margin: 2.133333333333333vmin 0 0;
    font-size: 3.2vmin;
  }
  #mainContents .buttonBox {
    margin-top: 12.8vmin;
  }
  #mainContents .buttonBox .conf {
    width: 100%;
    font-size: 3.466666666666667vmin;
    min-height: 14.4vmin;
  }
  #mainContents button.reset {
    margin-top: 6.4vmin;
    font-size: 3.2vmin;
    line-height: 1.583333333333333;
    border-radius: 0.533333333333333vmin;
    width: 58.666666666666667vmin;
    padding: 0.791666666666667em 0 0.791666666666667em 0;
  }
  #mainContents button.reset i {
    right: 6.666666666666667vmin;
  }
  #mainContents .inputBox + .inputBox {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .buttonArea .button.large {
    margin-top: 8.533333333333333vmin;
    margin-bottom: 8.533333333333333vmin;
  }
  #mainContents .buttonArea + .buttonArea .button.large {
    margin-top: 0;
  }
  #mainContents .buttonArea .button.small {
    margin-top: 6.4;
    margin-bottom: 6.4;
    width: auto;
    min-width: 57.333333333333333vmin;
  }
  #mainContents .buttonArea + .buttonArea .button.small {
    margin-top: 0;
  }
  #mainContents .buttonArea .button {
    margin-top: 8.533333333333333vmin;
    margin-bottom: 8.533333333333333vmin;
    width: 100%;
  }
  #mainContents .buttonArea + .buttonArea .button {
    margin-top: 0;
  }
}

/* レイアウト */
#mainContents .float.image-right > *:first-child ,
#mainContents .float.image-left > *:first-child {
  margin-bottom: 16px;
  max-width: -webkit-calc((100% - 17px) / 2);
  max-width:         calc((100% - 17px) / 2);
}
#mainContents .float.image-right > *:first-child a:after ,
#mainContents .float.image-left > *:first-child a:after {
  display: none !important;
}
#mainContents .float.image-left > *:first-child {
  float: left;
  margin: 0 16px 16px 0;
}
#mainContents .float.image-right > *:first-child {
  float: right;
  margin: 0 0 16px 16px;
}
#mainContents [class*="clm"].vc {
  align-items: center;
}
#mainContents [class*="clm"] figcaption {
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 8px;
}
#mainContents [class*="clm"] figcaption.al {
  text-align: left;
}
#mainContents [class*="clm"] > * * + p {
  margin-top: 8px;
}
#mainContents.elm_news .float[class*="image-"] ,
#mainContents .float[class*="image-"] {
  overflow: hidden;
}
#mai#mainContents.elm_news .float[classimage-] > div + div > p:first-of-type ,
#mainContents .float[class*="image-"] > div + div > p:first-of-type ,
#mainContents.elm_news .float[class*="image-"] > p ,
#mainContents .float[class*="image-"] > p {
  margin-top: -0.375em;
}
#mainContents.elm_news .clm02.image-right > p ,
#mainContents.elm_news .clm02.image-left > p ,
#mainContents .clm02.image-right > p ,
#mainContents .clm02.image-left > p {
  margin-top: -0.375em;
}
@media only screen and (max-width: 768px){
  #mainContents.elm_news .clm02.image-right > *:first-child ,
  #mainContents.elm_news .clm02.image-left > *:first-child ,
  #mainContents.elm_news [class*="clm"].float > *:first-child ,
  #mainContents .clm02.image-right > *:first-child ,
  #mainContents .clm02.image-left > *:first-child ,
  #mainContents [class*="clm"].float > *:first-child {
    margin: 0 0 4.266666666666667vmin;
  }
  #mainContents [class*="clm"].float {
    margin-bottom: 0;
  }
  #mainContents .float.image-right ,
  #mainContents .float.image-left {
    text-align: center;
  }
  #mainContents .float.image-right > * + div ,
  #mainContents .float.image-left > * + div {
    text-align: left;
  }
  #mainContents .float.image-right > *:first-child ,
  #mainContents .float.image-left > *:first-child {
    max-width: 100%;
    width: 100%;
    float: none;
    margin: 0 0 4.266666666666667vmin;
    text-align: center;
  }
  #mainContents .float.image-right > figure:first-child ,
  #mainContents .float.image-left > figure:first-child {
    display: inline-block;
    width: auto;
    min-width: 300px;
  }
  #mainContents .float.image-right > figure:first-child img ,
  #mainContents .float.image-left > figure:first-child img {
    width: 100%;
  }
  #mainContents [class*="clm"] figcaption {
    font-size: 2.933333333333333vmin;
    margin-top: 2.133333333333333vmin;
  }
  #mainContents .clm03 > *:nth-child(n + 2) {
    margin-top: 6.4vmin;
  }
}
@media only screen and (max-width: 374px){
  #mainContents .float.image-right > figure:first-child ,
  #mainContents .float.image-left > figure:first-child {
    display: inline-block;
    width: auto;
    min-width: 100%;
  }
}
#mainContents .accordion {
  position: relative;
  border: 1px solid #CDD0D4;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  padding: 0 0 0 0;
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
}
.ua-pc #mainContents .accordion:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .accordion + .accordion {
  margin-top: 24px;
}
#mainContents .accordion.start + .accordion {
  margin-top: 40px;
}
#mainContents .accordion .toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  height: 26px;
  width: 26px;
  background-color: rgba(230,231,232,0.99);
  background-image: -webkit-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(134.39deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e7e8', endColorstr='#F5F6F7',GradientType=0 );
  border-radius: 50%;
}
#mainContents .accordion .toggle:after ,
#mainContents .accordion .toggle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 11px;
  margin: 0;
  background-color: #2D2D2E;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
  -webkit-transition: transform 0.25s ease-out;
  transition        : transform 0.25s ease-out;
}
.ua-pc #mainContents .accordion .toggle:after ,
#mainContents .accordion .toggle:after {
  height: 1px;
  width: 11px;
  margin-left: 0;
}
#mainContents .accordion.start .toggle:before {
  margin: 0;
  -webkit-transform: translate(-50%,-50%) rotate(90deg);
  transform        : translate(-50%,-50%) rotate(90deg);
}
#mainContents .accordion.start .toggle:after {
  margin: 0;
  -webkit-transform: translate(-50%,-50%) rotate(180deg);
  transform        : translate(-50%,-50%) rotate(180deg);
}
#mainContents .accordion > p {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 24px 60px 24px 24px;
  cursor: pointer;
}
#mainContents .accordion > p:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#mainContents .accordion .target {
  display: none;
}
#mainContents .accordion.on .target {
  display: block;
}
#mainContents .accordion .innerBox {
  position: relative;
  padding-top: 16px;
}
#mainContents .accordion .innerBox:before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: #CDD0D4;
}
#mainContents .accordion .innerBox > div.googlemap {
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 24px;
}
#mainContents .accordion .innerBox > * {
  padding: 0 24px;
}
#mainContents .accordion .closebar {
  text-align: center;
  width: auto;
  margin: 40px 0 0 0;
  padding: 16px;
  border-radius: 0 0 4px 4px;
  background-color: #F5F6F7;
  cursor: pointer;
}
#mainContents .accordion .closebar a {
  color: #333333;
}
#mainContents .accordion .closebar a span {
  display: inline-block;
  vertical-align: middle;
}
#mainContents .accordion .closebar a:after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url('/assets/images/element-list/icon/accordion01.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  line-height: 1;
  margin-left: 0.4em;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px){
  #mainContents .accordion {
    border-radius: 0.8vmin;
    padding: 0;
  }
  #mainContents .accordion > p {
    font-size: 3.733333333333333vmin;
    padding: 4.266666666666667vmin 15.466666666666667vmin 4.266666666666667vmin 4.266666666666667vmin;
  }
  #mainContents .accordion .innerBox::before {
    left: 4.266666666666667vmin;
    right: 4.266666666666667vmin;
  }
  #mainContents .accordion .innerBox > * ,
  #mainContents .accordion .innerBox > p {
    padding: 0 4.266666666666667vmin;
  }
  #mainContents .accordion .closebar {
    margin: 8.533333333333333vmin 0 0 0;
    padding: 3.733333333333333vmin;
    background-color: #F5F6F7;
  }
  #mainContents .accordion .closebar a:after {
    width: 2.133333333333333vmin;
    height: 1.066666666666667vmin;
  }
  #mainContents .accordion .toggle {
    top: 50%;
    right: 4.266666666666667vmin;
    height: 6.933333333333333vmin;
    width: 6.933333333333333vmin;
    margin-top: -3.466666666666667vmin;
  }
  #mainContents .accordion .innerBox > div.googlemap {
    margin-left: 4.266666666666667vmin;
    margin-right: 4.266666666666667vmin;
    margin-bottom: 4.266666666666667vmin;
  }
  #mainContents .accordion + .accordion {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .accordionAction + .accordion {
    margin-top: 6.4vmin;
  }
}
#mainContents .eventBox {
  position: relative;
  border: 1px solid #CDD0D4;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 0 24px;
}
#mainContents .eventBox + .eventBox {
  margin-top: 40px;
}
#mainContents .eventBox h3 {
  position: static;
  margin: 0;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #CDD0D4;
  margin-bottom: 16px;
}
#mainContents .eventBox h3 span {
  display: inline-block;
  vertical-align: middle;
}
#mainContents .eventBox h3:before ,
#mainContents .eventBox h3:after {
  display: none;
}
#mainContents .eventBox h3 .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 6px 8px 7px;
  margin: 0 16px 0 -33px;
  background-color: #fff;
  border: 1px solid #840D84;
  white-space: nowrap;
  color: #840D84;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
#mainContents .eventBox.end h3 .icon {
  border: 1px solid #CDD0D4;
  background-color: #F5F6F7;
  color: rgba(124, 126, 128, 0.9);
}
#mainContents .eventBox h3 .icon:before {
  content: '';
  top: -5px;
  left: -1px;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 4px 8px;
  border-color: transparent transparent #840d84 transparent;
}
#mainContents .eventBox.end h3 .icon:before {
  border-color: transparent transparent #7C7E80 transparent;
}
#mainContents .eventBox .body {
  display: table;
  table-layout: fixed;
  width: 100%;
}
#mainContents .eventBox .body > * {
  display: table-cell;
  vertical-align: top;
}
#mainContents .eventBox .body .imageBox {
  width: 34.027777777777778%;
  padding: 5px 16px 0 0;
}
#mainContents .eventBox .info {
  margin-top: 16px;
  width: 100%;
  table-layout: fixed;
}
#mainContents .eventBox .info .col {
  vertical-align: middle;
}
#mainContents .eventBox .info .col01 {
  width: 34.027777777777778%;
  padding-right: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  vertical-align: middle;
}
.msie #mainContents .eventBox .info .col01 {
  font-weight: 600;
}
#mainContents .eventBox .info .col02 {
  display: inline-block;
  width: -webkit-calc(65.972222222222222% - 1px);
  width:         calc(65.972222222222222% - 1px);
}
#mainContents .eventBox .info .table {
  width: 100%;
  table-layout: fixed;
}
#mainContents .eventBox .info .table-row + .table-row .table-cell {
  padding-top: 8px;
}
#mainContents .eventBox .info .table-row .table-cell:nth-child(1) {
  padding-right: 16px;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 92px;
}
#mainContents .eventBox .info .event-label.blue {
  background-color: #26B9CD;
}
#mainContents .eventBox .info .event-label.green {
  background-color: #35BE7C;
}
#mainContents .eventBox.end .info .event-label ,
#mainContents .eventBox .info .event-label {
  background-color: #b3b6ba;
  color: #fff;
  display: block;
  text-align: center;
  border-radius: 2.083333333333334em;
  padding: 0.4em 0;
}
#mainContents .eventBox .info .table-row .table-cell:nth-child(2) p {
  font-size: 1.3rem;
  line-height: 1.5;
  padding-top: 0.211538461538462em;
  padding-top: 0.134615384615385em;
}
#mainContents .eventBox .info [class*="icon-"] {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  line-height: 1.2;
  padding: 0.15em 0 0.15em 30px;
}
#mainContents .eventBox .info .col01 > div + div {
  margin-top: 10px;
}
#mainContents .eventBox .info [class*="icon-"]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .eventBox .info .icon-school:before {
  background-image: url('/assets/images/element-list/icon/school.png');
}
#mainContents .eventBox .info .icon-domain:before {
  background-image: url('/assets/images/element-list/icon/domain.png');
}
#mainContents .eventBox .info .icon-folder:before {
  background-image: url('/assets/images/element-list/icon/folder.png');
}
#mainContents .eventBox .link {
  text-align: center;
  background-color: #F5F6F7;
  padding: 16px 0;
  margin: 16px -24px 0;
  border-radius: 0 0 4px 4px;
}
@media only screen and (max-width: 768px){
  #mainContents .eventBox .info [class*="icon-"] {
    padding-left: 8.666666666666667vmin;
  }
  #mainContents .eventBox {
    border-radius: 1.066666666666667vmin;
    padding: 0 4.266666666666667vmin;
  }
  #mainContents .eventBox + .eventBox {
    margin-top: 5.333333333333333vmin;
  }
  #mainContents .eventBox h3 {
    padding: 0 0 5.333333333333333vmin;
    display: block;
    margin-bottom: 4.266666666666667vmin;
    border-bottom: 1px solid #CDD0D4;
  }
  #mainContents .eventBox h3 .icon {
    font-size: 3.2vmin;
    padding: 1.6vmin 2.133333333333333vmin 1.866666666666667vmin;
    margin: 3.2vmin 0 3.2vmin -6.4vmin;
    min-width: 24.533333333333333vmin;
  }
  #mainContents .eventBox.end h3 .icon {
    min-width: 0;
  }
  #mainContents .eventBox h3 .icon + span {
    display: block;
    vertical-align: middle;
  }
  #mainContents .eventBox .body .imageBox {
    width: 100%;
    padding: 0 0 5.333333333333333vmin;
  }
  #mainContents .eventBox .body .imageBox img {
    width: 100%;
  }
  #mainContents .eventBox .body .imageBox + p {
    margin-top: 0;
  }
  #mainContents .eventBox .body ,
  #mainContents .eventBox .body > * {
    display: block;
  }
  #mainContents .eventBox .info {
    margin-top: 5.333333333333333vmin;
  }
  #mainContents .eventBox .info .col01 {
    width: 100%;
    padding-right: 0;
    font-size: 3.2vmin;
    line-height: 1.5;
  }
  #mainContents .eventBox .info .col01 > div + div {
    margin-top: 1.066666666666667vmin;
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .eventBox .info .col02 {
    margin-top: 7.466666666666667vmin;
    width: 100%;
  }
  #mainContents .eventBox .info .table-row + .table-row .table-cell {
    padding-top: 1.066666666666667vmin;
  }
  #mainContents .eventBox .info .table-row .table-cell {
    vertical-align: middle;
  }
  #mainContents .eventBox .info .table-row .table-cell:nth-child(1) {
    padding-right: 2.133333333333333vmin;
    font-size: 3.2vmin;
    width: 23.466666666666667vmin;
  }
  #mainContents .eventBox .info .table-row .table-cell:nth-child(2) {
    padding: 0.423076923076923em 0;
    font-size: 3.466666666666667vmin;
  }
  #mainContents .eventBox .link {
    padding: 4.266666666666667vmin 4vmin;
    margin: 6.4vmin -4.266666666666667vmin 0;
  }
  #mainContents .eventBox .link .button.action01 ,
  #mainContents .eventBox .link .button.action02 {
    min-width: 0;
    width: 100%;
  }
}

/* bkcolor */
#mainContents .clr-01 {
  background-color: #41AAA1;
  background-image: -webkit-linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
  background-image:    -moz-linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
  background-image:         linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
}
#mainContents .clr-02 {
  background-color: #DC4949;
  background-image: -webkit-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background-image:    -moz-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background-image:         linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
}
#mainContents .clr-03 {
  background-color: #436BB6;
  background-image: -webkit-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background-image:    -moz-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background-image:         linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
}

/* button */
#mainContents .news-content .button.action01 ,
#mainContents .button.action01 {
  position: relative;
  z-index: 0;
  display: -webkit-inline-flex;
  display:         inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  min-width: 312px;
  padding: 15.5px 48px;
  min-height: 54px;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.msie #mainContents .button.action01 {
  font-weight: 600;
}
#mainContents .button.action01 .text {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #fff;
}
#mainContents .button.action01 i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  background-color: #F5F2F5;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-ppl.svg');
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
}
.ua-pc #mainContents .button.action01:hover > span ,
.ua-pc #mainContents .button.action02:hover > span {
  text-decoration: none;
}
.ua-pc #mainContents .button.action01:hover i {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .news-content .button.action02 ,
#mainContents .button.action02 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: -webkit-inline-flex;
  display:         inline-flex;
  align-items: center;
  min-width: 312px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 3px;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  border: 1px solid #5D0F84;
  text-align: center;
  padding: 13px 48px;
  min-height: 54px;
  color: #840D84;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.msie #mainContents .button.action02 {
  font-weight: 600;
}
#mainContents .button.large {
  width: 100%;
}
#mainContents [class*="clm"] .button.large {
  width: 100%;
  min-width: 0;
}
#mainContents .button.small {
  min-width: 200px;
  font-size: 1.2rem;
  min-height: 46px;
  padding-right: 46px;
  padding-left: 32px;
}
#mainContents .button.action02 > .text {
  display: inline-block;
  width: 100%;
  text-align: center;
}
#mainContents .button.action02.domain {
  padding: 1.192307692307692em;
  line-height: 1.615384615384615;
}
#mainContents .button.action02.domain i {
  background-image: url('/assets/images/element-list/icon/domain_ppl.png');
  background-size: 29px;
  border-radius: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: auto;
  left: 18.5px;
}
#mainContents .button.action02.domain i:before ,
#mainContents .button.action02.domain i:after {
  display: none;
}
#mainContents .button.smallest {
  min-width: 0;
  padding: 5px 32px 5px 16px;
  color: #fff;
  font-weight: 400;
  min-height: 0;
  line-height: 1.285714285714286;
  white-space: nowrap;
}
#mainContents .button.smallest i {
  width: 14px;
  height: 14px;
  right: 8px;
  background-image: url('/assets/images/sc/icon/link-smallest.png');
}
#mainContents .news-content .button.action01:before,
#mainContents .news-content .button.action02:before ,
#mainContents .button.action01:before,
#mainContents .button.action02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 250ms;
  background-color: #871d97;
  background: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:    -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:         linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  border-radius: 3px;
}
/* 余計な記述でズレをおこしているので修正 */

#mainContents .news-content .button.action01[target="_blank"]:before ,
#mainContents .news-content .button.action02[target="_blank"]:before {
  display: block;
  top: 0;
}

#mainContents .news-content .button.action02:before ,
#mainContents .button.action02:before {
  background-color: #FFFCFF;
  background: -webkit-linear-gradient(-135deg, #FFFCFF 0%, #FFF7FF 100%);
  background:    -moz-linear-gradient(-135deg, #FFFCFF 0%, #FFF7FF 100%);
  background:         linear-gradient(-135deg, #FFFCFF 0%, #FFF7FF 100%);
}
#mainContents .news-content .button.action01:after,
#mainContents .news-content .button.action02:after ,
#mainContents .button.action01:after,
#mainContents .button.action02:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  margin: 0 !important;
  background: -webkit-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background:    -moz-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background:         linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  border-radius: 3px;
  -webkit-transform: translateX(0) !important;
  transform        : translateX(0) !important;
}
#mainContents .news-content .button.action02:after ,
#mainContents .button.action02:after {
  background-color: #FFEDFF;
  background: -webkit-linear-gradient(-135deg, #FFEDFF 0%, #FFFAFF 100%);
  background:    -moz-linear-gradient(-135deg, #FFEDFF 0%, #FFFAFF 100%);
  background:         linear-gradient(-135deg, #FFEDFF 0%, #FFFAFF 100%);
}
.ua-pc #mainContents .news-content .button.action01:hover:before ,
.ua-pc #mainContents .news-content .button.action02:hover:before ,
.ua-pc #mainContents .button.action01:hover:before,
.ua-pc #mainContents .button.action02:hover:before {
  opacity: 0;
}
.ua-pc #mainContents .button.action01.smallest:hover i {
  background-position: 14px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents .button.action01:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
.ua-pc #mainContents .button.action02:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .button.action01[target="_blank"] i {
  background-image: url('/assets/images/element-list/icon/window_blk.png');
  background-size: 42.307692307692308%;
  background-position: center;
  background-repeat: no-repeat;
}
.ua-pc #mainContents .button.action01[target="_blank"]:hover i {
  background-position: center;
}
.msie #mainContents .button.action02 ,
.msie #mainContents .button.action01 {
  display: inline-table;
}
.msie #mainContents .button.action02 .text ,
.msie #mainContents .button.action01 .text {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 768px){
  #mainContents .button.action02 ,
  #mainContents .button.action01 ,
  #mainContents .button.large ,
  #mainContents .button {
    max-width: 100%;
    min-width: 0;
    font-size: 3.466666666666667vmin;
  }
  #mainContents .button.action02 {
    min-width: 0;
    width: 100%;
    border-radius: 0.8vmin;
  }
}
#mainContents .button.action02 i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  background-color: #5D0F84;
  border-radius: 50%;
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
  background: #F5F2F5;
  background: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#mainContents .button.action02 i:before {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-white.svg');
}
.ua-pc #mainContents .button.action02:hover i:before {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .button.action02[target="_blank"] i:before {
  background-image: url('/assets/images/element-list/icon/window_wht.png');
  background-size: 42.307692307692308%;
  background-position: center;
  background-repeat: no-repeat;
}
.ua-pc #mainContents .button.action02[target="_blank"]:hover i:before {
  background-position: center;
}

/* 前のページに戻るボタン */
#mainContents .button.actionReturn i{
    right: initial;
    left: 14px;
    transform: scaleX(-1);
    top: calc(50% - 13px);
}

#mainContents .button.more-link i {
  position: relative;
  top: auto;
  right: auto;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  background-color: transparent;
  background-image: url('/assets/images/element-list/icon/more-link.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: -2.5px 5px 0;
  overflow: hidden;
}
#mainContents .button.more-link i:before {
  content: '';
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('/assets/images/element-list/icon/more-link.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ua-pc #mainContents .button.more-link:hover i {
  background-position: 0 16px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents .button.more-link:hover i:before {
  bottom: 0;
  background-position: center;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}

/* メーカーパネル */
#mainContents .mfgPanel {
  overflow: hidden;
  border: 1px solid #CDD0D4;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
}
.ua-pc #mainContents .mfgPanel:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .mfgPanel + .mfgPanel {
  margin-top: 40px;
}
#mainContents .mfgPanelRow01 {
  position: relative;
  padding: 0 24px;
}
#mainContents .mfgPanelRow01 .col {
  vertical-align: middle;
}
#mainContents .mfgPanelRow01 .col01 {
  width: 32%;
  padding: 11px 0;
}
#mainContents .mfgPanelRow01 .col02 {
  width: -webkit-calc(68% - 27px);
  width:         calc(68% - 27px);
  font-size: 1.3rem;
  padding: 0 16px 0 8px;
}
#mainContents .mfgPanelRow01 .col02 p {
  line-height: 1.5;
}
#mainContents .mfgPanelRow01 .col02 .h3 {
  margin: 0 0 2px;
  padding: 0;
  font-size: 2.4rem;
  line-height: 1.4;
}
#mainContents .mfgPanelRow01 .col02 .h3:before ,
#mainContents .mfgPanelRow01 .col02 .h3:after {
  display: none;
}
#mainContents .mfgPanelRow01 .col03 {
  width: 26px;
}
#mainContents .mfgPanelRow01 .col03 a i {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #2D2D2E;
  border-radius: 50%;
  background-image: url('/assets/images/element-list/icon/mfg.png');
  background-size: 100%;
  background-position: 50%;
}
#mainContents .mfgPanelRow01 .col03 a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: none;
  margin: 0;
}
.ua-pc #mainContents .mfgPanelRow01 .col03 a:hover i {
  background-position: 24px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .mfgPanel .mfgPanelRow02 {
  padding: 16px 0;
  margin: 0 24px;
  border-top: 1px solid #D2D2D2;
}
#mainContents .mfgPanel .mfgPanelRow03 {
  border-radius: 0 0 4px 4px;
  background-color: #F5F6F7;
  padding: 16px 24px 8px;
}
#mainContents .border-icon-folder_ppl {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  border: 1px solid #2D2D2E;
  border-radius: 2.5em;
  margin-right: 8px;
  margin-bottom: 8px;
  position: relative;
  font-size: 1.2rem;
  color: #840D84;
  border-color: #840D84;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-font-smoothing: antialiased;
  font-smoothing        : antialiased;
}
#mainContents .border-icon-folder_ppl:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/element-list/icon/folder_ppl.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 13px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .border-icon-folder_ppl:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/element-list/icon/folder_wht.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 13px;
  margin: 0;
  opacity: 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .border-icon-domain {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  border: 1px solid #2D2D2E;
  border-radius: 2.5em;
  margin-right: 8px;
  position: relative;
  font-size: 1.2rem;
  border-color: #2D2D2E;
  color: #2D2D2E;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .border-icon-domain:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/element-list/icon/domain.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 13px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .border-icon-domain:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/element-list/icon/domain_wht.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 13px;
  margin: 0;
  opacity: 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .border-icon-none {
  line-height: 1.5;
  border: 1px solid #2D2D2E;
  border-radius: 2.5em;
  margin-right: 8px;
  position: relative;
  font-size: 1.2rem;
  border-color: #2D2D2E;
  color: #2D2D2E;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents [class*="border-icon-"] {
  padding: 0.208333333333334em 1em 0.375em 3em;
}
#mainContents .border-icon-none {
  padding: 0.208333333333334em 1em 0.375em;
}
#mainContents .tagBox {
  margin-bottom: -8px;
}
#mainContents .tagBox [class*="border-icon-"] {
  margin: 0 8px 8px 0;
  display: inline-block;
  vertical-align: top;
}
#mainContents .tagBox a.border-icon-none:after {
  display: none;
}
.ua-pc #mainContents a.border-icon-none:hover > span ,
.ua-pc #mainContents a.border-icon-domain:hover > span ,
.ua-pc #mainContents a.border-icon-folder_ppl:hover > span {
  text-decoration: none;
}
.ua-pc #mainContents a.border-icon-none:hover ,
.ua-pc #mainContents a.border-icon-domain:hover {
  background-color: #2D2D2E;
  color: #fff;
}
.ua-pc #mainContents a.border-icon-folder_ppl:hover {
  background-color: #840D84;
  color: #fff;
}
.ua-pc #mainContents a.border-icon-domain:hover:before ,
.ua-pc #mainContents a.border-icon-folder_ppl:hover:before {
  opacity: 0;
}
.ua-pc #mainContents a.border-icon-domain:hover:after ,
.ua-pc #mainContents a.border-icon-folder_ppl:hover:after {
  margin: 0;
  opacity: 1;
}
@media only screen and (max-width: 768px){
  #mainContents .mfgPanel {
    border-radius: 0.8vmin;
  }
  #mainContents .mfgPanelRow01 {
    padding: 0 4.266666666666667vmin;
  }
  #mainContents .mfgPanelRow01 .col01 {
    width: 42.666666666666667vmin;
    margin-left: -2.133333333333333vmin;
    padding: 0;
  }
  #mainContents .mfgPanelRow01 .col02 {
    width: 100%;
    font-size: 3.2vmin;
    line-height: 1.5;
    padding: 0 0 3.2vmin;
  }
  #mainContents .mfgPanelRow01 .col02 .h3 {
    margin: 0 0 0.533333333333333vmin;
    padding: 0;
    font-size: 5.333333333333333vmin;
  }
  #mainContents .mfgPanelRow01 .col03 {
    display: inline;
  }
  #mainContents .mfgPanelRow01 .col03 i {
    display: none !important;
  }
  #mainContents .mfgPanel .mfgPanelRow02 {
    padding: 3.2vmin 0 5.333333333333333vmin;
    margin: 0 4.266666666666667vmin;
  }
  #mainContents .mfgPanel .mfgPanelRow03 {
    padding: 4.266666666666667vmin 4vmin 2.133333333333333vmin;
  }
  #mainContents .border-icon-domain ,
  #mainContents .border-icon-none ,
  #mainContents .border-icon-folder_ppl {
    font-size: 2.933333333333333vmin;
  }
  #mainContents .border-icon-domain:before ,
  #mainContents .border-icon-folder_ppl:before {
    width: 4.444vmin;
    height: 4.444vmin;
    left: 3.2vmin;
  }
}
#mainContents #tabBoxArea {
  position: relative;
  z-index: 99;
  font-weight: 500;
}
@media only screen and (max-width: 968px){
  #mainContents #tabBoxArea {
    display: none;
  }
}
#mainContents #tabBoxArea .tabBox {
  position: absolute;
  width: 100%;
  top: 0;
}
#mainContents #tabBoxArea.scriptAction .tabBox {
  position: fixed;
  z-index: 1;
  width: -webkit-calc(100% - 336px);
  width:         calc(100% - 336px);
  left: 336px;
  -webkit-transform: translateY(-100%);
  transform        : translateY(-100%);
}
body.up #mainContents #tabBoxArea.scriptAction .tabBox {
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.6, 0.1, 0.3, 1);
  transition        :         transform 0.7s cubic-bezier(0.6, 0.1, 0.3, 1);
}
body.down #mainContents #tabBoxArea.scriptAction .tabBox {
  /*-webkit-transition: -webkit-transform 0.7s cubic-bezier(0.6, 0.1, 0.3, 1);
  transition        :         transform 0.7s cubic-bezier(0.6, 0.1, 0.3, 1);*/
}
/* 仮 */
body.up #mainContents #tabBoxArea.scriptAction .tabBox {
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition        :         transform 400ms ease-in-out;
}
body.down #mainContents #tabBoxArea.scriptAction .tabBox {
  -webkit-transition: -webkit-transform 400ms ease-in-out;
  transition        :         transform 400ms ease-in-out;
}

@media only screen and (max-width: 968px){
  #mainContents #tabBoxArea.scriptAction .tabBox {
    position: fixed;
    width: 100%;
    left: 0;

    top: 50px;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform        : translateY(-100%);
  }
}
@media only screen and (max-width: 768px){
  #mainContents #tabBoxArea {
    display: none;
  }
}
#mainContents .tabBox {
  background-color: #242424;
  padding-top: 8px;
  border-bottom: 8px solid #000;
}
#mainContents .tabBox a {
  color: #C4C4C4;
}
#mainContents .tabBox .active a {
  color: #fff;
}
#mainContents .tabBox .tab {
  table-layout: fixed;
  display: table;
  width: 100%;
  padding: 0 32px;
  max-width: 1024px;
  margin-left:auto;
  margin-right:auto;
}

#mainContents .tabBox .tab.w1200 {
  max-width: 1200px;
}

#mainContents .tabBox .tab .col {
  display: table-cell;
  vertical-align: middle;
  height: 72px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  border-top: 4px solid transparent;
}

#mainContents .tabBox .tab .col.slim {
    width:100px;
}

#mainContents .tabBox .tab .col a {
  position: relative;
  display: block;
  -webkit-transition: all 150ms ease-in-out;
  transition        : all 150ms ease-in-out;
}
.ua-pc #mainContents .tabBox .tab .col a:hover {
  color: #fff;
}
.ua-pc #mainContents .tabBox .tab .col a:hover > span {
  text-decoration: none;
}
#mainContents .tabBox .tab .col a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 72px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .tabBox .tab .col a[target="_blank"] span:after {
  content: '';
  background-image: url('/assets/images/common/window_blk-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: baseline;
  width: 12px;
  height: 11px;
  line-height: 1;
  margin: 0 0.8em 0 0.5em;
}
#mainContents .tabBox .tab .col.active {
  background-color: #000;
}
#mainContents .tabBox .tab .col a:after {
  display: none;
}
#mainContents .tabBox .tab.default .col.active a:after ,
#mainContents .tabBox .tab .col.active a:after {
  content: '';
  position: absolute;
  display: block;
  margin: 0;
  left: 0;
  top: 50%;
  margin-top: -38px;
  width: 100%;
  height: 4px;
  background-color: #6542B4;
  background-image: -webkit-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background-image:    -moz-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background-image:         linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6542B4', endColorstr='#9C4BD9',GradientType=0 );
  border-radius: 3px 3px 0 0;
}
#sidebar .tabBox .tab.maas .col.active a:after ,
#mainContents #tabBoxArea .tabBox .tab.maas .col.active a:after {
    background-color: #2BAB9C;
    background-image: -webkit-linear-gradient(315deg, #2BAB9C 0%, #70D6Be 100%);
    background-image:    -moz-linear-gradient(315deg, #2BAB9C 0%, #70D6Be 100%);
    background-image:         linear-gradient(315deg, #2BAB9C 0%, #70D6Be 100%);
}
#mainContents .tabBox .tab.ai_iot .col.active a:after {
    background-color: #24C2C9;
    background-image: -webkit-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
    background-image: -moz-linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
    background-image: linear-gradient(315deg, #24C2C9 0%, #1889B8 100%);
}
#sidebar .tabBox .tab.healthcare .col.active a:after ,
#mainContents .tabBox .tab.healthcare .col.active a:after {
    background-color: #D03080;
    background-image: -webkit-linear-gradient( 315deg, #e688b7 0%, #d03080 100%);
    background-image:    -moz-linear-gradient( 315deg, #e688b7 0%, #d03080 100%);
    background-image:         linear-gradient( 315deg, #e688b7 0%, #d03080 100%);
}
#sidebar .tabBox .tab.energy .col.active a:after ,
#mainContents .tabBox .tab.energy .col.active a:after {
    background-color: #D5643C;
    background-image: -webkit-linear-gradient(315deg, #D5643C 0%, #F3A443 100%);
    background-image:    -moz-linear-gradient(315deg, #D5643C 0%, #F3A443 100%);
    background-image:         linear-gradient(315deg, #D5643C 0%, #F3A443 100%);
}
#sidebar .tabBox .tab.connectivity .col.active a:after ,
#mainContents .tabBox .tab.connectivity .col.active a:after {
    background-color: #DC9818;
    background-image: -webkit-linear-gradient(315deg, #D6D21E 0%, #DC9818 100%);
    background-image:    -moz-linear-gradient(315deg, #D6D21E 0%, #DC9818 100%);
    background-image:         linear-gradient(315deg, #D6D21E 0%, #DC9818 100%);
}

#sidebar .tabBox .tab.consulting .col.active a:after ,
#mainContents .tabBox .tab.consulting .col.active a:after {
    background-color: #ef7763;
    background-image: -webkit-linear-gradient( 315deg, #e9462b 0%, #ef7763 100%);
    background-image:    -moz-linear-gradient( 315deg, #e9462b 0%, #ef7763 100%);
    background-image:         linear-gradient( 135deg, #e9462b 0%, #ef7763 100%);
}

#sidebar .tabBox .tab.agritech .col.active a:after ,
#mainContents .tabBox .tab.agritech .col.active a:after {
    background-color: #17C583;
    background-image: -webkit-linear-gradient( 315deg, #239E2C 0%, #17C583 100%);
    background-image:    -moz-linear-gradient( 315deg, #239E2C 0%, #17C583 100%);
    background-image:         linear-gradient( 135deg, #239E2C 0%, #17C583 100%);
}

#sidebar .tabBox .tab.af .col.active a::after,
#mainContents .tabBox .tab.af .col.active a::after {
    background-color: #DA2D2F;
    background-image: -webkit-linear-gradient(315deg, #DA2D2F 0%, #EC587D 100%);
    background-image:    -moz-linear-gradient(315deg, #DA2D2F 0%, #EC587D 100%);
    background-image:         linear-gradient(315deg, #DA2D2F 0%, #EC587D 100%);
}

#sidebar .tabBox .tab.sec .col.active a::after,
#mainContents .tabBox .tab.sec .col.active a::after {
    background-color: #674DBF;
    background-image: -webkit-linear-gradient(315deg, #674DBF 0%, #505CC4 100%);
    background-image:    -moz-linear-gradient(315deg, #674DBF 0%, #505CC4 100%);
    background-image:         linear-gradient(315deg, #674DBF 0%, #505CC4 100%);
}

#sidebar .tabBox .tab.nw .col.active a::after,
#mainContents .tabBox .tab.nw .col.active a::after {
    background-color: #4562C6;
    background-image: -webkit-linear-gradient(315deg, #4562C6 0%, #368DCC 100%);
    background-image:    -moz-linear-gradient(315deg, #4562C6 0%, #368DCC 100%);
    background-image:         linear-gradient(315deg, #4562C6 0%, #368DCC 100%);
}

#sidebar .tabBox .tab.dx .col.active a::after,
#mainContents .tabBox .tab.dx .col.active a::after {
    background-color: #85BE2F;
    background-image: -webkit-linear-gradient(315deg, #85BE2F 0%, #B4CF2A 100%);
    background-image:    -moz-linear-gradient(315deg, #85BE2F 0%, #B4CF2A 100%);
    background-image:         linear-gradient(315deg, #85BE2F 0%, #B4CF2A 100%);
}

#mainContents .tabBox .subTab.active {
  display: block;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
#mainContents .tabBox .subTab {
  position: relative;
  display: none;
  padding: 10px 0;
  text-align: center;
  letter-spacing: -0.4em;
  margin-bottom: -8px;
}
#mainContents .tabBox .subTab .col {
  position: static;
  letter-spacing: normal;
  margin-left: 0;
  margin-right: 0;
}
#mainContents .tabBox .subTab a {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 0.480769230769231em 16px;
  color: #C6C6C6;
}

#mainContents .tabBox .subTab a i.linkTarget_blank,
#sidebar .spMenuArea ul.menu a i.linkTarget_blank {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    background-image: url(/assets/images/common/window_blk-footer.png);
    background-repeat: no-repeat;
    background-size: 12px;
}

#mainContents .tabBox .subTab a span.col {
  vertical-align: middle;
  white-space: nowrap;
}
.ua-pc #mainContents .tabBox .subTab .col a:hover span ,
#mainContents .tabBox .subTab .col.active a span {
  color: #fff;
  text-decoration: none;
}
#mainContents .tabBox .subTab.is-a-hover .active a span ,
#mainContents .tabBox .subTab.is-a-hover a span ,
#mainContents .tabBox .subTab a span {
  color: #C6C6C6;
}
#mainContents .tabBox .subTab a:after {
  display: none;
}
#mainContents .tabBox .subTab .bk {
  position: absolute;
  top: 50%;
  height: 2em;
  border-radius: 1em;
  padding: 0;
  margin-left: 0;
  background: #6542B4;
  background: -webkit-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background:    -moz-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background:         linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  -webkit-transition: all 300ms;
  transition: all 300ms;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
#mainContents .tabBox .subTab .bk.type-sekkei {
  border-color: transparent;
  color: #fff;
  background-color: #436BB6;
  background: -webkit-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background:    -moz-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background:         linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
}
#mainContents .tabBox .subTab .bk.type-pckup {
  border-color: transparent;
  color: #fff;
  background-color: #E26C4F;
  background: -webkit-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background:    -moz-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background:         linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
}
#mainContents .tabBox .subTab .bk.ai_iot {
  background-color: #24C2C9;
  background-image: -webkit-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
  background-image:    -moz-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
  background-image:         linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
}
#mainContents .tabBox .subTab .bk.type-ai_iot {
  background-color: #24C2C9;
  background-image: -webkit-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
  background-image:    -moz-linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
  background-image:         linear-gradient(45deg, #24C2C9 0%, #1889B8 100%);
}

#mainContents .tabBox .subTab .bk.type-servicerobot {
  background-color: #239E2C;
  background-image: -webkit-linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
  background-image:    -moz-linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
  background-image:         linear-gradient(-135deg, #239E2C 0%, #17C583 100%);
}

#mainContents .tabBox .subTab .bk.type-energy {
    background-color: #D5643C;
    background-image: -webkit-linear-gradient( 45deg, #D5643C 0%, #F3A443 100%);
    background-image:    -moz-linear-gradient( 45deg, #D5643C 0%, #F3A443 100%);
    background-image:         linear-gradient( 45deg, #D5643C 0%, #F3A443 100%);
}

#mainContents .tabBox .subTab .bk.type-maas {
    background-color: #2bab9c;
    background-image: -webkit-linear-gradient( 315deg, #2bab9c 0%, #70d6be 100%);
    background-image:    -moz-linear-gradient( 315deg, #2bab9c 0%, #70d6be 100%);
    background-image:         linear-gradient( 315deg, #2bab9c 0%, #70d6be 100%);
}


#mainContents .tabBox .subTab .bk.type-healthcare {
    background-color: #D03080;
    background-image: -webkit-linear-gradient( 135deg, #e688b7 0%, #d03080 100%);
    background-image:    -moz-linear-gradient( 135deg, #e688b7 0%, #d03080 100%);
    background-image:         linear-gradient( 135deg, #e688b7 0%, #d03080 100%);
}

#mainContents .tabBox .subTab .bk.iot_security {
    background-color: #B054B6;
    background-image: -webkit-linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
    background-image:    -moz-linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
    background-image:         linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
}
#mainContents .tabBox .subTab .bk.type-iot_security {
    background-color: #B054B6;
    background-image: -webkit-linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
    background-image:    -moz-linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
    background-image:         linear-gradient( 315deg, #B054B6 0%, #DA6CCE 100%);
}

#mainContents .tabBox .subTab .bk.type-connectivity {
    background-color: #70d6be;
    background-image: -webkit-linear-gradient( 315deg, #DC9818 0%, #D6D21E 100%);
    background-image:    -moz-linear-gradient( 315deg, #DC9818 0%, #D6D21E 100%);
    background-image:         linear-gradient( 315deg, #DC9818 0%, #D6D21E 100%);
}

#mainContents .tabBox .subTab .bk.type-consulting {
    background-color: #ef7763;
    background-image: -webkit-linear-gradient( 315deg, #ef7763 0%, #e9462b 100%);
    background-image:    -moz-linear-gradient( 315deg, #ef7763 0%, #e9462b 100%);
    background-image:         linear-gradient( 315deg, #ef7763 0%, #e9462b 100%);
}

#mainContents .tabBox .subTab .bk.type-agritech {
    background-color: #17C583;
    background-image: -webkit-linear-gradient( 315deg, #17C583 0%, #239E2C 100%);
    background-image:    -moz-linear-gradient( 315deg, #17C583 0%, #239E2C 100%);
    background-image:         linear-gradient( 315deg, #17C583 0%, #239E2C 100%);
}


#mainContents .type-sekkei {
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
  z-index: 0;
}
#mainContents .type-sekkei:before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #3B63A3;
}
#mainContents .type-sekkei:after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block !important;
  margin: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #436BB6;
  background: -webkit-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background:    -moz-linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  background:         linear-gradient(315deg, #4D9BE3 0%, #436BB6 100%);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .type-pickup {
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
  z-index: 0;
}
#mainContents .type-pickup:before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #BD3E3E;
}
#mainContents .type-pickup:after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block !important;
  margin: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E26C4F;
  background: -webkit-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background:    -moz-linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  background:         linear-gradient(315deg, #E26C4F 0%, #DC4949 100%);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .type-kiso {
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
  z-index: 0;
}
#mainContents .type-kiso:before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #3C9990;
}
#mainContents .type-kiso:after {
  content: '';
  position: absolute;
  z-index: -1;
  display: block !important;
  margin: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #41AAA1;
  background: -webkit-linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
  background:    -moz-linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
  background:         linear-gradient(315deg, #58CCBB 0%, #41AAA1 100%);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents a.type-sekkei:hover:after ,
.ua-pc #mainContents a.type-pickup:hover:after ,
.ua-pc #mainContents a.type-kiso:hover:after {
  opacity: 0;
}
/*@media only screen and (max-width: 1023px){
  #mainContents .tabBox .tab {
    padding: 0 3.125vmin;
  }
  #mainContents .tabBox .tab .col {
    height: 7.03125vmin;
    font-size: 1.26953125vmin;
  }
}*/
@media only screen and (max-width: 768px){
  #mainContents .tabBox {
    display: none !important;
  }
}
#mainContents .mfgPanel02 {
  background-color: #F5F6F7;
  padding: 32px;
}
#mainContents .mfgPanel02 p {
  margin: 0;
}
#mainContents .mfgPanel02row01 .col {
  vertical-align: middle;
}
#mainContents .mfgPanel02row01 .col01 {
  width: 30%;
}
#mainContents .mfgPanel02row01 .col02 {
  width: -webkit-calc(70% - 1px);
  width:         calc(70% - 1px);
  padding-left: 8px;
}
#mainContents .mfgPanel02row01 .col02 p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}
#mainContents .mfgPanel02row01 .col02 .h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  padding-bottom: 0;
  margin: 0 0 2px;
}
#mainContents .mfgPanel02row01 .h3:before ,
#mainContents .mfgPanel02row01 .h3:after {
  display: none;
}
#mainContents .mfgPanel02 .mfgPanel02row03 ,
#mainContents .mfgPanel02 .mfgPanel02row02 ,
#mainContents .mfgPanel02 .mfgPanel02row01 {
  max-width: 960px;
  margin-left:auto;
  margin-right:auto;
}
#mainContents .mfgPanel02 .mfgPanel02row02  {
  margin-top: 16px;
}
#mainContents .mfgPanel02row03 {
  margin-top: 24px;
}
@media only screen and (max-width: 768px){
  #mainContents .mfgPanel02 {
    margin-top: 10.666666666666667vmin;
    padding: 8.533333333333333vmin 5.333333333333333vmin 6.4vmin;
  }
  #mainContents .mfgPanel02row01 .col01 {
    width: 100%;
    text-align: center;
  }
  #mainContents .mfgPanel02row01 .col01 img {
    width: 53.333333333333333vmin;
  }
  #mainContents .mfgPanel02row01 .col02 {
    width: 100%;
    text-align: center;
    padding: 4.266666666666667vmin 0 0;
  }
  #mainContents .mfgPanel02row01 h3 {
    font-size: 5.333333333333333vmin;
    line-height: 1.6;
    padding-bottom: 0;
    margin: 0 0 1.066666666666667vmin;
  }
  #mainContents .mfgPanel02row01 .col02 p {
    font-size: 2.933333333333333vmin;
    line-height: 1.6;
  }
  #mainContents .mfgPanel02 .mfgPanel02row02 {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .mfgPanel02row03 {
    margin-top: 6.4vmin;
  }
}
#mainContents .bkclrGray {
  background-color: #F5F6F7;
}
#mainContents .bkclrGray input ,
#mainContents .bkclrGray textarea ,
#mainContents .bkclrGray select ,
#mainContents .bkclrGray button ,
#mainContents .bkclrGrayBox  input,
#mainContents .bkclrGrayBox textarea ,
#mainContents .bkclrGrayBox select ,
#mainContents .bkclrGrayBox button {
  background-color: #fff;
}
#mainContents .bkclrGrayBox {
  padding: 1px 24px 32px;
  background-color: #F5F6F7;
}
#mainContents .whtBox {
  background-color: #fff;
  padding: 32px 32px 32px;
}
#mainContents .whtBox section + section {
  margin-top: 40px;
}
#mainContents .whtBox h3 {
  margin: 0 0 24px;
}
#mainContents table.type01 {
  border-top: 1px solid #CDD0D4;
}
#mainContents table.type01 caption img {
  width: 32.6%;
  margin-bottom: 16px;
}
#mainContents table.type01 th ,
#mainContents table.type01  td {
  border-bottom: 1px solid #CDD0D4;
  padding: 16px;
  font-size: 1.4rem;
  line-height: 1.75;
}
#mainContents table.type01 th {
  font-weight: 500;
  width: 25%;
  text-align: left;
  background-color: #FAF7FA;
}
.msie #mainContents table.type01 th {
  font-weight: 600;
}
#mainContents table td {
  vertical-align: middle;
}
#mainContents .bkclrGrayBox.mail-tel-box {
  padding: 24px;
}
#mainContents .bkclrGrayBox.mail-tel-box .clm02 {
  margin-top: 0;
  text-align: center;
}
#mainContents .bkclrGrayBox.mail-tel-box .clm02 a.button.action01 {
  min-width: 0;
  width: 100%;
  margin-top: 8px;
}
#mainContents table {
  width: 100%;
  word-wrap: break-word;
  /*word-break: break-all;*/
}
@media only screen and (max-width: 768px){
  #mainContents .bkclrGrayBox {
    margin-left: -5.333333333333333vmin;
    margin-right: -5.333333333333333vmin;
    padding: 1px 5.333333333333333vmin 5.333333333333333vmin;
    background-color: #F5F6F7;
  }
  #mainContents .whtBox {
    background-color: #fff;
    padding: 4.266666666666667vmin;
  }
  #mainContents table.type01 caption img {
    width: 53.333333333333333vmin;
    margin-bottom: 1.066666666666667vmin;
    margin-top: -3.2vmin;
  }
  #mainContents table.type01 th {
    white-space: nowrap;
  }
  #mainContents table.type01 th ,
  #mainContents table.type01 td {
    padding: 3.2vmin;
    font-size: 3.2vmin;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 {
    margin-bottom: 0;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 > div {
    width: 100%;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 > div + div {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 a.button.action01 {
    margin-top: 3.2vmin;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 .freetel {
    margin: 1.066666666666667vmin 0;
  }
  #mainContents .bkclrGrayBox.mail-tel-box .clm02 .addition {
    margin: 0
  }
}
#mainContents .clm02 + div .button {
  margin-top: 16px;
}
#mainContents .mfgContactBox .h4 {
  margin: 0;
}
#mainContents .mfgContactBox p {
  margin: 0;
}
#mainContents .mfgContactBox .address {
  margin: 0;
}
#mainContents .mfgContactBox .borderBox {
  border: 1px solid #CDD0D4;
  padding: 16px 24px 24px;
  margin-top: 16px;
  text-align: center;
}
#mainContents .mfgContactBox .borderBox [class*="clm"] {
    margin-top: 0;
    margin-bottom: 0;
}
#mainContents .mfgContactBox .button {
  margin-top: 8px;
  min-width: 0;
  width: 100%;
  /*! min-height: 13.333333333333333vmin; */
}
#mainContents [class*="clm"].space-around {
  justify-content: space-around;
}
@media only screen and (max-width: 768px){
  #mainContents .mfgContactBox .borderBox {
    padding: 3.2vmin;
    margin-top: 4.266666666666667vmin;
    text-align: center;
  }
  #mainContents .mfgContactBox [class*="clm"] {
    margin: 0;
  }
  #mainContents .mfgContactBox [class*="clm"] > * {
    width: 100%;
  }
  #mainContents .mfgContactBox [class*="clm"] > * + * {
    margin-top: 4.266666666666667vmin;
  }
}
#mainContents .freetel {
  color: #2D2D2E;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 8px 0;
  display: inline-block;
}
.msie #mainContents .freetel {
  font-weight: 600;
}
/*#mainContents .freetel:before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 20.23px;
  background-image: url('/assets/images/element-list/icon/freetel.png');
  background-size: cover;
  margin-right: 6px;
}*/
#mainContents .freetel:after {
  display: none;
}
#mainContents .mfgContactBox02 {
  text-align: center;
}
#mainContents .mfgContactBox02 +.mfgContactBox02 {
  margin-top: 32px;
}
#mainContents .mfgContactBox02 .h4 {
  margin-top: 0;
  margin-bottom: 0;
}
#mainContents .mfgContactBox02 .button {
  width: 100%;
  margin-top: 16px;
}
#mainContents .bannerBox.clm02 .bannerBox_title {
  font-size: 1.4rem;
  margin: -0.4em 0 8px;
}
#mainContents .bannerBox.clm02 p {
  margin: 0 0 16px;
}
#mainContents .bannerBox.clm02 {
  margin-top: 7.466666666666667vmin;
}
@media only screen and (max-width: 768px){
  #mainContents .mfgContactBox02 .h4 ,
  #mainContents .bannerBox.clm02 .h4 {
    font-size: 3.466666666666667vmin;
    line-height: 1.6;
  }
  #mainContents .bannerBox.clm02 p {
    margin: 1.066666666666667vmin 0 4.266666666666667vmin;
  }
  #mainContents .mfgContactBox02 +.mfgContactBox02 {
    margin-top: 6.4vmin;
  }
  #mainContents .mfgContactBox02 .button {
    margin-top: 4.266666666666667vmin;
  }
}

/* 記事一覧ページ（追加分） */


#mainContents .archive-page-first-read_block{
    padding: 20px 20px 0;
    box-sizing: border-box;
    width: 100%;
}





/* タブナビ */
#mainContents .tabNav {
  position: relative;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 1.3em 0;
  text-align: center;
}
#mainContents .tabNav > * {
  margin-left: 2.021978021978022em;
  margin-right: 2.021978021978022em;
}
#mainContents .tabNav.subTab > .showBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}
#mainContents .tabNav.subTab .showBox > * {
  margin-left: 2.021978021978022em;
  margin-right: 2.021978021978022em;
  white-space: normal;
  display: inline-block;
  vertical-align: middle;
}
#mainContents .tabNav.subTab .showBox > .bk {
  margin: 0;
  height: -webkit-calc(100% - 20px);
  height:         calc(100% - 20px);
  border-radius: 50px;
}
#mainContents .tabNav.bkclr-gray {
  background-color: #F5F6F7;
}
#mainContents .tabNav a {
  position: relative;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
  color: #2D2D2E;
}
#mainContents .tabNav a span {
  -webkit-transition: all 180ms linear;
  transition        : all 180ms linear;
  color: #2D2D2E;
}
#mainContents .tabNav a {
  display: inline-block;
}
#mainContents .tabNav.item-min-width a span {
  min-width: 6.263736263736264em;
  display: block
}
#mainContents .tabNav.bkclr-gray a:after {
  display: none;
}
#mainContents .tabNav.bkclr-gray .bk {
  position: absolute;
  top: 50%;
  height: 2em;
  border-radius: 1em;
  padding: 0 1.714285714285714em;
  margin-left: -1.714285714285714em;
  background: #8C1C8C;
  background: -webkit-linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  background:    -moz-linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  background:         linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  -webkit-transition: all 300ms;
  transition        : all 300ms;
  -webkit-transform: translate(0,-50%);
  transform        : translate(0,-50%);
}
#mainContents .tabNav.bkclr-gray.is-a-hover .active .temporary span ,
#mainContents .tabNav.bkclr-gray .temporary span ,
#mainContents .tabNav.bkclr-gray .active a span {
  color: #fff;
  text-decoration: none;
}
#mainContents .tabNav.bkclr-gray.is-a-hover .active a span {
  color: #2D2D2E;
}
#mainContents .tabNav.clm04.bkclr-gray {
  padding: 16px;
}
#mainContents .tabNav.clm04.bkclr-gray a {
  position: relative;
  display: block;
  width: 100%;
  line-height: 2;
  border-radius: 1em;
  background: #8C1C8C;
  background: -webkit-linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  background:    -moz-linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  background:         linear-gradient(139deg, #5D0F84 0%, #871D97 100%);
  -webkit-transition: all 300ms;
  transition        : all 300ms;
  color: #fff;
}
#mainContents .tabNavContents {
  position: relative;
  margin-top: 16px;
}
#mainContents .tabNavContents > * {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  width: 0;
  height: 0;
  opacity: 0;
  will-change: transform;
  -webkit-transition: opacity 200ms ease-in-out, width 0ms ease-in-out 200ms;
  transition        : opacity 200ms ease-in-out, width 0ms ease-in-out 200ms;
}
#mainContents .tabNavContents > .active {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 1;
  -webkit-transition: width 0ms ease-in-out, opacity 200ms ease-in-out;
  transition        : width 0ms ease-in-out, opacity 200ms ease-in-out;
}
#mainContents .tabNavContents a:after {
  display: none;
}


/*タブナビ修正*/

#mainContents #ArchiveLists .tabNav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    overflow-x:hidden;
    padding: 1.3em 0;
}
#mainContents #ArchiveLists .tabNav .bk{display: none;}

#mainContents #ArchiveLists .tabNav .col a{
    padding:0.5em 1em;
    border-radius: 1em;
    background: rgba(140,28,140,0);
    transition        : all 50ms linear;
}

#mainContents #ArchiveLists .tabNav .active a,
#mainContents #ArchiveLists .tabNav .col a.temporary,
#mainContents #ArchiveLists .tabNav.is-a-hover .col.active a.temporary{
  background: rgba(140,28,140,1);
}

@media only screen and (max-width: 1024px){
    #mainContents #ArchiveLists .tabNav .col{ margin:0 -0.4em }
}

@media only screen and (min-width: 1025px){

    #mainContents #ArchiveLists .tabNav .col a{
        padding:0.5em 1em;
      }

      #mainContents #ArchiveLists .tabNav .col{
        margin:0.5em;
    }
}

#mainContents #ArchiveLists .tabNav.is-a-hover .col.active a{
  background: rgba(140,28,140,0);
}

/*
#mainContents *:not(#tabBoxArea) .tabNav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    overflow-x:hidden;
    padding: 1.3em 0;
}
#mainContents *:not(#tabBoxArea) .tabNav .bk{display: none;}

#mainContents *:not(#tabBoxArea) .tabNav .col a{
    padding:0.5em 1em;
    border-radius: 1em;
    background: rgba(140,28,140,0);
    transition        : all 50ms linear;
}

#mainContents *:not(#tabBoxArea) .tabNav .active a,
#mainContents *:not(#tabBoxArea) .tabNav .col a.temporary,
#mainContents *:not(#tabBoxArea) .tabNav.is-a-hover .col.active a.temporary{
  background: rgba(140,28,140,1);
}


@media only screen and (max-width: 1024px){
    #mainContents *:not(#tabBoxArea) .tabNav .col{ margin:0 -0.4em }
}

@media only screen and (min-width: 1025px){

    #mainContents *:not(#tabBoxArea) .tabNav .col a{
        padding:0.5em 1em;
      }

      #mainContents .tabNav .col{
        margin:0.5em;
    }
}


#mainContents *:not(#tabBoxArea) .tabNav.is-a-hover .col.active a{
  background: rgba(140,28,140,0);
}
*/

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



@media only screen and (max-width: 768px){
  #mainContents .tabNav.bkclr-gray .bk {
    height: 2.083333333333333em;
    padding: 0 1em;
    margin-left: -1em;
    border-radius: 1em;
    padding: 0 .5em;
    margin-left: -.5em;
    }
  #mainContents .tabNav.bkclr-gray {
    padding: 1.153846153846154em 0;
    white-space: inherit;
    overflow-y: inherit;
    overflow-x: inherit;
    font-size: 3.2vmin;
    line-height: 1.5;
  }

  #mainContents .tabNav.clm04.bkclr-gray {
    padding: 5.066666666666667vmin;
  }
  #mainContents .tabNav > * {
    margin-left: 1.5em;
    margin-right: 0;
  }
  #mainContents .tabNav > .col01 {
    margin-left: 0;
  }
  #mainContents .tabNav a {
    font-size: 13px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 350px){
  #mainContents .tabNav > * {
    margin-left: .7em;
    margin-right: 0;
  }
  #mainContents .tabNav a {
    font-size: 11px;
  }
}

[class*="pageNav"] {
  text-align: center;
}
[class*="pageNav"] ol ,
[class*="pageNav"] li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: -0.4em;
}
[class*="pageNav"] li:before {
  display: none;
}
[class*="pageNav"] li {
  position: relative;
  letter-spacing: normal;
  margin: 0 4px !important;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}
[class*="pageNav"] li > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
[class*="pageNav"] li:first-child > span ,
[class*="pageNav"] li:last-child > span {
  position: static;
  width: 100%;
  height: 100%;
  margin-top: 0;
  -webkit-transform: translate(0);
  transform        : translate(0);
}
[class*="pageNav"] a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #840D84;
  border-radius: 3px;
  border: 1px solid transparent;
  -webkit-transition: all 200ms ease-in-out;
  transition        : all 200ms ease-in-out;
}
[class*="pageNav"] a:after {
  display: none !important;
}
.ua-pc [class*="pageNav"] a:hover {
  background-color: #FFFAFF;
  border: 1px solid #E6CEE6;
}
.ua-pc [class*="pageNav"] a:hover span {
  text-decoration: none !important;
}
[class*="pageNav"] .active a:hover ,
[class*="pageNav"] .active a {
  background-color: #8C1C8C !important;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%) !important;
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%) !important;
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%) !important;
  color: #fff !important;
  opacity: 1 !important;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  border-color: transparent;
}
#mainContents .bkclrBrackBox {
  background-color: rgba(7,0,41,0.7);
  padding: 16px 0;
}
#sidebar .pageNav02 ,
#sidebar .pageNav02 a ,
#mainContents .pageNav02 ,
#mainContents .pageNav02 a {
  color: #fff;
}
.ua-pc #sidebar .pageNav02 a:hover ,
.ua-pc #mainContents .pageNav02 a:hover {
  background-color: #fff;
  color: #840D84;
  border: 1px solid transparent;
}
.pageNav02 a polyline {
  -webkit-transition: all 200ms ease-in-out;
  transition        : all 200ms ease-in-out;
}
.ua-pc .pageNav02 a:hover polyline {
  stroke: #840D84 !important;
  opacity: 1 !important;
}
#mainContents .none-display {
  display: none;
}
.none-pointer-events {
  pointer-events: none;
}
[class*="pageNav"] .number {
  line-height: 40px;
}
[class*="pageNav"] .next-all {
  background-image: url('/assets/images/element-list/icon/pagenav_leftall_link.png');
  background-size: cover;
}
[class*="pageNav"] .next {
  background-image: url('/assets/images/element-list/icon/pagenav_left_link.png');
  background-size: cover;
}
[class*="pageNav"] .prev {
  background-image: url('/assets/images/element-list/icon/pagenav_right_link.png');
  background-size: cover;
}
[class*="pageNav"] .prev-all {
  background-image: url('/assets/images/element-list/icon/pagenav_rightall_link.png');
  background-size: cover;
}
[class*="pageNav"] .next-all.none-pointer-events {
  background-image: url('/assets/images/element-list/icon/pagenav_leftall.png');
  background-size: cover;
}
[class*="pageNav"] .next.none-pointer-events {
  background-image: url('/assets/images/element-list/icon/pagenav_left.png');
  background-size: cover;
}
[class*="pageNav"] .prev.none-pointer-events {
  background-image: url('/assets/images/element-list/icon/pagenav_right.png');
  background-size: cover;
}
[class*="pageNav"] .prev-all.none-pointer-events {
  background-image: url('/assets/images/element-list/icon/pagenav_rightall.png');
  background-size: cover;
}
.pageNav02 .next-all.none-pointer-events ,
.pageNav02 .next.none-pointer-events ,
.pageNav02 .prev.none-pointer-events ,
.pageNav02 .prev-all.none-pointer-events {
  opacity: 0.5;
}
.pageNav02 .next-all.none-pointer-events ,
.pageNav02 .next-all {
  background-image: url('/assets/images/element-list/icon/pagenav_leftall_wht.png');
}
.pageNav02 .next.none-pointer-events ,
.pageNav02 .next {
  background-image: url('/assets/images/element-list/icon/pagenav_left_wht.png');
}
.pageNav02 .prev.none-pointer-events ,
.pageNav02 .prev {
  background-image: url('/assets/images/element-list/icon/pagenav_right_wht.png');
}
.pageNav02 .prev-all.none-pointer-events ,
.pageNav02 .prev-all {
  background-image: url('/assets/images/element-list/icon/pagenav_rightall_wht.png');
}
.ua-pc .pageNav02 .next-all:hover {
  background-image: url('/assets/images/element-list/icon/pagenav_leftall_link.png');
}
.ua-pc .pageNav02 .next:hover {
  background-image: url('/assets/images/element-list/icon/pagenav_left_link.png');
}
.ua-pc .pageNav02 .prev:hover {
  background-image: url('/assets/images/element-list/icon/pagenav_right_link.png');
}
.ua-pc .pageNav02 .prev-all:hover {
  background-image: url('/assets/images/element-list/icon/pagenav_rightall_link.png');
}

#mainContents .pageNav02 a{
	background-color: rgba(108,32,147,1.0);
	opacity: 1;
}
#mainContents .pageNav02 .number{
	color:black;
}
.ua-pc #mainContents .pageNav02 a:hover{
	background-color: rgba(108,32,147,1.0);
    color: #fff;
    border: 1px solid transparent;
	opacity: 0.5;
}
.ua-pc .pageNav02 .prev:hover {
    background-image: url('/assets/images/element-list/icon/pagenav_right_wht.png');
}
.ua-pc .pageNav02 .prev-all:hover{
	background-image: url('/assets/images/element-list/icon/pagenav_rightall_wht.png');
}
.ua-pc .pageNav02 .next:hover {
	background-image: url('/assets/images/element-list/icon/pagenav_left_wht.png');
}
.ua-pc .pageNav02 .next-all:hover {
    background-image: url('/assets/images/element-list/icon/pagenav_leftall_wht.png');
}
#mainContents .pageNav02 a.next-all.none-pointer-events {
    background-color: white;
    background-image: url('/assets/images/element-list/icon/pagenav_leftall.png');
}
#mainContents .pageNav02 a.next.none-pointer-events {
    background-color: white;
    background-image: url('/assets/images/element-list/icon/pagenav_left.png');
}
#mainContents .pageNav02 a.prev.none-pointer-events {
    background-color: white;
    background-image: url('/assets/images/element-list/icon/pagenav_right.png');
}
#mainContents .pageNav02 a.prev-all.none-pointer-events {
    background-color: white;
    background-image: url('/assets/images/element-list/icon/pagenav_rightall.png');
}

@media only screen and (max-width: 768px){
  #mainContents [class*="pageNav"] {
    margin: 0 -5.333333333333333vmin;
  }
  [class*="pageNav"] ol ,
  [class*="pageNav"] li {
    display: inline-block;
    vertical-align: middle;
    font-size: 3.466666666666667vmin;
  }
  [class*="pageNav"] li {
    position: relative;
    letter-spacing: normal;
    margin: 0 1.6vmin !important;
    width: 14.4vmin;
    height: 14.4vmin;
  }
  [class*="pageNav"] a {
    width: 14.4vmin;
    height: 14.4vmin;
    border-radius: 0.533333333333333vmin;
    line-height: 14.4vmin;
  }
  [class*="pageNav"] li > span {
    margin-top: 0.533333333333333vmin;
    width: 14.4vmin;
    height: 14.4vmin;
    line-height: 14.4vmin;
  }
  [class*="pageNav"] .number {
    line-height: 14.4vmin;
  }
  [class*="pageNav"] .prev-all.none-pointer-events ,
  [class*="pageNav"] .next-all.none-pointer-events ,
  [class*="pageNav"] .next.none-pointer-events ,
  [class*="pageNav"] .prev.none-pointer-events ,
  [class*="pageNav"] .next ,
  [class*="pageNav"] .prev ,
  [class*="pageNav"] .prev-all ,
  [class*="pageNav"] .next-all {
    background-size: 8.4vmin 8.4vmin !important;
    background-repeat: no-repeat;
    background-position: center;
  }
}
#mainContents .chrSearch {
  letter-spacing: -0.4em;
}
#mainContents .chrSearch ul {
  margin-bottom: -12px;
  margin-left: -12px;
}
#mainContents .chrSearch li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  text-align: center;
  width: -webkit-calc((100% - 157px) / 13);
  width:         calc((100% - 157px) / 13);
  margin: 0 0 12px 12px;
}
#mainContents .chrSearch li > * {
  border: 1px solid #E6CEE6;
  border-radius: 2px;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
#mainContents .chrSearch li a:after {
  display: none;
}
#mainContents .chrSearch li > a:hover ,
#mainContents .chrSearch li.active > a {
  background: #75178F;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  border-color: transparent;
  color: #fff;
}
#mainContents .chrSearch li > * {
  position: relative;
  padding-top: 100%;
  display: block;
}
#mainContents .chrSearch li > * span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
.ua-pc #mainContents .chrSearch li > a:hover > span {
  text-decoration: none;
}
#mainContents .chrSearch li > span {
  background-color: #F5F6F7;
  color: #7C7E80;
  border-color: transparent;
}
.manufacturerSearchBox {
  position: relative;
}
.manufacturerSearchBox > section {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  will-change: transform;
  -webkit-transition: opacity 200ms ease-in-out, width 0ms ease-in-out 200ms;
  transition        : opacity 200ms ease-in-out, width 0ms ease-in-out 200ms;
}
.manufacturerSearchBox > section.active {
  position: relative;
  opacity: 1;
  width: 100%;
  -webkit-transition: width 0ms ease-in-out, opacity 200ms ease-in-out;
  transition        : width 0ms ease-in-out, opacity 200ms ease-in-out;
}
@media only screen and (max-width: 768px){
  #mainContents .chrSearch ul {
    margin-bottom: -5.333333333333333vmin;
    margin-left: -5.333333333333333vmin;
  }
  #mainContents .chrSearch li {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    text-align: center;
    width: -webkit-calc((100% - 1px - 5.333333333333333vmin * 6) / 6);
    width:         calc((100% - 1px - 5.333333333333333vmin * 6) / 6);
    margin: 0 0 5.333333333333333vmin 5.333333333333333vmin;
  }
  #mainContents .chrSearch li > * {
    border-radius: 0.533333333333333vmin;
  }
  #mainContents .chrSearch li:nth-child(26) {
    content: '';
    display: inline-block;
    width: -webkit-calc((100% - 1px - 5.333333333333333vmin * 6) / 6 * 7);
    width:         calc((100% - 1px - 5.333333333333333vmin * 6) / 6 * 7);
    padding-right: -webkit-calc((100% - 1px - 5.333333333333333vmin * 6) / 6 * 6);
    padding-right:         calc((100% - 1px - 5.333333333333333vmin * 6) / 6 * 6);
  }
}
#mainContents .indexNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: -0.4em;
  margin-bottom: -16px;
}
#mainContents .indexNav > * {
  position: relative;
  letter-spacing: normal;
  width: -webkit-calc((100% - 33px) / 3);
  width:         calc((100% - 33px) / 3);
  border-radius: 4px;
  border: 1px solid #CDD0D4;
  overflow: hidden;
  margin-bottom: 16px;
  color: #2d2d2e;
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
  background-color: #F5F6F7;
}
#mainContents .indexNav:after {
  content: '';
  position: relative;
  letter-spacing: normal;
  width: -webkit-calc((100% - 33px) / 3);
  width:         calc((100% - 33px) / 3);
  display: inline-block;
}
#mainContents .bkclr-wht ,
#mainContents .indexNav > *.bkclr-wht {
  background-color: #fff;
}
#mainContents .indexNav > .more-link-box {
  position: static;
  width: 100%;
  border-radius: 0;
  border: none;
  overflow: visible;
  background-color: transparent;
}
#mainContents .indexNav > a {
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
}
#mainContents .indexNav.notag > * {
  background-color: #fff;
  padding-bottom: -webkit-calc(1.2rem * 1.5 + 16px + 16px);
  padding-bottom:         calc(1.2rem * 1.5 + 16px + 16px);
}
#mainContents .indexNav.notag .time {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
#mainContents .indexNav.notime > div {
  padding-bottom: 16px;
}
#mainContents .indexNav > * > * {
  background-color: #fff;
}
.ua-pc #mainContents .indexNav > a:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .indexNav a:after {
  display: none;
}
#mainContents .indexNav .head {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 4px 16px;
  color: #fff;
}
.msie #mainContents .indexNav .head {
  font-weight: 600;
}
#mainContents .indexNav .imageBox {
  position: relative;
  overflow: hidden;
}
#mainContents .indexNav .imageBox:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: 66.666666666666667%;
}
#mainContents .indexNav .imageBox img {
   /*position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);*/
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-width: 100.5%;
  min-width: 100%;
  min-height: 100.5%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
#mainContents img[data-ofi-src] {
  width: 100% !important;
  height: 100% !important;
}
#mainContents .indexNav.w100 .imageBox:before {
  display: none;
}
#mainContents .indexNav.w100 .imageBox img {
  position: static;
  top: auto;
  left: auto;
  width: 100%;
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents .indexNav.w100 a:hover .imageBox img {
    -webkit-transform: scale(1.08);
    transform        : scale(1.08);
}
.ua-pc #mainContents .indexNav a:hover .imageBox img {
    -webkit-transform: translate(-50%,-50%) scale(1.08);
    transform        : translate(-50%,-50%) scale(1.08);
}
#mainContents .indexNav .cptn {
  margin: 0;
  padding: 16px 16px 0;
  font-size: 1.3rem;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow     : ellipsis;
  text-overflow        : ellipsis;
}

/* 追加 資料タウンロート一覧のキャッチ */
#mainContents .indexNav p.catchMsg{
    padding: 16px;
    color: #840d84;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#mainContents .indexNav .cptn.bold.ac {
  font-size: 1.8rem;
  line-height: 1.333333333333333;
}
#mainContents .indexNav .body {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 8px 16px;
}
.msie #mainContents .indexNav .body {
  font-weight: 600;
}
#mainContents .indexNav .body.normal {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.714285714285714;
  padding: 8px 16px;
}


#mainContents .indexNav .ClientName {
    overflow: hidden;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6;
}

.msie #mainContents .indexNav .ClientName {
  font-weight: 600;
}


#mainContents .indexNav .imageBox + p {
  margin: 0;
}
#mainContents .indexNav .max3row {
  height: 5.8em;
  overflow: hidden;
}
#mainContents .indexNav .time {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7C7E80;
  padding: 16px 16px 16px;
}
#mainContents .indexNav .tag {
  background-color: #F5F6F7;
  padding: 16px 16px 8px;
}
#mainContents .indexNav .tag [class*="border-icon-"] {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  text-align: left;
}
#mainContents .indexNav .tag > span {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px){
  #mainContents .indexNav > * {
    width: -webkit-calc((100% - 1px - 4.266666666666667vmin) / 2);
    width:         calc((100% - 1px - 4.266666666666667vmin) / 2);
    border-radius: 0.8vmin;
    margin-bottom: 4.266666666666667vmin;
  }
  #mainContents .indexNav .head {
    font-size: 3.2vmin;
    padding: 1.066666666666667vmin 3.2vmin;
    color: #fff;
  }
  #mainContents .indexNav .cptn {
    padding: 4.266666666666667vmin 3.2vmin 2.133333333333333vmin;
    font-size: 3.466666666666667vmin;
  }
  #mainContents .indexNav .body {
    font-size: 3.733333333333333vmin;
    line-height: 1.571428571428571;
    padding: 2.133333333333333vmin 3.2vmin 0;
  }


  #mainContents .indexNav .ClientName {
    font-size: 3.733333333333333vmin;
    line-height: 1.571428571428571;
    padding: 0 3.2vmin 2.133333333333333vmin;
  }


  #mainContents .indexNav .time {
    font-size: 3.2vmin;
    line-height: 1.5;
    padding: 4.266666666666667vmin 3.2vmin 3.2vmin;
  }
  #mainContents .indexNav .tag {
    background-color: #F5F6F7;
    padding: 3.2vmin 0 1.066666666666667vmin 3.2vmin;
  }
  #mainContents .indexNav .tag > span {
    margin-bottom: 8px;
  }
  #mainContents .indexNav .max3row {
    padding-top: 0;
    height: -webkit-calc(4.714285714285713em);
    height:         calc(4.714285714285713em);
  }
  #mainContents .indexNav .tag [class*="border-icon-"] {
    border-radius: 3.466666666666667vmin;
  }
  #mainContents .indexNav.sp-w100 > div {
    width: 100%;
    display: table;
    padding: 0;
    margin: 0;
  }
  #mainContents .indexNav.sp-w100 > div + div {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .indexNav.sp-w100 > * > * {
    display: table-cell;
    vertical-align: middle;
  }
  #mainContents .indexNav.sp-w100 > * .imageBox {
    width: 45.373134328358209%;
  }
  #mainContents .indexNav.sp-w100 > * .imageBox.sp-bk-clr-f4f9eb {
    background-color: #f4f9eb;
  }
  #mainContents .indexNav.sp-w100 > * .body {
    padding: 0 4.266666666666667vmin;
    font-size: 4.266666666666667vmin;
    line-height: 1.6;
  }
  #mainContents .indexNav.sp-w100 > * .contentBox {
    padding-bottom: 4.266666666666667vmin;
  }
  #mainContents .indexNav.sp-w100 > * .contentBox > * {
    text-align: left;
  }
  #mainContents .indexNav.sp-w100 > * .contentBox > .cptn {
    font-size: 4.266666666666667vmin;
    line-height: 1.6;
    padding: 4.266666666666667vmin 4.266666666666667vmin 2.133333333333333vmin;
  }
  #mainContents .indexNav.sp-w100 > div .contentBox > .body {
    font-size: 3.466666666666667vmin;
    line-height: 1.75;
    padding: 0 4.266666666666667vmin;
  }
}
#mainContents .indexNav.w100 > * {
  width: 100%;
  background-color: transparent;
}
#mainContents .indexNav.w100 .body {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 24px 24px 8px;
  padding: 0;
}
#mainContents .indexNav.w100 .max3row {
  margin: 8px 24px;
  padding: 0;
  font-size: 1.4rem;
  height: 5.25em;
  overflow: hidden;
}
#mainContents .indexNav.w100 .time {
  margin: 16px 24px 24px;
  padding: 0;
}
@media only screen and (max-width: 768px){
  #mainContents .indexNav.w100 .body {
    font-size: 4.266666666666667vmin;
    margin: 4.266666666666667vmin 4.266666666666667vmin 2.133333333333333vmin;
  }
  #mainContents .indexNav.w100 .max3row {
    margin: 2.133333333333333vmin 4.266666666666667vmin;
    font-size: 3.466666666666667vmin;
    height: 8.75em;
    overflow: hidden;
  }
  #mainContents .indexNav.w100 .time {
    margin: 5.333333333333333vmin 4.266666666666667vmin;
  }
}
#mainContents .indexNav.slick {
  margin-bottom: 0;
  margin-right: -16px;
}
#mainContents .indexNav.slick .slick-item {
  width: -webkit-calc((100vw - 336px - 64px - 32px) / 3);
  width:         calc((100vw - 336px - 64px - 32px) / 3);
  letter-spacing: normal;
  border-radius: 4px;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  border: 1px solid #CDD0D4;
  overflow: hidden;
  margin: 0 16px 10px;
  color: #2d2d2e;
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
}
.ua-pc #mainContents .indexNav.slick a.slick-item:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .indexNav.slick .slick-slide {
  margin-right: 16px;
  -webkit-transform: translateX(-16px);
  transform        : translateX(-16px);
}
#mainContents .indexNav.slick > div {
  letter-spacing: normal;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: transparent;
}
#mainContents .indexNav.slick > div > * {
  background-color: transparent;
  margin: 0;
}
#mainContents .indexNav.slick .body {
  overflow: hidden;
  height: 4.8em;
  margin: 8px 16px;
  padding: 0;
}
#mainContents .indexNav.slick .slick-dots {
  bottom: 20px;
  height: 2px;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  border: none;
  overflow: visible;
  margin-bottom: 0;
  background-color: transparent;
  margin-bottom: 10px;
}
#mainContents .indexNav.slick .slick-dots li {
  width: 50px;
  height: auto;
  margin: 0 10px;
  line-height: 2px;
  vertical-align: top;
  background-color: transparent;
}
#mainContents .indexNav.slick .slick-dots li button {
  width: 50px;
  height: 42px;
  padding: 20px 0 20px;
  padding: 0;
  line-height: 2px;
}
#mainContents .indexNav.slick .slick-dots li button:before {
  content: '';
  position: absolute;
  top: 20px;
  width: 50px;
  height: 2px;
  background-color: #ABC5D1;
  line-height: 2px;
  opacity: 1;
}
#mainContents .indexNav.slick .slick-dots li.slick-active button:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #832393;
  line-height: 2px;
  opacity: 1;
}
#mainContents .indexNav.slick .slick-next ,
#mainContents .indexNav.slick .slick-prev {
  position: absolute;
  height: 43px;
  width: 43px;
  border: 1px solid #CDD0D4;
  background-color: #F5F6F7;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  z-index: 1;
  border-radius: 50%;
  margin-top: -20px;
  left: 0;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/images/element-list/icon/slid-arrow-left.png');
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
  -webkit-transition: all 300ms ease;
  transition        : all 300ms ease;
}
#mainContents .indexNav.slick .slick-next {
  background-image: url('/assets/images/element-list/icon/slid-arrow-right.png');
  left: auto;
}
#mainContents .indexNav.slick .slick-next:hover {
  background-position: 41px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .indexNav.slick .slick-prev:hover {
  background-position: -41px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .indexNav.slick .slick-next:before ,
#mainContents .indexNav.slick .slick-prev:before {
  display: none;
}
@media only screen and (min-width: 1424px){
  #mainContents .indexNav.slick .slick-next {
    right: -57px;
  }
  #mainContents .indexNav.slick .slick-prev {
    left: -32px;
  }
}
@media only screen and (max-width: 768px){
  #mainContents .indexNav.slick {
    margin-left: -5.333333333333333vmin;
    margin-right: -5.333333333333333vmin;
    margin-bottom: -10px;
  }
  #mainContents .indexNav.slick > div {
    margin-bottom: 0;
  }
  #mainContents .indexNav.slick .slick-item {
    width: 42.666666666666667vmin !important;
    border-radius: 0.8vmin;
    margin: 0 0 10px;
  }
  #mainContents .indexNav.slick .slick-dots ,
  #mainContents .indexNav.slick .slick-arrow {
    display: none !important;
  }
  #mainContents .indexNav.slick .body {
    height: 4.714285714285713em;
    overflow: hidden;
    margin: 2.133333333333333vmin 3.2vmin 4.266666666666667vmin;
    font-size: 3.733333333333333vmin;
    line-height: 1.571428571428571;
  }
}
#mainContents .newsListPanel {
  overflow: hidden;
  color: #2d2d2e;
  display: block;
  border: 1px solid #CDD0D4;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
}
.ua-pc #mainContents a.newsListPanel:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents a.newsListPanel:after {
  display: none;
}
#mainContents .newsListPanel + .newsListPanel {
  margin-top: 24px;
}
#mainContents .newsListPanel .head {
  padding: 4px 16px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.msie #mainContents .newsListPanel .head {
  font-weight: 600;
}
#mainContents .newsListPanel .bodyBox {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#mainContents .newsListPanel .bodyBox > * {
  display: table-cell;
  vertical-align: top;
}
#mainContents .newsListPanel .bodyBox .imageBox {
  position: relative;
  width: 31.189710610932476%;
  overflow: hidden;
}
#mainContents .newsListPanel .bodyBox .imageBox:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: 58.258258258258258%;
}
#mainContents .newsListPanel .bodyBox .imageBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-width: 101%;
  min-width: 100.5%;
  min-height: 100.5%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
.ua-pc #mainContents  a.newsListPanel:hover .bodyBox .imageBox img {
  -webkit-transform: translate(-50%,-50%) scale(1.08);
  transform        : translate(-50%,-50%) scale(1.08);
}
#mainContents .newsListPanel .bodyBox .imageBox img {
  width: 100%;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .newsListPanel .bodyBox .imageBox + div {
  padding: 16px 16px 40px 16px;
  position: relative;
}
#mainContents .newsListPanel .bodyBox .cptn {
  font-size: 1.3rem;
  line-height: 1.5;
}
#mainContents .newsListPanel .bodyBox .body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 8px 0;
}
.msie #mainContents .newsListPanel .bodyBox .body {
  font-weight: 600;
}
#mainContents .newsListPanel .bodyBox .time {
  position: absolute;
  right: 16px;
  bottom: 16px;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7C7E80;
}
#mainContents .newsListPanel .tag {
  background-color: #F5F6F7;
  padding: 16px 16px 8px;
}
#mainContents .newsListPanel .tag > span {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px){
  #mainContents .newsListPanel {
    border-radius: 0.8vmin;
  }
  #mainContents .newsListPanel + .newsListPanel {
    margin-top: 5.333333333333333vmin;
  }
  #mainContents .newsListPanel .head {
    padding: 1.066666666666667vmin 4.266666666666667vmin;
    font-size: 3.2vmin;
  }
  #mainContents .newsListPanel .bodyBox {
    display: block;
  }
  #mainContents .newsListPanel .bodyBox .imageBox ,
  #mainContents .newsListPanel .bodyBox > * {
    display: block;
    width: 100%;
  }
  #mainContents .newsListPanel .bodyBox .imageBox + div {
    padding: 4.266666666666667vmin;
  }
  #mainContents .newsListPanel .bodyBox .cptn {
    font-size: 3.466666666666667vmin;
  }
  #mainContents .newsListPanel .bodyBox .body {
    font-size: 3.733333333333333vmin;
    margin: 2.133333333333333vmin 0 4.266666666666667vmin;
  }
  #mainContents .newsListPanel .bodyBox .time {
    position: static;
    font-size: 3.2vmin;
  }
}

/* table */
#mainContents .tbl_area {
  position:relative;
}
#mainContents .tbl_wrapper {
  overflow-y: auto;
  overflow-x: none;
  /*-webkit-overflow-scrolling: touch;*/
}
#mainContents [class*="tbl_type"] {
  width: 100%;
  border-spacing: 0;
}
#mainContents [class*="tbl_type"] a:after {
  display: none;
}
#mainContents [class*="tbl_type"] a[target="_blank"]:after {
  display: inline-block;
}
#mainContents [class*="tbl_type"] thead tr > * {
  text-align: center;
}
#mainContents [class*="tbl_type"] th ,
#mainContents [class*="tbl_type"] td {
  padding:0;
  border: 1px solid #CDD0D4;
  vertical-align:top;
  padding: 16px;
  /*! text-align: left; */
  font-size: 1.4rem;
  line-height: 1.75;
}
#mainContents [class*="tbl_type"] th {
  font-weight: 500;
  background-color: #FAF7FA;
  white-space: nowrap;
}
.msie #mainContents [class*="tbl_type"] th {
  font-weight: 600;
}
#mainContents [class*="tbl_type"] thead tr > * {
  vertical-align: middle;
}
#mainContents .tbl_type01 tr > * {
  border-right: none;
  border-left: none;
}
#mainContents [class*="tbl_type"] td .min-width ,
#mainContents [class*="tbl_type"] td p {
  min-width: 10em;
}
#mainContents [class*="tbl_type"] td a[href$=".pdf"]:after {
  margin-top: 0;
  margin-bottom: 0;
}
#mainContents .tbl_type02 {
  /*! table-layout: fixed; */
}
#mainContents .tbl_type03 tbody th ,
#mainContents .tbl_type01 tbody th {
  width: 25%;
}
#mainContents .tbl_type04 tr > *:nth-child(odd) {
  width: 85px;
  text-align: center;
  white-space: nowrap;
}
#mainContents .tbl_type04 tr > *:nth-child(even) {
  vertical-align: middle;
}
#mainContents .tbl_type04 tbody tr:nth-child(even) > * {
  background-color: #FAFAFB;
}
#mainContents .tbl_type05 thead tr > * {
  white-space: nowrap;
}
#mainContents .tbl_type05 td {
  text-align: center;
}
#mainContents .tbl_type05.al td {
  text-align: left;
}
#mainContents .tbl_type05 thead tr > *:first-child ,
#mainContents .tbl_type05 tbody th {
  white-space: nowrap;
  text-align: center;
  position: -webkit-sticky;
  position:         sticky;
  left: 0;
  border: 1px solid transparent;
  background-color: transparent;
  z-index: 1;
}
#mainContents .tbl_type05 thead tr > *:first-child:before ,
#mainContents .tbl_type05 tbody th:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px solid #CDD0D4;
  background-color: #FAF7FA;
}
.edge #mainContents .tbl_type05 thead tr > *:first-child ,
.edge #mainContents .tbl_type05 tbody th ,
.firefox #mainContents .tbl_type05 thead tr > *:first-child ,
.firefox #mainContents .tbl_type05 tbody th {
  left: 1px;
}
.edge #mainContents .tbl_type05 thead tr > *:first-child:before ,
.edge #mainContents .tbl_type05 tbody th:before ,
.firefox #mainContents .tbl_type05 thead tr > *:first-child:before ,
.firefox #mainContents .tbl_type05 tbody th:before {
  margin-left: 0;
}
#mainContents .tbl_type05.none-th-event thead tr > *:first-child ,
#mainContents .tbl_type05.none-th-event tbody th {
  position: static;
  border: 1px solid #CDD0D4;
  background-color: #FAF7FA;
}
#mainContents [class*="tbl_type"].rvs_color tbody tr:nth-child(even) > * {
  background-color: #FAFAFB;
}
#mainContents [class*="tbl_type"].rvs_color tbody tr:nth-child(even) > th {
  background-color: #FAF7FA;
}
#mainContents .tbl_type06 td {
  vertical-align: middle;
}
#mainContents [class*="tbl_type"] td.vt {
  vertical-align: top;
}
#mainContents [class*="tbl_type"] td.vm {
  vertical-align: middle;
}
#mainContents [class*="tbl_type"] td.vb {
  vertical-align: bottom;
}
#mainContents [class*="tbl_type"] td.vd {
  vertical-align: baseline;
}
#mainContents .nowrap[class*="tbl_type"] th ,
#mainContents .nowrap[class*="tbl_type"] td {
  white-space: nowrap;
}
#mainContents .tbl_type07 tr > *:first-child ,
#mainContents .tbl_type05 tr > *:first-child {
  min-width: 10em;
}
#mainContents .tbl_type00 tr > * ,
#mainContents .tbl_type00 {
  border: none;
  background-color: transparent;
  line-height: 2;
}
#mainContents .tbl_type00 tr > th ,
#mainContents .tbl_type00 tr > td {
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}
#mainContents .tbl_type00 tr > th {
  padding-left: 0;
}
@media only screen and (max-width: 768px){
  #mainContents .tbl_wrapper {
    -webkit-overflow-scrolling: auto;
  }
  #mainContents .tbl_wrapper::-webkit-scrollbar {
    background: #eee;
    /*border-radius: 2.133333333333333vmin;*/
    height: 2.133333333333333vmin;
  }
  #mainContents .tbl_wrapper::-webkit-scrotlbar:horizontal {
    border-radius: 2.133333333333333vmin;
    height: 2.133333333333333vmin;
  }
  #mainContents .tbl_wrapper::-webkit-scrollbar-button {
    display:none;
  }
  #mainContents .tbl_wrapper::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 2.133333333333333vmin;
    background: rgba(205,208,212,0.9);
    height: 2.133333333333333vmin;
  }
  #mainContents .tbl_wrapper::-webkit-scrollbar-corner {
    overflow:hidden;
    border-radius: 2.133333333333333vmin;
    background: transparent;
  }
  #mainContents [class*="tbl_type"] th ,
  #mainContents [class*="tbl_type"] td {
    padding: 3.2vmin;
    font-size: 3.2vmin;
  }
  #mainContents .tbl_type02 {
    table-layout: auto;
  }
  #mainContents [class*="tbl_type"] th {
    white-space: nowrap;
  }
  #mainContents .tbl_type04 tr > :nth-child(2n+1) {
    width: 85px;
    text-align: center;
    white-space: nowrap;
  }
  #mainContents .tbl_type05 thead tr > :first-child ,
  #mainContents .tbl_type05 tbody th {
    left: 1px;
  }
  .chrome #mainContents .tbl_type05 thead tr > *:first-child ,
  .chrome #mainContents .tbl_type05 tbody th ,
  .safari #mainContents .tbl_type05 thead tr > *:first-child ,
  .safari #mainContents .tbl_type05 tbody th {
    left: 0;
  }
  .chrome #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .chrome #mainContents .tbl_type05 tbody th:before ,
  .safari #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .safari #mainContents .tbl_type05 tbody th:before {
    margin-left: 0;
  }
  .chrome #mainContents .tbl_type05 thead tr > *:first-child ,
  .safari #mainContents .tbl_type05 thead tr > *:first-child {
      left: 0;
  }
  .chrome #mainContents .tbl_type05 tbody th ,
  .safari #mainContents .tbl_type05 tbody th {
    left: 0;
  }
  .chrome #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .chrome #mainContents .tbl_type05 tbody th:before ,
  .safari #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .safari #mainContents .tbl_type05 tbody th:before {
      margin-right: -1px;
  }
  .chrome #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .chrome #mainContents .tbl_type05 tbody th:before ,
  .safari #mainContents .tbl_type05 thead tr > *:first-child:before ,
  .safari #mainContents .tbl_type05 tbody th:before {
      margin-right: -1px;
  }
  .safari #mainContents .tbl_type05 thead tr > [colspan="2"]:first-child:before {
    margin-right: -2px;
  }
  #mainContents .tbl_type06 thead {
    display: none;
  }
  #mainContents .tbl_type06 tbody td ,
  #mainContents .tbl_type06 tbody th ,
  #mainContents .tbl_type06 tbody ,
  #mainContents .tbl_type06 {
    display: block;
  }
  #mainContents .tbl_type06 tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
  #mainContents .tbl_type06.rvs_color tbody tr:nth-child(even) > * {
    background-color: transparent;
  }
  #mainContents .tbl_type06.rvs_color tbody tr > td:nth-child(even) {
    background-color: #FAFAFB;
  }
  #mainContents .tbl_type06 tbody tr td {
    width: 100%;
  }
  #mainContents .tbl_type06 tbody tr td:first-child {
    position: relative;
    text-align: left;
    font-size: 4.8vmin;
    padding: 0;
    padding-bottom: 0.583333333333333em;
    margin: 0 0 4.266666666666667vmin;
    border: none;
  }
  #mainContents .tbl_type06 tbody tr + tr td:first-child {
    margin-top: 9.6vmin;
    background-color: transparent !important;
  }
  #mainContents .tbl_type06 tbody tr td:first-child:before ,
  #mainContents .tbl_type06 tbody tr td:first-child:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #CDD0D4;
  }
  #mainContents .tbl_type06 tbody tr td:first-child:after {
    width: 30%;
    background: #5D0F84;
    background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
  }
  #mainContents .tbl_type06 tbody tr td:first-child br {
    display: none;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] {
    display: table;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] + td[data-text] {
    border-top: 0;
  }
  #mainContents .tbl_type06 tbody tr td[data-text]:before {
    content: attr(data-text);
    width: 23.6vmin;
    display: inline-block;
    background-color: #FAF7FA;
    text-align: center;
    border-right: 1px solid #CDD0D4;
    padding: 5.333333333333333vmin 0;
    vertical-align: middle;
    display: table-cell;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] > * {
    padding: 5.333333333333333vmin 4.266666666666667vmin;
    display: table-cell;
    text-align: left;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] .button.action01 {
    width: 100%;
    text-align: center;
    display: block;
    min-height: 13.333333333333333vmin;
    position: relative;
    display: -webkit-inline-flex;
    display:         inline-flex;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] .button.action01 span {
    width: 100%;
    font-size: 3.2vmin;
  }
  #mainContents .tbl_type06 tbody tr td[data-text] .button.action01 i {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 26px;
    height: 26px;
    background-color: #F5F2F5;
    border-radius: 50%;
    background-image: url('/assets/images/top/icon-btn-ppl.svg');
    background-size: contain;
    background-position: 0 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: none;
    transition: none;
  }
}

/* 記事 */
#mainContents.elm_news .kv img {
  width: 100%;
  margin: 0;
}
#mainContents.elm_news .showBox {
  padding: 32px;
}
#mainContents.elm_news p {
  line-height: 2;
}
#mainContents.elm_news img {
  margin-top: 24px;
  margin-bottom: 24px;
}
#mainContents.elm_news figure {
  margin-top: 24px;
  margin-bottom: 24px;
}
#mainContents.elm_news i img ,
#mainContents.elm_news figure img {
  margin: 0;
}
#mainContents.elm_news figure img + figcaption {
  margin-top: 8px;
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.6;
}
#mainContents.elm_news .clm04 img ,
#mainContents.elm_news .clm03 img ,
#mainContents.elm_news .clm02 img {
  margin: 0;
}
#mainContents.elm_news a {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (max-width: 768px){
  #mainContents.elm_news .showBox {
    padding: 10.666666666666667vmin 5.333333333333333vmin;
  }
  #mainContents.elm_news p {
    line-height: 1.75;
  }
  #mainContents.elm_news img {
    margin-top: 6.4vmin;
    margin-bottom: 6.4vmin;
  }
}

/* colorlist */
.color_list div.type02 {
  margin-top: 40px;
  white-space: nowrap;
}
.color_list div.type02 + .type02 {
  margin-top: 0;
}
.color_list div.type02 ul {
  display: inline-block;
  vertical-align: top;
  width: 310px;
}
.color_list div.type02 ul {
  display: inline-block;
  vertical-align: top;
}
.color_list div.type02 li {
  margin-top: 12px;
}
.color_list ul {
  white-space: nowrap;
}
.color_list li {
  width: 80px;
  height: 80px;
  margin: 24px 0 0 24px !important;
  vertical-align: middle;
}
.color_list li.text {
  height: auto;
}
.color_list li.type01 {
  display: inline-block;
  width: auto;
  letter-spacing: -0.4em;
  margin-left: 46px !important;
}
.color_list li li {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  margin: 0 !important;
}
.bkclr-black-01 {
  background: #2D2D2E;
}
.bkclr-black-02 {
  background: #7C7E80;
}
.bkclr-black-03 {
  background: #D2D4D8;
}
.bkclr-black-04 {
  background: #F5F6F7;
}
.bkclr-ppl-01 {
  background: #760B76;
}
.bkclr-ppl-02 {
  background: #840D84;
}
.bkclr-ppl-03 {
  background: #B56DB5;
}
.bkclr-ppl-04 {
  background: #E6CEE6;
}
.bkclr-ppl-05 {
  background: #FAF7FA;
}
.bkclr-ppl-06 {
  background: #FFFAFF;
}
.bkclr-blue-01 {
  background: #2F47AA;
}
.bkclr-blue-02 {
  background: #3855CD;
}
.bkclr-blue-03 {
  background: #8799E1;
}
.bkclr-blue-04 {
  background: #D7DDF5;
}
.bkclr-lblue-01 {
  background: #22A6B8;
}
.bkclr-lblue-02 {
  background: #26B9CD;
}
.bkclr-lblue-03 {
  background: #7CD5E1;
}
.bkclr-lblue-04 {
  background: #D3F1F5;
}
.bkclr-green-01 {
  background: #2FAA6F;
}
.bkclr-green-02 {
  background: #35BE7C;
}
.bkclr-green-03 {
  background: #85D8B0;
}
.bkclr-green-04 {
  background: #D6F2E4;
}
.bkclr-red-01 {
  background: #E32828;
}
.bkclr-red-02 {
  background: #FD2D2D;
}
.bkclr-red-03 {
  background: #FD8181;
}
.bkclr-red-04 {
  background: #FED5D5;
}
.bkclr-button-01 {
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
}
.bkclr-button-02 {
  background-image: -webkit-linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
  background-image:    -moz-linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
  background-image:         linear-gradient(-135deg, #FFF7FF 0%, #FFFCFF 100%);
}
.bkclr-handoutai {
  background: -webkit-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background:    -moz-linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
  background:         linear-gradient(135deg, #6542B4 0%, #9C4BD9 100%);
}
.bkclr-network {
  background: -webkit-linear-gradient(-45deg, #3298CE 0%, #4A55C5 100%);
  background:    -moz-linear-gradient(-45deg, #3298CE 0%, #4A55C5 100%);
  background:         linear-gradient(-45deg, #3298CE 0%, #4A55C5 100%);
}
.bkclr-iot {
  background: -webkit-linear-gradient(-45deg, #24C2C9 0%, #1889B8 100%);
  background:    -moz-linear-gradient(-45deg, #24C2C9 0%, #1889B8 100%);
  background:         linear-gradient(-45deg, #24C2C9 0%, #1889B8 100%);
}
.bkclr-robot {
  background: -webkit-linear-gradient(135deg, #239E2C 0%, #17C583 100%);
  background:    -moz-linear-gradient(135deg, #239E2C 0%, #17C583 100%);
  background:         linear-gradient(135deg, #239E2C 0%, #17C583 100%);
}
.bkclr-car {
  background: -webkit-linear-gradient(-45deg, #B7D23B 0%, #69B241 100%);
  background:    -moz-linear-gradient(-45deg, #B7D23B 0%, #69B241 100%);
  background:         linear-gradient(-45deg, #B7D23B 0%, #69B241 100%);
}
.bkclr-health {
  background: -webkit-linear-gradient(135deg, #DC9818 0%, #D6D21E 100%);
  background:    -moz-linear-gradient(135deg, #DC9818 0%, #D6D21E 100%);
  background:         linear-gradient(135deg, #DC9818 0%, #D6D21E 100%);
}
.bkclr-energie {
  background: -webkit-linear-gradient(135deg, #D5643C 0%, #F3A443 100%);
  background:    -moz-linear-gradient(135deg, #D5643C 0%, #F3A443 100%);
  background:         linear-gradient(135deg, #D5643C 0%, #F3A443 100%);
}
.bkclr-macnica {
  background: -webkit-linear-gradient(-45deg, #F16391 0%, #D92A2A 100%);
  background:    -moz-linear-gradient(-45deg, #F16391 0%, #D92A2A 100%);
  background:         linear-gradient(-45deg, #F16391 0%, #D92A2A 100%);
}
.bkclr-gr-gray {
  background: -webkit-linear-gradient(135deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background:    -moz-linear-gradient(135deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background:         linear-gradient(135deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
}

/* googlemap */
.googlemap {
  position: relative;
  margin-top: 16px;
}
.googlemap:before {
  content: '';
  display: block;
  padding-top: 66.666666666666667%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px){
  .googlemap.baidu {
    overflow: auto;
    -webkit-overflow-scrolling: touch; /*-- これが重要っぽい --*/
    overflow-scrolling        : touch; /*-- これも重要そう --*/
  }
  .googlemap.baidu:before {
    content: '';
    display: block;
    padding-top: 150%;
  }
  .googlemap.baidu iframe {
    width: 200%;
    max-width: 100%;
    display: inline-block !important;
  }
}

/* autoplay_slick */
#mainContents .autoplay_slick > div + div ,
#mainContents .autoplay_slick a:after {
  display: none;
}
#mainContents .autoplay_slick > .slick-item ,
#mainContents .autoplay_slick .slick-slide {
  position: relative;
  max-width: 960px;
  width: -webkit-calc(100vw - 336px);
  width:         calc(100vw - 336px);
  cursor: pointer;
}
#mainContents .autoplay_slick > .slick-item:after ,
#mainContents .autoplay_slick .slick-slide:after {
  content: '';
  display: block;
  padding-top: 46.875%;
}
#mainContents .autoplay_slick > .slick-item > * ,
#mainContents .autoplay_slick .slick-slide > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#mainContents .autoplay_slick > .slick-item div ,
#mainContents .autoplay_slick > .slick-item a ,
#mainContents .autoplay_slick .slick-slide div ,
#mainContents .autoplay_slick .slick-slide a {
  display: block !important;
  height: 100%;
  overflow: hidden;
}
#mainContents .autoplay_slick > .slick-item img ,
#mainContents .autoplay_slick .slick-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-width: 100.5%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%) scale(1.01);
  transform        : translate(-50%,-50%) scale(1.01);
}
#mainContents .autoplay_slick .slick-slide a ,
#mainContents .autoplay_slick .slick-slide a img ,
#mainContents .autoplay_slick .slick-slide img {
  display: block;
  width: 100%;
}
#mainContents .autoplay_slick .slick-slide:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: #000000;
}
#mainContents .autoplay_slick .slick-slide.slick-active {
  cursor: auto;
}
#mainContents .autoplay_slick .slick-slide.slick-active:before {
  opacity: 0;
  -webkit-transition: all 0s linear 550ms;
  transition        : all 0s linear 550ms;
}
#mainContents .autoplay_slick .slick-slide.slick-active a {
  position: relative;
  z-index: 1;
}
#mainContents .autoplay_slick .slick-slide.slick-active a img {
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%) scale(1.01);
  transform        : translate(-50%,-50%) scale(1.01);
}
.ua-pc #mainContents .autoplay_slick .slick-slide.slick-active a:hover img {
  -webkit-transform: translate(-50%,-50%) scale(1.025);
  transform        : translate(-50%,-50%) scale(1.025);
}
#mainContents .autoplay_slick .slick-slide a:after {
  display: none;
}
#mainContents .autoplay_slick .slick-dotted.slick-slider {
  margin-bottom: 20px;
}
#mainContents .autoplay_slick + .slickNav {
  text-align: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  opacity: 0;
}
#mainContents .autoplay_slick.slick-slider + .slickNav{
  opacity: 1;
}
#mainContents .autoplay_slick + .slickNav .arrows-appendDots {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 2px;
  height: 2px;
}
#mainContents .autoplay_slick + .slickNav .slick-prev {
  left: -20px;
  top: 0;
}
#mainContents .autoplay_slick + .slickNav .slick-prev:before {
  content: '';
  display: block;
  width: 7px;
  height: 11px;
  background-image: url('/assets/images/top/slide_btn_prv.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#mainContents .autoplay_slick + .slickNav .slick-next {
  right: -31px;
  top: 0;
}
#mainContents .autoplay_slick + .slickNav .slick-next:before {
  content: '';
  display: block;
  width: 7px;
  height: 11px;
  background-image: url('/assets/images/top/slide_btn_nxt.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#mainContents .autoplay_slick + .slickNav .slick-dots {
  position: relative;
  left: 50%;
  bottom: 1px;
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 2px;
  -webkit-transform: translateX(-50%);
  transform        : translateX(-50%);
}
#mainContents .autoplay_slick + .slickNav .slick-dots li + li ,
#mainContents .autoplay_slick + .slickNav .slick-dots li {
  width: 50px;
  height: 2px;
  margin: 0 10px;
  line-height: 2px;
  vertical-align: top;
}
#mainContents .autoplay_slick + .slickNav .slick-dots li button {
  width: 50px;
  height: 2px;
  padding: 0;
  line-height: 2px;
}
#mainContents .autoplay_slick + .slickNav .slick-dots li button:before {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #ABC5D1;
  line-height: 2px;
  opacity: 1;
}
#mainContents .autoplay_slick + .slickNav .slick-dots li button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #832393;
  line-height: 2px;
  opacity: 1;
}
#mainContents .autoplay_slick + .slickNav.autoplay li.slick-active button:after {
  width: 100%;
  -webkit-transition: all 5s linear;
  transition        : all 5s linear;
}
#mainContents .autoplay_slick + .slickNav.slickPause li.slick-active button:after {
  width: 0;
  -webkit-transition: all 0s linear;
  transition        : all 0s linear;
}
#mainContents .autoplay_slick + .slickNav .slickPlayToggle {
  position: absolute;
  left: 17px;
  -webkit-transform: translateX(-50%);
  transform        : translateY(-50%);
  cursor: pointer;
}
#mainContents .autoplay_slick + .slickNav .slickPlayToggle .slickPause {
  display: block;
  width: 8px;
  height: 9px;
  background-image: url('/assets/images/top/slide_btn_stp.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#mainContents .autoplay_slick + .slickNav .slickPlayToggle .slickPlay {
  display: none;
  width: 7px;
  height: 11px;
  background-image: url('/assets/images/top/slide_btn_ply.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#mainContents .autoplay_slick + .slickNav .slickPlayToggle.slickPause .slickPause {
  display: none;
}
#mainContents .autoplay_slick + .slickNav .slickPlayToggle.slickPause .slickPlay {
  display: block;
}
/* slide 1枚のみ */
#mainContents .autoplay_slick.no-slide > .slick-item {
  max-width: none;
  text-align: center;
  cursor: auto;
}
#mainContents .autoplay_slick.no-slide > .slick-item img {
  position: static;
  display: inline;
  max-width: 1024px;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: auto;
  -webkit-transform: translate(0) scale(1);
  transform        : translate(0) scale(1);
  object-fit: fill;
  font-family: '';
}
#mainContents .autoplay_slick.no-slide > .slick-item * {
  position: static;
}
#mainContents .autoplay_slick.no-slide > .slick-item:after {
    display: none;
}
#mainContents .autoplay_slick.no-slide + .slickNav {
  display: none;
}
#mainContents .autoplay_slick.no-slide .image-innertext-kv {
  position: relative;
  z-index: 0;
  background-size: 1600px auto;
  background-position: center;
  overflow: hidden;
}
#mainContents .autoplay_slick.no-slide .image-innertext-kv:before {
  content: '';
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background: inherit;
  filter: blur(30px);
  /* position:absoluteのせいで最前面に来てしまうため */
  z-index: -1;
}
@media only screen and (max-width: 768px){
  #mainContents .autoplay_slick + .slickNav {
    height: 2px;
  }
  #mainContents .autoplay_slick + .slickNav .slickPlayToggle .slickPause {
    width: 2.133333333333333vmin;
    height: 2.4vmin;
  }
  #mainContents .autoplay_slick + .slickNav .slick-dots li + li ,
  #mainContents .autoplay_slick + .slickNav .slick-dots li {
    width: 8.533333333333333vmin;
    margin: 0 1.066666666666667vmin;
  }
  #mainContents .autoplay_slick + .slickNav .slick-dots li button {
    width: 8.533333333333333vmin;
  }
  #mainContents .autoplay_slick + .slickNav .slick-dots li button::before {
    width: 8.533333333333333vmin;
  }
  #mainContents .autoplay_slick + .slickNav .slick-next:before ,
  #mainContents .autoplay_slick + .slickNav .slick-prev:before {
    width: 1.466666666666667vmin;
    height: 2.4vmin;
  }
  #mainContents .autoplay_slick .slick-slide {
    width: 100vw;
  }
  #mainContents .autoplay_slick.slick-dotted.slick-slider {
    margin-bottom: 4.266666666666667vmin;
  }
  #mainContents .autoplay_slick > .slick-item {
    width: 100%;
  }
}

/* news */
#mainContents .colo-ppl {
  color: #840D84;
}
#mainContents .thumbnail {
  margin-bottom: 32px;
}
#mainContents .thumbnail + .news {
  margin-top: 32px;
}
#mainContents .tbl_area + .news {
  margin-top: 40px;
}
#mainContents .news + .colo-ppl {
  margin-top: 16px;
}

/* sc */
#mainContents .sc_25_type01 {
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  padding: 0 24px 24px;
}
#mainContents .sc_25_type01_row01 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.052631578947368;
  padding: 1em 0;
  border-bottom: 2px solid #D2D2D2;
}
.msie #mainContents .sc_25_type01_row01 {
  font-weight: 600;
}
#mainContents .sc_25_type01_row01 i {
  display: inline-block;
  vertical-align: baseline;
  width: 30px;
  margin-right: 8px;
  line-height: 30px;
}
#mainContents .sc_25_type01_row02 {
  margin-top: 14px;
  line-height: 2;
}
#mainContents .sc_25_type01 .clm02 > div {
  	background-color: #F5F6F7;
  padding: 16px 24px 32px;
}
#mainContents .sc_25_type01 .clm02 > div a {
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}
#mainContents .sc_25_type01 .clm02 > div p {
  line-height: 2;
}
#mainContents .sc_25_type01 .clm02 > div p {
  line-height: 2;
}
#mainContents .sc_25_type01 .button.action02 i {
  right: auto;
  left: 19.25px;
  width: 21px;
  height: 21px;
  background-image: url('/assets/images/sc/icon/comment.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#mainContents .sc_25_type01 .button.action02 i:before {
  display: none;
}
#mainContents .sc_25_type02 {
  letter-spacing: -0.4em;
}
#mainContents .sc_25_type02 > a {
  letter-spacing: normal;
  width: 33%;
  width: -webkit-calc((100% - 33px) / 3);
  width:         calc((100% - 33px) / 3);
  display: inline-block;
  vertical-align: top;
  text-align: center;
	border: 1px solid #CDD0D4;
  border-radius: 4px;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  overflow: hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents .sc_25_type02 > a:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .sc_25_type02 > a:after {
  display: none;
}
#mainContents .sc_25_type02 > a + a {
  margin-left: 16px;
}
#mainContents .sc_25_type02 > a > span {
  display: block;
}
#mainContents .sc_25_type02_row01 {
  padding-top: 24px;
  padding-top: 13.333333333333333%;
}
#mainContents .sc_25_type02_row01 img {
  width: 36px;
}
#mainContents .sc_25_type02_row02 {
  display: table;
  width: 100%;
  line-height: 1.285714285714286;
  color: #2D2D2E;
  margin-top: 8px;
  height: 2.571428571428572em;
}
#mainContents .sc_25_type02_row02 span {
  display: table-cell;
  vertical-align: middle;
}
#mainContents .sc_25_type02_row03 {
  position: relative;
  z-index: 0;
  text-align: left;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.230769230769231;
  padding: 10px 16px;
  padding: 5.555555555555556% 16px;
  margin-top: 24px;
  margin-top: 13.333333333333333%;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .sc_25_type02_row03:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transition: 250ms;
  background-color: #871d97;
  background: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background: -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background: linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
}
#mainContents .sc_25_type02_row03:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  margin: 0 !important;
  background: -webkit-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background: -moz-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background: linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
}
.ua-pc #mainContents  .sc_25_type02 a:hover .sc_25_type02_row03:before {
    opacity: 0;
}
#mainContents .sc_25_type02_row03 i {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 26px;
  height: 26px;
  background-color: #F5F2F5;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-ppl.svg');
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
}
#mainContents a[target="_blank"] .sc_25_type02_row03 i {
  background-image: url('/assets/images/element-list/icon/window_blk.png');
  background-size: 12px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.ua-pc #mainContents a:hover .sc_25_type02_row03 i {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents a[target="_blank"]:hover .sc_25_type02_row03 i {
  background-position: center;
}
.ua-pc #mainContents .sc_25_type02 a:hover > span {
  text-decoration: none;
}
@media only screen and (max-width: 768px){
  #mainContents .sc_25_type01 {
    border-radius: 0.8vmin;
    padding: 0 4.266666666666667vmin 4.266666666666667vmin;
  }
  #mainContents .sc_25_type01_row01 {
    position: relative;
    line-height: 1.5;
    padding: 5.333333333333333vmin 0 5.333333333333333vmin 21.333333333333333vmin;
    border-bottom: 1px solid #D2D2D2;
    font-size: 4.266666666666667vmin;
    text-align: left;
  }
  #mainContents .sc_25_type01_row01 i {
    position: absolute;
    left: 8.533333333333333vmin;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
    width: 9.557333333333333vmin;
  }
  #mainContents .sc_25_type01 .clm02 {
    margin: 4.266666666666667vmin 0 0;
  }
  #mainContents .sc_25_type01 .clm02 > div {
    padding: 5.333333333333333vmin 4.266666666666667vmin 8.533333333333333vmin;
    width: 100%;
  }
  #mainContents .sc_25_type01 .clm02 > div + div {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .sc_25_type01 .button.action02 ,
  #mainContents .sc_25_type01 .button.action01 {
    min-width: 0;
    width: 100%;
  }
  #mainContents .sc_25_type01 .button.action02 i {
    right: auto;
    left: 4.056140350877193vmin;
    width: 6.736842105263157vmin;
    height: 6.736842105263157vmin;
    background-image: url('/assets/images/sc/icon/comment.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #mainContents .sc_25_type02 > a {
    width: -webkit-calc((100% - 1px - 4vmin) / 2);
    width:         calc((100% - 1px - 4vmin) / 2);
  }
  #mainContents .sc_25_type02 > a + a {
    margin: 0;
  }
  #mainContents .sc_25_type02 > a:nth-child(even) {
    margin-left: 4vmin;
  }
  #mainContents .sc_25_type02 > a:nth-child(n + 3) {
    margin-top: 4vmin;
  }
  #mainContents .sc_25_type02_row01 {
    padding-top: 6.4vmin;
  }
  #mainContents .sc_25_type02_row02 {
    line-height: 1.269230769230769;
    margin-top: 2.133333333333333vmin;
  }
  #mainContents .sc_25_type02_row03 {
    font-size: 2.933333333333333vmin;
    line-height: 1.272727272727273;
    padding: 3.466666666666667vmin;
    margin-top: 6.4vmin;
  }
}

#mainContents .qaBox {
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  padding: 24px;
}
#mainContents .qaBox .qaBox_row01 {
  position: relative;
  padding-left: 76px;
  font-weight: 500;
}
.msie #mainContents .qaBox .qaBox_row01 {
  font-weight: 600;
}
#mainContents .qaBox .qaBox_row01 p {
  font-size: 2rem;
  line-height: 1.6;
}
#mainContents .qaBox .qaBox_row01:before {
  content: 'Q.';
  position: absolute;
  top: 0;
  left: 8px;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.484848484848485;
}
.msie #mainContents .qaBox .qaBox_row01:before {
  font-weight: 600;
}
#mainContents .qaBox .qaBox_row01 .cat {
  letter-spacing: -0.4em;
  margin-top: 8px;
}
#mainContents .qaBox .qaBox_row01 .cat span {
  border: 1px solid #2D2D2E;
  font-size: 1.2rem;

  line-height: 1.5;
  border-radius: 2em;
  padding: 0.208333333333334em 1em 0.375em 1em;
  display: inline-block;
  margin-right: 8px;
  margin-top: 8px;
  letter-spacing: normal;
}
#mainContents .qaBox .qaBox_row02 {
  position: relative;
  border-top: 1px solid #D2D2D2;
  margin-top: 24px;
  padding-top: 22px;
  padding-left: 76px;
}
#mainContents .qaBox .qaBox_row02:before {
  content: 'A.';
  position: absolute;
  top: 22px;
  left: 8px;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1.484848484848485;
}
.msie #mainContents .qaBox .qaBox_row02:before {
  font-weight: 600;
}
#mainContents .qaBox .qaBox_row02 p {
  font-size: 1.4rem;
  line-height: 1.75;
}
#mainContents .qaBox .qaBox_row02 p + p {
  margin-top: 1.75em;
}
@media only screen and (max-width: 768px){
  #mainContents .qaBox {
    border-radius: 0.533333333333333vmin;
    padding: 4.266666666666667vmin;
  }
  #mainContents .qaBox .qaBox_row02 ,
  #mainContents .qaBox .qaBox_row01 {
    padding-left: 11.733333333333333vmin;
    font-size: 4.266666666666667vmin;
    line-height: 1.59375;
  }
  #mainContents .qaBox .qaBox_row01 p {
    font-size: 4.266666666666667vmin;
    line-height: 1.59375;
  }
  #mainContents .qaBox .qaBox_row02 {
    padding-top: 4.266666666666667vmin;
    margin-top: 4.266666666666667vmin;
    border-width: 1px;
  }
  #mainContents .qaBox .qaBox_row02 p {
    line-height: 1.730769230769231;
    font-size: 3.466666666666667vmin;
  }
  #mainContents .qaBox .qaBox_row02 p + p {
    margin-top: 1.730769230769231em;
  }
  #mainContents .qaBox .qaBox_row02:before ,
  #mainContents .qaBox .qaBox_row01:before {
    font-size: 6.933333333333333vmin;
    line-height: 1.480769230769231;
  }
  #mainContents .qaBox .qaBox_row02:before {
    top: 4.266666666666667vmin;
  }
  #mainContents .qaBox .qaBox_row01 .cat span {
    font-size: 3.2vmin;
    line-height: 1.5;
    border-radius: 2em;
    padding: 0.208333333333334em 1em 0.375em 1em;
    display: inline-block;
    margin-right: 8px;
    margin-top: 8px;
    letter-spacing: normal;
  }
}

/* sc */
#mainContents .postMainImage {
  padding: 0;
}
#mainContents .postMainImage img {
  width: 100%;
}
#mainContents .image-innertext-kv + .bkclrGray ,
#mainContents .postMainImage + .bkclrGray {
  padding-top: 16px;
  padding-bottom: 16px;
}
#mainContents .image-innertext-kv + .bkclrGray ~ .bkclrGray {
  padding-top: 0;
  padding-bottom: 16px;
}
#mainContents .postNav {
  margin-top: 72px;
  padding: 16px 24px;
  background: #FFFAFF;
  border-radius: 2px;
  font-size: 1.4rem;
  line-height: 1.392857142857143;
}
#mainContents .postNav span {
  color: #2D2D2E;
  text-decoration: none !important;
}
#mainContents .postNav a:after {
  display: none;
}
#mainContents .postNav a.prev {
  position: relative;
  padding-left: 40px;
  display: inline-block;
  margin-left: -8px;
}
#mainContents .postNav a.prev:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-image: url('/assets/images/sc/postNavPrev.png');
  background-size: cover;
  background-position: center;
}
.ua-pc #mainContents .postNav a.prev:hover:before {
  background-position-x: -40px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .postNav a.next {
  position: relative;
  padding-right: 40px;
  display: inline-block;
  margin-right: -8px;
}
#mainContents .postNav a.next:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-image: url('/assets/images/sc/postNavNext.png');
  background-size: cover;
  background-position: center;
}
.ua-pc #mainContents .postNav a.next:hover:before {
  background-position-x: 40px;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
#mainContents .postNav a.list {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  margin-left: -8px;
}
#mainContents .postNav a.list:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background-image: url('/assets/images/sc/postNavRetern.png');
  background-size: cover;
  background-position: center;
  -webkit-transition: left 150ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : left 150ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #mainContents .postNav a.list:hover:before {
  left: -3px;
}
#mainContents .postNav.none-prev a.prev ,
#mainContents .postNav.none-next a.next {
  visibility: hidden;
}
@media only screen and (max-width: 768px){
  #mainContents .postNav {
    margin: 17.066666666666667vmin -5.333333333333333vmin 0;
    padding: 3.2vmin;
    border-radius: 0;
    font-size: 3.2vmin;
    line-height: 1;
  }
  #mainContents .postNav a.list {
    display: none;
  }
  #mainContents .postNav.none-prev.none-next {
    display: none;
  }
}
#mainContents .infoBox {
  background-color: #F5F6F7;
  border-radius: 2px;
  padding: 16px 24px;
  margin-top: 80px;
}
#mainContents .infoBox + .infoBox {
  margin-top: 48px;
}
#mainContents .infoBox-title {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1.777777777777778;
  padding: 0 0 16px 30px;
  border-bottom: 1px solid #CDD0D4;
  margin-bottom: 16px;
}
#mainContents .infoBox-title:after {
  display: none;
}
#mainContents .infoBox-title:before {
  background-color: transparent;
  width: 22px;
  height: 22px;
  background-image: url('/assets/images/element-list/icon/info.png');
  background-size: cover;
  background-repeat: no-repeat;
  top: 0.888888888888889em;
  margin-top: -11px;
}
#mainContents .infoBox-body ,
#mainContents .infoBox-body p {
  font-size: 1.3rem;
  line-height: 1.692307692307692;
}
#mainContents .infoBox-body p + p {
  margin-top: 16px;
}
#mainContents .infoBox-body .linkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -8px;
}
#mainContents .infoBox-body .linkBox > a {
  width: -webkit-calc((100% - 16px) / 2);
  width:         calc((100% - 16px) / 2);
  display: inline-block;
  vertical-align: top;
  border: 1px solid #CDD0D4;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
}
#mainContents .infoBox-body .linkBox > a:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
#mainContents .infoBox-body .linkBox > a:after {
  display: none;
}
#mainContents .infoBox-body .linkBox > a:nth-child(even) {
  margin-left: 16px;
}
#mainContents .infoBox-body .linkBox > a .imageBox {
  position: relative;
  overflow: hidden;
}
#mainContents .infoBox-body .linkBox > a .imageBox:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: 58.273381294964029%;
}
#mainContents .infoBox-body .linkBox > a .imageBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-width: 100.5%;
  min-width: 100%;
  min-height: 100.5%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}

.ua-pc #mainContents .infoBox-body .linkBox > a:hover .imageBox img {
    -webkit-transform: translate(-50%,-50%) scale(1.08);
    transform        : translate(-50%,-50%) scale(1.08);
}
#mainContents .infoBox-body .linkBox > a .text {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 16px;
  max-height: 3em;
  overflow: hidden;
}
.msie #mainContents .infoBox-body .linkBox > a .text {
  font-weight: 600;
}
@media only screen and (max-width: 768px){
  #mainContents .showBox .infoBox {
    margin-top: 21.333333333333333vmin;
    margin-right: -5.333333333333333vmin;
    margin-left: -5.333333333333333vmin;
    padding: 4.266666666666667vmin 5.333333333333333vmin;
  }
  #mainContents .showBox .infoBox + .infoBox {
    margin-top: 7.466666666666667vmin;
  }
  #mainContents .infoBox-title {
    font-size: 4.266666666666667vmin;
    line-height: 1.6;
    padding: 0 0 4.266666666666667vmin 8vmin;
    margin-bottom: 4.266666666666667vmin;
  }
  #mainContents .infoBox-title:before {
    background-color: transparent;
    width: 5.866666666666667vmin;
    height: 5.866666666666667vmin;
    top: 0.8em;
    margin-top: -2.933333333333334vmin;
  }
  #mainContents .infoBox-body ,
  #mainContents .infoBox-body p {
    font-size: 3.466666666666667vmin;
    line-height: 1.75;
  }
  #mainContents .infoBox-body p + p {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .infoBox-body .linkBox {
    margin-bottom: -4.266666666666667vmin;
  }
  #mainContents .infoBox-body .linkBox > a {
    width: -webkit-calc((100% - 4.266666666666667vmin) / 2);
    width:         calc((100% - 4.266666666666667vmin) / 2);
    border-radius: 0.8vmin;
    margin-bottom: 4.266666666666667vmin;
  }
  #mainContents .infoBox-body .linkBox > a .text {
    color: #333333;
    font-size: 3.733333333333333vmin;
    line-height: 1.6;
    margin: 2.133333333333333vmin 3.2vmin 4.266666666666667vmin;
    max-height: 4.8em;
  }
}
#mainContents form {
  counter-reset: anktBoxtitle;
}
#mainContents .anktBox {
  margin-top: 40px;
}
#mainContents .anktBox-title {
  font-size: 1.4rem;
  line-height: 1.857142857142857;
  counter-increment: anktBoxtitle;
  margin: 0 0 24px;
  padding: 0 0 0 40px;
}
#mainContents .anktBox-title:after {
  display: none;
}
#mainContents .anktBox-title:before {
  content: 'Q.' counter(anktBoxtitle);
  font-size: 1.8rem;
  line-height: 1.444444444444444;
  background-color: transparent;
  width: auto;
  top: 0;
  left: 0;
}
#mainContents .anktBox-body {
  padding-left: 40px;
}
#mainContents .anktMesses {
  margin-top: 40px;
  border-top: 1px solid #CDD0D4;
  padding-top: 40px;
}
@media only screen and (max-width: 768px){
  #mainContents .anktBox {
    margin-top: 9.6vmin;
  }
  #mainContents .anktBox-title {
    font-size: 3.466666666666667vmin;
    line-height: 1.75;
    padding-left: 8.666666666666667vmin;
    margin-bottom: 7.466666666666667vmin;
  }
  #mainContents .anktBox-title:before {
    font-size: 4vmin;
    line-height: 1.516666666666667;
  }
  #mainContents .anktBox-title .icon-required {
    margin-left: 0;
  }
  #mainContents .anktBox-body {
    padding-left: 0;
    text-align: center;
  }
  #mainContents .anktBox-body .clm02.radio ,
  #mainContents .anktBox-body .clm02.checkbox {
    display: inline-block;
    vertical-align: top;
    margin-top: 0 !important;
  }
  #mainContents .anktBox-body .clm02.radio > * ,
  #mainContents .anktBox-body .clm02.checkbox > * {
    text-align: left;
    display: block;
    margin: 0 0 8.533333333333333vmin;
  }
  #mainContents .anktMesses {
    margin-top: 9.6vmin;
    padding-top: 9.6vmin;
  }
}
#mainContents .privacyCheck {
  margin-top: 40px;
	border-top: 1px solid #CDD0D4;
  padding-top: 40px;
}
#mainContents .privacyCheck-title {
  font-weight: 500;
  line-height: 1.857142857142857;
  margin-bottom: 16px;
}
.msie #mainContents .privacyCheck-title {
  font-weight: 600;
}
#mainContents .privacyCheck-body {
  text-align: center
}
#mainContents .privacyCheck-body p + p {
  margin-top: 16px;
}
@media only screen and (max-width: 768px){
  #mainContents .privacyCheck {
    margin-top: 9.6vmin;
    padding-top: 9.6vmin;
  }
  #mainContents .privacyCheck-title {
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 7.466666666666667vmin;
  }
  #mainContents .privacyCheck-title .icon-required {
    margin: -0.375em 0 0 0;
  }
  #mainContents .privacyCheck-body p + p {
    margin-top: 7.466666666666667vmin;
  }
}
#mainContents .eventEndBox {
  background-color: rgba(230,231,232,0.99);
  background-image: -webkit-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:    -moz-linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);
  background-image:         linear-gradient(-134deg, rgba(230,231,232,0.99) 0%, #F5F6F7 100%);

}
#mainContents .eventEndBox p {
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.244444444444444;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 500;
}
.msie #mainContents .eventEndBox p {
  font-weight: 600;
}
@media only screen and (max-width: 768px){
  #mainContents .eventEndBox p {
    opacity: 1;
    font-size: 4.533333333333333vmin;
    line-height: 1.338235294117647;
    padding-top: 5.333333333333333vmin;
    padding-bottom: 5.333333333333333vmin;
    font-weight: 400;
  }
}
#mainContents .imageBox + p {
  margin-top: 24px;
}
#mainContents hr {
  border-color: #CDD0D4
}

/* ai */
#mainContents .imate-text-link-box {
  margin-top: 40px;
}
#mainContents .imate-text-link[target="_blank"] ,
#mainContents .imate-text-link {
  position: relative;
  display: table !important;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  letter-spacing: -0.4em;
  padding-right: 93px;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  border-radius: 4px;
  border: 1px solid #CDD0D4;
  margin-top: 16px;
  -webkit-transition: box-shadow 0.25s ease-out;
  transition        : box-shadow 0.25s ease-out;
}
#mainContents .imate-text-link:after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #2D2D2E;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  background-image: url('/assets/images/element-list/icon/mfg.png');
  background-size: 100%;
  background-position: 50%;
  background-repeat: repeat-x;
}
#mainContents .imate-text-link[target="_blank"]:after {
  width: 26px;
  height: 26px;
  background-image: url('/assets/images/element-list/icon/window_blc.png');
  background-size: 12px 11px;
  background-repeat: no-repeat;
}
#mainContents .imate-text-link.bottom-tag {
  display: block !important;
  margin-top: 40px;
}
#mainContents .imate-text-link.bottom-tag + .imate-text-link.bottom-tag {
  margin-top: 16px;
}
#mainContents .imate-text-link > * {
  display: table-cell;
  letter-spacing: normal;
  vertical-align: middle;
}
#mainContents .imate-text-link.bottom-tag > * {
  display: block;
}
#mainContents .imate-text-link.bottom-tag > .textBox {
  padding-top: 0;
  padding-bottom: 0;
}
#mainContents .imate-text-link .tagBox {
  margin: 0 24px 16px;
}
#mainContents .imate-text-link .imageBox {
  position: relative;
  width: 38.621794871794872%;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
}
#mainContents .imate-text-link .imageBox.border-right {
  border-right: 1px solid #CDD0D4;
}
#mainContents .imate-text-link .imageBox:before {
  content: '';
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
#mainContents .imate-text-link .imageBox img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  max-width: 100.5%;
  min-height: 100.5%;
  width: auto;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility        : hidden;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
#mainContents .imate-text-link .iconBox {
  position: relative;
  min-width: 112px;
  width: 17.628205128205128%;
  padding: 24px;
  overflow: hidden;
}
#mainContents .imate-text-link .textBox {
  color: #2D2D2E;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 24px 0 24px 24px;
  margin: 24px 0;
}
#mainContents .imate-text-link .textBox.pl0 {
  padding-left: 0;
}
#mainContents .imate-text-link .textBox .middle {
  font-size: 1.6rem;
  line-height: 1.5;
}
#mainContents .imate-text-link .textBox .middle02 {
  font-size: 1.4rem;
  line-height: 1.714285714285714;
  margin-top: 8px;
}
#mainContents .imate-text-link .imageBox + .textBox {
  width: -webkit-calc(100% - 38.621794871794872% - 1px);
  width:         calc(100% - 38.621794871794872% - 1px);
  margin: 0;
}
#mainContents .imate-text-link .textBox .small {
  font-size: 1.2rem;
  line-height: 1.583333333333333;
  margin-top: 8px;
}
#mainContents .imate-text-link .textBox .small[data-before="勤務地"] {
  position: relative;
  padding-left: 5.083333333333333em;
  margin-top: 12px;
}
#mainContents .imate-text-link .textBox .small[data-before="勤務地"]:before {
  content: attr(data-before);
  position: absolute;
  width: 4.416666666666667em;
  left: 0;
  top: 0.791666666666667em;
  text-align: center;
  background-color: #F5F6F7;
  padding: 4px 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
.ua-pc #mainContents .imate-text-link:hover .imageBox img {
    -webkit-transform: translate(-50%,-50%) scale(1.08);
    transform        : translate(-50%,-50%) scale(1.08);
}
.ua-pc #mainContents .imate-text-link:hover {
  box-shadow: 0px 0px 2px 0 rgba(0,0,0,0.05);
}
.ua-pc #mainContents .imate-text-link:hover:after {
  background-position: 24px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
.ua-pc #mainContents .imate-text-link[target="_blank"]:hover:after {
  background-position: 50%;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
@media only screen and (max-width: 768px){
  #mainContents .imate-text-link-box {
    margin-top: 9.6vmin;
  }
  #mainContents .imate-text-link .textBox .middle {
    font-size: 3.733333333333333vmin;
    line-height: 1.571428571428571;
  }
  #mainContents .imate-text-link .tagBox {
    margin: 0 15.466666666666667vmin 3.2vmin 4.266666666666667vmin;
  }
  #mainContents .imate-text-link[target="_blank"] ,
  #mainContents .imate-text-link {
    padding-right: 0;
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .imate-text-link[target="_blank"]:after ,
  #mainContents .imate-text-link:after {
    display: none;
  }
  #mainContents .imate-text-link .imageBox {
    width: 100%;
  }
  #mainContents .imate-text-link .imageBox.border-right {
    border-right: none;
    border-bottom: 2px solid #CDD0D4;
  }
  #mainContents .imate-text-link .textBox ,
  #mainContents .imate-text-link .imageBox + .textBox {
    position: relative;
    font-size: 4.8vmin;
    line-height: 1.578947368421053;
    margin: 0;
    padding: 4.266666666666667vmin 15.2vmin 4.266666666666667vmin 4.266666666666667vmin;
    min-height: 24vmin;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  #mainContents a.imate-text-link .textBox:after ,
  #mainContents a.imate-text-link .imageBox + .textBox:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 4.266666666666667vmin;
    width: 6.933333333333333vmin;
    height: 6.933333333333333vmin;
    border-radius: 50%;
    border: 1px solid #2D2D2E;
    -webkit-transform: translateY(-50%);
    transform        : translateY(-50%);
    background-image: url('/assets/images/element-list/icon/mfg.png');
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
  }
  #mainContents a.imate-text-link.bottom-tag .textBox {
    position: static;
  }
  #mainContents a.imate-text-link[target="_blank"] .imageBox + .textBox:after ,
  #mainContents a.imate-text-link[target="_blank"] .textBox:after {
    background-image: url('/assets/images/element-list/icon/window_blc.png');
    background-size: 3.2vmin;
  }
  #mainContents .imate-text-link .textBox p ,
  #mainContents .imate-text-link .imageBox + .textBox p {
    display: block;
    width: 100%;
  }
  #mainContents .imate-text-link .textBox span ,
  #mainContents .imate-text-link .imageBox + .textBox span {
    display: block;
  }
  #mainContents .imate-text-link .textBox .small  ,
  #mainContents .imate-text-link .imageBox + .textBox .small {
    font-size: 3.466666666666667vmin;
    line-height: 1.730769230769231;
    margin-top: 1.066666666666667vmin;
  }
  #mainContents .imate-text-link > * {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: middle;
  }
  #mainContents .imate-text-link .iconBox {
    position: relative;
    display: inline-block;
    min-width: 23.466666666666667vmin;
    width: 23.466666666666667vmin;
    padding: 4.266666666666667vmin;
    overflow: hidden;
  }
  #mainContents .imate-text-link .iconBox + .textBox {
    width: -webkit-calc(100% - 1px - 23.466666666666667vmin);
    width:         calc(100% - 1px - 23.466666666666667vmin);
    display: -webkit-inline-flex;
    display:         inline-flex;
  }
  #mainContents .imate-text-link .textBox .small[data-before="勤務地"] {
    margin-top: 4.266666666666667vmin;
    font-size: 3.2vmin;
    line-height: 1.583333333333333;
    padding-left: 17.733333333333333vmin;
    letter-spacing: 0.09px;
    word-wrap: break-word;
    word-break: normal;
  }
  #mainContents .imate-text-link .textBox .small[data-before="勤務地"]:before {
    padding: 1.066666666666667vmin 0;
    top: 50%;
    line-height: 1.875;
  }
}
#mainContents p.icon-check {
  position: relative;
  width: auto;
  font-size: 1.4rem;
  line-height: 1.75;
  padding-left: 30px;
  margin: 0;
}
#mainContents p.icon-check + .icon-check {
  margin-top: 16px;
}
#mainContents p.icon-check:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('/assets/images/ia/icon/check.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 1;
}
#mainContents a.icon-check {
  width: auto;
}
#mainContents a.icon-check span {
  position: relative;
  width: auto;
  margin: 0;
  padding-left: 1.971428571428571em;
  line-height: 1.75;
  margin: 8px 0;
}
@media only screen and (max-width: 768px){
  #mainContents p.icon-check {
    font-size: 3.466666666666667vmin;
    padding-left: 8vmin;
  }
  #mainContents p.icon-check:before {
    width: 6.4vmin;
    height: 6.4vmin;
  }
}

/* rc */
#mainContents .bigcaptionBox {
  background-color: #D8D8D8;
  color: #fff;
}
#mainContents .bigcaptionBox .table-cell {
  height: 320px;
  vertical-align: middle;
}
#mainContents .bigcaptionBox h2 {
  color: #fff;
  padding: 0;
  margin: 0;
  line-height: 1.583333333333333;
}
#mainContents .bigcaptionBox h2:before {
  display: none;
}
#mainContents .bigcaptionBox p {
  line-height: 1.714285714285714;
}
@media only screen and (max-width: 768px){
  #mainContents .bigcaptionBox .table-cell {
    height: 41.333333333333333vmin;
    padding: 6.4vmin 0;
  }
  #mainContents .bigcaptionBox h2 {
    font-size: 5.866666666666667vmin;
    line-height: 1.386363636363636;
  }
  #mainContents .bigcaptionBox p {
    margin-top: 2.133333333333333vmin;
    line-height: 1.730769230769231;
  }
}

/* colorbox */
#cboxOverlay {
  background-color: #0D0D0D !important;
}
#colorbox #cboxContent ,
#colorbox #cboxLoadingGraphic ,
#colorbox #cboxLoadedContent ,
#colorbox #cboxLoadingOverlay {
  background-color: #fff;
  background-image: none;
  border-radius: 3px;
  overflow: hidden;
}
#colorbox #cboxLoadedContent {
  padding: 0;
}
#colorbox #cboxClose {
  background-image: none;
  overflow: visible;
  top: 24px;
  right: 32px;
  color: #2D2D2E;
  font-size: 1.2rem;
  text-indent: 0;
  display: block;
  width: 30px;
  text-align: center;
  padding-top:32px;
}
#colorbox #cboxClose:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 42.4264068px;
  height: 2px;
  border-radius: 2px;
  background-color: #2D2D2E;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform        : translateX(-50%) rotate(-45deg);
}
#colorbox #cboxClose:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 42.4264068px;
  height: 2px;
  border-radius: 2px;
  background-color: #2D2D2E;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform        : translateX(-50%) rotate(45deg);
}
#colorbox .colorboxInnerBox {
  padding: 32px;
}
#colorbox .colorboxInnerBox .title {
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 0 62px 24px 0;
  font-weight: 500;
  border-bottom: 1px solid #CDD0D4;
}
.msie #colorbox .colorboxInnerBox .title {
  font-weight: 600;
}
#colorbox ul.circle li {
  position: relative;
  padding-left: 1em;
  line-height: 1.357142857142857;
  margin-top: 32px;
}
#colorbox ul.circle li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.9;
  background: #840D84;
  left: 0;
  top: 0.7em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
@media only screen and (max-width: 768px){
  #colorbox #cboxContent ,
  #colorbox #cboxLoadingGraphic ,
  #colorbox #cboxLoadedContent ,
  #colorbox #cboxLoadingOverlay {
    border-radius: 0.8vmin;
  }
  #colorbox #cboxClose {
    top: 3.2vmin;
    right: 4.266666666666667vmin;
    color: #2D2D2E;
    font-size: 2.666666666666667vmin;
    text-indent: 0;
    display: block;
    width: 6.533333333333333vmin;
    text-align: center;
    padding-top:7vmin;
  }
  #colorbox #cboxClose:before ,
  #colorbox #cboxClose:after {
    top: 3.92vmin;
    width: 120%;
  }
  #colorbox .colorboxInnerBox {
    padding: 5.333333333333333vmin 4.266666666666667vmin;
  }
  #colorbox .colorboxInnerBox .title {
    font-size: 4.266666666666667vmin;
    line-height: 1.46875;
    padding: 0 8.533333333333333vmin 4.266666666666667vmin 0;
  }
  #colorbox ul.circle li {
    margin-top: 5.333333333333333vmin;
  }
}

/* sc */
i.icon-mail {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  line-height: 0;
  margin-right: 8px;
}

/* #serch_option_modal */
#colorbox #serch_option_modal {
  display: block !important;
  padding: 32px 32px 40px 32px;
}
#colorbox #serch_option_modal #serchContetToggle ,
#colorbox #serch_option_modal .searchContent .row01 {
  display: none;
}
#colorbox #serch_option_modal .searchContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
#colorbox #serch_option_modal .searchContent .row02 ,
#colorbox #serch_option_modal .searchContent .row03 {
  display: inline-block;
  vertical-align: bottom;
}
#colorbox #serch_option_modal .searchContent .row03 {
  padding-right: 48px;
  font-size: 1.2rem;
  line-height: 1;
}
#colorbox #serch_option_modal .searchContent .row03 span {
  font-size: 333.333333333333333%;
  line-height: 1;
  display: inline-block;
  color: #840D84;
}
#colorbox #serch_option_modal .searchContent .row02 img.pc {
  width: 37px;
  vertical-align: middle;
  margin-right: 16px;
}
#colorbox #serch_option_modal .searchContent .row02 {
  font-size: 1.8rem;
}
#colorbox #serch_option_modal .searchContent .row04 {
  width: 100%;
}
#colorbox #serch_option_modal .searchContent .row04 dl {
  margin-top: 16px;
  letter-spacing: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #CDD0D4;
}
#colorbox #serch_option_modal .searchContent .row04 dl dt ,
#colorbox #serch_option_modal .searchContent .row04 dl dd {
  letter-spacing: normal;
  display: inline-block;
  border-top: 1px solid #CDD0D4;
  padding: 16px;
}
#colorbox #serch_option_modal .searchContent .row04 dl dt {
  width: 203px;
  background: #FAF7FA;
}
#colorbox #serch_option_modal .searchContent .row04 dl dd {
  width: -webkit-calc(100% - 204px);
  width:         calc(100% - 204px);

}
#colorbox #serch_option_modal .chrSearch {
  letter-spacing: -0.4em;
}
#colorbox #serch_option_modal .chrSearch ul {
  margin-bottom: -12px;
  margin-left: -12px;
}
#colorbox #serch_option_modal .chrSearch li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  text-align: center;
  width: -webkit-calc((100% - 157px) / 13);
  width:         calc((100% - 157px) / 13);
  margin: 0 0 12px 12px;
}
#colorbox #serch_option_modal .chrSearch li > * {
  border: 1px solid #E6CEE6;
  border-radius: 2px;
  -webkit-transition: all 200ms linear;
  transition        : all 200ms linear;
}
#colorbox #serch_option_modal .chrSearch li a:after {
  display: none;
}
#colorbox #serch_option_modal .chrSearch li > a:hover ,
#colorbox #serch_option_modal .chrSearch li.active > a {
  background: #75178F;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  border-color: transparent;
  color: #fff;
}
#colorbox #serch_option_modal .chrSearch li > * {
  position: relative;
  padding-top: 100%;
  display: block;
}
#colorbox #serch_option_modal .chrSearch li a {
  color: #840D84;
}
#colorbox #serch_option_modal .chrSearch li > * span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform        : translate(-50%,-50%);
}
.ua-pc #colorbox #serch_option_modal .chrSearch li > a:hover > span {
  text-decoration: none;
}
#colorbox #serch_option_modal .chrSearch li > span {
  background-color: #F5F6F7;
  color: #7C7E80;
  border-color: transparent;
}
#colorbox #serch_option_modal input[type="checkbox"] + span {
  font-size: 1.2rem;
  line-height: 1.6;
}
#colorbox #serch_option_modal input[type="checkbox"]:disabled + span {
  color: #7C7E80;
}
#colorbox #serch_option_modal input[type="checkbox"]:disabled + span:before {
  background-color: #F5F6F7;
  border-color: #F5F6F7;
}
#colorbox #serch_option_modal .checkboxArea {
  margin-bottom: -16px;
}
#colorbox #serch_option_modal .checkboxArea.background-color-F5F6F7 {
  background-color: #F5F6F7;
  margin-top: 16px;
  padding: 16px 16px 0;
  border-bottom: 1px solid #CDD0D4;
}
#colorbox #serch_option_modal .checkboxArea.background-color-F5F6F7 + label {
  margin-top: 32px;
}
#colorbox #serch_option_modal .checkboxArea label {
  position: relative;
  margin: 0 24px 16px 0;
}
#colorbox #serch_option_modal h3 {
  position: relative;
  font-size: 2rem;
  line-height: 1.6;
  padding-bottom: 0.5em;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 400;
}
#colorbox #serch_option_modal h3:before ,
#colorbox #serch_option_modal h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #CDD0D4;
}
#colorbox #serch_option_modal h3:after {
  width: 30%;
  background: #5D0F84;
  background-image: -webkit-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:    -moz-linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  background-image:         linear-gradient(-135deg, #5D0F84 0%, #871D97 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5D0F84', endColorstr='#871D97',GradientType=0 );
}
#colorbox #serch_option_modal label.block + label.block {
  border-top: 1px solid #CDD0D4;
  margin-top: 16px;
  padding-top: 16px;
}
#colorbox #serch_option_modal .submitButton {
  text-align: center;
  margin-top: 40px;
}
#colorbox #serch_option_modal .button.action01 {
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  min-width: 288px;
  height: 52px;
  border-radius: 3px;
  background: #871d97;
  box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.05);
  background: -webkit-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:    -moz-linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  background:         linear-gradient(-135deg, #871d97 0%, #5d0f84 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5d0f84', endColorstr='#871d97',GradientType=0 );
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.msie #colorbox #serch_option_modal .button.action01 {
  font-weight: 600;
}
#colorbox #serch_option_modal .button.action01 .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  padding: 0 3.846153846153846em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#colorbox #serch_option_modal .button.action01 i {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 26px;
  background-color: #F5F2F5;
  border-radius: 50%;
  background-image: url('/assets/images/top/icon-btn-ppl.svg');
  background-size: contain;
  background-position: 0 0;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  -webkit-transition: none;
  transition        : none;
}
.ua-pc #colorbox #serch_option_modal .button.action01:hover i {
  background-position: 26px 0;
  -webkit-transition: all 250ms cubic-bezier(0, 0, 0.5, 1.3);
  transition        : all 250ms cubic-bezier(0, 0, 0.5, 1.3);
}
.ua-pc #colorbox #serch_option_modal .button.action01:hover {
  box-shadow: none;
  background-color: #6C2093;
  background-image: -webkit-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background-image:    -moz-linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
  background-image:         linear-gradient(-135deg, #6C2093 0%, #6A1094 100%);
}
#colorbox #serch_option_modal .resetButton {
  text-align: center;
  margin-top: 16px;
}
#colorbox #serch_option_modal .resetButton .button {
  position: relative;
  background: #F5F6F7;
  border: 1px solid #7C7E80;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #7C7E80;
  letter-spacing: 0.1px;
  text-align: center;
  line-height: 1.6;
  border: 1px solid #7C7E80;
  padding: 8px 36px 8px 16px;
  cursor: pointer;
}
#colorbox #serch_option_modal .resetButton .button:before {
  content: '';
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-image: url('/assets/images/element-list/icon/resetbutton.png');
  background-size: cover;
}

/* sc-09 */
#mainContents .sc-09-flow a.action02 .number:after ,
#mainContents .sc-09-flow a.action02 .number:before {
  display: none !important;
}
#mainContents .sc-09-flow a.action02 .number {
  position: static;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-style: normal;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin-right: 8px;
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  text-align: center;
  font-size: 1.6rem;
}
#mainContents .sc-09-flow a.action02 {
  padding: 0 32px;
}
#mainContents .sc-09-flow-row01 a.action02 ,
#mainContents .sc-09-flow-row03 a.action02 {
  display: -webkit-inline-flex;
  display: inline-flex;
  width: 100%;
}
#mainContents .sc-09-flow-row01 ul.circle .col {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2d2d2e;
}
#mainContents .sc-09-flow-row01 ul.circle .col + .col {
  margin-left: 30px;
}
#mainContents .sc-09-flow-row01 .flex {
  width: 100%;
  align-items: center;
}
#mainContents .sc-09-flow-row02_01 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
.msie #mainContents .sc-09-flow-row02_01 {
  font-weight: 600;
}
#mainContents .sc-09-flow-row02_02 {
  position: relative;
}
#mainContents .sc-09-flow-row02_02:before {
  content: '';
  position: absolute;
  bottom: -16px;
  height: 3px;
  background-color: #4fa2d9;
  left: -webkit-calc((100% - (3.571428571428571% * 7)) / 16);
  left:         calc((100% - (3.571428571428571% * 7)) / 16);
  right: -webkit-calc((100% - (3.571428571428571% * 7)) / 16);
  right:         calc((100% - (3.571428571428571% * 7)) / 16);
}
#mainContents .sc-09-flow-row02 {
  position: relative;
  margin-top: 56px;
  padding: 32px 32px 40px;
  background-color: #f5f6f7;
  border-radius: 3px;
  margin-bottom: 60px;
}
#mainContents .sc-09-flow-row02:after ,
#mainContents .sc-09-flow-row02:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 15px;
  background-image: url('/assets/images/sc/icon/sc-09-flow.jpg');
  background-size: cover;
  left: 50%;
  bottom: 100%;
  margin: 0 0 18px -14px;
}
#mainContents .sc-09-flow-row02:after {
  bottom: auto;
  top: 100%;
  margin: 22px 0 0 -14px;
}
#mainContents .sc-09-flow-row02 a.action02 {
  position: relative;
  min-width: 0;
  padding: 16px 0 24px;
  width: -webkit-calc((100% - (3.571428571428571% * 7)) / 8);
  width:         calc((100% - (3.571428571428571% * 7)) / 8);
  height: auto;
  min-height: 345px;
  align-items: normal;
  overflow: visible;
}
#mainContents .sc-09-flow-row02 a.action02 > span {
  vertical-align: middle;
  display: block;
  margin: 0 auto;
}
#mainContents .sc-09-flow-row02 a.action02 span span {
  vertical-align: middle;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode    : tb-rl;
  writing-mode        : vertical-rl;
}
#mainContents .sc-09-flow-row02 a.action02 .line {
  position: absolute;
  bottom: 8px;
  left: 50%;
  margin-left: -6.5px;
  width: 13px;
  height: 13px;
  background-color: #4fa2d9;
  border-radius: 50%;
}
#mainContents .sc-09-flow-row02 a.action02 .line:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 25px;
  background-color: #4fa2d9;
  left: 50%;
  margin-left: -1.5px;
  top: 100%;
}
#mainContents .sc-09-flow-row02 a.action02:nth-child(3) .line {
  background-color: #fcb000;
}
#mainContents .sc-09-flow-row02 a.action02:nth-child(3) .line:before {
  background-color: #fcb000;
}
#mainContents .sc-09-flow-row02 a.action02:nth-child(6) .line:before ,
#mainContents .sc-09-flow-row02 a.action02:nth-child(3) .line:before {
  height: 39px;
}
#mainContents .sc-09-flow-row02 a.action02 .number {
    margin: 0 0 8px;
}
#mainContents .sc-09-flow-row02_03 {
  margin-top: 30px;
}
#mainContents .sc-09-flow-row02_03 .col {
  width: 35.238095238095238%;
  border: 1px solid #fcb000;
  background-color: #fffdf9;
  padding: 0.660714285714286em 0;
  border-radius: 3px;
}
#mainContents .sc-09-flow-row02_03 .col02 {
  margin-left: 30px;
  border-color: #4fa2d9;
  background-color: #f8fcff;
}
@media only screen and (max-width: 768px){
  #mainContents .sc-09-flow a.action02 .number {
    width: 5.333333333333333vmin;
    height: 5.333333333333333vmin;
    line-height: 5.333333333333333vmin;
    font-size: 2.8vmin;
  }
  #mainContents .sc-09-flow a.action02 {
    font-size: 3.466666666666667vmin;
  }
  #mainContents .sc-09-flow-row03 a.action02 {
    padding: 2.280130293159609vmin 3vmin;
    min-height: 9.446254071661238vmin;
  }
  #mainContents .sc-09-flow-row01 a.action02 {
    padding: 1.813333333333333vmin 3vmin;
    min-height: 9.446254071661238vmin;
  }
  #mainContents .sc-09-flow-row03 a.action02 .number ,
  #mainContents .sc-09-flow-row01 a.action02 .number {
    margin-right: 1.302931596091205vmin;
  }
  #mainContents .sc-09-flow-row01 ul.circle {
    margin: 0;
    vertical-align: middle;
    height: auto;
    width: 53.333333333333333vmin;
    text-align: left;
  }
  #mainContents .sc-09-flow-row01 ul.circle .col {
    font-size: 2.933333333333333vmin;
    padding-left: 2.666666666666667vmin;
    margin-left: 4.266666666666667vmin;
  }
  #mainContents .sc-09-flow-row01 ul.circle .col + .col {
    margin-left: 4.266666666666667vmin;
  }
  #mainContents .sc-09-flow-row02 {
    margin-top: 6.666666666666667vmin;
    padding: 4.266666666666667vmin;
    margin-bottom: 6.666666666666667vmin;
  }
  #mainContents .sc-09-flow-row02:after ,
  #mainContents .sc-09-flow-row02:before {
    width: 3.733333333333333vmin;
    height: 2.133333333333333vmin;
    margin: 0 0 2.4vmin -0.814332247557003vmin;
  }
  #mainContents .sc-09-flow-row02_01 {
    font-size: 4.533333333333333vmin;
    margin-bottom: 4.266666666666667vmin;
  }

  #mainContents .sc-09-flow-row02 a.action02 {
    padding: 0 1.6vmin;
    width: 42.933333333333333vmin;
    min-height: 13.333333333333333vmin;
    height: 13.333333333333333vmin;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    overflow: visible;
  }
  #mainContents .sc-09-flow-row02 a.action02 + a.action02 {
    margin-top: 3.2vmin;
  }
  #mainContents .sc-09-flow-row02 a.action02 .number + br {
    display: none;
  }
  #mainContents .sc-09-flow-row02 a.action02 .number {
    margin: 0 1.6vmin 0 0;
    display: inline-block;
    vertical-align: middle;
  }
  #mainContents .sc-09-flow-row02 a.action02 > span {
    margin: 0;
    width: 100%;
  }
  #mainContents .sc-09-flow-row02 a.action02 > span span {
    -webkit-writing-mode:horizontal-tb;
    -ms-writing-mode    :lr-tb;
    writing-mode        :horizontal-tb;
    display: inline-block;
    vertical-align: middle;
    width: -webkit-calc(100% - 1px - 6.933333333333333vmin);
    width:         calc(100% - 1px - 6.933333333333333vmin);
  }
  #mainContents .sc-09-flow-row02_02:before {
    content: '';
    position: absolute;
    height: auto;
    width: 2px;
    background-color: #4fa2d9;
    left: 47vmin;
    right: auto;
    bottom: -webkit-calc(6.666666666666667vmin - 1px);
    bottom:         calc(6.666666666666667vmin - 1px);
    top: -webkit-calc(6.666666666666667vmin - 1px);
    top:         calc(6.666666666666667vmin - 1px);
  }
  #mainContents .sc-09-flow-row02 a.action02 .line {
    position: absolute;
    bottom: 50%;
    left: 100%;
    margin-left: 0;
    width: 2.666666666666667vmin;
    height: 2.666666666666667vmin;
    -webkit-transform: translate(-50%,50%);
    transform        : translate(-50%,50%);
  }
  #mainContents .sc-09-flow-row02 a.action02 .line:before {
    width: 4.266666666666667vmin;
    height: 2px;
    left: 50%;
    margin: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    transform        : translate(0,-50%);
  }
  #mainContents .sc-09-flow-row02 a.action02:nth-child(6) .line:before {
    height: 2px;
  }
  #mainContents .sc-09-flow-row02 a.action02:nth-child(5) .line:before ,
  #mainContents .sc-09-flow-row02 a.action02:nth-child(3) .line:before {
    width: 8vmin;
    height: 2px;
  }
  #mainContents .sc-09-flow-row02_03 {
    margin-top: 3.257328990228013vmin;
  }
  #mainContents .sc-09-flow-row02_03 .col {
    position: absolute;
    top: 42.533333333333333vmin;
    left: 54.4vmin;
    width: 21.866666666666667vmin;
    height: 19.733333333333333vmin;
    padding: 0 2.666666666666667vmin;
    font-size: 2.933333333333333vmin;
    line-height: 1.5;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0;
  }
  #mainContents .sc-09-flow-row02:after {
    margin: 2.4vmin 0 0 -0.814332247557003vmin;
  }
  #mainContents .sc-09-flow ul.circle li:before {
    width: 1.466666666666667vmin;
    height: 1.466666666666667vmin;
  }
  #mainContents .sc-09-flow-row02_03 .col02 {
    top: 75.733333333333333vmin
  }
}

/* cp-15 */
#mainContents .kv-type001 {
  position: relative;
}
#mainContents .kv-type001 .showBox {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
  transform        : translateX(-50%);

}
#mainContents .kv-type001 .text {
  margin: 0;
  padding: 0;
  color: #fff;
}
#mainContents .kv-type001 .text:before {
  display: none;
}

/* ia */
#mainContents .border-image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  border: 1px solid #CDD0D4;
  height: 227px;
  margin-bottom: 16px;
}
#mainContents .border-image-box img {
  width: 75px;
  display: inline-block;
  align-self: center;
}

/* youtube */
#mainContents .youtube {
  position: relative;
  text-align: center;
  margin: 24px 0;
}
#mainContents .youtube:before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.428571428571429%;
}
#mainContents .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 記事 */
#mainContents .news-content figure {
  margin-top: 24px;
}
#mainContents .news-content [class*="clm"] {
  margin-top: 24px;
  margin-bottom: 0;
}
#mainContents .news-content [class*="clm"] div > a:first-of-type {
  margin-top: 0 !important;
}
#mainContents .news-content [class*="clm"] figure {
  margin-top: 0;
}
#mainContents .news-content p + p {
  margin-top: 32px;
}
#mainContents .news-content a span {
  line-height: 1.75;
}
/*#mainContents .news-content a[target="_blank"] ,
#mainContents .news-content a[href$=".pdf"] ,
#mainContents .news-content a[href$=".zip"] ,
#mainContents .news-content a[href$=".xls"] ,
#mainContents .news-content a[href$=".xlsx"] {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  line-height: 1.75;
}
#mainContents .news-content a[target="_blank"]:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  left: auto;
  background-image: url('/assets/images/element-list/icon/window_blk.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: baseline;
  width: 12px;
  height: 11px;
  line-height: 1;
  margin: 0 0.8em 0 0.5em;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .news-content a[href$=".pdf"]:before ,
#mainContents .news-content a[href$=".zip"]:before ,
#mainContents .news-content a[href$=".xls"]:before ,
#mainContents .news-content a[href$=".xlsx"]:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  left: auto;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 23px;
  line-height: 1;
  margin: 0 0.8em 0 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
}
#mainContents .news-content a[href$=".pdf"]:before {
  background-image: url('/assets/images/element-list/icon/pdf.png');
}
#mainContents .news-content a[href$=".zip"]:before {
  background-image: url('/assets/images/element-list/icon/zip.png');
}
#mainContents .news-content a[href$=".xls"]:before ,
#mainContents .news-content a[href$=".xlsx"]:before {
  background-image: url('/assets/images/element-list/icon/excel.png');
}
#mainContents .news-content a[target="_blank"]:after ,
#mainContents .news-content a[href$=".pdf"]:after ,
#mainContents .news-content a[href$=".zip"]:after ,
#mainContents .news-content a[href$=".xls"]:after ,
#mainContents .news-content a[href$=".xlsx"]:after {
  content: '';
  height: 0px;
}*/
#mainContents .news-content a.icon-info ,
#mainContents .news-content a.icon-info span {
    margin: 0;
}
#mainContents .news-content a.icon-info {
  margin-top: 16px;
}
#mainContents .news-content [class*="clm"] ol ,
#mainContents .news-content [class*="clm"] ul ,
#mainContents .news-content ol a[target="_blank"] ,
#mainContents .news-content ol a[href$=".pdf"] ,
#mainContents .news-content ol a[href$=".zip"] ,
#mainContents .news-content ol a[href$=".xls"] ,
#mainContents .news-content ol a[href$=".xlsx"] ,
#mainContents .news-content ul a[target="_blank"] ,
#mainContents .news-content ul a[href$=".pdf"] ,
#mainContents .news-content ul a[href$=".zip"] ,
#mainContents .news-content ul a[href$=".xls"] ,
#mainContents .news-content ul a[href$=".xlsx"] ,
#mainContents .news-content blockquote .link a[target="_blank"] ,
#mainContents .news-content blockquote .link a[href$=".pdf"] ,
#mainContents .news-content blockquote .link a[href$=".zip"] ,
#mainContents .news-content blockquote .link a[href$=".xls"] ,
#mainContents .news-content blockquote .link a[href$=".xlsx"] {
  margin-top: 0;
}
#mainContents ol ,
#mainContents .news-content ul {
  margin-top: 24px;
}
#mainContents .news-content ol a[target="_blank"] ,
#mainContents .news-content ol a[href$=".pdf"] ,
#mainContents .news-content ol a[href$=".zip"] ,
#mainContents .news-content ol a[href$=".xls"] ,
#mainContents .news-content ol a[href$=".xlsx"] ,
#mainContents .news-content ul a[target="_blank"] ,
#mainContents .news-content ul a[href$=".pdf"] ,
#mainContents .news-content ul a[href$=".zip"] ,
#mainContents .news-content ul a[href$=".xls"] ,
#mainContents .news-content ul a[href$=".xlsx"] {
  line-height: 1.4;
}
#mainContents ol {
  counter-reset: item;
}
#mainContents ol > li {
  position: relative;
  padding-left: 2em;
}
#mainContents ol > li:before {
  counter-increment: item;
  content: counter(item)'. ';
  position: absolute;
  left: 0;
  line-height: 1.75;
}
#mainContents .news-content .imate-text-link[target="_blank"]:before ,
#mainContents .news-content .imate-text-link:before {
  display: none;
}
#mainContents .news-content .imate-text-link:after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #2D2D2E;
  -webkit-transform: translateY(-50%);
  transform        : translateY(-50%);
  background-image: url('/assets/images/element-list/icon/mfg.png');
  background-size: 100%;
  background-position: 50%;
  background-repeat: repeat-x;
}
#mainContents .news-content .imate-text-link[target="_blank"]:after {
  width: 26px;
  height: 26px;
  background-image: url('/assets/images/element-list/icon/window_blc.png');
  background-size: 12px 11px;
  background-repeat: no-repeat;
}
#mainContents .news-content .tbl_area {
  margin-top: 32px;
}
#mainContents .news-content .addition {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.884615384615385;
  text-align: center;
  margin: 40px 0 24px;
}
.msie #mainContents .news-content .addition {
  font-weight: 600;
}
#mainContents .clm02 .buttonArea .button {
  min-width: auto;
  width: 100%;
}
#mainContents td ul ,
#mainContents td ol ,
#mainContents .news-content td ul ,
#mainContents .news-content td ol {
  margin-top: 0;
}
#mainContents .news-content a.button[target="_blank"]:before {
  display: none;
}
.ua-pc #mainContents .news-content a.button[target="_blank"]:hover i:before ,
#mainContents .news-content a.button[target="_blank"] i:before {
  background-image: url('/assets/images/element-list/icon/window_wht.png');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 768px){
  #mainContents .news-content figure {
    margin-top: 6.4vmin;
  }
  #mainContents .news-content [class*="clm03"] figure + figure {
    margin-top: 6.4vmin;
  }
  #mainContents .news-content p + p {
    margin-top: 8.533333333333333vmin;
  }
  #mainContents .news-content a[target="_blank"] ,
  #mainContents .news-content a[href$=".pdf"] ,
  #mainContents .news-content a[href$=".zip"] ,
  #mainContents .news-content a[href$=".xls"] ,
  #mainContents .news-content a[href$=".xlsx"] {
    margin-top: 4.266666666666667vmin;
  }
  #mainContents .news-content a[href$=".pdf"]:before {
    background-image: url('/assets/images/element-list/icon/sp/pdf.png');
  }
  #mainContents .news-content a[href$=".zip"]:before {
    background-image: url('/assets/images/element-list/icon/sp/zip.png');
  }
  #mainContents .news-content a[href$=".xls"]:before ,
  #mainContents .news-content a[href$=".xlsx"]:before {
    background-image: url('/assets/images/element-list/icon/sp/excel.png');
  }
  #mainContents .news-content a[target="_blank"]:before {
    width: 3.066666666666667vmin;
    height: 2.8vmin;
  }
  #mainContents .news-content a[href$=".pdf"]:before ,
  #mainContents .news-content a[href$=".zip"]:before ,
  #mainContents .news-content a[href$=".xls"]:before ,
  #mainContents .news-content a[href$=".xlsx"]:before {
    width: 3.466666666666667vmin;
    height: 4.266666666666667vmin;
    margin: 0 0.8em 0 0.5em;
  }
  #mainContents .news-content ol ,
  #mainContents .news-content ul {
    margin-top: 8.533333333333333vmin;
  }
  #mainContents .news-content .addition {
    font-size: 3.466666666666667vmin;
    line-height: 1.5;
    margin: 9.6vmin 0 6.4vmin;
  }
}

/* KV01 */
#mainContents .image-innertext-kv {
  position: relative;
  z-index: 0;
  background-size: 1600px auto;
  background-position: center;
  overflow: hidden;
}
#mainContents .image-innertext-kv:before {
  content: '';
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background: inherit;
  filter: blur(30px);
  /* position:absoluteのせいで最前面に来てしまうため */
  z-index: -1;
}
#mainContents .image-innertext-kv:after {
  content: '';
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background-color: rgba(255,255,255,0.5);
  z-index: -1;
}
#mainContents .image-innertext-kv > img {
  max-width: 1024px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
#mainContents .image-innertext-kv .showBox {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform        : translateX(-50%);
  padding-bottom: 32px;
}
#mainContents .image-innertext-kv .showBox h2 {
  padding: 0;
  color: #fff;
  margin: 0;
}
#mainContents .image-innertext-kv .showBox h2:before {
  display: none;
}
#mainContents .image-innertext-kv .showBox p {
  color: #fff;
}

/* KV02 */
#mainContents .image-innertext {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
}
#mainContents .image-innertext .showBox {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 32px;
  -webkit-transform: translateX(-50%);
  transform        : translateX(-50%);
}
#mainContents .image-innertext h2 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.583333333333333;
}
#mainContents .image-innertext p {
  margin: 0;
  padding: 0;
  color: #fff;
}
#mainContents .image-innertext h2:before {
  display: none;
}
#mainContents .image-innertext .label {
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  padding: 1px 8px;
  font-size: 1.3rem;
  line-height: 1.846153846153846;
  display: inline-block;
  margin-bottom: 1px;
}
#mainContents .image-innertext.type-height-237 {
  height: 350px;
}
#mainContents .image-innertext.type-height-237 .showBox {
  bottom: 8px;
}
@media only screen and (max-width: 768px){
  #mainContents .image-innertext {
    background-color: #fff;
    color: #2D2D2E;
    padding: 60vmin 0 0 0;
    background-size: auto 60vmin;
    background-repeat: no-repeat;
    background-position: top !important;
    height: auto;
  }
  #mainContents .image-innertext .showBox {
    position: static;
    -webkit-transform: translateX(0);
    transform        : translateX(0);
    padding: 6.4vmin 5.333333333333333vmin 0;
  }
  #mainContents .image-innertext .showBox h2 {
    color: #2D2D2E;
    text-align: left;
    font-size: 5.333333333333333vmin;
    margin-bottom: 0;
    margin-top: 0;
  }
  #mainContents .image-innertext .showBox p {
    color: #2D2D2E;
    text-align: left;
    font-size: 3.466666666666667vmin;
    line-height: 1.730769230769231;
    margin-bottom: 0;
  }
  #mainContents .image-innertext h2 + p {
    margin-top: 3.2vmin;
  }
  #mainContents .image-innertext.type-height-237 {
    padding-top: 46.666666666666667vmin;
    background-size: auto 46.666666666666667vmin;
    background-repeat: no-repeat;
    background-position: top;
    height: auto;
  }
}

/* efb */
#mainContents .efb table a ,
#mainContents .efb p a {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}
#mainContents .efb table a:before ,
#mainContents .efb table a:after ,
#mainContents div:not(#businessTop-content) .efb p a:before ,
#mainContents div:not(#businessTop-content) .efb p a:after {
  display: none !important;
}
.ua-pc #mainContents .efb table a:hover ,
.ua-pc #mainContents .efb p a:hover {
  text-decoration: underline;
}


/* form */
@media only screen and (max-width: 768px){
  #mainContents select ,
  select ,
  #mainContents textarea ,
  textarea ,
  #mainContents input[type="email"] ,
  input[type="email"] ,
  #mainContents input[type="text"] ,
  input[type="text"] {
    font-size: 4.266666666666667vmin !important;
    width: 133.333333333333333% !important;
    max-width: none !important;
    -webkit-transform: scale(0.75);
    transform        : scale(0.75);
    transform-origin: left top;
  }
}

/* kv-movie */
.kv-movie {
  background-size: cover;
  height: 350px;
}

/* video-content */
.video-content {
  position: relative;
}
.video-content:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-content > img {
  width: 100%;
  height: auto;
}
.video-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.video-content.loadedmetadata:after {
  display: none;
}
.video-content.loadedmetadata .video-js {
  -webkit-transition: width 0ms linear, opacity 200ms linear;
  transition        : width 0ms linear, opacity 200ms linear;
  width: 100%;
  opacity: 1;
}

/*
brightcove bug fix
*/
#mainContents .brightcove_code{
    position: relative;
    padding-top:56.25%;
 }
#mainContents .brightcove_code .video-js {
    width: 100%;
    opacity: 1;
}

@media screen and (min-width: 769px) {
  body.en #sidebar .contact {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body.en #sidebar.open-gnav .contact {
    display: none;
  }
  body.en #sidebar.open-gnav .search {
    bottom: 0;
  }
  #sidebar .menuBtn::after{
    color:#000;
  }

}

/*
flex追加分（センタリング）
*/
#mainContents .flex__justify-center {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

#mainContents .width__100 {
    width: 100%;
}
