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

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

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

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

a img {
  border: none; }

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

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  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: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    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: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: .3s; }
  a:hover {
    opacity: .5; }

.inner {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto; }

.loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #444;
  z-index: 10000; }

.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  position: absolute;
  top: 41%;
  left: 48%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }
  @media only screen and (max-width: 767px) {
    .loader {
      top: 38%;
      left: 44%; } }

.loader:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: ''; }

.loader:after {
  background: #444;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

body {
  opacity: 0;
  transition: 1s; }

.top-top {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 40px;
  display: none;
  z-index: 99; }
  @media only screen and (max-width: 767px) {
    .top-top {
      right: 10px;
      bottom: 20px; } }

#footer {
  border-top: 3px solid #000;
  padding: 82px 0 20px;
  background: #fff;
  color: #000; }
  @media only screen and (max-width: 767px) {
    #footer {
      padding: 48px 0 27px; } }
  #footer .footer-list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center; }
    #footer .footer-list li {
      margin: 0 35px; }
      #footer .footer-list li a {
        font-size: 24px;
        font-size: 2.4rem;
        font-family: Oswald,helvetica; }
  #footer .box {
    margin: 60px 0 0; }
    @media only screen and (max-width: 767px) {
      #footer .box {
        margin: 52px 0 0; } }
    #footer .box .logo {
      display: block;
      margin: 0 auto;
      width: 94px; }
    #footer .box .logo2 {
      width: 187px; }
    #footer .box address {
      display: block;
      text-align: center;
      font-family: helvetica; }
      #footer .box address span {
        display: block;
        font-size: 14px;
        font-size: 1.4rem;
        margin: 18px 0 8px; }
      #footer .box address small {
        display: block;
        font-size: 11px;
        font-size: 1.1rem; }
    #footer .box p {
      text-align: center;
      font-size: 14px;
      font-size: 1.4rem;
      font-family: helvetica;
      margin: 16px 0 0; }
      #footer .box p a, #footer .box p span {
        display: inline-block;
        margin: 0 7px; }
  #footer .copyright {
    text-align: center;
    margin: 102px 0 0;
    font-size: 11px;
    font-size: 1.1rem;
    font-family: helvetica; }

.sitemap-btn {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Oswald,helvetica;
  padding: 10px;
  border: 1px solid #000;
  display: block;
  text-align: center;
  width: 150px;
  margin: 48px auto 0;
  color: #000; }
  @media only screen and (max-width: 767px) {
    .sitemap-btn {
      margin: 56px auto 0; } }
  .sitemap-btn:hover {
    opacity: 1;
    color: #fff;
    background: #000; }

#head, #headfixed {
  border-bottom: 4px solid #000; }
  @media only screen and (max-width: 767px) {
    #head, #headfixed {
      height: 92px;
      z-index: 9999; } }
  #head .head__top, #headfixed .head__top {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    display: -webkit-flex;
    display: flex; }
    @media only screen and (max-width: 767px) {
      #head .head__top, #headfixed .head__top {
        top: 22px;
        z-index: 9998; } }
    #head .head__top .sns-list, #headfixed .head__top .sns-list {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #head .head__top .sns-list li, #headfixed .head__top .sns-list li {
        margin-right: 25px;
        width: 25px; }
        @media only screen and (max-width: 767px) {
          #head .head__top .sns-list li, #headfixed .head__top .sns-list li {
            margin-right: 20px; } }
        #head .head__top .sns-list li:nth-of-type(2), #headfixed .head__top .sns-list li:nth-of-type(2) {
          width: 18px; }
        #head .head__top .sns-list li:nth-of-type(3), #headfixed .head__top .sns-list li:nth-of-type(3) {
          width: 24px; }
    #head .head__top .studio-btn, #headfixed .head__top .studio-btn {
      display: block;
      width: 200px; }

#headfixed .head__top {
  top: 16px;
  right: -70px; }
  #headfixed .head__top .studio-btn {
    display: none; }

#headfixed h1 {
  margin-right: 20px; }
  #headfixed h1 a {
    display: block; }
    #headfixed h1 a img {
      width: auto;
      height: 40px; }

@media only screen and (min-width: 768px) {
  #globalNavi ul {
    width: 1200px; } }

@media only screen and (max-width: 767px) {
  #globalNavi {
    height: auto;
    position: fixed;
    top: 92px;
    bottom: 0;
    left: -100%;
    background: #000;
    transition: .8s;
    overflow-y: scroll;
    padding-bottom: 50px;
    display: block !important; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active {
    left: 0; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li a {
    -webkit-transform: translate(0px, 0);
    -moz-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    transform: translate(0px, 0); } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(1) a {
    transition-delay: .5s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(2) a {
    transition-delay: .55s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(3) a {
    transition-delay: .6s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(4) a {
    transition-delay: .65s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(5) a {
    transition-delay: .7s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(6) a {
    transition-delay: .75s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(7) a {
    transition-delay: .8s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(8) a {
    transition-delay: .85s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(9) a {
    transition-delay: .9s; } }

@media only screen and (max-width: 767px) {
  #globalNavi.is-active ul li:nth-of-type(10) a {
    transition-delay: .95s; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul {
    display: block;
    top: auto;
    left: auto;
    position: static;
    text-align: left;
    padding: 0 10px; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul li a {
    color: #fff;
    padding: 20px 10px;
    display: block;
    font-size: 20px;
    font-size: 2rem;
    font-family: Oswald,helvetica;
    -webkit-transform: translate(-100px, 0);
    -moz-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    -o-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
    transition: .8s; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul li {
    border-bottom: 1px solid #fff; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul .n03, #globalNavi ul .n03-1 {
    border-bottom: 1px dotted #fff; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul .n03-1 a, #globalNavi ul .n03-2 a {
    position: relative;
    padding-left: 30px; } }

@media only screen and (max-width: 767px) {
  #globalNavi ul .n03-1 a:before, #globalNavi ul .n03-2 a:before {
    content: "";
    width: 10px;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%); } }

.gnav-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  top: 25px;
  left: 20px; }
  .gnav-toggle .hamburger-box {
    width: 30px;
    height: 22px; }
    .gnav-toggle .hamburger-box .hamburger-inner {
      width: 30px;
      height: 1px; }
      .gnav-toggle .hamburger-box .hamburger-inner:before {
        width: 30px;
        height: 1px; }
      .gnav-toggle .hamburger-box .hamburger-inner:after {
        width: 30px;
        height: 1px; }

.ttl02 {
  font-family: Oswald,helvetica;
  font-size: 60px;
  font-size: 6rem;
  text-align: center;
  font-weight: 600;
  color: #000; }
  @media only screen and (max-width: 767px) {
    .ttl02 {
      font-size: 40px;
      font-size: 4rem; } }

@media only screen and (min-width: 768px) {
  #main.seminar {
    background: #fff !important; } }

#m01 h2 {
  font-family: helvetica;
  font-weight: bold; }

.link-calender {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .link-calender {
      font-size: 14px;
      font-size: 1.4rem; } }
  .link-calender:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: translate(0, 0%) rotate(45deg);
    -moz-transform: translate(0, 0%) rotate(45deg);
    -ms-transform: translate(0, 0%) rotate(45deg);
    -o-transform: translate(0, 0%) rotate(45deg);
    transform: translate(0, 0%) rotate(45deg);
    display: inline-block;
    margin-left: 10px; }

#navi-muku li a {
  height: auto; }

@media only screen and (min-width: 768px) {
  #mwrap {
    margin: 42px 0 0; } }

@media only screen and (max-width: 767px) {
  #mwrap {
    padding: 92px 0 50px; } }

/* --------------------------------

Main Components

-------------------------------- */
@media only screen and (min-width: 1050px) {
  body[data-hijacking="on"] {
    overflow: hidden; } }

.cd-section {
  height: 100vh; }

.cd-section h2 {
  line-height: 100vh;
  text-align: center;
  font-size: 2.4rem; }

.cd-section:first-of-type > div {
  background-color: #2b334f; }

.cd-section:first-of-type > div::before {
  /* alert -> all scrolling effects are not visible on small devices */
  content: 'Effects not visible on mobile!';
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20px;
  z-index: 2;
  font-weight: bold;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #6a7083; }

.cd-section:nth-of-type(2) > div {
  background-color: #2e5367; }

.cd-section:nth-of-type(3) > div {
  background-color: #267481; }

.cd-section:nth-of-type(4) > div {
  background-color: #fcb052; }

.cd-section:nth-of-type(5) > div {
  background-color: #f06a59; }

[data-animation="parallax"] .cd-section > div, [data-animation="fixed"] .cd-section > div, [data-animation="opacity"] .cd-section > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; }

[data-animation="parallax"] .cd-section:first-of-type > div, [data-animation="fixed"] .cd-section:first-of-type > div, [data-animation="opacity"] .cd-section:first-of-type > div {
  background-image: url("../img/img-1.jpg"); }

[data-animation="parallax"] .cd-section:nth-of-type(2) > div, [data-animation="fixed"] .cd-section:nth-of-type(2) > div, [data-animation="opacity"] .cd-section:nth-of-type(2) > div {
  background-image: url("../img/img-2.jpg"); }

[data-animation="parallax"] .cd-section:nth-of-type(3) > div, [data-animation="fixed"] .cd-section:nth-of-type(3) > div, [data-animation="opacity"] .cd-section:nth-of-type(3) > div {
  background-image: url("../img/img-3.jpg"); }

[data-animation="parallax"] .cd-section:nth-of-type(4) > div, [data-animation="fixed"] .cd-section:nth-of-type(4) > div, [data-animation="opacity"] .cd-section:nth-of-type(4) > div {
  background-image: url("../img/img-4.jpg"); }

[data-animation="parallax"] .cd-section:nth-of-type(5) > div, [data-animation="fixed"] .cd-section:nth-of-type(5) > div, [data-animation="opacity"] .cd-section:nth-of-type(5) > div {
  background-image: url("../img/img-5.jpg"); }

@media only screen and (min-width: 1050px) {
  .cd-section h2 {
    font-size: 4rem;
    font-weight: 300; }
  [data-hijacking="on"] .cd-section {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
  [data-hijacking="on"] .cd-section > div {
    visibility: visible; }
  [data-hijacking="off"] .cd-section > div {
    opacity: 0; }
  [data-animation="rotate"] .cd-section {
    /* enable a 3D-space for children elements */
    -webkit-perspective: 1800px;
    -moz-perspective: 1800px;
    perspective: 1800px; }
  [data-hijacking="on"][data-animation="rotate"] .cd-section:not(:first-of-type) {
    -webkit-perspective-origin: center 0;
    -moz-perspective-origin: center 0;
    perspective-origin: center 0; }
  [data-animation="scaleDown"] .cd-section > div, [data-animation="gallery"] .cd-section > div, [data-animation="catch"] .cd-section > div {
    box-shadow: 0 0 0 rgba(25, 30, 46, 0.4); }
  [data-animation="opacity"] .cd-section.visible > div {
    z-index: 1; } }

@media only screen and (min-width: 1050px) {
  .cd-section:first-of-type > div::before {
    display: none; } }

@media only screen and (min-width: 1050px) {
  .cd-section > div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  [data-hijacking="on"] .cd-section > div {
    position: absolute; }
  [data-animation="rotate"] .cd-section > div {
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -o-transform-origin: center bottom;
    transform-origin: center bottom; } }

.cd-vertical-nav {
  /* lateral navigation */
  position: fixed;
  z-index: 1;
  right: 3%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none; }

.cd-vertical-nav a {
  display: block;
  height: 40px;
  width: 40px;
  /* image replace */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/cd-icon-arrow.svg) no-repeat center center; }

.cd-vertical-nav a.cd-prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 10px; }

.cd-vertical-nav a.inactive {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
  transition: opacity 0.2s 0s, visibility 0s 0.2s; }

@media only screen and (min-width: 1050px) {
  .cd-vertical-nav {
    display: block; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.contact main {
  margin-top: 136px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.contact main {
      margin-top: 94px; } }
  body.contact main .contact-top {
    padding: 66px 0 55px;
    text-align: center;
    color: #000;
    letter-spacing: 0; }
    @media only screen and (max-width: 767px) {
      body.contact main .contact-top {
        padding: 58px 0 55px; } }
    body.contact main .contact-top h2 {
      font-size: 60px;
      font-size: 6rem;
      font-family: Oswald,helvetica;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.contact main .contact-top h2 {
          font-size: 40px;
          font-size: 4rem; } }
    body.contact main .contact-top p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2;
      font-weight: bold;
      margin: 45px 0 0; }
      @media only screen and (max-width: 767px) {
        body.contact main .contact-top p {
          margin: 30px 0 0; } }
  body.contact main .contact-bottom {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    color: #000;
    letter-spacing: 0; }
    body.contact main .contact-bottom .inner {
      max-width: 1040px; }
      @media only screen and (max-width: 767px) {
        body.contact main .contact-bottom .inner {
          padding: 0; } }
    body.contact main .contact-bottom .box {
      border-left: 2px solid #000;
      border-right: 2px solid #000;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        body.contact main .contact-bottom .box {
          border: none; } }
      body.contact main .contact-bottom .box .boxbox {
        width: 50%; }
        @media only screen and (max-width: 767px) {
          body.contact main .contact-bottom .box .boxbox {
            width: 100%; } }
        body.contact main .contact-bottom .box .boxbox:nth-of-type(1) {
          border-right: 2px solid #000; }
          @media only screen and (max-width: 767px) {
            body.contact main .contact-bottom .box .boxbox:nth-of-type(1) {
              border: none; } }
        body.contact main .contact-bottom .box .boxbox ul li {
          height: 80px;
          border-bottom: 2px solid #000;
          text-align: left;
          padding: 8px; }
          @media only screen and (min-width: 768px) {
            body.contact main .contact-bottom .box .boxbox ul li:last-of-type {
              border-bottom: none; } }
          body.contact main .contact-bottom .box .boxbox ul li small {
            display: block;
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: bold; }
          body.contact main .contact-bottom .box .boxbox ul li input {
            padding: 0;
            border: none;
            border-radius: 0;
            outline: none;
            background: none;
            width: 100%;
            height: 48px;
            padding: 10px; }
          body.contact main .contact-bottom .box .boxbox ul li textarea {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            resize: none;
            padding: 0;
            border: 0;
            outline: none;
            background: transparent;
            width: 100%;
            height: 285px;
            padding: 10px; }
            @media only screen and (max-width: 767px) {
              body.contact main .contact-bottom .box .boxbox ul li textarea {
                height: 198px; } }
        body.contact main .contact-bottom .box .boxbox ul .h320 {
          height: 320px; }
          @media only screen and (max-width: 767px) {
            body.contact main .contact-bottom .box .boxbox ul .h320 {
              height: 240px; } }
        body.contact main .contact-bottom .box .boxbox ul .pad0 {
          padding: 0; }
          @media only screen and (max-width: 767px) {
            body.contact main .contact-bottom .box .boxbox ul .pad0 {
              padding: 30px 15px 70px;
              height: auto; } }
        body.contact main .contact-bottom .box .boxbox .nextButton {
          background-color: transparent;
          border: none;
          cursor: pointer;
          outline: none;
          padding: 0;
          appearance: none;
          text-align: center;
          width: 100%;
          height: 80px;
          background: #000;
          color: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.contact main .contact-bottom .box .boxbox .nextButton {
              height: 60px; } }
          body.contact main .contact-bottom .box .boxbox .nextButton i {
            display: inline-block;
            margin-left: 10px;
            position: relative;
            top: 1px;
            width: 14px;
            height: 14px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
            @media only screen and (max-width: 767px) {
              body.contact main .contact-bottom .box .boxbox .nextButton i {
                position: absolute;
                right: 18px;
                top: 50%;
                -webkit-transform: translate(0, -50%) rotate(45deg);
                -moz-transform: translate(0, -50%) rotate(45deg);
                -ms-transform: translate(0, -50%) rotate(45deg);
                -o-transform: translate(0, -50%) rotate(45deg);
                transform: translate(0, -50%) rotate(45deg); } }

body.contact.complete .thank {
  padding: 120px 0 230px; }
  @media only screen and (max-width: 767px) {
    body.contact.complete .thank {
      padding: 60px 0; } }
  body.contact.complete .thank h2 span {
    font-size: 60px;
    font-size: 6rem;
    font-family: Oswald,helvetica;
    font-weight: 600; }
    @media only screen and (max-width: 767px) {
      body.contact.complete .thank h2 span {
        font-size: 40px;
        font-size: 4rem; } }
  body.contact.complete .thank h2 small {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    margin: 25px 0 35px; }
    @media only screen and (max-width: 767px) {
      body.contact.complete .thank h2 small {
        font-size: 12px;
        font-size: 1.2rem;
        margin: 18px 0 48px; } }
  body.contact.complete .thank p {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2; }
  body.contact.complete .thank .tel-btn {
    display: block;
    height: 80px;
    border: 2px solid #000;
    margin: 55px auto 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: 500px; }
    @media only screen and (min-width: 768px) {
      body.contact.complete .thank .tel-btn {
        pointer-events: none; } }
    @media only screen and (max-width: 767px) {
      body.contact.complete .thank .tel-btn {
        display: block;
        text-align: center;
        height: 120px;
        padding: 24px 0 0; } }
    body.contact.complete .thank .tel-btn small {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: .025em;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.contact.complete .thank .tel-btn small {
          display: block;
          margin: 0 0 18px; } }
    body.contact.complete .thank .tel-btn span {
      font-size: 30px;
      font-size: 3rem;
      font-family: Oswald,helvetica; }
      @media only screen and (max-width: 767px) {
        body.contact.complete .thank .tel-btn span {
          margin-left: -20px; } }
      body.contact.complete .thank .tel-btn span:before {
        content: "";
        width: 20px;
        height: 28px;
        display: inline-block;
        margin: 0 10px 0 18px;
        position: relative;
        top: 2px;
        background: url(../../../../img/top/tel-icon.png) center center/cover no-repeat; }

body.cosme main {
  margin-top: 136px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.cosme main {
      margin-top: 94px; } }
  body.cosme main .read {
    padding: 60px 0;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.cosme main .read {
        padding: 60px 0 47px;
        border: none; } }
    body.cosme main .read .category-list {
      margin: 60px auto 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center; }
      @media only screen and (max-width: 767px) {
        body.cosme main .read .category-list {
          display: block; } }
      body.cosme main .read .category-list li {
        margin: 0 5px; }
        @media only screen and (max-width: 767px) {
          body.cosme main .read .category-list li {
            margin: 0 0 10px; } }
        body.cosme main .read .category-list li .select-box {
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.cosme main .read .category-list li .select-box {
              width: 100%; } }
          body.cosme main .read .category-list li .select-box:after {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            border-top: 2px solid #000;
            border-right: 2px solid #000;
            position: absolute;
            top: 40%;
            right: 22px;
            -webkit-transform: translate(0, -50%) rotate(135deg);
            -moz-transform: translate(0, -50%) rotate(135deg);
            -ms-transform: translate(0, -50%) rotate(135deg);
            -o-transform: translate(0, -50%) rotate(135deg);
            transform: translate(0, -50%) rotate(135deg); }
          body.cosme main .read .category-list li .select-box select {
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            border-radius: 0;
            border: 0;
            margin: 0;
            padding: 0;
            background: none transparent;
            vertical-align: middle;
            font-size: inherit;
            color: inherit;
            box-sizing: content-box;
            display: block;
            width: 260px;
            border: 2px solid #000;
            padding: 10px 18px;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: bold; }
            @media only screen and (max-width: 767px) {
              body.cosme main .read .category-list li .select-box select {
                width: calc(100% - 40px); } }
  body.cosme main .contents {
    padding: 60px 0 30px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.cosme main .contents {
        padding: 0px 0 0px;
        border: none; } }
    body.cosme main .contents .cosme-list {
      margin: 0px 0 0;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 0 40px; }
      @media only screen and (max-width: 767px) {
        body.cosme main .contents .cosme-list {
          margin: 0px 0 20px;
          padding: 0; } }
      body.cosme main .contents .cosme-list li {
        width: calc((100% - 280px) / 5);
        margin: 0 70px 30px 0; }
        body.cosme main .contents .cosme-list li:nth-of-type(5n) {
          margin-right: 0; }
          @media only screen and (max-width: 767px) {
            body.cosme main .contents .cosme-list li:nth-of-type(5n) {
              margin-right: 12px; } }
        @media only screen and (max-width: 767px) {
          body.cosme main .contents .cosme-list li:nth-of-type(2n) {
            margin-right: 0; } }
        @media only screen and (max-width: 767px) {
          body.cosme main .contents .cosme-list li {
            width: calc((100% - 12px) / 2);
            margin: 0 12px 40px 0; } }
        body.cosme main .contents .cosme-list li .img {
          padding-top: 100%; }
        body.cosme main .contents .cosme-list li .text {
          margin: 30px 0 0; }
          body.cosme main .contents .cosme-list li .text p {
            font-size: 11px;
            font-size: 1.1rem;
            line-height: 1.63636;
            font-weight: 600;
            text-align: center; }
            @media only screen and (max-width: 767px) {
              body.cosme main .contents .cosme-list li .text p {
                text-align: left; } }
          body.cosme main .contents .cosme-list li .text em {
            font-style: italic; }
          body.cosme main .contents .cosme-list li .text strong {
            font-weight: bold; }
          body.cosme main .contents .cosme-list li .text a {
            text-decoration: underline; }
  body.cosme main .navi-box {
    padding: 60px 0;
    display: inline-block;
    width: auto; }
    @media only screen and (max-width: 767px) {
      body.cosme main .navi-box {
        padding: 0 0 80px; } }
    body.cosme main .navi-box .wp-pagenavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      font-family: Oswald,helvetica;
      font-size: 20px;
      font-size: 2rem;
      position: relative;
      color: #000;
      font-weight: 600; }
      body.cosme main .navi-box .wp-pagenavi .pages {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.cosme main .navi-box .wp-pagenavi .previouspostslink {
        position: absolute;
        top: 50%;
        left: -34px;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        margin: 0 18px;
        border: none;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          body.cosme main .navi-box .wp-pagenavi .previouspostslink {
            margin-right: 38px; } }
        body.cosme main .navi-box .wp-pagenavi .previouspostslink:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 50%;
          left: -10px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
      body.cosme main .navi-box .wp-pagenavi .nextpostslink {
        position: absolute;
        margin: 0 18px;
        right: -34px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        border: none;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          body.cosme main .navi-box .wp-pagenavi .nextpostslink {
            margin-left: 38px; } }
        body.cosme main .navi-box .wp-pagenavi .nextpostslink:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -10px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }

body.cosme_detail main {
  margin-top: 136px; }
  @media only screen and (max-width: 767px) {
    body.cosme_detail main {
      margin-top: 94px; } }
  body.cosme_detail main .head {
    height: 142px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 2px solid #000; }
    @media only screen and (max-width: 767px) {
      body.cosme_detail main .head {
        height: 124px; } }
    body.cosme_detail main .head h2 {
      font-family: Oswald,helvetica;
      text-align: center;
      font-weight: 600;
      font-size: 24px;
      font-size: 2.4rem; }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .head h2 {
          font-size: 16px;
          font-size: 1.6rem;
          text-align: left;
          line-height: 1.5; } }
  body.cosme_detail main .contents {
    padding: 60px 0 60px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.cosme_detail main .contents {
        padding: 20px 0 85px;
        border-bottom: 2px solid #000; } }
    body.cosme_detail main .contents .text {
      margin: 0 auto;
      max-width: 800px; }
      body.cosme_detail main .contents .text img {
        display: block;
        margin: 0 auto 40px; }
        @media only screen and (max-width: 767px) {
          body.cosme_detail main .contents .text img {
            width: calc(100% + 40px);
            margin: 0 -20px 34px;
            max-width: none; }
          body.cosme_detail main .contents .text table img {
            width: auto;
            margin-left: 0;
            margin-right: 0;
            max-width: 100%; } }
      body.cosme_detail main .contents .text p {
        text-align: justify;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 2; }
      body.cosme_detail main .contents .text em {
        font-style: italic; }
      body.cosme_detail main .contents .text strong {
        font-weight: bold; }
      body.cosme_detail main .contents .text a {
        text-decoration: underline; }
    body.cosme_detail main .contents .btn-list {
      margin: 30px auto 0;
      max-width: 800px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .contents .btn-list {
          display: block; } }
      body.cosme_detail main .contents .btn-list li {
        width: 49.3%; }
        @media only screen and (max-width: 767px) {
          body.cosme_detail main .contents .btn-list li {
            width: 100%; } }
        body.cosme_detail main .contents .btn-list li .btn {
          height: 60px;
          display: block;
          border: 2px solid #000;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          justify-content: center;
          -webkit-align-items: center;
          align-items: center; }
        body.cosme_detail main .contents .btn-list li .tel-btn {
          text-align: center; }
          @media only screen and (min-width: 768px) {
            body.cosme_detail main .contents .btn-list li .tel-btn {
              pointer-events: none; } }
          @media only screen and (max-width: 767px) {
            body.cosme_detail main .contents .btn-list li .tel-btn {
              height: 120px;
              margin: 0 0 18px; } }
          body.cosme_detail main .contents .btn-list li .tel-btn .tel-text {
            position: relative; }
            body.cosme_detail main .contents .btn-list li .tel-btn .tel-text:before {
              content: "";
              width: 20px;
              height: 28px;
              display: inline-block;
              position: absolute;
              top: 50%;
              -webkit-transform: translate(0, -50%);
              -moz-transform: translate(0, -50%);
              -ms-transform: translate(0, -50%);
              -o-transform: translate(0, -50%);
              transform: translate(0, -50%);
              left: -45px;
              background: url(../../../../img/top/tel-icon.png) center center/cover no-repeat; }
              @media only screen and (max-width: 767px) {
                body.cosme_detail main .contents .btn-list li .tel-btn .tel-text:before {
                  left: -30px;
                  top: auto;
                  bottom: -1px;
                  -webkit-transform: translate(0, 0%);
                  -moz-transform: translate(0, 0%);
                  -ms-transform: translate(0, 0%);
                  -o-transform: translate(0, 0%);
                  transform: translate(0, 0%); } }
          body.cosme_detail main .contents .btn-list li .tel-btn small {
            display: block;
            font-size: 11px;
            font-size: 1.1rem;
            letter-spacing: .025em;
            font-weight: 600;
            margin: 0 0 6px; }
            @media only screen and (max-width: 767px) {
              body.cosme_detail main .contents .btn-list li .tel-btn small {
                font-size: 16px;
                font-size: 1.6rem;
                margin: 0 0 18px; } }
          body.cosme_detail main .contents .btn-list li .tel-btn span {
            font-family: Oswald,helvetica;
            font-size: 20px;
            font-size: 2rem; }
            @media only screen and (max-width: 767px) {
              body.cosme_detail main .contents .btn-list li .tel-btn span {
                font-size: 30px;
                font-size: 3rem; } }
        body.cosme_detail main .contents .btn-list li .maker-btn span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: .025em;
          font-weight: 600;
          position: relative; }
          body.cosme_detail main .contents .btn-list li .maker-btn span:before {
            content: "";
            width: 20px;
            height: 20px;
            display: inline-block;
            position: absolute;
            top: 50%;
            -webkit-transform: translate(0, -50%);
            -moz-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
            -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
            left: -33px;
            background: url(../../../../img/top/link-icon.png) center center/cover no-repeat; }
  body.cosme_detail main .navi-box {
    padding: 50px 0; }
    @media only screen and (max-width: 767px) {
      body.cosme_detail main .navi-box {
        padding: 0px 0; } }
    body.cosme_detail main .navi-box .inner {
      max-width: 800px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .navi-box .inner {
          -webkit-flex-direction: column;
          flex-direction: column;
          padding: 0; } }
    body.cosme_detail main .navi-box .wp-paginavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      font-family: Oswald,helvetica;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 0 20px;
      color: #000;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .navi-box .wp-paginavi:first-of-type {
          order: 2; } }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .navi-box .wp-paginavi:nth-of-type(2) {
          order: 1; } }
      @media only screen and (max-width: 767px) {
        body.cosme_detail main .navi-box .wp-paginavi {
          font-size: 14px;
          font-size: 1.4rem;
          padding: 44px 34px;
          border-bottom: 2px solid #000; } }
      body.cosme_detail main .navi-box .wp-paginavi .page {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.cosme_detail main .navi-box .wp-paginavi .prev {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.cosme_detail main .navi-box .wp-paginavi .prev {
            margin-right: 38px; } }
        body.cosme_detail main .navi-box .wp-paginavi .prev:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 55%;
          left: -30px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
          @media only screen and (max-width: 767px) {
            body.cosme_detail main .navi-box .wp-paginavi .prev:before {
              width: 14px;
              height: 14px; } }
      body.cosme_detail main .navi-box .wp-paginavi .next {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.cosme_detail main .navi-box .wp-paginavi .next {
            margin-left: 38px; } }
        body.cosme_detail main .navi-box .wp-paginavi .next:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -30px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }
          @media only screen and (max-width: 767px) {
            body.cosme_detail main .navi-box .wp-paginavi .next:before {
              width: 14px;
              height: 14px; } }

@media only screen and (min-width: 768px) {
  body.index {
    min-width: 1200px; } }

@media only screen and (min-width: 768px) {
  body.index #globalNavi ul {
    width: 1200px; } }

body.index main {
  margin-top: 136px; }
  @media only screen and (max-width: 767px) {
    body.index main {
      margin-top: 92px; } }
  body.index main .mv {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 57px);
    position: fixed;
    z-index: -1;
    left: 0;
    top: 57px; }
    @media only screen and (max-width: 767px) {
      body.index main .mv {
        overflow: hidden;
        height: 100vh;
        top: 0; } }
    body.index main .mv .movie {
      width: 100%;
      height: calc(100vh - 57px); }
      body.index main .mv .movie video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: block;
        min-height: 100vh;
        min-width: 100vw; }
        @media only screen and (max-width: 767px) {
          body.index main .mv .movie video {
            position: absolute;
            width: auto;
            height: 100vh;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); } }
    @media only screen and (min-width: 768px) {
      body.index main .mv a {
        padding-top: 60px;
        position: absolute;
        bottom: 30px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        color: #fff; }
      body.index main .mv a span {
        position: absolute;
        top: 0;
        left: 50%;
        width: 30px;
        height: 50px;
        margin-left: -15px;
        border: 2px solid #fff;
        border-radius: 50px;
        box-sizing: border-box; }
      body.index main .mv a span::before {
        position: absolute;
        top: 10px;
        left: 50%;
        content: '';
        width: 6px;
        height: 6px;
        margin-left: -3px;
        background-color: #fff;
        border-radius: 100%;
        -webkit-animation: sdb 2s infinite;
        animation: sdb 2s infinite;
        box-sizing: border-box; }
      @-webkit-keyframes sdb {
        0% {
          -webkit-transform: translate(0, 0);
          opacity: 0; }
        40% {
          opacity: 1; }
        80% {
          -webkit-transform: translate(0, 20px);
          opacity: 0; }
        100% {
          opacity: 0; } }
      @keyframes sdb {
        0% {
          transform: translate(0, 0);
          opacity: 0; }
        40% {
          opacity: 1; }
        80% {
          transform: translate(0, 20px);
          opacity: 0; }
        100% {
          opacity: 0; } } }
    @media only screen and (max-width: 767px) {
      body.index main .mv a {
        padding-top: 60px;
        position: absolute;
        left: 50%;
        bottom: 30px;
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        color: #fff; }
      body.index main .mv a span {
        position: absolute;
        top: 0;
        left: 50%;
        width: 24px;
        height: 24px;
        margin-left: -12px;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: sdb 2s infinite;
        animation: sdb 2s infinite;
        box-sizing: border-box; }
      @-webkit-keyframes sdb {
        0% {
          -webkit-transform: rotate(-45deg) translate(0, 0); }
        20% {
          -webkit-transform: rotate(-45deg) translate(-10px, 10px); }
        40% {
          -webkit-transform: rotate(-45deg) translate(0, 0); } }
      @keyframes sdb {
        0% {
          transform: rotate(-45deg) translate(0, 0); }
        20% {
          transform: rotate(-45deg) translate(-10px, 10px); }
        40% {
          transform: rotate(-45deg) translate(0, 0); } } }
  body.index main section .inner {
    opacity: 0;
    transition: 3s; }
    body.index main section .inner.is-active {
      opacity: 1; }
  body.index main .contents {
    padding: 90px 0 100px;
    background: #fff; }
    @media only screen and (min-width: 768px) {
      body.index main .contents {
        position: relative; } }
    body.index main .contents:nth-of-type(1) {
      margin-top: 100vh;
      z-index: 2; }
    body.index main .contents:nth-of-type(2) {
      z-index: 3; }
    body.index main .contents:nth-of-type(3) {
      z-index: 4; }
    body.index main .contents:nth-of-type(4) {
      z-index: 5; }
    body.index main .contents:nth-of-type(5) {
      z-index: 6; }
    @media only screen and (max-width: 767px) {
      body.index main .contents {
        padding: 80px 0 100px;
        text-align: center; } }
    body.index main .contents .news-list {
      margin: 60px 0;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        body.index main .contents .news-list {
          margin: 36px 0 60px;
          display: block;
          text-align: left; } }
      body.index main .contents .news-list li {
        width: 23.7%;
        margin-right: 1.73333%;
        background: #000; }
        @media only screen and (max-width: 767px) {
          body.index main .contents .news-list li {
            width: 100%;
            margin: 0 0 20px; } }
        body.index main .contents .news-list li a {
          display: block; }
        body.index main .contents .news-list li .text {
          background: #000;
          color: #fff;
          padding: 10px 10px 15px; }
          @media only screen and (max-width: 767px) {
            body.index main .contents .news-list li .text {
              padding: 20px 10px; } }
          body.index main .contents .news-list li .text .title {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.5; }
          body.index main .contents .news-list li .text .btn {
            font-size: 12px;
            font-size: 1.2rem;
            font-family: Oswald,helvetica;
            border: 1px solid #fff;
            display: block;
            padding: 8px;
            text-align: center;
            margin: 12px 0 0; }
            @media only screen and (max-width: 767px) {
              body.index main .contents .news-list li .text .btn {
                font-size: 16px;
                font-size: 1.6rem;
                padding: 18px;
                margin: 18px 0 0; } }
        body.index main .contents .news-list li .img {
          padding-top: 100%; }
          body.index main .contents .news-list li .img img {
            width: 100%; }
        @media only screen and (min-width: 768px) {
          body.index main .contents .news-list li:nth-of-type(4n) {
            margin-right: 0; } }
    body.index main .contents .cosmetics-list {
      margin: 60px 0;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        body.index main .contents .cosmetics-list {
          display: block;
          margin: 40px 0 0; } }
      body.index main .contents .cosmetics-list .slick-prev {
        left: 0px;
        width: 20px;
        height: 40px; }
        body.index main .contents .cosmetics-list .slick-prev:before {
          content: "";
          display: block;
          width: 28px;
          height: 28px;
          border-top: 1px solid #000;
          border-right: 1px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 5px;
          left: 5px; }
      body.index main .contents .cosmetics-list .slick-next {
        right: 0px;
        width: 20px;
        height: 40px; }
        body.index main .contents .cosmetics-list .slick-next:before {
          content: "";
          display: block;
          width: 28px;
          height: 28px;
          border-top: 1px solid #000;
          border-right: 1px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 5px;
          right: 5px; }
      body.index main .contents .cosmetics-list li {
        width: 13.79%;
        margin-right: 6.21%; }
        @media only screen and (min-width: 768px) {
          body.index main .contents .cosmetics-list li:nth-of-type(5n) {
            margin-right: 0; } }
        @media only screen and (max-width: 767px) {
          body.index main .contents .cosmetics-list li {
            width: 100%; } }
        body.index main .contents .cosmetics-list li a {
          display: block; }
        body.index main .contents .cosmetics-list li .img {
          padding-top: 100%; }
          @media only screen and (max-width: 767px) {
            body.index main .contents .cosmetics-list li .img {
              margin: 0 auto;
              width: 160px;
              padding: 0;
              height: 160px; } }
        body.index main .contents .cosmetics-list li .text {
          text-align: center;
          margin-top: 30px;
          font-size: 11px;
          font-size: 1.1rem;
          line-height: 1.636; }
    body.index main .contents .movie-list {
      margin: 60px 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.index main .contents .movie-list {
          display: block;
          margin: 36px 0 0; } }
      @media only screen and (max-width: 767px) {
        body.index main .contents .movie-list .slick-dots {
          bottom: -35px; } }
      @media only screen and (max-width: 767px) {
        body.index main .contents .movie-list .slick-dots li {
          width: auto; } }
      @media only screen and (max-width: 767px) {
        body.index main .contents .movie-list .slick-dots li button:before {
          color: #585858;
          opacity: 1;
          font-size: 12px;
          font-size: 1.2rem; } }
      @media only screen and (max-width: 767px) {
        body.index main .contents .movie-list .slick-dots li.slick-active button:before {
          color: #fff; } }
      body.index main .contents .movie-list li {
        width: 49.13%; }
        @media only screen and (max-width: 767px) {
          body.index main .contents .movie-list li {
            width: 100%; } }
        body.index main .contents .movie-list li .movie video {
          width: 100%;
          cursor: pointer; }
    body.index main .contents .view-btn {
      font-size: 20px;
      font-size: 2rem;
      font-family: Oswald,helvetica;
      padding: 10px;
      border: 2px solid #000;
      display: block;
      text-align: center;
      width: 200px;
      margin: 0 auto;
      color: #000; }
      @media only screen and (max-width: 767px) {
        body.index main .contents .view-btn {
          font-family: helvetica;
          padding: 0;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: .025em;
          border: none;
          width: auto;
          margin: 28px 0 0;
          display: inline-block; } }
      body.index main .contents .view-btn:hover {
        opacity: 1;
        color: #fff;
        background: #000; }
    body.index main .contents .youtube {
      line-height: 0; }
      body.index main .contents .youtube:hover {
        opacity: 0.5 !important;
        color: #fff !important;
        background: #000 !important; }
      body.index main .contents .youtube span {
        display: inline-block;
        width: 71px;
        line-height: 0;
        position: relative; }
        body.index main .contents .youtube span:after {
          content: "";
          width: 12px;
          height: 12px;
          display: inline-block;
          background: url(../images/top/link.png) center center/cover no-repeat;
          position: absolute;
          top: -5px;
          right: -18px; }
        body.index main .contents .youtube span img {
          display: inline-block; }
    body.index main .contents.blk {
      background: #000;
      color: #fff; }
      body.index main .contents.blk .ttl02 {
        color: #fff; }
      body.index main .contents.blk .news-list li {
        background: #1D1D1D; }
        body.index main .contents.blk .news-list li .text {
          background: #1D1D1D; }
      body.index main .contents.blk .view-btn {
        color: #fff;
        border: 2px solid #fff; }
        @media only screen and (max-width: 767px) {
          body.index main .contents.blk .view-btn {
            font-family: helvetica;
            padding: 0;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: .025em;
            border: none;
            width: auto;
            margin: 28px 0 0; }
            body.index main .contents.blk .view-btn:after {
              border-top: 1px solid #fff;
              border-right: 1px solid #fff; } }
        body.index main .contents.blk .view-btn:hover {
          opacity: 1;
          color: #000;
          background: #fff; }
  @media only screen and (max-width: 767px) {
    body.index main .cosme {
      padding-bottom: 80px; } }
  body.index main .movie iframe {
    width: 100% !important;
    height: 320px; }
    @media only screen and (max-width: 767px) {
      body.index main .movie iframe {
        height: 210px; } }
  @media only screen and (max-width: 767px) {
    body.index main .movie .inner {
      padding: 0; } }
  @media only screen and (max-width: 767px) {
    body.index main .event {
      padding-bottom: 20px; } }

@media only screen and (min-width: 768px) {
  body.news main .contents .news-list li .text {
    min-height: 117px !important; } }

body.news_detail main {
  margin-top: 136px; }
  @media only screen and (max-width: 767px) {
    body.news_detail main {
      margin-top: 94px; } }
  body.news_detail main .head {
    height: 182px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-bottom: 2px solid #000; }
    @media only screen and (max-width: 767px) {
      body.news_detail main .head {
        height: 154px; } }
    body.news_detail main .head .date {
      display: block;
      text-align: center;
      font-size: 16px;
      font-size: 1.6rem;
      font-family: Oswald,helvetica;
      margin: 0 0 20px; }
      @media only screen and (max-width: 767px) {
        body.news_detail main .head .date {
          text-align: left;
          margin: 0 0 15px; } }
    body.news_detail main .head h2 {
      font-family: Oswald,helvetica;
      text-align: center;
      font-weight: 600;
      font-size: 24px;
      font-size: 2.4rem; }
      @media only screen and (max-width: 767px) {
        body.news_detail main .head h2 {
          font-size: 16px;
          font-size: 1.6rem;
          text-align: left;
          line-height: 1.5; } }
  body.news_detail main .contents {
    padding: 60px 0 60px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.news_detail main .contents {
        padding: 20px 0 85px;
        border-bottom: 2px solid #000; } }
    body.news_detail main .contents .text {
      margin: 0 auto;
      max-width: 800px; }
      body.news_detail main .contents .text img {
        display: block;
        margin: 0 auto 0px; }

        body.news_detail main .contents .text table th,
        body.news_detail main .contents .text table td {
          vertical-align: top;
          padding: 8px;
        }
        @media only screen and (max-width: 767px) {
          body.news_detail main .contents .text img {
            width: calc(100% + 40px);
            margin: 0 -20px 0px;
            max-width: none; }
          body.news_detail main .contents .text table img {
              width: auto;
              margin-left: 0;
              margin-right: 0;
              max-width: 100%;} }
      body.news_detail main .contents .text p {
        text-align: justify;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 2; }
    body.news_detail main .contents .btn-list {
      margin: 30px auto 0;
      max-width: 800px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.news_detail main .contents .btn-list {
          display: block; } }
      body.news_detail main .contents .btn-list li {
        width: 49.3%; }
        @media only screen and (max-width: 767px) {
          body.news_detail main .contents .btn-list li {
            width: 100%; } }
        body.news_detail main .contents .btn-list li .btn {
          height: 60px;
          display: block;
          border: 2px solid #000;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          justify-content: center;
          -webkit-align-items: center;
          align-items: center; }
        body.news_detail main .contents .btn-list li .tel-btn {
          text-align: center; }
          @media only screen and (max-width: 767px) {
            body.news_detail main .contents .btn-list li .tel-btn {
              height: 120px;
              margin: 0 0 18px; } }
          body.news_detail main .contents .btn-list li .tel-btn .tel-text {
            position: relative; }
            body.news_detail main .contents .btn-list li .tel-btn .tel-text:before {
              content: "";
              width: 20px;
              height: 28px;
              display: inline-block;
              position: absolute;
              top: 50%;
              -webkit-transform: translate(0, -50%);
              -moz-transform: translate(0, -50%);
              -ms-transform: translate(0, -50%);
              -o-transform: translate(0, -50%);
              transform: translate(0, -50%);
              left: -45px;
              background: url(../../../../img/top/tel-icon.png) center center/cover no-repeat; }
              @media only screen and (max-width: 767px) {
                body.news_detail main .contents .btn-list li .tel-btn .tel-text:before {
                  left: -30px;
                  top: auto;
                  bottom: -1px;
                  -webkit-transform: translate(0, 0%);
                  -moz-transform: translate(0, 0%);
                  -ms-transform: translate(0, 0%);
                  -o-transform: translate(0, 0%);
                  transform: translate(0, 0%); } }
          body.news_detail main .contents .btn-list li .tel-btn small {
            display: block;
            font-size: 11px;
            font-size: 1.1rem;
            letter-spacing: .025em;
            font-weight: 600;
            margin: 0 0 6px; }
            @media only screen and (max-width: 767px) {
              body.news_detail main .contents .btn-list li .tel-btn small {
                font-size: 16px;
                font-size: 1.6rem;
                margin: 0 0 18px; } }
          body.news_detail main .contents .btn-list li .tel-btn span {
            font-family: Oswald,helvetica;
            font-size: 20px;
            font-size: 2rem; }
            @media only screen and (max-width: 767px) {
              body.news_detail main .contents .btn-list li .tel-btn span {
                font-size: 30px;
                font-size: 3rem; } }
        body.news_detail main .contents .btn-list li .maker-btn span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: .025em;
          font-weight: 600;
          position: relative; }
          body.news_detail main .contents .btn-list li .maker-btn span:before {
            content: "";
            width: 20px;
            height: 20px;
            display: inline-block;
            position: absolute;
            top: 50%;
            -webkit-transform: translate(0, -50%);
            -moz-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
            -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
            left: -33px;
            background: url(../../../../img/top/link-icon.png) center center/cover no-repeat; }
  body.news_detail main .navi-box {
    padding: 50px 0; }
    @media only screen and (max-width: 767px) {
      body.news_detail main .navi-box {
        padding: 0px 0; } }
    body.news_detail main .navi-box .inner {
      max-width: 800px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.news_detail main .navi-box .inner {
          -webkit-flex-direction: column;
          flex-direction: column;
          padding: 0; } }
    body.news_detail main .navi-box .wp-paginavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      font-family: Oswald,helvetica;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 0 20px;
      color: #000;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.news_detail main .navi-box .wp-paginavi:first-of-type {
          order: 2; } }
      @media only screen and (max-width: 767px) {
        body.news_detail main .navi-box .wp-paginavi:nth-of-type(2) {
          order: 1; } }
      @media only screen and (max-width: 767px) {
        body.news_detail main .navi-box .wp-paginavi {
          font-size: 14px;
          font-size: 1.4rem;
          padding: 44px 34px;
          border-bottom: 2px solid #000; } }
      body.news_detail main .navi-box .wp-paginavi .page {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.news_detail main .navi-box .wp-paginavi .prev {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.news_detail main .navi-box .wp-paginavi .prev {
            margin-right: 38px; } }
        body.news_detail main .navi-box .wp-paginavi .prev:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 55%;
          left: -30px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
          @media only screen and (max-width: 767px) {
            body.news_detail main .navi-box .wp-paginavi .prev:before {
              width: 14px;
              height: 14px; } }
      body.news_detail main .navi-box .wp-paginavi .next {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.news_detail main .navi-box .wp-paginavi .next {
            margin-left: 38px; } }
        body.news_detail main .navi-box .wp-paginavi .next:before {
          content: "";
          display: inline-block;
          width: 16px;
          height: 16px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -30px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }
          @media only screen and (max-width: 767px) {
            body.news_detail main .navi-box .wp-paginavi .next:before {
              width: 14px;
              height: 14px; } }

body.seminar main {
  margin-top: 136px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.seminar main {
      margin-top: 94px; } }
  body.seminar main .read {
    padding: 60px 0;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.seminar main .read {
        padding: 60px 0 30px;
        border: none; } }
    body.seminar main .read .link-calender {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: bold;
      text-align: center;
      margin-top: 40px;
      display: inline-block; }
      @media only screen and (max-width: 767px) {
        body.seminar main .read .link-calender {
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 30px; } }
      body.seminar main .read .link-calender:after {
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        -webkit-transform: translate(0, 0%) rotate(45deg);
        -moz-transform: translate(0, 0%) rotate(45deg);
        -ms-transform: translate(0, 0%) rotate(45deg);
        -o-transform: translate(0, 0%) rotate(45deg);
        transform: translate(0, 0%) rotate(45deg);
        display: inline-block;
        margin-left: 10px; }
    body.seminar main .read .category-list {
      margin: 60px auto 0;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center; }
      @media only screen and (max-width: 767px) {
        body.seminar main .read .category-list {
          display: block; } }
      body.seminar main .read .category-list li {
        margin: 0 5px; }
        @media only screen and (max-width: 767px) {
          body.seminar main .read .category-list li {
            margin: 0 0 10px; } }
        body.seminar main .read .category-list li .select-box {
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.seminar main .read .category-list li .select-box {
              width: 100%; } }
          body.seminar main .read .category-list li .select-box:after {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            border-top: 2px solid #000;
            border-right: 2px solid #000;
            position: absolute;
            top: 40%;
            right: 22px;
            -webkit-transform: translate(0, -50%) rotate(135deg);
            -moz-transform: translate(0, -50%) rotate(135deg);
            -ms-transform: translate(0, -50%) rotate(135deg);
            -o-transform: translate(0, -50%) rotate(135deg);
            transform: translate(0, -50%) rotate(135deg);
            pointer-events: none;
            cursor: pointer; }
          body.seminar main .read .category-list li .select-box select {
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            border-radius: 0;
            border: 0;
            margin: 0;
            padding: 0;
            background: none transparent;
            vertical-align: middle;
            font-size: inherit;
            color: inherit;
            box-sizing: content-box;
            display: block;
            width: 260px;
            border: 2px solid #000;
            padding: 10px 18px;
            font-size: 14px;
            font-size: 1.4rem;
            cursor: pointer;
            color: #767676; }
            @media only screen and (max-width: 767px) {
              body.seminar main .read .category-list li .select-box select {
                width: calc(100% - 40px); } }
  body.seminar main .contents {
    padding: 60px 0 40px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.seminar main .contents {
        padding: 0px 0 0px;
        border: none; } }
    body.seminar main .contents .news-list {
      margin: 60px 0 0;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media only screen and (max-width: 767px) {
        body.seminar main .contents .news-list {
          margin: 0px 0 60px;
          display: block; } }
      body.seminar main .contents .news-list li {
        width: calc((100% - 60px) / 4);
        margin: 0 20px 20px 0;
        transition: 3s;
        opacity: 0;
        visibility: hidden; }
        body.seminar main .contents .news-list li:nth-of-type(4n) {
          margin-right: 0; }
        @media only screen and (max-width: 767px) {
          body.seminar main .contents .news-list li {
            width: 100%;
            margin: 0 0 20px; } }
        body.seminar main .contents .news-list li.is-active {
          opacity: 1;
          visibility: visible; }
        body.seminar main .contents .news-list li a {
          display: block;
          transition: .3s; }
          body.seminar main .contents .news-list li a:hover {
            opacity: .5; }
        body.seminar main .contents .news-list li .img {
          padding-top: 100%; }
        body.seminar main .contents .news-list li .text {
          background: #000;
          color: #fff;
          padding: 10px 10px 16px;
          text-align: left; }
          @media only screen and (min-width: 768px) {
            body.seminar main .contents .news-list li .text {
              min-height: 167px; } }
          @media only screen and (max-width: 767px) {
            body.seminar main .contents .news-list li .text {
              padding: 20px 10px; } }
          body.seminar main .contents .news-list li .text .date {
            font-family: Oswald,helvetica;
            font-size: 12px;
            font-size: 1.2rem;
            display: block;
            margin: 0 0 8px; }
            @media only screen and (max-width: 767px) {
              body.seminar main .contents .news-list li .text .date {
                margin: 0 0 6px; } }
          body.seminar main .contents .news-list li .text .title {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.5;
            margin: 0 0 15px;
            text-align: left; }
            @media only screen and (min-width: 768px) {
              body.seminar main .contents .news-list li .text .title {
                min-height: 36px; } }
            @media only screen and (max-width: 767px) {
              body.seminar main .contents .news-list li .text .title {
                margin: 0 0 18px; } }
          body.seminar main .contents .news-list li .text .btn {
            font-size: 12px;
            font-size: 1.2rem;
            font-family: Oswald,helvetica;
            border: 1px solid #fff;
            display: block;
            padding: 3px;
            text-align: center;
            margin: 5px 0 0; }
            @media only screen and (max-width: 767px) {
              body.seminar main .contents .news-list li .text .btn {
                font-size: 12px;
                font-size: 1.2rem;
                padding: 3px;
                margin: 5px 0 0; } }
  body.seminar main .navi-box {
    padding: 60px 0;
    display: inline-block;
    width: auto; }
    @media only screen and (max-width: 767px) {
      body.seminar main .navi-box {
        padding: 0 0 80px; } }
    body.seminar main .navi-box .wp-pagenavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      font-family: Oswald,helvetica;
      font-size: 20px;
      font-size: 2rem;
      position: relative;
      color: #000;
      font-weight: 600; }
      body.seminar main .navi-box .wp-pagenavi .pages {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.seminar main .navi-box .wp-pagenavi .previouspostslink {
        position: absolute;
        top: 50%;
        left: -34px;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        margin: 0 18px;
        border: none;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          body.seminar main .navi-box .wp-pagenavi .previouspostslink {
            margin-right: 38px; } }
        body.seminar main .navi-box .wp-pagenavi .previouspostslink:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 50%;
          left: -10px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
      body.seminar main .navi-box .wp-pagenavi .nextpostslink {
        position: absolute;
        margin: 0 18px;
        right: -34px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        border: none;
        padding: 0; }
        @media only screen and (max-width: 767px) {
          body.seminar main .navi-box .wp-pagenavi .nextpostslink {
            margin-left: 38px; } }
        body.seminar main .navi-box .wp-pagenavi .nextpostslink:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -10px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }

body.seminar_detail main {
  margin-top: 136px; }
  @media only screen and (max-width: 767px) {
    body.seminar_detail main {
      margin-top: 94px; } }
  body.seminar_detail main .contents {
    padding: 60px 0 60px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.seminar_detail main .contents {
        padding: 60px 0 80px;
        border-bottom: 2px solid #000; } }
    body.seminar_detail main .contents .img-text {
      padding: 0 80px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.seminar_detail main .contents .img-text {
          display: block;
          padding: 0; } }
      body.seminar_detail main .contents .img-text .img {
        width: 36%; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .contents .img-text .img {
            width: 100%; } }
      body.seminar_detail main .contents .img-text .text {
        width: 60%; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .contents .img-text .text {
            width: 100%;
            margin: 40px 0 0; } }
        body.seminar_detail main .contents .img-text .text .date {
          font-family: Oswald,helvetica;
          font-size: 16px;
          font-size: 1.6rem; }
        body.seminar_detail main .contents .img-text .text .title {
          font-family: Oswald,helvetica;
          font-weight: bold;
          font-size: 24px;
          font-size: 2.4rem;
          margin: 0 0 30px; }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .title {
              font-size: 16px;
              font-size: 1.6rem;
              line-height: 1.5;
              margin: 12px 0 40px; } }
        body.seminar_detail main .contents .img-text .text .category-list {
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .category-list {
              display: block; } }
          body.seminar_detail main .contents .img-text .text .category-list li {
            margin: 0 5px;
            width: 31.6666%; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .category-list li {
                width: 100%;
                margin: 0 0 15px; } }
            body.seminar_detail main .contents .img-text .text .category-list li span {
              font-family: Oswald,helvetica;
              font-size: 12px;
              font-size: 1.2rem;
              font-weight: 500;
              display: inline-block;
              margin: 0 5px 5px; }
            body.seminar_detail main .contents .img-text .text .category-list li .btn {
              display: block;
              border: 1px solid #000;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: .025em;
              padding: 7px;
              font-weight: 600;
              text-align: center; }
        body.seminar_detail main .contents .img-text .text .box {
          margin: 40px 0 0; }
          body.seminar_detail main .contents .img-text .text .box h3 {
            border-bottom: 1px solid #000;
            padding: 0 5px 10px;
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 600; }
          body.seminar_detail main .contents .img-text .text .box p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: .025em;
            line-height: 1.6666;
            margin: 20px 0 0;
            padding: 0 5px 0; }
            body.seminar_detail main .contents .img-text .text .box p em {
              font-style: italic; }
            body.seminar_detail main .contents .img-text .text .box p strong {
              font-weight: bold; }
            body.seminar_detail main .contents .img-text .text .box p a {
              text-decoration: underline; }
        body.seminar_detail main .contents .img-text .text .tel-btn {
          display: block;
          height: 80px;
          border: 2px solid #000;
          margin: 38px 0 0;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (min-width: 768px) {
            body.seminar_detail main .contents .img-text .text .tel-btn {
              pointer-events: none; } }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .tel-btn {
              display: block;
              text-align: center;
              height: 120px;
              padding: 24px 0 0; } }
          body.seminar_detail main .contents .img-text .text .tel-btn small {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: .025em;
            font-weight: 600; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .tel-btn small {
                display: block;
                margin: 0 0 18px; } }
          body.seminar_detail main .contents .img-text .text .tel-btn span {
            font-size: 30px;
            font-size: 3rem;
            font-family: Oswald,helvetica; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .tel-btn span {
                margin-left: -20px; } }
            body.seminar_detail main .contents .img-text .text .tel-btn span:before {
              content: "";
              width: 20px;
              height: 28px;
              display: inline-block;
              margin: 0 10px 0 18px;
              position: relative;
              top: 2px;
              background: url(../../../../img/top/tel-icon.png) center center/cover no-repeat; }
  body.seminar_detail main .navi-box {
    padding: 60px 0; }
    @media only screen and (max-width: 767px) {
      body.seminar_detail main .navi-box {
        padding: 40px 0; } }
    body.seminar_detail main .navi-box .wp-paginavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      font-family: Oswald,helvetica;
      font-size: 14px;
      font-size: 1.4rem;
      color: #000;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.seminar_detail main .navi-box .wp-paginavi {
          display: block;
          font-size: 14px;
          font-size: 1.4rem;
          padding: 0 10px; } }
      body.seminar_detail main .navi-box .wp-paginavi .page {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.seminar_detail main .navi-box .wp-paginavi .prev {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .navi-box .wp-paginavi .prev {
            margin-right: 38px; } }
        body.seminar_detail main .navi-box .wp-paginavi .prev:before {
          content: "";
          display: inline-block;
          width: 14px;
          height: 14px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 55%;
          left: -25px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .navi-box .wp-paginavi .prev:before {
              width: 14px;
              height: 14px; } }
      body.seminar_detail main .navi-box .wp-paginavi .next {
        position: relative;
        margin: 0 18px; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .navi-box .wp-paginavi .next {
            margin-left: 38px; } }
        body.seminar_detail main .navi-box .wp-paginavi .next:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -10px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }

body.sitemap main {
  margin-top: 136px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.sitemap main {
      margin-top: 94px; } }
  body.sitemap main .read {
    padding: 60px 0 0; }
  body.sitemap main .contents {
    padding: 118px 0 160px;
    border-bottom: 3px solid #000;
    font-family: Oswald,helvetica; }
    @media only screen and (max-width: 767px) {
      body.sitemap main .contents {
        padding: 72px 0 110px;
        border: none; } }
    body.sitemap main .contents .inner {
      max-width: 1040px; }
      @media only screen and (max-width: 767px) {
        body.sitemap main .contents .inner {
          padding: 0 30px; } }
    body.sitemap main .contents__list {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.sitemap main .contents__list {
          display: block; } }
      body.sitemap main .contents__list .box {
        width: 22%;
        text-align: left; }
        @media only screen and (max-width: 767px) {
          body.sitemap main .contents__list .box {
            width: 100%;
            margin: 0 0 50px; } }
        body.sitemap main .contents__list .box h3 {
          font-size: 20px;
          font-size: 2rem;
          padding: 0 0 15px;
          border-bottom: 2px solid #000;
          font-weight: 500; }
        body.sitemap main .contents__list .box ul {
          margin: 10px 0 0; }
          body.sitemap main .contents__list .box ul li {
            font-size: 20px;
            font-size: 2rem;
            line-height: 2; }
          body.sitemap main .contents__list .box ul .list-child {
            margin-top: 0px; }
            body.sitemap main .contents__list .box ul .list-child strong {
              font-size: 18px;
              font-size: 1.8rem;
              line-height: 1; }
            body.sitemap main .contents__list .box ul .list-child .history-box {
              line-height: 1;
              margin-top: -5px; }
              body.sitemap main .contents__list .box ul .list-child .history-box a {
                font-size: 14px;
                font-size: 1.4rem;
                line-height: 1.85;
                margin-right: 15px;
                display: inline-block; }

body.seminar_detail main {
  margin-top: 136px; }
  @media only screen and (max-width: 767px) {
    body.seminar_detail main {
      margin-top: 94px; } }
  body.seminar_detail main .contents {
    padding: 60px 0 60px;
    border-bottom: 3px solid #000; }
    @media only screen and (max-width: 767px) {
      body.seminar_detail main .contents {
        padding: 60px 0 80px;
        border-bottom: 2px solid #000; } }
    body.seminar_detail main .contents .img-text {
      padding: 0 80px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.seminar_detail main .contents .img-text {
          display: block;
          padding: 0; } }
      body.seminar_detail main .contents .img-text .img {
        width: 36%; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .contents .img-text .img {
            width: 100%; } }
      body.seminar_detail main .contents .img-text .text {
        width: 60%; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .contents .img-text .text {
            width: 100%;
            margin: 40px 0 0; } }
        body.seminar_detail main .contents .img-text .text .date {
          font-family: Oswald,helvetica;
          font-size: 16px;
          font-size: 1.6rem; }
        body.seminar_detail main .contents .img-text .text .title {
          font-family: Oswald,helvetica;
          font-weight: bold;
          font-size: 24px;
          font-size: 2.4rem;
          margin: 0 0 30px; }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .title {
              font-size: 16px;
              font-size: 1.6rem;
              line-height: 1.5;
              margin: 12px 0 40px; } }
        body.seminar_detail main .contents .img-text .text .category-list {
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .category-list {
              display: block; } }
          body.seminar_detail main .contents .img-text .text .category-list li {
            margin: 0 5px;
            width: 31.6666%; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .category-list li {
                width: 100%;
                margin: 0 0 15px; } }
            body.seminar_detail main .contents .img-text .text .category-list li span {
              font-family: Oswald,helvetica;
              font-size: 12px;
              font-size: 1.2rem;
              font-weight: 500;
              display: inline-block;
              margin: 0 5px 5px; }
            body.seminar_detail main .contents .img-text .text .category-list li .btn {
              display: block;
              border: 1px solid #000;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: .025em;
              padding: 7px;
              font-weight: 600;
              text-align: center; }
        body.seminar_detail main .contents .img-text .text .box {
          margin: 40px 0 0; }
          body.seminar_detail main .contents .img-text .text .box h3 {
            border-bottom: 1px solid #000;
            padding: 0 5px 10px;
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 600; }
          body.seminar_detail main .contents .img-text .text .box p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: .025em;
            line-height: 1.6666;
            margin: 20px 0 0;
            padding: 0 5px 0; }
            body.seminar_detail main .contents .img-text .text .box p em {
              font-style: italic; }
            body.seminar_detail main .contents .img-text .text .box p strong {
              font-weight: bold; }
            body.seminar_detail main .contents .img-text .text .box p a {
              text-decoration: underline; }
        body.seminar_detail main .contents .img-text .text .tel-btn {
          display: block;
          height: 80px;
          border: 2px solid #000;
          margin: 38px 0 0;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center; }
          @media only screen and (min-width: 768px) {
            body.seminar_detail main .contents .img-text .text .tel-btn {
              pointer-events: none; } }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .contents .img-text .text .tel-btn {
              display: block;
              text-align: center;
              height: 120px;
              padding: 24px 0 0; } }
          body.seminar_detail main .contents .img-text .text .tel-btn small {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: .025em;
            font-weight: 600; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .tel-btn small {
                display: block;
                margin: 0 0 18px; } }
          body.seminar_detail main .contents .img-text .text .tel-btn span {
            font-size: 30px;
            font-size: 3rem;
            font-family: Oswald,helvetica; }
            @media only screen and (max-width: 767px) {
              body.seminar_detail main .contents .img-text .text .tel-btn span {
                margin-left: -20px; } }
            body.seminar_detail main .contents .img-text .text .tel-btn span:before {
              content: "";
              width: 20px;
              height: 28px;
              display: inline-block;
              margin: 0 10px 0 18px;
              position: relative;
              top: 2px;
              background: url(../../../../img/top/tel-icon.png) center center/cover no-repeat; }
  body.seminar_detail main .navi-box {
    padding: 60px 0; }
    @media only screen and (max-width: 767px) {
      body.seminar_detail main .navi-box {
        padding: 40px 0; } }
    body.seminar_detail main .navi-box .wp-paginavi {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      font-family: Oswald,helvetica;
      font-size: 14px;
      font-size: 1.4rem;
      color: #000;
      font-weight: 600; }
      @media only screen and (max-width: 767px) {
        body.seminar_detail main .navi-box .wp-paginavi {
          display: block;
          font-size: 14px;
          font-size: 1.4rem;
          padding: 0 10px; } }
      body.seminar_detail main .navi-box .wp-paginavi .page {
        display: inline-block;
        width: 200px;
        padding: 10px;
        text-align: center;
        border: 2px solid #000; }
      body.seminar_detail main .navi-box .wp-paginavi .prev {
        position: relative;
        margin: 0 18px;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .navi-box .wp-paginavi .prev {
            margin-right: 38px; } }
        body.seminar_detail main .navi-box .wp-paginavi .prev:before {
          content: "";
          display: inline-block;
          width: 14px;
          height: 14px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
          position: absolute;
          top: 55%;
          left: -25px;
          -webkit-transform: translate(0, -50%) rotate(-135deg);
          -moz-transform: translate(0, -50%) rotate(-135deg);
          -ms-transform: translate(0, -50%) rotate(-135deg);
          -o-transform: translate(0, -50%) rotate(-135deg);
          transform: translate(0, -50%) rotate(-135deg); }
          @media only screen and (max-width: 767px) {
            body.seminar_detail main .navi-box .wp-paginavi .prev:before {
              width: 14px;
              height: 14px; } }
      body.seminar_detail main .navi-box .wp-paginavi .next {
        position: relative;
        margin: 0 18px; }
        @media only screen and (max-width: 767px) {
          body.seminar_detail main .navi-box .wp-paginavi .next {
            margin-left: 38px; } }
        body.seminar_detail main .navi-box .wp-paginavi .next:before {
          content: "";
          display: inline-block;
          width: 12px;
          height: 12px;
          border-top: 2px solid #000;
          border-right: 2px solid #000;
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          position: absolute;
          top: 50%;
          right: -10px;
          -webkit-transform: translate(0, -50%) rotate(45deg);
          -moz-transform: translate(0, -50%) rotate(45deg);
          -ms-transform: translate(0, -50%) rotate(45deg);
          -o-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg); }
