@charset 'UTF-8';
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  height: 34px;
}

#cboxTopRight {
  height: 34px;
}

#cboxBottomLeft {
  height: 21px;
}

#cboxBottomRight {
  height: 21px;
}

#cboxTopCenter {
  height: 34px;
}

#cboxBottomCenter {
  height: 21px;
}

#cboxContent {
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/*! minimum_reset.css v0.0.1 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 100%;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li,
ol li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

img {
  vertical-align: bottom;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.clear {
  clear: both;
  line-height: 0.1;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.vtop {
  vertical-align: top !important;
}

.mt-l {
  margin-top: 30px !important;
}
@media screen and (min-width: 1024px), print {
  .mt-l {
    margin-top: 40px !important;
  }
}

.view-pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  .view-pc {
    display: block;
  }
}

@media screen and (min-width: 768px), print {
  .view-sp {
    display: none;
  }
}

hr.m-hr-def {
  border-top: 1px solid #d2d2d2;
  border-right: none;
  border-left: none;
  border-bottom: none;
  margin: 40px 0 0;
}
@media screen and (min-width: 1024px), print {
  hr.m-hr-def {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px), print {
  .pc-mt0 {
    margin-top: 0 !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px), print {
  .mt0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 1024px), print {
  .pc-mtm {
    margin-top: 45px !important;
  }
}

.m-box-fixed {
  margin: 20px 10px 0;
}
@media screen and (min-width: 768px), print {
  .m-box-fixed {
    margin: 20px 20px 0;
  }
}
@media screen and (min-width: 1240px), print {
  .m-box-fixed {
    width: 1200px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1240px), print {
  .m-box-fixed.width-s {
    width: 1080px;
    margin: 20px auto 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols .col1 {
    width: calc(100%);
    margin-right: 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols .col2 {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .m-box-cols .col2:nth-child(even) {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols .col3 {
    width: calc(33.3% - 16px);
    margin-right: 24px;
  }
  .m-box-cols .col3:nth-child(3n) {
    margin-right: 0;
  }
  .m-box-cols .col3 + .col2of3 {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols .col2of3 {
    width: calc(66.7% - 16px);
    margin-right: 24px;
  }
  .m-box-cols .col2of3 + .col3 {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px), print {
  .m-box-cols .col2of3 .m-box-cols .col2 {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .m-box-cols .col2of3 .m-box-cols .col2:nth-child(even) {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols .col4 {
    width: calc(25% - 18px);
    margin-right: 24px;
  }
  .m-box-cols .col4:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px), print {
  .m-box-cols.mt30 {
    margin-top: 30px;
  }
}

.m-box-figure {
  margin: 15px 0 0;
  text-align: center;
}
@media screen and (min-width: 1024px), print {
  .m-box-figure {
    margin-top: 25px;
  }
}
.m-box-figure figcaption {
  margin-top: 5px;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .m-box-figure figcaption {
    max-width: 580px;
    margin: 5px auto 0;
  }
}
.m-box-figure figcaption dl dt {
  font-weight: bold;
  font-family: SuzukiPROBold;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
.m-box-figure figcaption dl dd {
  margin-top: 3px;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
}

.m-box-frame {
  border: 1px solid #a0a0a0;
  margin-top: 30px;
  padding: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-box-frame {
    padding: 20px 30px;
  }
}
.m-box-frame > *:first-child {
  margin-top: 0;
}

.m-box-map {
  margin-top: 30px;
}
.m-box-map iframe {
  max-width: 100%;
  max-height: 250px;
}
@media screen and (min-width: 768px), print {
  .m-box-map iframe {
    width: 100%;
    max-height: 300px;
  }
}

.m-box-youtube {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 1024px), print {
  .m-box-youtube {
    margin-top: 25px;
  }
}
.m-box-youtube:before {
  content: "";
  display: block;
  padding-top: 56.5%;
}
.m-box-youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
}

.m-box-select {
  max-width: 400px;
  border: 1px solid #003145;
  position: relative;
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem;
}
.m-box-select:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  background: #003145;
  z-index: -1;
}
.m-box-select:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -8px;
  z-index: -1;
}
.m-box-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  padding: 10px 60px 10px 10px;
  font-family: SuzukiPROBold;
  color: #003145;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.m-box-select select::-ms-expand {
  display: none;
}

.m-box-share {
  border-top: 1px solid #bfbfbf;
  padding: 20px 10px;
}
@media screen and (min-width: 1024px), print {
  .m-box-share {
    padding: 60px 0;
  }
}
.m-box-share .share-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1024px), print {
  .m-box-share .share-box {
    width: 960px;
    margin: 0 auto;
  }
}
.m-box-share .share-box h2 {
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  margin-right: 15px;
}
@media screen and (min-width: 1024px), print {
  .m-box-share .share-box h2 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.m-box-share .share-box ul {
  *zoom: 1;
  border: 1px solid #003145;
}
.m-box-share .share-box ul:after {
  content: " ";
  display: table;
  clear: both;
}
.m-box-share .share-box ul li {
  float: left;
}
.m-box-share .share-box ul li + li {
  border-left: 1px solid #003145;
}
.m-box-share .share-box ul li a {
  display: block;
  width: 48px;
}
@media screen and (min-width: 1024px), print {
  .m-box-share .share-box ul li a.share-fb {
    background: url(../images/ico_fb_on.png);
  }
  .m-box-share .share-box ul li a.share-tw {
    background: url(../images/ico_tw_on.png);
  }
  .m-box-share .share-box ul li a.share-gp {
    background: url(../images/ico_gp_on.png);
  }
  .m-box-share .share-box ul li a:hover img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.m-box-tab {
  margin: 35px -10px 20px;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .m-box-tab {
    background: #003145;
    border-bottom: 3px solid #e1261c;
    margin: 35px -20px 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-tab {
    margin-top: 60px;
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1240px), print {
  .m-box-tab {
    margin: 60px -500% 55px;
    padding: 0 500%;
  }
}
.m-box-tab .tab-spselect {
  border-bottom: 4px solid #d2d2d2;
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-spselect {
    display: none;
  }
}
.m-box-tab .tab-spselect .spselect-btn {
  display: block;
  margin: 0 60px;
  background: #003145;
  color: #fff;
  font-family: SuzukiPROBold;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 15px 37px 15px 17px;
  position: relative;
}
.m-box-tab .tab-spselect .spselect-btn:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #e1261c;
  border-right: 3px solid #e1261c;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -8px;
}
.m-box-tab .tab-spselect.is-open .spselect-btn:before {
  display: none;
}
.m-box-tab .tab-spselect.is-open .spselect-btn:after {
  content: "×";
  line-height: 1;
  font-size: 21px;
  font-size: 21px;
  font-size: 2.1rem;
  color: #e1261c;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -11px;
}
.m-box-tab .tab-list {
  position: absolute;
  left: 0;
  right: 0;
  background: #003145;
  padding: 0 10px;
  z-index: +10;
  display: none;
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: relative;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1240px), print {
  .m-box-tab .tab-list {
    margin: 0 auto;
    padding: 0;
  }
}
.m-box-tab .tab-list li {
  color: #fff;
  font-family: SuzukiPROBold;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 18px 10px;
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list li {
    text-align: center;
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-tab .tab-list li {
    cursor: pointer;
  }
}
.m-box-tab .tab-list li + li {
  border-top: 1px solid #d2d2d2;
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list li + li {
    border-top: none;
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-tab .tab-list li:hover {
    text-decoration: underline;
  }
}
.m-box-tab .tab-list li.is-selected {
  color: #e1261c;
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list li.is-selected {
    background: #e1261c;
    color: #fff;
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-tab .tab-list li.is-selected:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list.col2 li {
    width: 50%;
  }
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list.col3 li {
    width: 33.33%;
  }
}
@media screen and (min-width: 768px), print {
  .m-box-tab .tab-list.col4 li {
    width: 25%;
  }
}
.m-box-tab.sync {
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px), print {
  .m-box-tab.sync {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-tab.sync {
    margin-top: 55px;
  }
}
.m-box-tab.sync .tab-spselect {
  border-bottom: none;
  border-top: 4px solid #d2d2d2;
}
@media screen and (min-width: 768px), print {
  .m-box-tab.sync {
    display: block;
    border-top: 3px solid #e1261c;
    border-bottom: none;
  }
}

.m-box-scroll {
  margin-top: 30px;
}
.m-box-scroll #scroll-frame {
  border: 1px solid #a0a0a0;
  padding: 10px 10px 50px;
  overflow-y: scroll;
  height: 200px;
  width: 100%;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll #scroll-frame {
    height: 300px;
    padding: 20px 30px 60px;
  }
}
.m-box-scroll #scroll-frame .frame-inner {
  height: auto;
}
.m-box-scroll #scroll-frame .frame-inner > *:first-child {
  margin-top: 0;
}
.m-box-scroll .scroll-btn {
  text-align: center;
  font-family: SuzukiPROBold;
  margin-top: 15px;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.m-box-scroll .scroll-btn .btn-accept {
  border: 1px solid #d2d2d2;
  background-color: #d2d2d2;
  position: relative;
  display: block;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-accept {
    width: 280px;
    margin: 0 auto;
  }
}
.m-box-scroll .scroll-btn .btn-accept label input {
  display: none;
}
.m-box-scroll .scroll-btn .btn-accept label input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 13px;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  margin-left: -117px;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-accept label input:checked + span:after {
    margin-left: -107px;
  }
}
.m-box-scroll .scroll-btn .btn-accept label span {
  padding: 16px 10px;
  display: block;
  color: #fff;
  position: relative;
  font-family: SuzukiPROHeadline;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-accept label span {
    width: 280px;
    margin: 0 auto;
    padding: 11px 10px;
  }
}
.m-box-scroll .scroll-btn .btn-accept label span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  margin: auto 0;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  margin-left: -125px;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-accept label span:before {
    margin-left: -115px;
  }
}
.m-box-scroll .scroll-btn .btn-accept.is-active {
  background-color: transparent;
  border: 1px solid #1b1b1b;
}
.m-box-scroll .scroll-btn .btn-accept.is-active label span {
  color: #000;
}
.m-box-scroll .scroll-btn .btn-accept.is-active label span:before {
  border: 1px solid #000;
}
.m-box-scroll .scroll-btn .btn-download {
  margin-top: 15px;
  text-align: center;
  padding: 16px 10px;
  display: block;
  background-color: #d2d2d2;
  color: #fff;
  font-family: SuzukiPROHeadline;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-download {
    width: 280px;
    margin: 15px auto 0;
    padding: 11px 10px;
  }
}
.m-box-scroll .scroll-btn .btn-download a {
  color: #fff;
  padding: 16px 10px;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-download a {
    padding: 11px 10px;
  }
}
.m-box-scroll .scroll-btn .btn-download a span {
  display: inline-block;
  position: relative;
  z-index: +1;
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-download a:hover:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1.1);
    -ms-transform: scale(1, 1.1);
    transform: scale(1, 1.1);
  }
}
@media screen and (min-width: 1024px), print {
  .m-box-scroll .scroll-btn .btn-download a:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -1px;
    background: #a91c15;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.m-box-scroll .scroll-btn .btn-download.is-active {
  padding: 0;
  background-color: #e1261c;
}
.m-box-scroll .scroll-btn .btn-txt {
  margin-top: 5px;
  text-align: center;
  font-weight: normal;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
}

.m-list-def {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-def {
    margin-top: 25px;
  }
}
.m-list-def li {
  margin-top: 3px;
  position: relative;
  padding-left: 15px;
}
.m-list-def li:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #1b1b1b;
  position: absolute;
  top: 0.3em;
  left: 0;
}

.m-list-att {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-att {
    margin-top: 25px;
  }
}
.m-list-att li {
  position: relative;
  padding-left: 13px;
}
.m-list-att li:before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
}

.m-list-desc {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-desc {
    margin-top: 25px;
  }
}
.m-list-desc li {
  position: relative;
  padding-left: 13px;
}
.m-list-desc li:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #1b1b1b;
  top: 0.55em;
  left: 0;
}
@media screen and (min-width: 1024px), print {
  .m-list-desc li:before {
    width: 3px;
    height: 3px;
    top: 0.55em;
  }
}

ol.m-list-asterisk {
  margin-top: 10px;
  counter-reset: ast-num;
  overflow: hidden;
}
@media screen and (min-width: 1024px), print {
  ol.m-list-asterisk {
    margin-top: 25px;
  }
}
ol.m-list-asterisk li {
  position: relative;
  padding-left: 1.5em;
}
ol.m-list-asterisk li:before {
  counter-increment: ast-num;
  content: "*" counter(ast-num) ":";
  position: absolute;
  top: 0;
  left: 0;
}

.m-list-anchor {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-anchor {
    letter-spacing: -0.4em;
    text-align: center;
  }
}
.m-list-anchor li {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-anchor li {
    letter-spacing: normal;
    display: inline-block;
    margin: 10px 5px 0;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-anchor li {
    margin: 10px 15px 0;
  }
}

.m-list-anchor {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-anchor {
    letter-spacing: -0.4em;
    text-align: center;
  }
}
.m-list-anchor li {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-anchor li {
    letter-spacing: normal;
    display: inline-block;
    margin: 10px 5px 0;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-anchor li {
    margin: 10px 15px 0;
  }
}

.m-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-item {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-item {
    margin-top: 30px;
  }
}
.m-list-item li {
  width: calc(50% - 5px);
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-item li {
    width: calc(33.3% - 17px);
    margin-right: 25px;
    margin-top: 25px;
  }
}
.m-list-item li:nth-child(odd) {
  margin-right: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-item li:nth-child(odd) {
    margin-right: 25px;
  }
}
@media screen and (min-width: 768px), print {
  .m-list-item li:nth-child(3n) {
    margin-right: 0;
  }
}
.m-list-item li > a,
.m-list-item li > div {
  display: block;
  position: relative;
  overflow: hidden;
}
.m-list-item li > a figure,
.m-list-item li > div figure {
  margin: 0;
}
.m-list-item li > a figure .item-img,
.m-list-item li > div figure .item-img {
  display: block;
  position: relative;
}
.m-list-item li > a figure .item-img > img,
.m-list-item li > div figure .item-img > img {
  width: 100%;
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a figure .item-img > img,
  .m-list-item li > div figure .item-img > img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.m-list-item li > a figure .item-img .img-dbw,
.m-list-item li > div figure .item-img .img-dbw {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 33px;
}
@media screen and (min-width: 768px), print {
  .m-list-item li > a figure .item-img .img-dbw,
  .m-list-item li > div figure .item-img .img-dbw {
    width: 50px;
    bottom: 5px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a figure .item-img .img-dbw,
  .m-list-item li > div figure .item-img .img-dbw {
    width: 70px;
    bottom: 10px;
  }
}
.m-list-item li > a figure figcaption,
.m-list-item li > div figure figcaption {
  display: table;
  width: 100%;
}
.m-list-item li > a figure figcaption .item-name,
.m-list-item li > div figure figcaption .item-name {
  display: table-cell;
  vertical-align: middle;
  background: #003145;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a figure figcaption .item-name,
  .m-list-item li > div figure figcaption .item-name {
    padding: 13px 10px;
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.m-list-item li > a figure figcaption .name-label,
.m-list-item li > div figure figcaption .name-label {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  padding: 3px 10px 2px;
  margin-left: 7px;
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a figure figcaption .name-label,
  .m-list-item li > div figure figcaption .name-label {
    font-size: 14px;
    font-size: 1.4rem;
    margin-left: 10px;
  }
}
.m-list-item li > a.item-new:after,
.m-list-item li > div.item-new:after {
  content: "NEW";
  font-family: SuzukiPROBold;
  background: #e1261c;
  color: #fff;
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  display: inline-block;
  width: 33px;
  text-align: center;
  line-height: 1;
  padding: 12px 0;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a.item-new:after,
  .m-list-item li > div.item-new:after {
    font-size: 18px;
    font-size: 1.8rem;
    width: 60px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-item li > a:hover figure .item-img img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.m-list-item li .item-price {
  display: table;
  width: 100%;
}
.m-list-item li .item-price dl {
  display: table-row;
}
.m-list-item li .item-price dl dt {
  display: table-cell;
  border-bottom: 1px solid #d2d2d2;
  padding: 2px;
}
@media screen and (min-width: 1024px), print {
  .m-list-item li .item-price dl dt {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 8px 10px;
  }
}
.m-list-item li .item-price dl dd {
  font-family: SuzukiPROHeadline;
  display: table-cell;
  text-align: right;
  border-bottom: 1px solid #d2d2d2;
  padding: 2px;
}
@media screen and (min-width: 1024px), print {
  .m-list-item li .item-price dl dd {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 8px 10px;
  }
}
.m-list-item li .item-price dl dd .price-att {
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  margin-right: 5px;
}
@media screen and (min-width: 768px), print {
  .m-list-item li .item-price dl dd .price-att {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-item li .item-price dl dd .price-att {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-list-gallery {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px), print {
  .m-list-gallery {
    margin-top: 10px;
  }
}
.m-list-gallery li {
  margin-top: 10px;
  width: calc(50% - 5px);
}
.m-list-gallery li:nth-child(odd) {
  margin-right: 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-gallery li:nth-child(odd) {
    margin-right: 24px;
  }
}
@media screen and (min-width: 768px), print {
  .m-list-gallery li {
    width: calc(33.3% - 16px);
    margin-top: 24px;
    margin-right: 24px;
  }
  .m-list-gallery li:nth-child(3n) {
    margin-right: 0;
  }
}
.m-list-gallery li a {
  display: block;
  outline: none;
  overflow: hidden;
  position: relative;
}
.m-list-gallery li a .gallery-label {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  line-height: 1;
  z-index: 2;
  background-color: #003145;
  min-width: 65px;
  padding: 5px 10px;
}
@media screen and (min-width: 768px), print {
  .m-list-gallery li a .gallery-label {
    font-size: 23px;
    font-size: 2.3rem;
    min-width: 120px;
    padding: 9px 15px;
  }
}
.m-list-gallery li a figure {
  margin: 0;
}
.m-list-gallery li a figure .gallery-img {
  display: block;
  position: relative;
}
.m-list-gallery li a figure .gallery-img img {
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
@media screen and (min-width: 1024px), print {
  .m-list-gallery li a figure .gallery-img img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.m-list-gallery li a figure .gallery-img:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: +1;
}
@media screen and (min-width: 1024px), print {
  .m-list-gallery li a figure .gallery-img:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.m-list-gallery li a figure .gallery-img.mov:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/ico_play_tr.png) center center no-repeat;
  background-size: 35px 35px;
  z-index: +1;
}
@media screen and (min-width: 768px), print {
  .m-list-gallery li a figure .gallery-img.mov:after {
    background-size: 70px 70px;
  }
}
.m-list-gallery li a figure figcaption {
  display: table;
  width: 100%;
  min-height: 62px;
}
@media screen and (min-width: 1024px), print {
  .m-list-gallery li a figure figcaption {
    min-height: 90px;
  }
}
.m-list-gallery li a figure figcaption .gallery-ttl {
  display: table-cell;
  vertical-align: middle;
  background: #003145;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-gallery li a figure figcaption .gallery-ttl {
    padding: 13px 10px;
    font-size: 23px;
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-gallery li a:hover figure .gallery-img {
    /*
							&.mov{
								&:after{
									background: url(../images/ico_play.png) center center no-repeat;
									background-size: 70px 70px;
								}
							}
							*/
  }
  .m-list-gallery li a:hover figure .gallery-img:before {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .m-list-gallery li a:hover figure .gallery-img img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.m-list-entry li + li {
  margin-top: 15px;
  border-top: 1px solid #d2d2d2;
  padding-top: 15px;
}
@media screen and (min-width: 768px), print {
  .m-list-entry li + li {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.m-list-entry li a {
  display: block;
}
@media screen and (min-width: 768px), print {
  .m-list-entry li a {
    *zoom: 1;
  }
  .m-list-entry li a:after {
    content: " ";
    display: table;
    clear: both;
  }
}
.m-list-entry li a .entry-img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .m-list-entry li a .entry-img {
    width: 32%;
    float: left;
    margin-right: 30px;
  }
}
.m-list-entry li a dl {
  margin-top: 5px;
}
@media screen and (min-width: 768px), print {
  .m-list-entry li a dl {
    margin: 0;
    overflow: hidden;
  }
}
.m-list-entry li a dl .entry-info {
  color: #8d8d8d;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-info {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.m-list-entry li a dl .entry-info .info-date {
  display: inline-block;
}
.m-list-entry li a dl .entry-info .info-place {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-info .info-place {
    margin-left: 15px;
    padding-left: 19px;
  }
}
.m-list-entry li a dl .entry-info .info-place:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  bottom: 5px;
  width: 1px;
  background: #a7a7a7;
}
.m-list-entry li a dl dt {
  margin-top: 5px;
  font-family: SuzukiPROHeadline;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  color: #0098db;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl dt {
    margin-top: 10px;
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.m-list-entry li a dl .entry-desc {
  margin-top: 5px;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-desc {
    margin-top: 30px;
  }
}
.m-list-entry li a dl .entry-btn {
  margin-top: 15px;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-btn {
    margin-top: 25px;
  }
}
.m-list-entry li a dl .entry-btn .btn-more {
  display: block;
  border: 1px solid #003145;
  text-align: center;
  padding: 10px;
  font-family: SuzukiPROBold;
}
@media screen and (min-width: 768px), print {
  .m-list-entry li a dl .entry-btn .btn-more {
    display: inline-block;
    padding: 7px 40px 6px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-btn .btn-more {
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-btn .btn-more:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #003145;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.m-list-entry li a dl .entry-btn .btn-more span {
  display: inline-block;
  position: relative;
  padding-right: 19px;
}
.m-list-entry li a dl .entry-btn .btn-more span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #003145;
  border-right: 2px solid #003145;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -6px;
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a dl .entry-btn .btn-more span:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-entry li a:hover dl .entry-btn .btn-more {
    color: #fff;
  }
  .m-list-entry li a:hover dl .entry-btn .btn-more:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .m-list-entry li a:hover dl .entry-btn .btn-more span:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

@media screen and (min-width: 768px), print {
  .m-list-topics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px), print {
  .m-list-topics {
    margin: 20px auto 0;
  }
}

@media screen and (min-width: 1240px), print {
  .m-list-topics {
    max-width: 1200px;
  }
}

.m-list-topics li {
  margin-top: 24px;
}
@media screen and (min-width: 768px), print {
  .m-list-topics li {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .m-list-topics li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px), print {
  .m-list-topics li:nth-child(2n) {
    margin-right: 24px;
  }
}
@media screen and (min-width: 768px), print {
  .m-list-topics li:nth-child(odd) {
    margin-right: 10px;
    margin-right: 24px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-topics li {
    width: calc(33.3% - 16px);
    margin-top: 0;
  }
  .m-list-topics li:nth-child(3n) {
    margin-right: 0;
  }
  .m-list-topics li:nth-child(n + 4) {
    margin-top: 24px;
  }
}
.m-list-topics li a {
  display: block;
  outline: none;
  overflow: hidden;
}
.m-list-topics li a figure {
  margin: 0;
}
.m-list-topics li a figure > span {
  display: block;
  position: relative;
}
.m-list-topics li a figure > span img {
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}
@media screen and (min-width: 1024px), print {
  .m-list-topics li a figure > span img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.m-list-topics li a figure figcaption {
  background: #003145;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.m-list-topics li a figure figcaption > span {
  font-family: SuzukiPROBold;
  color: #fff;
  width: 100%;
}
.m-list-topics li a figure figcaption .item-date {
  text-align: left;
  padding: 10px 0 0 30px;
  color: #aaa;
  font-weight: normal;
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic;
}
.m-list-topics li a figure figcaption .item-name {
  padding: 5px 30px 10px;
  text-align: left;
  margin: auto;
}
.m-list-topics li a:hover figure .item-img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.m-list-num {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-num {
    margin-top: 25px;
  }
}
.m-list-num li {
  margin-top: 3px;
  position: relative;
  padding-left: 15px;
  counter-increment: number;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (min-width: 1024px), print {
  .m-list-num li {
    margin-top: 10px;
    padding-left: 20px;
  }
}
.m-list-num li:before {
  content: counter(number) ".";
  counter-increment: item;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.m-list-num li > ul {
  margin-top: 3px;
  counter-reset: number;
}
@media screen and (min-width: 1024px), print {
  .m-list-num li > ul {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-list-num li > ul > li {
    margin-top: 5px;
  }
}

.m-list-roman {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-roman {
    margin-top: 25px;
  }
}
.m-list-roman li {
  margin-top: 3px;
  position: relative;
  padding-left: 20px;
  counter-increment: number;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
}
@media screen and (min-width: 1024px), print {
  .m-list-roman li {
    margin-top: 10px;
  }
}
.m-list-roman li:before {
  content: counter(number, lower-roman) "）";
  counter-increment: item;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.m-list-environment {
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .m-list-environment {
    margin: 60px -12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item {
    padding: 0 12px;
    width: 33.3%;
  }
}
.m-list-environment .environment-item .item-inner {
  border: solid 1px #a0a0a0;
  display: block;
}
.m-list-environment .environment-item .item-inner .item-wrap {
  padding: 15px;
}
@media screen and (min-width: 1024px), print {
  .m-list-environment .environment-item .item-inner .item-wrap {
    padding: 30px;
  }
}
.m-list-environment .environment-item .item-inner .item-wrap .item-country {
  line-height: 1;
}
.m-list-environment
  .environment-item
  .item-inner
  .item-wrap
  .item-country
  .country-img {
  display: inline-block;
  width: 35px;
  margin-right: 8px;
}
@media screen and (min-width: 1024px), print {
  .m-list-environment
    .environment-item
    .item-inner
    .item-wrap
    .item-country
    .country-img {
    margin-right: 12px;
    display: inline-block;
  }
}
.m-list-environment
  .environment-item
  .item-inner
  .item-wrap
  .item-country
  .country-name {
  display: inline-block;
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px), print {
  .m-list-environment
    .environment-item
    .item-inner
    .item-wrap
    .item-country
    .country-name {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.m-list-environment .environment-item .item-inner .item-wrap .item-store {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-list-environment .environment-item .item-inner .item-wrap .item-store {
    margin-top: 20px;
  }
}
.m-list-environment .environment-item .item-inner .item-wrap .item-num {
  margin-top: 5px;
  color: #0098db;
  font-weight: bold;
}
@media screen and (min-width: 1024px), print {
  .m-list-environment .environment-item .item-inner .item-wrap .item-num {
    margin-top: 12px;
  }
}
.m-list-environment .environment-item:nth-child(n + 2) {
  margin-top: 15px;
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item:nth-child(n + 2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item:nth-child(n + 4) {
    margin-top: 24px;
  }
}
.m-list-environment .environment-item .item-foot {
  background: #003145;
}
.m-list-environment .environment-item .item-foot .foot-btn {
  display: block;
  text-align: center;
  padding: 10px 20px 10px 20px;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item .item-foot .foot-btn {
    padding: 15px 55px 15px 55px;
  }
}
.m-list-environment .environment-item .item-foot .foot-btn .btn-txt {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.5rem;
  word-wrap: break-word;
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item .item-foot .foot-btn .btn-txt {
    font-size: 2.3rem;
  }
}
.m-list-environment .environment-item .item-foot .foot-btn:before,
.m-list-environment .environment-item .item-foot .foot-btn:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 768px), print {
  .m-list-environment .environment-item .item-foot .foot-btn:before,
  .m-list-environment .environment-item .item-foot .foot-btn:after {
    width: 16px;
    height: 2px;
  }
}
.m-list-environment .environment-item .item-foot .foot-btn:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (min-width: 1024px), print {
  .m-list-environment .environment-item .item-foot .foot-btn:hover:before {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .m-list-environment .environment-item .item-foot .foot-btn:hover:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.m-list-environment .environment-item .item-foot .foot-btn.is-active:before {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.m-list-environment .environment-item .item-foot .foot-btn.is-active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px), print {
  .m-list-environment .environment-item .item-foot .foot-btn:hover:before {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .m-list-environment .environment-item .item-foot .foot-btn:hover:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.m-list-environment .environment-item .item-foot .foot-btn.is-active:before {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.m-list-environment .environment-item .item-foot .foot-btn.is-active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 768px), print {
  .m-list-link {
    margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.m-list-link .link-item {
  margin-top: 15px;
}
@media screen and (min-width: 768px), print {
  .m-list-link .link-item {
    margin-top: 20px;
    padding: 0 15px;
  }
}
.m-list-link .link-item .m-btn-link {
  display: block;
  width: 100%;
}

.m-list-link.link-position-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.m-tbl-def {
  margin-top: 15px;
  width: 100%;
  border: 1px solid #003145;
}
@media screen and (min-width: 1024px), print {
  .m-tbl-def {
    margin-top: 25px;
  }
}
.m-tbl-def tr:nth-child(odd) {
  background: #d2d2d2;
}
.m-tbl-def tr th,
.m-tbl-def tr td {
  border: 1px solid #003145;
  padding: 10px;
  vertical-align: middle;
  /*
			& + th,& + td{
				border-left: 2px solid $keyColor;
			}
			*/
}
.m-tbl-def tr th.bd-l,
.m-tbl-def tr td.bd-l {
  border-left: 2px solid #003145;
}
.m-tbl-def tr th {
  text-align: left;
  font-family: SuzukiPROBold;
  font-weight: normal;
}
.m-tbl-def tr td {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .m-tbl-def.tbl-s th,
  .m-tbl-def.tbl-s td {
    padding: 3px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-tbl-def.tbl-s th,
  .m-tbl-def.tbl-s td {
    padding: 5px;
  }
}
@media screen and (min-width: 768px), print {
  .m-tbl-def.tbl-s {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px), print {
  .m-tbl-def.tbl-s {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1240px), print {
  .m-tbl-def.tbl-s {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-tbl-scroll {
  position: relative;
  overflow-x: scroll;
  padding-top: 15px;
  padding-bottom: 15px;
}
.m-tbl-scroll .scroll-mark {
  position: absolute;
  top: -2px;
  right: 0;
}
@media screen and (min-width: 768px), print {
  .m-tbl-scroll .scroll-mark {
    display: none;
  }
}
.m-tbl-scroll .scroll-mark span {
  display: block;
  width: 91px;
  height: 16px;
  background: url(../images/arrow_tbl.png) no-repeat;
  background-size: 91px 16px;
}
.m-tbl-scroll table {
  min-width: 600px;
  margin-top: 0;
}
.m-tbl-scroll::-webkit-scrollbar {
  width: 15px;
  height: 8px;
}
.m-tbl-scroll::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 8px;
}
.m-tbl-scroll::-webkit-scrollbar-track-piece:start {
  background: #efefef;
  border-radius: 8px;
}
.m-tbl-scroll::-webkit-scrollbar-track-piece:end {
  background: #efefef;
  border-radius: 8px;
}

.m-txt-h2 {
  font-family: SuzukiPROHeadline;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  color: #0098db;
  margin-top: 30px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h2 {
    font-size: 36px;
    font-size: 3.6rem;
    margin-top: 50px;
  }
}

.m-txt-h2large {
  font-family: SuzukiPROHeadline;
  font-size: 30px;
  font-size: 30px;
  font-size: 3rem;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h2large {
    font-size: 64px;
    font-size: 6.4rem;
    margin-top: 50px;
  }
}

.m-txt-h3 {
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  background: #f4f4f4;
  border-left: 4px solid #003145;
  padding: 10px;
  margin-top: 30px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h3 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: 60px;
  }
}

.m-txt-h4 {
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 15px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h4 {
    font-size: 23px;
    font-size: 2.3rem;
    margin-top: 23px;
  }
}
.m-txt-h4 + .m-txt-h4 {
  margin-top: 3px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h4 + .m-txt-h4 {
    margin-top: 5px;
  }
}
.m-txt-h4 .spec {
  font-size: 10px;
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
  padding: 3px 5px;
  margin-left: 5px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-h4 .spec {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px 10px;
    margin-left: 10px;
  }
}
.m-txt-h4 .spec.bgc-navy {
  background-color: #003145;
}
.m-txt-h4 .spec.bgc-red {
  background-color: #e1261c;
}
.m-txt-h4 .spec.bgc-green {
  background-color: #2da638;
}
.m-txt-h4.sp-mt30 {
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .m-txt-h4.sp-mt30 {
    margin-top: 23px;
  }
}

.m-txt-related {
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 30px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-related {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px), print {
  .m-txt-related + .m-list-item {
    margin-top: 0;
  }
}

.m-txt-lead {
  text-align: center;
  font-family: SuzukiPROHeadline;
  font-size: 32px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-lead {
    font-size: 64px;
    font-size: 6.4rem;
    margin-bottom: 40px;
  }
}

.m-txt-p {
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-p {
    margin-top: 25px;
  }
}
.m-txt-p > a {
  color: #0098db;
  text-decoration: underline;
}
@media screen and (min-width: 1024px), print {
  .m-txt-p > a:hover {
    text-decoration: none;
    color: #0098db;
  }
}

.m-txt-small {
  margin-top: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-small {
    margin-top: 25px;
    font-size: 1.5rem;
  }
}

.m-txt-link {
  color: #004b9c;
  text-decoration: underline;
  word-break: break-all;
}
.m-txt-link:hover {
  color: #004b9c;
  text-decoration: none;
}

.m-txt-hasatt {
  margin-top: 10px;
  position: relative;
  padding-left: 1.5em;
}
@media screen and (min-width: 1024px), print {
  .m-txt-hasatt {
    margin-top: 25px;
  }
}
.m-txt-hasatt span {
  position: absolute;
  top: 0;
  left: 0;
}
.m-txt-hasatt + .m-txt-hasatt {
  margin-top: 0;
}

.m-txt-subt {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-subt {
    margin-top: 90px;
    margin-bottom: 80px;
  }
}
.m-txt-subt .subt-ttl {
  font-family: SuzukiPROHeadline;
  font-size: 30px;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-subt .subt-ttl {
    font-size: 64px;
    font-size: 6.4rem;
  }
}
.m-txt-subt .subt-txt {
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-subt .subt-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-txt-hasdesc {
  font-family: SuzukiPROHeadline;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  background: #f4f4f4;
  border-left: 4px solid #003145;
  padding: 7px 10px 4px;
  margin-top: 25px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-hasdesc {
    font-size: 36px;
    font-size: 3.6rem;
    border-left: 5px solid #003145;
    padding: 10px 10px 10px 25px;
    margin-top: 90px;
  }
}
.m-txt-hasdesc .ttl-desc {
  display: block;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-hasdesc .ttl-desc {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-txt-tech {
  font-family: SuzukiPROHeadline;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  background: #f4f4f4;
  padding: 7px 10px 7px 70px;
  margin-top: 25px;
  position: relative;
  min-height: 65px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-tech {
    font-size: 36px;
    font-size: 3.6rem;
    padding: 10px 30px 10px 110px;
    line-height: 1.2;
    min-height: 90px;
    margin-top: 60px;
  }
}
.m-txt-tech .tech-img {
  width: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-tech .tech-img {
    width: 70px;
    margin-top: -35px;
  }
}
.m-txt-tech .tech-sub {
  display: block;
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-tech .tech-sub {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.m-txt-tech .tech-desc {
  display: block;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-tech .tech-desc {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 4px;
  }
}
.m-txt-tech.noicon {
  padding-left: 10px;
  border-left: 3px solid #003145;
}
@media screen and (min-width: 1024px), print {
  .m-txt-tech.noicon {
    padding-left: 14px;
    border-left: 5px solid #003145;
  }
}

.m-txt-entryinfo {
  color: #8d8d8d;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px), print {
  .m-txt-entryinfo {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.m-txt-entryinfo .info-date {
  display: inline-block;
}
.m-txt-entryinfo .info-place {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}
@media screen and (min-width: 1024px), print {
  .m-txt-entryinfo .info-place {
    margin-left: 15px;
    padding-left: 19px;
  }
}
.m-txt-entryinfo .info-place:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  bottom: 5px;
  width: 1px;
  background: #a7a7a7;
}
.m-txt-entryinfo + .m-txt-h2 {
  margin-top: 5px;
}
@media screen and (min-width: 1024px), print {
  .m-txt-entryinfo + .m-txt-h2 {
    margin-top: 10px;
  }
}

.m-txt-copy {
  font-family: SuzukiPROHeadline;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #0098db;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 1024px), print {
  .m-txt-copy {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.25;
    margin-top: 60px;
  }
}

.m-btn-bk {
  display: inline-block;
  text-align: center;
  border: 1px solid #fff;
  font-family: SuzukiPROBold;
  color: #fff;
  width: 75%;
  padding: 20px 0;
}
@media screen and (min-width: 1024px), print {
  .m-btn-bk {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 8px 22px 7px 18px;
    width: auto;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-btn-bk:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.m-btn-bk span {
  display: inline-block;
  padding: 0 18px;
  position: relative;
}
.m-btn-bk span:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 2px;
  margin-top: -4px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-bk span:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-btn-bk:hover span:after {
    border-top: 2px solid #1b1b1b;
    border-right: 2px solid #1b1b1b;
  }
  .m-btn-bk:hover:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.m-btn-rd {
  display: inline-block;
  background: #e1261c;
  color: #fff;
  padding: 15px 43px 15px 35px;
  border-radius: 30px;
  font-family: SuzukiPROHeadline;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (min-width: 1024px), print {
  .m-btn-rd {
    font-size: 28px;
    font-size: 2.8rem;
    padding: 15px 65px 15px 50px;
    border-radius: 45px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-btn-rd:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -1px;
    background: #a91c15;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.m-btn-rd:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 27px;
  margin-top: -4px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-rd:after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    right: 40px;
  }
}
.m-btn-rd span {
  display: inline-block;
  position: relative;
  z-index: +1;
}
@media screen and (min-width: 1024px), print {
  .m-btn-rd:hover {
    color: #fff;
  }
  .m-btn-rd:hover:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1.1);
    -ms-transform: scale(1, 1.1);
    transform: scale(1, 1.1);
  }
}

.m-btn-link {
  display: block;
  border: 1px solid #1b1b1b;
  text-align: center;
  padding: 16px 10px;
  font-family: SuzukiPROBold;
}
@media screen and (min-width: 1024px), print {
  .m-btn-link {
    display: inline-block;
    padding: 7px 40px 6px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  .m-btn-link:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -2px;
    background: #003145;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.m-btn-link span {
  display: inline-block;
  position: relative;
  padding-right: 19px;
}
.m-btn-link span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1b1b1b;
  border-right: 2px solid #1b1b1b;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -6px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-link span:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.m-btn-link.anchor {
  border-width: 2px;
}
.m-btn-link.anchor span {
  padding-right: 25px;
}
.m-btn-link.anchor span:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: -8px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-link.back:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
}
.m-btn-link.back span {
  padding-right: 0;
  padding-left: 19px;
}
.m-btn-link.back span:after {
  right: auto;
  left: 2px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (min-width: 1024px), print {
  .m-btn-link:hover {
    color: #fff;
  }
  .m-btn-link:hover span:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .m-btn-link:hover:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .m-btn-link:hover.back:before {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
  }
}

.m-btn-wh {
  font-family: SuzukiPROHeadline;
  color: #000;
  font-size: 16px;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  padding-left: 10px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-wh {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 20px;
  }
}
.m-btn-wh:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 8px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: 4px 8px;
  position: absolute;
  top: 0.3em;
  left: 0;
  color: black;
  fill: black;
}
@media screen and (min-width: 1024px), print {
  .m-btn-wh:before {
    width: 8px;
    height: 16px;
    background-size: 8px 16px;
    top: 0.1em;
  }
}
@media screen and (min-width: 1024px), print {
  .m-btn-wh:hover {
    color: #fff;
  }
}

.m-btn-bottom {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-bottom {
    margin-top: 60px;
  }
}

.m-btn-app {
  display: inline-block;
}
.m-btn-app > img {
  width: 150px;
}
@media screen and (min-width: 1024px), print {
  .m-btn-app > img {
    height: 65px;
    width: auto;
  }
}

@font-face {
  font-family: "SuzukiPROHeadline";
  src: url("../font/SuzukiPROHeadline.ttf") format("truetype"),
    url("../font/SuzukiPROHeadline.woff") format("woff");
}

@font-face {
  font-family: "SuzukiPRORegular";
  src: url("../font/SuzukiPRORegular.ttf") format("truetype"),
    url("../font/SuzukiPRORegular.woff") format("woff");
}

@font-face {
  font-family: "SuzukiPROBold";
  src: url("../font/SuzukiPROBold.ttf") format("truetype"),
    url("../font/SuzukiPROBold.woff") format("woff");
}

html {
  color: #1b1b1b;
  font-size: 62.5%;
  background: #fff;
  font-family: SuzukiPRORegular, Arial, Helvetica, sans-serif;
  font-weight: 500;
  overflow: auto;
}

body {
  line-height: 1.4;
  letter-spacing: normal;
  font-size: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px), print {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* link style */
a {
  color: #1b1b1b;
  text-decoration: none;
}
@media screen and (min-width: 1024px), print {
  a:hover {
    color: #1b1b1b;
  }
}

#l-wrap .sub-nav {
  background: #003145;
  font-family: SuzukiPROHeadline;
}
#l-wrap .sub-nav .nav-area {
  padding: 15px 10px;
}
@media screen and (min-width: 768px), print {
  #l-wrap .sub-nav .nav-area {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    *zoom: 1;
  }
  #l-wrap .sub-nav .nav-area:after {
    content: " ";
    display: table;
    clear: both;
  }
}
#l-wrap .sub-nav .nav-area h2 {
  text-align: center;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area h2 {
    width: 165px;
    float: left;
    padding: 14px 0;
    text-align: right;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap .sub-nav .nav-area h2 {
    text-align: left;
  }
}
#l-wrap .sub-nav .nav-area h2 img {
  width: 105px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area h2 img {
    width: 145px;
  }
}
#l-wrap .sub-nav .nav-area ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px), print {
  #l-wrap .sub-nav .nav-area ul {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area ul {
    float: right;
    width: calc(100% - 165px);
    margin-top: 0;
    padding: 10px 50px 9px;
  }
}
#l-wrap .sub-nav .nav-area ul li {
  width: 33.33%;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  #l-wrap .sub-nav .nav-area ul li {
    width: 20%;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area ul li {
    margin-top: 0;
  }
}
#l-wrap .sub-nav .nav-area ul li a {
  display: block;
  text-align: center;
  color: #fff;
  border: 1px solid #003145;
  line-height: 1;
  padding: 10px 0;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area ul li a {
    display: inline-block;
    padding: 13px 10px;
  }
}
#l-wrap .sub-nav .nav-area ul li a.is-active {
  border: 1px solid #fff;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .sub-nav .nav-area ul li a:hover:not(.is-active) {
    text-decoration: underline;
  }
}

#l-wrap .content-ttl {
  background: #000;
  color: #fff;
  text-align: center;
}
#l-wrap .content-ttl .ttl-area {
  padding: 25px 10px;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl .ttl-area {
    padding: 45px 20px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap .content-ttl .ttl-area {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
  }
}
#l-wrap .content-ttl .ttl-area .ttl-box {
  display: table;
  width: 100%;
}
#l-wrap .content-ttl .ttl-area .ttl-box .box-area {
  display: table-cell;
  vertical-align: middle;
  height: 175px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area .ttl-box .box-area {
    height: 300px;
  }
}
#l-wrap .content-ttl .ttl-area .ttl-h1 {
  font-family: SuzukiPROHeadline;
  font-size: 38px;
  font-size: 38px;
  font-size: 3.8rem;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area .ttl-h1 {
    font-size: 76px;
    font-size: 7.6rem;
  }
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl .ttl-area .ttl-lead {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area .ttl-lead {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
#l-wrap .content-ttl .ttl-area.nosub {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area.nosub {
    padding-top: 77px;
    padding-bottom: 77px;
  }
}
#l-wrap .content-ttl .ttl-area .ttl-catch {
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
  margin-top: 5px;
  font-family: SuzukiPROHeadline;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl .ttl-area .ttl-catch {
    font-size: 40px;
    font-size: 4rem;
    margin-top: 15px;
  }
}
#l-wrap .content-ttl.technology {
  background: url(../images/main_technology_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.technology {
    background: url(../images/main_technology_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.technology {
    background-size: auto;
  }
}
#l-wrap .content-ttl.gallery {
  background: url(../images/main_gallery_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.gallery {
    background: url(../images/main_gallery_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.gallery {
    background-size: auto;
  }
}
#l-wrap .content-ttl.boatshow {
  background: url(../images/main_boatshow_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.boatshow {
    background: url(../images/main_boatshow_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.boatshow {
    background-size: auto;
  }
}
#l-wrap .content-ttl.models {
  background: url(../images/main_models_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.models {
    background: url(../images/main_models_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.models {
    background-size: auto;
  }
}
#l-wrap .content-ttl.history {
  background: url(../images/main_history_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.history {
    background: url(../images/main_history_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.history {
    background-size: auto;
  }
}
#l-wrap .content-ttl.dealer {
  background: url(../images/main_dealer_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.dealer {
    background: url(../images/main_dealer_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.dealer {
    background-size: auto;
  }
}
#l-wrap .content-ttl.info {
  background: url(../images/main_info_sp.jpg) center no-repeat #000;
  background-size: cover;
  height: calc(70vw);
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.info {
    background: url(../images/main_info_pc.jpg) center no-repeat #000;
    background-size: cover;
    height: calc(30vw);
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.info {
    background-size: auto;
    height: 400px;
  }
}
#l-wrap .content-ttl.info .ttl-h1 {
  display: none;
}
#l-wrap .content-ttl.multi-function {
  background: url(../images/main_multi-function_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.multi-function {
    background: url(../images/main_multi-function_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.multi-function {
    background-size: auto;
  }
}
#l-wrap .content-ttl.sdsm {
  background: url(../images/main_sdsm_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.sdsm {
    background: url(../images/main_sdsm_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.sdsm {
    background-size: auto;
  }
}
#l-wrap .content-ttl.topics {
  background: url(../images/main_topics_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.topics {
    background: url(../images/main_topics_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.topics {
    background-size: auto;
  }
}
#l-wrap .content-ttl.icerib {
  background: url(../images/main_ice_rib_challenge_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.icerib {
    background: url(../images/main_ice_rib_challenge_pc.jpg) center no-repeat
      #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.icerib {
    background-size: auto;
  }
}
#l-wrap .content-ttl.icerib-y22 {
  background: url(../../ice_rib_challenge/images/main_ice_rib_challenge_sp.jpg)
    center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.icerib-y22 {
    background: url(../../ice_rib_challenge/images/main_ice_rib_challenge_pc.jpg)
      center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.icerib-y22 {
    background-size: auto;
  }
}
#l-wrap .content-ttl.environment {
  background: #000;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.environment {
    background: #000;
  }
}
#l-wrap .content-ttl.environment .ttl-area {
  position: relative;
  z-index: 2;
}
#l-wrap .content-ttl.environment.has-video {
  position: relative;
}
#l-wrap .content-ttl.environment.has-video .ttl-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 265px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-video {
    height: 305px;
    max-width: 1500px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-video {
    height: 400px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1501px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-video {
    width: 100%;
  }
}
#l-wrap .content-ttl.environment.has-video .ttl-video video {
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-video video {
    height: 400px;
    width: 1500px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1499px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-video video {
    margin-left: calc((1500px - 100%) * -0.5);
  }
}
#l-wrap .content-ttl.environment.has-video .ttl-video video[poster] {
  object-fit: cover;
  object-position: center;
}
#l-wrap .content-ttl.environment.has-video .ttl-area .ttl-box .box-area {
  height: 215px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.environment.has-video .ttl-area .ttl-box .box-area {
    height: 300px;
  }
}
#l-wrap .content-ttl.environment2019 {
  background: url(../images/main_environment2019_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.environment2019 {
    background: url(../images/main_environment2019_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.environment2019 {
    background-size: auto;
  }
}
#l-wrap .content-ttl.environment2019 .ttl-area {
  position: relative;
  z-index: 2;
}
#l-wrap .content-ttl.environment2022 {
  background: url(../images/main_environment2022_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.environment2022 {
    background: url(../images/main_environment2022_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.environment2022 {
    background-size: auto;
  }
}
#l-wrap .content-ttl.environment2022 .ttl-area {
  position: relative;
  z-index: 2;
}
#l-wrap .content-ttl.sdsm_plus {
  background: url(../images/main_sdsm_plus_sp.jpg) center no-repeat #000;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  #l-wrap .content-ttl.sdsm_plus {
    background: url(../images/main_sdsm_plus_pc.jpg) center no-repeat #000;
    background-size: cover;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .content-ttl.sdsm_plus {
    background-size: auto;
  }
}

#l-wrap .product-lineup {
  padding: 0 10px;
}
@media screen and (min-width: 1240px), print {
  #l-wrap .product-lineup {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}
#l-wrap .product-lineup .m-txt-h2 {
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .product-lineup .m-txt-h2 {
    margin-bottom: 50px;
  }
}
#l-wrap .product-lineup .lineup-ttl {
  font-family: SuzukiPROHeadline;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .product-lineup .lineup-ttl {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
#l-wrap .product-lineup .lineup-desc {
  font-family: SuzukiPROHeadline;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .product-lineup .lineup-desc {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#l-wrap #content-area {
  margin: 20px 10px 35px;
}
@media screen and (min-width: 768px), print {
  #l-wrap #content-area {
    margin: 30px 20px 30px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap #content-area {
    margin: 60px 20px 60px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap #content-area {
    width: 1200px;
    margin: 60px auto 60px;
  }
}
#l-wrap #content-area > *:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px), print {
  #l-wrap #content-area.width-s {
    width: 960px;
    margin: 60px auto 60px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap #content-area.width-s .m-box-cols .col3 {
    width: 304px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap #content-area.width-s .m-box-cols .col2of3 {
    width: 624px;
  }
}

#l-wrap .dealer-area {
  background: url(../images/bg_dealer_sp.jpg) center center no-repeat #000;
  background-size: cover;
  position: relative;
  padding: 25px 20px;
}
@media screen and (min-width: 768px), print {
  #l-wrap .dealer-area {
    padding: 55px 20px;
    background: url(../images/bg_dealer_pc.jpg) center center no-repeat #000;
    background-size: auto 100%;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .dealer-area {
    background-size: auto auto;
    padding: 55px 20px;
  }
}
#l-wrap .dealer-area .dealer-catch {
  background: url(../images/ico_dealer.png) top center no-repeat;
  background-size: 21px 30px;
  padding-top: 35px;
  position: relative;
  z-index: +1;
  font-family: SuzukiPROHeadline;
  font-size: 30px;
  font-size: 30px;
  font-size: 3rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .dealer-area .dealer-catch {
    background-size: 42px 60px;
    padding-top: 70px;
    font-size: 64px;
    font-size: 6.4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}
#l-wrap .dealer-area .dealer-btn {
  position: relative;
  z-index: +1;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 1024px), print {
  #l-wrap .dealer-area .dealer-btn {
    max-width: 1200px;
    margin: 15px auto 0;
  }
}

#l-wrap .topic-path {
  padding: 15px 10px 0;
  font-size: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: SuzukiPROBold;
}
@media screen and (min-width: 768px), print {
  #l-wrap .topic-path {
    padding: 20px 20px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1240px), print {
  #l-wrap .topic-path {
    padding: 20px 0 0;
    width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px), print {
  #l-wrap .topic-path a:hover {
    text-decoration: underline;
  }
}

/* header style */
#l-header {
  position: relative;
}
@media screen and (min-width: 1024px), print {
  #l-header {
    background: #000;
  }
}
#l-header header {
  *zoom: 1;
}
#l-header header:after {
  content: " ";
  display: table;
  clear: both;
}
@media screen and (min-width: 1024px), print {
  #l-header header {
    background: #fff;
  }
}
@media screen and (min-width: 1240px), print {
  #l-header header {
    width: 1200px;
    margin: 0 auto;
  }
}
#l-header header .header-logo {
  width: 140px;
  float: left;
}
#l-header header .header-spmenu {
  float: right;
  line-height: 0.1;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-spmenu {
    display: none;
  }
}
#l-header header .header-spmenu span {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: url(../images/menu_icon.png) no-repeat;
  background-size: 70px 70px;
  text-indent: -9999px;
  overflow: hidden;
}
#l-header header .header-spmenu span.is-open {
  background: url(../images/menu_close.png) no-repeat;
  background-size: 70px 70px;
}
#l-header header .header-menu {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  display: none;
  padding: 0 10px;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: none;
    padding: 0;
    border-bottom: none;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper {
    text-align: right;
    letter-spacing: -0.4em;
    padding-top: 7px;
    padding-right: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item + .upper-item {
    border-left: 1px solid #1b1b1b;
    margin-left: 20px;
    padding-left: 20px;
  }
}
#l-header header .header-menu .header-upper .upper-item .item-link {
  display: block;
  padding: 10px 20px 8px 0;
  background: url(../images/ico_arrow_gr.png) right no-repeat;
  background-size: 5px 10px;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item .item-link {
    display: inline;
    padding: 0;
    background: none;
    border: none;
    font-size: 14px;
  }
}
#l-header header .header-menu .header-upper .upper-item.item-sns {
  border-bottom: 1px solid #d2d2d2;
  padding: 5px 0 8px;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item.item-sns {
    border-bottom: none;
    padding: 0;
    padding-left: 20px;
  }
}
#l-header header .header-menu .header-upper .upper-item.item-sns .sns-txt {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item.item-sns .sns-txt {
    display: inline;
    margin-bottom: 0;
    font-size: 14px;
    margin-right: 5px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item.item-sns .sns-link {
    vertical-align: top;
  }
}
#l-header header .header-menu .header-upper .upper-item.item-sns .sns-link img {
  width: 45px;
}
@media screen and (min-width: 1024px), print {
  #l-header
    header
    .header-menu
    .header-upper
    .upper-item.item-sns
    .sns-link
    img {
    width: 24px;
  }
}
#l-header header .header-menu .header-upper .upper-item .header-search {
  border-bottom: 1px solid #d2d2d2;
  *zoom: 1;
}
#l-header header .header-menu .header-upper .upper-item .header-search:after {
  content: " ";
  display: table;
  clear: both;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item .header-search {
    display: inline-block;
    height: 24px;
  }
}
#l-header
  header
  .header-menu
  .header-upper
  .upper-item
  .header-search
  .search-txt {
  float: left;
  padding: 5px 0 8px;
  border: none;
  width: calc(100% - 45px);
  height: 44px;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  outline: none;
}
@media screen and (min-width: 1024px), print {
  #l-header
    header
    .header-menu
    .header-upper
    .upper-item
    .header-search
    .search-txt {
    float: none;
    border: none;
    width: 140px;
    height: 20px;
    vertical-align: top;
    font-size: 14px;
  }
}
#l-header
  header
  .header-menu
  .header-upper
  .upper-item
  .header-search
  .search-btn {
  float: right;
  width: 44px;
  height: 44px;
  border: none;
  padding: 0;
  background: url(../images/header_search.png) center no-repeat;
  background-size: 20px 20px;
  overflow: hidden;
  text-indent: -9999px;
}
@media screen and (min-width: 1024px), print {
  #l-header
    header
    .header-menu
    .header-upper
    .upper-item
    .header-search
    .search-btn {
    float: none;
    width: 20px;
    height: 20px;
    background-size: 14px 14px;
    vertical-align: top;
  }
}
#l-header header .header-menu .header-upper .upper-item .header-lang {
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item .header-lang {
    border-bottom: none;
    display: inline-block;
    margin-left: 15px;
  }
}
#l-header header .header-menu .header-upper .upper-item .header-lang select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100%;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
  height: 44px;
  background: url(../images/header_lang.png) right 16px center no-repeat;
  background-size: 11px 10px;
  outline: none;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-upper .upper-item .header-lang select {
    font-size: 14px;
    border-bottom: 1px solid #d2d2d2;
    min-width: 160px;
    width: auto;
    height: 24px;
    background: url(../images/header_lang.png) right no-repeat;
    background-size: 8px 7px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-bottom {
    background: #323232;
    overflow: hidden;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-bottom nav ul {
    letter-spacing: -0.4em;
    text-align: right;
  }
}
#l-header header .header-menu .header-bottom nav ul li {
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-bottom nav ul li {
    border-bottom: none;
    display: inline-block;
    letter-spacing: normal;
  }
}
#l-header header .header-menu .header-bottom nav ul li:last-child {
  border-bottom: none;
}
#l-header header .header-menu .header-bottom nav ul li a {
  display: block;
  padding: 10px 20px 8px 0;
  background: url(../images/ico_arrow_gr.png) right no-repeat;
  background-size: 5px 10px;
  font-family: SuzukiPROHeadline;
  font-size: 18px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px), print {
  #l-header header .header-menu .header-bottom nav ul li a {
    background: #323232;
    color: #fff;
    display: inline-block;
    padding: 3px 20px;
    min-width: 180px;
    text-align: center;
  }
  #l-header header .header-menu .header-bottom nav ul li a:hover {
    background: #fff;
    color: #323232;
  }
}

/* content style */
/* footer style */
#l-footer .footer-area {
  background: #c7caca;
}
#l-footer .footer-area .area-inner {
  padding: 15px 10px;
  color: #000;
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-area .area-inner {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0 60px;
  }
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-upper {
    *zoom: 1;
  }
  #l-footer .footer-area .area-inner .inner-upper:after {
    content: " ";
    display: table;
    clear: both;
  }
}
#l-footer .footer-area .area-inner .inner-upper h2 {
  font-family: SuzukiPROHeadline;
  font-size: 20px;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-upper h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-cmp {
    width: calc(50% - 10px);
    float: left;
  }
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-cmp {
    width: 588px;
  }
}
#l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info {
  *zoom: 1;
  margin-top: 10px;
}
#l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info:after {
  content: " ";
  display: table;
  clear: both;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 7px;
  }
}
#l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info dt {
  font-family: SuzukiPROHeadline;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info dt {
    float: left;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-cmp .cmp-info dd {
    overflow: hidden;
  }
}
#l-footer .footer-area .area-inner .inner-upper .footer-partner {
  margin-top: 15px;
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-partner {
    width: calc(50% - 10px);
    float: right;
    margin-top: 0;
  }
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-area .area-inner .inner-upper .footer-partner {
    width: 588px;
  }
}
#l-footer
  .footer-area
  .area-inner
  .inner-upper
  .footer-partner
  .partner-banner {
  *zoom: 1;
}
#l-footer
  .footer-area
  .area-inner
  .inner-upper
  .footer-partner
  .partner-banner:after {
  content: " ";
  display: table;
  clear: both;
}
#l-footer
  .footer-area
  .area-inner
  .inner-upper
  .footer-partner
  .partner-banner
  li {
  width: calc(50% - 5px);
  float: left;
  margin-top: 10px;
  margin-right: 10px;
  text-align: center;
}
@media screen and (min-width: 1240px), print {
  #l-footer
    .footer-area
    .area-inner
    .inner-upper
    .footer-partner
    .partner-banner
    li {
    width: 188px;
    margin-right: 12px;
  }
}
#l-footer
  .footer-area
  .area-inner
  .inner-upper
  .footer-partner
  .partner-banner
  li:nth-child(even) {
  margin-right: 0;
}
@media screen and (min-width: 1240px), print {
  #l-footer
    .footer-area
    .area-inner
    .inner-upper
    .footer-partner
    .partner-banner
    li:nth-child(even) {
    margin-right: 12px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-footer
    .footer-area
    .area-inner
    .inner-upper
    .footer-partner
    .partner-banner
    li:nth-child(3n) {
    margin-right: 0;
  }
}
#l-footer .footer-area .area-inner .inner-bottom {
  border-top: 1px solid #355968;
  margin-top: 10px;
  padding-top: 10px;
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-bottom {
    *zoom: 1;
  }
  #l-footer .footer-area .area-inner .inner-bottom:after {
    content: " ";
    display: table;
    clear: both;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-bottom {
    margin-top: 35px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-bottom .bottom-banner {
    float: left;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-bottom .bottom-banner {
    margin-right: 30px;
  }
}
#l-footer .footer-area .area-inner .inner-bottom .bottom-link {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-bottom .bottom-link {
    overflow: hidden;
    margin-top: 0;
    letter-spacing: -0.4em;
    padding-top: 12px;
  }
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-area .area-inner .inner-bottom .bottom-link li {
    letter-spacing: normal;
    display: inline-block;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-area .area-inner .inner-bottom .bottom-link li {
    margin-right: 30px;
  }
}

#l-footer .footer-sub {
  background: #2a2a2a;
  color: #fff;
  padding: 10px;
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-sub {
    padding: 15px 0 18px;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-sub .sub-area {
    *zoom: 1;
  }
  #l-footer .footer-sub .sub-area:after {
    content: " ";
    display: table;
    clear: both;
  }
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-sub .sub-area {
    width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-sub .sub-area .sub-link {
    letter-spacing: -0.4em;
  }
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-sub .sub-area .sub-link {
    float: left;
  }
}
#l-footer .footer-sub .sub-area .sub-link li {
  margin-top: 2px;
}
@media screen and (min-width: 768px), print {
  #l-footer .footer-sub .sub-area .sub-link li {
    letter-spacing: normal;
    display: inline-block;
    margin-right: 15px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-footer .footer-sub .sub-area .sub-link li {
    margin-right: 20px;
  }
}
#l-footer .footer-sub .sub-area .sub-link li a {
  display: inline-block;
  color: #fff;
  position: relative;
  padding-left: 10px;
  font-size: 11px;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-sub .sub-area .sub-link li a {
    font-size: 12px;
    padding-left: 20px;
  }
}
#l-footer .footer-sub .sub-area .sub-link li a:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 8px;
  background: url(../images/ico_arrow.png) no-repeat;
  background-size: 4px 8px;
  position: absolute;
  top: 0.3em;
  left: 0;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-sub .sub-area .sub-link li a:before {
    width: 8px;
    height: 16px;
    background-size: 8px 16px;
    top: 0.1em;
  }
}
#l-footer .footer-sub .sub-area .sub-copy {
  text-align: center;
  border-top: 1px solid #000;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 10px;
}
@media screen and (min-width: 1024px), print {
  #l-footer .footer-sub .sub-area .sub-copy {
    float: right;
    border-top: 0;
    margin-top: 6px;
    padding-top: 0;
    font-size: 12px;
  }
}

#cboxClose {
  width: 30px;
  height: 30px;
  top: -34px;
  bottom: auto;
  right: 0;
  overflow: hidden;
}
#cboxClose:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 42px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -6px;
  left: 14px;
}
#cboxClose:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 42px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -6px;
  left: 14px;
}

#l-accept {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid #fff;
  padding: 10px;
  color: #fff;
  z-index: +1;
}
@media screen and (min-width: 768px), print {
  #l-accept {
    padding: 20px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-accept {
    padding: 25px 0;
  }
}
@media screen and (min-width: 1240px), print {
  #l-accept .accept-area {
    width: 1200px;
    margin: 0 auto;
    *zoom: 1;
  }
  #l-accept .accept-area:after {
    content: " ";
    display: table;
    clear: both;
  }
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-txt {
    width: 60%;
    float: left;
  }
}
@media screen and (min-width: 1240px), print {
  #l-accept .accept-area .accept-txt {
    width: 770px;
  }
}
#l-accept .accept-area .accept-btns {
  margin-top: 10px;
  *zoom: 1;
}
#l-accept .accept-area .accept-btns:after {
  content: " ";
  display: table;
  clear: both;
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns {
    float: right;
    width: 35%;
    margin-top: 5px;
  }
}
@media screen and (min-width: 1240px), print {
  #l-accept .accept-area .accept-btns {
    width: 420px;
  }
}
#l-accept .accept-area .accept-btns li {
  float: left;
  width: calc(50% - 5px);
  text-align: center;
}
#l-accept .accept-area .accept-btns li:nth-child(even) {
  float: right;
}
#l-accept .accept-area .accept-btns li .btns-link {
  font-family: SuzukiPROHeadline;
  color: #fff;
  display: block;
  padding: 10px 10px;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-link {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 15px 10px;
    display: inline-block;
  }
}
#l-accept .accept-area .accept-btns li .btns-link span {
  display: inline-block;
  position: relative;
  padding-right: 19px;
}
#l-accept .accept-area .accept-btns li .btns-link span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -6px;
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-link span:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-link:hover {
    text-decoration: underline;
  }
  #l-accept .accept-area .accept-btns li .btns-link:hover span {
    text-decoration: underline;
  }
}
#l-accept .accept-area .accept-btns li .btns-close {
  display: block;
  border: 1px solid #fff;
  text-align: center;
  padding: 10px 10px;
  font-family: SuzukiPROHeadline;
  font-size: 15px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-close {
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    padding: 15px 10px;
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-close:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -2px;
    background: #003145;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
#l-accept .accept-area .accept-btns li .btns-close span {
  display: inline-block;
  position: relative;
  padding-right: 19px;
}
#l-accept .accept-area .accept-btns li .btns-close span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: -6px;
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-close span:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px), print {
  #l-accept .accept-area .accept-btns li .btns-close:hover {
    color: #fff;
  }
  #l-accept .accept-area .accept-btns li .btns-close:hover:before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/* print style */
@media print {
  html {
    background: none;
  }
  body {
    padding: 0;
    background: none;
  }
  /* for IE7 */
  *:first-child + html body {
    zoom: 67%;
  }
}
