@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: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #222222; }

* {
  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; }
  @media only screen and (min-width: 768px) {
    a:hover {
      opacity: 0.6; } }

.inner {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: auto; }

.wrap {
  padding-top: 72px; }

.layout-cont {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: auto;
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .layout-cont {
      flex-direction: column-reverse; } }
  .layout-cont .sidebar {
    width: 300px;
    margin-right: 80px; }
    @media screen and (max-width: 1200px) {
      .layout-cont .sidebar {
        margin-right: 20px; } }
    @media only screen and (max-width: 767px) {
      .layout-cont .sidebar {
        width: 100%;
        margin-right: 0; } }
  .layout-cont main {
    width: calc(100% - 380px); }
    @media only screen and (max-width: 767px) {
      .layout-cont main {
        width: 100%; } }

.footer {
  background-color: #4D4D4D;
  color: white;
  border-bottom: 8px solid #60B7E8;
  height: 120px; }
  @media only screen and (max-width: 767px) {
    .footer {
      height: 160px;
      padding-top: 22px; } }
  .footer .inner {
    height: 100%; }
    .footer .inner .cont {
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .footer .inner .cont {
          flex-direction: column;
          justify-content: center; } }
      .footer .inner .cont .left a {
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .footer .inner .cont .left a {
            flex-direction: column; } }
        .footer .inner .cont .left a figure {
          width: 164px;
          height: auto; }
        .footer .inner .cont .left a p {
          margin-left: 16px;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.1em; }
          @media only screen and (max-width: 767px) {
            .footer .inner .cont .left a p {
              margin-top: 8px;
              margin-left: 0; } }
          @media all and (-ms-high-contrast: none) {
            .footer .inner .cont .left a p {
              padding-top: 7px; } }
      .footer .inner .cont .right {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        font-family: "Montserrat", sans-serif; }
        @media only screen and (max-width: 767px) {
          .footer .inner .cont .right {
            font-size: 12px;
            font-size: 1.2rem;
            margin-top: 30px; } }

#sub-footer {
  background-color: rgba(235, 235, 235, 0.4);
  padding: 62px 0 120px; }
  @media only screen and (max-width: 767px) {
    #sub-footer {
      padding: 70px 0 110px; } }
  #sub-footer .cont {
    width: calc(100% - 380px);
    margin: 0 0 0 auto; }
    @media only screen and (max-width: 767px) {
      #sub-footer .cont {
        width: 100%; } }
    #sub-footer .cont .relation {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.1em;
      padding-bottom: 16px;
      border-bottom: 2px solid #60B7E8;
      font-weight: bold; }
    #sub-footer .cont ul a {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      border-bottom: 1px solid rgba(34, 34, 34, 0.15); }
      @media only screen and (max-width: 767px) {
        #sub-footer .cont ul a {
          text-decoration: underline; } }
    #sub-footer .cont .no-related {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      margin-top: 10px; }

#sub-footer2 {
  width: 100%;
  padding: 93px 0;
  background-color: rgba(235, 235, 235, 0.4); }
  @media only screen and (max-width: 767px) {
    #sub-footer2 {
      padding: 76px 0 92px; } }
  #sub-footer2 .inner .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 44px;
    max-width: 556px; }
    @media only screen and (max-width: 767px) {
      #sub-footer2 .inner .box {
        margin-bottom: 36px; } }
    #sub-footer2 .inner .box h2 {
      font-weight: bold;
      font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 32px;
      font-size: 3.2rem;
      letter-spacing: 0.04em;
      line-height: 1.3em;
      display: flex;
      align-items: center;
      padding: 2px 2px 2px 26px;
      position: relative;
      white-space: nowrap; }
      #sub-footer2 .inner .box h2:before {
        content: "";
        width: 6px;
        height: 100%;
        border-radius: 3px;
        background-color: #60B7E8;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0; }
      #sub-footer2 .inner .box h2 span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        color: rgba(34, 34, 34, 0.6);
        font-weight: 500;
        margin-left: 15px;
        display: block; }
        @media all and (-ms-high-contrast: none) {
          #sub-footer2 .inner .box h2 span {
            padding-top: 7px; } }
  #sub-footer2 .inner ul {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      #sub-footer2 .inner ul {
        flex-direction: column; } }
    #sub-footer2 .inner ul a {
      width: 31.333%; }
      @media only screen and (max-width: 767px) {
        #sub-footer2 .inner ul a {
          width: 100%;
          display: flex;
          justify-content: space-between;
          margin-bottom: 24px; } }
      #sub-footer2 .inner ul a figure {
        width: 100%;
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          #sub-footer2 .inner ul a figure {
            width: 40.8%;
            margin-bottom: 0; } }
      @media only screen and (max-width: 767px) {
        #sub-footer2 .inner ul a .cont {
          width: 54.5%; } }
      #sub-footer2 .inner ul a .cont .cat-name {
        padding: 6px;
        color: #60B7E8;
        border: 1px solid #60B7E8;
        display: inline-block;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.1em;
        white-space: nowrap;
        font-weight: 500;
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          #sub-footer2 .inner ul a .cont .cat-name {
            margin-bottom: 16px; } }
      #sub-footer2 .inner ul a .cont .title {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        line-height: 1.8666em; }
        @media only screen and (max-width: 767px) {
          #sub-footer2 .inner ul a .cont .title {
            line-height: 1.6em;
            height: 46px;
            overflow: hidden; } }
  @media only screen and (max-width: 767px) {
    #sub-footer2 .inner .btn {
      width: 240px;
      margin: 16px auto 0;
      display: block; } }

.header .header-top {
  background-color: #60B7E8;
  color: white;
  height: 132px; }
  @media only screen and (max-width: 767px) {
    .header .header-top {
      height: auto;
      padding-top: 31px;
      padding-bottom: 24px; } }
  .header .header-top .inner {
    height: 100%; }
    .header .header-top .inner .cont {
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .header .header-top .inner .cont {
          flex-direction: column;
          align-items: flex-start; } }
      .header .header-top .inner .cont .left a {
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          .header .header-top .inner .cont .left a {
            flex-direction: column; } }
        .header .header-top .inner .cont .left a figure {
          width: 164px;
          height: auto; }
        .header .header-top .inner .cont .left a p {
          margin-left: 16px;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.1em; }
          @media only screen and (max-width: 767px) {
            .header .header-top .inner .cont .left a p {
              margin-top: 8px;
              margin-left: 0; } }
      .header .header-top .inner .cont .right {
        display: flex;
        align-items: center;
        justify-content: center; }
        @media only screen and (max-width: 767px) {
          .header .header-top .inner .cont .right {
            margin-top: 32px;
            position: relative;
            width: 100%; } }
        .header .header-top .inner .cont .right .search {
          display: flex;
          background-color: white;
          height: 64px;
          align-items: center;
          padding: 0 7px;
          border-radius: 8px;
          box-shadow: 0px 4px 0px 0px rgba(255, 255, 255, 0.4);
          -webkit-box-shadow: 0px 4px 0px 0px rgba(255, 255, 255, 0.4);
          -moz-box-shadow: 0px 4px 0px 0px rgba(255, 255, 255, 0.4); }
          @media only screen and (max-width: 767px) {
            .header .header-top .inner .cont .right .search {
              padding: 0 7px 0 0;
              border-radius: 5px;
              width: 100%;
              height: 52px; } }
          .header .header-top .inner .cont .right .search .icon {
            width: 58px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #96CEED;
            margin-right: 20px; }
            @media only screen and (max-width: 767px) {
              .header .header-top .inner .cont .right .search .icon {
                width: 56px;
                margin-right: 10px; } }
            .header .header-top .inner .cont .right .search .icon button {
              background-color: transparent;
              border: none;
              outline: none;
              cursor: pointer; }
            .header .header-top .inner .cont .right .search .icon img {
              width: 22px;
              height: auto; }
          .header .header-top .inner .cont .right .search input {
            font-size: 18px;
            font-size: 1.8rem;
            letter-spacing: 0.1em;
            font-weight: 500;
            border: none;
            outline: none;
            width: 308px;
            /* IE */
            /* Edge */ }
            @media screen and (max-width: 1050px) {
              .header .header-top .inner .cont .right .search input {
                width: 150px; } }
            @media only screen and (max-width: 767px) {
              .header .header-top .inner .cont .right .search input {
                width: calc(100% - 67px); } }
            .header .header-top .inner .cont .right .search input::placeholder {
              color: #96CEED; }
            .header .header-top .inner .cont .right .search input:-ms-input-placeholder {
              color: #96CEED; }
            .header .header-top .inner .cont .right .search input::-ms-input-placeholder {
              color: #96CEED; }
        .header .header-top .inner .cont .right .tel {
          margin-left: 32px;
          width: 290px;
          height: 68px;
          background-color: #135D86;
          border-radius: 8px;
          display: flex;
          align-items: center;
          justify-content: center; }
          @media screen and (max-width: 1050px) {
            .header .header-top .inner .cont .right .tel {
              margin-left: 10px; } }
          @media only screen and (max-width: 767px) {
            .header .header-top .inner .cont .right .tel {
              position: absolute;
              width: 56px;
              height: 56px;
              border-radius: 5px;
              margin-left: 0;
              right: 0;
              bottom: 76px; }
              .header .header-top .inner .cont .right .tel:before {
                content: "";
                width: 29px;
                height: 29px;
                margin-right: 0;
                background-image: url(../images/common/tel.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                display: block;
                display: inline-block;
                margin-bottom: -2px; } }
          .header .header-top .inner .cont .right .tel:hover {
            background-color: rgba(255, 255, 255, 0.3);
            opacity: 1; }
          .header .header-top .inner .cont .right .tel .cont {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; }
            .header .header-top .inner .cont .right .tel .cont .text1 {
              font-size: 23px;
              font-size: 2.3rem;
              letter-spacing: 0.04em;
              font-family: "Montserrat", sans-serif;
              margin-bottom: 2px; }
              .header .header-top .inner .cont .right .tel .cont .text1:before {
                content: "";
                width: 20px;
                height: 20px;
                background-image: url(../images/common/tel.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                display: block;
                display: inline-block;
                margin-right: 8px;
                margin-bottom: -2px; }
                @media only screen and (max-width: 767px) {
                  .header .header-top .inner .cont .right .tel .cont .text1:before {
                    width: 29px;
                    height: 29px;
                    margin-right: 0; } }
            .header .header-top .inner .cont .right .tel .cont .text2 {
              font-size: 12px;
              font-size: 1.2rem;
              letter-spacing: 0em;
              line-height: 1.5em; }

.header .header-bottom {
  background-color: #4D4D4D;
  color: white;
  height: 60px;
  z-index: 9000; }
  @media only screen and (max-width: 767px) {
    .header .header-bottom {
      height: 56px; } }
  .header .header-bottom.fixed {
    position: fixed;
    top: 0;
    width: 100%; }
  .header .header-bottom .inner {
    height: 100%;
    padding: 10px 0; }
    @media only screen and (max-width: 767px) {
      .header .header-bottom .inner {
        padding: 0;
        width: 100%; } }
    .header .header-bottom .inner nav {
      height: 100%; }
      .header .header-bottom .inner nav ul {
        height: 100%;
        display: flex;
        justify-content: space-between;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .header .header-bottom .inner nav ul {
            flex-wrap: nowrap;
            overflow-x: scroll; } }
        .header .header-bottom .inner nav ul li {
          border-right: 1px solid rgba(255, 255, 255, 0.4);
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%;
          flex: 1 0 auto; }
          @media only screen and (max-width: 767px) {
            .header .header-bottom .inner nav ul li {
              border-right: none;
              padding: 0 24px 0 0;
              color: rgba(255, 255, 255, 0.4); }
              .header .header-bottom .inner nav ul li:first-child {
                padding-left: 24px; } }
          .header .header-bottom .inner nav ul li:last-child {
            border-right: none; }
          .header .header-bottom .inner nav ul li.active {
            color: white; }
          .header .header-bottom .inner nav ul li a {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.1em; }
            @media only screen and (max-width: 767px) {
              .header .header-bottom .inner nav ul li a {
                font-size: 14px;
                font-size: 1.4rem; } }

.sidebar {
  padding-top: 4px; }
  @media only screen and (max-width: 767px) {
    .sidebar {
      padding-top: 0;
      margin-bottom: 74px; } }
  .sidebar .side-cont {
    width: 100%;
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      .sidebar .side-cont {
        margin-bottom: 16px; } }
    .sidebar .side-cont .enjp {
      font-weight: bold;
      font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
      font-size: 22px;
      font-size: 2.2rem;
      letter-spacing: 0.04em;
      font-weight: bold;
      display: flex;
      align-items: center;
      margin-bottom: 27px; }
      @media only screen and (max-width: 767px) {
        .sidebar .side-cont .enjp {
          border-radius: 5px;
          border: 1px solid #222222;
          font-size: 20px;
          font-size: 2rem;
          padding: 16px 50px 16px 16px;
          position: relative;
          margin-bottom: 0; }
          .sidebar .side-cont .enjp:after {
            content: "";
            width: 10px;
            height: 15px;
            background-image: url(../images/common/arr-bk.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 24px;
            margin: auto; } }
  @media only screen and (max-width: 767px) and (max-width: 767px) {
    .sidebar .side-cont .enjp.active:after {
      transform: rotate(180deg); } }
      .sidebar .side-cont .enjp span {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        font-weight: 500;
        opacity: 0.6;
        margin-left: 13px; }
        @media only screen and (max-width: 767px) {
          .sidebar .side-cont .enjp span {
            font-size: 12px;
            font-size: 1.2rem; } }
        @media all and (-ms-high-contrast: none) {
          .sidebar .side-cont .enjp span {
            padding-top: 7px; } }
    .sidebar .side-cont .category-detail-side-heading {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.1em;
      font-weight: bold;
      border-bottom: 2px solid #60B7E8;
      padding-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .sidebar .side-cont .category-detail-side-heading {
          color: #60B7E8;
          border: 1px solid #60B7E8;
          border-radius: 5px;
          height: 52px;
          padding-bottom: 0;
          display: flex;
          align-items: center;
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.1em;
          font-weight: 500;
          padding: 0 60px 0 16px;
          box-shadow: 0px 4px 0px 0px #60B7E8;
          -webkit-box-shadow: 0px 4px 0px 0px #60B7E8;
          -moz-box-shadow: 0px 4px 0px 0px #60B7E8;
          position: relative; }
          .sidebar .side-cont .category-detail-side-heading:after {
            content: "";
            width: 15px;
            height: 10px;
            background-image: url(../images/common/arr.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 12px;
            margin: auto;
            transform: rotate(90deg); }
          .sidebar .side-cont .category-detail-side-heading.active:after {
            transform: rotate(-90deg); } }
    @media only screen and (max-width: 767px) {
      .sidebar .side-cont .sp-cont {
        display: none;
        max-height: 280px;
        overflow-y: scroll; } }
    @media only screen and (max-width: 767px) {
      .sidebar .side-cont .sp-cont.cate-border {
        border: 1px solid #EBEBEB;
        max-height: 346px; } }
    .sidebar .side-cont .sp-cont .topic-list a {
      display: block;
      width: 100%;
      padding: 15px 60px 15px 24px;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      font-weight: bold;
      border-bottom: 1px solid #EBEBEB;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .sidebar .side-cont .sp-cont .topic-list a:hover {
          opacity: 1;
          background-color: rgba(235, 235, 235, 0.6); } }
      .sidebar .side-cont .sp-cont .topic-list a:after {
        content: "";
        width: 15px;
        height: 10px;
        background-image: url(../images/common/arr.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 24px;
        margin: auto; }
    .sidebar .side-cont .sp-cont .archive-list li .year {
      cursor: pointer;
      padding: 16px 60px 16px 28px;
      background-color: #DFF2FC;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      font-weight: bold;
      position: relative; }
      .sidebar .side-cont .sp-cont .archive-list li .year:after {
        content: "";
        width: 14px;
        height: 14px;
        background-image: url(../images/common/plus.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 24px;
        margin: auto; }
      .sidebar .side-cont .sp-cont .archive-list li .year.active:after {
        background-image: url(../images/common/minus.svg); }
    .sidebar .side-cont .sp-cont .archive-list li .topic-list {
      display: none; }
    .sidebar .side-cont .sp-cont .item-list a {
      display: block;
      width: 100%;
      padding: 22px 45px 22px 16px;
      border-bottom: 1px solid #EBEBEB;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .sidebar .side-cont .sp-cont .item-list a {
          padding-right: 16px; }
          .sidebar .side-cont .sp-cont .item-list a:last-child {
            border-bottom: none; } }
      .sidebar .side-cont .sp-cont .item-list a .category {
        color: #60B7E8;
        font-weight: 500;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.01em;
        margin-bottom: 10px; }
      .sidebar .side-cont .sp-cont .item-list a .title {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        line-height: 1.6em; }
        @media only screen and (max-width: 767px) {
          .sidebar .side-cont .sp-cont .item-list a .title {
            text-decoration: underline; } }
      @media only screen and (min-width: 768px) {
        .sidebar .side-cont .sp-cont .item-list a:hover {
          opacity: 1;
          background-color: rgba(235, 235, 235, 0.6); } }
      .sidebar .side-cont .sp-cont .item-list a:after {
        content: "";
        width: 15px;
        height: 10px;
        background-image: url(../images/common/arr.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 16px;
        margin: auto; }
        @media only screen and (max-width: 767px) {
          .sidebar .side-cont .sp-cont .item-list a:after {
            display: none; } }

.item {
  border-bottom: 1px solid #EBEBEB;
  width: 100%;
  display: block;
  padding: 20px 45px 20px 15px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .item {
      padding: 19px 10px; } }
  .item:after {
    content: "";
    width: 15px;
    height: 10px;
    background-image: url(../images/common/arr.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      .item:after {
        display: none; } }
  .item .item-header {
    display: flex;
    align-items: center;
    margin-bottom: 9px; }
    .item .item-header time {
      color: #60B7E8;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.06em;
      font-family: "Montserrat", sans-serif;
      margin-right: 16px;
      line-height: 15px; }
    .item .item-header .category {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      color: #60B7E8;
      line-height: 15px; }
  .item .item-title {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.8666em; }
    @media only screen and (max-width: 767px) {
      .item .item-title {
        text-decoration: underline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-text-overflow: ellipsis;
        /* Safari */
        -o-text-overflow: ellipsis;
        /* Opera */ } }

.btn {
  width: 140px;
  height: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 37px;
  color: #135D86;
  font-weight: bold;
  text-align: center;
  border: 1px solid #135D86;
  border-radius: 20px;
  display: inline-block;
  background-color: white; }
  @media only screen and (max-width: 767px) {
    .btn {
      height: 56px;
      border-radius: 28px;
      line-height: 52px;
      font-size: 16px;
      font-size: 1.6rem; } }
  @media all and (-ms-high-contrast: none) {
    .btn {
      padding-top: 3px; } }
  .btn:hover {
    opacity: 1; }
    @media only screen and (min-width: 768px) {
      .btn:hover {
        background-color: #135D86;
        color: white; } }

.pagenation .wp-pagenavi {
  width: 100%;
  height: 40px;
  position: relative;
  margin-bottom: 60px; }
  .pagenation .wp-pagenavi .pages {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto; }
  .pagenation .wp-pagenavi .previouspostslink {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #135D86;
    font-family: "Montserrat", sans-serif;
    width: 100px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #135D86;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    padding-left: 26px;
    left: 0; }
    .pagenation .wp-pagenavi .previouspostslink:hover {
      background-color: #EBEBEB;
      border: 1px solid #EBEBEB;
      opacity: 1;
      color: #222222; }
      .pagenation .wp-pagenavi .previouspostslink:hover:after {
        background-image: url(../images/common/arr-bk.svg); }
    .pagenation .wp-pagenavi .previouspostslink:after {
      content: "";
      width: 10px;
      height: 15px;
      background-image: url(../images/common/arr-dark.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 15px;
      margin: auto;
      transform: rotate(90deg); }
  .pagenation .wp-pagenavi .nextpostslink {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #135D86;
    font-family: "Montserrat", sans-serif;
    width: 100px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #135D86;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    padding-right: 26px;
    right: 0; }
    .pagenation .wp-pagenavi .nextpostslink:hover {
      background-color: #EBEBEB;
      border: 1px solid #EBEBEB;
      opacity: 1;
      color: #222222; }
      .pagenation .wp-pagenavi .nextpostslink:hover:after {
        background-image: url(../images/common/arr-bk.svg); }
    .pagenation .wp-pagenavi .nextpostslink:after {
      content: "";
      width: 10px;
      height: 15px;
      background-image: url(../images/common/arr-dark.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 15px;
      margin: auto;
      transform: rotate(-90deg); }

#detail-content .detail-header .box {
  margin-bottom: 12px;
  display: flex;
  color: #60B7E8;
  align-items: center; }
  #detail-content .detail-header .box time {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-right: 21px;
    font-family: "Montserrat", sans-serif;
    padding-top: 5px; }
  #detail-content .detail-header .box .category {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em; }
    @media all and (-ms-high-contrast: none) {
      #detail-content .detail-header .box .category {
        padding-top: 11px; } }

#detail-content h1 {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.468em;
  font-weight: bold;
  margin-bottom: 38px; }
  @media only screen and (max-width: 767px) {
    #detail-content h1 {
      margin-bottom: 20px; } }

#detail-content .contents * {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.8666em; }
  @media only screen and (max-width: 767px) {
    #detail-content .contents * {
      line-height: 1.9em; } }

#detail-content .contents p {
  margin-bottom: 1.8em;
  text-align: justify; }

#detail-content .contents a {
  text-decoration: underline; }

#detail-content .contents h2 {
  font-weight: bold;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3em;
  display: flex;
  align-items: center;
  padding: 2px 2px 2px 26px;
  position: relative;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: bold;
  margin-top: 54px;
  margin-bottom: 24px; }
  #detail-content .contents h2:before {
    content: "";
    width: 6px;
    height: 100%;
    border-radius: 3px;
    background-color: #60B7E8;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0; }
  #detail-content .contents h2 span {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: rgba(34, 34, 34, 0.6);
    font-weight: 500;
    margin-left: 15px;
    display: block; }
    @media all and (-ms-high-contrast: none) {
      #detail-content .contents h2 span {
        padding-top: 7px; } }
  @media only screen and (max-width: 767px) {
    #detail-content .contents h2 {
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 46px; } }

#detail-content .contents h3 {
  background-color: rgba(223, 242, 252, 0.6);
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  font-weight: bold;
  padding: 7px 19px;
  margin: 18px 0; }
  @media only screen and (max-width: 767px) {
    #detail-content .contents h3 {
      padding: 10px 19px; } }

#detail-content .contents h4, #detail-content .contents h5, #detail-content .contents h6 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin: 12px 0;
  font-weight: bold; }

#detail-content .contents ul {
  margin-bottom: 2em;
  padding-left: 1.3em; }
  #detail-content .contents ul li {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.8666em;
    position: relative; }
    #detail-content .contents ul li:before {
      content: "-";
      display: block;
      position: absolute;
      left: -1.3em; }

#detail-content .contents ol {
  margin-bottom: 2em;
  list-style-type: decimal;
  padding-left: 1.3em; }
  #detail-content .contents ol li {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.8666em; }

#detail-content .contents img {
  margin-bottom: 1em; }

#detail-content .sns-cont {
  margin-top: 30px; }
  @media only screen and (max-width: 767px) {
    #detail-content .sns-cont {
      margin-top: 30px; } }
  #detail-content .sns-cont .sns-list {
    margin-bottom: 10px; }
    #detail-content .sns-cont .sns-list a {
      margin-right: 8px;
      width: 32px;
      height: 32px; }

#detail-content .afb_container {
  margin-bottom: 0px;
  border-bottom: 1px solid #EBEBEB;
  padding: 0 0 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    #detail-content .afb_container {
      padding: 26px 0;
      margin-bottom: 57px; } }
  #detail-content .afb_container .message {
    border-top: 1px solid #EBEBEB;
    padding-top: 34px;
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    text-align: center;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      #detail-content .afb_container .message {
        margin-bottom: 20px;
        padding-top: 26px; } }
  #detail-content .afb_container a {
    margin: 0 5px;
    width: 120px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    line-height: 38px;
    height: 40px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 37px;
    color: #135D86;
    font-weight: bold;
    text-align: center;
    border: 1px solid #135D86;
    border-radius: 20px;
    display: inline-block;
    background-color: white; }
    @media only screen and (max-width: 767px) {
      #detail-content .afb_container a {
        height: 40px;
        border-radius: 20px;
        line-height: 36px;
        font-size: 16px;
        font-size: 1.6rem; } }
    @media all and (-ms-high-contrast: none) {
      #detail-content .afb_container a {
        padding-top: 4px; } }
    #detail-content .afb_container a:hover {
      opacity: 1; }
      @media only screen and (min-width: 768px) {
        #detail-content .afb_container a:hover {
          background-color: #135D86;
          color: white; } }
    #detail-content .afb_container a:before {
      content: "";
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: inline-block;
      margin-right: 13px; }
    #detail-content .afb_container a.good:before {
      background-image: url(../images/category/yes.svg);
      width: 15.4px;
      height: 11.6px; }
    #detail-content .afb_container a.bad:before {
      background-image: url(../images/category/no.svg);
      width: 12px;
      height: 12px; }
    @media only screen and (min-width: 768px) {
      #detail-content .afb_container a:hover.good:before {
        background-image: url(../images/category/yes_hov.svg); } }
    @media only screen and (min-width: 768px) {
      #detail-content .afb_container a:hover.bad:before {
        background-image: url(../images/category/no_hov.svg); } }
  #detail-content .afb_container .status {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: rgba(34, 34, 34, 0.6);
    margin-top: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 0; }

#detail-content .link-back {
  height: 56px;
  border-radius: 28px;
  line-height: 52px;
  width: 240px;
  margin: 72px auto 109px;
  display: block;
  position: relative; }
  @media only screen and (max-width: 767px) {
    #detail-content .link-back {
      width: 220px;
      margin: 40px auto 90px; } }
  #detail-content .link-back:before {
    content: "";
    width: 10px;
    height: 15px;
    background-image: url(../images/common/arr-dark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 26px;
    margin: auto;
    transform: rotate(90deg); }
  @media only screen and (min-width: 768px) {
    #detail-content .link-back:hover:before {
      background-image: url(../images/common/arr-wh.svg); } }

@media only screen and (max-width: 767px) {
  body.category-detail .layout-cont {
    flex-direction: column; } }

@media only screen and (max-width: 767px) {
  body.category-detail .layout-cont .sidebar {
    margin-bottom: 50px; } }

body.category main #main-content {
  margin-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    body.category main #main-content {
      margin-bottom: 18px; } }
  body.category main #main-content .inner h2 {
    font-weight: bold;
    font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    padding: 2px 2px 2px 26px;
    position: relative;
    letter-spacing: 0.1em;
    margin-bottom: 38px; }
    body.category main #main-content .inner h2:before {
      content: "";
      width: 6px;
      height: 100%;
      border-radius: 3px;
      background-color: #60B7E8;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0; }
    body.category main #main-content .inner h2 span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      color: rgba(34, 34, 34, 0.6);
      font-weight: 500;
      margin-left: 15px;
      display: block; }
      @media all and (-ms-high-contrast: none) {
        body.category main #main-content .inner h2 span {
          padding-top: 7px; } }
    @media only screen and (min-width: 768px) {
      body.category main #main-content .inner h2 {
        padding: 7px 7px 7px 26px; } }
  body.category main #main-content .inner .category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.category main #main-content .inner .category-list {
        flex-direction: column; } }
    body.category main #main-content .inner .category-list .category-item {
      width: calc(50% - 30px);
      margin-bottom: 63px; }
      @media only screen and (max-width: 767px) {
        body.category main #main-content .inner .category-list .category-item {
          width: 100%; } }
      body.category main #main-content .inner .category-list .category-item h3 {
        background-color: rgba(223, 242, 252, 0.4);
        color: #60B7E8;
        width: 100%;
        padding: 16px 20px;
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.1em;
        line-height: 1.45em;
        font-weight: bold;
        margin-bottom: 2px; }
        @media only screen and (max-width: 767px) {
          body.category main #main-content .inner .category-list .category-item h3 {
            margin-bottom: 10px; } }
      @media only screen and (min-width: 768px) {
        body.category main #main-content .inner .category-list .category-item ul .item {
          padding: 18px 45px 18px 15px; } }
      @media only screen and (max-width: 767px) {
        body.category main #main-content .inner .category-list .category-item ul .item {
          padding-top: 15px;
          padding-bottom: 15px; } }
      body.category main #main-content .inner .category-list .category-item .more {
        display: none; }
      body.category main #main-content .inner .category-list .category-item .toggle {
        outline: none;
        cursor: pointer;
        width: 180px;
        display: block;
        margin: 40px auto 14px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.category main #main-content .inner .category-list .category-item .toggle {
            width: 220px;
            margin-bottom: 0; } }
        body.category main #main-content .inner .category-list .category-item .toggle:after {
          content: "";
          width: 9px;
          height: 13px;
          background-image: url(../images/common/arr-dark.svg);
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          display: block;
          position: absolute;
          top: 0;
          bottom: 0;
          right: 13px;
          margin: auto; }
        body.category main #main-content .inner .category-list .category-item .toggle:before {
          content: "記事をすべて表示"; }
        @media only screen and (min-width: 768px) {
          body.category main #main-content .inner .category-list .category-item .toggle:hover:after {
            background-image: url(../images/common/arr-wh.svg); } }
        body.category main #main-content .inner .category-list .category-item .toggle.open:after {
          transform: rotate(180deg); }
        body.category main #main-content .inner .category-list .category-item .toggle.open:before {
          content: "閉じる"; }

body.index main #intro {
  padding-top: 10px; }
  @media only screen and (max-width: 767px) {
    body.index main #intro {
      padding-top: 0; } }
  body.index main #intro .inner h1 {
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-weight: bold; }
  body.index main #intro .inner .text {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.866em;
    margin-top: 10px; }
    body.index main #intro .inner .text a {
      color: #60B7E8;
      text-decoration: underline; }

body.index main .main-cont {
  padding: 80px 0 96px; }
  @media only screen and (max-width: 767px) {
    body.index main .main-cont {
      padding: 80px 0 78px; } }
  body.index main .main-cont .inner {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.index main .main-cont .inner {
        flex-direction: column; } }
    body.index main .main-cont .inner .cate-cont {
      width: calc(50% - 28px); }
      @media only screen and (max-width: 767px) {
        body.index main .main-cont .inner .cate-cont {
          width: 100%;
          margin-bottom: 80px; }
          body.index main .main-cont .inner .cate-cont:last-child {
            margin-bottom: 0; } }
      body.index main .main-cont .inner .cate-cont .box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.index main .main-cont .inner .cate-cont .box {
            margin-bottom: 14px; } }
        body.index main .main-cont .inner .cate-cont .box h2 {
          font-weight: bold;
          font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
          font-size: 32px;
          font-size: 3.2rem;
          letter-spacing: 0.04em;
          line-height: 1.3em;
          display: flex;
          align-items: center;
          padding: 2px 2px 2px 26px;
          position: relative;
          white-space: nowrap; }
          body.index main .main-cont .inner .cate-cont .box h2:before {
            content: "";
            width: 6px;
            height: 100%;
            border-radius: 3px;
            background-color: #60B7E8;
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0; }
          body.index main .main-cont .inner .cate-cont .box h2 span {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.1em;
            color: rgba(34, 34, 34, 0.6);
            font-weight: 500;
            margin-left: 15px;
            display: block; }
            @media all and (-ms-high-contrast: none) {
              body.index main .main-cont .inner .cate-cont .box h2 span {
                padding-top: 7px; } }
          @media screen and (max-width: 374px) {
            body.index main .main-cont .inner .cate-cont .box h2 {
              flex-direction: column;
              justify-content: flex-start;
              align-items: flex-start; } }
          @media screen and (max-width: 374px) {
            body.index main .main-cont .inner .cate-cont .box h2 span {
              margin-left: 0; } }
          @media all and (-ms-high-contrast: none) {
            body.index main .main-cont .inner .cate-cont .box h2 span {
              padding-top: 10px; } }
      body.index main .main-cont .inner .cate-cont ul a .item-title {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      @media only screen and (max-width: 767px) {
        body.index main .main-cont .inner .cate-cont .btn {
          margin: 43px auto 0;
          display: block;
          width: 240px; } }
  body.index main .main-cont:last-child {
    padding-bottom: 110px; }

body.index main #method {
  padding: 86px 0 90px;
  background-color: rgba(223, 242, 252, 0.4);
  margin-bottom: 16px; }
  @media only screen and (max-width: 767px) {
    body.index main #method {
      padding: 70px 0 74px;
      margin-bottom: 0; } }
  body.index main #method .inner h2 {
    text-align: center;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
    font-weight: bold; }
    @media only screen and (max-width: 767px) {
      body.index main #method .inner h2 {
        line-height: 1.187em; } }
    body.index main #method .inner h2 span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      margin-top: 12px;
      color: rgba(34, 34, 34, 0.6);
      display: block;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.index main #method .inner h2 span {
          margin-top: 4px; } }
  body.index main #method .inner ul {
    width: 100%;
    max-width: 1000px;
    margin: 58px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.index main #method .inner ul {
        margin-top: 38px; } }
    body.index main #method .inner ul a {
      width: 320px;
      height: 116px;
      background-color: white;
      border: 1px solid #60B7E8;
      font-size: 22px;
      font-size: 2.2rem;
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      padding-left: 36px;
      margin-bottom: 20px;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        body.index main #method .inner ul a {
          height: 106px;
          width: 100%;
          margin-bottom: 16px; } }
      @media all and (-ms-high-contrast: none) {
        body.index main #method .inner ul a {
          padding-top: 9px; } }
      body.index main #method .inner ul a:hover {
        opacity: 1; }
        @media only screen and (min-width: 768px) {
          body.index main #method .inner ul a:hover {
            background-color: #60B7E8;
            color: white; } }
      body.index main #method .inner ul a:before {
        content: "";
        width: 68px;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        display: block;
        margin-right: 21px; }
      body.index main #method .inner ul a.item1:before {
        background-image: url(../images/common/item1.svg); }
      body.index main #method .inner ul a.item1:hover:before {
        background-image: url(../images/common/item1_hov.svg); }
      body.index main #method .inner ul a.item2:before {
        background-image: url(../images/common/item2.svg); }
      body.index main #method .inner ul a.item2:hover:before {
        background-image: url(../images/common/item2_hov.svg); }
      body.index main #method .inner ul a.item3:before {
        background-image: url(../images/common/item3.svg); }
      body.index main #method .inner ul a.item3:hover:before {
        background-image: url(../images/common/item3_hov.svg); }
      body.index main #method .inner ul a.item4:before {
        background-image: url(../images/common/item4.svg); }
      body.index main #method .inner ul a.item4:hover:before {
        background-image: url(../images/common/item4_hov.svg); }
      body.index main #method .inner ul a.item5:before {
        background-image: url(../images/common/item5.svg); }
      body.index main #method .inner ul a.item5:hover:before {
        background-image: url(../images/common/item5_hov.svg); }
      body.index main #method .inner ul a.item6:before {
        background-image: url(../images/common/item6.svg); }
      body.index main #method .inner ul a.item6:hover:before {
        background-image: url(../images/common/item6_hov.svg); }

body.news main #main-content {
  margin-bottom: 65px; }
  @media only screen and (max-width: 767px) {
    body.news main #main-content {
      margin-bottom: 54px; } }
  body.news main #main-content h2 {
    font-weight: bold;
    font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    padding: 2px 2px 2px 26px;
    position: relative;
    letter-spacing: 0.1em;
    margin-bottom: 10px; }
    body.news main #main-content h2:before {
      content: "";
      width: 6px;
      height: 100%;
      border-radius: 3px;
      background-color: #60B7E8;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0; }
    body.news main #main-content h2 span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
      color: rgba(34, 34, 34, 0.6);
      font-weight: 500;
      margin-left: 15px;
      display: block; }
      @media all and (-ms-high-contrast: none) {
        body.news main #main-content h2 span {
          padding-top: 7px; } }
    @media only screen and (min-width: 768px) {
      body.news main #main-content h2 {
        padding: 7px 7px 7px 26px; } }
    @media only screen and (max-width: 767px) {
      body.news main #main-content h2 {
        margin-bottom: 20px; } }
  body.news main #main-content ul .item {
    padding-bottom: 18px; }

body.search main #main-content .inner h2 {
  font-weight: bold;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3em;
  display: flex;
  align-items: center;
  padding: 2px 2px 2px 26px;
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 20px; }
  body.search main #main-content .inner h2:before {
    content: "";
    width: 6px;
    height: 100%;
    border-radius: 3px;
    background-color: #60B7E8;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0; }
  body.search main #main-content .inner h2 span {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: rgba(34, 34, 34, 0.6);
    font-weight: 500;
    margin-left: 15px;
    display: block; }
    @media all and (-ms-high-contrast: none) {
      body.search main #main-content .inner h2 span {
        padding-top: 7px; } }
  @media only screen and (min-width: 768px) {
    body.search main #main-content .inner h2 {
      padding: 7px 7px 7px 26px; } }

body.search main #main-content .inner .result {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding-left: 32px; }

body.search main #main-content .inner .search-list {
  margin-top: 68px;
  margin-bottom: 70px;
  width: 100%; }
  body.search main #main-content .inner .search-list .result-item {
    border-bottom: 1px solid rgba(34, 34, 34, 0.15);
    margin-bottom: 28px;
    padding-bottom: 20px; }
    body.search main #main-content .inner .search-list .result-item .item-name {
      color: #60B7E8;
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.1em;
      line-height: 1.7em;
      text-decoration: underline;
      margin-bottom: 12px;
      display: inline-block; }
    body.search main #main-content .inner .search-list .result-item .item-content {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.1em;
      line-height: 1.46em;
      margin-bottom: 16px; }
    body.search main #main-content .inner .search-list .result-item .pan {
      display: flex;
      align-items: center;
      color: #60B7E8;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.1em;
      line-height: 1.46em;
      font-weight: bold; }
      body.search main #main-content .inner .search-list .result-item .pan li:after {
        content: ">";
        margin: 0 10px; }
      body.search main #main-content .inner .search-list .result-item .pan li:last-child:after {
        display: none; }
        
/*=========================================
  2021.12.03 追加 BB Press修正
=========================================*/

#detail-content .contents .bbp-form p {
    text-align: left!important;
}

#bbpress-forums div.bbp-topic-form form#new-post fieldset.bbp-form .bbp-submit-wrapper button#bbp_topic_submit {
    border: 1px solid #fff!important;
    transition : 0.15s;
}

#bbpress-forums div.bbp-topic-form form#new-post fieldset.bbp-form .bbp-submit-wrapper button#bbp_topic_submit:hover {
    background: #fff!important;
    color: #4a9dc7!important;
    border: 1px solid #4a9dc7!important;
    transition : 0.15s;
}