@charset "UTF-8";
/*------------------------------------------------------------------------------

  Common

------------------------------------------------------------------------------*/
/*
  Utility
------------------------------------------------------------------------------*/
.pcOnly {
  display: block;
}

@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

.pcOnly-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .pcOnly-ib {
    display: none;
  }
}

.spOnly-ib {
  display: none;
}

@media only screen and (max-width: 767px) {
  .spOnly-ib {
    display: inline-block;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media print, screen and (min-width: 768px) {
  .p0 {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .p0 {
    padding-top: 0 !important;
    border-bottom: 1px solid #eaeced;
  }
}

/*
  Transition
------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .link_hover {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

.link_hover:hover {
  color: #fa0000 !important;
}

.link_opacity {
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .link_opacity {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

@media print, screen and (min-width: 768px) {
  .link_opacity:hover {
    opacity: .75;
  }
}

@media print, screen and (min-width: 768px) {
  .img_hover img {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}

@media print, screen and (min-width: 768px) {
  .img_hover:hover img {
    opacity: .85;
  }
}

.btn_hover:hover .mod-btn > * {
  background-color: #fa0000;
  background-position: -100% 100%;
  color: #fff;
}

.border_underLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-bottom: 2px solid #e6e6e6;
}

.border_underLine::before, .border_underLine::after {
  content: '';
  position: absolute;
  display: block;
}

.border_underLine::before {
  width: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  height: 2px;
  top: 100%;
  left: 0;
  background-color: #fa0000;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.border_underLine::after {
  height: 2px;
  background-color: #fa0000;
  top: 100%;
  right: 0;
}

@media print, screen and (min-width: 768px) {
  .border_underLine::after {
    width: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .border_underLine::after {
    width: 8vw;
  }
}

/*
  Lazy
------------------------------------------------------------------------------*/
.delighter .d-fadeIn {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0;
}

.delighter .d-fadeIn.delay {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.delighter .lazy {
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.delighter.started .d-fadeIn {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.delighter.started .lazy {
  opacity: 1;
}

/*
  Icon
------------------------------------------------------------------------------*/
.arrow_hover {
  position: relative;
}

.arrow_hover:hover .icon_arrow::after {
  -webkit-animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
  animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
}

.arrow_hover:hover .border_underLine::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.arrow_hover:hover .arrow_diagonal-g::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}

.arrow_hover:hover .icon_arrow-g::after {
  background-image: url(/shared/img/icon/icon_arrow.svg);
}

.arrow_hover.arrow_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.arrow_hover .inner_txt {
  margin-right: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.arrow_hover.reverse:hover .icon_arrow::after {
  -webkit-animation: arrowSlide_r 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
  animation: arrowSlide_r 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
}

.shift_hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media print, screen and (min-width: 768px) {
  .shift_hover:hover {
    -webkit-box-shadow: 0 5px 20px 0 rgba(4, 0, 0, 0.1);
    box-shadow: 0 5px 20px 0 rgba(4, 0, 0, 0.1);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

@media only screen and (max-width: 767px) {
  .shift_hover:hover {
    -webkit-box-shadow: 0 1.33333vw 5.33333vw 0 rgba(4, 0, 0, 0.1);
    box-shadow: 0 1.33333vw 5.33333vw 0 rgba(4, 0, 0, 0.1);
    -webkit-transform: translateY(-0.8vw);
    transform: translateY(-0.8vw);
  }
}

.icon_arrow {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .icon_arrow {
    margin-left: 13px;
    width: 12px;
    height: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow {
    margin-left: 2.93333vw;
    width: 3.2vw;
    height: 3.46667vw;
  }
}

.icon_arrow::after {
  content: '';
  position: absolute;
  display: block;
  background: url(/shared/img/icon/icon_arrow.svg) center/contain no-repeat;
  top: 0;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .icon_arrow::after {
    width: 12px;
    height: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow::after {
    width: 3.2vw;
    height: 3.46667vw;
  }
}

.icon_arrow.reverse::after {
  background-image: url(/shared/img/icon/icon_arrow_r.svg);
}

@media print, screen and (min-width: 768px) {
  .icon_arrow.arrow_diagonal, .icon_arrow.arrow_diagonal-g {
    width: 12px;
    height: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow.arrow_diagonal, .icon_arrow.arrow_diagonal-g {
    width: 3.2vw;
    height: 3.46667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .icon_arrow.arrow_diagonal::after, .icon_arrow.arrow_diagonal-g::after {
    width: 12px;
    height: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow.arrow_diagonal::after, .icon_arrow.arrow_diagonal-g::after {
    width: 3.2vw;
    height: 3.46667vw;
  }
}

.icon_arrow.arrow_diagonal {
  position: absolute;
  display: block;
  margin-left: 0;
}

.icon_arrow.arrow_diagonal::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}

.icon_arrow.arrow_diagonal-g {
  margin-left: 10px;
}

.icon_arrow.arrow_diagonal-g::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal_g.svg);
}

.icon_arrow.icon_arrow-w::after {
  background-image: url(/shared/img/icon/icon_arrow_w.svg);
}

.icon_arrow.icon_arrow-g::after {
  background-image: url(/shared/img/icon/icon_arrow_g.svg);
}

.icon_arrow.icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}

@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_dl {
    width: 11px;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow.icon_dl {
    width: 2.93333vw;
    height: 3.73333vw;
  }
}

.icon_arrow.icon_dl::after {
  background-image: url(/shared/img/icon/icon_dl.svg);
}

@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_dl::after {
    width: 11px;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow.icon_dl::after {
    width: 2.93333vw;
    height: 3.73333vw;
  }
}

.icon_arrow.icon_after {
  margin-right: 0;
}

@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_after {
    margin-left: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_arrow.icon_after {
    margin-left: 2.13333vw;
  }
}

.icon_pdf::before, .icon_pdf::after {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  position: relative;
  top: -1px;
}

.icon_pdf::before {
  position: relative;
  content: 'PDF';
  color: #fff;
  background-color: #000;
  text-align: center;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media print, screen and (min-width: 768px) {
  .icon_pdf::before {
    margin-left: 13px;
    font-size: 10px;
    padding: 1px 2px;
    width: 28px;
    top: -2px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_pdf::before {
    margin-left: 2.4vw;
    font-size: 10px;
    font-size: 2.66667vw;
    padding: 0.26667vw 0.53333vw;
    width: 7.46667vw;
    top: -0.53333vw;
  }
}

.icon_pdf[data-size]::after {
  content: "(" attr(data-size) ")";
  color: #555;
}

@media print, screen and (min-width: 768px) {
  .icon_pdf[data-size]::after {
    font-size: 12px;
    margin-left: 7px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_pdf[data-size]::after {
    font-size: 12px;
    font-size: 3.2vw;
    margin-left: 1.86667vw;
  }
}

.icon_contact {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .icon_contact {
    width: 25px;
    height: 20px;
    margin-right: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_contact {
    width: 6.66667vw;
    height: 5.33333vw;
    margin-right: 4.8vw;
  }
}

.icon_contact::before {
  content: '';
  position: absolute;
  display: block;
  background: url(/shared/img/icon/icon_contact_w.svg) center/contain no-repeat;
  top: 0;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .icon_contact::before {
    width: 25px;
    height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_contact::before {
    width: 6.66667vw;
    height: 5.33333vw;
  }
}

.inline-link {
  color: #777;
  text-decoration: underline;
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .inline-link {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 767px) {
  .inline-link {
    margin: 0 1.33333vw;
  }
}

.inline-link:hover {
  color: #fa0000;
  text-decoration: none;
}

.inline-link [class^="icon_"] {
  margin-right: 0;
}

@media print, screen and (min-width: 768px) {
  .inline-link [class^="icon_"] {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .inline-link [class^="icon_"] {
    margin-left: 1.33333vw;
  }
}

.inline-link .icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal_g.svg);
}

.inline-link:hover .icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}

.circle_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media print, screen and (min-width: 768px) {
  .circle_line .circle_txt {
    padding-left: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .circle_line .circle_txt {
    padding-left: 3.2vw;
  }
}

[class*="icon_circle"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media print, screen and (min-width: 768px) {
  [class*="icon_circle"] {
    width: 34px;
    height: 34px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media only screen and (max-width: 767px) {
  [class*="icon_circle"] {
    width: 9.06667vw;
    height: 9.06667vw;
  }
}

[class*="icon_circle"]::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  padding-left: 2px;
  font-family: "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  top: 0;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  [class*="icon_circle"]::before {
    width: 34px;
    height: 34px;
    font-size: 10px;
    margin-top: 1px;
  }
}

@media only screen and (max-width: 767px) {
  [class*="icon_circle"]::before {
    width: 9.06667vw;
    height: 9.06667vw;
    font-size: 10px;
    font-size: 2.66667vw;
  }
}

.icon_circle-new::before {
  content: 'NEW';
  border-color: #fa0000;
  color: #fa0000;
}

.icon_circle-limited::before {
  content: '限定';
  border-color: #09a501;
  color: #09a501;
}

.icon_circle-up::before {
  content: 'UP';
  border-color: #ff7200;
  color: #ff7200;
}

.icon_circle-special::before {
  content: '特典';
  border-color: #3a61ce;
  color: #3a61ce;
}

.icon_circle-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon_circle-middle::before {
  margin-top: 0;
}

.icon_circle-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.icon_circle-center::before {
  margin-top: 0;
}

@media print, screen and (min-width: 768px) {
  .icon_circle-fill {
    width: 14px;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circle-fill {
    width: 3.46667vw;
    height: 3.46667vw;
  }
}

.icon_circle-fill::before {
  content: '';
  border: none;
  background-color: #222;
}

@media print, screen and (min-width: 768px) {
  .icon_circle-fill::before {
    width: 14px;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circle-fill::before {
    width: 3.46667vw;
    height: 3.46667vw;
  }
}

.icon_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin: auto;
}

@media print, screen and (min-width: 768px) {
  .icon_line {
    width: 9px;
    height: 1px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_line {
    width: 2.13333vw;
    height: 0.26667vw;
  }
}

.icon_line::before {
  content: '';
  position: absolute;
  display: block;
  background-color: #5d5d5d;
}

@media print, screen and (min-width: 768px) {
  .icon_line::before {
    width: 9px;
    height: 1px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_line::before {
    width: 2.13333vw;
    height: 0.26667vw;
  }
}

.icon_generic {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .icon_generic {
    margin-right: 5px;
    width: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_generic {
    margin-right: 1.33333vw;
    width: 6.4vw;
  }
}

.icon_generic img {
  vertical-align: baseline;
  max-width: 100%;
}

/*
  IE11
------------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, :root .icon_arrow {
    top: -3px;
  }
  *::-ms-backdrop, :root .footer_upper_nav_subList .icon_arrow {
    top: -1px;
  }
  *::-ms-backdrop, :root .icon_pdf::before {
    padding: 3px 2px 0;
  }
  *::-ms-backdrop, :root .circle_line [class*="icon_circle"] {
    top: -4px;
  }
  *::-ms-backdrop, :root [class*="icon_circle"]::before {
    padding: 4px 0 0 0;
  }
}

@font-face {
  font-family: 'Archivo-Bold';
  src: url("/shared/fonts/Archivo-Bold.ttf") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: 'Archivo-Regular';
  src: url("/shared/fonts/Archivo-Regular.ttf") format("woff");
  font-weight: 400;
}

/*
  Font
------------------------------------------------------------------------------*/
.font-b {
  font-family: Archivo-Bold, Arial;
}

.font-r {
  font-family: Archivo-Regular, Arial;
}

/*
  Style Guide
------------------------------------------------------------------------------*/
/*
  Animation
------------------------------------------------------------------------------*/
@-webkit-keyframes arrowSlide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes arrowSlide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes arrowSlide_r {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes arrowSlide_r {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@media print, screen and (min-width: 768px) {
  .under main .container {
    width: 1280px;
  }
}

.sol_tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .sol_tab_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.sol_tab_item {
  width: calc(100% / 6);
  text-align: center;
  padding: 20px;
  border-bottom: 3px solid #eaeced;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.sol_tab_item p {
  display: block;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sol_tab_item {
    width: calc(100%/3);
    padding: 2.93333vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
  .sol_tab_item:nth-child(n+4) {
    margin-top: 2.66667vw;
  }
}

.sol_tab_item.current {
  color: #fa0000;
  border-color: #fa0000;
}

.sol_content_item {
  margin-top: 90px;
}

@media only screen and (max-width: 767px) {
  .sol_content_item {
    margin-top: 13.86667vw;
  }
}

.sol_content_ttl {
  font-size: 34px;
  margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
  .sol_content_ttl {
    font-size: 22px;
    font-size: 5.86667vw;
  }
}

.sol_content_list {
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

@media only screen and (max-width: 767px) {
  .sol_content_list {
    width: 100vw;
    margin-left: -5.33333vw;
  }
}

.sol_content_list > li .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px;
  border-bottom: 1px solid #e0e0e0;
}

@media only screen and (max-width: 767px) {
  .sol_content_list > li .item-inner {
    padding: 8vw 5.33333vw;
  }
}

.sol_content_list figure {
  position: relative;
  width: 180px;
  height: 180px;
  margin-right: 40px;
}

@media only screen and (max-width: 767px) {
  .sol_content_list figure {
    width: 32vw;
    height: 32vw;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 5.86667vw;
  }
}

.sol_content_list figure img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

@media print, screen and (min-width: 768px) {
  .sol_content_list .txt_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sol_content_list .txt_wrapper {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

@media print, screen and (min-width: 768px) {
  .sol_content_list .txt_wrapper {
    width: 440px;
    padding-right: 50px;
    margin-right: 60px;
    border-right: 1px solid #e0e0e0;
  }
}

.sol_content_list .txt_wrapper .item_ttl {
  font-size: 23px;
  color: #222;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .txt_wrapper .item_ttl {
    font-size: 5.33333vw;
  }
}

.sol_content_list .txt_wrapper .item_sub {
  font-size: 13px;
  color: #333;
  margin-top: 9px;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .txt_wrapper .item_sub {
    font-size: 12px;
    font-size: 3.2vw;
    margin-top: 2.4vw;
  }
}

.sol_content_list .txt_wrapper .item_txt {
  color: #333;
  margin-top: 20px;
  font-size: 15px;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .txt_wrapper .item_txt {
    font-size: 14px;
    font-size: 3.73333vw;
    margin-top: 6.66667vw;
  }
}

.sol_content_list .txt_wrapper a {
  color: #777;
  text-decoration: underline;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 5px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .txt_wrapper a {
    font-size: 14px;
    font-size: 3.73333vw;
    margin-top: 1.33333vw;
  }
}

.sol_content_list .txt_wrapper a:hover {
  color: #fa0000;
  text-decoration: none;
}

.sol_content_list .txt_wrapper .item-accordion {
  -webkit-transition: .4s ease;
  transition: .4s ease;
}

.sol_content_list .txt_wrapper .item-accordion[area-selected="false"] {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.sol_content_list .txt_wrapper .item-accordion[area-selected="true"] {
  height: auto;
  opacity: 1;
}

.sol_content_list .txt_wrapper .item-accordion p {
  color: #333;
  font-size: 15px;
}

.sol_content_list .txt_wrapper .item-accordion p:not(:first-child) {
  margin-top: 20px;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .txt_wrapper .item-accordion p {
    font-size: 14px;
    font-size: 3.73333vw;
  }
  .sol_content_list .txt_wrapper .item-accordion p:not(:first-child) {
    margin-top: 6.66667vw;
  }
}

.sol_content_list .link_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media print, screen and (max-width: 768px) {
  .sol_content_list .link_wrapper {
    border-top: 1px solid #e0e0e0;
    margin-top: 5.33333vw;
    padding-top: 5.33333vw;
  }
}

.sol_content_list .link_wrapper .mod-link {
  margin-top: 0;
}

.mod-frame.qa {
  margin-top: 90px;
}

@media only screen and (max-width: 767px) {
  .mod-frame.qa {
    margin-top: 13.33333vw;
  }
}

.mod-frame .qa_ttl {
  font-size: 19px;
}

@media only screen and (max-width: 767px) {
  .mod-frame .qa_ttl {
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.mod-frame .qa_list {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .mod-frame .qa_list {
    margin-top: 5.33333vw;
  }
}

.mod-frame .qa_list > li {
  position: relative;
  padding: 20px 20px 20px 45px;
  border-top: 1px solid #dbdbdb;
  color: #333;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .mod-frame .qa_list > li {
    padding: 2.66667vw 2.66667vw 2.66667vw 6.66667vw;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

.mod-frame .qa_list > li:last-child {
  border-bottom: 1px solid #dbdbdb;
}

.mod-frame .qa_list > li.qa_list_q:before {
  content: "Q";
  position: absolute;
  display: block;
  font-family: Archivo-Bold, Arial;
  color: #555;
}

.mod-frame .qa_list > li.qa_list_a:before {
  content: "A";
  position: absolute;
  display: block;
  font-family: Archivo-Bold, Arial;
  color: #fa0000;
}

.mod-frame .qa_list > li:before {
  left: 8px;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .mod-frame .qa_list > li:before {
    left: 0;
    font-size: 20px;
    font-size: 5.33333vw;
  }
}

.mod-frame .qa_link_ttl {
  font-size: 16px;
  margin-top: 30px;
  color: #333;
}

@media only screen and (max-width: 767px) {
  .mod-frame .qa_link_ttl {
    font-size: 15px;
    font-size: 4vw;
    margin-top: 5.33333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .mod-frame .mod-link.qa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
}

.mod-frame .mod-link.qa p {
  margin-top: 0;
}

.mod-frame .mod-link.qa p:not(:last-child) {
  margin-right: 30px;
}

@media print, screen and (min-width: 768px) {
  .sol_label {
    margin: 60px 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  .sol_label {
    margin: 10.66667vw 0 5.33333vw;
  }
}

.sol_label_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .sol_label_item {
    min-width: 120px;
    margin: 0 15px 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  .sol_label_item {
    min-width: 26.93333vw;
    margin: 0 2.66667vw 2.66667vw 0;
  }
}

.sol_label_item > * {
  display: block;
  background-color: #eaeced;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .sol_label_item > * {
    font-size: 13px;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sol_label_item > * {
    font-size: 11px;
    font-size: 2.93333vw;
    border-radius: 4vw;
    padding: 1.86667vw 4vw;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

@media only screen and (max-width: 767px) {
  .sol_label_item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .sol_label_item:nth-child(3n+1):nth-last-child(-n+3),
  .sol_label_item:nth-child(3n+1):nth-last-child(-n+3) ~ li {
    margin-bottom: 0;
  }
}

.sol_label_item.current > * {
  background-color: #fa0000;
  color: #fff !important;
  pointer-events: none;
}

.sol_label_item:hover > * {
  color: #fa0000;
}

.sol_label + * {
  margin-top: 0 !important;
}
