@charset "UTF-8";
/* ナビゲーション */
.b-fdnav {
  margin-top: 0;
}

.main-contents > .pc-top-nav {
  margin-top: 10px;
}

.b-fdnav-body {
  width: 100%;
  background-color: #dad9d6;
}

.b-fdnav-body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  margin-top: 0;
  animation-name: slideDown;
  animation-duration: 0.3s;
  animation-timing-function: liner;
  animation-fill-mode: forwards;
}

.b-fdnav-toggler {
  display: none;
}

.b-fdnav-menu {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.b-fdnav-menu > li {
  flex: 1;
}

.b-fdnav-body a {
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  transition: none;
}

.b-fdnav-menu > li > a {
  padding: 8px;
  display: flex;
  min-height: 64px;
  justify-content: center;
  align-items: center;
}

.b-fdnav-menu > li > a:hover,
.b-fdnav-menu > li.is-open > a {
  color: #fff;
  background: #6d6e70;
}

.b-fdnav-toggler-txt {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  font-size: 1rem;
  opacity: 0;
}

.b-fdnav-secondary {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  max-height: 0;
  background: #6d6e70;
  z-index: 99;
  overflow: hidden;
  transition: max-height 0.2s;
}

.b-fdnav-menu-toggler {
  position: relative;
  padding-right: 30px;
}

.b-fdnav-menu-toggler::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transition: transform 0.2s;
  transform: rotate(135deg);
}

.b-fdnav-menu-toggler:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.is-open > .b-fdnav-menu-toggler::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

.b-fdnav-secondary-body {
  padding: 20px 26px;
}

.b-fdnav-secondary-label {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 13px;
  font-weight: bold;
  font-size: 2rem;
}

.b-fdnav-secondary-label a {
  display: inline-block;
  position: relative;
  padding-right: 18px;
}

.b-fdnav-secondary-menu > li > a::before,
.b-fdnav-secondary-label a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.b-fdnav-secondary-label a::before {
  display: block;
  position: absolute;
  top: 13px;
  right: 0;
}

.b-fdnav-secondary-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.b-fdnav-secondary-menu {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto -4px;
}

.b-fdnav-secondary-menu > li {
  width: 20%;
  margin-bottom: 20px;
  padding-left: 20px;
}

.b-fdnav-secondary-menu > li > a {
  display: inline-block;
  max-width: 100%;
  padding-left: 20px;
  font-size: 1.4rem;
}

.b-fdnav-secondary-menu > li > a::before {
  display: inline-block;
  margin: -5px 14px 0 -23px;
  vertical-align: middle;
}

@media only screen and (max-width: 1000px) {
  .b-fdnav-secondary-menu > li {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .b-fdnav {
    display: flex;
    justify-content: flex-end;
    background: #000;
    position: relative;
  }
  .b-fdnav > .b-fdnav-toggler {
    display: flex;
    align-items: flex-end;
    height: 42px;
    margin-right: 4px;
    padding: 2px 4px;
    color: #fff;
    position: relative;
    font-size: 1rem;
  }
  .b-fdnav > .b-fdnav-toggler:hover,
  .b-fdnav.is-open > .b-fdnav-toggler {
    background: #4d4d4d;
  }
  .b-fdnav > .b-fdnav-toggler::before,
  .b-fdnav > .b-fdnav-toggler::after {
    position: absolute;
    transform-origin: left center;
  }
  .b-fdnav > .b-fdnav-toggler::before {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    margin-bottom: 2px;
    left: 50%;
    top: 7px;
    background: linear-gradient(#fff, #fff 2px, transparent 2px, transparent 6px, #fff 6px, #fff 8px, transparent 8px, transparent 12px, #fff 12px);
    transform: translateX(-50%);
  }
  .b-fdnav.is-open > .b-fdnav-toggler {
    color: transparent;
  }
  .b-fdnav.is-open > .b-fdnav-toggler::before,
  .b-fdnav.is-open > .b-fdnav-toggler::after {
    content: "";
    display: block;
    width: 2px;
    height: 23px;
    margin-top: -5px;
    top: 14px;
    left: 50%;
    background: #fff;
    transform: rotate(-45deg) translateX(-50%);
  }
  .b-fdnav.is-open > .b-fdnav-toggler::after {
    transform: rotate(45deg) translateX(-50%);
  }
  .b-fdnav-toggler-txt {
    display: none;
  }
  .b-fdnav-secondary-title {
    border-top: 1px solid #ccc;
    margin-bottom: 0;
    padding: 16px;
    text-align: center;
  }
  .b-fdnav-menu {
    display: block;
    background: #dad9d6;
  }
  .b-fdnav-menu > li {
    border-bottom: 1px solid #c6c6c0;
  }
  .b-fdnav-menu > li > a {
    padding: 11px 32px 11px 16px;
    text-align: left;
  }
  .b-fdnav-menu > li.is-open > a {
    background: #6d6e70;
  }
  .b-fdnav-secondary-menu {
    margin-bottom: 0;
  }
  .b-fdnav-secondary {
    position: static;
  }
  .b-fdnav-secondary-body {
    padding: 0;
    color: #fff;
  }
  .b-fdnav-secondary-label {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 1.6rem;
  }
  .b-fdnav-secondary-label a {
    display: block;
    padding: 11px 32px 11px 16px;
  }
  .b-fdnav-secondary-label a::before,
  .b-fdnav-secondary-menu > li > a::before {
    content: none;
  }
  .b-fdnav-secondary-menu {
    display: block;
  }
  .b-fdnav-secondary-menu > li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #666;
  }
  .b-fdnav-secondary-menu > li > a {
    display: block;
    padding: 11px 16px;
    font-size: 1.6rem;
  }
  .b-fdnav-body {
    display: block;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    z-index: 9999;
    text-align: left;
  }
  .is-complete .b-fdnav-body {
    overflow: visible;
  }
}
.b-fdnav-menu > .is-current {
  font-weight: 700;
}

.b-fdnav-menu > li::before,
.b-fdnav-menu > li:last-child::after {
  display: block;
  position: absolute;
  background-color: #b1b1ac;
  top: 50%;
  width: 1px;
  height: 32px !important;
  content: "";
}

.b-fdnav-menu > li::before {
  margin-top: -16px;
}

.b-fdnav-menu > li::after {
  right: -1px;
  margin-top: -16px;
}

.pc-nav-lineup .b-fdnav-secondary-menu {
  max-width: 1200px;
}

.pc-nav-lineup .b-fdnav-secondary-menu > li > a::before,
.pc-nav-lineup .b-fdnav-secondary-label a::before {
  content: none;
}

.pc-nav-lineup .b-fdnav-secondary-menu.pc-nav-link > li > a {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.pc-nav-lineup .b-fdnav-secondary-menu.pc-nav-link > li > a::before {
  display: inline-block;
  margin: -5px 14px 0 -23px;
  vertical-align: middle;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.pc-nav-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.pc-nav-visual {
  margin-bottom: 10px;
  text-align: center;
}

.pc-nav-size {
  margin-bottom: 10px;
  padding: 2px 10px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  background: #fff;
}

.pc-nav-model {
  padding: 2px 10px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .b-fdnav-menu > li::before,
  .b-fdnav-menu > li:last-child::after {
    content: none;
  }
  .pc-nav-lineup .b-fdnav-secondary-menu > li {
    padding-bottom: 20px;
    border-top: 1px solid #ccc;
  }
  .pc-nav-lineup .b-fdnav-secondary-menu.pc-nav-link > li {
    padding-bottom: 0;
  }
  .pc-nav-lineup .b-fdnav-secondary-menu.pc-nav-link > li > a::before {
    content: none;
  }
}
/* ローカルナビ */
.pc-lnav {
  font-size: 1.4rem;
}

.pc-lnav .b-fdnav-body.is-fixed {
  position: fixed;
  top: 64px;
}

.pc-lnav .b-fdnav-body {
  position: inherit;
  width: 100%;
  background-color: #3c3c3c;
  z-index: 2;
}

.pc-lnav .b-fdnav-body a {
  color: #ffffff;
}

.pc-lnav .b-fdnav-menu > li > a {
  min-height: 40px;
}

.pc-lnav .b-fdnav-menu > li::before,
.pc-lnav .b-fdnav-menu > li:last-child::after {
  background-color: #a9a9a4;
}

.pc-lnav .b-fdnav-menu-toggler::before {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.pc-lnav .b-fdnav-menu > li {
  position: relative;
}

.pc-lnav .b-fdnav-secondary {
  z-index: 90;
}

.pc-lnav .b-fdnav-secondary-body {
  padding: 20px 20px 3px;
}

.pc-lnav .b-fdnav-secondary-menu > li {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 0;
}

.pc-lnav .b-fdnav-secondary-menu > li > a {
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  .pc-lnav {
    margin-top: 10px;
  }
  .pc-lnav .b-fdnav-toggler {
    display: none;
  }
  .pc-lnav .b-fdnav-body {
    position: relative;
    max-height: none;
    z-index: 9998;
  }
  .pc-lnav .b-fdnav-menu {
    display: block;
    background: #3c3c3c;
  }
  .pc-lnav .b-fdnav-secondary-body {
    padding-top: 0;
  }
  .pc-lnav .b-fdnav-secondary-menu > li {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
/* related-links */
.pc-related .section-inner {
  padding: 10px 0;
}

.pc-related-layout {
  display: flex;
  flex-wrap: wrap;
}

.main-contents > .pc-related-layout {
  margin-top: 10px;
}

.pc-related-layout .pc-related-bnr {
  width: 50%;
  padding: 0 10px 0 0;
  order: 1;
}

.pc-related-layout .pc-related-item {
  width: 50%;
  order: 2;
  flex: none;
}

@media only screen and (max-width: 767px) {
  .pc-related-layout .pc-related-bnr {
    width: 100%;
    padding: 0 0 10px 0;
  }
  .pc-related-layout .pc-related-item {
    width: 100%;
  }
}
.pc-related-links li {
  margin-bottom: 16px;
}

.pc-related-links li:last-child {
  margin-bottom: 0;
}

/* related-btn-links */
.pc-related-btn-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: -20px;
}

.pc-related-btn-links li {
  width: 100%;
  margin-left: 20px;
}

.pc-related-btn-links li a {
  width: 100%;
  min-height: 65px;
}

.pc-related-btn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  line-height: 1.5;
  background: #eee;
  border: 1px solid #ccc;
  text-decoration: none;
  color: inherit;
}

.pc-related-btn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .pc-related-btn-links {
    display: block;
    margin-left: 0;
  }
  .pc-related-btn-links li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .pc-related-btn-links li a {
    width: 100%;
    min-height: auto;
  }
}
/* panel-box */
.pc-panel-box {
  padding: 40px;
}

.pc-panel-box-narrow {
  display: flex;
  padding: 30px 40px 27px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.pc-panel-box-narrow .pc-inbound-link-panel {
  display: block;
  width: auto;
  margin: -30px -40px -27px;
  padding: 30px 40px 27px;
}

.pc-panel-box > .hdg-b {
  margin: 0;
}

/* section-telework */
.pc-section-telework .pc-telework-box {
  padding: 40px;
  border: 1px solid #ccc;
}

.pc-telework-box .visual {
  margin-bottom: 20px;
}

.pc-telework-box .title {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .pc-telework-box .visual {
    margin-bottom: 10px;
  }
  .pc-telework-box .title {
    margin-bottom: 10px;
  }
}
/* slider */
.pc-slide-section {
  overflow: hidden;
}

.pc-slide-wrapper {
  max-width: 1280px;
  overflow: visible;
  margin: 0 auto;
  padding-bottom: 80px;
}

.pc-slider:not(.slick-initialized) {
  visibility: hidden;
  max-height: 500px;
  overflow: hidden;
}

.pc-slider .slick-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.8;
  top: 30%;
  margin-top: -35px;
  transition: opacity 0.2s;
}

.pc-slider .slick-arrow:hover {
  opacity: 1;
}

.pc-slider .slick-arrow::before {
  width: 22px;
  height: 22px;
  top: 50%;
  border-width: 2px 0 0 2px;
  border-color: #000 transparent transparent #000;
}

.pc-slider .slick-prev {
  left: 0;
}

.pc-slider .slick-next {
  right: 0;
}

.pc-slider .slick-prev::before {
  left: 30px;
  transform: translateY(-50%) rotate(-45deg);
}

.pc-slider .slick-next::before {
  right: 30px;
  transform: translateY(-50%) rotate(135deg);
}

.pc-slider .slick-list {
  overflow: visible;
}

.pc-slider .slick-track {
  display: flex;
}

.pc-slider .slick-slide {
  display: flex !important;
  width: 547px;
  height: auto;
  margin: 0 20px;
  text-decoration: none;
}

.pc-slider .slick-slide > div {
  flex: 1 auto;
}

.pc-slide-item {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px 20px 25px;
  background: #fff;
  text-decoration: none;
  line-height: 1.5;
}

.slick-slide:not(.slick-active) .pc-slide-item {
  pointer-events: none;
}

.pc-slider-morebtn {
  margin: 25px auto 0;
  text-align: center;
}

.pc-slider-morebtn .lcm-lf-link-more-w {
  display: inline-block;
  margin-top: 8px;
  padding: 0.85em 0.8em 0.85em 2.85em;
  padding-top: 0.65em;
  position: relative;
  font-size: 1.4rem;
  color: #fff;
}

.pc-slider-morebtn .lcm-lf-link-more-w::before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.pc-slider-morebtn .lcm-lf-link-more-w::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  left: 7px;
  top: 16px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .pc-slider .slick-slide {
    opacity: 0.3;
    transition: opacity 0.3s ease-in 0.3s;
  }
  .pc-slider .slick-slide.slick-active {
    opacity: 1;
  }
  .pc-slider .no-transition {
    transition: none;
  }
  .pc-slider .active-transition {
    opacity: 1 !important;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1280px) {
  .pc-slide-wrapper {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1001px) {
  .pc-slider .slick-slide {
    opacity: 0.3;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in 0.3s;
    backface-visibility: hidden;
  }
  .pc-slider .slick-slide.slick-active {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  .pc-slider .slick-slide:not(.slick-active) {
    transform: translate3d(5%, 0, 0) scale(0.9);
    opacity: 0;
  }
  .pc-slider .slick-slide.slick-active ~ .slick-slide:not(.slick-active) {
    transform: translate3d(-5%, 0, 0) scale(0.9);
    opacity: 0;
  }
  .pc-slider .no-transition {
    transition: none;
  }
  .pc-slider .active-transition {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  .pc-slider .prev-transition {
    transform: translate3d(5%, 0, 0) scale(0.9) !important;
  }
  .pc-slider .next-transition {
    transform: translate3d(-5%, 0, 0) scale(0.9) !important;
  }
}
@media only screen and (max-width: 1000px) {
  .pc-slide-wrapper {
    padding-left: 10%;
    padding-right: 10%;
  }
  .pc-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .pc-slider .slick-arrow::before {
    width: 15px;
    height: 15px;
  }
  .pc-slider .slick-prev {
    left: -60px;
  }
  .pc-slider .slick-next {
    right: -60px;
  }
  .pc-slider .slick-prev::before {
    left: 16px;
  }
  .pc-slider .slick-next::before {
    right: 16px;
  }
  .pc-slide-item {
    padding: 12px;
  }
  .pc-slider .slick-slide {
    width: auto;
    margin: 0 6px;
  }
}
@media only screen and (max-width: 767px) {
  .pc-slider .slick-arrow {
    background: rgba(18, 30, 45, 0.2);
    opacity: 1;
  }
  .pc-slider .slick-arrow::before {
    border-width: 1px;
    border-color: #fff transparent transparent #fff;
  }
  .pc-slider .slick-prev {
    left: -20px;
  }
  .pc-slider .slick-next {
    right: -20px;
  }
}
.top-article-visual {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.top-article-visual img {
  width: 100%;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pc-slide-item:hover .top-article-visual img {
  transform: scale(1.1);
}

.top-article-type {
  margin-top: 10px !important;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.top-article-title {
  font-weight: 700;
  font-size: 2rem;
}

.top-article-foot {
  margin-top: 16px;
}

/* slider dots */
.pc-slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pc-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.pc-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #ccc;
}

.pc-slider .slick-dots li.slick-active {
  width: 14px;
  height: 14px;
  margin: -2px 5px 0;
}

.pc-slider .slick-dots li.slick-active button {
  width: 14px;
  height: 14px;
  background: #000;
}

.pc-slider .slick-dots li button::before {
  content: none;
}

/* slider more btn */
a .pc-link-more {
  color: #6d6e70;
}

.pc-link-more {
  display: inline-block;
  margin-top: 8px;
  padding: 0.85em 0.8em 0.85em 2.85em;
  position: relative;
  font-size: 1.2rem;
}

.pc-link-more::before,
.pc-link-more::after {
  content: "";
  display: block;
  position: absolute;
}

.pc-link-more::before {
  width: 26px;
  height: 26px;
  border: 1px solid;
  border-radius: 50%;
  left: 0;
  top: 7px;
}

.pc-link-more::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  left: 7px;
  top: 16px;
  transform: rotate(45deg);
}

a:hover .pc-link-more::before {
  animation: 0.5s linear 1 forwards link-circle-a;
}

a:hover .pc-link-more::after {
  animation: 0.5s linear 1 forwards link-arrow-a;
}

@keyframes link-circle-a {
  0% {
    border-color: transparent;
    border-top-color: inherit;
  }
  33% {
    border-color: transparent;
    border-right-color: inherit;
  }
  66% {
    border-color: transparent;
    border-bottom-color: inherit;
  }
  100% {
    border-color: inherit;
    transform: rotate(270deg);
  }
}
@keyframes link-arrow-a {
  0% {
    transform: translateX(0) rotate(45deg);
  }
  33% {
    opacity: 0;
    transform: translateX(16px) rotate(45deg);
  }
  66% {
    opacity: 0;
    transform: translateX(-16px) rotate(45deg);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg);
  }
}
/* point-list */
.pc-card-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-bottom: -40px !important;
}

.pc-card-list {
  margin-top: 40px;
}

.pc-card {
  margin: 0 0 40px 40px;
  background: #fff;
}

.pc-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
}

.pc-card .pc-link-more {
  color: #000;
}

.pc-card[class*=c-bg-] a {
  color: inherit;
}

.pc-card-list--col3 .pc-card {
  width: calc(33.333% - 40px);
}

.pc-card_image {
  position: relative;
  height: 0;
  padding-top: 66.585%;
  overflow: hidden;
}

.pc-card_image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pc-card:hover .pc-card_image img {
  transform: scale(1.1);
}

.pc-card_body {
  display: flex;
  flex-direction: column;
  flex: auto;
}

.pc-card_body_inner {
  flex: auto;
}

.pc-card-list--col3 .pc-card_body_inner {
  padding: 20px 16px 0;
}

.pc-card_title {
  font-size: 2.4rem;
  font-weight: 700;
}

.pc-card_desc {
  font-size: 1.6rem;
}

.pc-card_title + .pc-card_desc {
  margin-top: 12px;
}

.pc-card-list--col3 .pc-card_footer {
  padding: 0 16px 20px;
}

.pc-card_body_inner .pc-list-check {
  margin-bottom: 0;
}

@media only screen and (max-width: 1000px) {
  .pc-card-list {
    margin-left: -16px;
  }
  .pc-card {
    margin-left: 16px;
  }
  .pc-card-list--col3 .pc-card {
    width: calc(33.333% - 16px);
  }
}
@media only screen and (max-width: 767px) {
  .pc-card-list--col3 .pc-card {
    width: calc(100% - 16px);
  }
}
/* tab-line */
.pc-tab-line.tab-a .lists {
  height: auto;
}

.pc-tab-line.tab-a,
.pc-tab-line.tab-a .tab-list-a > li.is-active a,
.pc-tab-line.tab-a .lists {
  border-color: #ea0000;
}

.pc-tab-line.tab-a a,
.pc-tab-line.tab-a a:hover,
.pc-tab-line.tab-a a:focus {
  text-decoration: none;
}

.tabs-center {
  justify-content: center;
}

.pc-tab-line .tab-text .pc-line-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.pc-tab-line .tab-text .pc-line-disc {
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  font-weight: normal;
  text-align: left;
}

.pc-tab-line .tab-text .pc-line-visual {
  min-height: 160px;
  margin-bottom: 10px;
}

.pc-tab-line .tab-text .pc-tag-target {
  width: 180px;
  padding: 4px 10px;
  margin-bottom: 10px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 20px;
}

.pc-tab-line .tab-text .pc-tag-size {
  width: 180px;
  padding: 4px 10px;
  margin: 0 auto;
  font-size: 1.4rem;
  background: #dcdcdc;
}

li:not(.is-active) .tab-text .pc-tag-size {
  color: #fff;
  background: #6d6e70;
}

.pc-tab-line.tab-a.pc-tab--col2 .tab-list-a > li {
  width: 50%;
  padding-left: 8px;
}

/* tab-panel */
.pc-tab-line.tab-a .tabs-a > .tab-panel {
  padding: 0;
}

.pc-tab-line .tab-panel .pc-line-title {
  margin-top: 58px;
  font-size: 4.7rem;
  font-weight: 700;
}

.pc-tab-line .tab-panel .pc-line-disc {
  margin-top: 10px;
  font-size: 3.3rem;
}

.pc-tab-line .tab-panel .list-a {
  margin-top: 17px;
  font-size: 2.1rem;
}

.pc-tab-line-contents .list-a + .pc-card_more {
  margin-top: 10px !important;
}

.pc-tab-line-contents .pc-link-more {
  padding: 0.85em 0.8em 0.85em 2.4em;
  color: #000;
  font-size: 1.6rem;
}

.pc-tab-line-contents .pc-link-more::before {
  top: 14px;
}

.pc-tab-line-contents .pc-link-more::after {
  top: 23px;
}

.pc-tab-line-contents {
  min-height: 520px;
}

.pc-tab-line-contents .content {
  overflow: hidden;
  min-height: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

.pc-tab-line-contents .visual {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 520px;
  width: 100%;
}

.pc-tab-line-contents .visual > img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  max-width: inherit;
  height: 100%;
  display: block;
}

@media only screen and (max-width: 1280px) {
  .pc-tab-line-contents {
    min-height: inherit;
    max-height: 520px;
    height: calc(520vw * 100 / 1280);
  }
  .pc-tab-line-contents .content {
    min-height: calc(520vw * 100 / 1280);
  }
  .pc-tab-line-contents .content-inner {
    margin-left: 8px;
  }
  .pc-tab-line-contents .visual {
    left: 0;
    width: 100%;
  }
  .pc-tab-line-contents .visual > img {
    height: calc(520vw * 100 / 1280);
  }
  .pc-tab-line .tab-panel .pc-line-title {
    margin-top: 20px;
    font-size: calc(47vw * 100 / 1280);
  }
  .pc-tab-line .tab-panel .pc-line-disc {
    margin-top: 10px;
    font-size: calc(33vw * 100 / 1280);
  }
  .pc-tab-line .tab-panel .list-a {
    margin-top: 10px;
    font-size: calc(21vw * 100 / 1280);
  }
}
@media only screen and (max-width: 1000px) {
  .pc-tab-line .tab-text .pc-line-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .pc-tab-line.tab-a .lists {
    padding-top: 0;
  }
  .pc-tab-line .tab-text .pc-line-visual {
    min-height: auto;
  }
  .pc-tab-line-contents {
    height: auto;
    max-height: inherit;
    overflow: hidden;
  }
  .pc-tab-line-contents .content {
    min-height: inherit;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: calc(220vw * 100 / 320);
  }
  .pc-tab-line-contents .content-inner {
    max-width: inherit !important;
    position: relative;
    z-index: 1;
    padding: 20px 16px 30px;
    margin-left: 0;
  }
  .pc-tab-line-contents .visual {
    left: 0;
  }
  .pc-tab-line-contents .visual > img {
    height: calc(220vw * 100 / 320);
  }
  .pc-tab-line .tab-panel .pc-line-title {
    margin-top: 0;
    font-size: 2rem;
  }
  .pc-tab-line .tab-panel .pc-line-disc {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .pc-tab-line .tab-panel .list-a {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .pc-tab-line.tab-a.pc-tab--col2 .tab-list-a > li {
    width: 100%;
  }
  .pc-tab-line-contents .pc-link-more {
    padding: 0.85em 0.8em 0.85em 2.85em;
    font-size: 1.4rem;
  }
  .pc-tab-line-contents .pc-link-more::before {
    top: 10px;
  }
  .pc-tab-line-contents .pc-link-more::after {
    top: 19px;
  }
}
/* product-list */
.pc-product-list.lyt-col-a {
  width: 980px;
  margin: 0 auto;
}

.pc-product-list.lyt-col-a[class*=diff-col] > * {
  padding-left: 10px;
}

.pc-product-list a {
  text-align: center;
  text-decoration: none;
}

.pc-product-visual {
  margin-bottom: 10px;
}

.pc-product-size {
  font-size: 1.2rem;
}

.pc-product-title {
  font-size: 1.2rem;
}

.pc-product-disc {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1000px) {
  .pc-product-list.lyt-col-a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .pc-product-list.lyt-col-a[class*=diff-col] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pc-product-list.lyt-col-a.diff-col5 > * {
    width: 50%;
  }
}
/* product-bnr */
.pc-product-bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 980px;
  margin: 0 auto;
  padding: 25px;
  border: 1px solid #dcdcdc;
}

.pc-product-bnr-visual {
  margin-right: 40px;
}

.pc-product-bnr-disc {
  font-size: 1.5rem;
}

@media only screen and (max-width: 1000px) {
  .pc-product-bnr {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .pc-product-bnr {
    display: block;
  }
  .pc-product-bnr-visual {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }
  .pc-product-bnr-disc {
    font-size: 1.6rem;
  }
}
/* 見出し */
.pc-sec-header {
  display: flex;
  align-items: center;
}

.pc-sec-header_inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 16px;
}

.pc-sec-header .hdg-b {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pc-sec-header .sub-hdg-a {
  font-weight: 700;
}

/* ボタン */
.pc-btn-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-left: -40px;
  margin-bottom: -20px !important;
  justify-content: center;
}
.pc-btn-list[data-align=start] {
  justify-content: flex-start;
}
.pc-btn-list[data-align=end] {
  justify-content: flex-end;
}
.pc-btn-list[data-margin=half] {
  margin-top: 20px !important;
}

.pc-btn-list > li {
  margin: 0 0 20px 40px;
}

.pc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 335px;
  padding: 12px 32px;
  border-radius: 80px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  background: #000;
  color: #fff;
  transition: opacity 0.3s;
}
.pc-btn.pc-btn-movie {
  background: linear-gradient(155deg, #ea0000 0%, #FF8000 100%);
}

h2 + .pc-btn-list,
h3 + .pc-btn-list,
h4 + .pc-btn-list {
  margin-top: 20px;
}

.pc-btn:hover {
  opacity: 0.7;
}

/* ボタン 幅成り行き */
.pc-btn-list-auto .pc-btn {
  width: auto;
}

/* トップのスライダー */
.top-article-foot .pc-btn-list {
  margin-top: 16px;
  margin-bottom: 0 !important;
}

/* ボタン 右矢印アイコン */
.pc-btn-link {
  position: relative;
  width: 335px;
}

.pc-btn-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  right: 20px;
  margin-left: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  flex: none;
}

/* ボタン 下矢印アイコン */
.pc-btn-down {
  padding-right: 24px;
}

.pc-btn-down::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -2px;
  margin-left: 16px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg);
  flex: none;
}

/* ボタン 画像アイコン */
.pc-icon {
  max-width: 20px;
  margin-left: 4px;
  margin-right: 4px;
  vertical-align: text-top;
}

.pc-btn-icon .pc-icon {
  flex: none;
  margin-left: 16px;
  margin-right: 0;
}

@media only screen and (max-width: 1280px) {
  .diff-col3 .pc-btn-list,
  .diff-col3 .pc-btn-list > li,
  .diff-col3 .pc-btn {
    width: 100%;
  }
  .diff-col3 .pc-btn-list {
    margin-left: 0;
  }
  .diff-col3 .pc-btn-list > li {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .pc-btn-list {
    display: block;
    margin-top: 28px;
    margin-left: 0;
    margin-bottom: 0 !important;
  }
  .pc-btn-list > li {
    margin: 0;
  }
  .pc-btn-list > li + li {
    margin-top: 16px;
  }
  .pc-btn {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.pc-shortcut-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
  padding: 24px;
  background: #fff;
  text-decoration: none;
  transition: opacity 0.5s linear 0s;
}
.pc-shortcut-menu-item:hover {
  opacity: 0.7;
}

/* panel-link */
.pc-panel-link-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-bottom: -20px !important;
}

.pc-panel-link {
  display: flex;
  position: relative;
  align-items: center;
  padding: 16px 26px;
  width: auto;
  height: 100%;
  min-height: 110px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  border: 1px solid #ccc;
  background: #fff;
  transition: background 0.2s;
}

.pc-panel-link:hover,
.pc-panel-link:active,
.pc-panel-link:focus {
  background: #dcdcdc;
}

.pc-panel-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  right: 16px;
  margin-left: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  flex: none;
}

.pc-panel-link-list > li {
  width: 100%;
  margin: 0 0 20px 20px;
}

.pc-panel-link-col2 > li {
  width: calc(50% - 20px);
}

@media only screen and (max-width: 767px) {
  .pc-panel-link {
    min-height: auto;
  }
  .pc-panel-link-col2 > li {
    width: 100%;
  }
}
/* リスト */
/* list-check */
.pc-list-check {
  margin: 20px 0;
}

.pc-list-check > li {
  margin-bottom: 10px;
  padding-left: 26px;
  background: url(/platform/pc/content/products/images/icon-list-check.png) no-repeat left center;
  background-size: auto 16px;
}

.pc-list-check.pc-check-mobility > li {
  background: url(/platform/pc/content/products/images/icon-list-check_mobility.png) no-repeat left center;
  background-size: auto 16px;
}

.pc-list-check.pc-check-usability > li {
  background: url(/platform/pc/content/products/images/icon-list-check_usability.png) no-repeat left center;
  background-size: auto 16px;
}

/* 追従リンク */
#footer-conversion-inner .conv-list,
.is-fixed #footer-conversion-inner .conv-list {
  bottom: -3px;
}

#footer-conversion .conv-list > li > a {
  padding: 0;
  background-color: transparent;
}

#footer-conversion .conv-list > li img {
  max-height: 80px;
}

/* ＝＝＝＝＝＝＝＝ */
/*  　改革配下 　  */
/* ＝＝＝＝＝＝＝＝ */
/* レイアウト */
.pc-contents-sm {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 0;
}

.pc-contents-sm .lyt-item-a img {
  max-width: 400px;
}

@media only screen and (min-width: 768px) {
  .lyt-col-a.pc-lyt-col-center {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .pc-contents-sm .lyt-item-a img {
    max-width: 100%;
  }
}
.column-section .section-inner {
  max-width: 840px;
  margin: 0 auto;
}

/* メインビジュアル（追加背景） */
.lf-hero-a.pc-lf-hero::after {
  display: none;
}

.lf-hero-a.pc-lf-hero .lf-hero-contents {
  background-size: cover;
}

.lf-hero-a.pc-lf-hero .lf-hero-contents .lf-hero-contents-inner {
  margin-right: 16px;
}

@media only screen and (min-width: 1281px) {
  .lf-hero-a.pc-lf-hero .lf-hero-contents .lf-hero-contents-inner {
    width: 640px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 20px;
  }
  .lf-hero-a.pc-lf-hero .lf-hero-contents .lf-hero-contents-inner .lf-hero-desc {
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .lf-hero-a.pc-lf-hero .lf-hero-visual::before {
    display: none;
  }
}
.lf-hero-a.pc-sbg-h4-t2 .lf-hero-contents {
  color: #fff;
  background-image: url(/platform/pc/content/products/images/common/sbg-h4-t2.png);
} /* em-lm */
.lf-hero-a.pc-sbg-e3-t2 .lf-hero-contents {
  color: #fff;
  background-image: url(/platform/pc/content/products/images/common/sbg-e3-t2.png);
} /* mg-cy */
.lf-hero-a.pc-sbg-h2-t2 .lf-hero-contents {
  color: #fff;
  background-image: url(/platform/pc/content/products/images/common/sbg-h2-t2.png);
} /* rd-or */
.lf-hero-a.pc-sbg-h5-t2 .lf-hero-contents {
  color: #000;
  background-image: url(/platform/pc/content/products/images/common/sbg-h5-t2.png);
} /* or-yl */
.pc-none-lf-hero .lf-hero-contents {
  width: 100%;
}
@media only screen and (min-width: 1281px) {
  .pc-none-lf-hero .lf-hero-contents {
    padding: 80px 0;
  }
  .pc-none-lf-hero .lf-hero-contents .lf-hero-contents-inner {
    max-width: 1280px;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .pc-none-lf-hero .lf-hero-contents .lf-hero-contents-inner .lf-hero-hdg {
    font-size: 3.2rem;
  }
}

.pc-nav-parent .pc-nav-children-toggler, .pc-nav-inner > ul > li > a,
.pc-nav-inner > ul > li > label {
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  padding: 21px 34px;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .pc-nav-parent .pc-nav-children-toggler, .pc-nav-inner > ul > li > a,
  .pc-nav-inner > ul > li > label {
    padding: 14px 34px;
  }
}
.pc-nav-parent .pc-nav-children-toggler::before, .pc-nav-inner > ul > li > a::before,
.pc-nav-inner > ul > li > label::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  opacity: 0;
  transition: all 0.3s linear 0s;
  content: "";
}
.pc-nav-parent .pc-nav-children-toggler > span, .pc-nav-inner > ul > li > a > span,
.pc-nav-inner > ul > li > label > span {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.pc-nav-parent .pc-nav-children-toggler > span::before, .pc-nav-inner > ul > li > a > span::before,
.pc-nav-inner > ul > li > label > span::before {
  position: absolute;
  top: calc(50% - 6px);
  left: 20px;
  width: 12px;
  height: 12px;
  background-position: -106px -21px;
  background-image: url(/platform/pc/content/products/images/common/sprite_bk.png);
  content: "";
}
.pc-nav-parent .pc-nav-children-toggler:active::before, .pc-nav-inner > ul > li > a:active::before,
.pc-nav-inner > ul > li > label:active::before, .pc-nav-parent .pc-nav-children-toggler:focus::before, .pc-nav-inner > ul > li > a:focus::before,
.pc-nav-inner > ul > li > label:focus::before, .pc-nav-parent .pc-nav-children-toggler:hover::before, .pc-nav-inner > ul > li > a:hover::before,
.pc-nav-inner > ul > li > label:hover::before {
  opacity: 1;
}
.pc-nav-parent .pc-nav-children-toggler:active > span::before, .pc-nav-inner > ul > li > a:active > span::before,
.pc-nav-inner > ul > li > label:active > span::before, .pc-nav-parent .pc-nav-children-toggler:focus > span::before, .pc-nav-inner > ul > li > a:focus > span::before,
.pc-nav-inner > ul > li > label:focus > span::before, .pc-nav-parent .pc-nav-children-toggler:hover > span::before, .pc-nav-inner > ul > li > a:hover > span::before,
.pc-nav-inner > ul > li > label:hover > span::before {
  background-position: -106px -38px;
}
.pc-nav-parent .pc-nav-children-toggler > span::before, .pc-nav-parent .pc-nav-inner > ul > li > a > span::before,
.pc-nav-parent .pc-nav-inner > ul > li > label > span::before {
  left: auto;
  right: 30px;
  width: 12px;
  height: 7px;
  background-position: -106px -55px;
}
.pc-nav-parent .pc-nav-children-toggler:hover > span::before, .pc-nav-parent .pc-nav-inner > ul > li > a:hover > span::before,
.pc-nav-parent .pc-nav-inner > ul > li > label:hover > span::before {
  background-position: -106px -67px;
}

/* ナビ */
.pc-nav {
  background: #efefef;
  position: relative;
  z-index: 1;
  top: inherit;
  transition: top 0.2s;
}
.pc-nav + * {
  position: relative;
  z-index: 0;
}
.pc-nav::before {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.pc-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .pc-nav-inner {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 1000px) {
  .pc-nav-inner {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .pc-nav-inner {
    padding: 0;
  }
}
.pc-nav-inner > ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.pc-nav-inner > ul > li {
  box-sizing: border-box;
  flex: 1 1 0%;
  position: relative;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  min-height: 64px;
  line-height: 1.4;
  font-size: 1.6rem;
}
.pc-nav-inner > ul > li::before, .pc-nav-inner > ul > li::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 32px;
  margin-top: -16px;
  background: #b1b1ac;
  content: "";
}
.pc-nav-inner > ul > li::before {
  left: 0;
}
.pc-nav-inner > ul > li::after {
  right: -1px;
}
.pc-nav-inner > ul > li:first-child::before, .pc-nav-inner > ul > li:last-child::after {
  content: none;
}
.pc-nav-mobility .pc-nav-inner > ul > li > a:hover,
.pc-nav-mobility .pc-nav-inner > ul > li > label:hover {
  color: #fff;
}
.pc-nav-mobility .pc-nav-inner > ul > li > a::before,
.pc-nav-mobility .pc-nav-inner > ul > li > label::before {
  background-image: linear-gradient(138deg, #EA0000 0%, #EA0000 65%, #FF8000 100%);
}
.pc-nav-usability .pc-nav-inner > ul > li > a:hover,
.pc-nav-usability .pc-nav-inner > ul > li > label:hover {
  color: #fff;
}
.pc-nav-usability .pc-nav-inner > ul > li > a::before,
.pc-nav-usability .pc-nav-inner > ul > li > label::before {
  background-image: linear-gradient(146deg, #008224 0%, #008224 65%, #61D600 100%);
}
.pc-nav-performance .pc-nav-inner > ul > li > a:hover,
.pc-nav-performance .pc-nav-inner > ul > li > label:hover {
  color: #fff;
}
.pc-nav-performance .pc-nav-inner > ul > li > a::before,
.pc-nav-performance .pc-nav-inner > ul > li > label::before {
  background-image: linear-gradient(155deg, #D80084 0%, #D80084 60%, #00E7EF 120%);
}
@media only screen and (max-width: 767px) {
  .pc-nav-inner > ul {
    display: block;
  }
  .pc-nav-inner > ul > li {
    display: block;
    min-height: 0;
    border-bottom: 1px solid #3c3c3c;
    text-align: left;
  }
  .pc-nav-inner > ul > li::before, .pc-nav-inner > ul > li::after {
    content: none;
  }
}

.pc-nav-parent .pc-nav-children {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: auto;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 20px;
  background: #efefef;
  z-index: 0;
  transform: translateY(-60%) scaleY(0);
  opacity: 0;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (max-width: 1381px) {
  .pc-nav-parent .pc-nav-children {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .pc-nav-parent .pc-nav-children {
    position: relative;
    width: auto;
    height: 0;
    padding: 0;
    gap: 0;
  }
}
.pc-nav-parent .pc-nav-children-toggler {
  cursor: pointer;
  z-index: 1;
}
.pc-nav-parent .pc-nav-children-toggler > span::before {
  transition: transform 0.2s linear 0s;
}
.pc-nav-parent .pc-nav-child-item, .pc-nav-parent .pc-nav-child-link {
  display: block;
}
.pc-nav-parent .pc-nav-child-item {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc-nav-parent .pc-nav-child-item {
    border-top: 1px solid #3c3c3c;
    border-bottom: none;
  }
}
.pc-nav-parent .pc-nav-child-item::before, .pc-nav-parent .pc-nav-child-item::after {
  content: none;
}
.pc-nav-parent .pc-nav-child-link {
  font-size: 14px;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .pc-nav-parent .pc-nav-child-link {
    padding: 12px;
    text-align: center;
  }
}
.pc-nav-parent .pc-nav-child-link:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .pc-nav-parent .pc-nav-child-link:hover {
    pointer-events: none;
  }
}

.pc-nav-children-toggle-flag {
  display: none;
  position: relative;
  border: 1px solid black;
  width: 16px;
  height: 16px;
  z-index: 1;
}
.pc-nav-children-toggle-flag:checked + .pc-nav-parent .pc-nav-children {
  transform: translateY(0) scaleY(1);
  transform-origin: 0%;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .pc-nav-children-toggle-flag:checked + .pc-nav-parent .pc-nav-children {
    height: auto;
  }
}
.pc-nav-children-toggle-flag:checked + .pc-nav-parent .pc-nav-children-toggler {
  color: #fff;
}
.pc-nav-children-toggle-flag:checked + .pc-nav-parent .pc-nav-children-toggler::before {
  opacity: 1;
}
.pc-nav-children-toggle-flag:checked + .pc-nav-parent .pc-nav-children-toggler > span::before {
  background-position: -106px -67px;
  transform: rotate(180deg);
}

/* 見出し*/
.pc-hdg {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0 0 20px !important;
  padding-top: 68px;
  padding-bottom: 16px;
  border-bottom: 3px solid #6d6e70;
  position: relative;
}

.pc-hdg::before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 24.69%;
  height: 3px;
  min-width: 72px;
  background-color: #ea0000;
}

h2.pc-hdg sup {
  top: -1em;
}

.pc-hdg-bl::before {
  background-color: #2400b0;
}

.pc-hdg-or::before {
  background-color: #ff8000;
}

.pc-hdg-lm::before {
  background-color: #61d600;
}

.pc-hdg-em::before {
  background-color: #008224;
}

.pc-hdg-cy::before {
  background-color: #00e7ef;
}

.pc-hdg-mg::before {
  background-color: #d80084;
}

.pc-hdg-yl::before {
  background-color: #FFE700;
}

.pc-inbound-link-panel {
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.pc-inbound-link-panel:link {
  text-decoration: none;
}

.pc-hdg-no-margin {
  margin-top: 0 !important;
}

.hdg-c > a.pc-solid-link {
  text-decoration: underline;
  padding: 0;
}
.hdg-c > a.pc-solid-link::before {
  content: none;
}

@media only screen and (min-width: 768px) {
  .lyt-col-a.pc-lyt-hdg-double-lined .col h2,
  .lyt-col-a.pc-lyt-hdg-double-lined .col h3 {
    display: flex;
    align-items: center;
    height: 2.5em;
  }
  .lyt-col-a.pc-lyt-hdg-double-lined .col h2.center,
  .lyt-col-a.pc-lyt-hdg-double-lined .col h3.center {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .pc-hdg {
    margin: 34px 0 20px !important;
  }
}
@media only screen and (max-width: 480px) {
  .pc-hdg {
    font-size: 2rem;
  }
}
/* タグ */
.pc-hdg-tag {
  margin-left: 15px;
  padding: 4px 15px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: normal;
  white-space: nowrap;
  background: #6d6e70;
}

h2 .pc-hdg-tag {
  margin-left: 45px;
}

@media only screen and (max-width: 480px) {
  .pc-hdg-tag,
  .pc-hdg-tag-red {
    margin-left: 5px;
  }
}
/* 動画（レスポンシブ）*/
.pc-movie-a {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.pc-movie-a iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* table */
table th > img,
table td > img {
  min-width: 50px;
}

/* table スクロール */
.pc-table-a {
  margin-top: 34px;
  margin-bottom: 10px;
  border-collapse: collapse;
  font-size: 1.2rem;
}

.pc-table-a th {
  padding: 12px 16px;
  background: #efefef;
  border: 1px solid #b1b1ac;
}

.pc-table-a tbody th {
  font-weight: 400;
  background: #dcdcdc;
}

.pc-table-a td {
  padding: 12px 16px;
  text-align: center;
  vertical-align: middle;
  background: #ffffff;
  border: 1px solid #b1b1ac;
}

.pc-table-a td > *:first-child {
  margin-top: 0;
}

.pc-table-a caption {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}

.pc-table-a caption .pc-note {
  font-weight: normal;
  font-size: 1.4rem;
}

@media only screen and (max-width: 980px) {
  .pc-scroll-table {
    overflow: auto;
    padding-bottom: 20px;
    margin-top: 10px !important;
  }
  .pc-scroll-table .pc-table-a {
    margin-top: 0;
    width: 980px;
  }
}
@media only screen and (max-width: 767px) {
  .pc-table-list,
  .pc-table-list-thead {
    border-bottom: 1px solid #dcdcdc;
  }
  .pc-table-list,
  .pc-table-list-thead {
    border-bottom: 1px solid #dcdcdc;
  }
  .pc-table-list caption,
  .pc-table-list thead,
  .pc-table-list tbody,
  .pc-table-list tfoot,
  .pc-table-list tr,
  .pc-table-list th,
  .pc-table-list td,
  .pc-table-list-thead caption,
  .pc-table-list-thead tbody,
  .pc-table-list-thead tfoot,
  .pc-table-list-thead tr,
  .pc-table-list-thead th,
  .pc-table-list-thead td {
    display: block;
  }
  .pc-table-list tbody th,
  .pc-table-list tbody td {
    width: 100%;
    border-bottom: none;
  }
}
/* table 見出し固定+ハイライト */
.pc-table-hl td.hover,
.pc-table-hl tr.hover {
  background-color: #f7fdf2;
}

.pc-table-hl tbody td:hover {
  background-color: #e0f7ce;
}

.pc-table-hl colgroup col {
  width: 100px;
}

.pc-table-hl thead tr th.pc-table-fixed,
.pc-table-hl tbody tr th {
  position: sticky;
  width: 100px;
  left: 0;
  z-index: 1;
  background: #dcdcdc;
}

.pc-table-hl tbody tr th.pc-table-fixed {
  left: 99px;
}

.pc-table-hl thead tr th.pc-table-fixed:before,
.pc-table-hl tbody tr th:before,
.pc-table-hl thead tr th.pc-table-fixed:after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pc-table-hl thead tr th.pc-table-fixed:before,
.pc-table-hl tbody tr th:before {
  border-left: 1px solid #b1b1ac;
}

@media only screen and (max-width: 767px) {
  .pc-table-hl {
    table-layout: fixed;
  }
}
.pc-table-hl.pc-table-hl-normal thead tr th {
  font-weight: 400;
}

/* table 縦積み */
@media only screen and (max-width: 767px) {
  .pc-table-list,
  .pc-table-list-thead {
    border-bottom: 1px solid #dcdcdc;
  }
  .pc-table-list,
  .pc-table-list-thead {
    border-bottom: 1px solid #dcdcdc;
  }
  .pc-table-list caption,
  .pc-table-list thead,
  .pc-table-list tbody,
  .pc-table-list tfoot,
  .pc-table-list tr,
  .pc-table-list th,
  .pc-table-list td,
  .pc-table-list-thead caption,
  .pc-table-list-thead tbody,
  .pc-table-list-thead tfoot,
  .pc-table-list-thead tr,
  .pc-table-list-thead th,
  .pc-table-list-thead td {
    display: block;
  }
  .pc-table-list tbody th,
  .pc-table-list tbody td {
    width: 100%;
    border-bottom: none;
  }
}
/* 画面反転ユーティリティ */
.u-mt-68 {
  margin-top: 64px !important;
}

/* 見出し内注釈 */
.u-note-in-heading {
  display: flex;
}
.u-note-in-heading .pc-hdg-tag {
  align-self: center;
}
.u-note-in-heading .list-notes-a {
  font-weight: normal;
  margin-left: 25px;
  align-self: flex-end;
}
.u-note-in-heading .list-notes-a > li {
  width: auto;
}
.u-note-in-heading .list-notes-a > li > .item {
  width: auto;
}

/* フォントサイズ標準リスト */
.list-notes-a.diff-indent.list-no-mark > li {
  font-size: 1.6rem;
}

/* h3子見出し */
.pc-hdg-keyboard {
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .u-note-in-heading {
    display: block;
  }
  .u-note-in-heading .list-notes-a {
    margin-top: 10px;
    margin-left: 0;
  }
}
/* ＝＝＝＝＝＝＝＝ */
/*table ラインナップ*/
/* ＝＝＝＝＝＝＝＝ */
/* table ラインナップ/レイアウト */
.pc-lineup {
  position: relative;
  width: 1280px;
  font-size: 1.4rem;
  overflow-x: scroll;
  padding-bottom: 0;
  margin-top: 10px !important;
  z-index: 9999;
}

.pc-lineup .pc-table-a {
  margin-top: 0;
  width: 2164px;
  height: 100%;
}

.pc-lineup .pc-lineup-head .pc-table-a,
.pc-lineup .pc-lineup-body .pc-table-a {
  display: flex;
  margin-bottom: 0;
}

.pc-lineup-description,
.pc-lineup .pc-lineup-body .pc-lineup-body__icons {
  font-family: FujitsuInfinityPro-Regular, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", sans-serif;
}

.pc-lineup .pc-lineup-head.pc-fixed {
  position: fixed;
  top: 0;
  width: 1280px;
  overflow-x: scroll;
  z-index: 100;
}

.pc-lineup .pc-lineup-head.pc-fixed.pc-stay {
  position: absolute;
  display: table;
  top: auto;
  bottom: 0;
}

.pc-lineup .pc-lineup-head thead tr th.pc-table-blank {
  position: sticky;
}

.pc-lineup thead tr th {
  height: 45px;
}

.pc-lineup thead tr th.pc-lineup-headline {
  width: 200px;
  height: auto;
}

.pc-lineup thead tr th.pc-table-blank {
  width: 364px;
  top: 0;
  left: 0;
  background: #ffffff;
  border-top: none;
  border-left: none;
  z-index: 9999;
}

.pc-lineup thead tr th.pc-table-blank::before {
  left: -1px;
  border: 1px solid #ffffff;
}

.pc-lineup tbody tr th:first-child {
  width: 114px; /* 2 */
}

.pc-lineup tbody tr th[colspan="3"] {
  width: 364px; /* 1 */
}

.pc-lineup tbody tr th[colspan="2"] {
  width: 250px; /* 3 */
  left: 114px;
}

.pc-lineup tbody tr th.pc-table-blank,
.pc-lineup tbody tr th.pc-table-second {
  width: 80px; /* 4 */
  left: 114px;
}

.pc-lineup tbody tr th:first-child + th + th,
.pc-lineup tbody tr th.pc-table-blank + th,
.pc-lineup tbody tr th.pc-table-second + th {
  width: 170px; /* 5 */
  left: 194px;
}

.pc-lineup tbody td {
  width: 200px;
}

.pc-lineup thead tr th.pc-table-blank::after,
.pc-lineup thead tr th::after,
.pc-lineup tbody tr th::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #b1b1ac;
  border-bottom: 1px solid #b1b1ac;
  z-index: -1;
}

.pc-lineup thead tr th.pc-table-blank::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border-left: 1px solid #ffffff;
}

@media only screen and (max-width: 1280px) {
  .pc-lineup,
  .pc-lineup .pc-lineup-head.pc-fixed {
    width: 96%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .pc-lineup .pc-table-a {
    margin-top: 0;
    width: 1765px;
  }
  .pc-lineup tr th,
  .pc-lineup tr td {
    padding: 5px;
  }
  .pc-lineup thead tr th.pc-table-blank,
  .pc-lineup tbody tr th[colspan="3"],
  .pc-lineup tbody tr th.disp-sp {
    width: 145px !important;
    left: 0 !important;
  }
  .pc-lineup thead tr th.pc-lineup-headline,
  .pc-lineup tbody td {
    width: 180px;
  }
}
/* table ラインナップ/ハイライト */
.pc-lineup th.pc-lineup-headline {
  table-layout: fixed;
  background-color: #ffffff;
}

.pc-lineup th.pc-lineup-headline.hover,
.pc-lineup tbody tr th.pc-table-fixed.hover {
  background-color: #f7fdf2;
}

.pc-lineup th.pc-lineup-headline:hover,
.pc-lineup tbody tr th.pc-table-fixed:hover {
  background-color: #e0f7ce;
}

/* table ラインナップ/見出し（列） */
.pc-lineup th.pc-lineup-col-headline {
  background: #dcdcdc;
}

.pc-lineup-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.pc-lineup-summary .pc-btn,
.pc-lineup-spec .pc-btn {
  width: 130px;
  margin: 0 auto;
  padding: 8px;
  font-size: 1.4rem;
}

.pc-lineup-summary .pc-btn.pc-btn-link::after,
.pc-lineup-spec .pc-btn.pc-btn-link::after {
  right: 12px;
}

.pc-lineup-spec .pc-btn {
  margin-top: 12px;
}

/* table ラインナップ/見出し（行） */
.pc-lineup tbody tr th {
  text-align: left;
  background: #efefef;
}

.pc-lineup tbody tr th.pc-table-fixed {
  background: #ffffff;
}

.pc-lineup tbody tr th.pc-table-fixed.pc-table-blank {
  border: none;
}

.pc-lineup tbody tr th.pc-table-fixed.pc-table-blank:first-child::before {
  top: -1px;
  border-top: 1px solid #ffffff;
}

.pc-lineup .pc-hdg-tag-rd {
  padding: 4px 12px;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  background: #ea0000;
}

@media only screen and (max-width: 767px) {
  .pc-lineup .pc-hdg-tag-rd {
    padding: 4px 12px;
    font-size: 1.2rem;
  }
}
.pc-lineup .pc-link-more {
  padding: 0.35em 0.8em 0.35em 2.75em;
  text-decoration: none;
  font-size: 1em;
}

.pc-lineup .pc-link-more::before {
  top: 0;
}

.pc-lineup .pc-link-more::after {
  top: 9px;
}

.pc-lineup .pc-link-more:hover::before {
  animation: 0.5s linear 1 forwards link-circle-a;
}

.pc-lineup-notes {
  margin: 40px 0 0;
}

.pc-lineup-navigations {
  position: absolute;
  top: 0;
  width: auto;
  margin: 0 !important;
  z-index: 10000;
}

.pc-lineup-navigations .pc-lineup-navigation {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -35px;
  border: 1px solid #000;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  text-indent: -9999px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0.5;
  z-index: 1;
  cursor: pointer;
}

.pc-lineup-navigations .pc-lineup-navigation:hover {
  opacity: 1;
}

.pc-lineup-navigations .pc-lineup-navigation::before {
  position: absolute;
  border-color: #000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000;
  border-style: solid;
  border-width: 2px;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  top: 10px;
}

.pc-lineup-navigations .pc-lineup-navigation[data-scroll-to=prev] {
  right: auto;
  left: 10px;
}

.pc-lineup-navigations .pc-lineup-navigation[data-scroll-to=prev]::before {
  left: 15px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pc-lineup-navigations .pc-lineup-navigation[data-scroll-to=next] {
  right: 10px;
  left: auto;
}

.pc-lineup-navigations .pc-lineup-navigation[data-scroll-to=next]::before {
  right: 15px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media only screen and (max-width: 767px) {
  .pc-lineup-navigations {
    display: none;
  }
}
/* ＝＝＝＝＝＝＝＝ */
/*  　コンセプト　  */
/* ＝＝＝＝＝＝＝＝ */
/* 見出し（サークル） */
.pc-hero-area-c {
  display: flex;
  min-height: 320px;
  color: #ffffff;
  background-color: #3c3c3c;
}

.pc-hero-area-c .content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.pc-hero-area-c .content-text {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.pc-hero-area-c .content-text-inner {
  width: 60%;
}

.pc-hero-area-c .content-text .main-txt {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.pc-hero-area-c .content-text .sub-txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.pc-hero-area-c .content-text .content-desc {
  margin-top: 10px;
}

.pc-hero-area-c .visual {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 320px;
  width: 100%;
  overflow: hidden;
}

.pc-hero-area-c .visual > img {
  position: absolute;
  top: calc(50% - 305px);
  right: -170px;
  z-index: -1;
  max-width: inherit;
  width: 550px;
  display: block;
}

.section + .pc-hero-area-c,
.pc-nav + .pc-hero-area-c {
  margin-top: 95px;
}

.hdg-b.diff-scene span {
  font-size: 2.2rem;
}

@media only screen and (max-width: 1280px) {
  .pc-hero-area-c {
    min-height: inherit;
    max-height: 320px;
    height: calc(320vw * 100 / 1280);
  }
  .pc-hero-area-c .content-text {
    margin-left: 8px;
  }
  .pc-hero-area-c .content-text .main-txt {
    font-size: calc(32vw * 100 / 1280);
  }
  .pc-hero-area-c .content-text .content-desc {
    font-size: 1.4rem;
  }
  .pc-hero-area-c .visual {
    min-height: inherit;
    height: calc(320vw * 100 / 1280);
  }
}
@media only screen and (max-width: 1000px) {
  .pc-hero-area-c .visual > img {
    top: calc(50% - 205px);
    right: -55px;
    width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .pc-hero-area-c {
    height: auto;
    max-height: inherit;
    min-height: calc(260vw * 100 / 1000);
    overflow: hidden;
  }
  .pc-hero-area-c .content {
    padding-top: 0;
  }
  .pc-hero-area-c .content-text {
    padding: 20px;
    max-width: inherit;
    margin-left: 0;
  }
  .pc-hero-area-c .content-text-inner {
    width: 100%;
  }
  .pc-hero-area-c .content-text .main-txt {
    font-size: 2.4rem;
  }
  .pc-hero-area-c .content-text .sub-txt {
    font-size: 2rem;
  }
  .pc-hero-area-c .content-text .content-desc {
    font-size: 1.4rem;
  }
  .pc-hero-area-c .visual {
    display: none;
  }
  .section + .pc-hero-area-c,
  .pc-nav + .pc-hero-area-c {
    margin-top: 40px;
  }
}
/* 機能紹介 */
.pc-feature_title {
  font-size: 2rem;
  font-weight: 700;
}

.pc-feature_off {
  margin-bottom: 0;
  padding: 6px;
  font-weight: 700;
  background: #ffffff;
}

.pc-feature_on {
  margin-bottom: 0;
  padding: 6px;
  color: #ffffff;
  font-weight: 700;
  background: #ea0000;
}

@media only screen and (max-width: 767px) {
  .lyt-col-a[class*=diff-col].pc-feature-sp-col2 {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -16px;
  }
  .lyt-col-a.diff-col2.pc-feature-sp-col2 > * {
    width: 50%;
    padding-left: 16px;
    padding-bottom: 16px;
  }
  .pc-feature_off {
    padding: 4px;
  }
  .pc-feature_on {
    padding: 4px;
  }
}
/* タブ（縦） */
.pc-tab-em.tab-d .lists {
  border-right: 1px solid #008224;
}

.pc-tab-em.tab-d .tab-list-d > li.is-active a {
  border-color: #008224;
}

.pc-tab-em .tabs-d {
  padding: 60px 0;
  background: #ffffff;
}

@media only screen and (max-width: 767px) {
  .pc-tab-em.tab-d .lists {
    border: 0;
  }
}
/* ＝＝＝＝＝＝＝＝ */
/* 　　　特設　　　 */
/* ＝＝＝＝＝＝＝＝ */
/* シリーズの特長 */
.diff-bg-pc-feature {
  background-image: url(/platform/pc/content/products/images/common/sbg-e1-t4.png);
  background-position: right bottom;
  background-size: 220%;
}

.diff-bg-pc-feature ul {
  font-size: 2rem;
}

.diff-bg-pc-feature .pc-btn-list {
  justify-content: left;
}

.diff-bg-pc-feature .lyt-panel-a {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .diff-bg-pc-feature .panel-content-hdg {
    margin-top: 0;
  }
}
/* シリーズの特長パネル */
.lyt-panel-a + .pc-panel-detail {
  margin-top: -20px;
}

.pc-panel-detail {
  margin: 0 auto 20px;
  padding: 24px;
  background: #ffffff;
}

.pc-panel-detail-hdg {
  text-align: left;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 32px;
}

h3.pc-panel-detail-hdg {
  font-size: 2rem;
  margin-bottom: 16px;
}

h4.pc-panel-detail-hdg {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  h2.pc-panel-detail-hdg {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
}
/* ドロップダウン */
.pc-dropdown {
  margin: 20px auto;
}

.pc-dropdown-btn {
  cursor: pointer;
  margin: 20px auto;
}

.pc-dropdown-btn.pc-btn-link::before,
.pc-dropdown-btn.pc-btn-link::after {
  content: none;
}

.pc-dropdown-btn span {
  position: inherit;
}

.pc-dropdown-btn span::before,
.pc-dropdown-btn span::after {
  content: "";
  display: block;
  position: absolute;
}

.pc-dropdown-btn span::before {
  width: 26px;
  height: 26px;
  border: 1px solid;
  border-radius: 50%;
  left: -40px;
  top: 0;
}

.pc-dropdown-btn span::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  left: -31px;
  top: 7px;
  transform: rotate(135deg);
}

.pc-dropdown-btn.is-open span::after {
  top: 10px;
  transform: rotate(-45deg);
}

/* パネルアコーディオン */
[data-script-enabled=true] .list-accordion-a > li .toggle-hook {
  padding: 0 0 0 34px;
  position: relative;
}

.list-accordion-a > li .toggle-hook {
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}

[data-script-enabled=true] .list-accordion-a > li .toggle-hook::before,
[data-script-enabled=true] .list-accordion-a > li .toggle-hook::after {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0.6em;
  background: #706f67;
  width: 20px;
  height: 2px;
}

[data-script-enabled=true] .list-accordion-a > li.is-close .toggle-hook::after {
  width: 2px;
  height: 20px;
  margin-top: -9px;
  left: 9px;
}

[data-script-enabled=true] .list-accordion-a li .toggle-txt {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  font-size: 1rem;
  opacity: 0;
}

[data-script-enabled=true] .pc-accordion-device.list-accordion-a > li .toggle-hook::before {
  width: 26px;
  height: 26px;
  border: 1px solid;
  border-radius: 50%;
  left: 0;
  top: 0;
  background: transparent;
}

[data-script-enabled=true] .pc-accordion-device.list-accordion-a > li .toggle-hook::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  left: 9px;
  top: 16px;
  transform: rotate(135deg);
  background: transparent;
}

[data-script-enabled=true] .pc-accordion-device.list-accordion-a > li.is-open .toggle-hook::after {
  top: 9px;
  transform: rotate(-45deg);
}

.pc-accordion-device .toggle-hook {
  color: #ffffff;
}

.pc-accordion-device.list-accordion-a > li {
  border-bottom: none;
  margin-bottom: 20px;
  padding: 0;
}

.pc-accordion-device > .js-toggle > .lyt-panel-a > .panels {
  color: #ffffff;
  font-weight: normal;
  background-color: #3c3c3c;
}

.pc-accordion-device .lyt-panel-a .panel-content .panel-content-hdg {
  color: #ffffff;
}

.pc-accordion-device.list-accordion-a > li > .toggle-content {
  margin-top: 0;
  padding: 10px 34px 34px;
  background-color: #efefef;
}

.pc-accordion-device.list-accordion-a > li > .toggle-content .lyt-panel-a .panels {
  background-color: transparent;
}

.pc-accordion-device.list-accordion-a > li > .toggle-content .lyt-panel-a .panels .panel-content-hdg {
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .pc-accordion-device .pc-hdg {
    margin-top: 16px;
  }
  .pc-accordion-device .lyt-panel-a .panel-content {
    padding-bottom: 32px;
  }
  .pc-accordion-device .lyt-panel-a .panel-content .panel-content-hdg {
    margin-bottom: 16px;
  }
  [data-script-enabled=true] .pc-accordion-device.list-accordion-a > li .toggle-hook {
    margin-top: 16px;
  }
}
/* 360°回転 */
.pc-360-content {
  margin: 0 auto;
  max-width: 720px;
  max-height: 460px;
}

.pc-360-content-inner {
  left: 0px;
  width: 100%;
  height: 0px;
  position: relative;
  padding-bottom: calc(460 / 720 * 100%);
  overflow: hidden;
}

.pc-360-content iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 1px;
  min-width: 100%;
}

/* card-link */
.pc-card-link .col {
  display: flex;
  flex-direction: column;
}

.pc-card-link .pc-card-title {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pc-card-link .pc-card-body {
  flex: auto;
}

.pc-card-hdg {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.pc-card-link .lyt-img-b + p {
  margin-top: 10px !important;
}

.pc-card-link {
  margin-top: 10px !important;
}

/* 仮設定*/
.pc-card-link .pc-card-title.line-2 {
  min-height: 74px;
}

.pc-panel-detail .pc-card-link .pc-card-title {
  justify-content: left;
}

.pc-panel-detail h4.pc-card-hdg {
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: left;
}

/* ＝＝＝＝＝＝＝＝ */
/*gig5-country上書き*/
/* ＝＝＝＝＝＝＝＝ */
/* 見出し */
h2.hdg-b + h3.hdg-b {
  margin-top: 0;
}

.hdg-b.pc-noborder {
  padding-bottom: 0;
  border-bottom: none;
}

/* 注釈 */
.pc-scroll-table + .list-notes-a li,
.pc-table-a + .list-notes-a li,
.lyt-img-b + .list-notes-a li {
  margin-top: 4px;
}

/* ＝＝＝＝＝＝＝＝ */
/*  ユーティリティ  */
/* ＝＝＝＝＝＝＝＝ */
/* テキストカラー */
.pc-color-bl {
  color: #2400b0;
}

/* 背景色 */
/* 単色 */
.pc-bg-rd {
  background: #ea0000;
  color: #fff;
}

.pc-bg-bl {
  background: #2400b0;
  color: #fff;
}

.pc-bg-em {
  background: #008224;
  color: #fff;
}

.pc-bg-mg {
  background: #d80084;
  color: #fff;
}

/* テクスチャ */
*[class*=pc-bg-sb-] {
  background-repeat: no-repeat;
  background-size: cover;
}

.pc-bg-sb-bl-cy-t2 {
  background-image: url(/platform/pc/content/products/images/sb-h3-t2.png);
  background-position: center center;
  color: #fff;
}

.pc-bg-sb-or-yl-t3 {
  background-image: url(/platform/pc/content/products/images/sb-h5-t3.png);
  background-position: left bottom;
  background-size: 120%;
  color: #000;
}

.pc-bg-sb-cy-yl-t2 {
  background-image: url(/platform/pc/content/products/images/sb-e1-t2.png);
  background-position: right bottom;
  background-size: 220%;
  color: #000;
}

@media only screen and (max-width: 1280px) {
  .pc-bg-sb-or-yl-t3 {
    background-size: cover;
  }
  .pc-bg-sb-cy-yl-t2 {
    background-size: cover;
  }
}
/* アクセントカラー */
.pc-accordion-or.js-toggle > .lyt-panel-a {
  border-left: 4px solid #ff8000;
}

.pc-accordion-lm.js-toggle > .lyt-panel-a {
  border-left: 4px solid #61d600;
}

.pc-accordion-cy.js-toggle > .lyt-panel-a {
  border-left: 4px solid #00e7ef;
}

.pc-accordion-mg.js-toggle > .lyt-panel-a {
  border-left: 4px solid #d80084;
}

.pc-accordion-or .pc-feature_on {
  color: #000000;
  background-color: #ff8000;
}

.pc-accordion-lm .pc-feature_on {
  color: #000000;
  background-color: #61d600;
}

.pc-accordion-cy .pc-feature_on {
  color: #000000;
  background-color: #00e7ef;
}

.pc-accordion-mg .pc-feature_on {
  color: #000000;
  background-color: #d80084;
}

/* 余白 */
.pc-mt-0 {
  margin-top: 0 !important;
}

.pc-mt-5 {
  margin-top: 5px !important;
}

.pc-mt-10 {
  margin-top: 10px !important;
}

.pc-mt-15 {
  margin-top: 15px !important;
}

.pc-mt-20 {
  margin-top: 20px !important;
}

.pc-mb-0 {
  margin-bottom: 0 !important;
}

.pc-mb-5 {
  margin-bottom: 5px !important;
}

.pc-mb-10 {
  margin-bottom: 10px !important;
}

.pc-mb-15 {
  margin-bottom: 15px !important;
}

.pc-mb-20 {
  margin-bottom: 20px !important;
}

.pc-mb-40 {
  margin-bottom: 40px !important;
}

.pc-pt-0 {
  padding-top: 0 !important;
}

.pc-pt-5 {
  padding-top: 5px !important;
}

.pc-pt-10 {
  padding-top: 10px !important;
}

.pc-pt-15 {
  padding-top: 15px !important;
}

.pc-pt-20 {
  padding-top: 20px !important;
}

.pc-pb-0 {
  padding-bottom: 0 !important;
}

.pc-pb-5 {
  padding-bottom: 5px !important;
}

.pc-pb-10 {
  padding-bottom: 10px !important;
}

.pc-pb-15 {
  padding-bottom: 15px !important;
}

.pc-pb-20 {
  padding-bottom: 20px !important;
}

.pc-pb-40 {
  padding-bottom: 40px !important;
}

/* 幅 */
.pc-w-10 {
  width: 10%;
}

.pc-w-20 {
  width: 20%;
}

.pc-w-30 {
  width: 30%;
}

.pc-w-40 {
  width: 40%;
}

.pc-w-50 {
  width: 50%;
}

/* Wrap URL Phares */
.pc-phrase-url {
  word-break: break-all;
}

/* For Workstyle Henkaku only */
.wsh-lyt-col-a {
  display: flex;
  justify-content: center;
}

.wsh-lyt-col-a .col {
  max-width: 620px;
}

/* 20230713_YOMIKO_temp_sagyo_for_newHeader */
@media only screen and (min-width: 1000px) {
  .toggle-nav .second-nav > li > a {
    display: none;
  }
  .toggle-nav .third-nav > li {
    width: 33%;
  }
  .toggle-nav .third-nav .js-toggle-sp > a {
    pointer-events: none;
    user-focus: none;
    padding-left: 0px;
  }
  .toggle-nav .third-nav .js-toggle-sp > a::before {
    display: none;
  }
}
.is-fixed #footer-conversion #footer-conversion-inner .conv-list, #footer-conversion #footer-conversion-inner .conv-list {
  transform: translateY(100%);
  opacity: 0;
}
.is-fixed #footer-conversion #footer-conversion-inner .conv-list.is-active, #footer-conversion #footer-conversion-inner .conv-list.is-active {
  animation: 0.3s ease-out 6s forwards banner-pop;
}

@keyframes banner-pop {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  80% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

body{
  overflow-x: hidden;
}

.u-ta-r{
  display: none;
}

@media only screen and (max-width: 767px) {
  .fmw-nav-wrapper{
    display: none;
  }
}

/* ldp_interview202312 */
.ldp_interview202312 #related_link,
.usability #related_link,
.movie #related_link{
  display: none;
}
.ldp_interview202312 .main-contents .section-inner,
.usability .main-contents .section-inner,
.movie .main-contents .section-inner{
  max-width: 1080px;
}

/* usability */
.usability .pc-hero-area-c{
  margin-top: 10px;
}

/* movie */
.movie .pc-related{
  margin-bottom: 30px;
}