@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

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

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

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

.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, 9px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg); }

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

.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, 9px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg); }

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

.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, 9px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg); }

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

.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, 9px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg); }

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

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

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

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

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

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

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6.4px, -8px, 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(-6.4px, 8px, 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(6.4px, -8px, 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(6.4px, 8px, 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: -18px;
    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, -9px, 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: -18px;
    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, -9px, 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: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 9px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 18px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

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

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 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: 9px;
      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: -64px;
      top: -64px;
      transform: translate3d(64px, 64px, 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: -64px;
      top: -64px;
      transform: translate3d(-64px, 64px, 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: 9px;
      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: -64px;
      top: 64px;
      transform: translate3d(64px, -64px, 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: -64px;
      top: 64px;
      transform: translate3d(-64px, -64px, 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: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 9px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 18px; }

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

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

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

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 9px;
    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: 18px;
    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, 9px, 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, 9px, 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: -18px;
    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, -9px, 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); }

@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;
  padding-top: 80px; }
  @media only screen and (max-width: 767px) {
    html {
      padding-top: 50px; } }

body .wrap {
  transition: .3s; }
  body .wrap.hide {
    filter: blur(10px); }

* {
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden; }

a {
  color: inherit;
  text-decoration: none; }
  @media only screen and (min-width: 768px) {
    a {
      transition: opacity .3s;
      opacity: 1; }
      a:hover {
        opacity: 0.6; } }

@media only screen and (min-width: 768px) {
  .fade {
    transition: opacity .3s;
    opacity: 1; }
    .fade:hover {
      opacity: 0.6; } }

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

.inner2 {
  width: calc(100% - 180px);
  max-width: 1140px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner2 {
      width: calc(100% - 30px); } }

#footer {
  padding-top: 35px;
  background-color: #000000;
  color: white; }
  @media only screen and (max-width: 767px) {
    #footer {
      padding-top: 30px; } }
  #footer .inner .upper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 34px; }
    @media only screen and (max-width: 767px) {
      #footer .inner .upper {
        flex-direction: column;
        align-items: center;
        padding-bottom: 24px; } }
  #footer .inner .logo {
    width: 105px; }
  #footer .inner ul {
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      #footer .inner ul {
        margin-top: 23px;
        flex-wrap: wrap;
        justify-content: center; } }
    #footer .inner ul li {
      padding: 0 1em;
      border-right: 1px solid white;
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0em;
      line-height: 1em; }
      @media only screen and (max-width: 767px) {
        #footer .inner ul li {
          margin-bottom: 1em;
          font-size: 12px;
          font-size: 1.2rem; } }
      #footer .inner ul li:last-child {
        padding-right: 0;
        border-right: none; }
      @media only screen and (max-width: 767px) {
        #footer .inner ul li:nth-child(even) {
          padding-right: 0;
          border-right: none; } }
  #footer .inner .copy {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0em;
    line-height: 1em;
    text-align: center;
    padding-bottom: 19px; }
    @media only screen and (max-width: 767px) {
      #footer .inner .copy {
        padding-bottom: 22px; } }

#header {
  height: 80px;
  background-color: #000000;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000; }
  @media only screen and (max-width: 767px) {
    #header {
      height: 50px; } }
  #header .inner {
    max-width: 1232px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    #header .inner .logo {
      display: block;
      width: 95px; }
      @media only screen and (max-width: 767px) {
        #header .inner .logo {
          width: 56px; } }
    @media only screen and (max-width: 767px) {
      #header .inner .cont {
        width: 290px;
        position: absolute;
        top: 0px;
        left: auto;
        right: -290px;
        overflow: scroll;
        height: 100vh;
        background-color: #000000;
        padding: 35px 28px 70px;
        transition: .3s; } }
    @media only screen and (max-width: 767px) {
      #header .inner .cont.show {
        right: 0; } }
    @media only screen and (max-width: 767px) {
      #header .inner .cont .nav_logo {
        margin: auto;
        width: 105px;
        display: block; } }
    #header .inner .cont nav {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        #header .inner .cont nav {
          margin-top: 23px;
          width: 100%;
          display: flex;
          flex-direction: column; } }
      #header .inner .cont nav .menu {
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 767px) {
          #header .inner .cont nav .menu {
            flex-direction: column;
            width: 100%; } }
        #header .inner .cont nav .menu li {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0em;
          font-weight: bold;
          line-height: 1.7em;
          margin-right: 35px; }
          @media screen and (max-width: 1360px) {
            #header .inner .cont nav .menu li {
              margin-right: 20px; } }
          @media screen and (max-width: 800px) {
            #header .inner .cont nav .menu li {
              margin-right: 24px; } }
          @media only screen and (max-width: 767px) {
            #header .inner .cont nav .menu li {
              width: 100%;
              border-bottom: 1px solid #707070;
              margin-right: 0;
              position: relative; } }
          #header .inner .cont nav .menu li:last-child {
            margin-right: 0; }
            @media only screen and (max-width: 767px) {
              #header .inner .cont nav .menu li:last-child:after {
                display: none; } }
          #header .inner .cont nav .menu li a {
            position: relative; }
            @media only screen and (max-width: 767px) {
              #header .inner .cont nav .menu li a {
                padding: 10px 0;
                width: 100%;
                display: block;
                height: 100%; } }
            #header .inner .cont nav .menu li a:before {
              content: "";
              width: 18px;
              height: 18px;
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
              display: inline-block;
              margin-right: 6px;
              top: 2px;
              position: relative; }
              @media screen and (max-width: 1210px) {
                #header .inner .cont nav .menu li a:before {
                  display: none; } }
              @media only screen and (max-width: 767px) {
                #header .inner .cont nav .menu li a:before {
                  display: inline-block;
                  width: 20px;
                  height: 20px;
                  top: 3px; } }
            #header .inner .cont nav .menu li a.fushigi:before {
              background-image: url(../images/common/fushigi_icon.svg); }
            #header .inner .cont nav .menu li a.rekishi:before {
              background-image: url(../images/common/rekishi_icon.svg); }
            #header .inner .cont nav .menu li a.shinpi:before {
              background-image: url(../images/common/shinpi_icon.svg); }
            #header .inner .cont nav .menu li a.column:before {
              background-image: url(../images/common/column_icon.svg); }
            #header .inner .cont nav .menu li a.kokuchi:before {
              background-image: url(../images/common/kokuchi_icon.svg); }
            @media only screen and (max-width: 767px) {
              #header .inner .cont nav .menu li a:after {
                content: "";
                width: 8px;
                height: 8px;
                background-image: url(../images/common/arrow.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                left: auto;
                right: 0;
                margin: auto; } }
      #header .inner .cont nav .sns {
        display: flex;
        align-items: center;
        margin-left: 120px; }
        @media screen and (max-width: 1330px) {
          #header .inner .cont nav .sns {
            margin-left: 30px; } }
        @media only screen and (max-width: 767px) {
          #header .inner .cont nav .sns {
            margin-left: 0;
            margin-top: 26px; } }
        #header .inner .cont nav .sns li {
          margin-right: 24px; }
          @media only screen and (max-width: 767px) {
            #header .inner .cont nav .sns li {
              margin-right: 22px; } }
          #header .inner .cont nav .sns li:last-child {
            margin-right: 0; }
          #header .inner .cont nav .sns li > span {
            cursor: pointer;
            transition: 0.3s; }
            @media only screen and (min-width: 768px) {
              #header .inner .cont nav .sns li > span:hover {
                opacity: 0.6; } }
    #header .inner .sp-btns {
      display: flex;
      align-items: center; }
      #header .inner .sp-btns .search-open {
        width: 35px;
        height: 35px;
        margin-right: 10px; }
      #header .inner .sp-btns .hamburger {
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none; }
        #header .inner .sp-btns .hamburger:not(.is-active) .hamburger-inner {
          left: 4px;
          width: 24px; }
          #header .inner .sp-btns .hamburger:not(.is-active) .hamburger-inner:before {
            left: -4px; }
          #header .inner .sp-btns .hamburger:not(.is-active) .hamburger-inner:after {
            width: 16px;
            left: 4px; }
        #header .inner .sp-btns .hamburger.is-active .hamburger-inner:before {
          width: 24px;
          left: 3px; }
        #header .inner .sp-btns .hamburger.is-active .hamburger-inner:after {
          width: 24px;
          left: 3px; }

.search {
  display: none;
  backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(30px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .search {
      top: 50px; } }
  .search .search-close {
    position: absolute;
    width: 45px;
    height: 45px;
    display: block;
    background-image: url("../images/common/close.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 18px;
    right: 18px;
    cursor: pointer;
    transition: 0.3s; }
    @media only screen and (min-width: 768px) {
      .search .search-close:hover {
        opacity: 0.6; } }
    @media only screen and (max-width: 767px) {
      .search .search-close {
        width: 31px;
        height: 31px;
        top: -40px;
        right: 44px; } }
  .search .inner {
    padding: 83px 0 80px;
    max-width: 1100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .search .inner {
        padding: 26px 0 40px; } }
  .search .ttl {
    display: flex;
    align-items: center;
    flex-direction: column; }
    .search .ttl .ja {
      font-weight: bold;
      font-size: 36px;
      font-size: 3.6rem;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .search .ttl .ja {
          font-size: 24px;
          font-size: 2.4rem; } }
      .search .ttl .ja::after {
        content: '';
        width: 35px;
        height: 46px;
        display: block;
        background-image: url("../images/common/moai.svg");
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: 5px; }
        @media only screen and (max-width: 767px) {
          .search .ttl .ja::after {
            margin-left: 3px;
            width: 23px;
            height: 31px; } }
    .search .ttl .en {
      font-family: "Rubik", sans-serif;
      font-weight: bold;
      font-size: 16px;
      font-size: 1.6rem;
      color: #b5b08f;
      margin-top: 10px; }
      @media only screen and (max-width: 767px) {
        .search .ttl .en {
          margin-top: 4px;
          font-size: 10px;
          font-size: 1rem; } }
  .search form {
    width: calc(100% - 76px);
    max-width: 420px;
    position: relative;
    margin-top: 20px; }
    @media only screen and (max-width: 767px) {
      .search form {
        margin-top: 16px; } }
    .search form input {
      font-family: #000000;
      border-radius: 20px;
      width: 100%;
      height: 40px;
      border: none;
      box-shadow: none;
      -webkit-appearance: none;
      outline: none;
      font-size: 14px;
      font-size: 1.4rem;
      padding: 0 50px 0 25px; }
      @media only screen and (max-width: 767px) {
        .search form input {
          height: 36px; } }
      .search form input::placeholder {
        color: #A3A3A3; }
    .search form button {
      width: 30px;
      height: 30px;
      position: absolute;
      right: 17px;
      top: 4px;
      background-color: transparent;
      background-image: url("../images/common/search_black.svg");
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      border: none;
      box-shadow: none;
      -webkit-appearance: none;
      outline: none;
      cursor: pointer;
      transition: 0.3s; }
      @media only screen and (min-width: 768px) {
        .search form button:hover {
          opacity: 0.6; } }
      @media only screen and (max-width: 767px) {
        .search form button {
          top: 2px; } }

/* .search */
.layout_sidebar {
  width: calc(100% - 180px);
  max-width: 1236px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 1000px) {
    .layout_sidebar {
      width: calc(100% - 60px); } }
  @media only screen and (max-width: 767px) {
    .layout_sidebar {
      width: calc(100% - 30px);
      flex-direction: column; } }
  .layout_sidebar main {
    width: calc(100% - 60px - 336px); }
    @media screen and (max-width: 1000px) {
      .layout_sidebar main {
        width: calc(100% - 30px - 336px); } }
    @media only screen and (max-width: 767px) {
      .layout_sidebar main {
        width: 100%; } }

.sidebar {
  width: 336px; }
  @media only screen and (max-width: 767px) {
    .sidebar {
      margin-top: 50px;
      width: 100%; } }
  .sidebar .group {
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      .sidebar .group {
        margin-bottom: 30px; } }
    .sidebar .group .title_jp {
      background-color: #8C834A;
      color: white;
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0em;
      font-weight: bold;
      width: calc(100% - 20px);
      height: 40px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto; }
      .sidebar .group .title_jp:before, .sidebar .group .title_jp:after {
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        content: '';
        border: 20px solid transparent;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent; }
      .sidebar .group .title_jp:before {
        right: 100%;
        border-right-color: #8C834A; }
      .sidebar .group .title_jp:after {
        left: 100%;
        border-left-color: #8C834A; }
    .sidebar .group .title_en {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0em;
      line-height: 1em;
      font-family: "Rubik", sans-serif;
      font-weight: bold;
      text-align: center;
      margin-top: 6px;
      color: #B5B08F; }
  .sidebar .itemList {
    display: flex;
    flex-direction: column;
    margin-top: 13px; }
    .sidebar .itemList li {
      margin-bottom: 15px; }
      .sidebar .itemList li:last-child {
        margin-bottom: 0; }
      .sidebar .itemList li a {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .sidebar .itemList li a .left {
          position: relative;
          background-repeat: no-repeat;
          background-size: cover;
          width: 100px;
          height: 52px;
          background-position: center;
          background-image: url(../../images/common/no-image.jpg); }
        .sidebar .itemList li a .right {
          width: calc(100% - 10px - 100px); }
          .sidebar .itemList li a .right p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0em;
            line-height: 1.3333em;
            font-weight: bold;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3; }
    .sidebar .itemList.ranking li a .right p:before {
      content: "";
      width: 24px;
      height: 19px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 100%;
      display: inline-block;
      margin-right: 2px;
      top: 3px;
      position: relative; }
    .sidebar .itemList.ranking li:nth-child(1) a p:before {
      background-image: url(../images/common/rank1.svg); }
    .sidebar .itemList.ranking li:nth-child(2) a p:before {
      background-image: url(../images/common/rank2.svg); }
    .sidebar .itemList.ranking li:nth-child(3) a p:before {
      background-image: url(../images/common/rank3.svg); }
    .sidebar .itemList.ranking li:nth-child(4) a p:before {
      background-image: url(../images/common/rank4.svg); }
    .sidebar .itemList.ranking li:nth-child(5) a p:before {
      background-image: url(../images/common/rank5.svg); }

.ad-top {
  text-align: center; }

.ad-bottom {
  background: #000; }

.ns-cm8kl-v-6,
.ns-cm8kl-e-2 {
  width: 100% !important; }

#MUSPTPTP {
  width: calc(100% - 30px);
  margin: 10px auto; }

#MUSPTPTP iframe {
  width: 100%; }

.sideAd {
  text-align: center; }

.ad-archive.sp {
  text-align: center; }

#MUSPARBM1 {
  margin-bottom: 20px; }

.blur.yellow {
  text-shadow: 0px 0px 10px #ffe202; }

.blur.pink {
  text-shadow: 0px 0px 10px #ff7ed2; }

.blur.blue {
  text-shadow: 0px 0px 10px #34e8ff; }

.blur.green {
  text-shadow: 0px 0px 10px lime; }

.blur.red {
  text-shadow: 0px 0px 10px red; }

.catTitle.yellow {
  color: #FFAB03; }
  .catTitle.yellow:before {
    background-image: url(../images/common/fushigi_icon.svg); }

.catTitle.pink {
  color: #C575A9; }
  .catTitle.pink:before {
    background-image: url(../images/common/rekishi_icon.svg); }

.catTitle.blue {
  color: #1D97B1; }
  .catTitle.blue:before {
    background-image: url(../images/common/shinpi_icon.svg); }

.catTitle.green {
  color: #01995F; }
  .catTitle.green:before {
    background-image: url(../images/common/column_icon.svg); }

.catTitle.red {
  color: #B33333; }
  .catTitle.red:before {
    background-image: url(../images/common/kokuchi_icon.svg); }

@media only screen and (min-width: 768px) {
  .hoverLight:hover {
    transition: .3s;
    opacity: 1;
    box-shadow: 0px 0px 24px 0px rgba(255, 255, 255, 0.6); } }

.itemlist {
  width: 100%;
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (min-width: 768px) {
    .itemlist:not(.right) .item:nth-child(n + 2) {
      margin-left: 15px; } }
  .itemlist .item {
    width: calc((100% - 45px) / 4);
    color: white;
    border-bottom: 1px solid #707070;
    margin-bottom: 40px;
    position: relative; }
    .itemlist .item.dmy {
      opacity: 0; }
    .itemlist .item ._pr {
      top: 2px;
      left: 2px; }
      @media only screen and (max-width: 767px) {
        .itemlist .item ._pr {
          top: 1px;
          left: 1px; } }
    @media only screen and (max-width: 767px) {
      .itemlist .item {
        margin-bottom: 30px;
        width: calc((100% - 15px) / 2); }
        .itemlist .item:nth-child(2n) {
          margin-left: 15px; } }
    .itemlist .item .pic {
      width: 100%;
      padding-top: 52.375%;
      display: block;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      border: 2px solid #9F9F9F;
      box-shadow: 0px 0px 20px white; }
      @media only screen and (max-width: 767px) {
        .itemlist .item .pic {
          box-shadow: 0px 0px 10px white;
          border: 1px solid #9F9F9F; } }
    .itemlist .item .info {
      display: flex;
      align-items: flex-end;
      margin-top: 9px; }
      @media only screen and (max-width: 767px) {
        .itemlist .item .info {
          margin-top: 8px; } }
      .itemlist .item .info .category {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0em;
        line-height: 1.7em;
        font-weight: bold;
        margin-right: 15px; }
        @media only screen and (max-width: 767px) {
          .itemlist .item .info .category {
            font-size: 11px;
            font-size: 1.1rem;
            margin-right: 12px; } }
      .itemlist .item .info time {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        line-height: 1.7em;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .itemlist .item .info time {
            font-size: 10px;
            font-size: 1rem; } }
    .itemlist .item .maintext {
      display: block;
      margin-top: 2px; }
      .itemlist .item .maintext .title {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0em;
        line-height: 1.5em;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        height: 6em; }
        @media only screen and (max-width: 767px) {
          .itemlist .item .maintext .title {
            font-size: 13px;
            font-size: 1.3rem;
            line-height: 1.3846em;
            -webkit-line-clamp: 3;
            height: 4.1538em; } }
      .itemlist .item .maintext .bottom {
        margin-top: 15px;
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0em;
        line-height: 1em;
        color: #B5B08F;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          .itemlist .item .maintext .bottom {
            font-size: 10px;
            font-size: 1rem;
            padding-bottom: 8px; } }
        .itemlist .item .maintext .bottom:after {
          content: "";
          width: 11px;
          height: 10px;
          background-image: url(../images/common/arrow.svg);
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          display: block; }
          @media only screen and (max-width: 767px) {
            .itemlist .item .maintext .bottom:after {
              width: 8px;
              height: 7px; } }
  .itemlist.layout2 .item .maintext {
    margin-top: 10px; }
    .itemlist.layout2 .item .maintext .title {
      -webkit-line-clamp: 3;
      height: 4.8em; }
      @media only screen and (max-width: 767px) {
        .itemlist.layout2 .item .maintext .title {
          height: 4.1538em; } }
    .itemlist.layout2 .item .maintext .text {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0em;
      line-height: 1.5em;
      margin-top: 8px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; }
    @media only screen and (min-width: 768px) {
      .itemlist.layout2 .item .maintext .bottom {
        margin-top: 24px; } }

._pr {
  position: absolute;
  top: 0px;
  left: 0px; }
  ._pr:before {
    content: 'PR';
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Rubik", sans-serif;
    color: #FFF;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2; }
  ._pr:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 42px 56px 0 0;
    border-color: #000 transparent transparent transparent;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0; }
  ._pr_sml:before {
    font-size: 10px;
    font-size: 1rem;
    top: 4px;
    left: 5px; }
  ._pr_sml:after {
    border-width: 30px 40px 0 0; }

.btn_white {
  width: 100%;
  max-width: 320px;
  border: 2px solid #fff;
  height: 50px;
  position: relative;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  transition: 0.3s; }
  @media only screen and (max-width: 767px) {
    .btn_white {
      max-width: 200px;
      height: 40px;
      border-radius: 20px;
      font-size: 14px;
      font-size: 1.4rem; } }
  .btn_white::after {
    content: '';
    width: 8px;
    height: 12px;
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/common/arrow_white.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }

.ttl_redline {
  border-left: 15px solid #E50011;
  line-height: 1.4;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 900;
  padding: 6.5px 0 6.5px 15px; }
  @media only screen and (max-width: 767px) {
    .ttl_redline {
      font-size: 20px;
      font-size: 2rem;
      padding: 0.5px 0 1.5px 10px;
      border-left: 6px solid #E50011; } }

.c-ttl_moai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px; }
  @media only screen and (max-width: 767px) {
    .c-ttl_moai {
      gap: 6px; } }
  .c-ttl_moai .jp {
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: 0em;
    line-height: 1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    position: relative;
    gap: 12px; }
    @media only screen and (max-width: 767px) {
      .c-ttl_moai .jp {
        font-size: 28px;
        font-size: 2.8rem;
        gap: 5px; } }
    .c-ttl_moai .jp:after {
      content: '';
      width: 47px;
      height: 63px;
      background-image: url(../images/common/moai_black.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
      @media only screen and (max-width: 767px) {
        .c-ttl_moai .jp:after {
          width: 32px;
          height: 43px; } }
  .c-ttl_moai .en {
    font-weight: bold;
    font-family: "Rubik", sans-serif;
    color: #A39D6C;
    font-size: 21px;
    font-size: 2.1rem;
    letter-spacing: 0em;
    line-height: 1em; }
    @media only screen and (max-width: 767px) {
      .c-ttl_moai .en {
        font-size: 14px;
        font-size: 1.4rem; } }

#pagination .wp-pagenavi,
#result .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1em; }
  #pagination .wp-pagenavi .previouspostslink, #pagination .wp-pagenavi .nextpostslink,
  #result .wp-pagenavi .previouspostslink,
  #result .wp-pagenavi .nextpostslink {
    margin: 0 5px;
    border: none; }
    @media only screen and (max-width: 767px) {
      #pagination .wp-pagenavi .previouspostslink, #pagination .wp-pagenavi .nextpostslink,
      #result .wp-pagenavi .previouspostslink,
      #result .wp-pagenavi .nextpostslink {
        margin: 0 3px; } }
  #pagination .wp-pagenavi .page, #pagination .wp-pagenavi .current,
  #result .wp-pagenavi .page,
  #result .wp-pagenavi .current {
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0em;
    border-radius: 50%;
    margin: 0 5px;
    border: none; }
    @media only screen and (max-width: 767px) {
      #pagination .wp-pagenavi .page, #pagination .wp-pagenavi .current,
      #result .wp-pagenavi .page,
      #result .wp-pagenavi .current {
        width: 26px;
        height: 26px;
        margin: 0 3px; } }
  #pagination .wp-pagenavi .page,
  #result .wp-pagenavi .page {
    background-color: #000000; }
  #pagination .wp-pagenavi .current,
  #result .wp-pagenavi .current {
    background-color: #E50011; }
  @media only screen and (max-width: 767px) {
    #pagination .wp-pagenavi .last, #pagination .wp-pagenavi .first,
    #result .wp-pagenavi .last,
    #result .wp-pagenavi .first {
      display: none; } }

#pan {
  width: calc(100% - 180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 25px 0 35px; }
  @media only screen and (max-width: 767px) {
    #pan {
      width: calc(100% - 30px); } }
  #pan li {
    display: inline;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0em;
    line-height: 1.461em;
    color: #666666;
    margin-right: 1em; }
    #pan li:after {
      content: ">";
      margin-left: 1em;
      position: relative;
      top: 0px; }
    @media only screen and (max-width: 767px) {
      #pan li {
        font-size: 10px;
        font-size: 1rem;
        line-height: 1.5em; } }
    #pan li:last-child {
      margin-right: 0; }
      #pan li:last-child:after {
        display: none; }

#singleContents {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0em;
  line-height: 2em; }
  @media only screen and (max-width: 767px) {
    #singleContents {
      font-size: 15px;
      font-size: 1.5rem; } }
  #singleContents > iframe {
    width: 100%;
    height: 420px; }
    @media only screen and (max-width: 767px) {
      #singleContents > iframe {
        height: 280px; } }
  #singleContents h2 {
    background-color: black;
    color: white;
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0em;
    line-height: 1.7em;
    border-radius: 15px 0 0 0;
    border-left: 15px solid #E50011;
    font-weight: 900;
    padding: 2px 4px 2px 16px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      #singleContents h2 {
        font-size: 22px;
        font-size: 2.2rem;
        padding: 4px 4px 4px 10px; } }
  #singleContents h3 {
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: 0em;
    line-height: 1.5em;
    font-weight: 900;
    border-left: 8px solid #E50011;
    padding: 2px 0 2px 16px;
    margin-bottom: 18px; }
    @media only screen and (max-width: 767px) {
      #singleContents h3 {
        font-size: 20px;
        font-size: 2rem;
        border-left: 6px solid #E50011;
        padding: 1px 0 1px 10px; } }
  #singleContents p {
    margin-bottom: 2em; }
    #singleContents p a {
      text-decoration: underline;
      word-wrap: break-word; }
  #singleContents em, #singleContents b, #singleContents strong {
    font-weight: bold; }
  #singleContents .wp-block-image {
    margin: 0 0 1em; }
    #singleContents .wp-block-image figcaption {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.538461538;
      margin: 15px 0 0;
      color: #444444; }
      @media only screen and (max-width: 767px) {
        #singleContents .wp-block-image figcaption {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.5; } }
  #singleContents .wp-block-embed.is-type-video {
    text-align: center; }
  #singleContents .twitter-tweet {
    margin-left: auto;
    margin-right: auto; }
  #singleContents .instagram-media {
    margin-left: auto !important;
    margin-right: auto !important; }
  #singleContents .wp-block-embed-youtube .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* アスペクト比16:9の場合 */
    height: 0;
    overflow: hidden;
    margin-bottom: 50px; }
    #singleContents .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #singleContents #toc_container {
    margin-left: auto;
    margin-right: auto; }

body.notfound main {
  height: calc(100vh - 150px - 80px);
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    body.notfound main {
      height: calc(100vh - 233px - 50px); } }
  body.notfound main .text1 {
    font-size: 100px;
    font-size: 10rem;
    letter-spacing: 0.2em;
    line-height: 1.7em;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.notfound main .text1 {
        font-size: 70px;
        font-size: 7rem; } }
  body.notfound main .text2 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.7em;
    text-align: center;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      body.notfound main .text2 {
        font-size: 18px;
        font-size: 1.8rem;
        margin-top: 20px; } }
  body.notfound main .text3 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.7em;
    text-align: center;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      body.notfound main .text3 {
        font-size: 18px;
        font-size: 1.8rem;
        margin-top: 20px; } }
    body.notfound main .text3 a {
      text-decoration: underline; }

body.collabo #mv {
  width: 100%;
  background-color: black; }

body.collabo #caption {
  background-color: black;
  padding: 56px 0; }
  @media only screen and (max-width: 767px) {
    body.collabo #caption {
      padding: 38px 0; } }
  @media only screen and (max-width: 767px) {
    body.collabo #caption .inner {
      width: calc(100% - 50px); } }
  body.collabo #caption .inner .heading {
    color: white;
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0em;
    line-height: 1.545454em;
    text-align: center;
    font-weight: 900; }
    @media only screen and (max-width: 767px) {
      body.collabo #caption .inner .heading {
        font-size: 22px;
        font-size: 2.2rem; } }
  body.collabo #caption .inner .text {
    margin-top: 37px;
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0em;
    line-height: 2em;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      body.collabo #caption .inner .text {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.733333em;
        text-align: justify;
        margin-top: 28px; } }

body.collabo #index {
  padding: 65px 0 60px; }
  @media only screen and (max-width: 767px) {
    body.collabo #index {
      padding: 35px 0 50px; } }
  body.collabo #index .inner {
    max-width: 860px; }
    @media only screen and (max-width: 767px) {
      body.collabo #index .inner {
        width: calc(100% - 50px); } }
    body.collabo #index .inner .links {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 40px;
      gap: 20px; }
      @media screen and (max-width: 1039px) {
        body.collabo #index .inner .links {
          justify-content: center; } }
      @media only screen and (max-width: 767px) {
        body.collabo #index .inner .links {
          margin-top: 32px;
          gap: 10px; } }
      body.collabo #index .inner .links li {
        width: 420px;
        height: 60px; }
        @media only screen and (max-width: 767px) {
          body.collabo #index .inner .links li {
            width: 100%;
            max-width: 400px;
            height: 46px; } }
        body.collabo #index .inner .links li a {
          width: 100%;
          height: 100%;
          border-radius: 30px;
          background-color: black;
          color: white;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          font-size: 20px;
          font-size: 2rem;
          letter-spacing: 0em;
          line-height: 1em;
          font-weight: bold;
          padding-left: 28px; }
          @media only screen and (max-width: 767px) {
            body.collabo #index .inner .links li a {
              font-size: 16px;
              font-size: 1.6rem;
              padding-left: 18px; } }
          body.collabo #index .inner .links li a:before {
            content: '';
            width: 11px;
            height: 10px;
            background-image: url(../images/common/select_triangle.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            display: block;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 28px;
            margin: auto; }
            @media only screen and (max-width: 767px) {
              body.collabo #index .inner .links li a:before {
                left: 18px; } }
          body.collabo #index .inner .links li a .sub {
            position: relative;
            top: 3px;
            font-size: 15px;
            font-size: 1.5rem; }
            @media only screen and (max-width: 767px) {
              body.collabo #index .inner .links li a .sub {
                font-size: 13px;
                font-size: 1.3rem; } }

body.collabo .group {
  margin-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    body.collabo .group {
      margin-bottom: 40px; } }
  body.collabo .group:last-child {
    margin-bottom: 120px; }
    @media only screen and (max-width: 767px) {
      body.collabo .group:last-child {
        margin-bottom: 80px; } }
  body.collabo .group .inner .cat-ttl {
    background-color: black;
    height: 84px;
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: white;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0em;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      body.collabo .group .inner .cat-ttl {
        height: 50px;
        margin-left: 10px;
        padding-left: 15px;
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 5px; } }
    body.collabo .group .inner .cat-ttl:before {
      content: '';
      width: 20px;
      height: 100%;
      background-color: #EA0C16;
      border-radius: 20px 0 0 0;
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: -20px;
      margin: auto; }
      @media only screen and (max-width: 767px) {
        body.collabo .group .inner .cat-ttl:before {
          width: 10px;
          left: -10px; } }
    body.collabo .group .inner .cat-ttl .sub {
      position: relative;
      top: 7px;
      font-size: 20px;
      font-size: 2rem; }
      @media only screen and (max-width: 767px) {
        body.collabo .group .inner .cat-ttl .sub {
          font-size: 14px;
          font-size: 1.4rem;
          top: 5px; } }
  body.collabo .group .inner .item-list {
    padding: 0 50px; }
    @media only screen and (max-width: 767px) {
      body.collabo .group .inner .item-list {
        padding: 0 0px; } }
    body.collabo .group .inner .item-list .no-post {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0em;
      line-height: 1em;
      padding: 20px 0; }
      @media only screen and (max-width: 767px) {
        body.collabo .group .inner .item-list .no-post {
          font-size: 16px;
          font-size: 1.6rem; } }
    body.collabo .group .inner .item-list .item {
      border-bottom: 1px solid #D5D5D5; }
      body.collabo .group .inner .item-list .item.is-active .item-header:after {
        transform: rotate(-90deg); }
      body.collabo .group .inner .item-list .item .item-header {
        padding: 30px 120px 30px 20px;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        cursor: pointer;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.collabo .group .inner .item-list .item .item-header {
            padding: 25px 40px 25px 10px;
            gap: 15px; } }
        body.collabo .group .inner .item-list .item .item-header .pic {
          width: 200px;
          height: 105px;
          background-position: center;
          background-size: cover;
          flex-shrink: 0; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-header .pic {
              width: 100px;
              height: 52px; } }
        body.collabo .group .inner .item-list .item .item-header .title {
          font-size: 24px;
          font-size: 2.4rem;
          letter-spacing: 0em;
          line-height: 1.5em;
          font-weight: bold; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-header .title {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.357em; } }
        body.collabo .group .inner .item-list .item .item-header:before, body.collabo .group .inner .item-list .item .item-header:after {
          content: '';
          width: 24px;
          height: 4px;
          background-color: #EA0C16;
          display: block;
          position: absolute;
          top: 0;
          bottom: 0;
          right: 30px;
          margin: auto; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-header:before, body.collabo .group .inner .item-list .item .item-header:after {
              width: 20px;
              height: 3px;
              right: 10px; } }
        body.collabo .group .inner .item-list .item .item-header:after {
          transform-origin: center;
          transform: rotate(0deg);
          transition: .1s; }
      body.collabo .group .inner .item-list .item .item-cont {
        padding: 0px 0 60px;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0em;
        line-height: 2em;
        display: none; }
        @media only screen and (max-width: 767px) {
          body.collabo .group .inner .item-list .item .item-cont {
            padding: 0 25px;
            font-size: 15px;
            font-size: 1.5rem; } }
        body.collabo .group .inner .item-list .item .item-cont p {
          margin: 16px 0;
          text-align: justify; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont p {
              margin: 15px 0; } }
        body.collabo .group .inner .item-list .item .item-cont ul, body.collabo .group .inner .item-list .item .item-cont ol, body.collabo .group .inner .item-list .item .item-cont blockquote, body.collabo .group .inner .item-list .item .item-cont h1, body.collabo .group .inner .item-list .item .item-cont h2, body.collabo .group .inner .item-list .item .item-cont h3, body.collabo .group .inner .item-list .item .item-cont h4, body.collabo .group .inner .item-list .item .item-cont h5, body.collabo .group .inner .item-list .item .item-cont h6 {
          margin: 32px 0; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont ul, body.collabo .group .inner .item-list .item .item-cont ol, body.collabo .group .inner .item-list .item .item-cont blockquote, body.collabo .group .inner .item-list .item .item-cont h1, body.collabo .group .inner .item-list .item .item-cont h2, body.collabo .group .inner .item-list .item .item-cont h3, body.collabo .group .inner .item-list .item .item-cont h4, body.collabo .group .inner .item-list .item .item-cont h5, body.collabo .group .inner .item-list .item .item-cont h6 {
              margin: 20px 0; } }
        body.collabo .group .inner .item-list .item .item-cont sup {
          vertical-align: super;
          font-size: smaller; }
        body.collabo .group .inner .item-list .item .item-cont sub {
          vertical-align: sub;
          font-size: smaller; }
        body.collabo .group .inner .item-list .item .item-cont figure {
          margin-top: 32px;
          margin-bottom: 32px; }
          body.collabo .group .inner .item-list .item .item-cont figure figcaption {
            font-size: 14px;
            font-size: 1.4rem;
            text-align: center; }
            @media only screen and (max-width: 767px) {
              body.collabo .group .inner .item-list .item .item-cont figure figcaption {
                font-size: 13px;
                font-size: 1.3rem; } }
          @media only screen and (min-width: 768px) {
            body.collabo .group .inner .item-list .item .item-cont figure.alignleft, body.collabo .group .inner .item-list .item .item-cont figure.alignright {
              margin-top: 0;
              margin-bottom: 16px; } }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont figure.alignleft, body.collabo .group .inner .item-list .item .item-cont figure.alignright {
              margin: 30px auto;
              float: none; } }
          @media only screen and (min-width: 768px) {
            body.collabo .group .inner .item-list .item .item-cont figure.alignleft {
              margin-right: 32px; } }
          @media only screen and (min-width: 768px) {
            body.collabo .group .inner .item-list .item .item-cont figure.alignright {
              margin-left: 32px; } }
        body.collabo .group .inner .item-list .item .item-cont h1, body.collabo .group .inner .item-list .item .item-cont h2, body.collabo .group .inner .item-list .item .item-cont h3, body.collabo .group .inner .item-list .item .item-cont h4, body.collabo .group .inner .item-list .item .item-cont h5, body.collabo .group .inner .item-list .item .item-cont h6 {
          font-weight: bold;
          line-height: 1.5em;
          letter-spacing: 0em; }
        body.collabo .group .inner .item-list .item .item-cont h1 {
          font-size: 36px;
          font-size: 3.6rem; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont h1 {
              font-size: 24px;
              font-size: 2.4rem; } }
        body.collabo .group .inner .item-list .item .item-cont h2 {
          font-size: 30px;
          font-size: 3rem;
          border-left: 10px solid #EA0C16;
          padding-left: 13px; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont h2 {
              font-size: 20px;
              font-size: 2rem;
              border-left: 8px solid #EA0C16;
              padding-left: 10px; } }
        body.collabo .group .inner .item-list .item .item-cont h3 {
          font-size: 22px;
          font-size: 2.2rem;
          padding-left: 1em;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont h3 {
              font-size: 18px;
              font-size: 1.8rem;
              letter-spacing: 0em;
              line-height: 1.5em; } }
          body.collabo .group .inner .item-list .item .item-cont h3:before {
            content: '';
            width: 15px;
            height: 15px;
            background-color: #EA0C16;
            display: block;
            position: absolute;
            top: 10px;
            left: 0;
            margin: auto; }
            @media only screen and (max-width: 767px) {
              body.collabo .group .inner .item-list .item .item-cont h3:before {
                width: 13px;
                height: 13px;
                top: 8px; } }
        body.collabo .group .inner .item-list .item .item-cont h4 {
          font-size: 18px;
          font-size: 1.8rem; }
        body.collabo .group .inner .item-list .item .item-cont h5 {
          font-size: 16px;
          font-size: 1.6rem; }
        body.collabo .group .inner .item-list .item .item-cont h6 {
          font-size: 14px;
          font-size: 1.4rem; }
        body.collabo .group .inner .item-list .item .item-cont strong, body.collabo .group .inner .item-list .item .item-cont b {
          font-weight: bold; }
        body.collabo .group .inner .item-list .item .item-cont a {
          text-decoration: underline;
          word-break: break-all; }
        body.collabo .group .inner .item-list .item .item-cont a[target="_blank"]::after {
          content: "";
          display: inline-block;
          width: 15px;
          height: 15px;
          background-image: url(../images/common/target_blank.png);
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          margin-left: 10px;
          position: relative;
          top: 2px; }
        body.collabo .group .inner .item-list .item .item-cont i, body.collabo .group .inner .item-list .item .item-cont em {
          font-style: italic; }
        body.collabo .group .inner .item-list .item .item-cont ul {
          list-style-type: disc;
          padding-left: 2.5em; }
        body.collabo .group .inner .item-list .item .item-cont ol {
          list-style-type: decimal;
          padding-left: 2em;
          margin-left: 0.5em; }
        body.collabo .group .inner .item-list .item .item-cont > blockquote, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote {
          position: relative;
          padding: 10px 15px 10px 50px;
          box-sizing: border-box;
          font-style: italic;
          background: rgba(0, 0, 0, 0.25);
          color: white; }
          @media only screen and (max-width: 767px) {
            body.collabo .group .inner .item-list .item .item-cont > blockquote, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote {
              padding-left: 30px; } }
          body.collabo .group .inner .item-list .item .item-cont > blockquote:before, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote:before {
            display: inline-block;
            position: absolute;
            top: 10px;
            left: -3px;
            content: "“";
            font-family: sans-serif;
            color: #cfcfcf;
            font-size: 90px;
            line-height: 1; }
            @media only screen and (max-width: 767px) {
              body.collabo .group .inner .item-list .item .item-cont > blockquote:before, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote:before {
                font-size: 60px; } }
          body.collabo .group .inner .item-list .item .item-cont > blockquote p, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote p {
            padding: 0;
            margin: 10px 0;
            line-height: 1.7; }
          body.collabo .group .inner .item-list .item .item-cont > blockquote cite, body.collabo .group .inner .item-list .item .item-cont .wp-block-pullquote blockquote cite {
            display: block;
            text-align: right;
            color: #888888;
            font-size: 0.9em; }
        body.collabo .group .inner .item-list .item .item-cont blockquote {
          min-width: 250px !important; }
          @media only screen and (min-width: 768px) {
            body.collabo .group .inner .item-list .item .item-cont blockquote.tiktok-embed iframe {
              width: auto !important;
              padding: 10px;
              background-color: white; } }
        body.collabo .group .inner .item-list .item .item-cont .wp-block-embed .wp-block-embed__wrapper {
          display: flex;
          justify-content: center; }
        body.collabo .group .inner .item-list .item .item-cont .wp-block-embed.is-provider-youtube .wp-block-embed__wrapper iframe {
          width: 100%;
          height: auto;
          aspect-ratio: 16/9; }
        body.collabo .group .inner .item-list .item .item-cont img {
          max-width: 100%; }
        body.collabo .group .inner .item-list .item .item-cont iframe {
          width: 100%;
          max-width: 100%;
          margin: 16px auto !important; }
        body.collabo .group .inner .item-list .item .item-cont .has-small-font-size,
        body.collabo .group .inner .item-list .item .item-cont .has-medium-font-size,
        body.collabo .group .inner .item-list .item .item-cont .has-large-font-size,
        body.collabo .group .inner .item-list .item .item-cont .has-x-large-font-size {
          line-height: 1.4em; }
        body.collabo .group .inner .item-list .item .item-cont .has-text-align-center {
          text-align: center; }
        body.collabo .group .inner .item-list .item .item-cont .has-text-align-right {
          text-align: right; }

body.collabo .to-index {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000; }
  @media only screen and (max-width: 767px) {
    body.collabo .to-index {
      right: 20px;
      bottom: 20px;
      width: 40px; } }
  body.collabo .to-index.show {
    opacity: 1;
    visibility: visible; }
    body.collabo .to-index.show:hover {
      opacity: 60%; }

body.hiroba {
  background-attachment: fixed;
  position: relative; }
  body.hiroba:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/hiroba/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; }
  body.hiroba .ttl {
    display: flex;
    align-items: center;
    flex-direction: column; }
    body.hiroba .ttl .ja {
      font-weight: bold;
      font-size: 48px;
      font-size: 4.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: 500; }
      @media only screen and (max-width: 1000px) {
        body.hiroba .ttl .ja {
          font-size: 32px;
          font-size: 3.2rem; } }
      @media only screen and (max-width: 767px) {
        body.hiroba .ttl .ja {
          font-size: 28px;
          font-size: 2.8rem; } }
      body.hiroba .ttl .ja::after {
        content: '';
        width: 47px;
        height: 63px;
        display: block;
        background-image: url("../images/common/moai.svg");
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: 5px; }
        @media only screen and (max-width: 1000px) {
          body.hiroba .ttl .ja::after {
            width: 34px;
            height: 44px; } }
        @media only screen and (max-width: 767px) {
          body.hiroba .ttl .ja::after {
            margin-left: 3px;
            width: 35px;
            height: 43px; } }
    body.hiroba .ttl .en {
      text-transform: uppercase;
      font-family: "Rubik", sans-serif;
      font-weight: bold;
      font-size: 21px;
      font-size: 2.1rem;
      color: #b5b08f;
      margin-top: 10px; }
      @media only screen and (max-width: 1000px) {
        body.hiroba .ttl .en {
          font-size: 16px;
          font-size: 1.6rem; } }
      @media only screen and (max-width: 767px) {
        body.hiroba .ttl .en {
          margin-top: 4px;
          font-size: 14px;
          font-size: 1.4rem; } }
    body.hiroba .ttl .sub {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-top: 20px; }
      @media only screen and (max-width: 1000px) {
        body.hiroba .ttl .sub {
          font-size: 13px;
          font-size: 1.3rem;
          font-weight: 500;
          margin-top: 10px; } }
  body.hiroba .darkblur {
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px); }
    body.hiroba .darkblur .postlist {
      display: flex;
      flex-direction: column;
      gap: 23px 0; }
      @media only screen and (max-width: 767px) {
        body.hiroba .darkblur .postlist {
          gap: 20px 0; } }
      body.hiroba .darkblur .postlist li {
        font-size: 22px;
        font-size: 2.2rem;
        letter-spacing: 0em;
        line-height: 1.5em;
        position: relative;
        padding-left: 26px; }
        @media only screen and (max-width: 767px) {
          body.hiroba .darkblur .postlist li {
            font-size: 16px;
            font-size: 1.6rem;
            padding-left: 20px; } }
        body.hiroba .darkblur .postlist li:before {
          content: '';
          width: 10px;
          height: calc(tan(60deg) * 14px / 2);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
          display: block;
          position: absolute;
          top: 11px;
          left: 0;
          right: auto;
          margin: auto;
          background-color: #EA0012; }
          @media only screen and (max-width: 767px) {
            body.hiroba .darkblur .postlist li:before {
              top: 6px; } }
        body.hiroba .darkblur .postlist li a {
          color: white;
          text-decoration: underline; }
  body.hiroba #banner {
    margin-bottom: 80px;
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      body.hiroba #banner {
        margin-bottom: 51px;
        margin-top: 20px; } }
    body.hiroba #banner .inner {
      max-width: 960px;
      display: flex;
      flex-direction: column;
      gap: 30px; }
      @media only screen and (max-width: 767px) {
        body.hiroba #banner .inner {
          gap: 20px; } }
      body.hiroba #banner .inner a:hover {
        opacity: 0.85; }
      body.hiroba #banner .inner .to-post {
        display: block; }
      body.hiroba #banner .inner .subscription {
        display: flex;
        padding: 40px 40px 40px 80px;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.93);
        gap: 6%; }
        @media only screen and (max-width: 767px) {
          body.hiroba #banner .inner .subscription {
            flex-direction: column;
            padding: 35px 30px;
            gap: 25px; } }
        body.hiroba #banner .inner .subscription .pic {
          width: 23.8%; }
          @media only screen and (max-width: 767px) {
            body.hiroba #banner .inner .subscription .pic {
              width: 100%;
              max-width: 180px; } }
        body.hiroba #banner .inner .subscription .info {
          width: 69%; }
          @media only screen and (max-width: 767px) {
            body.hiroba #banner .inner .subscription .info {
              width: 100%;
              max-width: 285px; } }
  body.hiroba.hiroba_top #mv figure {
    width: 100%; }
  body.hiroba.hiroba_top #mv .bottom {
    background-color: #000000;
    color: white;
    padding: 50px 50px; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_top #mv .bottom {
        padding: 32px 20px 30px; } }
    body.hiroba.hiroba_top #mv .bottom p {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0em;
      line-height: 1.5em;
      font-weight: bold;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_top #mv .bottom p {
          font-size: 18px;
          font-size: 1.8rem; } }
  body.hiroba.hiroba_top #new {
    margin-top: 82px; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_top #new {
        margin-top: 20px; } }
    body.hiroba.hiroba_top #new .inner {
      max-width: 960px;
      padding: 55px 80px 60px; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_top #new .inner {
          padding: 30px 25px 40px; } }
      body.hiroba.hiroba_top #new .inner .postlist {
        margin-top: 52px; }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_top #new .inner .postlist {
            margin-top: 25px; } }
      body.hiroba.hiroba_top #new .inner .more {
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 360px;
        border-radius: 30px;
        border: 1px solid white;
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0em;
        line-height: 1em;
        font-weight: bold;
        margin: 60px auto 0; }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_top #new .inner .more {
            width: 100%;
            max-width: 360px;
            font-size: 16px;
            font-size: 1.6rem;
            height: 46px;
            border-radius: 23px;
            margin-top: 30px; } }
  body.hiroba.hiroba_all #list, body.hiroba.hiroba_all #cont, body.hiroba.hiroba_single #list, body.hiroba.hiroba_single #cont {
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_all #list, body.hiroba.hiroba_all #cont, body.hiroba.hiroba_single #list, body.hiroba.hiroba_single #cont {
        margin-top: 20px; } }
    body.hiroba.hiroba_all #list .inner, body.hiroba.hiroba_all #cont .inner, body.hiroba.hiroba_single #list .inner, body.hiroba.hiroba_single #cont .inner {
      padding: 40px 80px 60px;
      max-width: 960px; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_all #list .inner, body.hiroba.hiroba_all #cont .inner, body.hiroba.hiroba_single #list .inner, body.hiroba.hiroba_single #cont .inner {
          padding: 15px 15px 40px; } }
      body.hiroba.hiroba_all #list .inner #pan, body.hiroba.hiroba_all #cont .inner #pan, body.hiroba.hiroba_single #list .inner #pan, body.hiroba.hiroba_single #cont .inner #pan {
        padding: 0 0 35px;
        width: 100%; }
        @media only screen and (min-width: 768px) {
          body.hiroba.hiroba_all #list .inner #pan, body.hiroba.hiroba_all #cont .inner #pan, body.hiroba.hiroba_single #list .inner #pan, body.hiroba.hiroba_single #cont .inner #pan {
            margin-left: -40px; } }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_all #list .inner #pan, body.hiroba.hiroba_all #cont .inner #pan, body.hiroba.hiroba_single #list .inner #pan, body.hiroba.hiroba_single #cont .inner #pan {
            padding-bottom: 16px; } }
        body.hiroba.hiroba_all #list .inner #pan li, body.hiroba.hiroba_all #cont .inner #pan li, body.hiroba.hiroba_single #list .inner #pan li, body.hiroba.hiroba_single #cont .inner #pan li {
          color: white; }
  body.hiroba.hiroba_all #list .inner h2 {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 0em;
    line-height: 1em;
    padding-bottom: 24px;
    border-bottom: 1px solid white;
    color: white;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 34px; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_all #list .inner h2 {
        margin-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 25px;
        font-size: 24px;
        font-size: 2.4rem;
        padding-left: 15px;
        border-bottom: 1px solid #A7A7A7; } }
  body.hiroba.hiroba_all #list .inner .postlist {
    border-bottom: 1px solid #A7A7A7;
    padding-bottom: 50px; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_all #list .inner .postlist {
        padding-bottom: 40px; } }
    body.hiroba.hiroba_all #list .inner .postlist .none {
      color: white; }
      body.hiroba.hiroba_all #list .inner .postlist .none:before {
        display: none; }
  body.hiroba.hiroba_all #list .inner #pagination {
    margin-top: 38px;
    color: white; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_all #list .inner #pagination {
        margin-top: 25px; } }
  body.hiroba.hiroba_single #cont .inner .header {
    margin-top: 16px;
    margin-bottom: 35px;
    padding-bottom: 29px;
    border-bottom: 1px solid #A7A7A7; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_single #cont .inner .header {
        margin-top: 9px;
        margin-bottom: 20px;
        padding: 0 10px 22px; } }
    body.hiroba.hiroba_single #cont .inner .header .title {
      font-size: 36px;
      font-size: 3.6rem;
      letter-spacing: 0em;
      line-height: 1.416em;
      color: white;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .header .title {
          font-size: 24px;
          font-size: 2.4rem; } }
    body.hiroba.hiroba_single #cont .inner .header .tag-cont {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: flex-start; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .header .tag-cont {
          flex-direction: column;
          align-items: flex-start;
          margin-top: 20px; } }
      body.hiroba.hiroba_single #cont .inner .header .tag-cont .heading {
        color: white;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0em;
        line-height: 1em; }
      body.hiroba.hiroba_single #cont .inner .header .tag-cont .tags {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-left: 10px; }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_single #cont .inner .header .tag-cont .tags {
            margin-left: 0;
            margin-top: 14px; } }
        body.hiroba.hiroba_single #cont .inner .header .tag-cont .tags li {
          height: 26px;
          background-color: #D9D9D9;
          border-radius: 5px;
          overflow: hidden;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0em;
          line-height: 1em; }
          body.hiroba.hiroba_single #cont .inner .header .tag-cont .tags li a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px; }
            body.hiroba.hiroba_single #cont .inner .header .tag-cont .tags li a:before {
              content: "#"; }
  body.hiroba.hiroba_single #cont .inner .contents {
    padding: 0 30px;
    color: white;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 2em; }
    @media only screen and (max-width: 767px) {
      body.hiroba.hiroba_single #cont .inner .contents {
        padding: 0 10px;
        font-size: 15px;
        font-size: 1.5rem; } }
    body.hiroba.hiroba_single #cont .inner .contents p, body.hiroba.hiroba_single #cont .inner .contents ul, body.hiroba.hiroba_single #cont .inner .contents ol, body.hiroba.hiroba_single #cont .inner .contents blockquote, body.hiroba.hiroba_single #cont .inner .contents h1, body.hiroba.hiroba_single #cont .inner .contents h2, body.hiroba.hiroba_single #cont .inner .contents h3, body.hiroba.hiroba_single #cont .inner .contents h4, body.hiroba.hiroba_single #cont .inner .contents h5, body.hiroba.hiroba_single #cont .inner .contents h6 {
      margin: 16px 0; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .contents p, body.hiroba.hiroba_single #cont .inner .contents ul, body.hiroba.hiroba_single #cont .inner .contents ol, body.hiroba.hiroba_single #cont .inner .contents blockquote, body.hiroba.hiroba_single #cont .inner .contents h1, body.hiroba.hiroba_single #cont .inner .contents h2, body.hiroba.hiroba_single #cont .inner .contents h3, body.hiroba.hiroba_single #cont .inner .contents h4, body.hiroba.hiroba_single #cont .inner .contents h5, body.hiroba.hiroba_single #cont .inner .contents h6 {
          margin: 15px 0; } }
    body.hiroba.hiroba_single #cont .inner .contents sup {
      vertical-align: super;
      font-size: smaller; }
    body.hiroba.hiroba_single #cont .inner .contents sub {
      vertical-align: sub;
      font-size: smaller; }
    body.hiroba.hiroba_single #cont .inner .contents figure {
      margin-top: 16px;
      margin-bottom: 16px; }
      body.hiroba.hiroba_single #cont .inner .contents figure figcaption {
        font-size: 14px;
        font-size: 1.4rem;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_single #cont .inner .contents figure figcaption {
            font-size: 13px;
            font-size: 1.3rem; } }
    body.hiroba.hiroba_single #cont .inner .contents h1, body.hiroba.hiroba_single #cont .inner .contents h2, body.hiroba.hiroba_single #cont .inner .contents h3, body.hiroba.hiroba_single #cont .inner .contents h4, body.hiroba.hiroba_single #cont .inner .contents h5, body.hiroba.hiroba_single #cont .inner .contents h6 {
      font-weight: bold;
      line-height: 1.5em;
      letter-spacing: 0em; }
    body.hiroba.hiroba_single #cont .inner .contents h1 {
      font-size: 36px;
      font-size: 3.6rem; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .contents h1 {
          font-size: 24px;
          font-size: 2.4rem; } }
    body.hiroba.hiroba_single #cont .inner .contents h2 {
      font-size: 30px;
      font-size: 3rem;
      border-left: 10px solid #E50011;
      padding-left: 13px; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .contents h2 {
          font-size: 20px;
          font-size: 2rem;
          border-left: 8px solid #E50011;
          padding-left: 10px; } }
    body.hiroba.hiroba_single #cont .inner .contents h3 {
      font-size: 22px;
      font-size: 2.2rem; }
    body.hiroba.hiroba_single #cont .inner .contents h4 {
      font-size: 18px;
      font-size: 1.8rem; }
    body.hiroba.hiroba_single #cont .inner .contents h5 {
      font-size: 16px;
      font-size: 1.6rem; }
    body.hiroba.hiroba_single #cont .inner .contents h6 {
      font-size: 14px;
      font-size: 1.4rem; }
    body.hiroba.hiroba_single #cont .inner .contents strong, body.hiroba.hiroba_single #cont .inner .contents b {
      font-weight: bold; }
    body.hiroba.hiroba_single #cont .inner .contents a {
      text-decoration: underline; }
    body.hiroba.hiroba_single #cont .inner .contents i, body.hiroba.hiroba_single #cont .inner .contents em {
      font-style: italic; }
    body.hiroba.hiroba_single #cont .inner .contents ul {
      list-style-type: disc;
      padding-left: 2.5em; }
    body.hiroba.hiroba_single #cont .inner .contents ol {
      list-style-type: decimal;
      padding-left: 2em;
      margin-left: 0.5em; }
    body.hiroba.hiroba_single #cont .inner .contents > blockquote, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote {
      position: relative;
      padding: 10px 15px 10px 50px;
      box-sizing: border-box;
      font-style: italic;
      background: rgba(0, 0, 0, 0.25);
      color: white; }
      @media only screen and (max-width: 767px) {
        body.hiroba.hiroba_single #cont .inner .contents > blockquote, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote {
          padding-left: 30px; } }
      body.hiroba.hiroba_single #cont .inner .contents > blockquote:before, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote:before {
        display: inline-block;
        position: absolute;
        top: 10px;
        left: -3px;
        content: "“";
        font-family: sans-serif;
        color: #cfcfcf;
        font-size: 90px;
        line-height: 1; }
        @media only screen and (max-width: 767px) {
          body.hiroba.hiroba_single #cont .inner .contents > blockquote:before, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote:before {
            font-size: 60px; } }
      body.hiroba.hiroba_single #cont .inner .contents > blockquote p, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote p {
        padding: 0;
        margin: 10px 0;
        line-height: 1.7; }
      body.hiroba.hiroba_single #cont .inner .contents > blockquote cite, body.hiroba.hiroba_single #cont .inner .contents .wp-block-pullquote blockquote cite {
        display: block;
        text-align: right;
        color: #888888;
        font-size: 0.9em; }
    body.hiroba.hiroba_single #cont .inner .contents blockquote {
      min-width: 250px !important; }
      @media only screen and (min-width: 768px) {
        body.hiroba.hiroba_single #cont .inner .contents blockquote.tiktok-embed iframe {
          width: auto !important;
          padding: 10px;
          background-color: white; } }
    body.hiroba.hiroba_single #cont .inner .contents .wp-block-embed .wp-block-embed__wrapper {
      display: flex;
      justify-content: center; }
    body.hiroba.hiroba_single #cont .inner .contents .wp-block-embed.is-provider-youtube .wp-block-embed__wrapper iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16/9; }
    body.hiroba.hiroba_single #cont .inner .contents img {
      max-width: 100%; }
    body.hiroba.hiroba_single #cont .inner .contents iframe {
      width: 100%;
      max-width: 100%;
      margin: 16px auto !important; }
    body.hiroba.hiroba_single #cont .inner .contents .has-small-font-size,
    body.hiroba.hiroba_single #cont .inner .contents .has-medium-font-size,
    body.hiroba.hiroba_single #cont .inner .contents .has-large-font-size,
    body.hiroba.hiroba_single #cont .inner .contents .has-x-large-font-size {
      line-height: 1.4em; }

body.index {
  background-color: #000000; }
  body.index main .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: bottom -100px center;
    background-size: 100%;
    z-index: -1; }
    @media only screen and (max-width: 767px) {
      body.index main .background {
        background-position: bottom center;
        background-size: cover; } }
  body.index main .space {
    background-image: url(../images/common/space.jpg);
    background-size: 1360px;
    padding-top: 30px; }
    @media only screen and (max-width: 767px) {
      body.index main .space {
        background-size: 1000px; } }
  body.index main #mv {
    padding: 63px 0 90px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      body.index main #mv {
        padding: 35px 0 65px; } }
    body.index main #mv .slider1 .item {
      display: block;
      margin: 0 -40px; }
      @media only screen and (min-width: 768px) {
        body.index main #mv .slider1 .item {
          transform: scale(0.71);
          transition: transform .5s; } }
      @media only screen and (max-width: 767px) {
        body.index main #mv .slider1 .item {
          height: 48vw;
          margin: 0 8px; } }
      body.index main #mv .slider1 .item a {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        width: 100%;
        padding-top: 52.2%; }
      @media only screen and (min-width: 768px) {
        body.index main #mv .slider1 .item.slick-center {
          transform: scale(1); } }
    body.index main #mv .slider1 .slick-dots {
      bottom: -35px; }
      @media only screen and (max-width: 767px) {
        body.index main #mv .slider1 .slick-dots {
          bottom: -26px; } }
      body.index main #mv .slider1 .slick-dots li {
        width: 15px;
        height: 15px;
        margin: 0 4px; }
        @media only screen and (max-width: 767px) {
          body.index main #mv .slider1 .slick-dots li {
            width: 10px;
            height: 10px;
            margin: 0 2px; } }
        body.index main #mv .slider1 .slick-dots li button:before {
          opacity: 1;
          width: 15px;
          height: 15px;
          background-color: white;
          content: "";
          border-radius: 50%; }
          @media only screen and (max-width: 767px) {
            body.index main #mv .slider1 .slick-dots li button:before {
              width: 10px;
              height: 10px; } }
        @media only screen and (min-width: 768px) {
          body.index main #mv .slider1 .slick-dots li button:hover:before {
            background-color: #E50011; } }
        body.index main #mv .slider1 .slick-dots li.slick-active button:before {
          background-color: #E50011; }
    @media only screen and (min-width: 768px) {
      body.index main #mv .slider1 .slick-list {
        overflow: visible; } }
    body.index main #mv .slider1 .slide-arrow {
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 1000;
      margin: auto; }
      body.index main #mv .slider1 .slide-arrow.prev-arrow {
        left: 10px;
        transform: rotate(180deg); }
      body.index main #mv .slider1 .slide-arrow.next-arrow {
        right: 10px; }
  body.index main #pickup {
    background-color: #E50011; }
    @media only screen and (max-width: 767px) {
      body.index main #pickup {
        padding-bottom: 12px; } }
    @media only screen and (min-width: 768px) {
      body.index main #pickup .flow {
        padding-bottom: 39px;
        overflow: hidden; } }
    body.index main #pickup h2 {
      background-color: #8C834A;
      color: white;
      font-size: 28px;
      font-size: 2.8rem;
      letter-spacing: 0em;
      font-weight: bold;
      width: 262px;
      height: 40px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      top: -20px; }
      @media only screen and (max-width: 767px) {
        body.index main #pickup h2 {
          font-size: 18px;
          font-size: 1.8rem;
          width: 196px;
          height: 30px;
          top: -15px; } }
      body.index main #pickup h2:before, body.index main #pickup h2:after {
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        content: '';
        border: 20px solid transparent;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent; }
        @media only screen and (max-width: 767px) {
          body.index main #pickup h2:before, body.index main #pickup h2:after {
            border: 15px solid transparent;
            border-right: 8px solid transparent;
            border-left: 8px solid transparent; } }
      body.index main #pickup h2:before {
        right: 100%;
        border-right-color: #8C834A; }
      body.index main #pickup h2:after {
        left: 100%;
        border-left-color: #8C834A; }
    body.index main #pickup .pickup {
      font-family: "Rubik", sans-serif;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0em;
      line-height: 1em;
      font-weight: bold;
      color: #B5B08F;
      text-align: center;
      margin-top: 0px;
      position: relative;
      top: -10px; }
      @media only screen and (max-width: 767px) {
        body.index main #pickup .pickup {
          font-size: 12px;
          font-size: 1.2rem;
          top: -9px; } }
    body.index main #pickup .slider2 {
      margin-top: 8px;
      overflow: visible; }
      @media only screen and (max-width: 767px) {
        body.index main #pickup .slider2 {
          margin-top: 1px; } }
      body.index main #pickup .slider2 .item {
        display: block;
        margin: 0 1vw;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.index main #pickup .slider2 .item {
            margin: 0 2vw; } }
        body.index main #pickup .slider2 .item a {
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          display: block;
          width: 100%;
          padding-top: 52.08%; }
      body.index main #pickup .slider2 .slick-dots {
        bottom: -35px; }
        @media only screen and (max-width: 767px) {
          body.index main #pickup .slider2 .slick-dots {
            bottom: -26px; } }
        body.index main #pickup .slider2 .slick-dots li {
          width: 15px;
          height: 15px;
          margin: 0 4px; }
          @media only screen and (max-width: 767px) {
            body.index main #pickup .slider2 .slick-dots li {
              width: 10px;
              height: 10px;
              margin: 0 2px; } }
          body.index main #pickup .slider2 .slick-dots li button:before {
            opacity: 1;
            width: 15px;
            height: 15px;
            background-color: white;
            content: "";
            border-radius: 50%; }
            @media only screen and (max-width: 767px) {
              body.index main #pickup .slider2 .slick-dots li button:before {
                width: 10px;
                height: 10px; } }
          @media only screen and (min-width: 768px) {
            body.index main #pickup .slider2 .slick-dots li button:hover:before {
              background-color: #000000; } }
          body.index main #pickup .slider2 .slick-dots li.slick-active button:before {
            background-color: #000000; }
      @media only screen and (min-width: 768px) {
        body.index main #pickup .slider2 .slick-list {
          overflow: visible; } }
  body.index main #news {
    padding-top: 48px;
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.index main #news {
        padding-top: 20px; } }
    body.index main #news .inner h2 {
      font-size: 36px;
      font-size: 3.6rem;
      letter-spacing: 0em;
      line-height: 1em;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white; }
      @media only screen and (max-width: 767px) {
        body.index main #news .inner h2 {
          font-size: 28px;
          font-size: 2.8rem; } }
      body.index main #news .inner h2:after {
        content: "";
        width: 35px;
        height: 46px;
        background-image: url(../images/common/moai.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: block;
        margin-left: 8px; }
        @media only screen and (max-width: 767px) {
          body.index main #news .inner h2:after {
            width: 26px;
            height: 34px; } }
    body.index main #news .inner .en {
      font-family: "Rubik", sans-serif;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0em;
      line-height: 1em;
      font-weight: bold;
      color: #B5B08F;
      text-align: center;
      margin-top: 8px; }
      @media only screen and (max-width: 767px) {
        body.index main #news .inner .en {
          font-size: 12px;
          font-size: 1.2rem;
          margin-top: 6px; } }
    body.index main #news .inner .layout {
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        body.index main #news .inner .layout {
          margin-top: 20px; } }
      @media only screen and (min-width: 768px) {
        body.index main #news .inner .layout .upper {
          display: flex;
          justify-content: space-between; }
          body.index main #news .inner .layout .upper .first {
            width: calc(50% - 30px);
            display: block; }
            body.index main #news .inner .layout .upper .first .item {
              width: 100%; }
              body.index main #news .inner .layout .upper .first .item .info {
                margin-top: 15px; }
                body.index main #news .inner .layout .upper .first .item .info .category {
                  font-size: 16px;
                  font-size: 1.6rem; }
                body.index main #news .inner .layout .upper .first .item .info time {
                  font-size: 15px;
                  font-size: 1.5rem; }
              body.index main #news .inner .layout .upper .first .item .maintext .title {
                font-size: 30px;
                font-size: 3rem;
                line-height: 1.4em;
                height: 5.6em; }
          body.index main #news .inner .layout .upper .right {
            width: calc(50% - 10px); } }
    @media only screen and (min-width: 768px) and (min-width: 768px) {
      body.index main #news .inner .layout .upper .right .item {
        width: calc((100% - 15px) / 2); }
        body.index main #news .inner .layout .upper .right .item:nth-child(2n) {
          margin-left: 15px; } }
      @media only screen and (max-width: 767px) {
        body.index main #news .inner .layout .upper .first .item {
          width: 100%; }
          body.index main #news .inner .layout .upper .first .item .info {
            margin-top: 15px; }
            body.index main #news .inner .layout .upper .first .item .info .category {
              font-size: 16px;
              font-size: 1.6rem; }
            body.index main #news .inner .layout .upper .first .item .info time {
              font-size: 15px;
              font-size: 1.5rem; }
          body.index main #news .inner .layout .upper .first .item .maintext {
            margin-top: 6px; }
            body.index main #news .inner .layout .upper .first .item .maintext .title {
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.5em; }
            body.index main #news .inner .layout .upper .first .item .maintext .bottom {
              font-size: 13px;
              font-size: 1.3rem;
              margin-top: 12px;
              padding-bottom: 12px; }
              body.index main #news .inner .layout .upper .first .item .maintext .bottom:after {
                width: 11px;
                height: 10px; } }
    body.index main #news .inner .btn_white {
      margin: 0 auto; }
  body.index main #youtube {
    padding-top: 70px;
    padding-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.index main #youtube {
        padding-top: 42px;
        padding-bottom: 0; } }
    @media only screen and (max-width: 767px) {
      body.index main #youtube .inner2 {
        width: 100%; } }
    body.index main #youtube .inner2 .container {
      background-color: #8C834A;
      padding: 62px 40px 30px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.index main #youtube .inner2 .container {
          padding: 36px 0 0px; } }
      body.index main #youtube .inner2 .container .logo {
        position: absolute;
        top: -69px;
        left: 0;
        right: 0;
        margin: auto;
        width: 393px; }
        @media only screen and (max-width: 767px) {
          body.index main #youtube .inner2 .container .logo {
            width: 193px;
            top: -28px; } }
      body.index main #youtube .inner2 .container #player {
        width: 100%; }
      body.index main #youtube .inner2 .container .videoList {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          body.index main #youtube .inner2 .container .videoList {
            margin-top: 0px;
            flex-wrap: wrap;
            padding: 15px 15px 7px; } }
        body.index main #youtube .inner2 .container .videoList .thumb {
          width: 23.5%;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.index main #youtube .inner2 .container .videoList .thumb {
              width: calc((100% - 15px) / 2);
              margin-bottom: 10px; } }
          body.index main #youtube .inner2 .container .videoList .thumb:before {
            content: "";
            width: 100%;
            height: 0px;
            display: block;
            background-color: #FF0000;
            position: absolute;
            top: auto;
            bottom: 0;
            left: 0;
            right: auto;
            margin: auto;
            transition: .3s; }
          body.index main #youtube .inner2 .container .videoList .thumb:not(.playing) {
            cursor: pointer; }
            body.index main #youtube .inner2 .container .videoList .thumb:not(.playing):after {
              content: "";
              width: 50px;
              height: 50px;
              background-image: url(../images/common/play.svg);
              background-repeat: no-repeat;
              background-position: center;
              background-size: cover;
              display: block;
              position: absolute;
              top: 0;
              bottom: 0;
              left: 0;
              right: 0;
              margin: auto; }
              @media only screen and (max-width: 767px) {
                body.index main #youtube .inner2 .container .videoList .thumb:not(.playing):after {
                  width: 33px;
                  height: 33px; } }
          body.index main #youtube .inner2 .container .videoList .thumb.playing {
            pointer-events: none; }
            body.index main #youtube .inner2 .container .videoList .thumb.playing:before {
              height: 6px; }
              @media only screen and (max-width: 767px) {
                body.index main #youtube .inner2 .container .videoList .thumb.playing:before {
                  height: 4px; } }
  body.index main #sns {
    padding-top: 80px;
    padding-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.index main #sns {
        padding-top: 27px;
        padding-bottom: 30px; } }
    body.index main #sns .inner2 {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.index main #sns .inner2 {
          flex-direction: column; } }
      body.index main #sns .inner2 .item {
        width: calc((100% - 40px) / 2);
        height: 479px;
        overflow: scroll; }
        @media only screen and (max-width: 767px) {
          body.index main #sns .inner2 .item {
            width: 100%;
            height: 424px;
            margin-bottom: 20px; }
            body.index main #sns .inner2 .item:last-child {
              margin-bottom: 0px; } }
        body.index main #sns .inner2 .item.tiktok .tiktok-embed {
          margin: 0; }
      body.index main #sns .inner2 .snapwidget-widget {
        max-width: 550px; }

body.mu-tabi {
  background-color: #000000;
  /* #prefselect */
  /* #result */ }
  body.mu-tabi main .inner {
    max-width: 1060px; }
  body.mu-tabi main .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: top 80px center;
    background-size: 100%;
    z-index: -1; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi main .background {
        background-position: top 50px center; } }
  body.mu-tabi main .space {
    background-image: url(../images/common/space.jpg);
    background-size: 1360px;
    padding-bottom: 207px;
    border-bottom: 1px solid #707070; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi main .space {
        padding-bottom: 80px;
        background-size: 1000px;
        border-bottom: none; } }
  body.mu-tabi #mv {
    position: relative; }
    body.mu-tabi #mv::after {
      content: '';
      display: block;
      padding-top: 36.76%;
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #mv::after {
          padding-top: 120%; } }
    body.mu-tabi #mv #pan {
      width: calc(100% - 180px);
      max-width: 1180px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 0; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #mv #pan {
          width: calc(100% - 30px); } }
      body.mu-tabi #mv #pan li {
        color: #fff; }
    body.mu-tabi #mv .mv_img {
      width: 100%; }
  body.mu-tabi #info {
    padding: 47px 0 57px;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.83; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi #info {
        padding: 29px 0;
        font-size: 16px;
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.625; } }
  body.mu-tabi #prefselect {
    max-width: 1060px;
    width: 100%;
    border-radius: 10px;
    padding: 44px 60px 39px;
    margin: 0 auto 60px;
    border: 1px solid #747266;
    border-radius: 10px; }
    @media only screen and (max-width: 1000px) {
      body.mu-tabi #prefselect {
        padding: 30px 30px 25px; } }
    @media only screen and (max-width: 767px) {
      body.mu-tabi #prefselect {
        padding: 25px 13px 30px;
        margin-bottom: 40px; } }
    body.mu-tabi #prefselect .ttl {
      display: flex;
      align-items: center;
      flex-direction: column; }
      body.mu-tabi #prefselect .ttl .ja {
        font-weight: bold;
        font-size: 48px;
        font-size: 4.8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: 500; }
        @media only screen and (max-width: 1000px) {
          body.mu-tabi #prefselect .ttl .ja {
            font-size: 32px;
            font-size: 3.2rem; } }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #prefselect .ttl .ja {
            font-size: 28px;
            font-size: 2.8rem; } }
        body.mu-tabi #prefselect .ttl .ja::after {
          content: '';
          width: 47px;
          height: 63px;
          display: block;
          background-image: url("../images/common/moai.svg");
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          margin-left: 5px; }
          @media only screen and (max-width: 1000px) {
            body.mu-tabi #prefselect .ttl .ja::after {
              width: 34px;
              height: 44px; } }
          @media only screen and (max-width: 767px) {
            body.mu-tabi #prefselect .ttl .ja::after {
              margin-left: 3px;
              width: 35px;
              height: 43px; } }
      body.mu-tabi #prefselect .ttl .en {
        text-transform: uppercase;
        font-family: "Rubik", sans-serif;
        font-weight: bold;
        font-size: 21px;
        font-size: 2.1rem;
        color: #b5b08f;
        margin-top: 10px; }
        @media only screen and (max-width: 1000px) {
          body.mu-tabi #prefselect .ttl .en {
            font-size: 16px;
            font-size: 1.6rem; } }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #prefselect .ttl .en {
            margin-top: 4px;
            font-size: 14px;
            font-size: 1.4rem; } }
      body.mu-tabi #prefselect .ttl .sub {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        margin-top: 20px; }
        @media only screen and (max-width: 1000px) {
          body.mu-tabi #prefselect .ttl .sub {
            font-size: 13px;
            font-size: 1.3rem;
            font-weight: 500;
            margin-top: 10px; } }
    body.mu-tabi #prefselect .prefselect_map {
      width: 100%;
      display: block;
      position: relative;
      margin: -135px auto 0; }
      @media only screen and (max-width: 1000px) {
        body.mu-tabi #prefselect .prefselect_map {
          margin-top: -90px; } }
      @media only screen and (min-width: 768px) {
        body.mu-tabi #prefselect .prefselect_map .prefselect_item {
          transition: 0.3s;
          cursor: pointer; }
          body.mu-tabi #prefselect .prefselect_map .prefselect_item:hover {
            opacity: 0.7; } }
    body.mu-tabi #prefselect .prefselect_list {
      margin-top: 30px; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area:not(:first-child) {
        margin-top: 18px; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area .title {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area .list {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 8px; }
        body.mu-tabi #prefselect .prefselect_list .prefselect_list_area .list li {
          width: calc(25% - 3.75px); }
          body.mu-tabi #prefselect .prefselect_list .prefselect_list_area .list li .prefitem {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            padding-bottom: 2px;
            width: 100%;
            height: 30px;
            color: #fff;
            font-size: 13px;
            font-size: 1.3rem;
            font-weight: 500;
            background: #aaa;
            cursor: pointer; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.tohoku .list li .prefitem {
        background: #1B86BC; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.kanto .list li .prefitem {
        background: #68A556; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.chubu .list li .prefitem {
        background: #42B2A7; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.kinki .list li .prefitem {
        background: #767399; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.chugoku .list li .prefitem {
        background: #DDA932; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.shikoku .list li .prefitem {
        background: #C67B52; }
      body.mu-tabi #prefselect .prefselect_list .prefselect_list_area.kyushu .list li .prefitem {
        background: #D85050; }
    body.mu-tabi #prefselect .prefselect_selectbox {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 21px auto 0; }
      body.mu-tabi #prefselect .prefselect_selectbox .prefselect_selectbox_selected {
        cursor: pointer;
        width: 100%;
        height: 38px;
        border: 1px solid #C6C6C6;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-align: -webkit-center;
        font-size: 15px;
        font-size: 1.5rem;
        outline: none;
        background-color: #fff;
        background-image: url("../images/common/select_triangle.svg");
        background-size: 11px 10px;
        background-position: right 20px center;
        background-repeat: no-repeat;
        cursor: pointer; }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #prefselect .prefselect_selectbox .prefselect_selectbox_selected {
            background-position: right 15px center; } }
      body.mu-tabi #prefselect .prefselect_selectbox ul {
        display: none;
        position: absolute;
        width: 100%;
        top: 100%;
        height: auto;
        max-height: 40vh;
        overflow-y: auto;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
        z-index: 10; }
        body.mu-tabi #prefselect .prefselect_selectbox ul li {
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 15px;
          font-size: 1.5rem;
          width: 100%;
          text-align: center;
          line-height: 1;
          height: 38px;
          transition: 0.3s;
          cursor: pointer; }
          body.mu-tabi #prefselect .prefselect_selectbox ul li:not(:last-child) {
            border-bottom: 1px solid #efefef; }
          @media only screen and (min-width: 768px) {
            body.mu-tabi #prefselect .prefselect_selectbox ul li:hover {
              background: #efefef; } }
    body.mu-tabi #prefselect .prefform {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 15px;
      margin-top: 21px; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #prefselect .prefform {
          margin-top: 14px; } }
      body.mu-tabi #prefselect .prefform select {
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        padding: 0 calc(20% - 3em);
        width: 100%;
        max-width: 400px;
        height: 38px;
        border: 1px solid #C6C6C6;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-align: -webkit-center;
        font-size: 15px;
        font-size: 1.5rem;
        outline: none;
        background-image: url("../images/common/select_triangle.svg");
        background-size: 11px 10px;
        background-position: right 20px center;
        background-repeat: no-repeat;
        cursor: pointer; }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #prefselect .prefform select {
            background-position: right 15px center; } }
      body.mu-tabi #prefselect .prefform button {
        width: 200px;
        height: 50px;
        color: #fff;
        background: #E60012;
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: 600;
        outline: none;
        border: none;
        border-radius: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
  body.mu-tabi #result {
    background: #8D8545;
    padding: 60px 0 60px;
    width: 100%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi #result {
        padding: 30px 0 50px; } }
    body.mu-tabi #result #pref_result {
      position: absolute;
      top: -80px;
      left: 0;
      width: 100%;
      display: block;
      height: 1px; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #result #pref_result {
          top: -50px; } }
    body.mu-tabi #result .redult_ttl {
      background-color: #E50011;
      color: white;
      font-size: 32px;
      font-size: 3.2rem;
      letter-spacing: 0em;
      font-weight: bold;
      width: fit-content;
      height: 55px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      padding: 0 48px; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #result .redult_ttl {
          font-size: 20px;
          font-size: 2rem;
          padding: 0 28px;
          height: 40px; } }
      body.mu-tabi #result .redult_ttl:before, body.mu-tabi #result .redult_ttl:after {
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        content: '';
        border: 28px solid transparent;
        border-right: 22px solid transparent;
        border-left: 22px solid transparent; }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #result .redult_ttl:before, body.mu-tabi #result .redult_ttl:after {
            border: 20px solid transparent;
            border-right: 14px solid transparent;
            border-left: 14px solid transparent; } }
      body.mu-tabi #result .redult_ttl:before {
        right: 100%;
        border-right-color: #E50011; }
      body.mu-tabi #result .redult_ttl:after {
        left: 100%;
        border-left-color: #E50011; }
    body.mu-tabi #result .prefinfo {
      margin-top: 30px;
      border: 1px solid #C1C1C1;
      padding: 25px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #result .prefinfo {
          margin-top: 20px;
          padding: 15px;
          flex-wrap: wrap; } }
      body.mu-tabi #result .prefinfo .prefinfo_img {
        width: 38.61%; }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #result .prefinfo .prefinfo_img {
            width: 100%; } }
      body.mu-tabi #result .prefinfo .prefinfo_text {
        width: 58.41%;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          body.mu-tabi #result .prefinfo .prefinfo_text {
            width: 100%; } }
        body.mu-tabi #result .prefinfo .prefinfo_text .prefinfo_index {
          font-size: 26px;
          font-size: 2.6rem;
          font-weight: 600;
          margin: 5px 0 16px; }
          @media only screen and (max-width: 767px) {
            body.mu-tabi #result .prefinfo .prefinfo_text .prefinfo_index {
              font-size: 22px;
              font-size: 2.2rem;
              margin: 25px 0 9px; } }
        body.mu-tabi #result .prefinfo .prefinfo_text p {
          display: block;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.875; }
          @media only screen and (max-width: 767px) {
            body.mu-tabi #result .prefinfo .prefinfo_text p {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.857; } }
    body.mu-tabi #result .prefcontent {
      margin-top: 37px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #result .prefcontent {
          margin-top: 30px; } }
      body.mu-tabi #result .prefcontent .wp-pagenavi {
        margin: 0 auto;
        width: 100%; }
      body.mu-tabi #result .prefcontent #pref_result_posts {
        position: absolute;
        top: -110px;
        left: 0;
        width: 100%;
        height: 1px; }
      body.mu-tabi #result .prefcontent .itemlist {
        gap: 45px 30px; }
        @media only screen and (max-width: 1000px) {
          body.mu-tabi #result .prefcontent .itemlist {
            gap: 40px 15px; } }
        @media only screen and (max-width: 540px) {
          body.mu-tabi #result .prefcontent .itemlist {
            gap: 40px; } }
        body.mu-tabi #result .prefcontent .itemlist .item {
          width: calc((100% - 60px) / 3);
          border-bottom-color: #C1C1C1;
          margin: 0; }
          @media only screen and (max-width: 1000px) {
            body.mu-tabi #result .prefcontent .itemlist .item {
              width: calc((100% - 15px) / 2); } }
          @media only screen and (max-width: 540px) {
            body.mu-tabi #result .prefcontent .itemlist .item {
              width: 100%; } }
          body.mu-tabi #result .prefcontent .itemlist .item .pic {
            background-size: cover; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #result .prefcontent .itemlist .item .pic {
                padding-top: 50%; } }
          body.mu-tabi #result .prefcontent .itemlist .item .info {
            margin-top: 10px; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #result .prefcontent .itemlist .item .info {
                margin-top: 13px; } }
            body.mu-tabi #result .prefcontent .itemlist .item .info .category {
              min-width: 198px;
              font-size: 18px;
              font-size: 1.8rem; }
              @media only screen and (max-width: 767px) {
                body.mu-tabi #result .prefcontent .itemlist .item .info .category {
                  min-width: 0;
                  font-size: 16px;
                  font-size: 1.6rem; } }
            body.mu-tabi #result .prefcontent .itemlist .item .info time {
              font-size: 14px;
              font-size: 1.4rem; }
              @media only screen and (max-width: 767px) {
                body.mu-tabi #result .prefcontent .itemlist .item .info time {
                  font-size: 15px;
                  font-size: 1.5rem; } }
          body.mu-tabi #result .prefcontent .itemlist .item .maintext {
            margin-top: 5px; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #result .prefcontent .itemlist .item .maintext {
                margin-top: 8px; } }
            body.mu-tabi #result .prefcontent .itemlist .item .maintext .title {
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.4;
              height: 4.4em;
              display: -webkit-box;
              -webkit-line-clamp: 3;
              -webkit-box-orient: vertical; }
              @media only screen and (max-width: 767px) {
                body.mu-tabi #result .prefcontent .itemlist .item .maintext .title {
                  height: 4.2em;
                  line-height: 1.5; } }
            body.mu-tabi #result .prefcontent .itemlist .item .maintext .bottom {
              font-size: 15px;
              font-size: 1.5rem;
              color: #F5EFC1;
              font-weight: 600;
              padding: 0 13px 12px 5px; }
              @media only screen and (max-width: 767px) {
                body.mu-tabi #result .prefcontent .itemlist .item .maintext .bottom {
                  font-size: 13px;
                  font-size: 1.3rem;
                  padding: 0 0px 12px 5px; } }
              body.mu-tabi #result .prefcontent .itemlist .item .maintext .bottom::after {
                width: 10px;
                height: 10px; }
  body.mu-tabi #pickup {
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi #pickup {
        margin-top: 40px; } }
    body.mu-tabi #pickup .layout {
      margin-top: 35px; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #pickup .layout {
          margin-top: 21px; } }
      body.mu-tabi #pickup .layout .itemlist {
        gap: 0 30px; }
        @media only screen and (max-width: 1000px) {
          body.mu-tabi #pickup .layout .itemlist {
            gap: 0 15px; } }
        body.mu-tabi #pickup .layout .itemlist .item {
          margin-left: 0;
          width: calc((100% - 90px) / 4); }
          @media only screen and (max-width: 1000px) {
            body.mu-tabi #pickup .layout .itemlist .item {
              width: calc((100% - 15px) / 2); } }
          body.mu-tabi #pickup .layout .itemlist .item .info time {
            display: none; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #pickup .layout .itemlist .item .info time {
                display: block;
                font-size: 10px;
                font-size: 1rem;
                letter-spacing: -0.05em; } }
          @media only screen and (max-width: 767px) {
            body.mu-tabi #pickup .layout .itemlist .item .info .category {
              letter-spacing: -0.05em;
              font-size: 11px;
              font-size: 1.1rem; } }
          body.mu-tabi #pickup .layout .itemlist .item .maintext .title {
            height: 4.4em;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #pickup .layout .itemlist .item .maintext .title {
                height: 4.2em; } }
          body.mu-tabi #pickup .layout .itemlist .item .maintext .bottom {
            margin-top: 18px;
            padding: 0 4px 8px 5px; }
            @media only screen and (max-width: 767px) {
              body.mu-tabi #pickup .layout .itemlist .item .maintext .bottom {
                margin-top: 13px;
                padding: 0 4px 8px 0px; } }
            body.mu-tabi #pickup .layout .itemlist .item .maintext .bottom::after {
              width: 8px;
              height: 8px; }
  body.mu-tabi #youtube {
    margin-top: 7px; }
    @media only screen and (max-width: 767px) {
      body.mu-tabi #youtube {
        margin-top: 0; } }
    body.mu-tabi #youtube .container {
      position: relative;
      margin-top: 35px; }
      @media only screen and (max-width: 767px) {
        body.mu-tabi #youtube .container {
          margin-top: 21px; } }
      body.mu-tabi #youtube .container::after {
        content: '';
        display: block;
        width: 100%;
        padding-top: 56.25%; }
      body.mu-tabi #youtube .container iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0; }

@media only screen and (max-width: 767px) {
  body.news-detail #sidebar {
    display: none; } }

body.news-detail #bottomSideBar {
  padding: 30px 0 8px;
  margin: 0 auto;
  width: calc(100% - 30px); }

body.news-detail main .sns {
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.news-detail main .sns {
      margin-bottom: 15px; }
      body.news-detail main .sns:before {
        content: "SHARE";
        font-size: 10px;
        font-size: 1rem;
        letter-spacing: 0em;
        line-height: 1em;
        font-weight: bold; } }
  body.news-detail main .sns li {
    margin-left: 15px; }

body.news-detail main #first {
  border-bottom: 1px solid #BFBFBF;
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    body.news-detail main #first {
      padding-bottom: 10px; } }
  body.news-detail main #first .inner {
    width: calc(100% - 100px); }
    @media screen and (max-width: 1300px) {
      body.news-detail main #first .inner {
        width: 100%; } }
    body.news-detail main #first .inner .info {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      body.news-detail main #first .inner .info .left {
        display: flex;
        align-items: center; }
        body.news-detail main #first .inner .info .left .catTitle {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0em;
          line-height: 1.5em;
          font-weight: 900;
          display: flex;
          align-items: center; }
          @media only screen and (max-width: 767px) {
            body.news-detail main #first .inner .info .left .catTitle {
              font-size: 16px;
              font-size: 1.6rem; } }
          body.news-detail main #first .inner .info .left .catTitle:before {
            content: "";
            width: 40px;
            height: 40px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100%;
            display: inline-block;
            margin-right: 10px; }
            @media only screen and (max-width: 767px) {
              body.news-detail main #first .inner .info .left .catTitle:before {
                width: 35px;
                height: 35px; } }
        body.news-detail main #first .inner .info .left time {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.1em;
          line-height: 1em;
          color: #444444;
          margin-left: 20px; }
        body.news-detail main #first .inner .info .left .pr {
          width: 36px;
          font-size: 12px;
          font-size: 1.2rem;
          font-family: "Rubik", sans-serif;
          color: #FFF;
          font-weight: bold;
          text-align: center;
          padding: 4px 0 4px;
          background-color: #000;
          margin-left: 15px; }
    body.news-detail main #first .inner .title {
      margin-top: 16px;
      font-size: 34px;
      font-size: 3.4rem;
      letter-spacing: 0em;
      line-height: 1.35294em;
      font-weight: 900; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #first .inner .title {
          margin-top: 8px;
          font-size: 24px;
          font-size: 2.4rem;
          line-height: 1.41666em; } }
    body.news-detail main #first .inner .other {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0em;
      line-height: 1.7em;
      margin-top: 9px; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #first .inner .other {
          font-size: 15px;
          font-size: 1.5rem; } }
    body.news-detail main #first .inner .keyword {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 0 40px;
      margin-top: 15px; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #first .inner .keyword {
          gap: 0; } }
      body.news-detail main #first .inner .keyword .keyword_item {
        display: flex; }
        @media only screen and (max-width: 767px) {
          body.news-detail main #first .inner .keyword .keyword_item {
            width: 100%;
            flex-direction: column; } }
        body.news-detail main #first .inner .keyword .keyword_item .heading {
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0em;
          line-height: 1em;
          top: 5px;
          position: relative;
          padding-right: 1em; }
          @media only screen and (max-width: 767px) {
            body.news-detail main #first .inner .keyword .keyword_item .heading {
              font-size: 11px;
              font-size: 1.1rem;
              width: 100%;
              padding-right: 0; } }
        @media only screen and (max-width: 767px) {
          body.news-detail main #first .inner .keyword .keyword_item .tags {
            margin-top: 14px; } }
        body.news-detail main #first .inner .keyword .keyword_item .tags li {
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0em;
          line-height: 1.5em;
          margin-right: 5px;
          margin-bottom: 5px;
          border-radius: 5px;
          display: inline-block;
          color: #333333; }
          body.news-detail main #first .inner .keyword .keyword_item .tags li a {
            padding: 2px 10px;
            border: 1px solid #c9c9c9;
            border-radius: 5px;
            height: 25px;
            width: max-content;
            display: flex;
            align-items: center;
            justify-content: center; }
            body.news-detail main #first .inner .keyword .keyword_item .tags li a:before {
              content: "#"; }

body.news-detail main #contents {
  padding-top: 30px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    body.news-detail main #contents {
      padding-top: 15px;
      padding-bottom: 38px; } }
  body.news-detail main #contents .inner {
    width: calc(100% - 100px); }
    @media screen and (max-width: 1300px) {
      body.news-detail main #contents .inner {
        width: 100%; } }
    body.news-detail main #contents .inner .mv {
      margin: auto;
      max-width: 100%; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #contents .inner .mv {
          width: calc(100% + 30px);
          max-width: none;
          margin-left: -15px; } }
      body.news-detail main #contents .inner .mv img {
        max-width: 100%; }
    body.news-detail main #contents .inner .description {
      font-size: 22px;
      font-size: 2.2rem;
      letter-spacing: 0em;
      line-height: 1.5em;
      font-weight: 900;
      margin-top: 30px;
      margin-bottom: 35px; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #contents .inner .description {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.625em;
          margin-top: 10px; } }
    body.news-detail main #contents .inner .authorList {
      margin-top: 46px; }
      @media only screen and (max-width: 767px) {
        body.news-detail main #contents .inner .authorList {
          margin-top: 36px; } }
      body.news-detail main #contents .inner .authorList .author {
        background: #fafafa;
        background: linear-gradient(135deg, #fafafa 0%, #e2e2e2 57%, #c3c3c3 100%);
        padding: 25px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          body.news-detail main #contents .inner .authorList .author {
            flex-direction: column;
            align-items: center;
            padding: 25px 20px 20px;
            margin-bottom: 30px; } }
        body.news-detail main #contents .inner .authorList .author .left {
          width: 120px;
          height: 120px;
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          border-radius: 50%;
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4); }
        body.news-detail main #contents .inner .authorList .author .right {
          width: calc(100% - 120px - 25px); }
          @media only screen and (max-width: 767px) {
            body.news-detail main #contents .inner .authorList .author .right {
              width: 100%;
              margin-top: 12px; } }
          body.news-detail main #contents .inner .authorList .author .right .name {
            font-size: 20px;
            font-size: 2rem;
            letter-spacing: 0em;
            line-height: 1.7em;
            font-weight: 900; }
            @media only screen and (max-width: 767px) {
              body.news-detail main #contents .inner .authorList .author .right .name {
                font-size: 18px;
                font-size: 1.8rem; } }
            body.news-detail main #contents .inner .authorList .author .right .name a {
              text-decoration: underline; }
          body.news-detail main #contents .inner .authorList .author .right .about {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0em;
            line-height: 1.866666em;
            margin-top: 13px; }
            @media only screen and (max-width: 767px) {
              body.news-detail main #contents .inner .authorList .author .right .about {
                font-size: 14px;
                font-size: 1.4rem;
                line-height: 1.7142em;
                margin-top: 4px; } }

body.news-detail #detailFooter {
  padding-top: 65px;
  padding-bottom: 90px;
  background-image: url(../images/common/space.jpg);
  background-size: 1360px;
  color: white; }
  @media only screen and (max-width: 767px) {
    body.news-detail #detailFooter {
      background-size: 1000px;
      padding-top: 40px;
      padding-bottom: 8px; } }
  body.news-detail #detailFooter .inner .heading {
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: 0em;
    line-height: 1em;
    font-weight: 900;
    height: 40px;
    display: flex;
    align-items: center;
    border-left: 8px solid #E50011;
    padding-left: 15px;
    margin-bottom: 35px; }
    @media only screen and (max-width: 767px) {
      body.news-detail #detailFooter .inner .heading {
        font-size: 20px;
        font-size: 2rem;
        border-left: 6px solid #E50011;
        height: 32px;
        margin-bottom: 20px; } }
  body.news-detail #detailFooter .inner #bottomAd {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 60px; }
    @media only screen and (max-width: 767px) {
      body.news-detail #detailFooter .inner #bottomAd {
        padding: 4px 0 30px; } }

body.news main section {
  border-bottom: 1px solid #BFBFBF; }
  body.news main section .inner {
    width: calc(100% - 100px); }
    @media screen and (max-width: 1300px) {
      body.news main section .inner {
        width: 100%; } }

body.news main #first {
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    body.news main #first {
      padding-bottom: 10px; } }
  body.news main #first .inner h1 {
    display: flex;
    align-items: center; }
    body.news main #first .inner h1 .catTitle {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0em;
      line-height: 1.5em;
      font-weight: 900;
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.news main #first .inner h1 .catTitle {
          font-size: 16px;
          font-size: 1.6rem; } }
      body.news main #first .inner h1 .catTitle:before {
        content: "";
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        display: inline-block;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          body.news main #first .inner h1 .catTitle:before {
            width: 35px;
            height: 35px; } }
      body.news main #first .inner h1 .catTitle.isTag:before {
        content: none; }
      body.news main #first .inner h1 .catTitle.isAll:before {
        content: none; }
    body.news main #first .inner h1 .add {
      font-size: 18px;
      font-size: 1.8rem;
      font-weight: normal;
      color: #000000;
      margin-left: 15px; }
      @media only screen and (max-width: 767px) {
        body.news main #first .inner h1 .add {
          font-size: 15px;
          font-size: 1.5rem; } }
  body.news main #first .inner .caption, body.news main #first .inner p {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0em;
    line-height: 1.75em;
    margin-top: 20px; }
    @media only screen and (max-width: 767px) {
      body.news main #first .inner .caption, body.news main #first .inner p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.7142em;
        margin-top: 14px; } }

body.news main #contents {
  padding-top: 30px;
  padding-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    body.news main #contents {
      padding-top: 20px;
      padding-bottom: 2px; } }
  @media only screen and (max-width: 767px) {
    body.news main #contents .inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; } }
  body.news main #contents .inner article {
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      body.news main #contents .inner article {
        width: 47.82%; } }
    body.news main #contents .inner article a {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.news main #contents .inner article a {
          flex-direction: column; } }
      body.news main #contents .inner article a .left {
        width: 40.5%;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.news main #contents .inner article a .left {
            width: 100%; } }
        body.news main #contents .inner article a .left figure {
          width: 100%;
          padding-top: 52.375%;
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4); }
          @media only screen and (max-width: 767px) {
            body.news main #contents .inner article a .left figure {
              width: 100%; } }
      body.news main #contents .inner article a .right {
        width: 56.08%;
        padding-top: 5px; }
        @media only screen and (max-width: 767px) {
          body.news main #contents .inner article a .right {
            width: 100%;
            padding-top: 8px; } }
        body.news main #contents .inner article a .right time {
          color: #444444;
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.1em;
          line-height: 1em; }
          @media only screen and (max-width: 767px) {
            body.news main #contents .inner article a .right time {
              font-size: 10px;
              font-size: 1rem; } }
        body.news main #contents .inner article a .right h2 {
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0em;
          line-height: 1.444em;
          font-weight: 900;
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 3;
          margin-top: 6px; }
          @media only screen and (max-width: 767px) {
            body.news main #contents .inner article a .right h2 {
              font-size: 13px;
              font-size: 1.3rem;
              line-height: 1.3846em;
              margin-top: 4px; } }
        body.news main #contents .inner article a .right .text {
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0em;
          line-height: 1.5em;
          margin-top: 6px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;
          color: #444444; }
          @media only screen and (max-width: 767px) {
            body.news main #contents .inner article a .right .text {
              margin-top: 4px; } }

body.news main #pagination {
  padding-top: 30px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    body.news main #pagination {
      padding-bottom: 30px; } }

body.news main .nodata {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 20px; }
  body.news main .nodata > span {
    font-weight: bold; }
