@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 13px 22px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 20px;
  height: 15px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 1px;
    background-color: #181a1b;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -7px; }
  .hamburger-inner::after {
    bottom: -7px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 40px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 40px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 40px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 40px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-4px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(4px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(4px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4px, -5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4px, 5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4px, -5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 0.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 14px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 0.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 7px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 14px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 7px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -40px;
      top: -40px;
      transform: translate3d(40px, 40px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -40px;
      top: -40px;
      transform: translate3d(-40px, 40px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 7px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -40px;
      top: 40px;
      transform: translate3d(40px, -40px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -40px;
      top: 40px;
      transform: translate3d(-40px, -40px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 0.5px; }
  .hamburger--slider .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 14px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.85714px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 0.5px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 14px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.85714px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 0.5px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 7px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 7px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -14px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* argument */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
#contact {
  /* dislay */
  /* contact */ }
  #contact .errMsg {
    margin-left: 1em;
    padding-bottom: 1px;
    display: block;
    line-height: 1.4;
    text-indent: -.9em; }
  #contact .formError {
    padding-bottom: 13px;
    display: block; }
  #contact .fixed {
    padding-bottom: 0px; }
  #contact .formError .formErrorClose {
    border: solid #252525 2px;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -4px;
    right: -4px;
    color: #efefef;
    background: #333;
    font-weight: bold;
    text-align: center;
    line-height: middle;
    cursor: pointer;
    z-index: 2;
    -webkit-border-radius: 9px 9px 9px 9px;
    -moz-border-radius: 9px 9px 9px 9px;
    -ms-border-radius: 9px 9px 9px 9px;
    -o-border-radius: 9px 9px 9px 9px;
    border-radius: 9px 9px 9px 9px;
    -webkit-box-shadow: 1px -1px 3px #888;
    -moz-box-shadow: 1px -1px 3px #888;
    -ms-box-shadow: 1px -1px 3px #888;
    -o-box-shadow: 1px -1px 3px #888;
    box-shadow: 1px -1px 3px #888; }
  #contact .formError .formErrorClose:hover {
    background: #666; }
  #contact .fixed .formErrorClose {
    display: none; }
  #contact .formError .formErrorContent {
    padding: 6px 10px;
    width: 180px;
    position: relative;
    color: #fff;
    background: #252525;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif;
    font-size: 11px;
    margin: 0 0;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 6px #888;
    -moz-box-shadow: 0px 0px 6px #888;
    -ms-box-shadow: 0px 0px 6px #888;
    -o-box-shadow: 0px 0px 6px #888;
    box-shadow: 0px 0px 6px #888; }
  #contact .fixed .formErrorContent {
    margin-top: .5em;
    background: #f60;
    margin: 0 0 30px 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    border-radius: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .fadeOut {
    opacity: .2;
    filter: alpha(opacity=20); }
  #contact .formError .formErrorArrow {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 20px;
    margin: 0 0 30px 0;
    z-index: 0; }
  #contact .fixed .formErrorArrow {
    display: none; }
  #contact .formError .formErrorArrowBottom {
    margin: -6px;
    top: 0; }
  #contact .fixed .formErrorArrowBottom {
    display: none; }
  #contact .formError .formErrorArrow div {
    margin: 0 auto;
    display: block;
    height: 1px;
    background: #252525;
    line-height: 0px;
    font-size: 0px;
    -webkit-box-shadow: 0px 2px 3px #888;
    -moz-box-shadow: 0px 2px 3px #888;
    -ms-box-shadow: 0px 2px 3px #888;
    -o-box-shadow: 0px 2px 3px #888;
    box-shadow: 0px 2px 3px #888; }
  #contact .formError .formErrorArrowBottom div {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .formError .formErrorArrow .line10 {
    width: 19px; }
  #contact .formError .formErrorArrow .line9 {
    width: 17px; }
  #contact .formError .formErrorArrow .line8 {
    width: 15px; }
  #contact .formError .formErrorArrow .line7 {
    width: 13px; }
  #contact .formError .formErrorArrow .line6 {
    width: 11px; }
  #contact .formError .formErrorArrow .line5 {
    width: 9px; }
  #contact .formError .formErrorArrow .line4 {
    width: 7px; }
  #contact .formError .formErrorArrow .line3 {
    width: 5px; }
  #contact .formError .formErrorArrow .line2 {
    width: 3px; }
  #contact .formError .formErrorArrow .line1 {
    width: 1px; }
  #contact .hid_url {
    display: none; }
  #contact form p.test {
    position: relative;
    color: #C1C0BC; }
  #contact form p.test label {
    position: absolute;
    top: 3px;
    left: 10px;
    font-weight: normal; }
  #contact form p.test br {
    display: none; }
  #contact .formBlock {
    max-width: 890px;
    margin: auto; }
  #contact .txtContact {
    text-align: left;
    font-size: 16px;
    margin: 70px auto 50px; }
  #contact .txtContact01 {
    font-size: 14px;
    margin-bottom: 50px; }
  #contact .tableContact em,
  #contact .txtContact em {
    color: #fb2a2a;
    font-style: normal; }
  #contact .tableContact {
    border-top: #8f8f8f solid 1px;
    border-bottom: #8f8f8f solid 1px;
    width: 100%;
    margin: 30px 0 50px;
    font-size: 15px;
    text-align: left; }
    #contact .tableContact td,
    #contact .tableContact th {
      border-bottom: #8f8f8f solid 1px;
      padding: 20px;
      vertical-align: top; }
    #contact .tableContact th {
      background: #ededed;
      width: 210px;
      font-weight: normal; }
    #contact .tableContact td {
      position: relative; }
    #contact .tableContact input[type="text"],
    #contact .tableContact input[type="email"],
    #contact .tableContact input[type="number"],
    #contact .tableContact input[type="url"] {
      width: 300px;
      height: 23px;
      color: #1a1a1a; }
    #contact .tableContact input[type="text"],
    #contact .tableContact textarea {
      border: #8f8f8f solid 1px; }
    #contact .tableContact .size01 input[type="text"] {
      width: 160px; }
    #contact .tableContact .size02 input[type="text"],
    #contact .tableContact textarea {
      width: 100%; }
    #contact .tableContact textarea {
      height: 150px; }
  #contact .stepImg {
    margin: 30px 0; }
    #contact .stepImg img {
      display: block;
      width: 100%; }
  #contact .stepImg {
    margin: 30px 0; }
  #contact .tabForm {
    margin: 50px auto 0; }
  #contact .tabForm ul {
    font-size: 0;
    letter-spacing: 0;
    margin: 0;
    border-bottom: 2px solid #000; }
  #contact .tabForm ul li {
    display: inline-block;
    width: 50%;
    padding: 0; }
  #contact .tabForm ul li input {
    position: absolute;
    opacity: 0; }
  #contact .tabForm ul li label {
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: 20px; }
  #contact .tabForm ul li input:checked ~ label {
    background: #000;
    color: #fff; }
  #contact .tabForm ul li label:hover {
    opacity: 1;
    background: #555;
    color: #fff; }
  #contact .tableContact input[type="text"],
  #contact .tableContact input[type="url"],
  #contact .tableContact input[type="email"],
  #contact .tableContact textarea {
    padding: 10px;
    height: auto;
    border: 1px solid #aaa; }
  #contact .tableContact select {
    -webkit-appearance: none;
    border: 1px solid #aaa;
    padding: 10px; }
  #contact .tableContact .pRadio {
    display: inline-block;
    vertical-align: middle; }
  #contact .tableContact .pRadio input {
    position: absolute;
    opacity: 0; }
  #contact .tableContact .pRadio label {
    display: inline-block;
    margin: 0 5px 0 0;
    border: 1px solid #aaa;
    padding: 10px 20px; }
  #contact .tableContact .pRadio input:checked ~ label {
    background: #555;
    border-color: #555;
    color: #fff; }
  #contact button {
    height: 60px;
    margin: 20px auto;
    padding: 0 100px;
    background: #eee; }

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

html {
  color: #181a1b;
  font-size: 62.5%;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  color: inherit;
  text-decoration: none; }

.inner {
  max-width: 1000px;
  width: calc(100% - 60px);
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      width: calc(100% - 50px); } }

.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.mont {
  font-family: "Montserrat", sans-serif; }

.footer {
  background-color: #181a1b; }
  @media only screen and (max-width: 767px) {
    .footer {
      position: relative; }
      .footer:before {
        background-color: #fff;
        content: "";
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        top: -1px;
        height: 2px;
        width: 100%; } }
  .footer .upper-area {
    background-image: url("../images/common/bg_01.jpg");
    background-size: 1280px;
    padding-top: 57px; }
    @media only screen and (max-width: 767px) {
      .footer .upper-area {
        background-image: url("../images/common/bg_01_sp.jpg");
        background-size: 3px;
        background-repeat: repeat;
        padding-top: 29px;
        position: relative; }
        .footer .upper-area:before {
          background-color: #fff;
          content: "";
          display: none;
          margin: 0 auto;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 45px;
          width: 100%; } }
    .footer .upper-area .upper-box {
      padding-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .footer .upper-area .upper-box {
          padding-bottom: 30px; } }
      .footer .upper-area .upper-box .left {
        width: 50%; }
        @media only screen and (max-width: 767px) {
          .footer .upper-area .upper-box .left {
            width: 100%; } }
        .footer .upper-area .upper-box .left .logo {
          display: block;
          width: 289px; }
        .footer .upper-area .upper-box .left .address {
          margin: 36px 0 16px;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.857; }
          @media only screen and (max-width: 767px) {
            .footer .upper-area .upper-box .left .address {
              margin: 23px 0 10px;
              line-height: 1.71; } }
          .footer .upper-area .upper-box .left .address b {
            display: inline-block;
            margin-bottom: 5px;
            font-weight: bold; }
      .footer .upper-area .upper-box .right {
        max-width: 490px;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .footer .upper-area .upper-box .right {
            margin-top: 25px;
            max-width: none;
            width: 100%; } }
        .footer .upper-area .upper-box .right .tel-btn {
          background-color: white;
          margin-bottom: 20px;
          height: 100px;
          width: 100%;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            .footer .upper-area .upper-box .right .tel-btn {
              margin-bottom: 9px;
              height: 80px;
              flex-direction: column; } }
          @media only screen and (min-width: 768px) {
            .footer .upper-area .upper-box .right .tel-btn {
              cursor: pointer;
              -webkit-transition: 0.3s;
              -moz-transition: 0.3s;
              -o-transition: 0.3s;
              transition: 0.3s; }
              .footer .upper-area .upper-box .right .tel-btn:hover {
                opacity: .7; } }
          .footer .upper-area .upper-box .right .tel-btn .txt {
            font-size: 30px;
            font-size: 3rem;
            font-weight: 600;
            font-family: "Montserrat", sans-serif;
            letter-spacing: 0.025em; }
            @media only screen and (max-width: 767px) {
              .footer .upper-area .upper-box .right .tel-btn .txt {
                font-size: 27px;
                font-size: 2.7rem; } }
          .footer .upper-area .upper-box .right .tel-btn .sml {
            color: #b6b6b6;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.428;
            letter-spacing: 0.025em;
            margin-left: 23px; }
            @media only screen and (max-width: 767px) {
              .footer .upper-area .upper-box .right .tel-btn .sml {
                display: inline-block;
                margin-top: 7px;
                font-size: 14px;
                font-size: 1.4rem; } }
            .footer .upper-area .upper-box .right .tel-btn .sml .numb {
              font-family: "Work Sans", sans-serif; }
        .footer .upper-area .upper-box .right .mail-bnt {
          background-color: black;
          background-image: url("../images/common/arw_01.png");
          background-size: 50px;
          background-repeat: no-repeat;
          background-position: right 30px center;
          transition: all .3s;
          height: 100px;
          width: 100%;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            .footer .upper-area .upper-box .right .mail-bnt {
              background-size: 30px;
              background-position: right 20px center;
              height: 80px; } }
          .footer .upper-area .upper-box .right .mail-bnt .txt {
            color: white;
            font-size: 18px;
            font-size: 1.8rem;
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-right: 24px; }
            @media only screen and (max-width: 767px) {
              .footer .upper-area .upper-box .right .mail-bnt .txt {
                font-size: 16px;
                font-size: 1.6rem; } }
          .footer .upper-area .upper-box .right .mail-bnt img {
            margin-right: 9px;
            width: 28px; }
            @media only screen and (max-width: 767px) {
              .footer .upper-area .upper-box .right .mail-bnt img {
                width: 24px; } }
          @media only screen and (min-width: 768px) {
            .footer .upper-area .upper-box .right .mail-bnt:hover {
              background-color: red; } }
    .footer .upper-area .map-box {
      border: 10px solid white;
      margin: 0 auto;
      max-width: 1140px; }
      @media only screen and (max-width: 767px) {
        .footer .upper-area .map-box {
          border: 7px solid white;
          width: calc(100% - 50px); } }
      .footer .upper-area .map-box iframe {
        height: 380px;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .footer .upper-area .map-box iframe {
            height: 185px; } }
    .footer .upper-area .map-list {
      padding: 40px 0; }
      @media only screen and (max-width: 767px) {
        .footer .upper-area .map-list {
          padding: 25px;
          position: relative;
          z-index: 2;
          width: 100%; } }
      .footer .upper-area .map-list li {
        width: calc((100% - 40px)/5); }
        @media only screen and (max-width: 767px) {
          .footer .upper-area .map-list li {
            margin-bottom: 5px;
            width: calc((100% - 5px)/2); }
            .footer .upper-area .map-list li:last-child {
              margin-bottom: 0; } }
  .footer .footer-navi {
    padding: 57px 0; }
    @media only screen and (max-width: 767px) {
      .footer .footer-navi {
        padding: 36px 0 27px; } }
    .footer .footer-navi ul {
      padding: 0 38px;
      width: calc(100%/3); }
      @media only screen and (max-width: 767px) {
        .footer .footer-navi ul {
          padding: 0px;
          width: 100%;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap; } }
      @media only screen and (min-width: 768px) {
        .footer .footer-navi ul:nth-child(1) {
          border-left: 1px solid #303132; } }
      @media only screen and (max-width: 767px) {
        .footer .footer-navi ul:nth-child(1) li:last-child {
          width: 100%; } }
      @media only screen and (min-width: 768px) {
        .footer .footer-navi ul:nth-child(2) {
          border-left: 1px solid #303132;
          border-right: 1px solid #303132;
          padding: 0 38px; } }
      @media only screen and (max-width: 767px) {
        .footer .footer-navi ul:nth-child(2) li:first-child {
          margin-bottom: -5px;
          width: 100%; } }
      @media only screen and (min-width: 768px) {
        .footer .footer-navi ul:nth-child(3) {
          border-right: 1px solid #303132; } }
      @media only screen and (max-width: 767px) {
        .footer .footer-navi ul:nth-child(3) {
          border-bottom: 1px solid #303132;
          margin-top: 5px; } }
      .footer .footer-navi ul li {
        margin-bottom: 27px;
        font-weight: bold; }
        @media only screen and (min-width: 768px) {
          .footer .footer-navi ul li {
            cursor: pointer;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s; }
            .footer .footer-navi ul li:hover {
              opacity: .7; } }
        @media only screen and (max-width: 767px) {
          .footer .footer-navi ul li {
            border-top: 1px solid #303132;
            margin-bottom: 0;
            width: 50%; }
            .footer .footer-navi ul li:nth-child(even) a {
              padding: 14px 0 14px 40px; } }
        .footer .footer-navi ul li:last-child {
          margin-bottom: 0; }
        .footer .footer-navi ul li.subs {
          padding-left: 14px;
          font-weight: normal; }
          @media only screen and (max-width: 767px) {
            .footer .footer-navi ul li.subs {
              border-top: none; }
              .footer .footer-navi ul li.subs a {
                padding: 6px 0 6px 14px; }
              .footer .footer-navi ul li.subs:nth-child(odd) a {
                padding: 6px 0 6px 26px; } }
        .footer .footer-navi ul li a {
          color: white;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em; }
          @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
            .footer .footer-navi ul li a {
              white-space: nowrap; } }
          @media only screen and (max-width: 767px) {
            .footer .footer-navi ul li a {
              display: block;
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.538;
              padding: 14px 0 14px 15px; }
              .footer .footer-navi ul li a.center-item {
                padding: 21px 0 14px 40px; } }
  .footer .top-text {
    border-top: 1px solid #303132;
    display: none;
    color: white;
    font-size: 10px;
    font-size: 1rem;
    line-height: 2.4;
    text-align: justify;
    padding: 38px 30px;
    line-height: 2.4;
    text-align: justify; }
    @media only screen and (max-width: 767px) {
      .footer .top-text {
        border-top: none;
        line-height: 2.5;
        padding: 0 0 29px; } }
  .footer .footer-copy-right {
    background: black;
    color: white;
    font-size: 10px;
    font-size: 1rem;
    padding-top: 24px;
    text-align: center;
    height: 60px; }
    @media only screen and (max-width: 767px) {
      .footer .footer-copy-right {
        padding-top: 21px;
        height: 45px; } }

#to-top {
  background-color: #e20c17;
  background-image: url("../images/common/totop.png");
  background-size: 16px 24px;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  transition: all .3s;
  height: 60px;
  width: 60px;
  z-index: 100; }
  @media only screen and (min-width: 768px) {
    #to-top {
      cursor: pointer;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      #to-top:hover {
        opacity: .7; } }
  @media only screen and (max-width: 767px) {
    #to-top {
      background-size: 13px 20px;
      height: 45px;
      width: 45px; } }
  #to-top.active {
    opacity: 1;
    pointer-events: auto; }

.header {
  background-color: white;
  position: relative;
  height: 90px;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 3px 18px 0px rgba(0, 0, 0, 0.07); }
  @media only screen and (min-width: 768px) {
    .header.fixed {
      position: fixed;
      top: 0;
      left: 0; } }
  @media only screen and (max-width: 767px) {
    .header {
      position: fixed;
      top: 0;
      left: 0;
      height: 60px; } }
  .header .logo {
    margin: 0 auto;
    position: absolute;
    left: 29px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 200px; }
    @media only screen and (min-width: 768px) {
      .header .logo {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .header .logo:hover {
          opacity: .7; } }
    @media only screen and (max-width: 1025px) {
      .header .logo {
        width: 140px; } }
    @media only screen and (max-width: 767px) {
      .header .logo {
        left: 14px;
        width: 137px;
        z-index: 3; } }
  .header .gnavi {
    margin: 0 auto;
    position: absolute;
    right: 138px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    max-width: 517px; }
    @media only screen and (max-width: 1025px) {
      .header .gnavi {
        width: 53.39%; } }
    @media only screen and (max-width: 767px) {
      .header .gnavi {
        display: block;
        margin: 0 auto;
        opacity: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 0%;
        overflow-y: scroll;
        padding: 110px 25px 250px;
        transform: translateY(-120%);
        transition: all .5s;
        height: 100vh;
        width: 100%; }
        .header .gnavi.is-active {
          transform: translateY(0%);
          opacity: 1;
          pointer-events: auto; }
        .header .gnavi:before {
          background-color: #fff;
          content: "";
          margin: 0 auto;
          position: absolute;
          left: 0;
          right: 0;
          top: 0%;
          height: 616px;
          width: 100%; } }
    .header .gnavi li {
      position: relative;
      height: 100%; }
      @media only screen and (max-width: 767px) {
        .header .gnavi li {
          border-top: 1px solid #d7d7d7;
          height: auto;
          width: 100%; }
          .header .gnavi li:last-child {
            border-bottom: 1px solid #d7d7d7; } }
      .header .gnavi li a {
        height: 100%;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        flex-direction: column; }
        @media only screen and (max-width: 767px) {
          .header .gnavi li a {
            display: block;
            padding: 25px 15px; }
            .header .gnavi li a br {
              display: none; } }
        .header .gnavi li a .en {
          display: block;
          margin-bottom: 9px;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.025em;
          font-weight: 600;
          font-family: "Work Sans", sans-serif;
          transition: all .3s; }
          @media only screen and (max-width: 767px) {
            .header .gnavi li a .en {
              display: inline-block;
              font-size: 18px;
              font-size: 1.8rem; } }
        .header .gnavi li a .ja {
          color: #b6b6b6;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.05em;
          font-weight: 600;
          transition: all .3s; }
          @media only screen and (max-width: 767px) {
            .header .gnavi li a .ja {
              display: inline-block;
              font-size: 13px;
              font-size: 1.3rem;
              padding-left: 18px; } }
      .header .gnavi li:before {
        background-color: #e20c17;
        content: "";
        margin: 0 auto;
        position: absolute;
        transition: all .3s;
        opacity: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 100%; }
      @media only screen and (min-width: 768px) {
        .header .gnavi li:hover:before {
          opacity: 1; }
        .header .gnavi li:hover .ja, .header .gnavi li:hover .en {
          color: #e20c17; } }
  .header .contact-btn {
    background-color: #181a1b;
    color: white;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.025em;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    transition: all .3s;
    right: 0;
    top: 0%;
    height: 100%;
    width: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-direction: column; }
    @media only screen and (max-width: 767px) {
      .header .contact-btn {
        font-size: 10px;
        font-size: 1rem;
        right: 65px;
        width: 65px; } }
    .header .contact-btn img {
      margin-bottom: 12px;
      width: 28px; }
      @media only screen and (max-width: 767px) {
        .header .contact-btn img {
          margin-bottom: 10px;
          width: 21px; } }
    @media only screen and (min-width: 768px) {
      .header .contact-btn:hover {
        background-color: #e20c17; } }
  .header .hamburger {
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    z-index: 2; }
    .header .hamburger .hamburger-box {
      top: -9px; }
    .header .hamburger.is-active {
      background-color: #f1f1f1; }
    .header .hamburger .txt {
      font-size: 10px;
      font-size: 1rem;
      font-family: "Montserrat", sans-serif;
      letter-spacing: 0.05em;
      font-weight: 600;
      margin: 0 auto;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 11px; }

h1 {
  color: white;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  position: absolute;
  top: 11px;
  right: 21px;
  z-index: 1000; }
  @media only screen and (max-width: 767px) {
    h1 {
      opacity: 0;
      position: absolute;
      pointer-events: none;
      width: auto; } }

@media only screen and (min-width: 768px) {
  .header-box {
    height: 90px; } }

@media only screen and (max-width: 767px) {
  .header-box {
    display: none !important; } }

.is-active .hamburger-inner, .is-active .hamburger-inner::before, .is-active .hamburger-inner::after {
  height: 2px; }

.breadcrumbs-box {
  padding: 17px 0; }
  @media only screen and (max-width: 767px) {
    .breadcrumbs-box {
      padding: 15px 0; } }

ul.breadcrumbs {
  margin: 0 auto 0;
  padding: 0 30px;
  position: relative;
  max-width: 1060px; }
  @media only screen and (max-width: 767px) {
    ul.breadcrumbs {
      margin: 0 auto 0;
      margin-left: 0;
      padding: 0 25px; } }
  ul.breadcrumbs li {
    display: inline-block; }
    ul.breadcrumbs li:last-child {
      display: inline;
      line-height: 1.5; }
    ul.breadcrumbs li:not(:last-child) {
      padding-right: 28px;
      position: relative;
      /* IE11  */
      /* Edge(Chromium) */ }
      @media only screen and (max-width: 767px) {
        ul.breadcrumbs li:not(:last-child) {
          padding-right: 22px; } }
      ul.breadcrumbs li:not(:last-child)::before {
        content: "";
        border-top: 1px solid #1a2034;
        border-right: 1px solid #1a2034;
        position: absolute;
        width: 5px;
        height: 5px;
        top: 4px;
        right: 10px;
        transform: rotate(45deg); }
        @media only screen and (max-width: 767px) {
          ul.breadcrumbs li:not(:last-child)::before {
            width: 4px;
            height: 4px;
            top: 5px;
            right: 8px; } }
      ul.breadcrumbs li:not(:last-child) _:lang(x)::-ms-backdrop, ul.breadcrumbs li:not(:last-child):before {
        top: 2px; }
      ul.breadcrumbs li:not(:last-child) _:lang(x)::-ms-, ul.breadcrumbs li:not(:last-child) em {
        top: 4px; }
    ul.breadcrumbs li a, ul.breadcrumbs li span {
      font-size: 12px; }
      @media only screen and (min-width: 768px) {
        ul.breadcrumbs li a, ul.breadcrumbs li span {
          cursor: pointer;
          -webkit-transition: 0.3s;
          -moz-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
          ul.breadcrumbs li a:hover, ul.breadcrumbs li span:hover {
            opacity: .7; } }
      @media only screen and (max-width: 767px) {
        ul.breadcrumbs li a, ul.breadcrumbs li span {
          font-size: 11px; } }
      @media screen and (device-aspect-ratio: 40 / 71) {
        ul.breadcrumbs li a, ul.breadcrumbs li span {
          font-size: 11px; } }

.btn {
  display: block;
  position: relative; }
  .btn.btn-01 {
    background-color: #e20c17;
    border: 1px solid #e20c17;
    color: white;
    transition: all .3s;
    height: 50px;
    width: 200px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .btn.btn-01 {
        height: 45px;
        width: 160px; } }
    .btn.btn-01 .txt {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      font-family: "Work Sans", sans-serif;
      padding-left: 30px; }
      @media only screen and (max-width: 767px) {
        .btn.btn-01 .txt {
          font-size: 15px;
          font-size: 1.5rem;
          padding-left: 30px; } }
    .btn.btn-01 img {
      margin: 0 auto;
      position: absolute;
      left: 30px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px; }
      @media only screen and (max-width: 767px) {
        .btn.btn-01 img {
          left: 20px;
          width: 10px; } }
      .btn.btn-01 img.on {
        display: none; }
      .btn.btn-01 img.off {
        display: block; }
    @media only screen and (min-width: 768px) {
      .btn.btn-01:hover {
        background-color: white;
        color: #e20c17; }
        .btn.btn-01:hover .on {
          display: block; }
        .btn.btn-01:hover .off {
          display: none; } }
  .btn.btn-02 {
    background-color: black;
    border: 1px solid black;
    color: white;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all .3s;
    height: 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 767px) {
      .btn.btn-02 {
        height: 30px; } }
    .btn.btn-02 img {
      margin: 0 auto;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 11px; }
      @media only screen and (max-width: 767px) {
        .btn.btn-02 img {
          right: 15px;
          width: 10px; } }
    .btn.btn-02 .txt {
      white-space: nowrap; }
    @media only screen and (min-width: 768px) {
      .btn.btn-02:hover {
        background-color: #e20c17;
        border: 1px solid #e20c17; } }
  .btn.btn-03 {
    background-color: white;
    border: 1px solid #e20c17;
    color: #e20c17;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding-top: 12px;
    position: relative;
    text-align: center;
    transition: all .3s;
    height: 40px;
    max-width: 280px; }
    @media only screen and (max-width: 767px) {
      .btn.btn-03 {
        padding-top: 10px;
        height: 35px;
        max-width: none;
        width: 100%; } }
    .btn.btn-03 svg {
      margin: 0 auto;
      position: absolute;
      right: 19px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px; }
    @media only screen and (min-width: 768px) {
      .btn.btn-03:hover {
        background-color: #e20c17;
        color: white; }
        .btn.btn-03:hover .cls-1 {
          fill: white; } }
  .btn.btn-04 {
    background-color: #e20c17;
    border: 1px solid #e20c17;
    color: white;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all .3s;
    height: 60px;
    width: 320px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .btn.btn-04 {
        height: 45px;
        width: 245px; } }
    .btn.btn-04 img {
      margin: 0 auto;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 15px; }
      @media only screen and (max-width: 767px) {
        .btn.btn-04 img {
          width: 10px; } }
    @media only screen and (min-width: 768px) {
      .btn.btn-04:hover {
        background-color: white;
        color: #e20c17; }
        .btn.btn-04:hover .on {
          display: block; }
        .btn.btn-04:hover .off {
          display: none; } }

.case-item {
  position: relative; }
  .case-item .section-07-wrapper {
    background-color: white;
    margin: 0 auto;
    padding: 67px 70px 63px;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .case-item .section-07-wrapper {
        height: 694px;
        width: calc(100% - 140px); } }
    @media only screen and (max-width: 767px) {
      .case-item .section-07-wrapper {
        padding: 36px 15px 50px;
        margin: 0 auto;
        max-width: calc(100% - 50px);
        height: 632px; }
        .case-item .section-07-wrapper .inner {
          padding: 0;
          width: 100%; }
        .case-item .section-07-wrapper .btn {
          margin: 0 auto;
          margin-top: 275px; } }
  .case-item.case-side .section-07-wrapper {
    padding: 90px 0 0px;
    height: auto;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .case-item.case-side .section-07-wrapper {
        padding: 60px 0 0px;
        height: auto;
        width: 100%;
        max-width: none; }
        .case-item.case-side .section-07-wrapper .btn-01 {
          margin-top: 35px;
          width: 160px; }
          .case-item.case-side .section-07-wrapper .btn-01 .txt {
            margin-left: 5px;
            font-size: 14px; }
          .case-item.case-side .section-07-wrapper .btn-01 img {
            right: auto;
            left: 19px; } }
  .case-item .upper {
    -webkit-align-items: flex-end;
    align-items: flex-end; }
    @media only screen and (max-width: 767px) {
      .case-item .upper {
        padding-left: 10px; } }
    .case-item .upper .btn {
      top: -12px; }
  @media only screen and (max-width: 767px) {
    .case-item.case-side .upper {
      padding: 0 25px; } }
  .case-item #cat-list {
    margin-top: 30px;
    -webkit-align-items: flex-start;
    align-items: flex-start; }
    @media only screen and (max-width: 767px) {
      .case-item #cat-list {
        margin-top: 29px; } }
    .case-item #cat-list li {
      color: #b6b6b6;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      font-weight: bold;
      padding-bottom: 16px;
      position: relative;
      text-align: center;
      transition: all .3s;
      width: calc((100% - 40px)/5); }
      @media only screen and (max-width: 767px) {
        .case-item #cat-list li {
          padding-top: 25px;
          padding-bottom: 14px;
          width: calc(50% - 2px); }
          .case-item #cat-list li:first-child {
            padding-top: 0px;
            width: 100%; } }
      .case-item #cat-list li:before {
        background-color: #b6b6b6;
        content: "";
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .case-item #cat-list li:before {
            height: 1px; } }
      .case-item #cat-list li.active {
        color: #e20c17; }
        .case-item #cat-list li.active:before {
          background-color: #e20c17; }
      @media only screen and (min-width: 768px) {
        .case-item #cat-list li:hover {
          color: #e20c17; }
          .case-item #cat-list li:hover:before {
            background-color: #e20c17; } }
  .case-item .slider-02-arrows {
    position: absolute;
    top: calc(50% - 78px);
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .case-item .slider-02-arrows {
        top: calc(50% - 58px); } }
  .case-item .prevArrow, .case-item .nextArrow {
    background-image: url("../images/common/arw_on.png");
    background-size: 18px 12px;
    border: 1px solid white;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    transition: all .3s;
    height: 50px;
    width: 50px;
    z-index: 10; }
    @media only screen and (max-width: 767px) {
      .case-item .prevArrow, .case-item .nextArrow {
        background-size: 12px 8px;
        height: 35px;
        width: 35px; } }
    @media only screen and (min-width: 768px) {
      .case-item .prevArrow:hover, .case-item .nextArrow:hover {
        background-color: #e20c17;
        background-image: url("../images/common/arw.png");
        border: 1px solid #e20c17; } }
  .case-item .prevArrow {
    left: calc(50% - 750px);
    transform: rotate(180deg); }
    @media only screen and (max-width: 1500px) {
      .case-item .prevArrow {
        left: calc(50% - 580px); } }
    @media only screen and (max-width: 1150px) {
      .case-item .prevArrow {
        left: 30px; } }
    @media only screen and (max-width: 767px) {
      .case-item .prevArrow {
        left: 25px; } }
  .case-item .nextArrow {
    right: calc(50% - 750px); }
    @media only screen and (max-width: 1500px) {
      .case-item .nextArrow {
        right: calc(50% - 580px); } }
    @media only screen and (max-width: 1170px) {
      .case-item .nextArrow {
        right: 30px; } }
    @media only screen and (max-width: 767px) {
      .case-item .nextArrow {
        right: 25px; } }
  .case-item .slide-wrap {
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 277px; }
    @media only screen and (max-width: 767px) {
      .case-item .slide-wrap {
        top: 303px; } }
    .case-item .slide-wrap.active {
      opacity: 1;
      pointer-events: auto; }
  .case-item.case-side .slide-wrap {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    top: auto; }
    @media only screen and (min-width: 768px) {
      .case-item.case-side .slide-wrap {
        margin-top: 35px; } }
    @media only screen and (max-width: 767px) {
      .case-item.case-side .slide-wrap {
        margin-top: 42px; } }
  @media only screen and (min-width: 768px) {
    .case-item .slider-02 .slick-list {
      padding: 0 calc((100% - 1370px - 40px) / 2) !important; } }
  @media only screen and (min-width: 768px) and (max-width: 1500px) {
    .case-item .slider-02 .slick-list {
      padding: 0 calc((100% - 970px - 40px) / 2) !important; } }
  .case-item .slider-02 .slick-current, .case-item .slider-02 .slick-active {
    opacity: 1; }
    @media only screen and (min-width: 768px) {
      .case-item .slider-02 .slick-current:hover .imager:before, .case-item .slider-02 .slick-active:hover .imager:before {
        opacity: 1; }
      .case-item .slider-02 .slick-current:hover .imager:after, .case-item .slider-02 .slick-active:hover .imager:after {
        width: 100%; } }
  @media only screen and (max-width: 767px) {
    .case-item .slider-02 .slick-slide {
      width: 148px; } }
  .case-item .slider-02 li {
    margin: 0 5px;
    opacity: .5; }
    .case-item .slider-02 li .imager {
      background-image: url("../images/common/no-img.jpg");
      background-size: cover;
      height: auto;
      padding-bottom: 73.5%;
      position: relative; }
      .case-item .slider-02 li .imager:before {
        color: white;
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        font-family: "Montserrat", sans-serif;
        font-style: italic;
        text-align: center;
        content: "View more";
        opacity: 0;
        transition: all .3s;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2; }
      .case-item .slider-02 li .imager:after {
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 0;
        height: 100%;
        background: #d0121b;
        background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
        background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
        background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
        opacity: .4;
        transition: all 0.3s ease; }
    .case-item .slider-02 li .ttl {
      display: block;
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      line-height: 2.133;
      margin: 21px 0 10px; }
      @media only screen and (max-width: 767px) {
        .case-item .slider-02 li .ttl {
          line-height: 1.6;
          margin: 10px 0 10px; } }
    .case-item .slider-02 li ul.cats {
      justify-content: flex-start; }
      .case-item .slider-02 li ul.cats .category {
        display: inline-block;
        color: #b6b6b6;
        font-weight: bold;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .case-item .slider-02 li ul.cats .category {
            font-size: 13px;
            font-size: 1.3rem; } }
        .case-item .slider-02 li ul.cats .category:last-child {
          margin-right: 0; }
  .case-item .buttons {
    margin: 50px auto 0;
    width: 660px; }
    @media only screen and (max-width: 767px) {
      .case-item .buttons {
        margin-top: 35px;
        width: 100%;
        flex-direction: column;
        -webkit-align-items: center;
        align-items: center; } }
    @media only screen and (max-width: 767px) {
      .case-item .buttons a:first-child {
        margin-bottom: 10px; }
      .case-item .buttons a:last-child {
        line-height: 1.142;
        text-align: center; } }

/*
* === RADIO ===
*/
.radio-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }
  @media only screen and (max-width: 767px) {
    .radio-row {
      margin-top: 10px; } }
  .radio-row.duo .checkerradio {
    width: auto; }
    @media only screen and (min-width: 768px) {
      .radio-row.duo .checkerradio:nth-child(odd) {
        width: 217px; } }
  @media only screen and (min-width: 768px) and (min-device-width: 768px) and (max-device-width: 1024px) {
    .radio-row.duo .checkerradio:nth-child(odd) {
      width: 55%; } }
    @media only screen and (max-width: 767px) {
      .radio-row.duo .checkerradio {
        width: 50%; } }
  @media only screen and (max-width: 767px) {
    .radio-row.duo .radio-style {
      width: 100%; } }
  .radio-row.reg {
    margin-top: 6px; }
    .radio-row.reg .checkerradio {
      margin-bottom: 16px;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .radio-row.reg .checkerradio {
          margin-bottom: 15px; } }
      .radio-row.reg .checkerradio:last-of-type {
        margin-bottom: 6px; }

.checkerradio {
  display: inline-block;
  position: relative;
  height: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .checkerradio {
      height: auto;
      width: 100%;
      -webkit-align-items: flex-start;
      align-items: flex-start; } }
  .checkerradio label {
    display: inline-block;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    padding-left: 42px;
    white-space: nowrap;
    cursor: pointer; }
    @media all and (-ms-high-contrast: none) {
      .checkerradio label {
        padding-top: 6px; } }
    @media only screen and (max-width: 767px) {
      .checkerradio label {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.428;
        padding-left: 32px;
        padding-top: 3px; }
        .checkerradio label.dbl {
          padding-top: 3px;
          position: relative;
          top: 8px; } }
  .checkerradio input[type=radio],
  .checkerradio input[type=checkbox] {
    background: transparent;
    outline: none;
    margin: auto;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: none; }
  .checkerradio input[type=radio]::-ms-check,
  .checkerradio input[type=checkbox]::-ms-check {
    display: none; }
  .checkerradio.check-style .check:checked ~ .effec {
    background-color: #e20c17; }
    .checkerradio.check-style .check:checked ~ .effec:after {
      opacity: 1; }
  .checkerradio.check-style .effec {
    background-color: #F4F4F4;
    pointer-events: none;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    z-index: 10;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .checkerradio.check-style .effec {
        height: 22px;
        width: 22px; } }
    .checkerradio.check-style .effec:after {
      background: transparent url(../images/contact/check.png) center/18px 15px no-repeat;
      content: "";
      display: inline-block;
      opacity: 0;
      position: absolute;
      right: 0px;
      top: 0;
      transition: all .3s;
      height: 100%;
      width: 100%;
      z-index: 2; }
      @media only screen and (max-width: 767px) {
        .checkerradio.check-style .effec:after {
          background: transparent url(../images/contact/check.png) center/12px 10px no-repeat; } }

body.cms.single article .upper {
  margin-bottom: 38px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.cms.single article .upper {
      margin-bottom: 29px; } }
  body.cms.single article .upper .category {
    border: 1px solid #e20c17;
    color: #e20c17;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    height: 25px;
    width: 120px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .upper .category {
        font-size: 12px;
        font-size: 1.2rem;
        height: 20px;
        width: 90px; } }
  body.cms.single article .upper .date {
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-left: 20px; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .upper .date {
        font-size: 14px;
        font-size: 1.4rem; } }

body.cms.single article h2.article-title {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  margin-top: -11px;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.8461;
  text-align: left; }
  @media only screen and (max-width: 767px) {
    body.cms.single article h2.article-title {
      font-size: 18px;
      font-size: 1.8rem;
      text-align: justify;
      margin-bottom: 40px;
      line-height: 1.66666; } }
  body.cms.single article h2.article-title:before {
    background-color: #282a2c;
    content: "";
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: 0%;
    height: 1px;
    width: 40px; }
    @media only screen and (max-width: 767px) {
      body.cms.single article h2.article-title:before {
        width: 30px; } }

body.cms.single article .main_image {
  margin-bottom: 50px;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    body.cms.single article .main_image {
      margin-bottom: 30px; } }

body.cms.single article .cms-article-content {
  /* IE11  */ }
  body.cms.single article .cms-article-content .wp-caption {
    max-width: 100%; }
  body.cms.single article .cms-article-content img {
    margin-bottom: 48px;
    max-width: 100%; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content img {
        margin-bottom: 27px; } }
  body.cms.single article .cms-article-content iframe {
    margin-bottom: 20px;
    height: 382px;
    max-height: 382px;
    width: 100%; }
    @media only screen and (max-width: 1090px) {
      body.cms.single article .cms-article-content iframe {
        height: 315px; } }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content iframe {
        height: auto; } }
  body.cms.single article .cms-article-content h3 {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5384;
    margin-top: 19px;
    margin-bottom: 57px;
    padding-top: 23px;
    padding-bottom: 23px;
    position: relative;
    text-align: left; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content h3 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.55555;
        margin-top: 0;
        margin-bottom: 34px; } }
    body.cms.single article .cms-article-content h3:before {
      background-color: #e20c17;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: 0;
      top: 0;
      height: 1px;
      width: 40px; }
      @media only screen and (max-width: 767px) {
        body.cms.single article .cms-article-content h3:before {
          width: 30px; } }
    body.cms.single article .cms-article-content h3:after {
      background-color: #e20c17;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 1px;
      width: 40px; }
      @media only screen and (max-width: 767px) {
        body.cms.single article .cms-article-content h3:after {
          width: 30px; } }
  body.cms.single article .cms-article-content h4 {
    border-bottom: 1px solid #e20c17;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.9;
    margin-top: 28px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 40px;
    text-align: left; }
    @media all and (-ms-high-contrast: none) {
      body.cms.single article .cms-article-content h4 {
        padding-top: 19px; } }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content h4 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.55;
        padding-bottom: 12px;
        margin-top: 18px; } }
  body.cms.single article .cms-article-content h5 {
    border: 1px solid #181a1b;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin-bottom: 27px;
    padding: 26px 28px;
    position: relative;
    text-align: left; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content h5 {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding: 14px 15px; } }
  body.cms.single article .cms-article-content p {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    padding-bottom: 45px;
    line-height: 2.1333;
    text-align: justify; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content p {
        padding-bottom: 30px;
        line-height: 1.7333; } }
    body.cms.single article .cms-article-content p b, body.cms.single article .cms-article-content p strong {
      font-weight: bold; }
  body.cms.single article .cms-article-content a {
    color: #e20c17;
    border-bottom: 1px solid #e20c17;
    font-weight: bold;
    padding-bottom: 1px; }
    @media only screen and (min-width: 768px) {
      body.cms.single article .cms-article-content a {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        body.cms.single article .cms-article-content a:hover {
          opacity: .7; } }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content a {
        padding-bottom: 2px; } }
  body.cms.single article .cms-article-content _:lang(x)::-ms-backdrop, body.cms.single article .cms-article-content a {
    border-bottom: none;
    text-decoration: underline; }
  body.cms.single article .cms-article-content .box, body.cms.single article .cms-article-content blockquote {
    background-color: #f1f1f1;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2.1333;
    margin-bottom: 50px;
    padding: 40px;
    text-align: left; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content .box, body.cms.single article .cms-article-content blockquote {
        line-height: 1.7333;
        margin-bottom: 25px;
        padding: 23px;
        text-align: justify; } }
    body.cms.single article .cms-article-content .box p, body.cms.single article .cms-article-content blockquote p {
      margin-top: 0;
      padding-top: 0; }
      body.cms.single article .cms-article-content .box p:last-child, body.cms.single article .cms-article-content blockquote p:last-child {
        padding: 0; }
  body.cms.single article .cms-article-content span[style*="text-decoration: underline"] {
    background: url("../images/news/em.png") bottom left/auto 8px repeat-x;
    background-position: center bottom 2px;
    padding-bottom: 5px;
    text-decoration: none !important; }
    @media only screen and (max-width: 767px) {
      body.cms.single article .cms-article-content span[style*="text-decoration: underline"] {
        background: url("../images/news/em.png") center left/auto 6px repeat-x;
        background-position: center bottom 0px;
        padding-bottom: 1px; } }
    @media all and (-ms-high-contrast: none) {
      body.cms.single article .cms-article-content span[style*="text-decoration: underline"] {
        background-position: 0 11px; } }
  body.cms.single article .cms-article-content em {
    font-style: italic; }
  body.cms.single article .cms-article-content ol {
    list-style: decimal inside; }
  body.cms.single article .cms-article-content ul {
    list-style: disc inside; }
  body.cms.single article .cms-article-content table,
  body.cms.single article .cms-article-content th,
  body.cms.single article .cms-article-content td {
    border: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0; }

body.form section.form {
  padding-bottom: 180px; }
  @media only screen and (max-width: 767px) {
    body.form section.form {
      padding-bottom: 110px; } }
  body.form section.form ul.steps {
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    width: 482px; }
    @media only screen and (max-width: 767px) {
      body.form section.form ul.steps {
        margin: 20px auto 0;
        width: 100%; } }
    body.form section.form ul.steps:before {
      background-color: #d7d7d7;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 1px;
      width: 100%; }
      @media all and (-ms-high-contrast: none) {
        body.form section.form ul.steps:before {
          left: 20px;
          width: 230px; } }
    body.form section.form ul.steps li {
      background-color: white;
      border-radius: 50%;
      border: 1px solid #d7d7d7;
      color: #d7d7d7;
      position: relative;
      top: 0;
      height: 120px;
      width: 120px;
      -webkit-align-items: center;
      align-items: center;
      justify-content: center;
      flex-direction: column; }
      @media only screen and (max-width: 767px) {
        body.form section.form ul.steps li {
          height: 80px;
          width: 80px; } }
      body.form section.form ul.steps li .det {
        background-color: white;
        margin: 0 auto;
        position: absolute;
        height: 18px;
        width: 18px; }
        body.form section.form ul.steps li .det.det1 {
          left: 25px;
          top: 1px; }
        body.form section.form ul.steps li .det.det2 {
          left: 25px;
          bottom: 1px; }
        body.form section.form ul.steps li .det.det3 {
          right: 0px;
          bottom: 37px; }
      body.form section.form ul.steps li.active {
        border: 1px solid #e20c17;
        color: white; }
        body.form section.form ul.steps li.active .en {
          color: #e20c17; }
        body.form section.form ul.steps li.active .ja {
          color: #181a1b; }
        body.form section.form ul.steps li.active .det {
          display: none; }
      body.form section.form ul.steps li .en {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 0.025em;
        font-family: "Montserrat", sans-serif;
        position: relative;
        z-index: 3; }
        @media only screen and (max-width: 767px) {
          body.form section.form ul.steps li .en {
            font-size: 12px;
            font-size: 1.2rem; } }
      body.form section.form ul.steps li .ja {
        display: inline-block;
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 0.05em;
        margin-top: 10px; }
        @media only screen and (max-width: 767px) {
          body.form section.form ul.steps li .ja {
            display: block;
            font-size: 12px;
            font-size: 1.2rem; } }
  body.form section.form .form-wrap {
    background-color: white;
    border: 10px solid #f1f1f1;
    padding: 64px 60px 80px; }
    @media only screen and (max-width: 767px) {
      body.form section.form .form-wrap {
        border: 5px solid #f1f1f1;
        padding: 46px 25px 50px; } }
    body.form section.form .form-wrap p.reg-txt {
      margin-top: 55px; }
      @media only screen and (max-width: 767px) {
        body.form section.form .form-wrap p.reg-txt {
          margin-top: 45px; } }
  body.form section.form table {
    margin: 50px 0;
    position: relative;
    width: 100%; }
    body.form section.form table:before {
      content: "";
      margin: 0 auto;
      position: absolute;
      left: 0;
      right: 0;
      top: 0%;
      height: 1px;
      width: 100%;
      background: #f5d0d1;
      background: linear-gradient(90deg, #f5d0d1 0%, #ccd8e8 100%); }
    @media all and (-ms-high-contrast: none) {
      body.form section.form table {
        table-layout: fixed; } }
    @media only screen and (max-width: 767px) {
      body.form section.form table {
        margin: 30px 0 35px; } }
    body.form section.form table tr {
      position: relative; }
      body.form section.form table tr:before {
        content: "";
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
        background: #f5d0d1;
        background: linear-gradient(90deg, #f5d0d1 0%, #ccd8e8 100%); }
      body.form section.form table tr th {
        padding: 36px 0 36px 20px;
        vertical-align: text-top;
        width: 260px; }
        @media only screen and (max-width: 767px) {
          body.form section.form table tr th {
            display: block;
            padding: 15px 0 10px;
            width: 100%; } }
        body.form section.form table tr th .th-txt {
          -webkit-justify-content: flex-start;
          justify-content: flex-start;
          -webkit-align-items: center;
          align-items: center; }
        body.form section.form table tr th .th-ttl {
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 600;
          letter-spacing: 0.05em; }
          @media all and (-ms-high-contrast: none) {
            body.form section.form table tr th .th-ttl {
              padding-top: 3px; } }
          @media only screen and (max-width: 767px) {
            body.form section.form table tr th .th-ttl {
              font-size: 15px;
              font-size: 1.5rem; } }
          body.form section.form table tr th .th-ttl .sml {
            display: inline-block;
            font-size: 12px;
            font-size: 1.2rem;
            margin-top: 8px; }
            @media only screen and (max-width: 767px) {
              body.form section.form table tr th .th-ttl .sml {
                margin-top: 0;
                margin-left: 11px;
                font-size: 10px;
                font-size: 1rem; } }
        body.form section.form table tr th em {
          color: white;
          display: inline-block;
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: bold;
          font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          letter-spacing: 0.1em;
          margin-right: 20px;
          padding-top: 5px;
          transition: all .3s;
          text-align: center;
          height: 24px;
          width: 50px; }
          @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
            body.form section.form table tr th em {
              padding-top: 4px; } }
          @media all and (-ms-high-contrast: none) {
            body.form section.form table tr th em {
              padding-top: 7px; } }
          @media only screen and (max-width: 767px) {
            body.form section.form table tr th em {
              font-size: 13px;
              font-size: 1.3rem;
              margin-right: 10px;
              padding-top: 3px;
              height: 18px;
              width: 40px; } }
        body.form section.form table tr th .req {
          background-color: #e20c17; }
        body.form section.form table tr th .nreq {
          background-color: #b6b6b6; }
      body.form section.form table tr td {
        padding: 24px 0 24px 0px;
        width: calc(100% - 260px); }
        @media only screen and (max-width: 767px) {
          body.form section.form table tr td {
            display: block;
            padding: 0 0 15px;
            width: 100%; } }
        body.form section.form table tr td input[type=email],
        body.form section.form table tr td input[type=text] {
          background-color: #f1f1f1;
          border-radius: 0;
          border: none;
          font-size: 15px;
          font-size: 1.5rem;
          font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          letter-spacing: 0.05em;
          line-height: 1;
          padding: 0 20px;
          height: 50px;
          width: calc(100% - 120px);
          -webkit-appearance: none; }
          @media all and (-ms-high-contrast: none) {
            body.form section.form table tr td input[type=email],
            body.form section.form table tr td input[type=text] {
              padding-top: 4px; } }
          @media only screen and (max-width: 767px) {
            body.form section.form table tr td input[type=email],
            body.form section.form table tr td input[type=text] {
              padding: 0 12px;
              height: 35px;
              width: 100%; } }
        body.form section.form table tr td textarea {
          background-color: #f1f1f1;
          border-radius: 0;
          border: none;
          font-size: 15px;
          font-size: 1.5rem;
          font-weight: 400;
          font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          line-height: 28px;
          padding: 16px 30px;
          height: 200px;
          width: 100%;
          -webkit-appearance: none;
          resize: none;
          width: calc(100% - 20px); }
          @media only screen and (max-width: 767px) {
            body.form section.form table tr td textarea {
              line-height: 2;
              margin: 0;
              padding: 10px 12px;
              height: 150px;
              width: 100%; } }
  body.form section.form .align-center {
    text-align: center; }
  body.form section.form .btn {
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: bold;
    margin: 0 auto;
    outline: none; }
    body.form section.form .btn input[type=submit] {
      background-color: transparent;
      border: none;
      cursor: pointer;
      font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      outline: none;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 10; }
    body.form section.form .btn .txt {
      font-size: 14px;
      font-size: 1.4rem;
      font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; }
  body.form section.form .btn-correct {
    border-bottom: 1px solid #e20c17;
    color: #e20c17;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin: 0 auto 40px;
    padding: 40px 0 5px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      body.form section.form .btn-correct {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        body.form section.form .btn-correct:hover {
          opacity: .7; } }
    @media only screen and (max-width: 767px) {
      body.form section.form .btn-correct {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 30px 0 3px; } }
  body.form section.form .formError {
    z-index: 90 !important; }
  body.form section.form .formError .formErrorContent, body.form section.form .formError .formErrorArrow div {
    background: black !important; }
  body.form section.form .display-none {
    opacity: 0 !important; }
  body.form section.form .display-none {
    display: none !important; }

body.form.confirm .form-wrap {
  margin-top: 100px; }
  @media only screen and (max-width: 767px) {
    body.form.confirm .form-wrap {
      margin-top: 80px; } }

body.form.confirm table th {
  line-height: 1.5; }

body.form.confirm table td {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5; }
  @media only screen and (min-width: 768px) {
    body.form.confirm table td {
      padding: 33px 0; } }
  body.form.confirm table td.long-txt {
    position: relative;
    padding-top: 5px !important;
    white-space: pre-line;
    /* Safari 7.1+ */ }
    @media only screen and (max-width: 767px) {
      body.form.confirm table td.long-txt {
        padding-top: 0; }
        body.form.confirm table td.long-txt span {
          display: block;
          position: relative; } }
    @media not all and (min-resolution: 0.001dpcm) {
      @supports (-webkit-appearance: none) {
        body.form.confirm table td.long-txt {
          white-space: normal; } } }

body.form.complete main .steps {
  margin-top: 100px !important;
  margin-bottom: 58px !important; }
  @media only screen and (max-width: 767px) {
    body.form.complete main .steps {
      margin-top: 50px !important;
      margin-bottom: 36px !important;
      max-width: 265px; } }

body.form.complete main .ttl-04 {
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.form.complete main .ttl-04 .ja {
      line-height: 1.59; } }
  body.form.complete main .ttl-04:before {
    display: none; }

body.form.complete main p.reg-txt {
  margin: 52px auto 40px;
  max-width: 1000px;
  text-align: left; }
  @media only screen and (max-width: 767px) {
    body.form.complete main p.reg-txt {
      margin: 30px auto 27px;
      text-align: justify; } }

.ttl-01 {
  position: relative; }
  .ttl-01:before {
    background-color: #e20c17;
    content: "";
    margin: 0 auto;
    position: absolute;
    left: calc(-100% - 20px);
    top: 7px;
    height: 1px;
    width: calc(100%); }
    @media only screen and (max-width: 767px) {
      .ttl-01:before {
        left: calc(-100% - 10px); } }
  .ttl-01 .ja {
    color: #e20c17;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .ttl-01 .ja {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.642; } }

.ttl-02 {
  position: relative; }
  .ttl-02 .ja {
    color: #e20c17;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 22px; }
    @media only screen and (max-width: 767px) {
      .ttl-02 .ja {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.642;
        margin-bottom: 8px; } }
  .ttl-02 .en {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.166;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.1em;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .ttl-02 .en {
        font-size: 30px;
        font-size: 3rem;
        line-height: 1.3333; } }

.ttl-03 {
  position: relative; }
  .ttl-03 .ja {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.666;
    font-weight: bold;
    margin-bottom: 22px; }
    @media only screen and (max-width: 767px) {
      .ttl-03 .ja {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.458;
        margin-bottom: 8px; } }
    .ttl-03 .ja:before {
      background-color: #e20c17;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: calc(-100vw - 20px);
      top: 27px;
      height: 1px;
      width: 100vw; }
      @media only screen and (max-width: 767px) {
        .ttl-03 .ja:before {
          left: calc(-100vw - 10px);
          top: 15px; } }
  .ttl-03 .red {
    color: #e20c17; }

.ttl-04 {
  position: relative; }
  .ttl-04:before {
    background-color: #e20c17;
    content: "";
    margin: 0 auto;
    position: absolute;
    left: calc(-100vw - 20px);
    top: 7px;
    height: 1px;
    width: 100vw; }
    @media only screen and (max-width: 767px) {
      .ttl-04:before {
        top: 10px;
        left: calc(-100vw - 10px); } }
  .ttl-04 .sml {
    color: #e20c17;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 14px; }
    @media only screen and (max-width: 767px) {
      .ttl-04 .sml {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.642;
        margin-bottom: 6px; } }
  .ttl-04 .big {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: 1.666;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .ttl-04 .big {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.458; } }
  .ttl-04 .big-0 {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: 1.666;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      .ttl-04 .big-0 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.458; } }

.ttl-05 {
  font-weight: bold; }
  .ttl-05 .en {
    color: #e20c17;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    display: block; }
    @media only screen and (max-width: 767px) {
      .ttl-05 .en {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 14px;
        font-size: 1.4rem; } }
    .ttl-05 .en:before {
      background-color: #e20c17;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: calc(-100vw - 10px);
      top: 11px;
      height: 1px;
      width: 100vw; }
      @media only screen and (max-width: 767px) {
        .ttl-05 .en:before {
          left: -30px;
          top: 7px;
          height: 1px;
          width: 20px; } }
  .ttl-05 .ja {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: 1.6; }
    @media only screen and (max-width: 767px) {
      .ttl-05 .ja {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.5; } }
    .ttl-05 .ja .sml {
      font-size: 22px;
      font-size: 2.2rem; }
      @media only screen and (max-width: 767px) {
        .ttl-05 .ja .sml {
          font-size: 15px;
          font-size: 1.5rem; } }
  @media only screen and (min-width: 768px) {
    .ttl-05.short .en:before {
      left: -122px;
      width: 110px !important; } }
  @media only screen and (max-width: 767px) {
    .ttl-05.inner {
      padding: 0 !important; } }

.ttl-06 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 60px;
  letter-spacing: 3px; }
  .ttl-06 span {
    color: #e20c17; }
  @media only screen and (max-width: 767px) {
    .ttl-06 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 40px; } }

.h4-tit {
  font-size: 26px;
  font-size: 2.6rem;
  border-bottom: 1px solid #e20c17;
  font-weight: bold;
  letter-spacing: 3px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .h4-tit {
      font-size: 20px;
      font-size: 2rem;
      line-height: 30px;
      padding-bottom: 8px;
      letter-spacing: 2px; } }

.pagination {
  margin: 0 auto;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  width: auto; }

.wp-pagenavi {
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: auto;
  z-index: 2;
  display: -webkit-flex;
  display: flex; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin: 0 auto 65px; } }
  .wp-pagenavi a, .wp-pagenavi span {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    margin: 0 15px;
    padding-top: 12px;
    position: relative;
    text-align: center;
    transition: all 0.3s; }
    @media only screen and (min-width: 768px) {
      .wp-pagenavi a, .wp-pagenavi span {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .wp-pagenavi a:hover, .wp-pagenavi span:hover {
          opacity: .7; } }
    .wp-pagenavi a.current, .wp-pagenavi span.current {
      color: #e20c17; }
      .wp-pagenavi a.current:hover, .wp-pagenavi span.current:hover {
        opacity: 1; }
  .wp-pagenavi .back, .wp-pagenavi .next, .wp-pagenavi .first, .wp-pagenavi .last {
    border-radius: 50%;
    border: 1px solid #e20c17;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 10px 8px;
    background-position: center;
    display: inline-block;
    position: relative;
    height: 41px;
    width: 41px; }
  .wp-pagenavi .first {
    background-image: url("../images/news/arrw.png");
    margin-right: 25px;
    margin-left: 0;
    text-align: right;
    transform: rotate(180deg); }
  .wp-pagenavi .last {
    background-image: url("../images/news/arrw.png");
    margin-left: 25px;
    margin-right: 0; }
  .wp-pagenavi .dots, .wp-pagenavi .extend {
    border: none !important;
    content: "...";
    color: #cccccc;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.4em;
    position: relative;
    top: -4px;
    height: 30px;
    width: 30px; }

.single-pagination {
  font-weight: normal;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 60px auto 0;
  width: 100%;
  z-index: 2; }
  @media only screen and (max-width: 767px) {
    .single-pagination {
      margin: 50px auto 75px;
      width: calc(100% - 30px); } }
  .single-pagination .main {
    cursor: pointer;
    color: #e20c17;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 40px;
    width: 135px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center; }
    @media only screen and (min-width: 768px) {
      .single-pagination .main {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .single-pagination .main:hover {
          opacity: .7; } }
  .single-pagination .back, .single-pagination .next, .single-pagination .first, .single-pagination .last {
    border-radius: 50%;
    border: 1px solid #e20c17;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 4px 8px;
    background-position: center;
    display: inline-block;
    position: relative;
    height: 41px;
    width: 41px; }
    @media only screen and (min-width: 768px) {
      .single-pagination .back, .single-pagination .next, .single-pagination .first, .single-pagination .last {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .single-pagination .back:hover, .single-pagination .next:hover, .single-pagination .first:hover, .single-pagination .last:hover {
          opacity: .7; } }
    .single-pagination .back.no-display, .single-pagination .next.no-display, .single-pagination .first.no-display, .single-pagination .last.no-display {
      opacity: 0;
      pointer-events: none; }
  .single-pagination .back {
    background-image: url("../images/news/arws.png");
    margin-left: 0;
    text-align: right;
    transform: rotate(180deg); }
  .single-pagination .next {
    background-image: url("../images/news/arws.png");
    margin-right: 0; }

.slider__nav--no {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex; }
  .slider__nav--no li {
    width: 46px;
    height: 46px;
    margin-right: 8px;
    position: relative; }
    .slider__nav--no li .no-bg svg {
      transform: rotateZ(-90deg); }
    .slider__nav--no li .no-bg circle {
      fill: none;
      stroke: rgba(255, 255, 255, 0);
      stroke-width: 2px;
      stroke-dasharray: 135.09px 135.09px;
      stroke-dashoffset: 135.09px;
      transition: stroke 0.8s; }
    .slider__nav--no li .no {
      font-size: 1.4rem;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-right: 1px;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.4s; }
    .slider__nav--no li:last-child {
      margin-right: 0; }
    .slider__nav--no li.current .no {
      color: white; }
    .slider__nav--no li.current .no-bg circle {
      stroke: #fff; }

.slider__nav--list {
  margin: 0 auto;
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 208px; }
  .slider__nav--list li {
    height: 46px !important;
    width: 46px !important; }

#slider-01 {
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: width 0.5s 0.5s; }
  #slider-01 .slick-list,
  #slider-01 .slick-track {
    height: 100%; }
  #slider-01 .slide {
    position: relative; }
    #slider-01 .slide__bg {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      background-size: cover;
      background-position: center;
      transition: width 0.5s 0.5s; }

.slide[data-slick-index="0"]:before, .slide[data-slick-index="0"]:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.slide[data-slick-index="0"]:before {
  transition: width 0.6s 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  background-color: #fff;
  z-index: 2; }

.slide[data-slick-index="0"]:after {
  transition: width 0.6s 0.8s cubic-bezier(0.45, 0, 0.55, 1);
  background-color: #f1f1f1;
  z-index: 1; }

.side-mv {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .side-mv {
      margin-top: 60px; } }
  .side-mv .side-mv-ttl {
    color: white;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.84); }
    .side-mv .side-mv-ttl .en {
      font-size: 50px;
      font-size: 5rem;
      font-family: "Montserrat", sans-serif;
      letter-spacing: 0.1em;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        .side-mv .side-mv-ttl .en {
          font-size: 30px;
          font-size: 3rem; } }
    .side-mv .side-mv-ttl .ja {
      display: inline-block;
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.1em;
      font-weight: bold;
      margin-top: 20px; }
      @media only screen and (max-width: 767px) {
        .side-mv .side-mv-ttl .ja {
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 14px; } }

.cms-sidebar {
  position: relative;
  text-align: left;
  width: 180px; }
  @media only screen and (max-width: 767px) {
    .cms-sidebar {
      border-left: none;
      right: 0;
      width: 100%; } }
  .cms-sidebar a {
    display: block; }
    @media only screen and (min-width: 768px) {
      .cms-sidebar a {
        cursor: pointer;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s; }
        .cms-sidebar a:hover {
          opacity: .7; } }
  .cms-sidebar .side-element {
    margin-bottom: 76px; }
    @media only screen and (max-width: 767px) {
      .cms-sidebar .side-element {
        margin-bottom: 50px; } }
    .cms-sidebar .side-element:last-child {
      margin-bottom: 0; }
    .cms-sidebar .side-element .side-title {
      border-bottom: 1px solid #e20c17;
      color: #e20c17;
      font-size: 20px;
      font-size: 2rem;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      letter-spacing: 0.1em;
      padding-bottom: 12px;
      position: relative;
      pointer-events: none;
      text-transform: uppercase;
      text-align: left; }
      @media only screen and (max-width: 767px) {
        .cms-sidebar .side-element .side-title {
          background-image: none;
          pointer-events: auto;
          position: relative;
          height: 32px; }
          .cms-sidebar .side-element .side-title:before {
            border-right: 1px solid #e20c17;
            border-bottom: 1px solid #e20c17;
            content: "";
            margin: 0 auto;
            position: absolute;
            right: 0px;
            top: 4px;
            transform: rotate(45deg);
            height: 7px;
            width: 7px; } }
      .cms-sidebar .side-element .side-title.is-active:before {
        transform: rotate(-135deg); }
    @media only screen and (min-width: 768px) {
      .cms-sidebar .side-element ul.side-list {
        display: block !important;
        padding-top: 28px; } }
    @media only screen and (max-width: 767px) {
      .cms-sidebar .side-element ul.side-list {
        display: none;
        padding-top: 25px; } }
    .cms-sidebar .side-element ul.side-list li {
      font-size: 15px;
      font-size: 1.5rem;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 17px;
      padding-left: 20px;
      position: relative;
      text-transform: uppercase;
      text-align: left; }
      @media only screen and (max-width: 767px) {
        .cms-sidebar .side-element ul.side-list li {
          margin-bottom: 15px;
          padding-left: 0px; } }
      .cms-sidebar .side-element ul.side-list li:before {
        background-color: #181a1b;
        content: "";
        margin: 0 auto;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 1px;
        width: 10px; }
      .cms-sidebar .side-element ul.side-list li:last-child {
        margin-bottom: 0; }
      .cms-sidebar .side-element ul.side-list li a {
        height: 100%;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .cms-sidebar .side-element ul.side-list li a {
            padding-left: 16px; } }
      .cms-sidebar .side-element ul.side-list li:last-child {
        margin-bottom: 0; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

.notfound section.content {
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  width: 1000px; }
  @media only screen and (max-width: 767px) {
    .notfound section.content {
      padding: 60px 20px 100px;
      width: 100%; } }
  @media only screen and (max-width: 320px) {
    .notfound section.content {
      padding: 100px 10px; } }
  .notfound section.content p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2; }
  .notfound section.content .btn {
    margin: 24px auto 0; }
    @media only screen and (max-width: 767px) {
      .notfound section.content .btn {
        margin: 33px auto 0; } }

.about .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.about .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.about p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .about p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

.about .btn-03 {
  margin: 50px auto 0; }
  @media only screen and (max-width: 767px) {
    .about .btn-03 {
      margin: 35px auto 0;
      height: 45px;
      padding-top: 14px; } }

.about .content01 {
  margin: 95px 0 0; }
  @media only screen and (max-width: 767px) {
    .about .content01 {
      margin: 40px 0 0; } }
  .about .content01 .big-section {
    background-image: url("../images/about/bg01.jpg");
    width: 100%;
    height: 810px;
    background-position: center;
    background-size: cover;
    margin-top: 160px; }
    @media only screen and (max-width: 767px) {
      .about .content01 .big-section {
        background-image: url("../images/about/bg01-sp.jpg");
        height: 900px;
        padding: 0 25px;
        margin-top: 85px; } }
    .about .content01 .big-section .bg-w {
      background-image: url("../images/about/bg-w.jpg");
      width: 100%;
      height: 786px;
      background-position: center;
      background-size: cover;
      position: relative;
      top: -80px;
      padding: 85px 70px 0; }
      @media only screen and (max-width: 767px) {
        .about .content01 .big-section .bg-w {
          background-image: url("../images/about/bg-w-sp.jpg");
          padding: 45px 25px 0;
          height: 874px;
          top: -30px; } }
      .about .content01 .big-section .bg-w .img {
        width: 520px;
        margin: 0 auto 40px; }
        @media only screen and (max-width: 767px) {
          .about .content01 .big-section .bg-w .img {
            width: 80%;
            margin: 0 auto 20px; } }
      .about .content01 .big-section .bg-w p {
        line-height: 34px; }
        @media only screen and (max-width: 767px) {
          .about .content01 .big-section .bg-w p {
            line-height: 28px; } }

.about .content02 {
  margin: 95px 0 0; }
  @media only screen and (max-width: 767px) {
    .about .content02 {
      margin: 60px 0 0; } }
  .about .content02 .ttl-05 {
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      .about .content02 .ttl-05 {
        margin-bottom: 35px; } }
  .about .content02 .name-box .border {
    border-top: 1px #d7d7d7 solid;
    margin-top: 37px;
    width: 78%; }
    @media only screen and (max-width: 767px) {
      .about .content02 .name-box .border {
        width: 45%;
        margin-top: 30px; } }
  .about .content02 .name-box .name {
    font-size: 20px;
    font-size: 2rem;
    font-family: "游明朝体", "游明朝", "YuMincho", "Yu Mincho", "Shippori Mincho", "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
    position: relative;
    text-align: right;
    padding: 0 0 0 20px;
    position: relative;
    top: -10px; }
    @media only screen and (max-width: 767px) {
      .about .content02 .name-box .name {
        font-size: 17px;
        font-size: 1.7rem; } }

.about .content03 {
  background-image: url("../images/oem/bg.png");
  margin: 90px auto;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 50px 70px; }
  @media only screen and (max-width: 767px) {
    .about .content03 {
      background-image: url("../images/oem/bg-sp.png");
      width: 100%;
      padding: 60px 0 25px 25px;
      margin: 50px auto 35px; } }
  .about .content03 .content03-sub {
    background: #fff;
    padding: 70px 0 65px;
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      .about .content03 .content03-sub {
        padding: 45px 0 50px;
        margin-bottom: 35px; } }
  .about .content03 .box-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .about .content03 .box-up {
        display: block;
        margin-bottom: 30px; } }
    .about .content03 .box-up .left {
      width: 300px; }
      @media only screen and (max-width: 767px) {
        .about .content03 .box-up .left {
          width: 100%; } }
      .about .content03 .box-up .left .ttl-01 {
        margin-bottom: 57px; }
      @media only screen and (max-width: 767px) {
        .about .content03 .box-up .left .imgsp {
          margin-bottom: 15px; } }
    .about .content03 .box-up .right {
      width: 600px; }
      @media only screen and (max-width: 767px) {
        .about .content03 .box-up .right {
          width: 100%; } }
  .about .content03 .box-down li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .about .content03 .box-down li {
        display: block;
        margin-bottom: 35px; } }
    .about .content03 .box-down li .img {
      width: 300px; }
      @media only screen and (max-width: 767px) {
        .about .content03 .box-down li .img {
          width: 100%; } }
    .about .content03 .box-down li .text-box {
      width: 645px; }
      @media only screen and (max-width: 767px) {
        .about .content03 .box-down li .text-box {
          width: 100%; }
          .about .content03 .box-down li .text-box img {
            margin-bottom: 15px; } }
      .about .content03 .box-down li .text-box .h4-tit {
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .about .content03 .box-down li .text-box .h4-tit {
            margin-bottom: 37px; } }

.about .content04 {
  margin-top: 100px; }
  @media only screen and (max-width: 767px) {
    .about .content04 {
      margin-top: 60px; } }
  .about .content04 .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
    @media only screen and (max-width: 767px) {
      .about .content04 .inner {
        display: block;
        padding: 0 30px; } }
    .about .content04 .inner .left {
      width: 160px; }
      @media only screen and (max-width: 767px) {
        .about .content04 .inner .left {
          width: 100%; } }
    .about .content04 .inner .right {
      width: 780px;
      margin-bottom: 180px; }
      @media only screen and (max-width: 767px) {
        .about .content04 .inner .right {
          width: 100%;
          margin-top: 45px;
          margin-bottom: 110px; } }
      .about .content04 .inner .right .info-content {
        margin-top: 10px;
        border-top: 1px solid #d7d7d7; }
        .about .content04 .inner .right .info-content .box {
          display: flex;
          align-items: flex-start;
          border-bottom: 1px solid #d7d7d7;
          padding: 21px 0 22px 50px; }
          @media only screen and (max-width: 767px) {
            .about .content04 .inner .right .info-content .box {
              display: block;
              padding: 18px 0 19px 15px; } }
          .about .content04 .inner .right .info-content .box .box-left {
            font-size: 16px;
            font-size: 1.6rem;
            font-weight: bold;
            width: 150px;
            line-height: 30px;
            letter-spacing: 1px; }
          .about .content04 .inner .right .info-content .box .box-right {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 30px;
            letter-spacing: 1px; }
            @media only screen and (max-width: 767px) {
              .about .content04 .inner .right .info-content .box .box-right {
                line-height: 23px; } }
            .about .content04 .inner .right .info-content .box .box-right .info-box li {
              margin-bottom: 15px; }
              @media only screen and (max-width: 767px) {
                .about .content04 .inner .right .info-content .box .box-right .info-box li {
                  margin-bottom: 22px; } }
              .about .content04 .inner .right .info-content .box .box-right .info-box li h5 {
                font-weight: bold; }
              .about .content04 .inner .right .info-content .box .box-right .info-box li p {
                line-height: 30px; }
                @media only screen and (max-width: 767px) {
                  .about .content04 .inner .right .info-content .box .box-right .info-box li p {
                    line-height: 23px; } }
              .about .content04 .inner .right .info-content .box .box-right .info-box li:last-child {
                margin-bottom: 0; }

.about .footer .btn-03 {
  margin: 0; }

@media only screen and (max-width: 767px) {
  .about .exp-01 .en:before {
    left: -110px;
    width: 100px; } }

.after .after-content {
  padding: 80px 0 100px; }
  @media only screen and (max-width: 767px) {
    .after .after-content {
      padding: 35px 0 65px; } }

.after .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.after .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.after p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .after p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

.after .content01 .introtext {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .after .content01 .introtext .ttl-06 {
      line-height: 37px; } }
  .after .content01 .introtext .text {
    margin: 55px 0 72px; }
    @media only screen and (max-width: 767px) {
      .after .content01 .introtext .text {
        margin: 30px 0 45px; } }
  .after .content01 .introtext .en-img {
    position: absolute;
    top: 200px;
    right: -45px;
    z-index: -1; }
    @media screen and (max-width: 1200px) {
      .after .content01 .introtext .en-img {
        right: 20px; } }
    @media only screen and (max-width: 767px) {
      .after .content01 .introtext .en-img {
        right: 0;
        bottom: -25px;
        top: unset; } }
    .after .content01 .introtext .en-img img {
      width: 500px; }
      @media only screen and (max-width: 767px) {
        .after .content01 .introtext .en-img img {
          width: 70%;
          margin-left: 90px; } }

.after .content01 .led-list {
  background-image: url("../images/after/bg.png");
  height: 625px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  padding: 75px 70px 0; }
  @media only screen and (max-width: 767px) {
    .after .content01 .led-list {
      background-image: url("../images/after/bg-sp.png");
      width: 100%;
      padding: 45px 25px;
      height: 847px;
      margin-bottom: 35px; } }
  .after .content01 .led-list .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      .after .content01 .led-list .list {
        margin-top: 35px; } }
    .after .content01 .led-list .list li {
      background: #fff;
      border-top: 2px #e20c17 solid;
      width: 49%;
      max-width: 490px;
      padding: 28px 0 22px 30px;
      margin-bottom: 20px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .after .content01 .led-list .list li {
          width: 100%;
          max-width: 100%;
          padding: 16px 25px 13px;
          border-top: 1px #e20c17 solid;
          margin-bottom: 10px; } }
      .after .content01 .led-list .list li h5 {
        font-size: 18px;
        font-size: 1.8rem;
        border-bottom: 1px #181a1b solid;
        font-weight: bold;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          .after .content01 .led-list .list li h5 {
            font-size: 15px;
            font-size: 1.5rem;
            margin-bottom: 10px; } }
      @media only screen and (max-width: 767px) {
        .after .content01 .led-list .list li p {
          letter-spacing: 0; } }
      .after .content01 .led-list .list li .num-img {
        position: absolute;
        right: 0;
        bottom: 0; }
        .after .content01 .led-list .list li .num-img img {
          width: 100px; }
          @media only screen and (max-width: 767px) {
            .after .content01 .led-list .list li .num-img img {
              width: 47px; } }
        .after .content01 .led-list .list li .num-img .img01 {
          width: 80px; }
          @media only screen and (max-width: 767px) {
            .after .content01 .led-list .list li .num-img .img01 {
              width: 40px; } }

.after .content01 .contact-box .faq {
  border: 1px #181a1b solid;
  position: relative; }
  .after .content01 .contact-box .faq h5 {
    color: #181a1b;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 18px 0; }
    @media all and (-ms-high-contrast: none) {
      .after .content01 .contact-box .faq h5 {
        padding: 20px 0 12px; } }
    @media only screen and (max-width: 767px) {
      .after .content01 .contact-box .faq h5 {
        font-size: 15px;
        font-size: 1.5rem;
        padding: 12px 0 11px; } }
  .after .content01 .contact-box .faq .anwser {
    background: #181a1b;
    font-size: 15px;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    line-height: 32px;
    letter-spacing: 1px;
    padding: 30px 0; }
    @media only screen and (max-width: 767px) {
      .after .content01 .contact-box .faq .anwser {
        text-align: left;
        padding: 25px;
        line-height: 26px; } }
  .after .content01 .contact-box .faq .en-img02 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 370px; }
    @media only screen and (max-width: 767px) {
      .after .content01 .contact-box .faq .en-img02 {
        width: 180px; } }

.after .content01 .contact-box .h5-des {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  color: #181a1b;
  margin: 60px 0 30px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .after .content01 .contact-box .h5-des {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 25px;
      margin: 35px 0 15px; } }

.after .content01 .contact-box .two-button {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .after .content01 .contact-box .two-button {
      display: block; } }
  .after .content01 .contact-box .two-button .tel-btn {
    width: 50%;
    max-width: 490px; }
    @media only screen and (max-width: 767px) {
      .after .content01 .contact-box .two-button .tel-btn {
        width: 100%;
        max-width: 100%; } }
  .after .content01 .contact-box .two-button .mail-bnt {
    width: 50%;
    max-width: 490px; }
    @media only screen and (max-width: 767px) {
      .after .content01 .contact-box .two-button .mail-bnt {
        width: 100%;
        max-width: 100%; } }

.after .content02 {
  margin-top: 135px; }
  @media only screen and (max-width: 767px) {
    .after .content02 {
      margin-top: 90px; } }
  .after .content02 .ttl-05 {
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      .after .content02 .ttl-05 {
        margin-bottom: 38px; } }
  .after .content02 .box01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      .after .content02 .box01 {
        display: block;
        margin-bottom: 37px; } }
    .after .content02 .box01 .left {
      width: 60%;
      max-width: 600px; }
      @media only screen and (max-width: 767px) {
        .after .content02 .box01 .left {
          width: 100%;
          max-width: 100%; } }
      .after .content02 .box01 .left .h4-tit {
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .after .content02 .box01 .left .h4-tit {
            margin-bottom: 35px; } }
      @media only screen and (max-width: 767px) {
        .after .content02 .box01 .left .img-sp {
          margin-bottom: 23px; } }
      .after .content02 .box01 .left .note {
        font-size: 12px;
        font-size: 1.2rem;
        display: flex;
        margin-top: 8px;
        letter-spacing: 1px; }
        @media only screen and (max-width: 767px) {
          .after .content02 .box01 .left .note {
            margin-top: 7px;
            line-height: 22px; } }
    .after .content02 .box01 .right {
      width: 40%;
      max-width: 350px; }
      @media only screen and (max-width: 767px) {
        .after .content02 .box01 .right {
          width: 100%;
          max-width: 100%; } }
  .after .content02 .box02 {
    flex-direction: row-reverse; }
    @media only screen and (max-width: 767px) {
      .after .content02 .box02 {
        flex-direction: unset; } }

.after .after-content .tel-btn {
  background-color: #f1f1f1;
  margin-bottom: 20px;
  height: 100px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .after .after-content .tel-btn {
      margin-bottom: 9px;
      height: 80px;
      flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    .after .after-content .tel-btn {
      cursor: pointer;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .after .after-content .tel-btn:hover {
        opacity: .7; } }
  .after .after-content .tel-btn .txt {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.025em; }
    @media only screen and (max-width: 767px) {
      .after .after-content .tel-btn .txt {
        font-size: 27px;
        font-size: 2.7rem; } }
  .after .after-content .tel-btn .sml {
    color: #b6b6b6;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.428;
    letter-spacing: 0.025em;
    margin-left: 23px; }
    @media only screen and (max-width: 767px) {
      .after .after-content .tel-btn .sml {
        display: inline-block;
        margin-top: 7px;
        font-size: 14px;
        font-size: 1.4rem; } }
    .after .after-content .tel-btn .sml .numb {
      font-family: "Work Sans", sans-serif; }

.after .after-content .mail-bnt {
  background-color: #181a1b;
  background-image: url("../images/common/arw_01.png");
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: right 30px center;
  transition: all 0.3s;
  height: 100px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .after .after-content .mail-bnt {
      background-size: 30px;
      background-position: right 20px center;
      height: 80px; } }
  .after .after-content .mail-bnt .txt {
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-right: 24px; }
    @media all and (-ms-high-contrast: none) {
      .after .after-content .mail-bnt .txt {
        margin-top: 7px; } }
    @media only screen and (max-width: 767px) {
      .after .after-content .mail-bnt .txt {
        font-size: 16px;
        font-size: 1.6rem; } }
  .after .after-content .mail-bnt img {
    margin-right: 9px;
    width: 28px; }
    @media only screen and (max-width: 767px) {
      .after .after-content .mail-bnt img {
        width: 24px; } }
  @media only screen and (min-width: 768px) {
    .after .after-content .mail-bnt:hover {
      background-color: red; } }

body.case .cat-list {
  margin-bottom: 60px;
  width: 100%;
  justify-content: flex-start; }
  @media only screen and (max-width: 767px) {
    body.case .cat-list {
      margin-bottom: 40px; } }
  body.case .cat-list li {
    color: #b6b6b6;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin-right: 10px;
    padding-bottom: 16px;
    position: relative;
    text-align: center;
    transition: all .3s;
    width: calc((100% - 40px)/5); }
    @media only screen and (min-width: 768px) {
      body.case .cat-list li:last-child {
        margin-right: 0; } }
    @media only screen and (max-width: 767px) {
      body.case .cat-list li {
        margin-right: 4px;
        padding-top: 25px;
        padding-bottom: 14px;
        width: calc(50% - 2px); }
        body.case .cat-list li:nth-child(odd) {
          margin-right: 0; }
        body.case .cat-list li:first-child {
          margin-right: 0;
          padding-top: 0px;
          width: 100%; } }
    body.case .cat-list li:before {
      background-color: #b6b6b6;
      content: "";
      margin: 0 auto;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.case .cat-list li:before {
          height: 1px; } }
    body.case .cat-list li.active {
      color: #e20c17; }
      body.case .cat-list li.active:before {
        background-color: #e20c17; }
    @media only screen and (min-width: 768px) {
      body.case .cat-list li:hover {
        color: #e20c17; }
        body.case .cat-list li:hover:before {
          background-color: #e20c17; } }

body.case section.content {
  padding: 100px 0 180px; }
  @media only screen and (max-width: 767px) {
    body.case section.content {
      padding: 45px 0 107px; } }
  body.case section.content .main-content .article-content {
    width: 100%; }
    body.case section.content .main-content .article-content ul.article-list {
      justify-content: flex-start; }
      body.case section.content .main-content .article-content ul.article-list li.item {
        margin-right: 10px;
        margin-bottom: 46px;
        width: calc((100% - 20px)/3); }
        @media only screen and (min-width: 768px) {
          body.case section.content .main-content .article-content ul.article-list li.item:nth-child(3n) {
            margin-right: 0; } }
        @media all and (-ms-high-contrast: none) {
          body.case section.content .main-content .article-content ul.article-list li.item {
            margin-right: 9px; } }
        @media only screen and (max-width: 767px) {
          body.case section.content .main-content .article-content ul.article-list li.item {
            margin-bottom: 35px;
            margin-right: 10px;
            width: calc(50% - 5px); }
            body.case section.content .main-content .article-content ul.article-list li.item:nth-child(even) {
              margin-right: 0; } }
        @media only screen and (min-width: 768px) {
          body.case section.content .main-content .article-content ul.article-list li.item:hover .imager:before {
            opacity: 1; }
          body.case section.content .main-content .article-content ul.article-list li.item:hover .imager:after {
            width: 100%; } }
        body.case section.content .main-content .article-content ul.article-list li.item .imager {
          background-image: url("../images/common/no-img.jpg");
          background-size: cover;
          height: auto;
          padding-bottom: 70.58%;
          position: relative;
          width: 100%; }
          body.case section.content .main-content .article-content ul.article-list li.item .imager:before {
            color: white;
            font-size: 24px;
            font-size: 2.4rem;
            letter-spacing: 0.05em;
            font-family: "Montserrat", sans-serif;
            font-style: italic;
            text-align: center;
            content: "View more";
            opacity: 0;
            transition: all .3s;
            margin: 0 auto;
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2; }
          body.case section.content .main-content .article-content ul.article-list li.item .imager:after {
            pointer-events: none;
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 0;
            height: 100%;
            background: #d0121b;
            background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
            background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
            background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
            opacity: .4;
            transition: all 0.3s ease; }
        body.case section.content .main-content .article-content ul.article-list li.item .ttl {
          display: block;
          font-size: 15px;
          font-size: 1.5rem;
          font-weight: bold;
          letter-spacing: 0.05em;
          line-height: 2.133;
          margin: 21px 0 10px;
          width: 100%; }
          @media only screen and (max-width: 767px) {
            body.case section.content .main-content .article-content ul.article-list li.item .ttl {
              line-height: 1.6;
              margin: 10px 0 10px; } }
        body.case section.content .main-content .article-content ul.article-list li.item ul.cats {
          justify-content: flex-start; }
          body.case section.content .main-content .article-content ul.article-list li.item ul.cats .category {
            display: inline-block;
            color: #b6b6b6;
            font-weight: bold;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
            margin-right: 12px; }
            @media only screen and (max-width: 767px) {
              body.case section.content .main-content .article-content ul.article-list li.item ul.cats .category {
                font-size: 13px;
                font-size: 1.3rem; } }
            body.case section.content .main-content .article-content ul.article-list li.item ul.cats .category:last-child {
              margin-right: 0; }

body.case.single .main-content .article-content {
  width: calc(100% - 270px) !important; }
  @media only screen and (max-width: 767px) {
    body.case.single .main-content .article-content {
      width: 100% !important; } }
  body.case.single .main-content .article-content ul.cats {
    justify-content: flex-start; }
    body.case.single .main-content .article-content ul.cats .category {
      display: inline-block;
      color: #b6b6b6;
      font-weight: bold;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      margin-right: 12px; }
      @media only screen and (max-width: 767px) {
        body.case.single .main-content .article-content ul.cats .category {
          font-size: 13px;
          font-size: 1.3rem; } }
      body.case.single .main-content .article-content ul.cats .category:last-child {
        margin-right: 0; }
  body.case.single .main-content .article-content .category {
    border: none;
    color: #b6b6b6;
    height: auto;
    width: auto; }
  body.case.single .main-content .article-content .group-table {
    border: 1px solid #181a1b;
    margin-bottom: 55px;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      body.case.single .main-content .article-content .group-table {
        margin-top: 40px;
        margin-bottom: 20px; } }
    body.case.single .main-content .article-content .group-table tr:last-child {
      /*ios dpr=2 and dpr=3, the border is almost the same, the following code can be omitted*/ }
      body.case.single .main-content .article-content .group-table tr:last-child th {
        border-bottom: 1px solid #181a1b; }
      @media screen and (-webkit-min-device-pixel-ratio: 2) {
        body.case.single .main-content .article-content .group-table tr:last-child th {
          border-bottom: 0.5px solid #181a1b; } }
      @media screen and (-webkit-min-device-pixel-ratio: 3) {
        body.case.single .main-content .article-content .group-table tr:last-child th {
          border-bottom: 0.333333px solid #181a1b; } }
      body.case.single .main-content .article-content .group-table tr:last-child td p {
        line-height: 2; }
    body.case.single .main-content .article-content .group-table tr th {
      background-color: #181a1b;
      border-bottom: 1px solid white;
      color: white;
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      padding: 16px 28px;
      vertical-align: text-top;
      width: 180px; }
      @media only screen and (max-width: 767px) {
        body.case.single .main-content .article-content .group-table tr th {
          font-size: 14px;
          font-size: 1.4rem;
          padding: 9px 14px;
          width: 95px; } }
    body.case.single .main-content .article-content .group-table tr td {
      border-bottom: 1px solid #181a1b;
      padding: 16px 28px;
      vertical-align: text-top; }
      @media only screen and (max-width: 767px) {
        body.case.single .main-content .article-content .group-table tr td {
          padding: 9px 14px; } }
      body.case.single .main-content .article-content .group-table tr td p {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em; }
        @media only screen and (max-width: 767px) {
          body.case.single .main-content .article-content .group-table tr td p {
            font-size: 14px;
            font-size: 1.4rem; } }

body.case .cms-sidebar .side-element ul.side-list li {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: normal; }

@media only screen and (max-width: 767px) {
  body.case .margin-reducer {
    margin-top: -65px; } }

body.contact .reg-txt {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.133; }
  @media only screen and (max-width: 767px) {
    body.contact .reg-txt {
      line-height: 1.7333; } }

body.contact section.intro {
  padding: 90px 0 0; }
  @media only screen and (max-width: 767px) {
    body.contact section.intro {
      padding: 50px 0 0; } }
  body.contact section.intro .lower {
    margin: 70px 0 99px; }
    @media only screen and (max-width: 767px) {
      body.contact section.intro .lower {
        margin: 35px 0 60px; } }
    body.contact section.intro .lower .reg-txt {
      max-width: 460px;
      position: relative;
      top: -10px; }
      @media only screen and (max-width: 767px) {
        body.contact section.intro .lower .reg-txt {
          width: 100%; } }
    body.contact section.intro .lower .tel-box {
      background-color: #f1f1f1;
      height: 76px;
      width: 489px;
      justify-content: center;
      align-items: center; }
      @media only screen and (min-width: 768px) {
        body.contact section.intro .lower .tel-box {
          cursor: pointer;
          -webkit-transition: 0.3s;
          -moz-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
          body.contact section.intro .lower .tel-box:hover {
            opacity: .7; } }
      @media only screen and (max-width: 767px) {
        body.contact section.intro .lower .tel-box {
          margin-top: 10px;
          height: 80px;
          width: 100%;
          flex-direction: column; } }
      body.contact section.intro .lower .tel-box .big {
        font-size: 30px;
        font-size: 3rem;
        font-family: "Montserrat", sans-serif;
        letter-spacing: 0.025em;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.contact section.intro .lower .tel-box .big {
            font-size: 27px;
            font-size: 2.7rem; } }
      body.contact section.intro .lower .tel-box .sml {
        color: #b6b6b6;
        display: inline-block;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.05em;
        line-height: 1.428;
        margin-left: 31px; }
        @media only screen and (max-width: 767px) {
          body.contact section.intro .lower .tel-box .sml {
            font-size: 13px;
            font-size: 1.3rem;
            margin-top: 10px;
            margin-left: 0;
            line-height: 1; }
            body.contact section.intro .lower .tel-box .sml .space {
              display: inline-block;
              width: 14px; } }

.content .content-content {
  padding: 85px 0 178px; }
  @media only screen and (max-width: 767px) {
    .content .content-content {
      padding: 40px 0 115px; } }

.content .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.content .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.content p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .content p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

@media only screen and (max-width: 767px) {
  .content .ttl-05 .en {
    margin-bottom: 10px; } }

.content .btn-01 {
  width: 320px;
  height: 60px; }
  @media only screen and (max-width: 767px) {
    .content .btn-01 {
      height: 44px;
      width: 90%;
      margin: 0 auto;
      letter-spacing: 1px; } }
  .content .btn-01 .txt {
    font-size: 14px;
    margin-left: -30px; }
    @media only screen and (max-width: 767px) {
      .content .btn-01 .txt {
        margin-left: -30px; } }
  @media only screen and (max-width: 767px) {
    .content .btn-01 .txt02 {
      text-align: center;
      line-height: 15px; } }
  .content .btn-01 img {
    right: 20px;
    left: unset; }
    @media all and (-ms-high-contrast: none) {
      .content .btn-01 img {
        left: none !important; } }

.content .content01 .h4-tit {
  line-height: 40px;
  padding-bottom: 12px; }
  @media only screen and (max-width: 767px) {
    .content .content01 .h4-tit {
      line-height: 35px;
      padding-bottom: 8px; } }

.content .content01 .content01-box01 {
  display: flex;
  align-items: center;
  padding: 0 0 0 70px;
  position: relative;
  z-index: 0; }
  @media only screen and (max-width: 767px) {
    .content .content01 .content01-box01 {
      display: block;
      padding: 0; } }
  .content .content01 .content01-box01 .left {
    width: 45%; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box01 .left {
        width: 100%;
        padding: 0 25px; } }
    .content .content01 .content01-box01 .left .ttl-05 {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .content .content01 .content01-box01 .left .ttl-05 {
          margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box01 .left .img-sp {
        width: calc(100% + 25px);
        margin-bottom: 25px; } }
  .content .content01 .content01-box01 .right {
    width: 55%;
    height: 580px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    background-image: url("../images/content/img01.jpg");
    margin-left: 60px; }

.content .content01 .content01-box02 {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .content .content01 .content01-box02 {
      display: block;
      margin-top: 30px; } }
  .content .content01 .content01-box02 .box02-left {
    width: 35%;
    max-width: 350px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box02 .box02-left {
        width: 100%;
        max-width: 100%; } }
  .content .content01 .content01-box02 .box02-right {
    width: 65%;
    max-width: 600px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box02 .box02-right {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box02 .box02-right .img-sp {
        margin-top: 35px; } }
    .content .content01 .content01-box02 .box02-right .text {
      margin: 40px 0 0; }
      @media only screen and (max-width: 767px) {
        .content .content01 .content01-box02 .box02-right .text {
          margin: 23px 0 0; } }

.content .content01 .content01-box03 {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .content .content01 .content01-box03 {
      display: block;
      margin-top: 30px; } }
  .content .content01 .content01-box03 .box03-right {
    width: 35%;
    max-width: 350px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box03 .box03-right {
        width: 100%;
        max-width: 100%; } }
  .content .content01 .content01-box03 .box03-left {
    width: 65%;
    max-width: 600px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box03 .box03-left {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box03 .box03-left .img-sp {
        margin-top: 35px; } }
    .content .content01 .content01-box03 .box03-left .text {
      margin: 40px 0 0; }
      @media only screen and (max-width: 767px) {
        .content .content01 .content01-box03 .box03-left .text {
          margin: 23px 0 0; } }

.content .content01 .content01-box04 .content01-box04-content {
  background-image: url("../images/content/bg_white.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 439px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  margin-top: 73px; }
  @media only screen and (max-width: 767px) {
    .content .content01 .content01-box04 .content01-box04-content {
      background-image: url("../images/content/bg_white-sp.png");
      height: 681px;
      display: block;
      padding: 30px 25px;
      margin-top: 43px; } }
  .content .content01 .content01-box04 .content01-box04-content .left {
    width: 45%;
    max-width: 350px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box04 .content01-box04-content .left {
        width: 100%;
        max-width: 100%; } }
  .content .content01 .content01-box04 .content01-box04-content .right {
    width: 55%;
    max-width: 495px; }
    @media only screen and (max-width: 767px) {
      .content .content01 .content01-box04 .content01-box04-content .right {
        width: 100%;
        max-width: 100%; } }
    .content .content01 .content01-box04 .content01-box04-content .right h5 {
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: underline;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .content .content01 .content01-box04 .content01-box04-content .right h5 {
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 27px;
          margin-bottom: 27px; } }
    .content .content01 .content01-box04 .content01-box04-content .right .btn-01 {
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        .content .content01 .content01-box04 .content01-box04-content .right .btn-01 {
          margin-top: 28px; } }
    .content .content01 .content01-box04 .content01-box04-content .right .imgsp {
      margin-bottom: 20px; }

.content .content02 {
  margin-top: 170px; }
  @media only screen and (max-width: 767px) {
    .content .content02 {
      margin-top: 85px;
      padding: 0 25px; } }
  .content .content02 .ttl-05 {
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      .content .content02 .ttl-05 {
        margin-bottom: 45px; } }
  .content .content02 .content02-bg {
    width: 100%;
    background-image: url("../images/flow/bg.png");
    background-size: cover;
    background-position: center;
    padding: 70px 0 10px 70px; }
    @media only screen and (max-width: 767px) {
      .content .content02 .content02-bg {
        background-image: url("../images/led/bg03-sp.jpg");
        padding: 25px 0 5px; } }
    .content .content02 .content02-bg .content02-bgdetail {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .content .content02 .content02-bg .content02-bgdetail {
          display: block; } }
      .content .content02 .content02-bg .content02-bgdetail .flow {
        background: #fff;
        max-width: 460px;
        padding: 40px 50px 35px;
        margin-bottom: 60px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow {
            max-width: 100%;
            padding: 23px 25px;
            margin-bottom: 20px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow .num-box {
          background-image: url("../images/flow/num-bg.png");
          background-size: contain;
          background-repeat: no-repeat;
          width: 80px;
          height: 80px;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          padding: 17px 0 0 14px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow .num-box {
              padding: 7px 0 0 6px;
              width: 45px;
              height: 45px; } }
          .content .content02 .content02-bg .content02-bgdetail .flow .num-box .en {
            font-size: 16px;
            font-size: 1.6rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 7px;
            display: block; }
            @media only screen and (max-width: 767px) {
              .content .content02 .content02-bg .content02-bgdetail .flow .num-box .en {
                font-size: 10px;
                font-size: 1rem;
                margin-bottom: 3px; } }
          .content .content02 .content02-bg .content02-bgdetail .flow .num-box .num {
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: bold;
            color: #fff;
            display: block; }
            @media only screen and (max-width: 767px) {
              .content .content02 .content02-bg .content02-bgdetail .flow .num-box .num {
                font-size: 16px;
                font-size: 1.6rem;
                letter-spacing: 0; } }
        .content .content02 .content02-bg .content02-bgdetail .flow h4 {
          font-size: 22px;
          font-size: 2.2rem;
          font-weight: bold;
          margin-bottom: 28px;
          margin-left: 50px;
          letter-spacing: 1px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow h4 {
              font-size: 18px;
              font-size: 1.8rem;
              margin-left: 25px;
              margin-bottom: 18px; } }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow .h4-spec-sp {
            line-height: 25px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow p {
          text-align: justify;
          letter-spacing: 0.8px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow p {
              letter-spacing: 1px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow .imgflow {
          margin: 37px 0 20px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow .imgflow {
              margin: 25px 0 20px; } }
      .content .content02 .content02-bg .content02-bgdetail .flow01 {
        padding: 40px 50px; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow01 {
            padding: 23px 25px 30px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow01 .two-button {
          margin-top: 22px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow01 .two-button {
              margin-top: 18px; } }
      @media only screen and (min-width: 768px) {
        .content .content02 .content02-bg .content02-bgdetail .flow01,
        .content .content02 .content02-bg .content02-bgdetail .flow03,
        .content .content02 .content02-bg .content02-bgdetail .flow05,
        .content .content02 .content02-bg .content02-bgdetail .flow07 {
          position: relative; }
          .content .content02 .content02-bg .content02-bgdetail .flow01::after,
          .content .content02 .content02-bg .content02-bgdetail .flow03::after,
          .content .content02 .content02-bg .content02-bgdetail .flow05::after,
          .content .content02 .content02-bg .content02-bgdetail .flow07::after {
            content: "";
            position: absolute;
            background-image: url("../images/flow/left.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 45px;
            height: 9px;
            right: -46px;
            top: 50%;
            display: block; } }
      @media only screen and (min-width: 768px) {
        .content .content02 .content02-bg .content02-bgdetail .flow02,
        .content .content02 .content02-bg .content02-bgdetail .flow04,
        .content .content02 .content02-bg .content02-bgdetail .flow06 {
          position: relative; }
          .content .content02 .content02-bg .content02-bgdetail .flow02::after,
          .content .content02 .content02-bg .content02-bgdetail .flow04::after,
          .content .content02 .content02-bg .content02-bgdetail .flow06::after {
            content: "";
            position: absolute;
            background-image: url("../images/flow/right.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 45px;
            height: 9px;
            left: -43px;
            top: 50%;
            display: block; } }
      .content .content02 .content02-bg .content02-bgdetail .flow02 {
        padding: 42px 50px 27px; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow02 {
            padding: 20px 25px 23px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow02 .tit {
          border: #e20c17 1px solid;
          font-size: 15px;
          font-size: 1.5rem;
          padding: 7px 20px;
          font-weight: bold;
          color: #e20c17;
          margin: 12px 0 18px; }
          @media all and (-ms-high-contrast: none) {
            .content .content02 .content02-bg .content02-bgdetail .flow02 .tit {
              padding: 7px 20px 3px; } }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow02 .tit {
              padding: 5px 10px;
              font-size: 13px;
              font-size: 1.3rem;
              letter-spacing: 2px;
              margin: 12px 0 13px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow02 .list {
          font-size: 15px;
          font-size: 1.5rem;
          margin-left: 20px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow02 .list {
              margin-left: 10px; } }
          .content .content02 .content02-bg .content02-bgdetail .flow02 .list li {
            margin-bottom: 12px;
            font-weight: bold;
            display: flex; }
            @media only screen and (max-width: 767px) {
              .content .content02 .content02-bg .content02-bgdetail .flow02 .list li {
                line-height: 22px;
                margin-bottom: 4px; } }
      .content .content02 .content02-bg .content02-bgdetail .flow04 {
        padding: 37px 50px 30px; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow04 {
            padding: 23px 25px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow04 .imgflow {
          margin: 40px 0 20px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow04 .imgflow {
              margin: 20px 0; } }
      .content .content02 .content02-bg .content02-bgdetail .flow05 {
        padding: 40px 50px 30px; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .flow05 {
            padding: 23px 25px 13px; } }
        .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list {
          margin-top: 25px; }
          @media only screen and (max-width: 767px) {
            .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list {
              padding: 0;
              margin-top: 15px; } }
          .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li {
            margin-bottom: 15px;
            align-items: center;
            display: flex; }
            @media only screen and (max-width: 767px) {
              .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li {
                margin-bottom: 10px;
                align-items: end;
                margin-bottom: 15px; } }
            .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li .imgcheck {
              width: 30px;
              height: 30px;
              margin: 0 15px; }
              @media only screen and (max-width: 767px) {
                .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li .imgcheck {
                  width: 22px;
                  height: 22px;
                  margin: 0 12px 0 0; } }
            .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li h4 {
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 1px;
              font-weight: bold;
              margin: 0; }
              @media only screen and (max-width: 767px) {
                .content .content02 .content02-bg .content02-bgdetail .flow05 .note-list li h4 {
                  font-size: 14px;
                  font-size: 1.4rem;
                  line-height: 20px; } }
      .content .content02 .content02-bg .content02-bgdetail .bgdetail-right {
        margin-top: 240px; }
        @media only screen and (max-width: 767px) {
          .content .content02 .content02-bg .content02-bgdetail .bgdetail-right {
            margin-top: 0; } }
        @media only screen and (min-width: 768px) {
          .content .content02 .content02-bg .content02-bgdetail .bgdetail-right {
            position: relative; }
            .content .content02 .content02-bg .content02-bgdetail .bgdetail-right::before {
              content: "";
              position: absolute;
              width: 1px;
              height: 1660px;
              background-color: #e20c17;
              left: -39px; } }

.content .content-content .tel-btn {
  background-color: #f1f1f1;
  margin-bottom: 10px;
  height: 90px;
  width: 100%;
  padding: 20px 0 0;
  display: block; }
  @media only screen and (max-width: 767px) {
    .content .content-content .tel-btn {
      padding: 18px 0 0;
      margin-bottom: 9px;
      height: 75px;
      flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    .content .content-content .tel-btn {
      cursor: pointer;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .content .content-content .tel-btn:hover {
        opacity: .7; } }
  .content .content-content .tel-btn .txt {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.025em;
    display: block;
    text-align: center;
    margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .content .content-content .tel-btn .txt {
        font-size: 20px;
        font-size: 2rem; } }
  .content .content-content .tel-btn .sml {
    color: #b6b6b6;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.428;
    letter-spacing: 0.025em;
    margin-left: 23px;
    text-align: center;
    display: block; }
    @media only screen and (max-width: 767px) {
      .content .content-content .tel-btn .sml {
        display: inline-block;
        margin-top: -4px;
        font-size: 14px;
        font-size: 1.4rem; } }
    .content .content-content .tel-btn .sml .numb {
      font-family: "Work Sans", sans-serif; }

.content .content-content .mail-bnt {
  background-color: #181a1b;
  background-image: url("../images/common/arw_01.png");
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: right 25px center;
  transition: all 0.3s;
  height: 90px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .content .content-content .mail-bnt {
      background-image: none;
      height: 75px; } }
  @media only screen and (max-width: 767px) {
    .content .content-content .mail-bnt {
      background-image: none; } }
  .content .content-content .mail-bnt .txt {
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-right: 50px; }
    @media all and (-ms-high-contrast: none) {
      .content .content-content .mail-bnt .txt {
        margin-top: 7px; } }
    @media only screen and (max-width: 767px) {
      .content .content-content .mail-bnt .txt {
        font-size: 16px;
        font-size: 1.6rem;
        margin-right: 20px;
        margin-top: 27px; } }
  .content .content-content .mail-bnt img {
    margin-right: 9px;
    width: 28px; }
    @media only screen and (max-width: 767px) {
      .content .content-content .mail-bnt img {
        width: 20px;
        position: relative;
        top: -13px;
        left: 47%; } }
  @media only screen and (min-width: 768px) {
    .content .content-content .mail-bnt:hover {
      background-color: red; } }

.delivery .delivery-content {
  padding: 100px 0 180px; }
  @media only screen and (max-width: 767px) {
    .delivery .delivery-content {
      padding: 35px 0 105px; } }

.delivery .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.delivery p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .delivery p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

.delivery .main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  padding: 0 25px;
  margin: 0 auto 150px;
  position: relative;
  right: 35px; }
  @media only screen and (max-width: 767px) {
    .delivery .main-content {
      display: block;
      margin: 0 auto 85px; } }
  .delivery .main-content .en-text {
    position: absolute;
    width: 130px;
    height: 400px;
    right: -40px;
    z-index: -1;
    top: -80px; }
    @media only screen and (max-width: 767px) {
      .delivery .main-content .en-text {
        width: 65px;
        height: auto;
        right: 10px;
        top: 350px; } }
  @media screen and (max-width: 1080px) {
    .delivery .main-content {
      right: 0; } }
  @media only screen and (max-width: 767px) {
    .delivery .main-content {
      width: 100%;
      padding: 0 25px;
      right: 0; } }
  .delivery .main-content .main-content-left {
    width: 50%;
    max-width: 510px; }
    @media only screen and (max-width: 767px) {
      .delivery .main-content .main-content-left {
        width: 100%; } }
  .delivery .main-content .main-content-right {
    width: 50%;
    max-width: 500px; }
    @media only screen and (max-width: 767px) {
      .delivery .main-content .main-content-right {
        width: 100%; } }
    .delivery .main-content .main-content-right .ttl-06 {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .delivery .main-content .main-content-right .ttl-06 {
          margin-bottom: 45px;
          line-height: 34px; } }
    @media only screen and (max-width: 767px) {
      .delivery .main-content .main-content-right .sp-img {
        margin-bottom: 25px; } }

.delivery .sub-content .sub-01 .h4-tit {
  margin-top: 65px; }
  @media only screen and (max-width: 767px) {
    .delivery .sub-content .sub-01 .h4-tit {
      margin-top: 45px; } }

.delivery .sub-content .sub-01 .text {
  margin: 40px 0; }
  @media only screen and (max-width: 767px) {
    .delivery .sub-content .sub-01 .text {
      margin: 32px 0 27px; } }

.delivery .sub-content .sub-01 .sub-01-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%; }
  .delivery .sub-content .sub-01 .sub-01-list li {
    width: 24%;
    height: 208px;
    max-width: 235px;
    background-image: url("../images/delivery/bg-box.png");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #181a1b;
    line-height: 30px; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-01 .sub-01-list li {
        background-image: url("../images/delivery/bg-box-sp.png");
        width: 100%;
        max-width: 100%;
        height: 70px;
        display: inline-flex;
        font-size: 15px;
        font-size: 1.5rem;
        padding: 0 23px;
        align-items: center;
        line-height: 20px;
        margin-bottom: 10px;
        text-align: left; } }
    .delivery .sub-content .sub-01 .sub-01-list li span {
      text-decoration: underline; }
      @media only screen and (max-width: 767px) {
        .delivery .sub-content .sub-01 .sub-01-list li span {
          margin-left: 20px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list li:nth-child(1) img {
        width: 56px;
        height: 50px;
        margin: 27px 0 35px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list li:nth-child(2) img {
        width: 52px;
        height: 52px;
        margin: 24px 0 35px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list li:nth-child(3) img {
        width: 52px;
        height: 52px;
        margin: 24px 0 20px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list li:nth-child(4) img {
        width: 50px;
        height: 62px;
        margin: 20px 0 30px; } }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-01 .sub-01-list li .ico {
        width: 40px;
        height: auto; } }

.delivery .sub-content .sub-01 .sub-01-list-spec {
  justify-content: center; }
  .delivery .sub-content .sub-01 .sub-01-list-spec li {
    margin: 20px 20px 0 0; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-01 .sub-01-list-spec li {
        margin: 0 0 10px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list-spec li:nth-child(1) img {
        width: 56px;
        height: 40px;
        margin: 30px 0 20px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list-spec li:nth-child(2) img {
        width: 40px;
        height: 50px;
        margin: 25px 0 30px; } }
    @media only screen and (min-width: 768px) {
      .delivery .sub-content .sub-01 .sub-01-list-spec li:nth-child(3) img {
        width: 52px;
        height: 40px;
        margin: 30px 0 35px; } }

.delivery .sub-content .sub-02 {
  margin-top: 75px; }
  @media only screen and (max-width: 767px) {
    .delivery .sub-content .sub-02 {
      margin-top: 32px; } }
  .delivery .sub-content .sub-02 .text {
    margin: 40px 0 0; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-02 .text {
        margin: 28px 0 0; } }

.delivery .sub-content .sub-03 {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .delivery .sub-content .sub-03 {
      display: block;
      margin-top: 40px; } }
  .delivery .sub-content .sub-03 .sub-03-left {
    width: 35%;
    max-width: 350px; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-03 .sub-03-left {
        width: 100%;
        max-width: 100%; } }
  .delivery .sub-content .sub-03 .sub-03-right {
    width: 65%;
    max-width: 600px; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-03 .sub-03-right {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-03 .sub-03-right .img-sp {
        margin-top: 35px; } }
    .delivery .sub-content .sub-03 .sub-03-right .text {
      margin: 40px 0 0; }
      @media only screen and (max-width: 767px) {
        .delivery .sub-content .sub-03 .sub-03-right .text {
          margin: 23px 0 0; } }

.delivery .sub-content .sub-04 {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .delivery .sub-content .sub-04 {
      display: block;
      margin-top: 40px; } }
  .delivery .sub-content .sub-04 .sub-04-right {
    width: 35%;
    max-width: 350px; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-04 .sub-04-right {
        width: 100%;
        max-width: 100%; } }
  .delivery .sub-content .sub-04 .sub-04-left {
    width: 65%;
    max-width: 600px; }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-04 .sub-04-left {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 767px) {
      .delivery .sub-content .sub-04 .sub-04-left .img-sp {
        margin-top: 35px; } }
    .delivery .sub-content .sub-04 .sub-04-left .text {
      margin: 40px 0 0; }
      @media only screen and (max-width: 767px) {
        .delivery .sub-content .sub-04 .sub-04-left .text {
          margin: 23px 0 0; } }

body.faq section.intro {
  padding: 100px 0 130px; }
  @media only screen and (max-width: 767px) {
    body.faq section.intro {
      padding: 55px 0 80px; } }
  body.faq section.intro .faq-list li {
    background-color: #e20c17;
    border: 1px solid #e20c17;
    color: white;
    margin-bottom: 20px;
    position: relative;
    transition: all .3s;
    height: 60px;
    width: calc((100% - 40px)/3); }
    @media only screen and (max-width: 767px) {
      body.faq section.intro .faq-list li {
        margin-bottom: 10px;
        height: 45px;
        width: 100%; } }
    body.faq section.intro .faq-list li a {
      height: 100%;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: center;
      justify-content: center; }
    body.faq section.intro .faq-list li img {
      margin: 0 auto;
      pointer-events: none;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 10px; }
      @media only screen and (max-width: 767px) {
        body.faq section.intro .faq-list li img {
          width: 7px; } }
    @media only screen and (min-width: 768px) {
      body.faq section.intro .faq-list li:hover {
        background-color: white;
        color: #e20c17; }
        body.faq section.intro .faq-list li:hover .on {
          display: block; }
        body.faq section.intro .faq-list li:hover .off {
          display: none; } }

body.faq section.content {
  padding-bottom: 180px; }
  @media only screen and (max-width: 767px) {
    body.faq section.content {
      padding-bottom: 110px; } }
  body.faq section.content ul.faq-question-list {
    border-radius: 10px;
    margin-top: 63px;
    margin-bottom: 150px; }
    @media only screen and (max-width: 767px) {
      body.faq section.content ul.faq-question-list {
        margin: 32px auto 85px; } }
    body.faq section.content ul.faq-question-list:last-child {
      margin-bottom: 0; }
    body.faq section.content ul.faq-question-list li.question {
      background-color: #f1f1f1;
      margin-bottom: 20px;
      padding: 27px 50px 30px;
      position: relative;
      text-align: left; }
      @media only screen and (max-width: 767px) {
        body.faq section.content ul.faq-question-list li.question {
          margin-bottom: 20px;
          padding: 16px 20px 20px; } }
      body.faq section.content ul.faq-question-list li.question:last-child {
        margin-bottom: 0; }
      body.faq section.content ul.faq-question-list li.question .question-trigger {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        font-weight: bold;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: relative; }
        @media only screen and (min-width: 768px) {
          body.faq section.content ul.faq-question-list li.question .question-trigger {
            padding: 0 30px; } }
        @media only screen and (max-width: 767px) {
          body.faq section.content ul.faq-question-list li.question .question-trigger {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.733;
            padding: 0 30px; } }
        body.faq section.content ul.faq-question-list li.question .question-trigger:before {
          background-image: url("../images/faq/q.png");
          background-size: 60px;
          content: "";
          position: absolute;
          top: -27px;
          left: -50px;
          height: 60px;
          width: 60px; }
          @media only screen and (max-width: 767px) {
            body.faq section.content ul.faq-question-list li.question .question-trigger:before {
              background-size: 40px;
              top: -16px;
              left: -20px;
              height: 40px;
              width: 40px; } }
        body.faq section.content ul.faq-question-list li.question .question-trigger .effect {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%); }
          body.faq section.content ul.faq-question-list li.question .question-trigger .effect:before, body.faq section.content ul.faq-question-list li.question .question-trigger .effect:after {
            background-color: #181a1b;
            content: "";
            display: block;
            position: absolute;
            top: 0;
            right: -10px;
            transition: all .3s;
            height: 2px;
            width: 20px; }
            @media only screen and (max-width: 767px) {
              body.faq section.content ul.faq-question-list li.question .question-trigger .effect:before, body.faq section.content ul.faq-question-list li.question .question-trigger .effect:after {
                right: -5px;
                height: 2px;
                width: 15px; } }
          body.faq section.content ul.faq-question-list li.question .question-trigger .effect:after {
            transform: rotate(90deg); }
        body.faq section.content ul.faq-question-list li.question .question-trigger.active .effect:after {
          transform: rotate(0); }
      body.faq section.content ul.faq-question-list li.question .answer {
        background-color: white;
        display: none;
        margin-top: 30px;
        padding: 30px 38px 26px 68px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.faq section.content ul.faq-question-list li.question .answer {
            margin-top: 19px;
            padding: 15px 23px 18px 40px; } }
        body.faq section.content ul.faq-question-list li.question .answer .answer-text {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.05em;
          line-height: 2.133;
          position: relative;
          text-align: justify;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          @media only screen and (max-width: 767px) {
            body.faq section.content ul.faq-question-list li.question .answer .answer-text {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.7333;
              position: relative;
              padding-right: 0; } }
          body.faq section.content ul.faq-question-list li.question .answer .answer-text:before {
            color: #e20c17;
            content: "A";
            font-family: "Montserrat", sans-serif;
            font-size: 28px;
            font-size: 2.8rem;
            font-weight: 600;
            margin: 0 auto;
            position: absolute;
            left: -42px;
            top: -14px; }
            @media only screen and (max-width: 767px) {
              body.faq section.content ul.faq-question-list li.question .answer .answer-text:before {
                font-size: 18px;
                font-size: 1.8rem;
                left: -25px;
                top: -3px; } }
          body.faq section.content ul.faq-question-list li.question .answer .answer-text a {
            color: #e20c17;
            border-bottom: 1px solid #e20c17;
            font-weight: bold;
            padding-bottom: 1px; }
            @media only screen and (min-width: 768px) {
              body.faq section.content ul.faq-question-list li.question .answer .answer-text a {
                cursor: pointer;
                -webkit-transition: 0.3s;
                -moz-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s; }
                body.faq section.content ul.faq-question-list li.question .answer .answer-text a:hover {
                  opacity: .7; } }
            @media only screen and (max-width: 767px) {
              body.faq section.content ul.faq-question-list li.question .answer .answer-text a {
                padding-bottom: 2px; } }

body.faq .anchor {
  position: relative;
  top: -30px; }
  @media only screen and (max-width: 767px) {
    body.faq .anchor {
      top: -90px; } }

.flow .flow-content {
  padding: 95px 0 178px; }
  @media only screen and (max-width: 767px) {
    .flow .flow-content {
      padding: 45px 0 115px; } }

.flow .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.flow .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.flow p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .flow p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

@media only screen and (max-width: 767px) {
  .flow .ttl-05 .en {
    margin-bottom: 10px; } }

.flow .btn-01 {
  width: 320px;
  height: 60px; }
  @media only screen and (max-width: 767px) {
    .flow .btn-01 {
      height: 44px;
      width: 80%;
      margin: 0 auto; } }
  .flow .btn-01 .txt {
    font-size: 14px;
    margin-left: -30px; }
    @media only screen and (max-width: 767px) {
      .flow .btn-01 .txt {
        margin-left: -25px; } }
  @media only screen and (max-width: 767px) {
    .flow .btn-01 .txt02 {
      text-align: center;
      line-height: 15px; } }
  .flow .btn-01 img {
    right: 20px;
    left: unset; }
    @media all and (-ms-high-contrast: none) {
      .flow .btn-01 img {
        left: none !important; } }

@media only screen and (max-width: 767px) {
  .flow .content01 .big-img {
    padding: 0; } }

.flow .content01 p {
  letter-spacing: 0.5px; }

.flow .content01 .ttl-06 {
  margin: 60px 0; }
  @media only screen and (max-width: 767px) {
    .flow .content01 .ttl-06 {
      margin: 50px 0 40px;
      line-height: 33px; } }

.flow .content02 {
  margin-top: 85px; }
  @media only screen and (max-width: 767px) {
    .flow .content02 {
      margin-top: 75px;
      padding: 0 25px; } }
  .flow .content02 .ttl-05 {
    margin-bottom: 65px; }
    @media only screen and (max-width: 767px) {
      .flow .content02 .ttl-05 {
        margin-bottom: 45px; } }
  .flow .content02 .content02-bg {
    width: 100%;
    background-image: url("../images/flow/bg.png");
    background-size: cover;
    background-position: center;
    padding: 70px 0 10px 70px; }
    @media only screen and (max-width: 767px) {
      .flow .content02 .content02-bg {
        background-image: url("../images/led/bg03-sp.jpg");
        padding: 25px 0 5px; } }
    .flow .content02 .content02-bg .content02-bgdetail {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .flow .content02 .content02-bg .content02-bgdetail {
          display: block; } }
      .flow .content02 .content02-bg .content02-bgdetail .flow {
        background: #fff;
        max-width: 460px;
        padding: 40px 50px 35px;
        margin-bottom: 60px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .flow {
            max-width: 100%;
            padding: 23px 25px 25px;
            margin-bottom: 20px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow .num-box {
          background-image: url("../images/flow/num-bg.png");
          background-size: contain;
          background-repeat: no-repeat;
          width: 80px;
          height: 80px;
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          padding: 17px 0 0 14px; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow .num-box {
              padding: 7px 0 0 6px;
              width: 45px;
              height: 45px; } }
          .flow .content02 .content02-bg .content02-bgdetail .flow .num-box .en {
            font-size: 16px;
            font-size: 1.6rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 7px;
            display: block; }
            @media only screen and (max-width: 767px) {
              .flow .content02 .content02-bg .content02-bgdetail .flow .num-box .en {
                font-size: 10px;
                font-size: 1rem;
                margin-bottom: 3px; } }
          .flow .content02 .content02-bg .content02-bgdetail .flow .num-box .num {
            font-size: 24px;
            font-size: 2.4rem;
            font-weight: bold;
            color: #fff;
            display: block; }
            @media only screen and (max-width: 767px) {
              .flow .content02 .content02-bg .content02-bgdetail .flow .num-box .num {
                font-size: 16px;
                font-size: 1.6rem;
                letter-spacing: 0; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow h4 {
          font-size: 22px;
          font-size: 2.2rem;
          font-weight: bold;
          margin-bottom: 28px;
          margin-left: 50px;
          letter-spacing: 1px; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow h4 {
              font-size: 18px;
              font-size: 1.8rem;
              margin-left: 25px;
              margin-bottom: 18px; } }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .flow .h4-spec-sp {
            line-height: 25px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow p {
          text-align: justify;
          letter-spacing: 0; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow p {
              letter-spacing: 1.3px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow .imgflow {
          margin: 35px 0 20px; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow .imgflow {
              margin: 25px 0 20px; } }
      .flow .content02 .content02-bg .content02-bgdetail .flow01 {
        padding: 40px 50px; }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .flow01 {
            padding: 23px 25px 30px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow01 .two-button {
          margin-top: 22px; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow01 .two-button {
              margin-top: 18px; } }
      @media only screen and (min-width: 768px) {
        .flow .content02 .content02-bg .content02-bgdetail .flow01,
        .flow .content02 .content02-bg .content02-bgdetail .flow03,
        .flow .content02 .content02-bg .content02-bgdetail .flow05,
        .flow .content02 .content02-bg .content02-bgdetail .flow07 {
          position: relative; }
          .flow .content02 .content02-bg .content02-bgdetail .flow01::after,
          .flow .content02 .content02-bg .content02-bgdetail .flow03::after,
          .flow .content02 .content02-bg .content02-bgdetail .flow05::after,
          .flow .content02 .content02-bg .content02-bgdetail .flow07::after {
            content: "";
            position: absolute;
            background-image: url("../images/flow/left.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 45px;
            height: 9px;
            right: -46px;
            top: 50%;
            display: block; } }
      @media only screen and (min-width: 768px) {
        .flow .content02 .content02-bg .content02-bgdetail .flow02,
        .flow .content02 .content02-bg .content02-bgdetail .flow04,
        .flow .content02 .content02-bg .content02-bgdetail .flow06 {
          position: relative; }
          .flow .content02 .content02-bg .content02-bgdetail .flow02::after,
          .flow .content02 .content02-bg .content02-bgdetail .flow04::after,
          .flow .content02 .content02-bg .content02-bgdetail .flow06::after {
            content: "";
            position: absolute;
            background-image: url("../images/flow/right.png");
            background-repeat: no-repeat;
            background-size: cover;
            width: 45px;
            height: 9px;
            left: -43px;
            top: 50%;
            display: block; } }
      @media only screen and (max-width: 767px) {
        .flow .content02 .content02-bg .content02-bgdetail .flow02 {
          padding: 20px 25px 25px; } }
      .flow .content02 .content02-bg .content02-bgdetail .flow04 {
        padding: 35px 50px 40px; }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .flow04 {
            padding: 23px 25px 30px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow04 .h4-spec {
          line-height: 30px; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow04 .h4-spec {
              line-height: 26px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow04 .imgflow {
          margin: 25px 0 20px; }
        .flow .content02 .content02-bg .content02-bgdetail .flow04 .btn-01 {
          width: 90%;
          margin: 20px auto 0; }
          @media only screen and (max-width: 767px) {
            .flow .content02 .content02-bg .content02-bgdetail .flow04 .btn-01 {
              width: 100%; } }
      .flow .content02 .content02-bg .content02-bgdetail .flow07 {
        padding: 40px 50px; }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .flow07 {
            padding: 23px 25px 30px; } }
        .flow .content02 .content02-bg .content02-bgdetail .flow07 .btn-01 {
          width: 90%;
          margin: 20px auto 0; }
      .flow .content02 .content02-bg .content02-bgdetail .bgdetail-right {
        margin-top: 240px; }
        @media only screen and (max-width: 767px) {
          .flow .content02 .content02-bg .content02-bgdetail .bgdetail-right {
            margin-top: 0; } }
        @media only screen and (min-width: 768px) {
          .flow .content02 .content02-bg .content02-bgdetail .bgdetail-right {
            position: relative; }
            .flow .content02 .content02-bg .content02-bgdetail .bgdetail-right::before {
              content: "";
              position: absolute;
              width: 1px;
              height: 1760px;
              background-color: #e20c17;
              left: -39px; } }

.flow .flow-content .tel-btn {
  background-color: #f1f1f1;
  margin-bottom: 10px;
  height: 90px;
  width: 100%;
  padding: 20px 0 0;
  display: block; }
  @media only screen and (max-width: 767px) {
    .flow .flow-content .tel-btn {
      padding: 18px 0 0;
      margin-bottom: 9px;
      height: 75px;
      flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    .flow .flow-content .tel-btn {
      cursor: pointer;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s; }
      .flow .flow-content .tel-btn:hover {
        opacity: .7; } }
  .flow .flow-content .tel-btn .txt {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.025em;
    display: block;
    text-align: center;
    margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .flow .flow-content .tel-btn .txt {
        font-size: 20px;
        font-size: 2rem; } }
  .flow .flow-content .tel-btn .sml {
    color: #b6b6b6;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.428;
    letter-spacing: 0.025em;
    margin-left: 23px;
    text-align: center;
    display: block; }
    @media only screen and (max-width: 767px) {
      .flow .flow-content .tel-btn .sml {
        display: inline-block;
        margin-top: -4px;
        font-size: 14px;
        font-size: 1.4rem; } }
    .flow .flow-content .tel-btn .sml .numb {
      font-family: "Work Sans", sans-serif; }

.flow .flow-content .mail-bnt {
  background-color: #181a1b;
  background-image: url("../images/common/arw_01.png");
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: right 25px center;
  transition: all 0.3s;
  height: 90px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .flow .flow-content .mail-bnt {
      background-image: none;
      height: 75px; } }
  @media only screen and (max-width: 767px) {
    .flow .flow-content .mail-bnt {
      background-image: none; } }
  .flow .flow-content .mail-bnt .txt {
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-right: 50px; }
    @media all and (-ms-high-contrast: none) {
      .flow .flow-content .mail-bnt .txt {
        margin-top: 7px; } }
    @media only screen and (max-width: 767px) {
      .flow .flow-content .mail-bnt .txt {
        font-size: 16px;
        font-size: 1.6rem;
        margin-right: 20px;
        margin-top: 27px; } }
  .flow .flow-content .mail-bnt img {
    margin-right: 9px;
    width: 28px; }
    @media only screen and (max-width: 767px) {
      .flow .flow-content .mail-bnt img {
        width: 20px;
        position: relative;
        top: -13px;
        left: 47%; } }
  @media only screen and (min-width: 768px) {
    .flow .flow-content .mail-bnt:hover {
      background-color: red; } }

@media all and (-ms-high-contrast: none) {
  body.index main {
    overflow: hidden; } }

body.index main section.mv {
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.index main section.mv {
      margin-top: 60px; } }
  body.index main section.mv.is-ready .slide[data-slick-index="0"]:before, body.index main section.mv.is-ready .slide[data-slick-index="0"]:after {
    width: 0; }
  body.index main section.mv .mv-ttl {
    color: white;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 4; }
    @media only screen and (max-width: 767px) {
      body.index main section.mv .mv-ttl {
        text-align: left;
        left: 40px; } }
    body.index main section.mv .mv-ttl .big {
      display: inline-block;
      font-size: 50px;
      font-size: 5rem;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.84);
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        body.index main section.mv .mv-ttl .big {
          font-size: 30px;
          font-size: 3rem;
          line-height: 1.5;
          margin-bottom: 22px; } }
    body.index main section.mv .mv-ttl .sml {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.15em;
      text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.84); }
      @media only screen and (max-width: 767px) {
        body.index main section.mv .mv-ttl .sml {
          font-size: 14px;
          font-size: 1.4rem; } }
  body.index main section.mv ul#slider-01 li {
    position: relative;
    height: calc(100vh - 90px); }
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
      body.index main section.mv ul#slider-01 li {
        height: calc(100vh - 130px); } }
    @media only screen and (max-width: 767px) {
      body.index main section.mv ul#slider-01 li {
        height: calc(100vh - 60px); } }
    body.index main section.mv ul#slider-01 li .slide__bg {
      background-size: cover;
      background-position: center;
      margin: 0 auto;
      position: absolute;
      left: 0;
      right: 0;
      top: 0%;
      height: 100%; }
    body.index main section.mv ul#slider-01 li:nth-child(1) .slide__bg {
      background-image: url("../images/top/mv_01.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index main section.mv ul#slider-01 li:nth-child(1) .slide__bg {
          background-image: url("../images/top/mv_01_sp.jpg"); } }
    body.index main section.mv ul#slider-01 li:nth-child(2) .slide__bg {
      background-image: url("../images/top/mv_02.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index main section.mv ul#slider-01 li:nth-child(2) .slide__bg {
          background-image: url("../images/top/mv_02_sp.jpg"); } }
    body.index main section.mv ul#slider-01 li:nth-child(3) .slide__bg {
      background-image: url("../images/top/mv_03.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index main section.mv ul#slider-01 li:nth-child(3) .slide__bg {
          background-image: url("../images/top/mv_03_sp.jpg"); } }
    body.index main section.mv ul#slider-01 li:nth-child(4) .slide__bg {
      background-image: url("../images/top/mv_04.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index main section.mv ul#slider-01 li:nth-child(4) .slide__bg {
          background-image: url("../images/top/mv_04_sp.jpg"); } }
  body.index main section.mv ul.slider-nav {
    margin: 0 auto;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 190px;
    z-index: 4; }
    body.index main section.mv ul.slider-nav .slick-track {
      transform: none !important; }
    body.index main section.mv ul.slider-nav li {
      background-color: blue;
      border-radius: 50%;
      opacity: 1 !important;
      position: static !important;
      height: 40px !important;
      width: 40px !important; }
  body.index main section.mv .slick-dotted.slick-slider {
    margin-bottom: 0; }
  body.index main section.mv .dotsarea {
    margin: 0 auto;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 4; }

body.index p.reg-txt {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.13333; }
  @media only screen and (max-width: 767px) {
    body.index p.reg-txt {
      line-height: 1.7333;
      text-align: justify; } }

body.index .texture-bg {
  background-image: url("../images/common/bg_01.jpg");
  background-size: 1280px 860px; }
  @media only screen and (max-width: 767px) {
    body.index .texture-bg {
      background-size: 3px;
      background-repeat: repeat;
      background-image: url("../images/common/bg_01_sp.jpg"); } }

@media only screen and (min-width: 768px) {
  body.index .section-01-imager {
    background-image: url("../images/top/img-01.jpg");
    background-position: center;
    background-size: cover;
    height: 0;
    padding-bottom: 39%; } }

body.index section.section-01 {
  margin: 0 auto;
  padding: 77px 0 190px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.index section.section-01 {
      padding: 48px 0 100px; } }
  body.index section.section-01 .logo {
    margin: 30px 0 53px;
    width: 460px; }
    @media only screen and (max-width: 767px) {
      body.index section.section-01 .logo {
        margin: 20px 0 44px;
        width: 260px; } }
  body.index section.section-01 p.reg-txt {
    margin-bottom: 30px; }
  body.index section.section-01 .inner .det {
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0%;
    width: 62.5%;
    z-index: -1; }
    @media only screen and (max-width: 767px) {
      body.index section.section-01 .inner .det {
        width: 100%; } }
  body.index section.section-01 .inner .btn {
    z-index: 10; }

body.index .special-bg {
  position: relative; }
  body.index .special-bg .bg1 {
    margin: 0 auto;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -42.5%;
    width: 100%; }
    @media only screen and (max-width: 2430px) {
      body.index .special-bg .bg1 {
        top: -38.5%; } }
    @media only screen and (max-width: 2120px) {
      body.index .special-bg .bg1 {
        top: -35%; } }
    @media only screen and (max-width: 1810px) {
      body.index .special-bg .bg1 {
        top: -29.5%; } }
    @media only screen and (max-width: 1500px) {
      body.index .special-bg .bg1 {
        top: -25.5%; } }
    @media only screen and (max-width: 1500px) {
      body.index .special-bg .bg1 {
        top: -25.5%; } }
    @media only screen and (max-width: 1100px) {
      body.index .special-bg .bg1 {
        top: -270px; } }
    @media only screen and (max-width: 969px) {
      body.index .special-bg .bg1 {
        top: -17.5%; } }
    @media only screen and (max-width: 767px) {
      body.index .special-bg .bg1 {
        top: -131px; } }
  body.index .special-bg .bg2 {
    margin: 0 auto;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -123px;
    width: 100%; }
    @media only screen and (max-width: 1100px) {
      body.index .special-bg .bg2 {
        bottom: -110px; } }
  body.index .special-bg .bg-mid {
    background-color: #c32029;
    margin: 0 auto;
    pointer-events: none;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0%;
    height: 1212px; }
  body.index .special-bg .cls-1 {
    background: url("../images/common/bg_01.jpg"); }
    @media only screen and (max-width: 767px) {
      body.index .special-bg .cls-1 {
        background-size: 3px;
        background-repeat: repeat;
        background-image: url("../images/common/bg_01_sp.jpg"); } }

body.index .feature-box {
  background-color: white;
  position: relative;
  height: 570px;
  width: calc(50% + 500px);
  -webkit-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 1100px) {
    body.index .feature-box {
      width: calc(100% - 70px); } }
  @media only screen and (max-width: 767px) {
    body.index .feature-box {
      padding-top: 40px;
      padding-bottom: 50px;
      height: auto;
      width: calc(100% - 25px); } }
  body.index .feature-box:before {
    border: 1px solid #e20c17;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 20px);
    width: calc(100% - 10px); }
    @media only screen and (max-width: 767px) {
      body.index .feature-box:before {
        height: calc(100% - 10px);
        width: calc(100% - 5px); } }
  body.index .feature-box figure {
    max-width: 560px;
    width: 49.12%; }
    body.index .feature-box figure .slick-slide {
      text-align: center; }
      body.index .feature-box figure .slick-slide img {
        margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.index .feature-box figure {
        max-width: none;
        width: 100%; } }
  body.index .feature-box .txt-box .reg-txt {
    margin: 49px 0 38px;
    max-width: 440px; }
    @media only screen and (max-width: 767px) {
      body.index .feature-box .txt-box .reg-txt {
        max-width: none;
        margin: 25px 0 25px; } }

body.index .section-02 {
  margin-bottom: 70px; }
  @media only screen and (max-width: 767px) {
    body.index .section-02 {
      margin-bottom: 25px; } }
  body.index .section-02 .feature-box {
    margin-left: calc(50% - 500px);
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
    @media only screen and (max-width: 1100px) {
      body.index .section-02 .feature-box {
        margin-left: 70px; } }
    @media only screen and (max-width: 767px) {
      body.index .section-02 .feature-box {
        margin-left: 25px;
        padding-left: 35px;
        padding-right: 25px; } }
    body.index .section-02 .feature-box:before {
      border-right: none;
      left: 10px; }
      @media only screen and (max-width: 767px) {
        body.index .section-02 .feature-box:before {
          left: 5px; } }
    body.index .section-02 .feature-box figure {
      text-align: center; }
      body.index .section-02 .feature-box figure img {
        max-height: 437px; }
        @media only screen and (max-width: 767px) {
          body.index .section-02 .feature-box figure img {
            max-height: 208px; } }

body.index .section-03 .feature-box {
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }
  @media only screen and (max-width: 767px) {
    body.index .section-03 .feature-box {
      padding-left: 25px;
      padding-right: 35px; } }
  body.index .section-03 .feature-box:before {
    border-left: none;
    right: 10px; }
    @media only screen and (max-width: 767px) {
      body.index .section-03 .feature-box:before {
        right: 5px; } }
  body.index .section-03 .feature-box figure {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.index .section-03 .feature-box figure {
        order: 1; } }
    body.index .section-03 .feature-box figure img {
      max-height: 432px; }
      @media only screen and (max-width: 767px) {
        body.index .section-03 .feature-box figure img {
          max-width: 210px; } }
  @media only screen and (max-width: 767px) {
    body.index .section-03 .feature-box .txt-box {
      order: 2; } }

body.index .section-04 {
  position: relative; }
  body.index .section-04 .inner {
    max-width: 1140px;
    padding: 160px 0 70px;
    -webkit-align-items: center;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.index .section-04 .inner {
        padding: 100px 0 50px;
        position: relative; } }
    body.index .section-04 .inner .det {
      margin: 0 auto;
      position: absolute;
      left: 0;
      top: 0%;
      width: 62.5%;
      z-index: -1; }
      @media only screen and (max-width: 767px) {
        body.index .section-04 .inner .det {
          width: 100%; } }
    body.index .section-04 .inner .txt-box {
      position: relative;
      width: calc( 50% - 20px); }
      @media only screen and (max-width: 767px) {
        body.index .section-04 .inner .txt-box {
          position: static;
          width: 100%; } }
      body.index .section-04 .inner .txt-box .reg-txt {
        margin-top: 47px;
        max-width: 400px; }
        @media only screen and (max-width: 767px) {
          body.index .section-04 .inner .txt-box .reg-txt {
            margin-top: 35px;
            position: relative;
            z-index: 2; } }
      body.index .section-04 .inner .txt-box .txt {
        margin: 0 auto;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 45px; }
        @media only screen and (max-width: 767px) {
          body.index .section-04 .inner .txt-box .txt {
            top: 90px;
            transform: translateY(0%);
            right: 0;
            width: 24px; } }
    body.index .section-04 .inner .banners {
      width: calc( 50% + 20px); }
      @media only screen and (max-width: 767px) {
        body.index .section-04 .inner .banners {
          margin-top: 35px;
          width: 100%; } }
      body.index .section-04 .inner .banners li {
        background-size: cover;
        position: relative; }
        body.index .section-04 .inner .banners li a {
          color: white;
          display: block;
          height: 0;
          padding-bottom: 34%; }
          @media only screen and (max-width: 767px) {
            body.index .section-04 .inner .banners li a {
              padding-bottom: 0;
              height: 150px; } }
          body.index .section-04 .inner .banners li a .en {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.1em;
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            margin: 0 auto;
            position: absolute;
            left: 20px;
            top: 20px;
            z-index: 2; }
            @media only screen and (max-width: 767px) {
              body.index .section-04 .inner .banners li a .en {
                font-size: 14px;
                font-size: 1.4rem;
                left: 15px;
                top: 15px; } }
          body.index .section-04 .inner .banners li a .ja {
            font-size: 24px;
            font-size: 2.4rem;
            line-height: 1.5;
            letter-spacing: 0.1em;
            font-weight: bold;
            margin: 0 auto;
            position: absolute;
            left: 42px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2; }
            @media only screen and (max-width: 767px) {
              body.index .section-04 .inner .banners li a .ja {
                font-size: 17px;
                font-size: 1.7rem;
                left: 35px; } }
            body.index .section-04 .inner .banners li a .ja:before {
              background-color: #fff;
              content: "";
              margin: 0 auto;
              position: absolute;
              left: -40px;
              top: 17px;
              height: 1px;
              width: 30px; }
              @media only screen and (max-width: 767px) {
                body.index .section-04 .inner .banners li a .ja:before {
                  top: 12px; } }
          body.index .section-04 .inner .banners li a img {
            margin: 0 auto;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            z-index: 2; }
            @media only screen and (max-width: 767px) {
              body.index .section-04 .inner .banners li a img {
                right: 15px;
                width: 35px; } }
        body.index .section-04 .inner .banners li:nth-child(1) {
          background-image: url("../images/top/img-04.jpg"); }
        body.index .section-04 .inner .banners li:nth-child(2) {
          background-image: url("../images/top/img-05.jpg");
          margin: 10px 0; }
        body.index .section-04 .inner .banners li:nth-child(3) {
          background-image: url("../images/top/img-06.jpg"); }
        body.index .section-04 .inner .banners li:after {
          pointer-events: none;
          position: absolute;
          top: 0;
          left: 0;
          content: "";
          width: 0;
          height: 100%;
          background: #d0121b;
          background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
          background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
          background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
          opacity: .4;
          transition: all 0.3s ease; }
        @media only screen and (min-width: 768px) {
          body.index .section-04 .inner .banners li:hover:after {
            width: 100%; } }

body.index .section-05 {
  background-image: url("../images/top/colorbg.jpg");
  background-size: cover;
  padding-top: 120px; }
  @media only screen and (min-width: 768px) {
    body.index .section-05 {
      height: 650px; } }
  @media only screen and (max-width: 767px) {
    body.index .section-05 {
      background-image: url("../images/top/colorbg_sp.jpg");
      background-size: 100%;
      background-repeat: no-repeat;
      padding: 60px 25px 0; } }
  body.index .section-05 .inner {
    background-color: white;
    margin: 0 0 -90px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 70px;
    padding-left: calc(50% - 570px);
    width: calc(50% + 570px);
    max-width: none; }
    @media only screen and (min-width: 768px) {
      body.index .section-05 .inner {
        -webkit-align-items: center;
        align-items: center; } }
    @media only screen and (max-width: 1200px) {
      body.index .section-05 .inner {
        padding-right: 30px;
        padding-left: 30px;
        width: calc(100% - 50px); } }
    @media only screen and (max-width: 767px) {
      body.index .section-05 .inner {
        padding: 50px 14px;
        margin-bottom: -476px;
        width: 100%; }
        body.index .section-05 .inner .btn {
          margin: 0 auto; } }
    body.index .section-05 .inner .txt-box {
      max-width: 384px; }

@media only screen and (min-width: 768px) and (max-width: 1190px) {
  body.index .section-05 .inner .txt-box {
    width: calc(100% - 638px); } }
      @media only screen and (max-width: 767px) {
        body.index .section-05 .inner .txt-box {
          max-width: none; } }
      @media only screen and (min-width: 768px) {
        body.index .section-05 .inner .txt-box .ttl {
          flex-wrap: nowrap; } }
      body.index .section-05 .inner .txt-box .ttl img {
        display: inline-block;
        margin-right: 16px;
        width: 70px; }

@media only screen and (min-width: 768px) and (max-width: 1130px) {
  body.index .section-05 .inner .txt-box .ttl img {
    margin-right: 10px;
    width: 50px; } }
        @media only screen and (max-width: 767px) {
          body.index .section-05 .inner .txt-box .ttl img {
            margin-right: 8px;
            width: 50px; } }
      body.index .section-05 .inner .txt-box .ttl .txt {
        display: inline-block;
        font-weight: bold; }
        body.index .section-05 .inner .txt-box .ttl .txt .sml {
          display: inline-block;
          font-size: 24px;
          font-size: 2.4rem;
          letter-spacing: 0.1em;
          margin-bottom: 10px; }

@media only screen and (min-width: 768px) and (max-width: 1130px) {
  body.index .section-05 .inner .txt-box .ttl .txt .sml {
    font-size: 1.8vw; } }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .txt-box .ttl .txt .sml {
              font-size: 18px;
              font-size: 1.8rem;
              margin-bottom: 7px; } }
        body.index .section-05 .inner .txt-box .ttl .txt .big {
          font-size: 36px;
          font-size: 3.6rem;
          letter-spacing: 0.1em; }

@media only screen and (min-width: 768px) and (max-width: 1130px) {
  body.index .section-05 .inner .txt-box .ttl .txt .big {
    font-size: 2.4vw; } }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .txt-box .ttl .txt .big {
              font-size: 24px;
              font-size: 2.4rem; } }
        body.index .section-05 .inner .txt-box .ttl .txt .red {
          color: #e20c17;
          font-size: 48px;
          font-size: 4.8rem;
          font-family: "Montserrat", sans-serif;
          letter-spacing: 0.1em; }

@media only screen and (min-width: 768px) and (max-width: 1130px) {
  body.index .section-05 .inner .txt-box .ttl .txt .red {
    font-size: 3vw; } }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .txt-box .ttl .txt .red {
              font-size: 35px;
              font-size: 3.5rem; } }
      body.index .section-05 .inner .txt-box .reg-txt {
        margin: 48px 0 40px; }
        @media only screen and (max-width: 767px) {
          body.index .section-05 .inner .txt-box .reg-txt {
            margin: 40px 0 20px;
            padding: 0 10px; } }
    body.index .section-05 .inner .banners {
      max-width: 608px;
      justify-content: center; }
      @media only screen and (max-width: 767px) {
        body.index .section-05 .inner .banners {
          max-width: none; } }
      body.index .section-05 .inner .banners li {
        background-color: #f1f1f1;
        box-sizing: border-box;
        border: 1px solid #dfdfdf;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 10px;
        margin-right: 9px;
        position: relative;
        height: 160px;
        width: 194px; }
        @media only screen and (min-width: 768px) {
          body.index .section-05 .inner .banners li:nth-child(1) {
            margin-left: 10px; }
          body.index .section-05 .inner .banners li:nth-child(5), body.index .section-05 .inner .banners li:nth-child(7) {
            margin-right: 0; } }
        @media only screen and (max-width: 767px) {
          body.index .section-05 .inner .banners li {
            margin-right: 0;
            height: auto;
            padding: 20px 14px;
            width: 100%;
            flex-direction: row;
            -webkit-justify-content: flex-start;
            justify-content: flex-start; }
            body.index .section-05 .inner .banners li:last-child {
              margin-bottom: 35px; } }
        body.index .section-05 .inner .banners li .nu {
          color: #e20c17;
          display: inline-block;
          font-family: "Montserrat", sans-serif;
          font-size: 20px;
          font-size: 2rem;
          letter-spacing: 0.025em;
          font-weight: 600;
          margin-bottom: 12px;
          position: relative; }
          body.index .section-05 .inner .banners li .nu:before {
            background-color: #e20c17;
            content: "";
            margin: 0 auto;
            position: absolute;
            left: 0;
            right: 0;
            bottom: -3px;
            height: 2px;
            width: 100%; }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .banners li .nu {
              margin-top: -7px;
              margin-bottom: 0; } }
        body.index .section-05 .inner .banners li .ja {
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: bold;
          letter-spacing: 0.05em;
          line-height: 1.625;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .banners li .ja {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.6;
              padding-left: 14px;
              text-align: left; } }
        body.index .section-05 .inner .banners li:before {
          border: 5px solid white;
          box-sizing: border-box;
          content: "";
          margin: 0 auto;
          position: absolute;
          right: 0px;
          top: 0%;
          height: 100%;
          width: 100%; }
        body.index .section-05 .inner .banners li .trace-h {
          background-color: white;
          position: absolute;
          height: 2px;
          width: 19px;
          z-index: 3; }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .banners li .trace-h {
              width: 10px; } }
        body.index .section-05 .inner .banners li .trace-v {
          background-color: white;
          position: absolute;
          height: 19px;
          width: 2px;
          z-index: 3; }
          @media only screen and (max-width: 767px) {
            body.index .section-05 .inner .banners li .trace-v {
              display: none; } }
        body.index .section-05 .inner .banners li .t1 {
          right: 55px;
          top: -1px; }
        body.index .section-05 .inner .banners li .t2 {
          right: 46px;
          bottom: -1px; }
        body.index .section-05 .inner .banners li .t3 {
          left: -1px;
          top: 8px; }
        body.index .section-05 .inner .banners li .t4 {
          right: -1px;
          bottom: 73px; }
        body.index .section-05 .inner .banners li .t5 {
          left: -1px;
          bottom: -1px;
          height: 5px;
          width: 5px; }

body.index .section-06 {
  padding: 208px 0 70px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.index .section-06 {
      padding: 537px 0 24px; } }
  body.index .section-06 .txt-det {
    margin: 0 auto;
    position: absolute;
    right: calc(50% - 570px);
    top: 284px;
    width: 130px;
    z-index: 3; }
    @media only screen and (max-width: 1150px) {
      body.index .section-06 .txt-det {
        right: 40px; } }
    @media only screen and (max-width: 767px) {
      body.index .section-06 .txt-det {
        right: 10px;
        top: 21px;
        width: 62px; } }
  body.index .section-06 .imager {
    position: relative;
    height: 698px;
    width: calc(50% - 87px);
    z-index: 6; }
    @media only screen and (min-width: 768px) {
      body.index .section-06 .imager {
        background-image: url("../images/top/img-07.jpg");
        background-size: cover;
        background-position: center; } }
    @media only screen and (max-width: 767px) {
      body.index .section-06 .imager {
        height: auto;
        width: 100%; } }
  body.index .section-06 .txt-box {
    background-color: white;
    padding-top: 160px;
    padding-left: 76px;
    position: relative;
    width: calc(50% + 87px); }
    @media only screen and (max-width: 767px) {
      body.index .section-06 .txt-box {
        padding: 45px 25px 50px;
        width: 100%; } }
    body.index .section-06 .txt-box .reg-txt {
      margin: 30px 0 40px;
      max-width: 494px;
      position: relative;
      z-index: 5; }
      @media only screen and (max-width: 767px) {
        body.index .section-06 .txt-box .reg-txt {
          margin: 35px 0 23px;
          max-width: none; } }

body.index .section-08 {
  padding-top: 70px; }
  @media only screen and (max-width: 767px) {
    body.index .section-08 {
      padding-top: 25px; } }
  body.index .section-08 .list .left, body.index .section-08 .list .right {
    width: 50%; }
    body.index .section-08 .list .left a, body.index .section-08 .list .right a {
      background-size: cover;
      display: block;
      position: relative;
      height: 0;
      width: 100%; }
      body.index .section-08 .list .left a .ttl, body.index .section-08 .list .right a .ttl {
        color: white;
        margin: 0 auto;
        position: absolute;
        left: 37px;
        bottom: 33px;
        z-index: 3; }
        @media only screen and (max-width: 767px) {
          body.index .section-08 .list .left a .ttl, body.index .section-08 .list .right a .ttl {
            left: 25px;
            bottom: auto;
            top: 40px; } }
        body.index .section-08 .list .left a .ttl .ja, body.index .section-08 .list .right a .ttl .ja {
          font-size: 14px;
          font-size: 1.4rem;
          font-weight: bold;
          letter-spacing: 0.1em; }
          @media only screen and (max-width: 767px) {
            body.index .section-08 .list .left a .ttl .ja, body.index .section-08 .list .right a .ttl .ja {
              font-size: 14px;
              font-size: 1.4rem; } }
        body.index .section-08 .list .left a .ttl .en, body.index .section-08 .list .right a .ttl .en {
          display: inline-block;
          font-size: 36px;
          font-size: 3.6rem;
          font-weight: 600;
          font-family: "Montserrat", sans-serif;
          letter-spacing: 0.1em;
          font-weight: bold;
          margin-top: 17px; }
          @media only screen and (max-width: 767px) {
            body.index .section-08 .list .left a .ttl .en, body.index .section-08 .list .right a .ttl .en {
              font-size: 30px;
              font-size: 3rem;
              margin-top: 17px; } }
      body.index .section-08 .list .left a .arrw, body.index .section-08 .list .right a .arrw {
        margin: 0 auto;
        position: absolute;
        right: 40px;
        bottom: 30px;
        width: 50px;
        z-index: 3; }
        @media only screen and (max-width: 767px) {
          body.index .section-08 .list .left a .arrw, body.index .section-08 .list .right a .arrw {
            right: auto;
            left: 24px;
            bottom: 30px;
            width: 35px; } }
      body.index .section-08 .list .left a:after, body.index .section-08 .list .right a:after {
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 0;
        height: 100%;
        background: #d0121b;
        background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
        background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
        background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
        opacity: .4;
        transition: all 0.3s ease; }
      @media only screen and (min-width: 768px) {
        body.index .section-08 .list .left a:hover:after, body.index .section-08 .list .right a:hover:after {
          width: 100%; } }
  body.index .section-08 .list .left a:nth-child(1) {
    background-image: url("../images/top/img-08.jpg"); }
    @media only screen and (min-width: 768px) {
      body.index .section-08 .list .left a:nth-child(1) {
        height: 700px; } }
  @media only screen and (min-width: 768px) and (max-width: 1520px) {
    body.index .section-08 .list .left a:nth-child(1) {
      padding-bottom: 93.75%;
      height: 0; } }
    @media only screen and (max-width: 767px) {
      body.index .section-08 .list .left a:nth-child(1) {
        background-image: url("../images/top/img-08_sp.jpg");
        padding-bottom: 213.75%; } }
  body.index .section-08 .list .right a {
    height: 50%; }
    body.index .section-08 .list .right a:nth-child(1) {
      background-image: url("../images/top/img-09.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index .section-08 .list .right a:nth-child(1) {
          background-image: url("../images/top/img-09_sp.jpg"); } }
    body.index .section-08 .list .right a:nth-child(2) {
      background-image: url("../images/top/img-10.jpg"); }
      @media only screen and (max-width: 767px) {
        body.index .section-08 .list .right a:nth-child(2) {
          background-image: url("../images/top/img-10_sp.jpg"); } }

body.index .section-09 {
  background-color: white;
  padding: 75px 0 40px; }
  @media only screen and (max-width: 767px) {
    body.index .section-09 {
      padding: 47px 0 50px; } }
  @media only screen and (max-width: 767px) {
    body.index .section-09 .inner .btn {
      margin: 35px auto 0; } }
  body.index .section-09 .inner .upper {
    -webkit-align-items: flex-end;
    align-items: flex-end; }
    body.index .section-09 .inner .upper .btn {
      top: -12px; }
  body.index .section-09 .inner .list {
    margin-top: 34px; }
    @media only screen and (max-width: 767px) {
      body.index .section-09 .inner .list {
        border-bottom: 1px solid #d7d7d7;
        margin-top: 20px; } }
    body.index .section-09 .inner .list li {
      margin-bottom: 40px;
      width: calc(50% - 25px); }
      @media only screen and (max-width: 767px) {
        body.index .section-09 .inner .list li {
          border-top: 1px solid #d7d7d7;
          margin-bottom: 0;
          width: 100%; } }
      body.index .section-09 .inner .list li a {
        align-items: center; }
        @media only screen and (max-width: 767px) {
          body.index .section-09 .inner .list li a {
            padding: 20px 0; } }
        body.index .section-09 .inner .list li a .date {
          border-top: 1px solid #181a1b;
          border-bottom: 1px solid #181a1b;
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 1.66;
          letter-spacing: 0.025em;
          font-weight: 600;
          font-family: "Montserrat", sans-serif;
          padding: 11px 4px; }
          @media only screen and (max-width: 767px) {
            body.index .section-09 .inner .list li a .date {
              font-size: 13px;
              font-size: 1.3rem;
              padding: 5px 4px; } }
        body.index .section-09 .inner .list li a .imager {
          background-image: url("../images/common/no-img.jpg");
          background-position: center;
          background-size: cover;
          height: 0;
          padding-bottom: 31.5%;
          position: relative;
          width: 42.82%; }
          @media only screen and (max-width: 767px) {
            body.index .section-09 .inner .list li a .imager {
              padding-bottom: 25.5%;
              width: 30.76%; } }
          body.index .section-09 .inner .list li a .imager:before {
            color: white;
            font-size: 18px;
            font-size: 1.8rem;
            letter-spacing: 0.05em;
            font-family: "Montserrat", sans-serif;
            font-style: italic;
            text-align: center;
            content: "View more";
            opacity: 0;
            transition: all .3s;
            margin: 0 auto;
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2; }
          body.index .section-09 .inner .list li a .imager:after {
            pointer-events: none;
            position: absolute;
            top: 0;
            left: 0;
            content: "";
            width: 0;
            height: 100%;
            background: #d0121b;
            background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
            background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
            background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
            opacity: .4;
            transition: all 0.3s ease; }
        body.index .section-09 .inner .list li a .txt-area {
          width: 37.25%; }
          @media only screen and (max-width: 767px) {
            body.index .section-09 .inner .list li a .txt-area {
              width: 47.69%; } }
          body.index .section-09 .inner .list li a .txt-area .category {
            border: 1px solid #e20c17;
            color: #e20c17;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 600;
            font-family: "Montserrat", sans-serif;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-top: -23px;
            margin-bottom: 20px;
            height: 25px;
            width: 120px;
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            justify-content: center; }
            @media only screen and (max-width: 767px) {
              body.index .section-09 .inner .list li a .txt-area .category {
                font-size: 12px;
                font-size: 1.2rem;
                margin-top: -4px;
                margin-bottom: 10px;
                height: 20px;
                width: 90px; } }
          body.index .section-09 .inner .list li a .txt-area .ttl {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.05em;
            font-weight: bold;
            line-height: 1.8666; }
            @media only screen and (max-width: 767px) {
              body.index .section-09 .inner .list li a .txt-area .ttl {
                line-height: 1.6; } }
      @media only screen and (min-width: 768px) {
        body.index .section-09 .inner .list li:hover .imager:before {
          opacity: 1; }
        body.index .section-09 .inner .list li:hover .imager:after {
          width: 100%; } }

body.index .footer .top-text {
  display: block !important; }

.led .led-content {
  padding: 95px 0 180px; }
  @media only screen and (max-width: 767px) {
    .led .led-content {
      padding: 40px 0 110px; } }

.led .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.led .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.led p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .led p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

.led .btn-01 {
  width: 320px;
  height: 60px; }
  @media only screen and (max-width: 767px) {
    .led .btn-01 {
      height: 44px;
      width: 90%;
      margin: 0 auto; } }
  .led .btn-01 .txt {
    font-size: 14px;
    margin-left: -30px; }
    @media only screen and (max-width: 767px) {
      .led .btn-01 .txt {
        margin-left: -25px; } }
  @media only screen and (max-width: 767px) {
    .led .btn-01 .txt02 {
      text-align: center;
      line-height: 15px; } }
  .led .btn-01 img {
    right: 20px;
    left: unset; }
    @media all and (-ms-high-contrast: none) {
      .led .btn-01 img {
        left: none !important; } }

.led .btn-07 {
  background: #fff;
  color: #e20c17;
  border: 1px #e20c17 solid;
  margin: 0 auto;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .led .btn-07 {
      width: 86%; } }
  .led .btn-07:hover {
    background: #e20c17;
    color: #fff; }
    .led .btn-07:hover:before {
      background-image: url("../images/led/out.svg"); }
  .led .btn-07:before {
    content: "";
    background-image: url("../images/led/arrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 10px;
    display: block;
    position: absolute;
    right: 17px; }

@media only screen and (max-width: 767px) {
  .led .ttl-05 .en {
    margin-bottom: 10px; } }

.led .content01 .ttl-05-sp {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.led .content01 .big-img {
  margin: 63px auto 30px; }
  @media only screen and (max-width: 767px) {
    .led .content01 .big-img {
      margin: 43px auto 23px; } }

.led .content01 .introbox {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .led .content01 .introbox {
      display: block; } }
  .led .content01 .introbox .left {
    width: 49%;
    max-width: 480px; }
    @media only screen and (max-width: 767px) {
      .led .content01 .introbox .left {
        width: 100%;
        max-width: 100%; } }
    .led .content01 .introbox .left p {
      letter-spacing: 0; }
      @media only screen and (max-width: 767px) {
        .led .content01 .introbox .left p {
          line-height: 28px; } }
  .led .content01 .introbox .right {
    width: 49%;
    max-width: 460px; }
    @media only screen and (max-width: 767px) {
      .led .content01 .introbox .right {
        width: 100%;
        max-width: 100%;
        margin-top: 20px; } }

.led .content01 .listbox {
  margin-top: 40px; }
  @media only screen and (max-width: 767px) {
    .led .content01 .listbox {
      margin-top: 34px; } }
  .led .content01 .listbox .listbox-up {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .led .content01 .listbox .listbox-up {
        display: block;
        margin-bottom: 10px; } }
    @media only screen and (max-width: 767px) {
      .led .content01 .listbox .listbox-up .spec {
        background-image: url("../images/led/box-bg-sp.png");
        height: 209px; } }
    .led .content01 .listbox .listbox-up li {
      width: 33%;
      height: 304px;
      max-width: 320px;
      background-image: url("../images/led/box-bg.png");
      background-repeat: no-repeat;
      background-size: cover;
      padding: 0 30px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up li {
          background-image: url("../images/led/box-bg-sp01.png");
          width: 100%;
          max-width: 100%;
          height: 159px;
          align-items: center;
          margin-bottom: 10px;
          padding: 18px 25px; } }
      .led .content01 .listbox .listbox-up li h5 {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
        color: #181a1b;
        line-height: 30px;
        text-decoration: underline;
        margin-bottom: 15px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .led .content01 .listbox .listbox-up li h5 {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 20px;
            margin-bottom: 0; } }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up li .boxsp {
          display: flex;
          align-items: center;
          margin-bottom: 12px; } }
      .led .content01 .listbox .listbox-up li .note {
        font-size: 12px;
        font-size: 1.2rem;
        display: flex;
        letter-spacing: 1px;
        line-height: 24px;
        margin-top: 3px; }
        @media only screen and (max-width: 767px) {
          .led .content01 .listbox .listbox-up li .note {
            margin-top: 7px;
            line-height: 22px;
            margin-top: 2px; } }
    .led .content01 .listbox .listbox-up .icn {
      height: 95px;
      padding: 20px 0 0;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn {
          padding: 0;
          height: auto;
          text-align: left; } }
    .led .content01 .listbox .listbox-up .icn01 img {
      width: 46px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn01 img {
          width: 30px;
          margin-right: 15px; } }
    .led .content01 .listbox .listbox-up .icn02 img {
      width: 60px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn02 img {
          width: 37px;
          margin-right: 10px; } }
    .led .content01 .listbox .listbox-up .icn03 img {
      width: 60px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn03 img {
          width: 37px;
          margin-right: 10px; } }
    .led .content01 .listbox .listbox-up .icn04 img {
      width: 80px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn04 img {
          width: 40px;
          margin-right: 10px; } }
    .led .content01 .listbox .listbox-up .icn05 img {
      width: 50px; }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-up .icn05 img {
          width: 36px;
          margin-right: 10px; } }
  .led .content01 .listbox .listbox-down {
    width: 660px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .led .content01 .listbox .listbox-down {
        width: 100%; } }
    .led .content01 .listbox .listbox-down li {
      width: 49%;
      height: 252px;
      background-image: url("../images/led/box-bg-01.png"); }
      @media only screen and (max-width: 767px) {
        .led .content01 .listbox .listbox-down li {
          width: 100%;
          height: 159px;
          background-image: url("../images/led/box-bg-sp01.png"); } }

.led .content02 {
  margin-top: 50px; }
  .led .content02 .content02-redbg {
    width: 100%;
    height: 1800px;
    background-image: url("../images/led/bg01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 185px 0 0; }
    @media screen and (max-width: 1700px) {
      .led .content02 .content02-redbg {
        padding: 175px 0 0; } }
    @media screen and (max-width: 1550px) {
      .led .content02 .content02-redbg {
        padding: 165px 0 0; } }
    @media screen and (max-width: 1450px) {
      .led .content02 .content02-redbg {
        padding: 155px 0 0; } }
    @media screen and (max-width: 1350px) {
      .led .content02 .content02-redbg {
        padding: 145px 0 0; } }
    @media screen and (max-width: 1250px) {
      .led .content02 .content02-redbg {
        padding: 135px 0 0; } }
    @media screen and (max-width: 1150px) {
      .led .content02 .content02-redbg {
        padding: 130px 0 0; } }
    @media only screen and (max-width: 767px) {
      .led .content02 .content02-redbg {
        background-image: url("../images/led/bg01-sp.png");
        padding: 70px 0 0;
        height: 2730px; } }
    .led .content02 .content02-redbg .content02-whitebg {
      background: #fff;
      width: calc(100% - 70px);
      padding: 100px 0; }
      @media only screen and (max-width: 767px) {
        .led .content02 .content02-redbg .content02-whitebg {
          width: calc(100% - 25px);
          padding: 43px 0; } }
      @media only screen and (max-width: 767px) {
        .led .content02 .content02-redbg .content02-whitebg .img-sp {
          margin: 33px 0 0; } }
      .led .content02 .content02-redbg .content02-whitebg .sub-content01 {
        margin-top: 60px; }
        @media only screen and (max-width: 767px) {
          .led .content02 .content02-redbg .content02-whitebg .sub-content01 {
            margin-top: 45px; } }
        .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box {
          display: flex;
          justify-content: space-between;
          margin-top: 50px; }
          @media only screen and (max-width: 767px) {
            .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box {
              display: block;
              margin-top: 30px; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box .left {
            width: 60%;
            max-width: 600px;
            margin-top: -10px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box .left {
                width: 100%;
                max-width: 100%; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box .right {
            width: 40%;
            max-width: 350px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content01 .sub-content01-box .right {
                width: 100%;
                max-width: 100%; } }
      @media only screen and (max-width: 767px) {
        .led .content02 .content02-redbg .content02-whitebg .sub-content02 .img-sp {
          margin: 33px 0 20px; } }
      .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box {
        display: flex;
        justify-content: space-between;
        margin-top: 80px; }
        @media only screen and (max-width: 767px) {
          .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box {
            display: block;
            margin-top: 40px; } }
        .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .right {
          width: 60%;
          max-width: 600px; }
          @media only screen and (max-width: 767px) {
            .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .right {
              width: 100%;
              max-width: 100%; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .right .h4-tit {
            margin-bottom: 40px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .right .h4-tit {
                margin-bottom: 30px; } }
        .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .left {
          width: 40%;
          max-width: 350px; }
          @media only screen and (max-width: 767px) {
            .led .content02 .content02-redbg .content02-whitebg .sub-content02 .sub-content02-box .left {
              width: 100%;
              max-width: 100%; } }
      .led .content02 .content02-redbg .content02-whitebg .sub-content03 {
        margin-top: 67px; }
        @media only screen and (max-width: 767px) {
          .led .content02 .content02-redbg .content02-whitebg .sub-content03 {
            margin-top: 35px; } }
        .led .content02 .content02-redbg .content02-whitebg .sub-content03 .h4-tit {
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            .led .content02 .content02-redbg .content02-whitebg .sub-content03 .h4-tit {
              margin-bottom: 30px; } }
        .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox {
          width: 100%;
          height: 222px;
          background-image: url("../images/led/bg04.png");
          background-repeat: no-repeat;
          background-size: cover;
          margin-top: 45px;
          padding: 45px 80px 40px 50px;
          display: flex;
          justify-content: space-between; }
          @media only screen and (max-width: 767px) {
            .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox {
              background-image: url("../images/led/bg04-sp.png");
              display: block;
              padding: 33px 25px;
              height: 360px;
              margin-top: 30px; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox h5 {
            font-size: 18px;
            font-weight: bold;
            text-decoration: underline;
            margin-bottom: 20px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox h5 {
                font-size: 15px;
                margin-bottom: 15px; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox .smdbox-left {
            width: 65%;
            max-width: 490px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox .smdbox-left {
                width: 100%;
                max-width: 100%; } }
          .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox .smdbox-right {
            width: 33%;
            max-width: 297px; }
            @media only screen and (max-width: 767px) {
              .led .content02 .content02-redbg .content02-whitebg .sub-content03 .smdbox .smdbox-right {
                width: 100%;
                max-width: 100%;
                margin-top: 20px; } }

@media screen and (max-width: 1450px) {
  .led .content03 {
    margin-top: 50px; } }

@media screen and (max-width: 1150px) {
  .led .content03 {
    margin-top: 70px; } }

@media only screen and (max-width: 767px) {
  .led .content03 {
    margin-top: 35px; } }

.led .content03 .repo-content {
  position: relative;
  left: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 75px; }
  @media screen and (max-width: 1350px) {
    .led .content03 .repo-content {
      left: 0; } }
  @media only screen and (max-width: 767px) {
    .led .content03 .repo-content {
      left: 0;
      display: block;
      margin-bottom: 45px; } }
  .led .content03 .repo-content .ttl-05 {
    width: 49%;
    max-width: 533px; }
    @media only screen and (max-width: 767px) {
      .led .content03 .repo-content .ttl-05 {
        width: 100%;
        max-width: 100%; } }
  .led .content03 .repo-content .lepo-img {
    width: 49%;
    max-width: 540px; }
    @media only screen and (max-width: 767px) {
      .led .content03 .repo-content .lepo-img {
        width: 100%;
        max-width: 100%;
        margin-top: 40px; } }

.led .content03 .big-img {
  margin: 50px auto 40px; }
  @media only screen and (max-width: 767px) {
    .led .content03 .big-img {
      margin: 35px auto 25px; } }

.led .content03 .btn-07 {
  margin-top: 50px; }
  @media only screen and (max-width: 767px) {
    .led .content03 .btn-07 {
      margin-top: 35px; } }

.led .content03 .mar {
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .led .content03 .mar {
      margin-top: 45px; } }

.led .content03 .vision-box {
  background-image: url("../images/led/bg02.jpg");
  height: 220px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1140px;
  margin-top: -30px; }
  @media only screen and (max-width: 767px) {
    .led .content03 .vision-box {
      background-image: url("../images/led/bg02-sp.jpg");
      height: 338px;
      width: calc(100% - 50px); } }
  .led .content03 .vision-box h5 {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
    position: relative;
    top: -10px;
    margin-top: 80px;
    margin-bottom: -10px; }
    @media only screen and (max-width: 767px) {
      .led .content03 .vision-box h5 {
        font-size: 17px;
        font-size: 1.7rem;
        top: -8px;
        margin-top: 65px; } }
  .led .content03 .vision-box .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .led .content03 .vision-box .list {
        display: block;
        padding: 0;
        margin-top: 25px; } }
    .led .content03 .vision-box .list li {
      background: #fff;
      width: 49%;
      max-width: 490px;
      padding: 14px 0 12px;
      margin-bottom: 20px;
      display: flex; }
      @media only screen and (max-width: 767px) {
        .led .content03 .vision-box .list li {
          width: 100%;
          align-items: center;
          padding: 11px 12px 11px 0;
          margin-bottom: 10px; } }
      .led .content03 .vision-box .list li .iconcheck {
        width: 30px;
        height: 30px;
        margin: 0 15px; }
        @media only screen and (max-width: 767px) {
          .led .content03 .vision-box .list li .iconcheck {
            width: 22px;
            height: 22px;
            margin: 0 12px; } }
      .led .content03 .vision-box .list li p {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 1px;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .led .content03 .vision-box .list li p {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 20px; } }

@media only screen and (max-width: 767px) {
  .led .content03 .vision-box02 {
    height: 315px; } }

@media only screen and (max-width: 767px) {
  .led .content03 .vision-box02 .list .spec {
    padding: 14px 12px 14px 0; } }

.led .content04 {
  background-image: url("../images/led/bg03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 100px 0;
  margin-top: 100px; }
  @media only screen and (max-width: 767px) {
    .led .content04 {
      background-image: url("../images/led/bg03-sp.jpg");
      padding: 60px 25px;
      margin-top: 60px; } }
  .led .content04 .content04-white {
    background: #fff;
    padding: 70px 0 10px;
    width: calc(100% - 70px);
    margin-left: 70px; }
    @media only screen and (max-width: 767px) {
      .led .content04 .content04-white {
        width: 100%;
        margin-left: 0;
        padding: 45px 0 50px; } }
    .led .content04 .content04-white .content04-list-box {
      margin-top: 60px; }
      @media only screen and (max-width: 767px) {
        .led .content04 .content04-white .content04-list-box {
          margin-top: 40px; } }
      .led .content04 .content04-white .content04-list-box .box {
        display: flex;
        justify-content: space-between;
        margin-bottom: 62px; }
        @media only screen and (max-width: 767px) {
          .led .content04 .content04-white .content04-list-box .box {
            display: block;
            margin-bottom: 45px; } }
        .led .content04 .content04-white .content04-list-box .box .left-box {
          width: 60%;
          max-width: 600px; }
          @media only screen and (max-width: 767px) {
            .led .content04 .content04-white .content04-list-box .box .left-box {
              width: 100%;
              max-width: 100%; } }
          .led .content04 .content04-white .content04-list-box .box .left-box .h4-tit {
            margin-bottom: 40px; }
            @media only screen and (max-width: 767px) {
              .led .content04 .content04-white .content04-list-box .box .left-box .h4-tit {
                margin-bottom: 35px; } }
          @media only screen and (max-width: 767px) {
            .led .content04 .content04-white .content04-list-box .box .left-box .sp-img {
              margin-bottom: 20px; } }
        .led .content04 .content04-white .content04-list-box .box .img-box {
          width: 43%;
          max-width: 350px; }
          @media screen and (max-width: 1080px) {
            .led .content04 .content04-white .content04-list-box .box .img-box {
              margin-left: 25px; } }
          @media only screen and (max-width: 767px) {
            .led .content04 .content04-white .content04-list-box .box .img-box {
              width: 100%;
              max-width: 100%;
              margin-left: 0; } }
      @media only screen and (max-width: 767px) {
        .led .content04 .content04-white .content04-list-box .box02 {
          margin-bottom: 0; } }
    .led .content04 .content04-white .btn-01 {
      margin-top: 38px; }
      @media only screen and (max-width: 767px) {
        .led .content04 .content04-white .btn-01 {
          margin-top: 27px; } }

.led .content05 {
  margin-top: 90px; }

.led .case-item .btn-01 {
  height: 50px;
  width: 200px; }
  @media only screen and (max-width: 767px) {
    .led .case-item .btn-01 {
      width: 160px; } }

@media only screen and (max-width: 767px) {
  .led .exp-01 .en:before {
    left: -110px;
    width: 100px; } }

body.news section.content {
  padding: 100px 0 180px; }
  @media only screen and (max-width: 767px) {
    body.news section.content {
      padding: 45px 0 107px; } }
  body.news section.content .main-content .article-content {
    width: calc(100% - 270px); }
    @media only screen and (max-width: 767px) {
      body.news section.content .main-content .article-content {
        width: 100%; } }
    body.news section.content .main-content .article-content ul.article-list {
      border-bottom: 1px solid #d7d7d7;
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        body.news section.content .main-content .article-content ul.article-list {
          margin-bottom: 35px; } }
      body.news section.content .main-content .article-content ul.article-list li {
        border-top: 1px solid #d7d7d7; }
        @media only screen and (max-width: 767px) {
          body.news section.content .main-content .article-content ul.article-list li {
            width: 100%; } }
        body.news section.content .main-content .article-content ul.article-list li a {
          align-items: center;
          padding: 30px 0; }
          @media only screen and (max-width: 767px) {
            body.news section.content .main-content .article-content ul.article-list li a {
              padding: 20px 0; } }
          body.news section.content .main-content .article-content ul.article-list li a .date {
            border-top: 1px solid #181a1b;
            border-bottom: 1px solid #181a1b;
            font-size: 18px;
            font-size: 1.8rem;
            line-height: 1.66;
            letter-spacing: 0.025em;
            font-weight: 600;
            font-family: "Montserrat", sans-serif;
            padding: 11px 4px;
            text-align: center; }
            @media only screen and (max-width: 767px) {
              body.news section.content .main-content .article-content ul.article-list li a .date {
                font-size: 13px;
                font-size: 1.3rem;
                padding: 5px 4px; } }
          body.news section.content .main-content .article-content ul.article-list li a .imager {
            background-image: url("../images/common/no-img.jpg");
            background-position: center;
            background-size: cover;
            height: 0;
            padding-bottom: 20.55%;
            position: relative;
            width: 27.39%; }
            @media only screen and (max-width: 1050px) {
              body.news section.content .main-content .article-content ul.article-list li a .imager {
                padding-bottom: 0;
                height: 150px; } }
            @media only screen and (max-width: 767px) {
              body.news section.content .main-content .article-content ul.article-list li a .imager {
                padding-bottom: 25.5%;
                height: auto;
                width: 30.76%; } }
            body.news section.content .main-content .article-content ul.article-list li a .imager:before {
              color: white;
              font-size: 18px;
              font-size: 1.8rem;
              letter-spacing: 0.05em;
              font-family: "Montserrat", sans-serif;
              font-style: italic;
              text-align: center;
              content: "View more";
              opacity: 0;
              transition: all .3s;
              margin: 0 auto;
              position: absolute;
              left: 0;
              right: 0;
              top: 50%;
              transform: translateY(-50%);
              z-index: 2; }
            body.news section.content .main-content .article-content ul.article-list li a .imager:after {
              pointer-events: none;
              position: absolute;
              top: 0;
              left: 0;
              content: "";
              width: 0;
              height: 100%;
              background: #d0121b;
              background: -webkit-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
              background: -o-linear-gradient(bottom left, #d0121b 0%, #003a8c 100%);
              background: linear-gradient(to top right, #d0121b 0%, #003a8c 100%);
              opacity: .4;
              transition: all 0.3s ease; }
          body.news section.content .main-content .article-content ul.article-list li a .txt-area {
            width: 59.72%; }
            @media only screen and (min-width: 768px) {
              body.news section.content .main-content .article-content ul.article-list li a .txt-area {
                display: -webkit-flex;
                display: flex;
                -webkit-align-items: flex-start;
                align-items: flex-start;
                flex-direction: column;
                height: 150px; } }
            @media only screen and (max-width: 767px) {
              body.news section.content .main-content .article-content ul.article-list li a .txt-area {
                width: 47.69%; } }
            body.news section.content .main-content .article-content ul.article-list li a .txt-area .category {
              border: 1px solid #e20c17;
              color: #e20c17;
              font-size: 14px;
              font-size: 1.4rem;
              font-weight: 600;
              font-family: "Montserrat", sans-serif;
              letter-spacing: 0.05em;
              margin-bottom: 20px;
              text-transform: uppercase;
              height: 25px;
              width: 120px;
              display: -webkit-flex;
              display: flex;
              -webkit-align-items: center;
              align-items: center;
              -webkit-justify-content: center;
              justify-content: center; }
              @media only screen and (max-width: 767px) {
                body.news section.content .main-content .article-content ul.article-list li a .txt-area .category {
                  font-size: 12px;
                  font-size: 1.2rem;
                  margin-bottom: 10px;
                  height: 20px;
                  width: 90px; } }
            body.news section.content .main-content .article-content ul.article-list li a .txt-area .ttl {
              font-size: 18px;
              font-size: 1.8rem;
              font-weight: bold;
              letter-spacing: 0.05em;
              line-height: 1.8666; }
              @media only screen and (max-width: 767px) {
                body.news section.content .main-content .article-content ul.article-list li a .txt-area .ttl {
                  line-height: 1.6;
                  font-size: 15px;
                  font-size: 1.5rem; } }
            body.news section.content .main-content .article-content ul.article-list li a .txt-area .short {
              color: #b6b6b6;
              font-size: 15px;
              font-size: 1.5rem;
              margin-top: 22px;
              letter-spacing: 0.05em; }
        @media only screen and (min-width: 768px) {
          body.news section.content .main-content .article-content ul.article-list li:hover .imager:before {
            opacity: 1; }
          body.news section.content .main-content .article-content ul.article-list li:hover .imager:after {
            width: 100%; } }

.oem .oem-content {
  padding: 27px 0 178px; }
  @media only screen and (max-width: 767px) {
    .oem .oem-content {
      padding: 35px 0 115px; } }

.oem .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.oem .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.oem p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .oem p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

@media only screen and (max-width: 767px) {
  .oem .ttl-05 .en {
    margin-bottom: 10px; } }

.oem .content01 {
  margin-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    .oem .content01 {
      margin-bottom: 50px; } }
  .oem .content01 .content01-inner {
    display: flex;
    align-items: center;
    padding: 70px 140px 0 0;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .oem .content01 .content01-inner {
        display: block;
        padding: 0 25px 55px; } }
    .oem .content01 .content01-inner .left {
      width: 55%;
      height: 580px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      background-image: url("../images/oem/img01.jpg");
      margin-right: 60px; }
      @media only screen and (max-width: 767px) {
        .oem .content01 .content01-inner .left {
          width: 100%; } }
    .oem .content01 .content01-inner .right {
      width: 45%; }
      @media only screen and (max-width: 767px) {
        .oem .content01 .content01-inner .right {
          width: 100%; } }
      .oem .content01 .content01-inner .right .ttl-06 {
        margin-bottom: 60px; }
        @media only screen and (max-width: 767px) {
          .oem .content01 .content01-inner .right .ttl-06 {
            margin-bottom: 40px; } }
      @media only screen and (max-width: 767px) {
        .oem .content01 .content01-inner .right .img-sp {
          width: calc(100% + 25px);
          margin-bottom: 25px;
          margin-left: -25px; } }
    .oem .content01 .content01-inner .en-text {
      position: absolute;
      width: 125px;
      height: 530px;
      right: 70px;
      z-index: -1;
      top: 0; }
      @media only screen and (max-width: 767px) {
        .oem .content01 .content01-inner .en-text {
          width: 65px;
          height: auto;
          right: 10px;
          top: 350px; } }
    @media screen and (max-width: 1080px) {
      .oem .content01 .content01-inner {
        right: 0; } }
    @media only screen and (max-width: 767px) {
      .oem .content01 .content01-inner {
        width: 100%;
        padding: 0 25px;
        right: 0; } }

.oem .content02 {
  background-image: url("../images/oem/bg.png");
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  padding: 90px 0 50px 70px; }
  @media only screen and (max-width: 767px) {
    .oem .content02 {
      background-image: url("../images/oem/bg-sp.png");
      width: 100%;
      padding: 55px 25px 25px 0;
      margin-bottom: 35px; } }
  .oem .content02 .ttl-05 {
    margin-bottom: 70px; }
    @media only screen and (max-width: 767px) {
      .oem .content02 .ttl-05 {
        margin-bottom: 45px; } }
  .oem .content02 .content02-sub {
    background: #fff;
    padding: 70px 0;
    margin-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      .oem .content02 .content02-sub {
        padding: 20px 0 45px;
        margin-bottom: 35px; } }
    .oem .content02 .content02-sub .inner {
      position: relative;
      left: 70px; }
      @media only screen and (max-width: 767px) {
        .oem .content02 .content02-sub .inner {
          left: 0; } }
    .oem .content02 .content02-sub .up {
      display: flex;
      justify-content: space-between;
      margin-bottom: 38px; }
      @media only screen and (max-width: 767px) {
        .oem .content02 .content02-sub .up {
          display: block;
          margin-bottom: 25px; } }
      .oem .content02 .content02-sub .up .up-left {
        width: 50%;
        max-width: 422px;
        padding-top: 30px; }
        @media only screen and (max-width: 767px) {
          .oem .content02 .content02-sub .up .up-left {
            width: 100%;
            max-width: 100%; } }
        .oem .content02 .content02-sub .up .up-left .h4-img img {
          width: auto;
          height: 110px; }
          @media only screen and (max-width: 767px) {
            .oem .content02 .content02-sub .up .up-left .h4-img img {
              height: 60px; } }
        .oem .content02 .content02-sub .up .up-left .h4-text {
          font-size: 26px;
          font-size: 2.6rem;
          font-weight: bold;
          line-height: 40px;
          margin-top: 40px;
          letter-spacing: 2px; }
          @media only screen and (max-width: 767px) {
            .oem .content02 .content02-sub .up .up-left .h4-text {
              font-size: 18px;
              font-size: 1.8rem;
              line-height: 28px;
              margin-top: 23px;
              margin-bottom: 32px; } }
      .oem .content02 .content02-sub .up .up-right {
        width: 50%;
        max-width: 500px; }
        @media only screen and (max-width: 767px) {
          .oem .content02 .content02-sub .up .up-right {
            width: 100%;
            max-width: 100%; } }
  .oem .content02 .content02-sub01 {
    border-right: 2px #e20c17 solid;
    position: relative;
    left: -70px; }
    @media only screen and (max-width: 767px) {
      .oem .content02 .content02-sub01 {
        left: 0; } }
  .oem .content02 .content02-sub02 {
    border-left: 2px #e20c17 solid; }
    @media only screen and (max-width: 767px) {
      .oem .content02 .content02-sub02 {
        position: relative;
        left: 25px; } }
    .oem .content02 .content02-sub02 .inner {
      position: relative;
      left: 0; }
    .oem .content02 .content02-sub02 .up {
      flex-direction: row-reverse; }

.oem .content03 {
  padding: 50px 0 100px; }
  @media only screen and (max-width: 767px) {
    .oem .content03 {
      padding: 23px 0 100px; } }
  .oem .content03 .ttl-05 {
    margin-bottom: 54px; }
    @media only screen and (max-width: 767px) {
      .oem .content03 .ttl-05 {
        margin-bottom: 34px; } }
  .oem .content03 .listflow {
    display: flex;
    color: #fff; }
    .oem .content03 .listflow .en {
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: bold;
      display: block;
      margin-bottom: 7px; }
    .oem .content03 .listflow .ja {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: bold;
      display: block; }
  .oem .content03 .flow01 {
    background-image: url("../images/oem/flow-bg01.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 930px;
    height: 70px;
    margin: 30px auto 0;
    padding: 17px 0 0 40px; }
    .oem .content03 .flow01 li:nth-child(1) {
      margin-right: 123px; }
    .oem .content03 .flow01 li:nth-child(2) {
      margin-right: 100px; }
    .oem .content03 .flow01 li:nth-child(3) {
      margin-right: 158px; }
  .oem .content03 .flow02 {
    background-image: url("../images/oem/flow-bg02.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 700px;
    height: 70px;
    margin: 10px auto 0;
    padding: 17px 0 0 40px; }
    .oem .content03 .flow02 li:nth-child(1) {
      margin-right: 170px; }
    .oem .content03 .flow02 li:nth-child(2) {
      margin-right: 80px; }
  .oem .content03 .listflow-sp {
    background-image: url("../images/oem/flow-bg-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 582px;
    color: #fff;
    padding: 23px 0 0;
    margin-top: 25px; }
    .oem .content03 .listflow-sp .en {
      font-size: 13px;
      font-size: 1.3rem;
      font-weight: bold;
      display: block;
      margin-bottom: 4px;
      text-align: center; }
    .oem .content03 .listflow-sp .ja {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: bold;
      display: block;
      text-align: center; }
    .oem .content03 .listflow-sp li {
      margin-bottom: 52px; }

.oem .case-item .buttons {
  display: none; }

@media only screen and (max-width: 767px) {
  .oem .case-item.case-side .section-07-wrapper {
    padding-top: 0; } }

.policy .inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 95px 25px 105px; }
  @media only screen and (max-width: 767px) {
    .policy .inner {
      padding: 45px 25px 65px; } }

.policy p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 0.7px; }
  @media only screen and (max-width: 767px) {
    .policy p {
      line-height: 31px;
      text-align: justify;
      line-height: 26px; } }

.policy .content01 .text,
.policy .content02 .text {
  margin: 55px 0 65px; }
  @media only screen and (max-width: 767px) {
    .policy .content01 .text,
    .policy .content02 .text {
      margin: 35px 0 38px; } }

.policy .content01 .things-list li,
.policy .content02 .things-list li {
  margin-bottom: 65px; }
  @media only screen and (max-width: 767px) {
    .policy .content01 .things-list li,
    .policy .content02 .things-list li {
      margin-bottom: 37px; } }
  .policy .content01 .things-list li .h4-tit,
  .policy .content02 .things-list li .h4-tit {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .policy .content01 .things-list li .h4-tit,
      .policy .content02 .things-list li .h4-tit {
        margin-bottom: 27px; } }
  .policy .content01 .things-list li .list,
  .policy .content02 .things-list li .list {
    margin-top: 20px; }
    @media only screen and (max-width: 767px) {
      .policy .content01 .things-list li .list,
      .policy .content02 .things-list li .list {
        margin-top: 17px; } }
    .policy .content01 .things-list li .list .list-num,
    .policy .content02 .things-list li .list .list-num {
      display: flex; }
      .policy .content01 .things-list li .list .list-num .num,
      .policy .content02 .things-list li .list .list-num .num {
        margin-right: 20px; }
        @media only screen and (max-width: 767px) {
          .policy .content01 .things-list li .list .list-num .num,
          .policy .content02 .things-list li .list .list-num .num {
            margin-right: 17px; } }
      .policy .content01 .things-list li .list .list-num .num-spec,
      .policy .content02 .things-list li .list .list-num .num-spec {
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .policy .content01 .things-list li .list .list-num .num-spec,
          .policy .content02 .things-list li .list .list-num .num-spec {
            margin-right: 7px; } }

.policy .content02 {
  margin-top: -115px; }
  @media only screen and (max-width: 767px) {
    .policy .content02 {
      margin-top: -65px; } }

.product .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px; }

.product p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .product p {
      line-height: 26px;
      letter-spacing: 1.2px; } }

.product .btn-01 {
  width: 320px;
  height: 60px; }
  @media only screen and (max-width: 767px) {
    .product .btn-01 {
      height: 44px;
      width: 80%;
      margin: 0 auto; } }
  .product .btn-01 .txt {
    font-size: 14px;
    margin-left: -30px; }
    @media only screen and (max-width: 767px) {
      .product .btn-01 .txt {
        margin-left: -25px; } }
  @media only screen and (max-width: 767px) {
    .product .btn-01 .txt02 {
      text-align: center;
      line-height: 15px; } }
  .product .btn-01 img {
    right: 20px;
    left: unset; }
    @media all and (-ms-high-contrast: none) {
      .product .btn-01 img {
        left: none !important; } }

.product .product-content .content01 {
  padding: 95px 0 90px; }
  @media only screen and (max-width: 767px) {
    .product .product-content .content01 {
      padding: 50px 0; } }
  .product .product-content .content01 .content01-about .img-box {
    margin: 70px 0 40px; }
    @media only screen and (max-width: 767px) {
      .product .product-content .content01 .content01-about .img-box {
        margin: 40px 0 25px; } }
  .product .product-content .content01 .button-box {
    background-image: url("../images/product/btn-bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    padding: 32px 35px 0 45px;
    margin: 40px 0 65px;
    display: block; }
    @media only screen and (max-width: 767px) {
      .product .product-content .content01 .button-box {
        background-image: url("../images/product/btn-bg-sp.png");
        width: 100%;
        height: 115px;
        padding: 24px 35px 0 10px;
        margin: 27px 0 30px; } }
    .product .product-content .content01 .button-box .button-box-content {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .product .product-content .content01 .button-box .button-box-content {
          display: block; } }
      .product .product-content .content01 .button-box .button-box-content .logo img {
        width: 340px; }
        @media only screen and (max-width: 767px) {
          .product .product-content .content01 .button-box .button-box-content .logo img {
            width: 70%;
            margin-bottom: 15px;
            margin-left: 40px; } }
      .product .product-content .content01 .button-box .button-box-content .text {
        color: #e20c17;
        font-weight: bold;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 1px;
        background: #f1f1f1;
        padding: 8px 20px;
        margin-left: 30px; }
        @media only screen and (max-width: 767px) {
          .product .product-content .content01 .button-box .button-box-content .text {
            margin-left: 0;
            text-align: center;
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 20px;
            padding: 4px 10px; } }
    .product .product-content .content01 .button-box:hover {
      opacity: 0.6; }
  .product .product-content .content01 .content01-list-box {
    width: 100%;
    max-width: 1120px;
    padding: 0 25px;
    margin: 0 auto;
    position: relative;
    right: 35px; }
    @media screen and (max-width: 1080px) {
      .product .product-content .content01 .content01-list-box {
        right: 0; } }
    @media only screen and (max-width: 767px) {
      .product .product-content .content01 .content01-list-box {
        width: 100%;
        padding: 0 25px;
        right: 0; } }
    .product .product-content .content01 .content01-list-box .box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 58px; }
      @media only screen and (max-width: 767px) {
        .product .product-content .content01 .content01-list-box .box {
          display: block;
          margin-bottom: 45px; } }
      .product .product-content .content01 .content01-list-box .box .img-box {
        width: 40%;
        max-width: 420px; }
        @media screen and (max-width: 1080px) {
          .product .product-content .content01 .content01-list-box .box .img-box {
            margin-right: 25px; } }
        @media only screen and (max-width: 767px) {
          .product .product-content .content01 .content01-list-box .box .img-box {
            width: 100%;
            max-width: 100%;
            margin-right: 0; } }
      .product .product-content .content01 .content01-list-box .box .right-box {
        max-width: 600px;
        width: 60%; }
        @media only screen and (max-width: 767px) {
          .product .product-content .content01 .content01-list-box .box .right-box {
            width: 100%;
            max-width: 100%; } }
        .product .product-content .content01 .content01-list-box .box .right-box .h4-tit {
          margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .product .product-content .content01 .content01-list-box .box .right-box .sp-img {
            margin-bottom: 25px; } }
  .product .product-content .content01 .btn-01 {
    margin-top: 37px; }
    @media only screen and (max-width: 767px) {
      .product .product-content .content01 .btn-01 {
        margin-top: 27px; } }

.product .product-content .content02 {
  padding-bottom: 110px; }
  @media only screen and (max-width: 767px) {
    .product .product-content .content02 {
      padding-bottom: 65px; } }
  .product .product-content .content02 .text {
    margin: 55px 0 70px; }
    @media only screen and (max-width: 767px) {
      .product .product-content .content02 .text {
        margin: 40px 0; } }
  .product .product-content .content02 .content02-list-box {
    width: 100%;
    max-width: 1190px;
    padding: 0 25px;
    margin: 0 auto;
    position: relative;
    left: 70px; }
    @media screen and (max-width: 1080px) {
      .product .product-content .content02 .content02-list-box {
        left: 0; } }
    @media only screen and (max-width: 767px) {
      .product .product-content .content02 .content02-list-box {
        width: 100%;
        padding: 0 25px;
        left: 0; } }
    .product .product-content .content02 .content02-list-box .box {
      display: flex;
      justify-content: space-between;
      margin-bottom: 78px; }
      @media only screen and (max-width: 767px) {
        .product .product-content .content02 .content02-list-box .box {
          display: block;
          margin-bottom: 45px; } }
      .product .product-content .content02 .content02-list-box .box .left-box {
        width: 60%;
        max-width: 600px; }
        @media only screen and (max-width: 767px) {
          .product .product-content .content02 .content02-list-box .box .left-box {
            width: 100%;
            max-width: 100%; } }
        .product .product-content .content02 .content02-list-box .box .left-box .h4-tit {
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            .product .product-content .content02 .content02-list-box .box .left-box .h4-tit {
              margin-bottom: 35px; } }
        @media only screen and (max-width: 767px) {
          .product .product-content .content02 .content02-list-box .box .left-box .sp-img {
            margin-bottom: 40px; } }
      .product .product-content .content02 .content02-list-box .box .img-box {
        width: 43%;
        max-width: 490px; }
        @media screen and (max-width: 1080px) {
          .product .product-content .content02 .content02-list-box .box .img-box {
            margin-left: 25px; } }
        @media only screen and (max-width: 767px) {
          .product .product-content .content02 .content02-list-box .box .img-box {
            width: 100%;
            max-width: 100%;
            margin-left: 0; } }
  .product .product-content .content02 .btn-01 {
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      .product .product-content .content02 .btn-01 {
        margin-top: 27px; } }

.repo .repo-content {
  padding: 95px 0 0; }
  @media only screen and (max-width: 767px) {
    .repo .repo-content {
      padding: 40px 0 0; } }

.repo .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.repo .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.repo p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .repo p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

@media only screen and (max-width: 767px) {
  .repo .ttl-05 .en {
    margin-bottom: 10px; } }

.repo .content01 .content01-box {
  display: flex;
  justify-content: space-between;
  width: 1070px;
  margin: 0 auto -70px; }
  @media only screen and (max-width: 767px) {
    .repo .content01 .content01-box {
      width: 100%;
      display: block;
      margin: 0 auto;
      padding: 0 25px; } }
  .repo .content01 .content01-box .left {
    max-width: 600px;
    width: 62%; }
    @media only screen and (max-width: 767px) {
      .repo .content01 .content01-box .left {
        width: 100%;
        max-width: 100%; } }
    .repo .content01 .content01-box .left .ttl-05 {
      margin-bottom: 58px; }
      @media only screen and (max-width: 767px) {
        .repo .content01 .content01-box .left .ttl-05 {
          margin-bottom: 25px; } }
      .repo .content01 .content01-box .left .ttl-05 .spec {
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          .repo .content01 .content01-box .left .ttl-05 .spec {
            white-space: normal; } }
    @media only screen and (max-width: 767px) {
      .repo .content01 .content01-box .left .h3-imgsp {
        margin-bottom: 20px; } }
  .repo .content01 .content01-box .right {
    max-width: 410px;
    width: 39%; }
    @media only screen and (max-width: 767px) {
      .repo .content01 .content01-box .right {
        width: 100%;
        max-width: 100%; } }

.repo .content02 {
  margin-top: 130px; }
  @media only screen and (max-width: 767px) {
    .repo .content02 {
      margin-top: 45px; } }
  .repo .content02 .content02-redbg {
    width: 100%;
    height: 3062px;
    background-image: url("../images/repo/bg01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 130px 0 100px; }
    @media only screen and (max-width: 767px) {
      .repo .content02 .content02-redbg {
        background-image: url("../images/repo/bg01-sp.png");
        padding: 70px 0 0;
        height: 3855px; } }
    .repo .content02 .content02-redbg .content02-whitebg {
      background: #fff;
      width: calc(100% - 70px);
      padding: 100px 0; }
      @media only screen and (max-width: 767px) {
        .repo .content02 .content02-redbg .content02-whitebg {
          width: calc(100% - 25px);
          padding: 43px 0 50px; } }
      .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box {
        display: flex;
        justify-content: space-between;
        margin-top: 80px; }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box {
            display: block;
            margin-top: 40px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .right {
          width: 60%;
          max-width: 600px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .right {
              width: 100%;
              max-width: 100%; } }
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .right .h4-tit {
            margin-bottom: 40px; }
            @media only screen and (max-width: 767px) {
              .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .right .h4-tit {
                margin-bottom: 30px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .left {
          width: 40%;
          max-width: 350px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .left {
              width: 100%;
              max-width: 100%; } }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub01 .sub-content02-box .img-sp {
            margin-bottom: 20px; } }
      .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 {
        margin-top: 65px; }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 {
            margin-top: 35px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 .h4-tit {
          margin-bottom: 50px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 .h4-tit {
              margin-bottom: 35px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 .big-img {
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub02 .big-img {
              margin-bottom: 20px; } }
      .repo .content02 .content02-redbg .content02-whitebg .content02-sub03 {
        margin-top: -10px; }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub03 {
            margin-top: -5px; } }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub03 .h4-tit {
            margin-bottom: 35px !important; } }
      .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 {
        margin-top: 65px; }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 {
            margin-top: 40px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .h4-tit {
          margin-bottom: 40px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .h4-tit {
              margin-bottom: 30px; } }
        .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box {
          background-image: url("../images/repo/bg02.png");
          height: 628px;
          margin: 0 auto;
          background-repeat: no-repeat;
          background-size: cover;
          max-width: 1140px;
          margin-top: -30px; }
          @media only screen and (max-width: 767px) {
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box {
              background-image: url("../images/repo/bg02-sp.png");
              height: 1060px; } }
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box h5 {
            font-size: 22px;
            font-size: 2.2rem;
            letter-spacing: 1px;
            font-weight: bold;
            text-align: center;
            position: relative;
            top: -10px;
            margin-top: 80px;
            margin-bottom: -10px;
            text-decoration: underline; }
            @media only screen and (max-width: 767px) {
              .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box h5 {
                font-size: 17px;
                font-size: 1.7rem;
                top: -8px;
                margin-top: 65px;
                text-decoration: none; } }
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail {
            margin-top: 38px; }
            @media only screen and (max-width: 767px) {
              .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail {
                margin-top: 32px; } }
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail01 {
              width: 750px;
              display: flex;
              justify-content: space-between;
              margin: 0 auto 20px; }
              @media only screen and (max-width: 767px) {
                .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail01 {
                  width: 100%;
                  flex-wrap: wrap;
                  margin: 0 auto; } }
              .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail01 li {
                width: 24%;
                max-width: 180px; }
                @media only screen and (max-width: 767px) {
                  .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail01 li {
                    width: 48%;
                    max-width: 48%;
                    margin-bottom: 20px; } }
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail02 {
              width: 940px; }
              @media only screen and (max-width: 767px) {
                .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail02 {
                  width: 100%;
                  flex-wrap: wrap; } }
              .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail02 li {
                width: 19%;
                max-width: 180px; }
                @media only screen and (max-width: 767px) {
                  .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail .detail02 li {
                    width: 48%;
                    max-width: 48%; } }
            .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail h6 {
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 1px;
              font-weight: bold;
              text-align: center;
              margin-top: 14px; }
              @media only screen and (max-width: 767px) {
                .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .vision-box .detail h6 {
                  font-size: 13px;
                  font-size: 1.3rem;
                  margin-top: 12px; } }
        @media only screen and (max-width: 767px) {
          .repo .content02 .content02-redbg .content02-whitebg .content02-sub04 .inner02 {
            padding: 0 15px; } }

.signage .signage-content {
  padding: 85px 0 178px; }
  @media only screen and (max-width: 767px) {
    .signage .signage-content {
      padding: 40px 0 115px; } }
  .signage .signage-content .inner {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 25px; }
  .signage .signage-content .inner02 {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 25px; }
  .signage .signage-content p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 32px;
    letter-spacing: 1px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content p {
        line-height: 26px;
        letter-spacing: 1.2px;
        text-align: justify; } }
  .signage .signage-content .ttl-05 .en {
    margin-bottom: 10px; }
  .signage .signage-content .btn-01 {
    width: 320px;
    height: 60px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .btn-01 {
        height: 44px;
        width: 80%;
        margin: 0 auto; } }
    .signage .signage-content .btn-01 .txt {
      font-size: 14px;
      margin-left: -30px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .btn-01 .txt {
          margin-left: -25px; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .btn-01 .txt02 {
        text-align: center;
        line-height: 15px; } }
    .signage .signage-content .btn-01 img {
      right: 20px;
      left: unset; }
      @media all and (-ms-high-contrast: none) {
        .signage .signage-content .btn-01 img {
          left: none !important; } }
  .signage .signage-content .btn-07 {
    background: #fff;
    color: #e20c17;
    border: 1px #e20c17 solid;
    margin: 0 auto;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .btn-07 {
        width: 86%; } }
    .signage .signage-content .btn-07:hover {
      background: #e20c17;
      color: #fff; }
      .signage .signage-content .btn-07:hover:before {
        background-image: url("../images/led/out.svg"); }
    .signage .signage-content .btn-07:before {
      content: "";
      background-image: url("../images/led/arrow.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 12px;
      height: 10px;
      display: block;
      position: absolute;
      right: 17px; }
  .signage .signage-content .content01 .content01-up {
    display: flex;
    justify-content: space-between;
    width: 1070px;
    margin: 0 auto;
    position: relative;
    left: 35px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content01 .content01-up {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 0 25px;
        left: 0; } }
    .signage .signage-content .content01 .content01-up .left {
      max-width: 600px;
      width: 62%; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content01 .content01-up .left {
          width: 100%;
          max-width: 100%; } }
      .signage .signage-content .content01 .content01-up .left .ttl-05 {
        margin-bottom: 58px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content01 .content01-up .left .ttl-05 {
            margin-bottom: 20px; } }
        .signage .signage-content .content01 .content01-up .left .ttl-05 .spec {
          white-space: nowrap; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content01 .content01-up .left .ttl-05 .spec {
              display: block;
              white-space: normal; } }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content01 .content01-up .left .h3-imgsp {
          margin-bottom: 20px; } }
    .signage .signage-content .content01 .content01-up .right {
      max-width: 410px;
      width: 39%;
      margin-top: 80px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content01 .content01-up .right {
          width: 100%;
          max-width: 100%; } }
  .signage .signage-content .content01 .content01-down {
    background-image: url("../images/oem/bg.png");
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 50px;
    padding: 50px 0 80px;
    margin-top: -57px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content01 .content01-down {
        background-image: url("../images/oem/bg-sp.png");
        width: 100%;
        padding: 37px 25px 50px;
        margin-bottom: 35px;
        margin-top: -128px; } }
    .signage .signage-content .content01 .content01-down .list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 50px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content01 .content01-down .list {
          margin-top: 35px;
          padding: 0; } }
      .signage .signage-content .content01 .content01-down .list li {
        background: #fff;
        border-top: 2px #e20c17 solid;
        width: 49%;
        max-width: 490px;
        padding: 28px 30px 22px;
        margin-bottom: 20px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content01 .content01-down .list li {
            width: 100%;
            max-width: 100%;
            padding: 16px 25px 13px;
            border-top: 1px #e20c17 solid;
            margin-bottom: 10px; } }
        .signage .signage-content .content01 .content01-down .list li h5 {
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: bold;
          letter-spacing: 1px;
          display: block;
          margin-bottom: 15px;
          text-align: center;
          display: block;
          text-decoration: underline; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content01 .content01-down .list li h5 {
              font-size: 15px;
              font-size: 1.5rem;
              margin-bottom: 10px;
              text-align: left; } }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content01 .content01-down .list li p {
            letter-spacing: 0; } }
  .signage .signage-content .content02 {
    padding-top: 50px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content02 {
        padding-top: 20px;
        padding-bottom: 30px; } }
    .signage .signage-content .content02 .ttl-05 {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content02 .ttl-05 {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content02 .ttl-05 .en {
          display: block; } }
    .signage .signage-content .content02 .product {
      display: flex;
      justify-content: space-between;
      margin-top: 25px;
      border-bottom: 1px #d7d7d7 solid;
      padding-bottom: 50px;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content02 .product {
          padding-bottom: 30px;
          margin-top: 20px; } }
      .signage .signage-content .content02 .product li {
        width: 32%;
        max-width: 320px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content02 .product li {
            width: 49%;
            max-width: 49%; } }
        .signage .signage-content .content02 .product li h4 {
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: bold;
          letter-spacing: 1px;
          text-align: center;
          margin: 3px 0 20px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product li h4 {
              font-size: 16px;
              font-size: 1.6rem;
              margin: 3px 0 14px; } }
        .signage .signage-content .content02 .product li .label01,
        .signage .signage-content .content02 .product li .label02 {
          font-size: 15px;
          font-size: 1.5rem;
          color: #e20c17;
          text-align: center;
          border: 1px #e20c17 solid;
          padding: 6px 0 7px;
          font-weight: bold; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product li .label01,
            .signage .signage-content .content02 .product li .label02 {
              font-size: 12px;
              font-size: 1.2rem;
              padding: 3px 0 4px; } }
        .signage .signage-content .content02 .product li .size {
          font-size: 15px;
          font-size: 1.5rem;
          text-align: center;
          font-weight: bold;
          display: block;
          line-height: 22px;
          height: 70px;
          padding-top: 12px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product li .size {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 20px;
              height: 58px;
              padding-top: 9px; } }
        .signage .signage-content .content02 .product li p {
          padding: 10px 20px 0;
          height: 170px;
          line-height: 27px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product li p {
              padding: 10px 10px 0;
              height: 175px;
              line-height: 22px;
              letter-spacing: 0; } }
        .signage .signage-content .content02 .product li .button .btn-07 {
          height: 40px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product li .button .btn-07 {
              width: 90%;
              height: 45px;
              text-align: center;
              line-height: 18px; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content02 .product02 .size {
        height: 78px !important; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content02 .product02 p {
        height: 240px !important; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content02 .product02 .h4-spec {
        margin-top: 0; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content02 .product03 p {
        height: 220px !important; } }
    .signage .signage-content .content02 .product-one {
      margin-top: 40px;
      border-bottom: none; }
      .signage .signage-content .content02 .product-one li {
        width: 100%;
        max-width: 100%; }
        .signage .signage-content .content02 .product-one li h4 {
          margin-top: 19px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product-one li h4 {
              margin: 14px 0 11px; } }
        .signage .signage-content .content02 .product-one li .size {
          height: 50px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product-one li .size {
              height: 40px; } }
        .signage .signage-content .content02 .product-one li p {
          height: 115px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content02 .product-one li p {
              height: 220px; } }
  .signage .signage-content .content03 {
    background-image: url("../images/oem/bg.png");
    margin: 50px auto;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 50px 70px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content03 {
        background-image: url("../images/oem/bg-sp.png");
        width: 100%;
        padding: 60px 0 25px 25px;
        margin: 0 auto 35px; } }
    .signage .signage-content .content03 .ttl-05 {
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content03 .ttl-05 {
          margin-bottom: 40px; } }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content03 .ttl-05 .en {
          display: block; } }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content03 .content03imgsp {
        margin-bottom: 25px;
        width: calc(100% + 25px); } }
    .signage .signage-content .content03 .content03-sub {
      background: #fff;
      padding: 70px 0 65px;
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content03 .content03-sub {
          padding: 45px 0 50px;
          margin-bottom: 35px; } }
      .signage .signage-content .content03 .content03-sub .content {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content03 .content03-sub .content {
            display: block; } }
        .signage .signage-content .content03 .content03-sub .content .left {
          max-width: 616px;
          width: 60%; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content03 .content03-sub .content .left {
              max-width: 100%;
              width: 100%; } }
          .signage .signage-content .content03 .content03-sub .content .left .info {
            display: inline-flex;
            align-items: center;
            margin: 22px 0 30px; }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content03 .content03-sub .content .left .info {
                display: block;
                margin: 20px 0; } }
            .signage .signage-content .content03 .content03-sub .content .left .info .label01 {
              font-size: 15px;
              font-size: 1.5rem;
              color: #e20c17;
              text-align: center;
              border: 1px #e20c17 solid;
              padding: 6px 0 7px;
              font-weight: bold;
              width: 200px;
              margin-right: 30px; }
              @media only screen and (max-width: 767px) {
                .signage .signage-content .content03 .content03-sub .content .left .info .label01 {
                  width: 100%;
                  font-size: 12px;
                  font-size: 1.2rem;
                  padding: 3px 0 4px;
                  margin-bottom: 10px; } }
            .signage .signage-content .content03 .content03-sub .content .left .info .size {
              font-size: 15px;
              font-size: 1.5rem;
              text-align: center;
              font-weight: bold;
              display: block;
              line-height: 22px; }
              @media only screen and (max-width: 767px) {
                .signage .signage-content .content03 .content03-sub .content .left .info .size {
                  font-size: 14px;
                  font-size: 1.4rem; } }
          .signage .signage-content .content03 .content03-sub .content .left .joutai {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap; }
            .signage .signage-content .content03 .content03-sub .content .left .joutai li {
              width: 24%;
              max-width: 140px;
              border: 1px #d7d7d7 solid;
              text-align: center;
              padding: 25px 0 20px; }
              @media only screen and (max-width: 767px) {
                .signage .signage-content .content03 .content03-sub .content .left .joutai li {
                  width: 48%;
                  max-width: 48%;
                  padding: 20px 0 15px;
                  margin-bottom: 12px; } }
              .signage .signage-content .content03 .content03-sub .content .left .joutai li h4 {
                text-align: center;
                font-weight: bold; }
              .signage .signage-content .content03 .content03-sub .content .left .joutai li .img {
                text-align: center;
                margin-bottom: 28px; }
                @media only screen and (max-width: 767px) {
                  .signage .signage-content .content03 .content03-sub .content .left .joutai li .img {
                    margin-bottom: 15px; } }
                .signage .signage-content .content03 .content03-sub .content .left .joutai li .img img {
                  width: 50px;
                  height: 50px; }
                  @media only screen and (max-width: 767px) {
                    .signage .signage-content .content03 .content03-sub .content .left .joutai li .img img {
                      width: 35px;
                      height: 35px; } }
              .signage .signage-content .content03 .content03-sub .content .left .joutai li:nth-child(4) .img img {
                width: 67px;
                height: 50px; }
                @media only screen and (max-width: 767px) {
                  .signage .signage-content .content03 .content03-sub .content .left .joutai li:nth-child(4) .img img {
                    width: 52px;
                    height: 35px; } }
          .signage .signage-content .content03 .content03-sub .content .left .button .btn-07 {
            height: 40px;
            margin: 30px 0 0; }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content03 .content03-sub .content .left .button .btn-07 {
                width: 100%;
                margin: 15px 0 0; } }
        .signage .signage-content .content03 .content03-sub .content .right {
          max-width: 460px;
          width: 40%;
          margin-top: -70px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content03 .content03-sub .content .right {
              max-width: 100%;
              width: 100%;
              margin-top: 0; } }
  .signage .signage-content .content04 {
    margin-top: 100px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content04 {
        margin-top: 60px; } }
    .signage .signage-content .content04 .sub {
      display: flex;
      justify-content: space-between;
      align-self: center; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content04 .sub {
          display: block; } }
      .signage .signage-content .content04 .sub .sub-left {
        width: 35%;
        max-width: 350px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content04 .sub .sub-left {
            width: 100%;
            max-width: 100%; } }
      .signage .signage-content .content04 .sub .sub-right {
        width: 63%;
        max-width: 600px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content04 .sub .sub-right {
            width: 100%;
            max-width: 100%; } }
        .signage .signage-content .content04 .sub .sub-right .ttl-05 {
          margin-bottom: 60px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content04 .sub .sub-right .ttl-05 {
              margin-bottom: 40px; } }
          @media only screen and (min-width: 768px) {
            .signage .signage-content .content04 .sub .sub-right .ttl-05 .en:before {
              display: none; } }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content04 .sub .sub-right .ttl-05 .en {
              display: block; } }
        .signage .signage-content .content04 .sub .sub-right .img-sp {
          margin-bottom: 25px; }
    .signage .signage-content .content04 .content04-down {
      background-image: url("../images/oem/bg.png");
      margin: 0 auto;
      background-repeat: no-repeat;
      background-size: cover;
      margin-top: 75px;
      margin-bottom: 50px;
      padding: 75px 70px 60px;
      width: 1140px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content04 .content04-down {
          background-image: url("../images/oem/bg-sp.png");
          width: 86%;
          padding: 45px 25px 50px;
          margin-bottom: 30px;
          margin-top: 45px; } }
      .signage .signage-content .content04 .content04-down .list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 50px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content04 .content04-down .list {
            margin-top: 35px; } }
        .signage .signage-content .content04 .content04-down .list li {
          background: #fff;
          border-top: 2px #e20c17 solid;
          width: 49%;
          max-width: 490px;
          padding: 28px 30px 22px;
          margin-bottom: 20px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content04 .content04-down .list li {
              width: 100%;
              max-width: 100%;
              padding: 13px 25px;
              border-top: 1px #e20c17 solid;
              margin-bottom: 10px; } }
          .signage .signage-content .content04 .content04-down .list li h5 {
            font-size: 18px;
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 15px;
            text-align: center;
            display: block;
            text-decoration: underline; }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content04 .content04-down .list li h5 {
                font-size: 14px;
                font-size: 1.4rem;
                line-height: 26px;
                margin-bottom: 6px;
                text-align: left; } }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content04 .content04-down .list li p {
              letter-spacing: 0; } }
  .signage .signage-content .content05 {
    background-image: url("../images/led/bg03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 100px 0;
    margin-top: 90px; }
    @media only screen and (max-width: 767px) {
      .signage .signage-content .content05 {
        background-image: url("../images/led/bg03-sp.jpg");
        padding: 60px 25px;
        margin-top: 60px; } }
    .signage .signage-content .content05 .content04-white {
      background: #fff;
      padding: 70px 0 10px;
      width: calc(100% - 70px);
      margin-left: 70px; }
      @media only screen and (max-width: 767px) {
        .signage .signage-content .content05 .content04-white {
          width: 100%;
          margin-left: 0;
          padding: 45px 0 50px; } }
      .signage .signage-content .content05 .content04-white .content04-list-box {
        margin-top: 60px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content05 .content04-white .content04-list-box {
            margin-top: 40px; } }
        .signage .signage-content .content05 .content04-white .content04-list-box .box {
          display: flex;
          justify-content: space-between;
          margin-bottom: 62px; }
          @media only screen and (max-width: 767px) {
            .signage .signage-content .content05 .content04-white .content04-list-box .box {
              display: block;
              margin-bottom: 45px; } }
          .signage .signage-content .content05 .content04-white .content04-list-box .box .left-box {
            width: 60%;
            max-width: 600px; }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content05 .content04-white .content04-list-box .box .left-box {
                width: 100%;
                max-width: 100%; } }
            .signage .signage-content .content05 .content04-white .content04-list-box .box .left-box .h4-tit {
              margin-bottom: 40px; }
              @media only screen and (max-width: 767px) {
                .signage .signage-content .content05 .content04-white .content04-list-box .box .left-box .h4-tit {
                  margin-bottom: 35px; } }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content05 .content04-white .content04-list-box .box .left-box .sp-img {
                margin-bottom: 20px; } }
          .signage .signage-content .content05 .content04-white .content04-list-box .box .img-box {
            width: 43%;
            max-width: 350px; }
            @media screen and (max-width: 1080px) {
              .signage .signage-content .content05 .content04-white .content04-list-box .box .img-box {
                margin-left: 25px; } }
            @media only screen and (max-width: 767px) {
              .signage .signage-content .content05 .content04-white .content04-list-box .box .img-box {
                width: 100%;
                max-width: 100%;
                margin-left: 0; } }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content05 .content04-white .content04-list-box .box02 {
            margin-bottom: 0; } }
      .signage .signage-content .content05 .content04-white .btn-01 {
        margin-top: 38px; }
        @media only screen and (max-width: 767px) {
          .signage .signage-content .content05 .content04-white .btn-01 {
            margin-top: 27px; } }

.signage .case-item .btn-01 {
  height: 50px;
  width: 200px; }
  @media only screen and (max-width: 767px) {
    .signage .case-item .btn-01 {
      width: 160px; } }

@media only screen and (max-width: 767px) {
  .signage .case-item .section-07-wrapper .inner {
    padding: 0; } }

.sitemap .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px; }

.sitemap .sitemap-content-pc {
  display: flex;
  justify-items: center;
  justify-content: space-between;
  padding: 95px 70px 154px 40px; }
  .sitemap .sitemap-content-pc .col-01 li,
  .sitemap .sitemap-content-pc .col-02 li,
  .sitemap .sitemap-content-pc .col-03 li {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 26px;
    letter-spacing: 0.7px; }
    .sitemap .sitemap-content-pc .col-01 li:hover,
    .sitemap .sitemap-content-pc .col-02 li:hover,
    .sitemap .sitemap-content-pc .col-03 li:hover {
      opacity: 0.6; }
  .sitemap .sitemap-content-pc .col-01 .sub,
  .sitemap .sitemap-content-pc .col-02 .sub,
  .sitemap .sitemap-content-pc .col-03 .sub {
    font-weight: normal;
    margin-left: 15px; }
  .sitemap .sitemap-content-pc .col-01 {
    position: relative; }
    .sitemap .sitemap-content-pc .col-01:before {
      content: "";
      height: 255px;
      width: 1px;
      position: absolute;
      background-color: #d7d7d7;
      right: -105px; }
    .sitemap .sitemap-content-pc .col-01:after {
      content: "";
      height: 255px;
      width: 1px;
      position: absolute;
      background-color: #d7d7d7;
      left: -40px;
      top: 0; }
  .sitemap .sitemap-content-pc .col-02 {
    position: relative; }
    .sitemap .sitemap-content-pc .col-02:before {
      content: "";
      height: 255px;
      width: 1px;
      position: absolute;
      background-color: #d7d7d7;
      right: -55px; }
  .sitemap .sitemap-content-pc .col-03 {
    position: relative;
    right: 50px; }
    .sitemap .sitemap-content-pc .col-03:before {
      content: "";
      height: 255px;
      width: 1px;
      position: absolute;
      background-color: #d7d7d7;
      right: -70px; }

.sitemap .sitemap-content-sp {
  width: 100%;
  padding: 45px 25px 112px; }
  .sitemap .sitemap-content-sp .content li {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 20px;
    font-weight: bold;
    border-bottom: 1px solid #d7d7d7;
    width: 100%;
    padding: 12px 15px 10px; }
    .sitemap .sitemap-content-sp .content li .box-sub {
      display: flex;
      align-items: center; }
      .sitemap .sitemap-content-sp .content li .box-sub .sub {
        font-weight: normal;
        display: block;
        margin-top: 12px; }
      .sitemap .sitemap-content-sp .content li .box-sub .sub-left {
        width: 65%;
        padding-left: 15px; }
      .sitemap .sitemap-content-sp .content li .box-sub .sub-right {
        width: 36%; }
    .sitemap .sitemap-content-sp .content li:first-child {
      border-top: 1px solid #d7d7d7; }
  .sitemap .sitemap-content-sp .content .col2 {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .sitemap .sitemap-content-sp .content .col2 .left {
      width: 65%; }
    .sitemap .sitemap-content-sp .content .col2 .right {
      width: 35%; }

.strength .strength-content {
  padding: 30px 0 80px; }
  @media only screen and (max-width: 767px) {
    .strength .strength-content {
      padding: 35px 0 55px; } }

.strength .inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 25px; }

.strength .inner02 {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 25px; }

.strength p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 1px; }
  @media only screen and (max-width: 767px) {
    .strength p {
      line-height: 26px;
      letter-spacing: 1.2px;
      text-align: justify; } }

@media only screen and (max-width: 767px) {
  .strength .ttl-05 .en {
    margin-bottom: 10px; } }

@media only screen and (max-width: 767px) {
  .strength .ttl-06 {
    width: 95%;
    line-height: 36px; } }

.strength .btn-01 {
  width: 320px;
  height: 60px; }
  @media only screen and (max-width: 767px) {
    .strength .btn-01 {
      height: 44px;
      width: 80%;
      margin: 0 auto; } }
  .strength .btn-01 .txt {
    font-size: 14px;
    margin-left: -30px; }
    @media only screen and (max-width: 767px) {
      .strength .btn-01 .txt {
        margin-left: -25px; } }
  @media only screen and (max-width: 767px) {
    .strength .btn-01 .txt02 {
      text-align: center;
      line-height: 15px; } }
  .strength .btn-01 img {
    right: 20px;
    left: unset; }
    @media all and (-ms-high-contrast: none) {
      .strength .btn-01 img {
        left: none !important; } }

.strength .content01 .content01-inner {
  display: flex;
  align-items: center;
  padding: 70px 140px 100px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .strength .content01 .content01-inner {
      display: block;
      padding: 0 25px 55px; } }
  .strength .content01 .content01-inner .left {
    width: 55%;
    height: 580px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    background-image: url("../images/strength/img01.jpg");
    margin-right: 60px; }
    @media only screen and (max-width: 767px) {
      .strength .content01 .content01-inner .left {
        width: 100%; } }
  .strength .content01 .content01-inner .right {
    width: 45%; }
    @media only screen and (max-width: 767px) {
      .strength .content01 .content01-inner .right {
        width: 100%; } }
    .strength .content01 .content01-inner .right .ttl-06 {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .strength .content01 .content01-inner .right .ttl-06 {
          margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      .strength .content01 .content01-inner .right .img-sp {
        width: calc(100% + 25px);
        margin-bottom: 25px;
        margin-left: -25px; } }
  .strength .content01 .content01-inner .img01 {
    position: absolute;
    right: 3%;
    z-index: -1;
    top: 104px; }
    @media only screen and (max-width: 767px) {
      .strength .content01 .content01-inner .img01 {
        right: 24px;
        top: 0; } }
    .strength .content01 .content01-inner .img01 img {
      width: 197px;
      height: 197px; }
      @media only screen and (max-width: 767px) {
        .strength .content01 .content01-inner .img01 img {
          width: 100px;
          height: 100px; } }
  .strength .content01 .content01-inner .img02 {
    position: absolute;
    right: 3%;
    z-index: -1;
    bottom: 130px; }
    @media only screen and (max-width: 767px) {
      .strength .content01 .content01-inner .img02 {
        right: 25px;
        bottom: 33px; } }
    .strength .content01 .content01-inner .img02 img {
      width: 375px;
      height: 128px; }
      @media only screen and (max-width: 767px) {
        .strength .content01 .content01-inner .img02 img {
          width: 182px;
          height: 65px; } }

.strength .content02 {
  width: 100%;
  background-image: url("../images/flow/bg.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0 100px 70px; }
  @media only screen and (max-width: 767px) {
    .strength .content02 {
      background-image: url("../images/led/bg03-sp.jpg");
      padding: 60px 0 60px 25px; } }
  .strength .content02 .content02-inner {
    background: #fff;
    padding: 70px 0; }
    @media only screen and (max-width: 767px) {
      .strength .content02 .content02-inner {
        padding: 0 25px 45px; } }
    .strength .content02 .content02-inner .content02-inner-up {
      display: flex;
      align-items: center;
      padding: 0 0 0 70px;
      position: relative;
      z-index: 0; }
      @media only screen and (max-width: 767px) {
        .strength .content02 .content02-inner .content02-inner-up {
          display: block;
          padding: 40px 0; } }
      .strength .content02 .content02-inner .content02-inner-up .left {
        width: 45%; }
        @media only screen and (max-width: 767px) {
          .strength .content02 .content02-inner .content02-inner-up .left {
            width: 100%; } }
        .strength .content02 .content02-inner .content02-inner-up .left .ttl-06 {
          margin-bottom: 60px; }
          @media only screen and (max-width: 767px) {
            .strength .content02 .content02-inner .content02-inner-up .left .ttl-06 {
              margin-bottom: 40px; } }
        @media only screen and (max-width: 767px) {
          .strength .content02 .content02-inner .content02-inner-up .left .img-sp {
            width: calc(100% + 25px);
            margin-bottom: 25px; } }
      .strength .content02 .content02-inner .content02-inner-up .right {
        width: 55%;
        height: 580px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        background-image: url("../images/strength/img02.jpg");
        margin-left: 60px; }
      .strength .content02 .content02-inner .content02-inner-up .img01 {
        position: absolute;
        left: 34%;
        z-index: -1;
        top: -24px; }
        @media screen and (max-width: 1250px) {
          .strength .content02 .content02-inner .content02-inner-up .img01 {
            left: 33%; } }
        @media screen and (max-width: 1150px) {
          .strength .content02 .content02-inner .content02-inner-up .img01 {
            left: 31%; } }
        @media only screen and (max-width: 767px) {
          .strength .content02 .content02-inner .content02-inner-up .img01 {
            right: 0;
            left: unset;
            top: 40px; } }
        .strength .content02 .content02-inner .content02-inner-up .img01 img {
          width: 197px;
          height: 197px; }
          @media only screen and (max-width: 767px) {
            .strength .content02 .content02-inner .content02-inner-up .img01 img {
              width: 100px;
              height: 100px; } }
      .strength .content02 .content02-inner .content02-inner-up .img02 {
        position: absolute;
        left: 4%;
        bottom: 0;
        z-index: -1; }
        @media screen and (max-width: 1250px) {
          .strength .content02 .content02-inner .content02-inner-up .img02 {
            left: 2%; } }
        @media screen and (max-width: 1150px) {
          .strength .content02 .content02-inner .content02-inner-up .img02 {
            left: 1%; } }
        @media only screen and (max-width: 767px) {
          .strength .content02 .content02-inner .content02-inner-up .img02 {
            bottom: 28px; } }
        .strength .content02 .content02-inner .content02-inner-up .img02 img {
          width: 516px;
          height: 56px; }
          @media only screen and (max-width: 767px) {
            .strength .content02 .content02-inner .content02-inner-up .img02 img {
              width: 250px;
              height: 25px; } }
    @media only screen and (max-width: 767px) {
      .strength .content02 .content02-inner .content02-inner-down {
        padding: 0; } }
    .strength .content02 .content02-inner .content02-inner-down .h4-tit {
      text-align: center;
      margin: 75px 0 40px;
      width: 986px;
      margin-left: 11px; }
      @media only screen and (max-width: 767px) {
        .strength .content02 .content02-inner .content02-inner-down .h4-tit {
          width: 100%;
          text-align: left;
          margin: 0 0 27px; } }
    .strength .content02 .content02-inner .content02-inner-down .soudan-list {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      width: 100%; }
      .strength .content02 .content02-inner .content02-inner-down .soudan-list li {
        width: 33%;
        height: 160px;
        max-width: 363px;
        background-image: url("../images/strength/box.png");
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
        color: #181a1b;
        line-height: 30px;
        padding-top: 35px;
        position: relative;
        z-index: 1; }
        @media only screen and (max-width: 767px) {
          .strength .content02 .content02-inner .content02-inner-down .soudan-list li {
            background-image: url("../images/strength/box-sp.png");
            font-size: 15px;
            font-size: 1.5rem;
            width: calc(100% + 20px);
            height: 89px;
            text-align: left;
            line-height: 25px;
            padding: 20px 40px 20px 25px; } }
        .strength .content02 .content02-inner .content02-inner-down .soudan-list li span {
          border-bottom: 1px solid #181a1b; }
        .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn {
          position: absolute;
          right: 12px;
          bottom: 14px;
          z-index: -1; }
          @media only screen and (max-width: 767px) {
            .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn {
              bottom: 11px; } }
          .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn img {
            width: 90px; }
            @media only screen and (max-width: 767px) {
              .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn img {
                width: 45px; } }
        .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn-spec {
          position: absolute;
          right: 12px;
          bottom: 14px;
          z-index: -1; }
          @media only screen and (max-width: 767px) {
            .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn-spec {
              bottom: 11px; } }
          .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn-spec img {
            width: 70px; }
            @media only screen and (max-width: 767px) {
              .strength .content02 .content02-inner .content02-inner-down .soudan-list li .icn-spec img {
                width: 35px; } }
      @media only screen and (max-width: 767px) {
        .strength .content02 .content02-inner .content02-inner-down .soudan-list .li-spec {
          background-image: url("../images/strength/box-sp-01.png");
          height: 114px; } }

.strength .content03 {
  margin-top: 85px; }
  @media only screen and (max-width: 767px) {
    .strength .content03 {
      margin-top: 52px; } }
  .strength .content03 .content03-sub01 {
    position: relative; }
    .strength .content03 .content03-sub01 .ttl-06 {
      margin-bottom: 55px; }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub01 .ttl-06 {
          margin-bottom: 35px; } }
    .strength .content03 .content03-sub01 .img01 {
      position: absolute;
      right: -45px;
      z-index: -1;
      bottom: 30px; }
      @media screen and (max-width: 1250px) {
        .strength .content03 .content03-sub01 .img01 {
          right: -25px; } }
      @media screen and (max-width: 1150px) {
        .strength .content03 .content03-sub01 .img01 {
          right: -15px; } }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub01 .img01 {
          right: 15px;
          top: -20px; } }
      .strength .content03 .content03-sub01 .img01 img {
        width: 197px;
        height: 197px; }
        @media only screen and (max-width: 767px) {
          .strength .content03 .content03-sub01 .img01 img {
            width: 100px;
            height: 100px; } }
    .strength .content03 .content03-sub01 .img02 {
      position: absolute;
      right: -45px;
      z-index: -1;
      top: 260px; }
      @media screen and (max-width: 1250px) {
        .strength .content03 .content03-sub01 .img02 {
          right: -25px; } }
      @media screen and (max-width: 1150px) {
        .strength .content03 .content03-sub01 .img02 {
          right: -15px; } }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub01 .img02 {
          right: 25px;
          top: 380px; } }
      .strength .content03 .content03-sub01 .img02 img {
        width: 455px;
        height: 55px; }
        @media only screen and (max-width: 767px) {
          .strength .content03 .content03-sub01 .img02 img {
            width: 280px;
            height: 30px; } }
  .strength .content03 .content03-sub02 {
    margin-top: 105px;
    padding-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      .strength .content03 .content03-sub02 {
        margin-top: 40px;
        padding-bottom: 50px; } }
    .strength .content03 .content03-sub02 .h4-tit {
      text-align: center;
      margin: 75px 0 40px; }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub02 .h4-tit {
          text-align: left;
          margin: 35px 0 30px; } }
    .strength .content03 .content03-sub02 .list {
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub02 .list {
          flex-wrap: wrap; } }
      .strength .content03 .content03-sub02 .list li {
        width: 24%;
        max-width: 235px; }
        @media only screen and (max-width: 767px) {
          .strength .content03 .content03-sub02 .list li {
            width: 49%;
            max-width: 49%;
            margin-bottom: 5px; } }
        .strength .content03 .content03-sub02 .list li h5 {
          font-size: 18px;
          font-size: 1.8rem;
          text-align: center;
          font-weight: bold;
          line-height: 26px;
          margin-top: -17px; }
          @media only screen and (max-width: 767px) {
            .strength .content03 .content03-sub02 .list li h5 {
              font-size: 14px;
              font-size: 1.4rem;
              margin-top: -2px;
              line-height: 18px; } }
        .strength .content03 .content03-sub02 .list li:first-child .img {
          margin: 23px 0 30px; }
          @media only screen and (max-width: 767px) {
            .strength .content03 .content03-sub02 .list li:first-child .img {
              margin: 0 0 14px; } }
    .strength .content03 .content03-sub02 .button-list {
      display: flex;
      justify-content: space-between;
      margin: 50px 0 0; }
      @media only screen and (max-width: 767px) {
        .strength .content03 .content03-sub02 .button-list {
          display: block;
          margin: 25px 0 0; } }
      .strength .content03 .content03-sub02 .button-list li {
        width: 32%;
        max-width: 324px; }
        @media only screen and (max-width: 767px) {
          .strength .content03 .content03-sub02 .button-list li {
            width: 80%;
            max-width: 80%;
            margin: 0 auto 10px; } }
        .strength .content03 .content03-sub02 .button-list li .btn-01 {
          width: 100%; }

.strength .content04 .content02-inner .content02-inner-up .right {
  background-image: url("../images/strength/img03.jpg"); }

@media only screen and (max-width: 767px) {
  .strength .content04 .content02-inner .content02-inner-up .img01 {
    right: -15px; } }

.strength .content04 .content02-inner .content02-inner-up .img02 {
  position: absolute;
  left: 27%;
  z-index: -1;
  bottom: -20px; }
  @media screen and (max-width: 1650px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 24%; } }
  @media screen and (max-width: 1550px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 22%; } }
  @media screen and (max-width: 1450px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 20%; } }
  @media screen and (max-width: 1350px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 18%; } }
  @media screen and (max-width: 1250px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 16%; } }
  @media screen and (max-width: 1150px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: 14%; } }
  @media only screen and (max-width: 767px) {
    .strength .content04 .content02-inner .content02-inner-up .img02 {
      left: unset;
      right: -15px;
      bottom: -30px; } }
  .strength .content04 .content02-inner .content02-inner-up .img02 img {
    width: 343px;
    height: 143px; }
    @media only screen and (max-width: 767px) {
      .strength .content04 .content02-inner .content02-inner-up .img02 img {
        width: 186px;
        height: 83px; } }

.strength .content05 {
  padding-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    .strength .content05 {
      padding-bottom: 60px;
      margin-top: 60px; } }
  .strength .content05 .content03-sub01 .img01 {
    bottom: 35px; }
  .strength .content05 .content03-sub01 .img02 {
    right: -45px;
    z-index: -1;
    top: 220px; }
    @media screen and (max-width: 1250px) {
      .strength .content05 .content03-sub01 .img02 {
        right: -25px; } }
    @media screen and (max-width: 1150px) {
      .strength .content05 .content03-sub01 .img02 {
        right: -15px; } }
    @media only screen and (max-width: 767px) {
      .strength .content05 .content03-sub01 .img02 {
        right: 12px;
        top: 358px; } }
    .strength .content05 .content03-sub01 .img02 img {
      width: 945px;
      height: 53px; }
      @media only screen and (max-width: 767px) {
        .strength .content05 .content03-sub01 .img02 img {
          width: 265px;
          height: 65px; } }
  .strength .content05 .button {
    margin-top: 40px; }

@media only screen and (max-width: 767px) {
  .strength .content06 .content02-inner {
    padding: 0 25px 50px; } }

.strength .content06 .content02-inner .content02-inner-up .right {
  background-image: url("../images/strength/img04.jpg"); }

.strength .content06 .content02-inner .content02-inner-up .img02 {
  left: 18%;
  z-index: -1;
  top: 440px; }
  @media screen and (max-width: 1700px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 13%; } }
  @media screen and (max-width: 1550px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 11%; } }
  @media screen and (max-width: 1450px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 9%; } }
  @media screen and (max-width: 1350px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 7%; } }
  @media screen and (max-width: 1250px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 3%; } }
  @media screen and (max-width: 1150px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      left: 1%; } }
  @media only screen and (max-width: 767px) {
    .strength .content06 .content02-inner .content02-inner-up .img02 {
      top: unset;
      bottom: 20px; } }
  .strength .content06 .content02-inner .content02-inner-up .img02 img {
    width: 512px;
    height: 128px; }
    @media only screen and (max-width: 767px) {
      .strength .content06 .content02-inner .content02-inner-up .img02 img {
        width: 312px;
        height: 68px; } }

@media only screen and (max-width: 767px) {
  .strength .content06 .content02-inner .content06-contentdown {
    padding: 0; } }

.strength .content06 .content02-inner .content06-contentdown .note-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .strength .content06 .content02-inner .content06-contentdown .note-list {
      display: block;
      padding: 0;
      margin-top: -10px; } }
  .strength .content06 .content02-inner .content06-contentdown .note-list li {
    width: 49%;
    max-width: 500px;
    margin-bottom: 15px;
    align-items: center;
    display: flex; }
    @media only screen and (max-width: 767px) {
      .strength .content06 .content02-inner .content06-contentdown .note-list li {
        width: 100%;
        margin-bottom: 10px;
        align-items: end;
        margin-bottom: 15px; } }
    .strength .content06 .content02-inner .content06-contentdown .note-list li .imgcheck {
      width: 30px;
      height: 30px;
      margin: 0 15px; }
      @media only screen and (max-width: 767px) {
        .strength .content06 .content02-inner .content06-contentdown .note-list li .imgcheck {
          width: 22px;
          height: 22px;
          margin: 0 12px; } }
    .strength .content06 .content02-inner .content06-contentdown .note-list li h4 {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 1px;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .strength .content06 .content02-inner .content06-contentdown .note-list li h4 {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 20px; } }

.strength .content06 .content02-inner .button .btn-01 {
  margin: 35px auto 0; }
  @media only screen and (max-width: 767px) {
    .strength .content06 .content02-inner .button .btn-01 {
      width: 90%; } }

.strength .content07 .content07-inner {
  padding: 100px 140px 100px 0; }
  @media only screen and (max-width: 767px) {
    .strength .content07 .content07-inner {
      display: block;
      padding: 70px 25px 55px; } }
  .strength .content07 .content07-inner .left {
    background-image: url("../images/strength/img05.jpg"); }
  @media only screen and (max-width: 767px) {
    .strength .content07 .content07-inner .img01 {
      right: 24px;
      top: 38px; } }
  .strength .content07 .content07-inner .img02 {
    z-index: -1;
    top: 570px; }
    @media only screen and (max-width: 767px) {
      .strength .content07 .content07-inner .img02 {
        top: 582px; } }
    .strength .content07 .content07-inner .img02 img {
      width: 533px;
      height: 130px; }
      @media only screen and (max-width: 767px) {
        .strength .content07 .content07-inner .img02 img {
          width: 255px;
          height: 69px; } }
  .strength .content07 .content07-inner .right .button {
    margin-top: 70px; }
    @media only screen and (max-width: 767px) {
      .strength .content07 .content07-inner .right .button {
        margin-top: 25px;
        width: 90%; } }

@media screen and (max-width: 1220px) {
  .strength .ipad {
    display: none; } }
