@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);
  }
}

/*------------------------------------------------------------------------------

  Case

------------------------------------------------------------------------------*/
.case_container {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .case_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 768px) {
  .case_item {
    width: calc(33.33% - 17px);
    margin-bottom: 70px;
  }
}

@media print, screen and (min-width: 768px) {
  .case_item + .case_item {
    margin-left: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .case_item + .case_item {
    margin-top: 10.66667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .case_item:nth-child(3n+1):nth-last-child(-n+3),
  .case_item:nth-child(3n+1):nth-last-child(-n+3) ~ li {
    margin-bottom: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .case_img img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .case_img img {
    width: 100% !important;
    height: auto;
  }
}

.case_ttl {
  color: #222;
}

@media print, screen and (min-width: 768px) {
  .case_ttl {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .case_ttl {
    margin-top: 6.66667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_ttl > p {
    font-size: 17px;
  }
}

@media only screen and (max-width: 767px) {
  .case_ttl > p {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_name {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .case_name {
    margin-top: 2.66667vw;
  }
}

.case_name > p {
  color: #555;
}

@media print, screen and (min-width: 768px) {
  .case_name > p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .case_name > p {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}

.case_link {
  color: #222;
}

@media print, screen and (min-width: 768px) {
  .case_link {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .case_link {
    margin-top: 5.33333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_link .border_underLine {
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .case_link .border_underLine {
    padding-bottom: 4vw;
  }
}

.case_link span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media print, screen and (min-width: 768px) {
  .case_link span {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .case_link span {
    margin-right: 5.33333vw;
  }
}

.case_link .icon_arrow {
  margin-left: auto;
}

@media print, screen and (min-width: 768px) {
  .case_link .icon_arrow {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .case_link .icon_arrow {
    margin-right: 2.66667vw;
  }
}

/*------------------------------------------------------------------------------

  Detail

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .case-h3 {
    font-size: 23px;
    margin: 70px 0 25px;
  }
}

@media only screen and (max-width: 767px) {
  .case-h3 {
    font-size: 20px;
    font-size: 5.33333vw;
    margin: 10.66667vw 0 4vw;
  }
}

.case-h3 + * {
  margin-top: 0 !important;
}

@media print, screen and (min-width: 768px) {
  .case_detail_ttl {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .case_detail_ttl {
    margin-top: 5.33333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_detail_mainTtl {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .case_detail_mainTtl {
    font-size: 26px;
    font-size: 6.93333vw;
  }
}

.case_detail_companyName {
  color: #555;
  display: block;
}

@media print, screen and (min-width: 768px) {
  .case_detail_companyName {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .case_detail_companyName {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_detail_logo + .case_detail_companyName {
    margin-left: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .case_detail_logo + .case_detail_companyName {
    margin-top: 3.73333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .case_detail_company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .case_detail_company {
    margin-top: 2.66667vw;
  }
}

.case_detail_company > * {
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .case_overview_ttl {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .case_overview_ttl {
    font-size: 17px;
    font-size: 4.53333vw;
    margin-bottom: 2.66667vw;
  }
}

.case_overview_ttl + * {
  margin-top: 0 !important;
}

/*
  IE11
------------------------------------------------------------------------------*/
