/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  box-sizing: inherit; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box; /* 1 */
  cursor: default; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
html, body {
  position: relative;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

figure {
  margin: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

span.phrase {
  display: inline-block;
}

.margin-bottom10 {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .small-visible {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .large-visible {
    display: none !important;
  }
}
img.img-responsive {
  width: 100%;
  max-width: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10pt 10pt;
  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: 0.7;
}

.hamburger-box {
  width: 22pt;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 22pt;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  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: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 44pt;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s 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, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 44pt;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s 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, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 44pt;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s 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, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 44pt;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s 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, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

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

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

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-4.4pt, -5.5pt, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-4.4pt, 5.5pt, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 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.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(4.4pt, -5.5pt, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(4.4pt, 5.5pt, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 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.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(270deg);
  transition-delay: 0.1s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s 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: -44pt;
  top: -44pt;
  transform: translate3d(44pt, 44pt, 0) rotate(45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -44pt;
  top: -44pt;
  transform: translate3d(-44pt, 44pt, 0) rotate(-45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s 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.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s 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: -44pt;
  top: 44pt;
  transform: translate3d(44pt, -44pt, 0) rotate(-45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -44pt;
  top: 44pt;
  transform: translate3d(-44pt, -44pt, 0) rotate(45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.1428571429pt, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.1428571429pt, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  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.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 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.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 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.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s 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.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  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.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  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.14s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  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.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  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.3s;
  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);
}

a {
  color: #000;
  text-decoration: none;
}

.sans-serif, body {
  font-family: YuGothic, "Yu Gothic Medium", "source-han-sans-japanese", "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.serif {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

img {
  max-width: 100%;
}

p {
  line-height: 2em;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.material-icons {
  display: inline-flex;
  vertical-align: middle;
  font-size: 1.4em;
  position: relative;
  top: -2px;
}

.heading1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  .heading1 {
    font-size: 30px;
  }
}
.heading1 span {
  font-weight: normal;
  font-size: 18px;
  color: #b10f41;
  display: block;
  margin-bottom: 5px;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .heading1 span {
    font-size: 16px;
  }
}

.button1 {
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  padding: 15px 70px;
  border: 1px solid #DDDDDD;
  position: relative;
  z-index: 1;
}
.button1 span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 10px;
}
.button1::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #b10f41;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(0.02, 0.7, 0.33, 0.99);
}
.button1:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button1:hover {
  color: #FFF;
  border: 1px solid #b10f41;
}

.button2, main.main-service-works nav#search-navi ul.year-select li a, .button4, .button3 {
  display: block;
  padding: 40px 0px;
  border: 1px solid #DDDDDD;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  line-height: 1em;
  background-color: #FFF;
}
@media only screen and (max-width: 767px) {
  .button2, main.main-service-works nav#search-navi ul.year-select li a, .button4, .button3 {
    padding: 15px 0px;
  }
}
.button2 span.serif, main.main-service-works nav#search-navi ul.year-select li a span.serif, .button4 span.serif, .button3 span.serif {
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .button2 span.serif, main.main-service-works nav#search-navi ul.year-select li a span.serif, .button4 span.serif, .button3 span.serif {
    margin-bottom: 5px;
  }
}
.button2 span.material-icons, main.main-service-works nav#search-navi ul.year-select li a span.material-icons, .button4 span.material-icons, .button3 span.material-icons {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 10px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.button2:hover span.material-icons, main.main-service-works nav#search-navi ul.year-select li a:hover span.material-icons, .button4:hover span.material-icons, .button3:hover span.material-icons {
  transform: translate(10px, -50%);
}
.button2::after, main.main-service-works nav#search-navi ul.year-select li a::after, .button4::after, .button3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 2;
  background-color: #000;
  bottom: -1px;
  left: 0;
  right: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(0.02, 0.7, 0.33, 0.99);
}
.button2:hover::after, main.main-service-works nav#search-navi ul.year-select li a:hover::after, .button4:hover::after, .button3:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button2.disable, main.main-service-works nav#search-navi ul.year-select li a.disable, .disable.button4, .disable.button3 {
  cursor: default;
  color: #AAA;
}
.button2.disable:hover::after, main.main-service-works nav#search-navi ul.year-select li a.disable:hover::after, .disable.button4:hover::after, .disable.button3:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.button2.disable:hover span.material-icons, main.main-service-works nav#search-navi ul.year-select li a.disable:hover span.material-icons, .disable.button4:hover span.material-icons, .disable.button3:hover span.material-icons {
  transform: translate(0, -50%);
}

.button3 {
  padding: 20px 0px 40px;
}
.button3 span.material-icons {
  right: auto;
  top: auto;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0) rotate(90deg);
}
.button3:hover span.material-icons {
  transform: translate(-50%, 10px) rotate(90deg);
}

.button4 {
  padding: 40px 30px;
  text-align: left;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .button4 {
    padding: 20px 40px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .button4 {
    font-size: 18px;
  }
}
.button4 span.serif {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .button4 span.serif {
    font-size: 14px;
  }
}
.button4 span.description {
  margin-top: 30px;
  font-size: 14px;
  font-weight: normal;
  display: block;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .button4 span.description {
    margin-top: 20px;
  }
}

.textlink1, .textlink2 {
  transition: all 0.3s;
  border-bottom: 1px solid #000;
  color: #000;
}
.textlink1:hover, .textlink2:hover {
  color: #b10f41;
  text-decoration: none;
  border-bottom: 1px solid #b10f41;
}

.textlink2 {
  font-weight: bold;
}

nav#content-navi, main.main-service nav#content-navi-bottom, nav#content-navi-bottom {
  background-color: #f6f6f6;
  padding: 20px 0;
}
nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  nav#content-navi > ul li, main.main-service nav#content-navi-bottom > ul li, nav#content-navi-bottom > ul li {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul li, main.main-service nav#content-navi-bottom > ul li, nav#content-navi-bottom > ul li {
    margin-bottom: 10px;
  }
  nav#content-navi > ul li:last-child, nav#content-navi-bottom > ul li:last-child {
    margin-bottom: 0;
  }
}
nav#content-navi > ul li.inpage-link, nav#content-navi-bottom > ul li.inpage-link {
  margin-top: 10px;
  width: calc(20% - 5px);
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul li.inpage-link, nav#content-navi-bottom > ul li.inpage-link {
    display: none;
  }
}

div.common-page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  div.common-page-title {
    padding: 40px 20px 30px;
  }
}
div.common-page-title h2 {
  font-size: 50px;
  padding-bottom: 20px;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  div.common-page-title h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  div.common-page-title h2 span {
    line-height: 1.3em;
  }
}
div.common-page-title p {
  margin: 0;
  padding: 30px 0 30px;
}

@media only screen and (min-width: 768px) {
  dl.record-data {
    display: flex;
    flex-wrap: wrap;
  }
}
dl.record-data dt {
  padding: 10px 10px 0;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  dl.record-data dt {
    width: 20%;
    padding: 20px;
    border-bottom: 1px solid #DDDDDD;
  }
}
dl.record-data dt:nth-last-child(2) {
  border: none;
}
dl.record-data dd {
  padding: 0px 10px 10px;
  border-bottom: 1px solid #DDDDDD;
}
@media only screen and (min-width: 768px) {
  dl.record-data dd {
    padding: 20px;
    width: 80%;
  }
}
dl.record-data dd:last-child {
  border: none;
}

html {
  text-align: center;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 767px) {
  html {
    width: 100%;
    overflow-x: hidden;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  padding-top: 62px;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
    overflow-y: hidden;
  }
}

div#nav-open-shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
}

header {
  background-color: #FFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px;
  text-align: left;
}
header > div {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
header h1 {
  font-size: 10px;
}
@media only screen and (max-width: 767px) {
  header h1 img {
    position: relative;
    width: 40%;
    z-index: 10001;
  }
}
@media only screen and (min-width: 768px) {
  header nav > ul {
    position: absolute;
    right: 0;
    top: -16px;
    display: flex;
    font-weight: bold;
  }
  header nav > ul > li {
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  header nav > ul > li > a {
    display: block;
    padding: 15px 10px;
  }
  header nav > ul > li > a:hover {
    color: #b10f41;
  }
  header nav > ul > li::before {
    position: absolute;
    top: calc(100% - 3px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #b10f41;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s cubic-bezier(0.02, 0.7, 0.33, 0.99);
  }
  header nav > ul > li:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header nav > ul > li:hover > div {
    transform: scale(1, 1);
    transition: all 0.3s cubic-bezier(0.02, 0.83, 0.25, 0.99);
  }
  header nav > ul > li:hover > div > div {
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.89, 0.01, 0.98, 0.27);
  }
  header nav > ul > li > div {
    background-color: #FFF;
    position: fixed;
    width: 100vw;
    left: 0;
    top: 62px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
    transform-origin: left top;
    transform: scale(1, 0);
    transition: all 0.3s cubic-bezier(0.89, 0.01, 0.98, 0.27);
  }
  header nav > ul > li > div > div {
    padding: 20pt;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.02, 0.83, 0.25, 0.99);
  }
  header nav > ul > li > div > div h3.heading1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  header nav > ul > li > div > div h3.heading1 span {
    font-size: 16px;
  }
  header nav > ul > li > div > div ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  header nav > ul > li > div > div ul li {
    width: 28%;
    margin-right: 5%;
    margin-bottom: 10px;
  }
  header nav > ul > li > div > div ul li a {
    display: block;
    padding: 10px 10px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    line-height: 1em;
  }
  header nav > ul > li > div > div ul li a img {
    margin-left: 4px;
    width: 14px;
    position: relative;
    top: -1px;
  }
  header nav > ul > li > div > div ul li a span:not(.inline) {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translate(0, -50%);
    font-size: 7px !important;
  }
  header nav > ul > li > div > div ul li a::before {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #000;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s cubic-bezier(0.02, 0.7, 0.33, 0.99);
  }
  header nav > ul > li > div > div ul li a:hover::before {
    border: none;
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header nav > ul > li > div > div ul li a.disable {
    cursor: default;
    color: #AAA;
  }
  header nav > ul > li > div > div ul li a.disable:hover::before {
    transform-origin: right top;
    transform: scale(0, 1);
  }
  header nav > ul > li#gnavi-contact > a, header nav > ul li#gnavi-dl > a {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 767px) {
  header button {
    position: absolute;
    right: -10px;
    top: -12px;
    z-index: 10002;
    outline: none;
  }
  header nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 10000;
    overflow-y: scroll;
    transform-origin: left top;
    transform: scale(1, 0);
    transition: transform 0.4s cubic-bezier(0.79, 0.02, 0.98, 0.27) 0.3s;
  }
  header nav.open {
    transform-origin: left top;
    transform: scale(1, 1);
    transition: transform 0.4s cubic-bezier(0.79, 0.02, 0.98, 0.27);
  }
  header nav.open > ul {
    opacity: 1;
    transition: opacity 0.4s linear 0.4s;
  }
  header nav > ul {
    transition: opacity 0.4s linear;
    opacity: 0;
    padding: 60px 20px 20px;
  }
  header nav > ul > li > a {
    display: block;
    line-height: 1em;
    font-size: 18px;
    font-weight: bold;
    background: url(../images/icon_arrow_r.svg) left 16px no-repeat;
    padding: 10px;
  }
  header nav > ul > li.small > a {
    padding: 10px 10px;
    font-size: 14px;
    background: url(../images/icon_arrow_r.svg) left 14px no-repeat;
  }
  header nav > ul > li.open div {
    display: block;
  }
  header nav > ul > li#small-nav-dl-and-contact {
    background: none;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header nav > ul > li#small-nav-dl-and-contact a {
    background: none;
    width: calc(50% - 10px);
    display: block;
    border: 1px solid #DDDDDD;
    padding: 20px 10px;
    font-size: 14px;
    text-align: center;
  }
  header nav > ul > li > div {
    display: none;
  }
  header nav > ul > li > div h3 {
    display: none;
  }
  header nav > ul > li > div ul {
    margin: 0px 0 10px 20px;
  }
  header nav > ul > li > div ul li a {
    line-height: 1em;
    font-size: 16px;
    display: block;
    padding: 10px;
    font-weight: bold;
  }
  header nav > ul > li > div ul li a img {
    width: 1rem;
    margin-left: 5px;
    position: relative;
    top: -2px;
  }
  header nav > ul > li > div ul li a span {
    display: none !important;
  }
  header nav > ul > li:first-child > div {
    display: block;
  }
}

footer ul#footer-topic-path {
  padding: 30px 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  footer ul#footer-topic-path {
    padding: 20px 20px;
  }
}
footer ul#footer-topic-path li {
  padding: 10px 40px 10px 0;
  position: relative;
  line-height: 1.3em;
  text-align: left;
}
footer ul#footer-topic-path li a {
  color: #666;
  line-height: 1em;
}
footer ul#footer-topic-path li a:hover {
  color: #b10f41;
}
footer ul#footer-topic-path li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  position: absolute;
  right: 18px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
footer ul#footer-topic-path li.current {
  font-weight: bold;
}
footer ul#footer-topic-path li.current::after {
  display: none;
}
footer > div {
  border-top: 1px solid #DDDDDD;
  position: relative;
}
footer > div span#pagetop-button {
  position: absolute;
  top: -65px;
  right: 10px;
  border: 1px solid #DDDDDD;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  footer > div span#pagetop-button {
    top: -70px;
  }
}
@media only screen and (min-width: 768px) {
  footer > div span#pagetop-button {
    right: 20px;
  }
}
footer > div span#pagetop-button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 15px;
}
footer > div span#pagetop-button:hover {
  border: 1px solid #000;
  background-color: #000;
}
footer > div span#pagetop-button:hover img {
  filter: contrast(0%) brightness(300%);
}
footer > div div.footer-contact {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
footer > div div.footer-contact h3 {
  color: #b10f41;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-contact h3 {
    font-size: 24px;
  }
}
footer > div div.footer-contact > p {
  text-align: center;
  font-size: 18px;
  margin: 0 0 30px;
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-contact > p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-contact > ul {
    display: flex;
  }
}
footer > div div.footer-contact > ul li {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-contact > ul li {
    width: calc(50% - 1px);
    padding: 40px 0;
  }
}
footer > div div.footer-contact > ul li h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
footer > div div.footer-contact > ul li p {
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
  line-height: calc(1em + 10px);
}
footer > div div.footer-contact > ul li:first-child {
  border-right: 1px solid #DDDDDD;
}
footer > div div.footer-contact > ul li.single-col {
  border: none !important;
  width: 100%;
}
footer > div div.footer-navi-only {
  border-top: none !important;
}
footer > div div.footer-navi {
  border-top: 1px solid #DDDDDD;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-navi {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-navi {
    padding: 30px 20px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-navi nav {
    width: 100%;
  }
}
footer > div div.footer-navi nav ul {
  padding-top: 5px;
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-navi nav ul {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-navi nav ul {
    margin-bottom: 40px;
  }
}
footer > div div.footer-navi nav ul li {
  margin-right: 30px;
  padding-left: 10px;
  background: url(../images/icon_arrow_r.svg) left 5px no-repeat;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-navi nav ul li {
    margin: 0 0 20px;
  }
}
footer > div div.footer-navi small {
  display: block;
}
@media only screen and (min-width: 768px) {
  footer > div div.footer-navi small {
    width: 50%;
    text-align: right;
  }
}
@media only screen and (max-width: 767px) {
  footer > div div.footer-navi small img {
    width: 50vw;
  }
}

div#loading-fade {
  position: fixed;
  z-index: 20000;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

nav#content-navi, main.main-service nav#content-navi-bottom, nav#content-navi-bottom {
  background-color: #f6f6f6;
  padding: 20px 0;
}
nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  nav#content-navi > ul, main.main-service nav#content-navi-bottom > ul, nav#content-navi-bottom > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  nav#content-navi > ul li, main.main-service nav#content-navi-bottom > ul li, nav#content-navi-bottom > ul li {
    width: calc(50% - 5px);
  }
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul li, main.main-service nav#content-navi-bottom > ul li, nav#content-navi-bottom > ul li {
    margin-bottom: 10px;
  }
  nav#content-navi > ul li:last-child, nav#content-navi-bottom > ul li:last-child {
    margin-bottom: 0;
  }
}
nav#content-navi > ul li.inpage-link, nav#content-navi-bottom > ul li.inpage-link {
  margin-top: 10px;
  width: calc(20% - 5px);
}
@media only screen and (max-width: 767px) {
  nav#content-navi > ul li.inpage-link, nav#content-navi-bottom > ul li.inpage-link {
    display: none;
  }
}

section#index-mainvisual {
  background-color: #f6f6f6;
}
section#index-mainvisual h2 {
  background-color: #FFF;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  section#index-mainvisual h2 {
    padding-bottom: 20px;
  }
}
section#index-mainvisual h2 img {
  width: 1200px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  section#index-mainvisual h2 img {
    height: 140vw;
  }
}
section#index-mainvisual ul {
  background-color: #FFF;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px;
  margin-top: -30px;
}
@media only screen and (min-width: 768px) {
  section#index-mainvisual ul {
    display: flex;
    justify-content: space-between;
    margin-top: -100px;
    padding: 50px;
  }
}
section#index-mainvisual ul li {
  border: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  section#index-mainvisual ul li {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  section#index-mainvisual ul li {
    margin-bottom: 10px;
  }
}
section#index-mainvisual ul li a {
  display: block;
  text-align: left;
  padding: 30px 20px 40px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  section#index-mainvisual ul li a {
    font-size: 10px;
    padding: 15px 15px 30px;
  }
}
section#index-mainvisual ul li a strong {
  display: block;
  font-size: 16px;
}
section#index-mainvisual ul li a div {
  position: absolute;
  z-index: 1;
  background-color: #000;
  color: #FFF;
  padding: 5px 7px 3px;
  line-height: 1em;
  bottom: 0;
  right: 0;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s;
}
section#index-mainvisual ul li a div span {
  font-size: 1em;
}
section#index-mainvisual ul li a:hover {
  color: #FFF;
}
section#index-mainvisual ul li a:hover div {
  background-color: #FFF;
  color: #000;
}
section#index-mainvisual ul li a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #b10f41;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s cubic-bezier(0.02, 0.7, 0.33, 0.99);
}
section#index-mainvisual ul li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

section#index-vision {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
  text-align: left;
}
section#index-vision > div {
  background-color: #FFF;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  section#index-vision > div {
    padding: 30px;
  }
}
section#index-vision > div h3 {
  margin-bottom: 40px;
}
section#index-vision > div div.index-vision-photo {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  section#index-vision > div div.index-vision-photo {
    width: 540px;
    position: absolute;
    right: -100px;
    top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  section#index-vision > div div.index-vision-photo {
    margin-bottom: 30px;
  }
}
section#index-vision > div div.index-vision-photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  section#index-vision > div div.index-vision-photo img {
    width: 540px;
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  section#index-vision > div div.index-vision-photo img {
    width: 100%;
    height: 50vw;
  }
}
section#index-vision > div div.index-vision-photo:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 400px;
  background-color: #b10f41;
  top: 10px;
  left: 10px;
}
@media only screen and (max-width: 767px) {
  section#index-vision > div div.index-vision-photo:after {
    width: 100%;
    height: 50vw;
  }
}
section#index-vision > div p {
  letter-spacing: 1px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  section#index-vision > div p {
    width: 460px;
  }
}
section#index-vision > div div:last-child {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section#index-vision > div div:last-child {
    width: 460px;
  }
}

section#index-group-companies {
  text-align: center;
  padding: 70px 0;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  section#index-group-companies h3 {
    line-height: 1.4em;
  }
}
section#index-group-companies img {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies img {
    width: 100%;
    margin-bottom: 20px;
  }
}
section#index-group-companies > p {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies > p {
    padding: 0 20px;
  }
}
section#index-group-companies > div {
  margin-top: 40px;
  border-top: 10px solid #f6f6f6;
  border-bottom: 10px solid #f6f6f6;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies > div {
    padding: 30px 0;
  }
}
section#index-group-companies > div > h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies > div > h4 {
    font-size: 16px;
  }
}
section#index-group-companies > div ul {
  max-width: 1000px;
  margin: 40px auto 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  section#index-group-companies > div ul {
    padding: 0 20px 0;
  }
}

section#index-service {
  max-width: 1200px;
  margin: 0 auto;
}
section#index-service h3 {
  line-height: 1.3em;
  margin-bottom: 50px;
}
section#index-service ul {
  background-color: #DDDDDD;
  padding: 1px;
}
@media only screen and (min-width: 768px) {
  section#index-service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#index-service ul li {
    width: calc(50% - 0.5px);
  }
}
section#index-service ul li {
  margin-bottom: 1px;
  background-color: #FFF;
}
section#index-service ul li a {
  display: block;
  position: relative;
  z-index: 1;
}
section#index-service ul li a h4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  z-index: 1;
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 30px;
  font-weight: bold;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  section#index-service ul li a h4 {
    font-size: 22px;
  }
}
section#index-service ul li a h4 span {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  color: #ec3017;
  background: -webkit-linear-gradient(0deg, #ec3017 0%, #ec3017 30%, #009980 70%, #009980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1em;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  section#index-service ul li a h4 span {
    font-size: 14px;
  }
}
section#index-service ul li a h4.service-digitalmarketing-heading span {
  color: #ce5bdd;
  background: -webkit-linear-gradient(0deg, #ce5bdd 0%, #ce5bdd 30%, #8cb4f3 70%, #8cb4f3 100%);
  -webkit-background-clip: text;
}
section#index-service ul li a h4.service-creative-heading span {
  color: #fd2c5d;
  background: -webkit-linear-gradient(0deg, #fd2c5d 0%, #fd2c5d 30%, #d911ff 70%, #d911ff 100%);
  -webkit-background-clip: text;
}
section#index-service ul li a h4.service-media-heading span {
  color: #7ac83e;
  background: -webkit-linear-gradient(0deg, #7ac83e 0%, #7ac83e 10%, #1d1f88 90%, #1d1f88 100%);
  -webkit-background-clip: text;
}
section#index-service ul li a h4.service-pr-heading span {
  color: #009980;
  background: -webkit-linear-gradient(0deg, #009980 0%, #009980 10%, #ce0044 50%, #ffb90d 90%, #ffb90d 100%);
  -webkit-background-clip: text;
}
section#index-service ul li a img:last-child {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  section#index-service ul li a img:last-child {
    height: 100px;
  }
}
section#index-service ul li a:hover h4 {
  color: #FFF;
}
section#index-service ul li a:hover h4 span {
  color: #FFF;
  -webkit-text-fill-color: #FFF;
}
section#index-service ul li a:hover img:last-child {
  opacity: 1;
  filter: brightness(50%);
}
section#index-service ul li:last-child {
  margin-bottom: 0;
  width: 100%;
}

section#index-works {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  section#index-works {
    padding: 40px 20px;
  }
}
section#index-works h3 {
  text-align: left;
  margin-bottom: 50px;
}
section#index-works > ul {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  section#index-works > ul {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  section#index-works > ul > li {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  section#index-works > ul > li {
    margin-bottom: 30px;
  }
}
section#index-works > ul > li > ul {
  text-align: left;
  margin-bottom: 10px;
}
section#index-works > ul > li > ul li {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  line-height: 1em;
  font-size: 14px;
  padding: 5px 9px;
  margin-right: 5px;
}
section#index-works > ul > li > div {
  border: 1px solid #DDDDDD;
  width: 100%;
  height: 302px;
}
section#index-works > ul > li > div img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#index-works > ul > li p {
  font-size: 18px;
  line-height: 1.5em;
}
section#index-works > ul > li span.client-name {
  display: block;
  text-align: left;
  font-size: 16px;
}

section#index-news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0 50px;
  background-color: #f6f6f6;
  position: relative;
}
@media only screen and (max-width: 767px) {
  section#index-news {
    padding: 40px 20px;
    text-align: left;
    margin-bottom: 90px;
  }
}
section#index-news h3 {
  position: absolute;
  left: 0;
  top: 40px;
  padding: 20px 40px;
  font-size: 36px;
  font-weight: bold;
  color: #b10f41;
  line-height: 1em;
  background-color: #FFF;
}
@media only screen and (max-width: 767px) {
  section#index-news h3 {
    padding: 20px 60px;
    display: inline-block;
    position: relative;
    left: -20px;
    top: -20px;
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  section#index-news {
    padding-left: 240px;
  }
}
section#index-news > div.index-news-content ul li {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  section#index-news > div.index-news-content ul li {
    display: flex;
  }
}
section#index-news > div.index-news-content ul li time {
  margin-right: 50px;
}
section#index-news > div.index-news-content ul li p {
  margin: 0;
}
section#index-news > div.index-news-content ul li p a {
  font-weight: bold;
}
section#index-news > div.news-index-button {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  section#index-news > div.news-index-button {
    padding-right: 30px;
  }
}
section#index-news > div.news-index-button a {
  background-color: #FFF;
  font-weight: normal;
  font-size: 14px;
  padding: 10px 40px;
}

main.main-service div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-service div.page-title {
    padding: 40px 20px;
  }
}
main.main-service div.page-title h2 {
  font-size: 50px;
  margin-bottom: 70px;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  main.main-service div.page-title h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service div.page-title h2 span {
    line-height: 1.3em;
  }
}
main.main-service div.page-title h3 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.3em;
}
@media only screen and (max-width: 767px) {
  main.main-service div.page-title h3 {
    font-size: 30px;
  }
}
main.main-service section.service-section, main.main-service section.service-section-left {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section, main.main-service section.service-section-left {
    padding: 40px 0;
  }
}
main.main-service section.service-section > img, main.main-service section.service-section-left > img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > img, main.main-service section.service-section-left > img {
    height: 400px;
  }
}
main.main-service section.service-section > div, main.main-service section.service-section-left > div {
  position: relative;
  z-index: 1;
  margin-top: -200px;
  margin-left: 10px;
  background-color: #FFF;
  padding-left: 50px;
}
@media only screen and (min-width: 768px) {
  main.main-service section.service-section > div, main.main-service section.service-section-left > div {
    margin-left: calc((100% - 850px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > div, main.main-service section.service-section-left > div {
    padding: 0 30px 0 20px;
  }
}
main.main-service section.service-section > div > div, main.main-service section.service-section-left > div > div {
  padding: 80px 0px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > div > div, main.main-service section.service-section-left > div > div {
    padding: 50px 0px 20px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-service section.service-section > div > div, main.main-service section.service-section-left > div > div {
    width: 800px;
  }
}
main.main-service section.service-section > div > div h4, main.main-service section.service-section-left > div > div h4 {
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > div > div h4, main.main-service section.service-section-left > div > div h4 {
    font-size: 30px;
  }
}
main.main-service section.service-section > div > div h4 span, main.main-service section.service-section-left > div > div h4 span {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  color: #ec3017;
  background: -webkit-linear-gradient(0deg, #ec3017 0%, #ec3017 30%, #009980 70%, #009980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}
main.main-service section.service-section > div > div h4.service-digitalmarketing-heading span, main.main-service section.service-section-left > div > div h4.service-digitalmarketing-heading span {
  color: #ce5bdd;
  background: -webkit-linear-gradient(0deg, #ce5bdd 0%, #ce5bdd 30%, #8cb4f3 70%, #8cb4f3 100%);
  -webkit-background-clip: text;
}
main.main-service section.service-section > div > div h4.service-creative-heading span, main.main-service section.service-section-left > div > div h4.service-creative-heading span {
  color: #fd2c5d;
  background: -webkit-linear-gradient(0deg, #fd2c5d 0%, #fd2c5d 30%, #d911ff 70%, #d911ff 100%);
  -webkit-background-clip: text;
}
main.main-service section.service-section > div > div h4.service-media-heading span, main.main-service section.service-section-left > div > div h4.service-media-heading span {
  color: #7ac83e;
  background: -webkit-linear-gradient(0deg, #7ac83e 0%, #7ac83e 10%, #1d1f88 90%, #1d1f88 100%);
  -webkit-background-clip: text;
}
main.main-service section.service-section > div > div h4.service-pr-heading span, main.main-service section.service-section-left > div > div h4.service-pr-heading span {
  color: #009980;
  background: -webkit-linear-gradient(0deg, #009980 0%, #009980 10%, #ce0044 50%, #ffb90d 90%, #ffb90d 100%);
  -webkit-background-clip: text;
}
main.main-service section.service-section > div > div > p, main.main-service section.service-section-left > div > div > p {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > div > div > p, main.main-service section.service-section-left > div > div > p {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-service section.service-section > div > div ul, main.main-service section.service-section-left > div > div ul {
    display: flex;
  }
}
main.main-service section.service-section > div > div ul li, main.main-service section.service-section-left > div > div ul li {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  main.main-service section.service-section > div > div ul li, main.main-service section.service-section-left > div > div ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section > div > div ul li, main.main-service section.service-section-left > div > div ul li {
    padding: 20px 0;
  }
}
main.main-service section.service-section > div > div ul li h5, main.main-service section.service-section-left > div > div ul li h5 {
  font-size: 24px;
  text-align: left;
  line-height: 1em;
}
main.main-service section.service-section > div > div ul li h5 span, main.main-service section.service-section-left > div > div ul li h5 span {
  margin-bottom: 10px;
  display: block;
  color: #b10f41;
  font-size: 18px;
}
main.main-service section.service-section > div > div::after, main.main-service section.service-section-left > div > div::after {
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background-color: #DDDDDD;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
main.main-service section.service-section-left > div {
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  main.main-service section.service-section-left > div {
    margin-right: calc((100% - 850px) / 2);
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service section.service-section-left > div {
    margin-right: 10px;
    padding: 0 20px 0 30px;
  }
}
main.main-service section.service-section-left > div > div {
  margin-left: auto;
}
main.main-service section#service-pr > div > div::after {
  height: 0;
}
main.main-service-works div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 30px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-service-works div.page-title {
    padding: 40px 0px;
  }
}
main.main-service-works div.page-title h2 {
  font-size: 50px;
  margin-bottom: 40px;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  main.main-service-works div.page-title h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service-works div.page-title h2 {
    padding: 0 20px;
  }
  main.main-service-works div.page-title h2 span {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service-works div.page-title > p {
    padding: 0 20px;
  }
}
main.main-service-works nav#content-navi, main.main-service-works nav#content-navi-bottom {
  margin-bottom: 30px;
}
main.main-service-works nav.search-navi-button {
  margin-bottom: 0 !important;
}
main.main-service-works nav.search-navi-button ul#year-select {
  margin-bottom: 0 !important;
  text-align: center !important;
}
main.main-service-works nav#search-navi {
  background-color: #F6F6F6;
  padding: 20px 0;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  main.main-service-works nav#search-navi {
    padding: 20px 20px;
  }
}
main.main-service-works nav#search-navi ul.year-select {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  main.main-service-works nav#search-navi ul.year-select {
    margin-bottom: 20px;
  }
}
main.main-service-works nav#search-navi ul.year-select li {
  margin-right: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  main.main-service-works nav#search-navi ul.year-select li {
    margin-right: 10px;
  }
}
main.main-service-works nav#search-navi ul.year-select li a {
  padding: 15px 30px;
}
@media only screen and (max-width: 767px) {
  main.main-service-works nav#search-navi ul.year-select li a {
    padding: 10px 20px;
  }
}
main.main-service-works nav#search-navi ul.year-select li a.current {
  border-bottom: 1px solid #000;
}
main.main-service-works nav#search-navi > div {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #FFF;
  border: 1px solid #DDD;
  padding: 20px;
  text-align: left;
}
main.main-service-works nav#search-navi > div span#small-search-heading {
  display: block;
  position: relative;
}
main.main-service-works nav#search-navi > div span#small-search-heading span {
  font-size: 10px;
  transform: rotate(90deg);
  position: absolute;
  right: 0px;
  top: 8px;
}
main.main-service-works nav#search-navi > div span#small-search-heading.open span {
  transform: rotate(-90deg);
}
main.main-service-works nav#search-navi > div > ul {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  main.main-service-works nav#search-navi > div > ul {
    display: none;
    margin-top: 10px;
  }
}
main.main-service-works nav#search-navi > div > ul li {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  font-size: 14px;
  padding: 4px 6px;
  line-height: 1em;
  margin-right: 5px;
  margin-bottom: 5px;
}
main.main-service-works nav#search-navi > div > ul li:hover {
  background-color: #555;
  cursor: pointer;
}
main.main-service-works nav#search-navi > div > ul li.current {
  background-color: #b10f41;
}
main.main-service-works > h3 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 40px;
  text-align: left;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  main.main-service-works > h3 {
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
main.main-service-works > ul {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-service-works > ul {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-service-works > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
main.main-service-works > ul > li {
  margin-bottom: 70px;
}
main.main-service-works > ul > li:last-child {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  main.main-service-works > ul > li {
    width: calc(50% - 20px);
    margin-bottom: 80px;
  }
}
main.main-service-works > ul > li > ul {
  text-align: left;
  margin-bottom: 10px;
}
main.main-service-works > ul > li > ul li {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  line-height: 1em;
  font-size: 14px;
  padding: 5px 9px;
  margin-right: 5px;
}
main.main-service-works > ul > li span.client-name {
  font-size: 16px;
}
main.main-service-works > ul > li h4 {
  padding: 10px 0 20px;
  font-size: 18px;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
  main.main-service-works > ul > li h4 {
    height: 4.5em;
  }
}
main.main-service-works > ul > li > div.visual > div {
  margin-bottom: 20px;
  border: 1px solid #DDDDDD;
}
main.main-service-works > ul > li > div.visual > div img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  main.main-service-works > ul > li > div.visual > div img {
    height: 60vw;
  }
}
main.main-service-works > ul > li > div.visual p {
  margin: 0;
}
main.main-service-works > ul > li div.view-button {
  text-align: center;
  padding-top: 10px;
}
@media only screen and (min-width: 768px) {
  main.main-service-works > ul > li div.view-button {
    padding-top: 20px;
  }
}
main.main-service-works > ul > li div.view-button a {
  font-size: 16px;
}

section.works-view {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  section.works-view {
    padding: 0px 20px 20px;
  }
}
section.works-view > ul {
  text-align: left;
  margin-bottom: 10px;
}
section.works-view > ul li {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  line-height: 1em;
  font-size: 14px;
  padding: 5px 9px;
  margin-right: 5px;
}
section.works-view span.client-name {
  font-size: 16px;
}
section.works-view h4 {
  padding: 10px 0 20px;
  font-size: 24px;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
  section.works-view h4 {
    height: 4.5em;
  }
}
section.works-view > div.visual > div {
  margin-bottom: 40px;
  border: 1px solid #DDDDDD;
}
section.works-view > div.visual > div img {
  width: 100%;
  height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  section.works-view > div.visual > div img {
    height: 60vw;
  }
}
section.works-view > div.visual p {
  margin: 0;
}
section.works-view img.frame {
  border: 1px solid #DDD;
}
@media only screen and (max-width: 767px) {
  section.works-view img.frame {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  section.works-view div.description {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) {
  section.works-view div.description > div {
    width: calc(50% - 20px);
  }
}
section.works-view div.description > div p {
  margin: 0 0 20px;
}
section.works-view div.description > div img {
  border: 1px solid #DDD;
}
@media only screen and (max-width: 767px) {
  section.works-view div.description > div img {
    margin-bottom: 40px;
  }
}

div.index-button {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  div.index-button {
    padding-bottom: 40px;
  }
}
div.index-button a span {
  right: auto;
  left: 10px;
  transform: translate(0, -50%) rotate(180deg);
}

main.main-service-products div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 40px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-service-products div.page-title {
    padding: 40px 20px 20px;
  }
}
main.main-service-products div.page-title h2 {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  main.main-service-products div.page-title h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service-products div.page-title h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service-products div.page-title h2 {
    line-height: 1.3em;
  }
  main.main-service-products div.page-title h2 span {
    line-height: 1.3em;
  }
}
main.main-service-products section#serivce-products {
  background-color: #F6F6F6;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products {
    padding: 30px 0;
  }
}
main.main-service-products section#serivce-products > div {
  background-color: #FFF;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div {
    padding: 30px 20px;
  }
}
main.main-service-products section#serivce-products > div h3 {
  line-height: 1em;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div h3 {
    font-size: 30px;
  }
}
main.main-service-products section#serivce-products > div > p {
  font-size: 14px;
}
main.main-service-products section#serivce-products > div > ul.yomiuri-media {
  margin-bottom: 90px;
}
main.main-service-products section#serivce-products > div > ul > li {
  border-bottom: 1px solid #DDD;
  padding: 30px 0;
}
main.main-service-products section#serivce-products > div > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
main.main-service-products section#serivce-products > div > ul > li > ul > li {
  display: inline-block;
  background-color: #000;
  color: #FFF;
  line-height: 1em;
  font-size: 12px;
  padding: 2px;
}
main.main-service-products section#serivce-products > div > ul > li h4 {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div > ul > li h4 {
    font-size: 22px;
  }
}
main.main-service-products section#serivce-products > div > ul > li > div {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div > ul > li > div {
    flex-wrap: wrap;
  }
}
main.main-service-products section#serivce-products > div > ul > li > div > div:first-child {
  width: 150px;
  height: 150px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div > ul > li > div > div:first-child {
    width: 35vw;
    height: 35vw;
  }
}
main.main-service-products section#serivce-products > div > ul > li > div > div:first-child img {
  width: 100%;
}
main.main-service-products section#serivce-products > div > ul > li > div > div:first-child img.logo {
  width: 90%;
}
main.main-service-products section#serivce-products > div > ul > li > div > div:first-child img.small-logo {
  width: 70%;
}
main.main-service-products section#serivce-products > div > ul > li > div p:nth-child(2) {
  padding: 0 40px 0 20px;
  margin: 0;
  width: calc(100% - 150px - 240px);
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div > ul > li > div p:nth-child(2) {
    width: calc(100% - 35vw);
    padding: 0 0 0 20px;
  }
}
main.main-service-products section#serivce-products > div > ul > li > div > div:last-child {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  main.main-service-products section#serivce-products > div > ul > li > div > div:last-child {
    width: 240px;
    min-height: 150px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-service-products section#serivce-products > div > ul > li > div > div:last-child {
    padding-top: 20px;
    width: 100%;
  }
}
main.main-service-products section#serivce-products > div > ul > li > div > div:last-child a {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 16px;
}
main.main-service-products section#serivce-products > div > ul > li > div > div:last-child a img {
  margin-left: 4px;
  width: 14px;
  position: relative;
  top: -2px;
  transition: all 0.2s;
}
main.main-service-products section#serivce-products > div > ul > li > div > div:last-child a:hover img {
  filter: invert(1);
}

main.main-about section#company-data, main.main-about section#company-history {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  main.main-about section#company-data, main.main-about section#company-history {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-about section#company-data h3, main.main-about section#company-history h3 {
    padding-top: 50px;
  }
}
main.main-about section#company-data > div, main.main-about section#company-history > div {
  margin: 0 auto;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  main.main-about section#company-data > div, main.main-about section#company-history > div {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-about section#company-data > div, main.main-about section#company-history > div {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  main.main-about section#company-history > div dl dt {
    padding: 15px;
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  main.main-about section#company-history > div dl dd {
    padding: 15px;
    padding-left: 0px;
    padding-top: 17px;
    width: 75%;
  }
}
main.main-about section#about-group {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  main.main-about section#about-group {
    padding: 0 20px;
  }
  main.main-about section#about-group h3 {
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 768px) {
  main.main-about section#about-group h3 {
    padding-top: 50px;
  }
}
main.main-about section#about-group > h4 {
  margin-top: 80px;
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main.main-about section#about-group > h4 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-about section#about-group > h4 {
    font-size: 24px;
  }
}
main.main-about section#about-group > h5 {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  main.main-about section#about-group > h5 {
    font-size: 16px;
  }
}
main.main-about section#about-group div.group-section {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-about section#about-group div.group-section {
    padding: 0;
  }
}
main.main-about section#about-group div.group-section > h4 {
  font-size: 24px;
  font-weight: bold;
  padding: 30px 0;
  border-bottom: 1px solid #DDD;
}
main.main-about section#about-group div.group-section > ul.type1 > li {
  padding: 30px 20px;
  border-bottom: 1px solid #DDD;
  position: relative;
}
main.main-about section#about-group div.group-section > ul.type1 > li > img {
  width: 200px;
  margin-bottom: 15px;
}
main.main-about section#about-group div.group-section > ul.type1 > li > h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 10px;
}
main.main-about section#about-group div.group-section > ul.type1 > li > p {
  margin: 0;
}
main.main-about section#about-group div.group-section > ul.type1 > li div.link-button {
  padding-top: 20px;
  text-align: center;
}
main.main-about section#about-group div.group-section > ul.type1 > li div.link-button > a {
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  main.main-about section#about-group div.group-section > ul.type1 > li div.link-button > a {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
main.main-about section#about-group div.group-section > ul.type1 > li div.link-button > a img {
  position: relative;
  top: -1px;
  margin-left: 3px;
  width: 14px;
}
main.main-about section#about-group div.group-section > ul.type1 > li div.link-button > a:hover img {
  filter: invert(1);
}

div#group-banner h4 {
  border: none !important;
}
div#group-banner ul {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div#group-banner ul li {
  width: 23.5%;
  padding: 0px 10px 10px;
}
@media only screen and (max-width: 767px) {
  div#group-banner ul li {
    width: 49%;
  }
}
div#group-banner ul li a:hover {
  opacity: 0.7;
}
div#group-banner ul li img {
  width: 100%;
}

main.main-contact section#contact-faq {
  background-color: #f6f6f6;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq {
    padding: 0 10px;
  }
}
main.main-contact section#contact-faq > div {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 30px 0;
}
main.main-contact section#contact-faq > div div#faq-expand-button::after {
  height: 0;
}
main.main-contact section#contact-faq > div div#faq-expand-button span:last-child {
  top: calc(50% - 0.5em);
  transform: rotate(90deg);
}
main.main-contact section#contact-faq > div div#faq-expand-button.open span:last-child {
  transform: rotate(-90deg);
}
main.main-contact section#contact-faq > div div.faq-content {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq > div > div.faq-content {
    display: none;
  }
}
main.main-contact section#contact-faq > div h3 {
  margin-bottom: 30px;
}
main.main-contact section#contact-faq > div dl {
  margin-bottom: 20px;
  border: 1px solid #DDDDDD;
  padding: 20px 30px 20px 60px;
  background-color: #FFF;
  line-height: 1.8em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq > div dl {
    padding: 20px 40px 20px 60px;
  }
}
main.main-contact section#contact-faq > div dl dt {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq > div dl dt {
    font-size: 14px;
  }
}
main.main-contact section#contact-faq > div dl dt span:first-child {
  color: #b10f41;
  font-size: 18px;
  position: absolute;
  left: 30px;
  top: 20px;
}
main.main-contact section#contact-faq > div dl dt span:last-child {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 11px;
  transition: transform 0.3s;
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq > div dl dt span:last-child {
    top: 26px;
  }
}
main.main-contact section#contact-faq > div dl dt.open span:last-child {
  transform: rotate(-90deg);
}
main.main-contact section#contact-faq > div dl dt:hover {
  color: #666;
}
main.main-contact section#contact-faq > div dl dd {
  display: none;
  margin-top: 20px;
  line-height: 1.8em;
}
main.main-contact section#contact-faq > div dl dd a.button1 {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-faq > div dl dd a.button1 {
    padding: 10px 40px 10px 30px;
    font-weight: normal;
    font-size: 14px;
  }
}
main.main-contact section#contact-faq > div dl dd a.button1 span {
  transform: rotate(90deg);
  top: 35%;
}
main.main-contact section#contact-form > div:first-child {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 100px 0 50px;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:first-child {
    padding: 40px 20px 20px;
  }
}
main.main-contact section#contact-form > div:first-child.confirm {
  padding: 50px 0 50px;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:first-child.confirm {
    padding: 40px 20px 20px;
  }
}
main.main-contact section#contact-form > div:first-child p {
  padding-top: 30px;
  margin: 0;
}
main.main-contact section#contact-form > div:nth-child(2) {
  background-color: #f6f6f6;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:nth-child(2) {
    padding: 30px 0;
  }
}
main.main-contact section#contact-form > div:nth-child(2) dl {
  max-width: 800px;
  margin: 0 auto 50px;
  background-color: #FFF;
  padding: 50px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:nth-child(2) dl {
    padding: 20px;
  }
}
main.main-contact section#contact-form > div:nth-child(2) dl dt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 15px;
}
main.main-contact section#contact-form > div:nth-child(2) dl dt span.require, main.main-contact section#contact-form > div:nth-child(2) dl dt span.optional {
  display: inline-block;
  padding: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
  background-color: #b10f41;
  line-height: 1em;
  color: #FFF;
  position: relative;
  top: -1px;
}
main.main-contact section#contact-form > div:nth-child(2) dl dt span.optional {
  background-color: #DDDDDD;
  color: #000;
  font-weight: normal;
}
main.main-contact section#contact-form > div:nth-child(2) dl dd {
  margin-bottom: 30px;
  line-height: 1.8em;
}
main.main-contact section#contact-form > div:nth-child(2) dl dd input[type=radio] {
  margin-right: 5px;
}
main.main-contact section#contact-form > div:nth-child(2) dl dd textarea {
  margin-top: 10px;
  width: 100%;
  border: 1px solid #DDDDDD;
  height: 10em;
  padding: 10px;
  font-weight: normal;
}
main.main-contact section#contact-form > div:nth-child(2) dl dd input[type=text], main.main-contact section#contact-form > div:nth-child(2) dl dd input[type=email], main.main-contact section#contact-form > div:nth-child(2) dl dd input[type=tel] {
  width: 100%;
  padding: 10px;
  border: 1px solid #DDDDDD;
}
main.main-contact section#contact-form > div:nth-child(2) dl dd:last-child {
  margin-bottom: 0;
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper {
  max-width: 800px;
  margin: 0 auto 50px;
  background-color: #FFF;
  padding: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper {
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper {
    padding: 20px;
  }
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper > p {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper > p {
    text-align: left;
  }
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper div.tsuchijiko {
  width: 100%;
  text-align: center;
  height: 200px;
  text-align: left;
  font-weight: normal;
  padding: 10px;
  line-height: 1.8em;
  overflow-y: scroll;
  border: 1px solid #DDDDDD;
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper > label {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper > label input {
  margin-right: 5px;
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper div.g-recaptcha {
  text-align: center;
}
main.main-contact section#contact-form > div:nth-child(2) div.tsuchijiko-wrapper div.g-recaptcha > div {
  margin: 0 auto;
}
main.main-contact section#contact-form > div:nth-child(2) a.button1 {
  background-color: #FFF;
  cursor: pointer;
}
main.main-contact section#contact-form > div:nth-child(2) .inline {
  display: inline;
}
main.main-contact section#contact-form > div:nth-child(2) .button-back {
  width: 250px;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  padding: 15px 0px;
  border: 1px solid #DDDDDD;
  position: relative;
  z-index: 1;
  background-color: #FFF;
  color: #888;
}
main.main-contact section#contact-form > div:nth-child(2) .button-back span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%) rotate(-180deg);
  font-size: 10px;
}
main.main-contact section#contact-form > div:nth-child(2) .button-back:hover {
  color: #000;
  background-color: #f6f6f6;
}
main.main-contact section#contact-form > div:nth-child(2) .button-submit {
  width: 250px;
  display: inline-block;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
  padding: 15px 0px;
  border: 1px solid #DDDDDD;
  position: relative;
  z-index: 1;
  background-color: #b10f41;
  color: #FFF;
  letter-spacing: 3px;
}
main.main-contact section#contact-form > div:nth-child(2) .button-submit span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 10px;
}
main.main-contact section#contact-form > div:nth-child(2) .button-submit:hover {
  opacity: 0.5;
  color: #FFF;
}
main.main-contact section#contact-form div.finish-back-button {
  text-align: center;
  padding: 50px;
}
main.main-contact p.error-title {
  background-color: #b10f41;
  color: #FFF;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  font-size: 16px;
}
main.main-contact div.error {
  background-color: #b10f41;
  color: #FFF;
  padding: 10px;
  margin-bottom: 10px;
}
main.main-contact div.error em {
  font-style: normal;
}

main.main-recruit div.recruit-mainvisual {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  main.main-recruit div.recruit-mainvisual {
    padding: 20px 0;
  }
}
main.main-recruit div.recruit-mainvisual p {
  padding: 20px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main.main-recruit div.recruit-mainvisual p {
    padding: 25px;
    text-align: left;
  }
}
main.main-recruit section#recruit-career {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  main.main-recruit section#recruit-career {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-recruit section#recruit-career h3 {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
main.main-recruit section#recruit-career > p {
  font-size: 16px;
}
main.main-recruit section#recruit-career > div {
  margin: 0 auto;
  padding: 10px 0 50px;
}
@media only screen and (min-width: 768px) {
  main.main-recruit section#recruit-career > div {
    max-width: 960px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-recruit section#recruit-career > div {
    padding: 20px 0;
  }
}

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

main.main-dl #dl-carrier {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 5px;
}
main.main-dl #dl-carrier:after {
  content: "";
  display: table;
  clear: both;
}
main.main-dl #dl-carrier p {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  main.main-dl #dl-carrier p {
    padding: 25px;
    text-align: left;
  }
}
main.main-dl #dl-carrier .dl-list-wrap {
  width: 95%;
  padding-top: 70px;
  margin: -50px auto 50px;
}
main.main-dl #dl-carrier .dl-list-wrap div {
  padding-right: 20px;
}
main.main-dl #dl-carrier .dl-list-wrap div h3 {
  font-weight: bold;
  font-size: 24px;
  text-align: left;
}
main.main-dl #dl-carrier .dl-list-wrap div p {
  margin-top: 0;
  padding-top: 10px;
}
main.main-dl #dl-carrier .dl-list-wrap div p span {
  font-weight: bold;
}
main.main-dl #dl-carrier .dl-list-wrap div p a {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-dl #dl-carrier .dl-list-wrap div p a.button1 {
    padding: 20px;
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}
main.main-dl #dl-carrier .dl-list-wrap div img.only_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  main.main-dl #dl-carrier .dl-list-wrap div img.only_sp {
    display: block;
    width: 270px;
    height: auto;
    margin: 0 auto 20px;
  }
}
main.main-dl #dl-carrier .dl-list-wrap img {
  width: 80%;
  border: 1px solid #DDDDDD;
  margin-left: 20px;
}

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

main.main-sitemap #sitemap-carrier {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 5px;
}
main.main-sitemap #sitemap-carrier:after {
  content: "";
  display: table;
  clear: both;
}
main.main-sitemap #sitemap-carrier p {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  main.main-sitemap #sitemap-carrier p {
    padding: 25px;
    text-align: left;
  }
}
main.main-sitemap #sitemap-carrier a:hover {
  color: #b10f41;
}
main.main-sitemap #sitemap-carrier ul {
  margin: 50px auto 0;
}
main.main-sitemap #sitemap-carrier ul li {
  text-align: left;
}
main.main-sitemap #sitemap-carrier ul li.title {
  margin-top: 40px;
  font-weight: bold;
  font-size: 16px;
}
main.main-sitemap #sitemap-carrier ul li ul {
  font-weight: normal;
  padding-left: 20px;
  margin: 10px auto;
}
main.main-sitemap #sitemap-carrier ul li ul li {
  padding-bottom: 15px;
  padding-left: 10px;
  background: url(/images/icon_arrow_r.svg) left 5px no-repeat;
  line-height: 1.2em;
}
main.main-sitemap #sitemap-carrier ul li ul li.sub {
  margin: 20px auto;
  font-weight: bold;
}
main.main-sitemap #sitemap-carrier ul span {
  color: #ddd;
}

main.main-csr div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 30px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-csr div.page-title {
    padding: 40px 20px 0px;
  }
}
main.main-csr div.page-title h2 {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  main.main-csr div.page-title h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-csr div.page-title h2 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-csr div.page-title h2 span {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 767px) {
  main.main-csr div.page-title p {
    margin: 0;
  }
}
main.main-csr section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-csr section {
    padding: 20px 10px 10px;
  }
}
main.main-csr section h3 {
  font-size: 36px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main.main-csr section h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-csr section h3 {
    padding: 0 10px;
  }
}
main.main-csr section > p {
  line-height: 2em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  main.main-csr section > p {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
main.main-csr section > dl {
  align-items: center;
  border-top: 1px solid #DDDDDD;
}
@media only screen and (min-width: 768px) {
  main.main-csr section > dl {
    margin-left: 40px;
  }
}
main.main-csr section > dl:last-child {
  border-bottom: 1px solid #DDDDDD;
}
main.main-csr section > dl dt {
  font-size: 18px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  main.main-csr section > dl dt span {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
}
main.main-csr section > dl dd p {
  margin: 0;
}
main.main-csr section#csr-compliance dl {
  border-bottom: 1px solid #DDDDDD;
}
@media only screen and (min-width: 768px) {
  main.main-csr section#csr-compliance dl dd {
    display: flex;
  }
  main.main-csr section#csr-compliance dl dd p {
    width: calc(100% - 100px);
    padding-right: 30px;
  }
  main.main-csr section#csr-compliance dl dd div {
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-csr section#csr-compliance dl dd div {
    padding: 10px 0 20px;
    text-align: center;
  }
  main.main-csr section#csr-compliance dl dd div img {
    width: 100px;
  }
}
@media only screen and (min-width: 768px) {
  main.main-csr section#csr-improvement dl dt {
    width: 250px;
  }
  main.main-csr section#csr-improvement dl dd {
    width: calc(100% - 250px);
  }
  main.main-csr section#csr-covid-19 dl dt {
    width: 250px;
  }
  main.main-csr section#csr-covid-19 dl dd {
    width: calc(100% - 250px);
  }
  main.main-csr section#csr-safety {
    padding-top: 80px;
    margin-top: -80px;
  }
  main.main-csr section#csr-safety dl dt {
    width: 250px;
  }
  main.main-csr section#csr-safety dl dd {
    width: calc(100% - 250px);
  }
}

main.main-privacy div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 30px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-privacy div.page-title {
    padding: 40px 20px 0px;
  }
}
main.main-privacy div.page-title h2 {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 1.2em;
}
@media only screen and (max-width: 767px) {
  main.main-privacy div.page-title h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy div.page-title h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy div.page-title h2 span {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy div.page-title p {
    margin: 0;
  }
}
main.main-privacy > section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section {
    padding: 0 10px;
  }
}
main.main-privacy > section h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4em;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section h3 {
    font-size: 30px;
  }
}
main.main-privacy > section > p {
  line-height: 2em;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section > p {
    margin-bottom: 20px;
  }
}
main.main-privacy > section > ol {
  padding: 30px 30px 30px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section > ol {
    padding: 20px 0px;
  }
}
main.main-privacy > section > ol li {
  padding: 30px 20px;
  border-bottom: 1px solid #DDDDDD;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section > ol li {
    padding: 20px 0px;
  }
}
main.main-privacy > section > ol li h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  padding-left: 1.5em;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section > ol li h4 {
    font-size: 18px;
  }
}
main.main-privacy > section > ol li h4 span {
  position: absolute;
  left: 0;
  top: 0;
}
main.main-privacy > section#privacy-housin > div {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section#privacy-housin > div a {
    font-size: 16px;
    padding: 15px 40px;
  }
}
main.main-privacy > section#privacy-housin small {
  padding-right: 30px;
  margin-top: 30px;
  display: block;
  text-align: right;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section#privacy-housin small {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section#privacy-tokutei {
    padding-top: 50px;
  }
}
main.main-privacy > section#privacy-tokutei small {
  padding-right: 30px;
  margin-top: 30px;
  display: block;
  text-align: right;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section#privacy-tokutei small {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy > section#privacy-tokutei small {
    margin-top: 20px;
  }
}
main.main-privacy section#privacy-kojinjoho > div {
  max-width: 900px;
  margin: 0 auto;
}
main.main-privacy section#privacy-kojinjoho > div > h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 20px 20px 0;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div > h4 {
    padding: 20px 0px 0;
  }
}
main.main-privacy section#privacy-kojinjoho > div > h4 + p {
  padding: 0 20px 20px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div > h4 + p {
    padding: 0;
  }
}
main.main-privacy section#privacy-kojinjoho > div table {
  width: 100%;
}
main.main-privacy section#privacy-kojinjoho > div table tr {
  border-bottom: 1px solid #DDDDDD;
}
main.main-privacy section#privacy-kojinjoho > div table tr th {
  background-color: #f6f6f6;
  font-size: 18px;
  line-height: 1em;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div table tr th {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div table tr th {
    padding: 20px 10px;
  }
}
main.main-privacy section#privacy-kojinjoho > div table tr td {
  vertical-align: top;
  line-height: 1.5em;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div table tr td {
    padding: 20px 10px;
  }
}
main.main-privacy section#privacy-kojinjoho > div table + p {
  padding: 40px 20px 20px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho > div table + p {
    padding: 30px 0px 20px;
  }
}
main.main-privacy section#privacy-kojinjoho div#privacy-contact-wrapper {
  padding: 60px 20px;
}
main.main-privacy section#privacy-kojinjoho div#privacy-contact-wrapper h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
}
main.main-privacy section#privacy-kojinjoho div#privacy-contact-wrapper div.privacy-contact {
  border: none;
  margin-top: 0;
  padding: 30px 50px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho div#privacy-contact-wrapper div.privacy-contact {
    padding: 30px 0px;
  }
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki {
  padding: 0px 20px;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki {
    padding: 0px 0px;
  }
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki h4 {
    padding: 0px 10px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki h4 + p {
    padding: 0px 10px;
  }
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki ul li {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki ul li {
    padding: 30px 10px;
  }
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki ul li h5 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki ul li p {
  margin: 0;
}
main.main-privacy section#privacy-kojinjoho div.privacy-tetsuduki ul li:not(:last-child) {
  border-bottom: 1px solid #DDDDDD;
}

div.privacy-contact {
  border-top: 1px solid #DDDDDD;
  padding: 30px 0;
  margin: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  div.privacy-contact {
    width: 940px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto 0;
  }
}
div.privacy-contact div {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  div.privacy-contact div:nth-child(1) {
    width: 50%;
  }
  div.privacy-contact div:nth-child(2) {
    width: 50%;
  }
}
div.privacy-contact div:last-child {
  margin-bottom: 0;
}
div.privacy-contact div h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
div.privacy-contact div a.button1 {
  font-size: 16px;
  padding: 15px 40px;
}

main.main-news div.page-title {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0 30px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-news div.page-title {
    padding: 40px 20px 0px;
  }
}
main.main-news div.page-title h2 {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 1.2em;
}
@media only screen and (max-width: 767px) {
  main.main-news div.page-title h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-news div.page-title h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-news div.page-title h2 span {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 767px) {
  main.main-news div.page-title p {
    margin: 0;
  }
}
main.main-news > section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  main.main-news > section {
    padding: 0 20px;
  }
}
main.main-news > section h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  main.main-news > section h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  main.main-news > section h3 {
    margin-bottom: 0px;
  }
}
main.main-news > section ul {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  main.main-news > section ul {
    margin-left: 30px;
  }
}
main.main-news > section ul li {
  border-bottom: 1px solid #DDD;
  padding: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  main.main-news > section ul li {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) {
  main.main-news > section ul li {
    padding-left: 220px;
  }
}
main.main-news > section ul li time {
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  main.main-news > section ul li time {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  main.main-news > section ul li time {
    position: absolute;
    left: 20px;
    top: 20px;
  }
}
main.main-news > section ul li p {
  margin: 0;
}
main.main-news section#news-view h3 {
  font-size: 30px;
  line-height: 1.5em;
  padding-bottom: 10px;
  border-bottom: 5px solid #F6F6F6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  main.main-news section#news-view h3 {
    font-size: 24px;
  }
}
main.main-news section#news-view time {
  display: block;
  font-size: 16px;
  margin-bottom: 40px;
}
main.main-news section#news-view h4 {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
}
main.main-news section#news-view p {
  font-size: 14px;
  line-height: 2em;
  margin: 0 0 20px;
}
main.main-news section#news-view div.col {
  padding: 30px 0;
}
@media only screen and (min-width: 768px) {
  main.main-news section#news-view div.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  main.main-news section#news-view div.flex div.flex-item-90 {
    width: calc(90% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-80 {
    width: calc(80% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-70 {
    width: calc(70% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-60 {
    width: calc(60% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-50 {
    width: calc(50% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-40 {
    width: calc(40% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-30 {
    width: calc(30% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-20 {
    width: calc(20% - 20px);
  }
  main.main-news section#news-view div.flex div.flex-item-10 {
    width: calc(10% - 20px);
  }
}/*# sourceMappingURL=style.css.map */