@charset "UTF-8";
/* カラー設定 */
/*
L light M medium D dark
*/
/* 透ける背景用設定 */
/* 透ける背景用設定 文字読みにくい場合  */
/* 基本テキスト色 */
/* font関係 */
/* 角丸 */
/* margin-bottom 
$margim-bottom-L:30px;
$margim-bottom-M:20px;
$margim-bottom-S:15px;
*/
/* デザインサイズ */
/*コンテンツサイズ*/
/* ブレイクポイント */
/* 両サイドのマージン */
/* Z-index */
/* CSS Transition Easing */
/* カラー設定 */
/*
L light M medium D dark
*/
/* 透ける背景用設定 */
/* 透ける背景用設定 文字読みにくい場合  */
/* 基本テキスト色 */
/* font関係 */
/* 角丸 */
/* margin-bottom 
$margim-bottom-L:30px;
$margim-bottom-M:20px;
$margim-bottom-S:15px;
*/
/* デザインサイズ */
/*コンテンツサイズ*/
/* ブレイクポイント */
/* 両サイドのマージン */
/* Z-index */
/* CSS Transition Easing */
/*------------------------------------------------
	font-set([size,line-height,letter-spacing])
  ------------------------------------------------	
	htmlのfont-size: 62.5%にしているのなら、
	ベースをサイズにかけなくてもよい。
	参考)
	http://www.webcreatorbox.com/tech/sass-mixin/
	http://html5-css3.jp/tips/css3-rem.html
------------------------------------------------*/
/*------------------------------------------------------------
//animation-setting
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&display=swap");
@-o-keyframes blinkText {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-moz-keyframes blinkText {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-ms-keyframes blinkText {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes blinkText {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes horizontal01 {
  0% {
    transform: translateX(-5px); }
  100% {
    transform: translateX(0px); } }
@keyframes vertical01 {
  0% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(0px); } }
@keyframes cross1 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg); }
  20% {
    transform: translateY(-20px) translateX(15px) rotate(-1deg); }
  40% {
    transform: translateY(20px) translateX(-5px) rotate(0deg); }
  60% {
    transform: translateY(-10px) translateX(10px) rotate(-1.6deg); }
  80% {
    transform: translateY(-2px) translateX(-15px) rotate(1.6deg); }
  100% {
    transform: translateY(-20px) translateX(0px) rotate(-1.2deg); } }
@keyframes cross2 {
  00% {
    transform: translateY(0px) translateX(0px) rotate(0deg); }
  20% {
    transform: translateY(-10px) translateX(0px) rotate(1.9deg); }
  40% {
    transform: translateY(10px) translateX(-20px) rotate(-1.5deg); }
  60% {
    transform: translateY(-10px) translateX(0px) rotate(1.9deg); }
  80% {
    transform: translateY(10px) translateX(-10px) rotate(-2deg); }
  100% {
    transform: translateY(-20px) translateX(0px) rotate(1.5deg); } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes jump01 {
  0% {
    transform: translateY(400px);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(0px); } }
@keyframes rotate01 {
  0% {
    transform: rotate(360deg) scale(0.1, 0.1);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: rotate(-3deg) scale(1.05, 1.05); }
  100% {
    transform: rotate(0deg) scale(1, 1); } }
@keyframes rotate02 {
  0% {
    transform: rotate(-45deg) scale(0.1, 0.1);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: rotate(3deg) scale(1.05, 1.05); }
  100% {
    transform: rotate(0deg) scale(1, 1); } }
@keyframes rotate03 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes rotateMinus {
  0% {
    transform: rotate(360deg) scale(0.1, 0.1);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: rotate(-10deg) scale(1.05, 1.05); }
  100% {
    transform: rotate(-5deg) scale(1, 1); } }
@keyframes rotatePlus {
  0% {
    transform: rotate(-360deg) scale(0.1, 0.1);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: rotate(10deg) scale(1.05, 1.05); }
  100% {
    transform: rotate(5deg) scale(1, 1); } }
@keyframes slideLeft {
  0% {
    transform: translateX(800px);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: translateX(-20px); }
  100% {
    transform: translateX(0px); } }
@keyframes slideRight {
  0% {
    transform: translateX(-800px);
    opacity: 0; }
  20% {
    opacity: 1; }
  80% {
    transform: translateX(20px); }
  100% {
    transform: translateX(0px); } }
@keyframes blink01 {
  0% {
    opacity: 1; }
  74% {
    opacity: 1; }
  75% {
    opacity: 0; }
  80% {
    opacity: 1; }
  85% {
    opacity: 0; }
  90% {
    opacity: 1; }
  95% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes blinkText {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes shake01 {
  0% {
    top: 1px;
    left: 0px; }
  10% {
    top: 4px;
    left: -5px; }
  20% {
    top: 3px;
    left: 4px; }
  30% {
    top: -5px;
    left: 1px; }
  40% {
    top: 4px;
    left: 4px; }
  50% {
    top: 1px;
    left: -3px; }
  60% {
    top: -5px;
    left: 4px; }
  70% {
    top: 3px;
    left: 1px; }
  80% {
    top: 4px;
    left: 1px; }
  90% {
    top: 1px;
    left: -4px; }
  100% {
    top: -3px;
    left: -4px; } }
@keyframes puyopuyo1 {
  0% {
    transform: scale(1, 1); }
  8% {
    transform: scale(1, 1); }
  10% {
    transform: scale(1.1, 0.9); }
  13% {
    transform: scale(0.9, 1.1); }
  17.5% {
    transform: scale(1, 1); }
  19% {
    transform: scale(1, 1); }
  58% {
    transform: scale(1, 1); }
  60% {
    transform: scale(1.1, 0.9); }
  63% {
    transform: scale(0.9, 1.1); }
  67.5% {
    transform: scale(1, 1); }
  69% {
    transform: scale(1, 1); }
  100% {
    transform: scale(1, 1); } }
@keyframes puyopuyo2 {
  0%,40% {
    transform: skew(0deg, 0deg); }
  5% {
    transform: skew(2.5deg, 2.5deg); }
  10% {
    transform: skew(-2deg, -2deg); }
  15% {
    transform: skew(1.5deg, 1.5deg); }
  20% {
    transform: skew(-1deg, -1deg); }
  25% {
    transform: skew(0.5deg, 0.5deg); }
  30% {
    transform: skew(-0.6deg, -0.6deg); }
  35% {
    transform: skew(0.3deg, 0.3deg); } }
@keyframes korokoro {
  0%,40% {
    transform: rotate(0deg); }
  5% {
    transform: rotate(2.5deg); }
  10% {
    transform: rotate(-2deg); }
  15% {
    transform: rotate(1.5deg); }
  20% {
    transform: rotate(-1deg); }
  25% {
    transform: rotate(0.5deg); }
  30% {
    transform: rotate(-0.6deg); }
  35% {
    transform: rotate(0.3deg); } }
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }
:root {
  --swiper-theme-color:#007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform,height; }

.swiper-container-3d {
  perspective: 1200px; }

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

:root {
  --swiper-navigation-size:44px; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next'; }

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff; }

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000; }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: .2s transform,.2s top; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: .2s transform,.2s right; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff; }

.swiper-pagination-black {
  --swiper-pagination-color:#000000; }

.swiper-pagination-lock {
  display: none; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000; }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important; }

#swipebox-overlay img {
  border: none !important; }

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  user-select: none; }

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%; }

#swipebox-slider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer; }
  #swipebox-slider .slide {
    height: 100%;
    width: 100%;
    line-height: 1px;
    text-align: center;
    display: inline-block; }
    #swipebox-slider .slide:before {
      content: "";
      display: inline-block;
      height: 50%;
      width: 1px;
      margin-right: -1px; }
    #swipebox-slider .slide img,
    #swipebox-slider .slide .swipebox-video-container,
    #swipebox-slider .slide .swipebox-inline-container {
      display: inline-block;
      max-height: 100%;
      max-width: 100%;
      margin: 0;
      padding: 0;
      width: auto;
      height: auto;
      vertical-align: middle; }
    #swipebox-slider .slide .swipebox-video-container {
      background: none;
      max-width: 1140px;
      max-height: 100%;
      width: 100%;
      padding: 5%;
      box-sizing: border-box; }
      #swipebox-slider .slide .swipebox-video-container .swipebox-video {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        overflow: hidden;
        position: relative; }
        #swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
          width: 100% !important;
          height: 100% !important;
          position: absolute;
          top: 0;
          left: 0; }
  #swipebox-slider .slide-loading {
    background: url(img/loader.gif) no-repeat center center; }

#swipebox-bottom-bar,
#swipebox-top-bar {
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%; }

#swipebox-bottom-bar {
  bottom: -50px; }
  #swipebox-bottom-bar.visible-bars {
    transform: translate3d(0, -50px, 0); }

#swipebox-top-bar {
  top: -50px; }
  #swipebox-top-bar.visible-bars {
    transform: translate3d(0, 50px, 0); }

#swipebox-title {
  display: block;
  padding: 0.5rem 0;
  width: 100%;
  text-align: center;
  line-height: 1rem;
  color: white !important; }

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(img/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0; }

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px; }

#swipebox-prev {
  background-position: -32px 13px;
  float: left; }

#swipebox-next {
  background-position: -78px 13px;
  float: right; }

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px; }

.swipebox-no-close-button #swipebox-close {
  display: none; }

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3; }

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  animation: rightSpring 0.3s; }
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  animation: leftSpring 0.3s; }

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  backface-visibility: hidden;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0; }
.swipebox-touch #swipebox-container:before {
  left: 0;
  box-shadow: inset 10px 0px 10px -8px #656565; }
.swipebox-touch #swipebox-container:after {
  right: 0;
  box-shadow: inset -10px 0px 10px -8px #656565; }
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1; }
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1; }

@keyframes rightSpring {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }
@keyframes leftSpring {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px; }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px; } }
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #999; }

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #999;
  opacity: 0.95; }

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif; }

*, *::after, *::before {
  box-sizing: border-box; }

* {
  line-height: 0;
  letter-spacing: -1;
  color: #546e7a;
  font-family: 'M PLUS Rounded 1c','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  background: none;
  word-wrap: break-word;
  overflow-wrap: break-word; }

span,
ol, ul, li, dl, dt, dd,
h1, h2, h3, h4, h5, h6,
article, section,
p, a, img,
table, td, th,
blockquote,
input, textarea, select, option, time {
  line-height: 1.6rem;
  font-size: 1rem; }

html, body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0; }

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  background-image: url("tag/body.png");
  background-attachment: fixed;
  background-size: cover;
  background-color: #e6e6e6;
  font-size: 62.5%; }

div {
  line-height: 0; }

main {
  display: block; }

a {
  /*条件分岐*/
  color: #43a047;
  transition: color 0.2s ease; }
  a:hover {
    color: #1e88e5; }

ul, ol {
  list-style-position: inside; }

li, dt, dd {
  line-height: 1.6rem; }

dt, dd {
  padding: 0.5rem 0; }

ins, em, strong {
  font-style: normal; }

em {
  /*条件分岐*/
  color: #43a047; }

strong {
  /*条件分岐*/
  color: #e53935; }

del {
  text-decoration: line-through #f00; }

h1, h2, h3, h4, h5, h6, caption {
  text-align: left;
  font-weight: normal;
  font-family: 'RocknRoll One','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif; }

hr {
  width: 100%;
  border-top: 2px solid #819ca9;
  margin-bottom: 1rem; }

/*---------------------form-------------------------*/
/*
pre{
	border:1px dotted $color-gray;
	background:white;
	@include font-set($font-size-small);	
	padding:2rem;
	margin-bottom:1em;
}

p,address,dl{
	padding:0;
	//word-break:break-all;
	@include font-set($font-size-medium);

	margin-bottom:$margim-bottom-L;
	@include MQ(M) {
		margin-bottom:$margim-bottom-M;
	}			
	@include MQ(S) {
		margin-bottom:$margim-bottom-S;
		@include font-set($font-size-small);
	}
}



em{
	font-style: normal;
	color:$color-pink;
}
strong{
	font-weight:bold;
}


/*---------------------form-------------------------*/
/*
input, button, textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea,
input[type="text"],
input[type="tel"],
select,
button,
input[type="submit"]{
	background:#fff;
	transition: all .2s;
	@include font-set($font-size-medium);
	@include MQ(S) {
		@include font-set($font-size-small);
	}
}
/*---------------------textarea-------------------------*/
/*
textarea{
	width:100%;
	height:6em;
	border-radius: 9px 9px 9px 9px;
}
/*---------------------text-------------------------*/
/*
input[type="text"],
input[type="tel"]{
	property: value;
	border-radius: 9px 9px 9px 9px;
}

select:focus{
	outline:none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus{
	outline:none;
	background:$color_blue;
	color:#fff;
}

/*---------------------radio-------------------------*/
/*
input[type="radio"] {
	display: none;
}
label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
input[type="radio"] + label::before,
input[type="radio"] + label::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
input[type="radio"] + label::before {
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
input[type="radio"] + label:hover::before {
	background: #fff;
}
input[type="radio"] + label::after {
	opacity: 0;
	left: 5px;
	top: 5px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	background: $color_blue;
	transform: scale(2);
}
input[type="radio"]:checked + label::before {
	background: #fff;
	border: 1px solid $color_blue;
}
input[type="radio"]:checked + label::after {
	opacity: 1;
	transform: scale(1);
}

/*---------------------checkbox-------------------------*/
/*
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
}
input[type="checkbox"] + label::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	background: #fff;
	border: 1px solid #ccc;
}
input[type="checkbox"]:checked + label::after {
	position: absolute;
	content: '';
	top: 1px;
	left: 3px;
	width: 13px;
	height: 5px;
	border-left: 2px solid $color_blue;
	border-bottom: 2px solid $color_blue;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*---------------------select-------------------------*/
/*
select{
	padding:0 0 0 0.5rem;
	margin-bottom:1rem;
	border-radius: 9px 9px 9px 9px;
	background:#fff;
	@include font-set($font-size-medium);
	@include MQ(S) {
		@include font-set($font-size-small);
	}

}
/*---------------------button / submit-------------------------*/
/*
button,
input[type="submit"]{
	border-radius: 100px;
	padding:0.75em 3em;
	outline:none;
	border: 3px solid $color_blue;
	cursor:pointer;
	@include MQ(S) {
		padding:0.5em 1.5em;
	}
}

button:hover,
input[type="submit"]:hover,
button:focus,
input[type="submit"]:focus{
	outline:none;
	color:#fff;
	background:$color_pink;
	border: 3px solid $color_pink;
}


/* ------------------------------------ */
/* ツイート表示のセンタリング
/* ------------------------------------ 
twitterwidget,
iframe[id^="twitter-widget-"] {
	margin-left: auto !important;
	margin-right: auto !important;
	width:100% !important;
}
*/
.headlineCommon {
  text-align: center;
  font-size: 2.6388888889vw;
  margin-top: 1.0416666667vw;
  margin-bottom: 3.4722222222vw;
  /*条件分岐*/
  color: #43a047;
  line-height: 1.5;
  position: relative; }
  @media only screen and (max-width: 750px) {
    .headlineCommon {
      font-size: 6.4vw;
      margin-top: 4vw;
      margin-bottom: 5.3333333333vw; } }
  .headlineCommon small {
    position: relative;
    top: 0;
    display: block;
    line-height: 1;
    font-size: 1.3888888889vw; }
    @media only screen and (max-width: 750px) {
      .headlineCommon small {
        font-size: 3.7333333333vw; } }
    .headlineCommon small:before, .headlineCommon small:after {
      content: " ";
      border-top: 2px solid #546e7a;
      display: block;
      width: 42%;
      position: absolute;
      top: 0.7638888889vw; }
      @media only screen and (max-width: 750px) {
        .headlineCommon small:before, .headlineCommon small:after {
          width: 32%; } }
      @media only screen and (max-width: 750px) {
        .headlineCommon small:before, .headlineCommon small:after {
          top: 2.1333333333vw; } }
    .headlineCommon small:before {
      left: 0.9722222222vw; }
      @media only screen and (max-width: 750px) {
        .headlineCommon small:before {
          left: 3.7333333333vw; } }
    .headlineCommon small:after {
      right: 0.9722222222vw; }
      @media only screen and (max-width: 750px) {
        .headlineCommon small:after {
          right: 3.7333333333vw; } }

.textCenter, .imgCenter {
  display: block;
  text-align: center; }

.textCaution {
  font-size: small;
  margin-bottom: 2em; }

.textColorRed {
  color: #f00; }

.textBold {
  font-weight: bold; }

.listDisc,
.listCircle,
.listSquare,
.listLowerRoman,
.listUpperRoman,
.listDecimal,
.listDecimalLeadingZero {
  display: block;
  padding-left: 1.5em; }
  .listDisc li,
  .listCircle li,
  .listSquare li,
  .listLowerRoman li,
  .listUpperRoman li,
  .listDecimal li,
  .listDecimalLeadingZero li {
    list-style-position: outside; }

.listDisc li {
  list-style-type: disc; }

.listCircle li {
  list-style-type: circle; }

.listSquare li {
  list-style-type: square; }

.listLowerRoman li {
  list-style-type: lower-roman; }

.listUpperRoman li {
  list-style-type: upper-roman; }

.listDecimal li {
  list-style-type: decimal; }

.listDecimalLeadingZero li {
  list-style-type: decimal-leading-zero; }

.listNone {
  padding-left: 1em;
  text-indent: -1em; }

.buttonCommon {
  /*条件分岐*/
  background: #43a047;
  border-radius: 10px;
  width: 24.0972222222vw;
  padding: 0.1388888889vw;
  margin: 1.7361111111vw auto;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }
  @media only screen and (max-width: 750px) {
    .buttonCommon {
      width: 92.5333333333vw;
      padding: 0.5333333333vw;
      margin: 6.6666666667vw auto; } }
  .buttonCommon:hover {
    transform: scale(1.05); }
  .buttonCommon a {
    display: block;
    border-radius: 10px;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    line-hight: 0;
    background-image: url(class/next_circle.png);
    background-repeat: no-repeat;
    background-size: 1.6666666667vw;
    background-position: left 0.6944444444vw center;
    border: solid #FFF 0.1388888889vw;
    padding: 0.6944444444vw;
    font-size: 1.3888888889vw;
    transition: background-color 0.5s;
    transition: background-position 0.35s; }
    @media only screen and (max-width: 750px) {
      .buttonCommon a {
        background-size: 5.3333333333vw;
        background-position: left 2.6666666667vw center;
        border: solid #FFF 0.5333333333vw;
        padding: 2.6666666667vw;
        font-size: 3.7333333333vw; } }
    .buttonCommon a:hover {
      background-color: rgba(255, 255, 255, 0.25);
      background-position: right 5px center; }

.youtubeWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .youtubeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.swiper-button-prev, .swiper-button-next,
.paginationNum .linkPrev, .paginationNum .linkNext {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border: 3px solid #fff;
  border-radius: 1000px;
  /*条件分岐*/
  background: #43a047;
  background-repeat: no-repeat !important;
  background-size: 50% !important;
  background-position: center center !important;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
  text-decoration: none;
  text-indent: -9999px;
  overflow: hidden;
  line-height: 0em;
  display: inline-block; }
  @media only screen and (max-width: 750px) {
    .swiper-button-prev, .swiper-button-next,
    .paginationNum .linkPrev, .paginationNum .linkNext {
      width: 5.3333333333vw;
      height: 5.3333333333vw; } }
  .swiper-button-prev:hover, .swiper-button-next:hover,
  .paginationNum .linkPrev:hover, .paginationNum .linkNext:hover {
    transform: scale(1.5); }
  .swiper-button-prev:after, .swiper-button-next:after,
  .paginationNum .linkPrev:after, .paginationNum .linkNext:after {
    display: none; }

.swiper-button-prev, .paginationNum .linkPrev {
  background-image: url(class/prev.png) !important; }

.swiper-button-next, .paginationNum .linkNext {
  background-image: url(class/next.png) !important; }

.listSeries {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 79.1666666667vw; }
  @media only screen and (max-width: 750px) {
    .listSeries {
      width: 92.5333333333vw; } }
  .listSeries li {
    display: block;
    width: 18.75vw;
    height: 18.75vw;
    margin: 0 0 0.9027777778vw;
    z-index: 0; }
    .listSeries li:hover {
      z-index: 100; }
    @media only screen and (max-width: 750px) {
      .listSeries li {
        width: 44.5333333333vw;
        height: 44.5333333333vw;
        margin: 0 0 3.4666666667vw; } }
    .listSeries li a, .listSeries li a img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 10px; }
    .listSeries li a {
      transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
      .listSeries li a:hover {
        transform: scale(1.15); }

.listTopics {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 79.1666666667vw; }
  @media only screen and (max-width: 750px) {
    .listTopics {
      width: 92.5333333333vw; } }
  .listTopics li {
    display: block;
    position: relative;
    width: 25vw;
    height: 29.8611111111vw;
    margin: 0 0 2.0833333333vw;
    z-index: 0; }
    @media only screen and (max-width: 750px) {
      .listTopics li {
        width: 44.5333333333vw;
        height: 53.0666666667vw; } }
    .listTopics li:hover {
      z-index: 100; }
    .listTopics li a {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      border-radius: 10px;
      background: #fefefe;
      border: 0.1388888889vw solid #cfd8dc;
      transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
      @media only screen and (max-width: 750px) {
        .listTopics li a {
          border: 0.5333333333vw solid #cfd8dc; } }
      .listTopics li a:hover {
        transform: scale(1.1); }
      .listTopics li a img {
        border-radius: 10px;
        margin: 0.6944444444vw 0.6944444444vw 0;
        width: 23.4722222222vw; }
        @media only screen and (max-width: 750px) {
          .listTopics li a img {
            margin: 1.3333333333vw 1.3333333333vw 0;
            width: 41.3333333333vw; } }
      .listTopics li a h2 {
        display: block;
        margin: 0 0.6944444444vw 0;
        font-size: 1.3888888889vw;
        line-height: 1.8055555556vw; }
        @media only screen and (max-width: 750px) {
          .listTopics li a h2 {
            margin: 0 1.3333333333vw 0;
            font-size: 2.4vw;
            line-height: 3.12vw; } }
      .listTopics li a p {
        position: absolute;
        display: block;
        /*条件分岐*/
        color: #43a047;
        font-size: 0.9722222222vw;
        line-height: 1.3888888889vw;
        bottom: 2.4305555556vw;
        left: 0.6944444444vw; }
        @media only screen and (max-width: 750px) {
          .listTopics li a p {
            font-size: 1.6vw;
            line-height: 2.1333333333vw;
            bottom: 5.6vw;
            left: 1.3333333333vw; } }
      .listTopics li a time {
        position: absolute;
        bottom: 0;
        display: block;
        width: 100%;
        color: #fff;
        text-align: right;
        padding-right: 0.5rem;
        /*条件分岐*/
        background: #43a047;
        font-size: 0.9722222222vw;
        line-height: 2.0833333333vw;
        height: 2.0833333333vw; }
        @media only screen and (max-width: 750px) {
          .listTopics li a time {
            font-size: 2.9333333333vw;
            line-height: 4.5333333333vw;
            height: 4.5333333333vw; } }

.listGoods {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 79.1666666667vw; }
  @media only screen and (max-width: 750px) {
    .listGoods {
      width: 92.5333333333vw; } }
  .listGoods li {
    display: block;
    width: 18.75vw;
    height: 15.9722222222vw;
    margin-bottom: 0.6944444444vw;
    z-index: 0; }
    @media only screen and (max-width: 750px) {
      .listGoods li {
        width: 44.5333333333vw;
        height: 37.8666666667vw;
        margin-bottom: 2.6666666667vw; } }
    .listGoods li:hover {
      z-index: 100; }
    .listGoods li a, .listGoods li a img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 10px; }
    .listGoods li a {
      text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
      .listGoods li a:hover {
        transform: scale(1.1); }
      .listGoods li a h2 {
        font-size: 1.1805555556vw;
        line-height: 1.3888888889vw; }
        @media only screen and (max-width: 750px) {
          .listGoods li a h2 {
            font-size: 2.9333333333vw;
            line-height: 3.2vw; } }
      .listGoods li a img {
        border: 0.1388888889vw solid #cfd8dc; }
        @media only screen and (max-width: 750px) {
          .listGoods li a img {
            border: 0.5333333333vw solid #cfd8dc; } }

.listSeries li:nth-child(1), .listTopics li:nth-child(1), .listGoods li:nth-child(1),
.listLink li:nth-child(1) {
  animation: cross2 185.2s ease-in-out infinite alternate; }
.listSeries li:nth-child(2), .listTopics li:nth-child(2), .listGoods li:nth-child(2),
.listLink li:nth-child(2) {
  animation: cross1 189.5s ease-in-out infinite alternate; }
.listSeries li:nth-child(3), .listTopics li:nth-child(3), .listGoods li:nth-child(3),
.listLink li:nth-child(3) {
  animation: cross2 189.3s ease-in-out infinite alternate; }
.listSeries li:nth-child(4), .listTopics li:nth-child(4), .listGoods li:nth-child(4),
.listLink li:nth-child(4) {
  animation: cross1 183.4s ease-in-out infinite alternate; }
.listSeries li:nth-child(5), .listTopics li:nth-child(5), .listGoods li:nth-child(5),
.listLink li:nth-child(5) {
  animation: cross2 187.6s ease-in-out infinite alternate; }
.listSeries li:nth-child(6), .listTopics li:nth-child(6), .listGoods li:nth-child(6),
.listLink li:nth-child(6) {
  animation: cross1 189.3s ease-in-out infinite alternate; }
.listSeries li:nth-child(7), .listTopics li:nth-child(7), .listGoods li:nth-child(7),
.listLink li:nth-child(7) {
  animation: cross2 188.3s ease-in-out infinite alternate; }
.listSeries li:nth-child(8), .listTopics li:nth-child(8), .listGoods li:nth-child(8),
.listLink li:nth-child(8) {
  animation: cross1 182.4s ease-in-out infinite alternate; }
.listSeries li:nth-child(9), .listTopics li:nth-child(9), .listGoods li:nth-child(9),
.listLink li:nth-child(9) {
  animation: cross2 185.7s ease-in-out infinite alternate; }
.listSeries li:nth-child(10), .listTopics li:nth-child(10), .listGoods li:nth-child(10),
.listLink li:nth-child(10) {
  animation: cross1 188s ease-in-out infinite alternate; }
.listSeries li:nth-child(11), .listTopics li:nth-child(11), .listGoods li:nth-child(11),
.listLink li:nth-child(11) {
  animation: cross2 189.9s ease-in-out infinite alternate; }
.listSeries li:nth-child(12), .listTopics li:nth-child(12), .listGoods li:nth-child(12),
.listLink li:nth-child(12) {
  animation: cross1 186.7s ease-in-out infinite alternate; }
.listSeries li:nth-child(13), .listTopics li:nth-child(13), .listGoods li:nth-child(13),
.listLink li:nth-child(13) {
  animation: cross2 183.8s ease-in-out infinite alternate; }
.listSeries li:nth-child(14), .listTopics li:nth-child(14), .listGoods li:nth-child(14),
.listLink li:nth-child(14) {
  animation: cross1 185.4s ease-in-out infinite alternate; }
.listSeries li:nth-child(15), .listTopics li:nth-child(15), .listGoods li:nth-child(15),
.listLink li:nth-child(15) {
  animation: cross2 188.4s ease-in-out infinite alternate; }
.listSeries li:nth-child(16), .listTopics li:nth-child(16), .listGoods li:nth-child(16),
.listLink li:nth-child(16) {
  animation: cross1 186s ease-in-out infinite alternate; }
.listSeries li:nth-child(17), .listTopics li:nth-child(17), .listGoods li:nth-child(17),
.listLink li:nth-child(17) {
  animation: cross2 188.7s ease-in-out infinite alternate; }
.listSeries li:nth-child(18), .listTopics li:nth-child(18), .listGoods li:nth-child(18),
.listLink li:nth-child(18) {
  animation: cross1 181.3s ease-in-out infinite alternate; }
.listSeries li:nth-child(19), .listTopics li:nth-child(19), .listGoods li:nth-child(19),
.listLink li:nth-child(19) {
  animation: cross2 181.9s ease-in-out infinite alternate; }
.listSeries li:nth-child(20), .listTopics li:nth-child(20), .listGoods li:nth-child(20),
.listLink li:nth-child(20) {
  animation: cross1 189.1s ease-in-out infinite alternate; }

.floatLeft, .floatRight {
  clear: both;
  width: auto; }
  @media only screen and (max-width: 750px) {
    .floatLeft, .floatRight {
      margin: 0 0 2.6666666667vw;
      float: none !important; } }
  .floatLeft img, .floatRight img {
    width: 100%;
    height: auto; }

.floatLeft {
  float: left;
  height: auto;
  margin: 0 2% 2.6666666667vw 0; }

.floatRight {
  float: right;
  height: auto;
  margin: 0 0 2.6666666667vw 2%; }

.clearBoth {
  clear: both; }

.column2nd,
.column3rd,
.column4th,
.column5th,
.float2ndColumn,
.float3rdColumn,
.float4thColumn,
.float5thColumn {
  display: flex;
  justify-content: space-around;
  align-content: stretch;
  flex-wrap: wrap; }
  .column2nd > *,
  .column3rd > *,
  .column4th > *,
  .column5th > *,
  .float2ndColumn > *,
  .float3rdColumn > *,
  .float4thColumn > *,
  .float5thColumn > * {
    margin-bottom: 1.3888888889vw; }
    @media only screen and (max-width: 750px) {
      .column2nd > *,
      .column3rd > *,
      .column4th > *,
      .column5th > *,
      .float2ndColumn > *,
      .float3rdColumn > *,
      .float4thColumn > *,
      .float5thColumn > * {
        margin-bottom: 4vw; } }
    .column2nd > * img,
    .column3rd > * img,
    .column4th > * img,
    .column5th > * img,
    .float2ndColumn > * img,
    .float3rdColumn > * img,
    .float4thColumn > * img,
    .float5thColumn > * img {
      width: 100%;
      height: auto; }

.column2nd > *,
.float2ndColumn > * {
  display: block;
  width: 48.5%; }
  @media only screen and (max-width: 750px) {
    .column2nd > *,
    .float2ndColumn > * {
      width: 100%; } }

.column3rd > *,
.float3rdColumn > * {
  display: block;
  width: 32%; }
  @media only screen and (max-width: 750px) {
    .column3rd > *,
    .float3rdColumn > * {
      width: 100%; } }

.column4th > *,
.float4thColumn > * {
  display: block;
  width: 23.5%; }
  @media only screen and (max-width: 750px) {
    .column4th > *,
    .float4thColumn > * {
      width: 48.5%; } }

.column5th > *,
.float5thColumn > * {
  display: block;
  width: 18.5%; }
  @media only screen and (max-width: 750px) {
    .column5th > *,
    .float5thColumn > * {
      width: 32%; } }

.columnFanart div a {
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0;
  /*条件分岐*/
  border: 10px solid #43a047;
  transition: all 0.3s ease; }
  .columnFanart div a:hover {
    border: 10px solid #1e88e5;
    transform: scale(1.03); }
.columnFanart div h2 {
  border-bottom: #546e7a 3px double;
  padding: 5px !important;
  margin-bottom: 5px !important;
  border-radius: 0  !important;
  font-size: 1.2rem;
  line-height: 1.2rem; }
.columnFanart div em {
  display: block;
  border-bottom: #546e7a 1px solid;
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 0.2rem; }
.columnFanart div p {
  font-size: 80%;
  line-height: 1rem; }

.textCenter, .imgCenter {
  display: block;
  text-align: center; }

.textCaution {
  font-size: small;
  margin-bottom: 2em; }

.textLarge, .textLarge * {
  font-size: xxx-large; }

.textMedium, .textMedium * {
  font-size: x-large; }

.textSmall, .textSmall * {
  font-size: small; }

.textColorRed {
  color: #f00; }

.textBold {
  font-weight: bold; }

.textBlink {
  animation: blinkText 1s ease infinite alternate; }

/*list*/
.listDisc,
.listCircle,
.listSquare,
.listLowerRoman,
.listUpperRoman,
.listDecimal,
.listDecimalLeadingZero {
  display: block;
  padding-left: 1.5em; }

.listDisc li {
  list-style-type: disc; }

.listCircle li {
  list-style-type: circle; }

.listSquare li {
  list-style-type: square; }

.listLowerRoman li {
  list-style-type: lower-roman; }

.listUpperRoman li {
  list-style-type: upper-roman; }

.listDecimal li {
  list-style-type: decimal; }

.listDecimalLeadingZero li {
  list-style-type: decimal-leading-zero;
  padding-left: 0em;
  margin-left: 0.5em; }

.listNone {
  padding-left: 1em;
  text-indent: -1em; }

.newParent {
  position: relative; }
  .newParent .newChild {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.1em 0.5em;
    color: #FFF;
    font-size: small;
    opacity: 1;
    animation: blinkText 2s ease infinite alternate;
    height: 20px; }

/* ------------------------------------ */
/* Youtube埋め込み用
/* http://design-spice.com/2014/03/24/percentag/
/* http://design-spice.com/sample/rwd-iframe/
/* iframeを囲った要素、つまりiframeから見た親要素のpadding-top（またはpadding-bottom）にiframeの幅に対する高さの比率を指定します。つまり、
/* 高さ÷幅×100%=360÷640×100%=56.25%
/* ------------------------------------ */
.youtubeWrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .youtubeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.table_wrap {
  overflow-x: auto;
  overflow-scrolling: touch; }
  .table_wrap table {
    width: auto !important;
    margin-bottom: 0;
    min-width: 570px; }
    .table_wrap table th, .table_wrap table td {
      white-space: nowrap; }
    @media only screen and (max-width: 750px) {
      .table_wrap table {
        min-width: 270px !important; } }

/* ------------------------------------ */
/* eスポ用
/* ------------------------------------ */
.winnerDisplay li h5 {
  font-size: x-large; }
.winnerDisplay li p {
  font-size: x-large;
  font-weight: bolder;
  text-align: right;
  text-shadow: 3px 3px 0px #fff; }

table.winnerDisiplay th, table.winnerDisiplay td {
  font-size: x-large; }
table.winnerDisiplay tr:nth-of-type(1) th, table.winnerDisiplay tr:nth-of-type(1) td, table.winnerDisiplay tr:nth-of-type(2) th, table.winnerDisiplay tr:nth-of-type(2) td {
  font-size: xx-large; }
@media only screen and (max-width: 750px) {
  table.winnerDisiplay th, table.winnerDisiplay td {
    font-size: large; }
  table.winnerDisiplay tr:nth-of-type(1) th, table.winnerDisiplay tr:nth-of-type(1) td, table.winnerDisiplay tr:nth-of-type(2) th, table.winnerDisiplay tr:nth-of-type(2) td {
    font-size: x-large; } }

.puyoGreen, .puyoBlue, .puyoYellow, .puyoRed, .puyoPurple {
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  background-position: center center !important; }

.puyoRed {
  background-image: url("class/puyoRed.png"); }

.puyoGreen {
  background-image: url("class/puyoGreen.png"); }

.puyoBlue {
  background-image: url("class/puyoBlue.png"); }

.puyoYellow {
  background-image: url("class/puyoYellow.png"); }

.puyoPurple {
  background-image: url("class/puyoPurple.png"); }

.puyo1, .puyo2, .puyo3, .puyo4 {
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  transform-origin: bottom center; }

.puyo1 {
  animation-duration: 3.23s;
  animation-name: puyopuyo1; }

.puyo2 {
  animation-duration: 2.88s;
  animation-name: puyopuyo2; }

.puyo3 {
  animation-duration: 6s;
  animation-name: korokoro; }

.puyo4 {
  animation-duration: 4.88s;
  animation-name: puyopuyo1; }

.googleSearch {
  /*入力ボックス*/
  /* ボタン */ }
  .googleSearch > div, .googleSearch > div > div, .googleSearch > div > div > div {
    background: none !important;
    border: none;
    padding: 0 !important; }
  .googleSearch table {
    margin: 0 !important; }
  .googleSearch .gsc-search-button {
    background: none !important; }
  .googleSearch td.gsc-search-button {
    border: none !important; }
  .googleSearch .gsc-search-button-v2 {
    position: relative;
    top: 0px;
    margin: 0 !important;
    width: 100% !important;
    height: 150% !important;
    outline: none !important;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 9px 27px !important; }
  .googleSearch .gsc-search-button-v2:hover {
    top: 0px;
    background: rgba(255, 255, 255, 0.5) !important; }
  .googleSearch .gsc-search-button-v2:active {
    top: 4px;
    background: rgba(255, 255, 255, 0.5) !important;
    border: solid 2px #000 !important; }
  .googleSearch .gsc-search-button-v2:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border: solid 2px #cfd8dc !important; }
  .googleSearch .gsc-results-wrapper-overlay div {
    line-height: 1.6rem; }

header {
  width: 100%;
  background: #fff;
  border-bottom: #999 solid 1px;
  z-index: 4;
  margin: 0 auto 0;
  padding: 0;
  position: relative;
  height: 7.6388888889vw;
  /* SEGALOGO */
  /* SNS */
  /* Portal Logo */
  /* PUYOPUYO */ }
  @media only screen and (max-width: 750px) {
    header {
      height: 29.3333333333vw; } }
  header > a:first-of-type {
    display: block;
    position: relative;
    top: 0vw;
    left: 0.9722222222vw;
    width: 5.4861111111vw;
    height: 2.7777777778vw; }
    @media only screen and (max-width: 750px) {
      header > a:first-of-type {
        top: 0vw;
        left: 3.7333333333vw;
        width: 21.0666666667vw;
        height: 10.6666666667vw; } }
    header > a:first-of-type > img {
      width: 100%;
      height: 100%; }
  header > ul:first-of-type {
    position: absolute;
    top: 0.4166666667vw;
    right: 0.9722222222vw; }
    @media only screen and (max-width: 750px) {
      header > ul:first-of-type {
        top: 1.6vw;
        right: 3.7333333333vw; } }
    header > ul:first-of-type li {
      float: left;
      display: block;
      margin-right: 5px;
      cursor: pointer;
      border-radius: 5px;
      overflow: hidden;
      width: 1.9444444444vw;
      height: 1.9444444444vw; }
      @media only screen and (max-width: 750px) {
        header > ul:first-of-type li {
          width: 7.4666666667vw;
          height: 7.4666666667vw; } }
      header > ul:first-of-type li > img {
        width: 100%;
        height: 100%; }
  header > h1:first-of-type {
    /*条件分岐*/
    background-image: url(common-navigation/common-navigation.png);
    background-repeat: no-repeat;
    background-size: 100% 4.8611111111vw; }
    @media only screen and (max-width: 750px) {
      header > h1:first-of-type {
        background-size: 100% 18.6666666667vw; } }
    header > h1:first-of-type a {
      display: block;
      width: 10.5555555556vw;
      height: 5vw; }
      @media only screen and (max-width: 750px) {
        header > h1:first-of-type a {
          width: 40.5333333333vw;
          height: 19.2vw; } }
  header > div.puyoSet {
    position: absolute;
    top: 5.3472222222vw;
    left: 10.4166666667vw; }
    header > div.puyoSet div {
      position: absolute;
      width: 2.0833333333vw !important;
      height: 2.0833333333vw !important; }
    header > div.puyoSet > div:nth-child(1) {
      left: 0vw; }
    header > div.puyoSet > div:nth-child(2) {
      left: 2.0833333333vw; }
    header > div.puyoSet > div:nth-child(3) {
      left: 4.1666666667vw; }
    header > div.puyoSet > div:nth-child(4) {
      left: 6.25vw; }
    @media only screen and (max-width: 750px) {
      header > div.puyoSet {
        top: 21.3333333333vw;
        left: 40vw; }
        header > div.puyoSet div {
          position: absolute;
          width: 8vw !important;
          height: 8vw !important; }
        header > div.puyoSet > div:nth-child(1) {
          left: 0vw; }
        header > div.puyoSet > div:nth-child(2) {
          left: 8vw; }
        header > div.puyoSet > div:nth-child(3) {
          left: 16vw; }
        header > div.puyoSet > div:nth-child(4) {
          left: 24vw; } }

footer {
  clear: both;
  padding: 0 0 2.7777777778vw;
  position: relative;
  z-index: 4;
  background: #fff;
  /* SNS */
  /* PUYOPUYO */ }
  footer > #footer-search {
    /*条件分岐*/
    background: #43a047;
    padding: 26px 14px !important; }
  footer > ul:first-of-type {
    margin: 1.3888888889vw auto;
    text-align: center; }
    footer > ul:first-of-type li {
      display: inline-block;
      margin: 0 0.3472222222vw;
      cursor: pointer;
      border-radius: 5px;
      overflow: hidden;
      width: 2.7777777778vw;
      height: 2.7777777778vw; }
      @media only screen and (max-width: 750px) {
        footer > ul:first-of-type li {
          width: 10.6666666667vw;
          height: 10.6666666667vw; } }
      footer > ul:first-of-type li > img {
        width: 100%;
        height: 100%; }
  footer > p {
    margin: 0.6944444444vw auto;
    text-align: center; }
  footer > div.puyoSet {
    position: absolute;
    top: -0.6944444444vw;
    left: 1.3888888889vw; }
    footer > div.puyoSet div {
      position: absolute;
      width: 2.0833333333vw !important;
      height: 2.0833333333vw !important; }
    footer > div.puyoSet > div:nth-child(1) {
      left: 0vw; }
    footer > div.puyoSet > div:nth-child(2) {
      left: 2.0833333333vw; }
    footer > div.puyoSet > div:nth-child(3) {
      left: 4.1666666667vw; }
    footer > div.puyoSet > div:nth-child(4) {
      left: 6.25vw; }
    @media only screen and (max-width: 750px) {
      footer > div.puyoSet {
        top: -2.6666666667vw;
        left: 2.6666666667vw; }
        footer > div.puyoSet div {
          position: absolute;
          width: 5.3333333333vw !important;
          height: 5.3333333333vw !important; }
        footer > div.puyoSet > div:nth-child(1) {
          left: 0vw; }
        footer > div.puyoSet > div:nth-child(2) {
          left: 5.3333333333vw; }
        footer > div.puyoSet > div:nth-child(3) {
          left: 10.6666666667vw; }
        footer > div.puyoSet > div:nth-child(4) {
          left: 24vw; } }

@media only screen and (min-width: 751px) {
  nav#common-navigation {
    position: absolute;
    z-index: 6;
    width: 60.4166666667vw;
    height: 4.8611111111vw;
    top: 2.7777777778vw;
    right: 0;
    /* PCサイトに要らない */ }
    nav#common-navigation #nav-trigger, nav#common-navigation #overlay-nav, nav#common-navigation #overlay-content, nav#common-navigation #nav-search {
      display: none; }
    nav#common-navigation #nav-list h1 {
      display: none; }
    nav#common-navigation #nav-list ul {
      position: absolute;
      top: 0;
      right: 0;
      width: 50.3472222222vw;
      height: 4.8611111111vw;
      display: flex;
      justify-content: flex-end; }
      nav#common-navigation #nav-list ul li {
        margin-top: 0.3472222222vw;
        width: 10.0694444444vw;
        height: 4.1666666667vw;
        display: inline-block;
        text-align: center;
        position: relative;
        border-left: 0.0694444444vw solid #fff; }
        nav#common-navigation #nav-list ul li a {
          display: block;
          padding-top: 1.7361111111vw;
          width: 10.0694444444vw;
          height: 4.1666666667vw;
          color: #fff;
          text-decoration: none;
          line-height: 0.5rem;
          font-size: 1.1111111111vw;
          position: relative;
          background: rgba(255, 0, 255, 0);
          font-family: 'RocknRoll One','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
          transition-duration: 0.3s;
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); }
          nav#common-navigation #nav-list ul li a:hover, nav#common-navigation #nav-list ul li a.activeAnchor {
            background: rgba(255, 255, 255, 0.2); }
          nav#common-navigation #nav-list ul li a span {
            position: relative;
            top: 1.0416666667vw;
            font-size: 0.8333333333vw;
            color: #fff;
            display: block;
            line-height: 0; } }
@media only screen and (max-width: 750px) {
  nav#common-navigation {
    position: absolute;
    z-index: 6;
    width: 100%;
    height: 18.6666666667vw;
    top: 10.6666666667vw;
    /* 演出用。後でなにかに使うかも */ }
    nav#common-navigation #overlay-nav, nav#common-navigation #overlay-content {
      display: none; }
    nav#common-navigation #nav-trigger {
      position: absolute;
      top: 2.6666666667vw;
      right: 3.7333333333vw;
      height: 13.3333333333vw;
      width: 13.3333333333vw;
      z-index: 10;
      overflow: hidden;
      text-indent: 100%;
      white-space: nowrap;
      border-radius: 10000px;
      border: 0.5333333333vw solid #fff;
      /*条件分岐*/
      background: #43a047; }
      nav#common-navigation #nav-trigger #trigger-icon {
        /* 三本線真ん中 */
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        transform: translateX(-50%) translateY(-50%);
        display: inline-block;
        width: 6.6666666667vw;
        height: 0.8vw;
        background-color: #fff; }
        nav#common-navigation #nav-trigger #trigger-icon:before, nav#common-navigation #nav-trigger #trigger-icon:after {
          /* 三本線 上下 */
          content: "";
          position: absolute;
          top: 0;
          right: 0;
          width: 100%;
          height: 100%;
          background-color: #fff;
          backface-visibility: hidden;
          transform: translateZ(0);
          transition: transform .3s; }
        nav#common-navigation #nav-trigger #trigger-icon:before {
          /* 上部線位置調整 */
          transform: translateY(-1.6vw) rotate(0deg); }
        nav#common-navigation #nav-trigger #trigger-icon:after {
          /* 下部線位置調整 */
          transform: translateY(1.6vw) rotate(0deg); }
      nav#common-navigation #nav-trigger.closeNav {
        position: fixed;
        top: 13.3333333333vw; }
        nav#common-navigation #nav-trigger.closeNav #trigger-icon {
          background-color: rgba(255, 255, 255, 0); }
          nav#common-navigation #nav-trigger.closeNav #trigger-icon::before, nav#common-navigation #nav-trigger.closeNav #trigger-icon::after {
            background-color: white; }
          nav#common-navigation #nav-trigger.closeNav #trigger-icon::before {
            transform: translateY(0) rotate(225deg); }
          nav#common-navigation #nav-trigger.closeNav #trigger-icon::after {
            transform: translateY(0) rotate(-225deg); }
    nav#common-navigation #nav-list {
      position: relative;
      visibility: hidden;
      opacity: 0;
      z-index: 7;
      position: fixed;
      top: 0;
      width: 100%;
      height: 100%;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
      /*条件分岐*/
      background-image: url(common-navigation/common-navigation.png);
      background-color: #43a047;
      background-size: 100% 24vw;
      background-repeat: no-repeat;
      /* PUYOPUYO */ }
      nav#common-navigation #nav-list.fadeIn {
        visibility: visible;
        opacity: 1; }
      nav#common-navigation #nav-list > h1 {
        width: 50.6666666667vw;
        margin: 0 auto; }
      nav#common-navigation #nav-list > ul li {
        text-align: center;
        position: relative;
        margin: 6.6666666667vw 0; }
        nav#common-navigation #nav-list > ul li a {
          display: block;
          height: 16vw;
          padding-top: 3.7333333333vw;
          color: #fff;
          line-height: 0.5rem;
          font-size: 4.8vw;
          position: relative;
          background: rgba(255, 255, 255, 0);
          text-decoration: none;
          font-family: 'RocknRoll One','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
          transition-duration: 0.3s;
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); }
          nav#common-navigation #nav-list > ul li a:hover, nav#common-navigation #nav-list > ul li a.activeAnchor {
            transform: scale(1.15);
            background: rgba(255, 255, 255, 0.2); }
          nav#common-navigation #nav-list > ul li a span {
            position: relative;
            top: 4vw;
            font-size: 3.2vw;
            color: #fff;
            display: block;
            line-height: 0; }
      nav#common-navigation #nav-list > div.puyoSet {
        position: absolute;
        top: 24vw;
        left: 47.3333333333vw; }
        nav#common-navigation #nav-list > div.puyoSet div {
          position: absolute;
          width: 5.3333333333vw !important;
          height: 5.3333333333vw !important; }
        nav#common-navigation #nav-list > div.puyoSet > div:nth-child(1) {
          top: 22.6666666667vw; }
        nav#common-navigation #nav-list > div.puyoSet > div:nth-child(2) {
          top: 45.3333333333vw; }
        nav#common-navigation #nav-list > div.puyoSet > div:nth-child(3) {
          top: 68vw; }
        nav#common-navigation #nav-list > div.puyoSet > div:nth-child(4) {
          top: 90.6666666667vw; }
    nav#common-navigation #nav-search {
      margin: 13.3333333333vw 3.7333333333vw 0; }
      nav#common-navigation #nav-search .gsc-input-box {
        border-radius: 10px; }
      nav#common-navigation #nav-search .gsc-input {
        padding-right: 3.7333333333vw; } }
#contents-navigation h2 {
  text-align: center;
  font-size: 1.25vw;
  line-height: 1.6666666667vw; }
  @media only screen and (max-width: 750px) {
    #contents-navigation h2 {
      font-size: 3.2vw;
      line-height: 4.2666666667vw; } }
#contents-navigation ul {
  border-style: solid;
  text-align: center;
  /*条件分岐*/
  border-color: #43a047;
  border-top-width: 0.2083333333vw;
  border-bottom-width: 0.2083333333vw;
  margin-bottom: 2.7777777778vw; }
  @media only screen and (max-width: 750px) {
    #contents-navigation ul {
      border-top-width: 0.5333333333vw;
      border-bottom-width: 0.5333333333vw;
      margin-bottom: 10.6666666667vw; } }
  #contents-navigation ul li {
    display: inline-block;
    font-size: 0.8333333333vw; }
    @media only screen and (max-width: 750px) {
      #contents-navigation ul li {
        font-size: 2.6666666667vw; } }
    #contents-navigation ul li a {
      display: block;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
      margin: 0.1388888889vw;
      padding: 0.1388888889vw 0.5555555556vw; }
      @media only screen and (max-width: 750px) {
        #contents-navigation ul li a {
          margin: 0.5333333333vw;
          padding: 0.5333333333vw 2.1333333333vw; } }
    #contents-navigation ul li a:hover, #contents-navigation ul li a.activeAnchor {
      color: #fff;
      /*条件分岐*/
      background: #43a047; }

#contents-pagination {
  margin: 1.3888888889vw 0; }
  @media only screen and (max-width: 750px) {
    #contents-pagination {
      margin: 5.3333333333vw 0; } }
  #contents-pagination ul {
    text-align: center; }
    #contents-pagination ul li {
      display: inline-block;
      font-size: 1.25vw;
      line-height: 0;
      vertical-align: middle;
      padding: 0.1388888889vw 0.5555555556vw; }
      @media only screen and (max-width: 750px) {
        #contents-pagination ul li {
          font-size: 3.7333333333vw;
          padding: 0.5333333333vw 2.1333333333vw; } }
    @media only screen and (max-width: 750px) {
      #contents-pagination ul li a.linkPrev, #contents-pagination ul li a.linkNext {
        margin-top: 0.1066666667vw; } }

.entryHeader {
  width: 100%;
  background: #fff;
  /*条件分岐*/
  border-bottom-color: #43a047;
  border-bottom-style: solid;
  border-bottom-width: 0.6944444444vw;
  margin-bottom: 3.4722222222vw;
  position: relative; }
  @media only screen and (max-width: 750px) {
    .entryHeader {
      border-bottom-width: 1.3333333333vw;
      margin-bottom: 6.6666666667vw; } }
  .entryHeader > div {
    width: 100%;
    background-image: url("tag/body.png");
    background-color: #eee;
    background-size: 60%;
    transition: background 5s ease;
    padding: 1.3888888889vw 0; }
    @media only screen and (max-width: 750px) {
      .entryHeader > div {
        padding: 0; } }
    .entryHeader > div img {
      display: block;
      height: auto;
      margin: 0 auto;
      border: 1px solid #fff;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
      width: 65.9722222222vw; }
      @media only screen and (max-width: 750px) {
        .entryHeader > div img {
          width: 100%; } }
  .entryHeader h1 {
    display: block; }
    @media only screen and (min-width: 751px) {
      .entryHeader h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        padding: 2.0833333333vw 0 0;
        width: 79.1666666667vw;
        margin: 0 auto; } }
    @media only screen and (max-width: 750px) {
      .entryHeader h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        padding: 5.3333333333vw 3.7333333333vw 0;
        width: 100%; } }
  .entryHeader p {
    display: block; }
    @media only screen and (min-width: 751px) {
      .entryHeader p {
        padding: 1.7361111111vw 0;
        width: 79.1666666667vw;
        margin: 0 auto; } }
    @media only screen and (max-width: 750px) {
      .entryHeader p {
        padding: 2.6666666667vw 3.7333333333vw;
        width: 100%; } }
  .entryHeader time {
    /*条件分岐*/
    color: #43a047;
    display: block;
    text-align: right; }
    @media only screen and (min-width: 751px) {
      .entryHeader time {
        padding: 0;
        width: 79.1666666667vw;
        margin: 0 auto;
        font-size: 1.5rem; } }
    @media only screen and (max-width: 750px) {
      .entryHeader time {
        padding: 0 3.7333333333vw;
        width: 100%;
        font-size: 1.25rem; } }

.entrySubstance {
  width: 79.1666666667vw;
  margin: 0 auto; }
  @media only screen and (max-width: 750px) {
    .entrySubstance {
      width: 100%;
      padding: 2.6666666667vw 3.7333333333vw 0; } }
  .entrySubstance > * {
    margin-bottom: 1.75rem; }
  .entrySubstance > img {
    width: 100%; }
  .entrySubstance hr {
    margin: 6rem 0; }
  .entrySubstance h1 {
    margin-top: 6rem;
    margin-bottom: 3rem; }
    @media only screen and (min-width: 751px) {
      .entrySubstance h1 {
        font-size: 2.5rem;
        line-height: 3rem; } }
    @media only screen and (max-width: 750px) {
      .entrySubstance h1 {
        font-size: 2rem;
        line-height: 2.5rem; } }
  @media only screen and (min-width: 751px) {
    .entrySubstance h2 {
      font-size: 2rem;
      line-height: 3rem; } }
  @media only screen and (max-width: 750px) {
    .entrySubstance h2 {
      font-size: 1.75rem;
      line-height: 2.5rem; } }
  @media only screen and (min-width: 751px) {
    .entrySubstance h3 {
      font-size: 1.75rem;
      line-height: 3rem; } }
  @media only screen and (max-width: 750px) {
    .entrySubstance h3 {
      font-size: 1.5rem;
      line-height: 2.5rem; } }
  .entrySubstance h4 {
    /*条件分岐*/
    border-bottom-color: #43a047;
    border-bottom-style: solid;
    border-bottom-width: 0.2777777778vw; }
    @media only screen and (max-width: 750px) {
      .entrySubstance h4 {
        border-bottom-width: 0.5333333333vw; } }
  .entrySubstance h5 {
    padding-left: 0.5rem;
    /*条件分岐*/
    border-left-color: #43a047;
    border-left-style: solid;
    border-left-width: 0.6944444444vw; }
    @media only screen and (max-width: 750px) {
      .entrySubstance h5 {
        border-left-width: 1.3333333333vw; } }
  .entrySubstance h6 {
    /*条件分岐*/
    color: #43a047; }
  @media only screen and (min-width: 751px) {
    .entrySubstance > h4, .entrySubstance > h5, .entrySubstance > h6, .entrySubstance > p, .entrySubstance > table, .entrySubstance > table caption, .entrySubstance a {
      font-size: 1.5rem;
      line-height: 2.5rem; } }
  @media only screen and (max-width: 750px) {
    .entrySubstance > h4, .entrySubstance > h5, .entrySubstance > h6, .entrySubstance > p, .entrySubstance > table, .entrySubstance > table caption, .entrySubstance a {
      font-size: 1rem;
      line-height: 1.5rem; } }
  .entrySubstance a {
    /*条件分岐*/ }
  .entrySubstance > table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0; }
    @media only screen and (max-width: 750px) {
      .entrySubstance > table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; } }
    .entrySubstance > table th, .entrySubstance > table td, .entrySubstance > table th *, .entrySubstance > table td * {
      line-height: 1.6rem;
      font-size: 1rem; }
    .entrySubstance > table th {
      /*条件分岐*/
      background: #43a047;
      color: #fff;
      text-align: left;
      border-left: 1px solid #fff;
      border-top: 1px solid #fff;
      padding: 0.5rem; }
    .entrySubstance > table td {
      border-left: 1px solid #546e7a;
      border-top: 1px solid #546e7a;
      padding: 0.5rem;
      background: #fff;
      word-break: break-all; }
    .entrySubstance > table tr:nth-child(even) > td {
      background: #f6f6f6; }
    .entrySubstance > table tr > *:last-child {
      border-right: 1px solid #546e7a; }
    .entrySubstance > table tr:last-child > * {
      border-bottom: 1px solid #546e7a; }
    .entrySubstance > table tr:last-child > th {
      border-bottom: 1px solid #fff;
      white-space: nowrap; }
    .entrySubstance > table tr:first-child > *:first-child {
      border-radius: 10px 0 0 0; }
    .entrySubstance > table tr:first-child > *:last-child {
      border-radius: 0 10px 0 0; }
    .entrySubstance > table tr:last-child > *:first-child {
      border-radius: 0 0 0 10px; }
    .entrySubstance > table tr:last-child > *:last-child {
      border-radius: 0 0 10px 0; }

.entryLink {
  width: 79.1666666667vw;
  margin: 0 auto; }
  @media only screen and (max-width: 750px) {
    .entryLink {
      width: 100%;
      padding: 2.6666666667vw 3.7333333333vw 0; } }
  .entryLink h1 {
    display: inline-block;
    color: #fff;
    /*条件分岐*/
    background: #43a047;
    border-radius: 10px;
    padding: 0 1rem;
    margin-bottom: 0.25rem;
    font-size: large; }
  .entryLink ul {
    /*条件分岐*/
    border: #43a047 solid 3px;
    border-radius: 10px;
    padding: 0.5rem 0.75rem; }
    .entryLink ul li {
      margin-left: 1.5rem; }

body.siteGreen a {
  /*条件分岐*/
  color: #43a047; }
body.siteGreen em {
  /*条件分岐*/
  color: #43a047; }
body.siteGreen strong {
  /*条件分岐*/
  color: #e53935; }
body.siteGreen .headlineCommon {
  /*条件分岐*/
  color: #43a047; }
body.siteGreen .buttonCommon {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .swiper-button-prev, body.siteGreen .swiper-button-next,
body.siteGreen .paginationNum .linkPrev, body.siteGreen .paginationNum .linkNext {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .swiper-pagination-bullet-active {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .listTopics li a p {
  /*条件分岐*/
  color: #43a047; }
body.siteGreen .listTopics li a time {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .columnFanart div a {
  /*条件分岐*/
  border: 10px solid #43a047; }
body.siteGreen header {
  /* Portal Logo */ }
  body.siteGreen header > h1:first-of-type {
    /*条件分岐*/
    background-image: url("common-navigation/green.png"); }
@media only screen and (max-width: 750px) {
  body.siteGreen nav#common-navigation #nav-trigger {
    /*条件分岐*/
    background: #43a047; }
  body.siteGreen nav#common-navigation #nav-list {
    /*条件分岐*/
    background-image: url("common-navigation/green.png");
    background-color: #43a047; } }
body.siteGreen #contents-navigation ul {
  /*条件分岐*/
  border-color: #43a047; }
  body.siteGreen #contents-navigation ul li a:hover, body.siteGreen #contents-navigation ul li a.activeAnchor {
    /*条件分岐*/
    background: #43a047; }
body.siteGreen .entryHeader {
  /*条件分岐*/
  border-bottom-color: #43a047; }
  body.siteGreen .entryHeader time {
    /*条件分岐*/
    color: #43a047; }
body.siteGreen .entrySubstance h4 {
  /*条件分岐*/
  border-bottom-color: #43a047; }
body.siteGreen .entrySubstance h5 {
  /*条件分岐*/
  border-left-color: #43a047; }
body.siteGreen .entrySubstance h6 {
  /*条件分岐*/
  color: #43a047; }
body.siteGreen .entrySubstance > table th {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .entryLink h1 {
  /*条件分岐*/
  background: #43a047; }
body.siteGreen .entryLink ul {
  /*条件分岐*/
  border: #43a047 solid 3px; }
body.siteGreen footer > #footer-search {
  /*条件分岐*/
  background: #43a047; }

body.siteYellow a {
  /*条件分岐*/
  color: #EEA700; }
body.siteYellow em {
  /*条件分岐*/
  color: #EEA700; }
body.siteYellow strong {
  /*条件分岐*/
  color: #e53935; }
body.siteYellow .headlineCommon {
  /*条件分岐*/
  color: #EEA700; }
body.siteYellow .buttonCommon {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .swiper-button-prev, body.siteYellow .swiper-button-next,
body.siteYellow .paginationNum .linkPrev, body.siteYellow .paginationNum .linkNext {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .swiper-pagination-bullet-active {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .listTopics li a p {
  /*条件分岐*/
  color: #EEA700; }
body.siteYellow .listTopics li a time {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .columnFanart div a {
  /*条件分岐*/
  border: 10px solid #EEA700; }
body.siteYellow header {
  /* Portal Logo */ }
  body.siteYellow header > h1:first-of-type {
    /*条件分岐*/
    background-image: url("common-navigation/yellow.png"); }
@media only screen and (max-width: 750px) {
  body.siteYellow nav#common-navigation #nav-trigger {
    /*条件分岐*/
    background: #EEA700; }
  body.siteYellow nav#common-navigation #nav-list {
    /*条件分岐*/
    background-image: url("common-navigation/yellow.png");
    background-color: #EEA700; } }
body.siteYellow #contents-navigation ul {
  /*条件分岐*/
  border-color: #EEA700; }
  body.siteYellow #contents-navigation ul li a:hover, body.siteYellow #contents-navigation ul li a.activeAnchor {
    /*条件分岐*/
    background: #EEA700; }
body.siteYellow .entryHeader {
  /*条件分岐*/
  border-bottom-color: #EEA700; }
  body.siteYellow .entryHeader time {
    /*条件分岐*/
    color: #EEA700; }
body.siteYellow .entrySubstance h4 {
  /*条件分岐*/
  border-bottom-color: #EEA700; }
body.siteYellow .entrySubstance h5 {
  /*条件分岐*/
  border-left-color: #EEA700; }
body.siteYellow .entrySubstance h6 {
  /*条件分岐*/
  color: #EEA700; }
body.siteYellow .entrySubstance > table th {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .entryLink h1 {
  /*条件分岐*/
  background: #EEA700; }
body.siteYellow .entryLink ul {
  /*条件分岐*/
  border: #EEA700 solid 3px; }
body.siteYellow footer > #footer-search {
  /*条件分岐*/
  background: #EEA700; }

body.sitePurple a {
  /*条件分岐*/
  color: #8e24aa; }
body.sitePurple em {
  /*条件分岐*/
  color: #8e24aa; }
body.sitePurple strong {
  /*条件分岐*/
  color: #e53935; }
body.sitePurple .headlineCommon {
  /*条件分岐*/
  color: #8e24aa; }
body.sitePurple .buttonCommon {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .swiper-button-prev, body.sitePurple .swiper-button-next,
body.sitePurple .paginationNum .linkPrev, body.sitePurple .paginationNum .linkNext {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .swiper-pagination-bullet-active {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .listTopics li a p {
  /*条件分岐*/
  color: #8e24aa; }
body.sitePurple .listTopics li a time {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .columnFanart div a {
  /*条件分岐*/
  border: 10px solid #8e24aa; }
body.sitePurple header {
  /* Portal Logo */ }
  body.sitePurple header > h1:first-of-type {
    /*条件分岐*/
    background-image: url("common-navigation/purple.png"); }
@media only screen and (max-width: 750px) {
  body.sitePurple nav#common-navigation #nav-trigger {
    /*条件分岐*/
    background: #8e24aa; }
  body.sitePurple nav#common-navigation #nav-list {
    /*条件分岐*/
    background-image: url("common-navigation/purple.png");
    background-color: #8e24aa; } }
body.sitePurple #contents-navigation ul {
  /*条件分岐*/
  border-color: #8e24aa; }
  body.sitePurple #contents-navigation ul li a:hover, body.sitePurple #contents-navigation ul li a.activeAnchor {
    /*条件分岐*/
    background: #8e24aa; }
body.sitePurple .entryHeader {
  /*条件分岐*/
  border-bottom-color: #8e24aa; }
  body.sitePurple .entryHeader time {
    /*条件分岐*/
    color: #8e24aa; }
body.sitePurple .entrySubstance h4 {
  /*条件分岐*/
  border-bottom-color: #8e24aa; }
body.sitePurple .entrySubstance h5 {
  /*条件分岐*/
  border-left-color: #8e24aa; }
body.sitePurple .entrySubstance h6 {
  /*条件分岐*/
  color: #8e24aa; }
body.sitePurple .entrySubstance > table th {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .entryLink h1 {
  /*条件分岐*/
  background: #8e24aa; }
body.sitePurple .entryLink ul {
  /*条件分岐*/
  border: #8e24aa solid 3px; }
body.sitePurple footer > #footer-search {
  /*条件分岐*/
  background: #8e24aa; }

body.siteRed a {
  /*条件分岐*/
  color: #e53935; }
body.siteRed em {
  /*条件分岐*/
  color: #e53935; }
body.siteRed strong {
  /*条件分岐*/
  color: #e53935; }
body.siteRed .headlineCommon {
  /*条件分岐*/
  color: #e53935; }
body.siteRed .buttonCommon {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .swiper-button-prev, body.siteRed .swiper-button-next,
body.siteRed .paginationNum .linkPrev, body.siteRed .paginationNum .linkNext {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .swiper-pagination-bullet-active {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .listTopics li a p {
  /*条件分岐*/
  color: #e53935; }
body.siteRed .listTopics li a time {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .columnFanart div a {
  /*条件分岐*/
  border: 10px solid #e53935; }
body.siteRed header {
  /* Portal Logo */ }
  body.siteRed header > h1:first-of-type {
    /*条件分岐*/
    background-image: url("common-navigation/red.png"); }
@media only screen and (max-width: 750px) {
  body.siteRed nav#common-navigation #nav-trigger {
    /*条件分岐*/
    background: #e53935; }
  body.siteRed nav#common-navigation #nav-list {
    /*条件分岐*/
    background-image: url("common-navigation/red.png");
    background-color: #e53935; } }
body.siteRed #contents-navigation ul {
  /*条件分岐*/
  border-color: #e53935; }
  body.siteRed #contents-navigation ul li a:hover, body.siteRed #contents-navigation ul li a.activeAnchor {
    /*条件分岐*/
    background: #e53935; }
body.siteRed .entryHeader {
  /*条件分岐*/
  border-bottom-color: #e53935; }
  body.siteRed .entryHeader time {
    /*条件分岐*/
    color: #e53935; }
body.siteRed .entrySubstance h4 {
  /*条件分岐*/
  border-bottom-color: #e53935; }
body.siteRed .entrySubstance h5 {
  /*条件分岐*/
  border-left-color: #e53935; }
body.siteRed .entrySubstance h6 {
  /*条件分岐*/
  color: #e53935; }
body.siteRed .entrySubstance > table th {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .entryLink h1 {
  /*条件分岐*/
  background: #e53935; }
body.siteRed .entryLink ul {
  /*条件分岐*/
  border: #e53935 solid 3px; }
body.siteRed footer > #footer-search {
  /*条件分岐*/
  background: #e53935; }

body.siteBlue a {
  /*条件分岐*/
  color: #1e88e5; }
body.siteBlue em {
  /*条件分岐*/
  color: #1e88e5; }
body.siteBlue strong {
  /*条件分岐*/
  color: #e53935; }
body.siteBlue .headlineCommon {
  /*条件分岐*/
  color: #1e88e5; }
body.siteBlue .buttonCommon {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .swiper-button-prev, body.siteBlue .swiper-button-next,
body.siteBlue .paginationNum .linkPrev, body.siteBlue .paginationNum .linkNext {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .swiper-pagination-bullet-active {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .listTopics li a p {
  /*条件分岐*/
  color: #1e88e5; }
body.siteBlue .listTopics li a time {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .columnFanart div a {
  /*条件分岐*/
  border: 10px solid #1e88e5; }
body.siteBlue header {
  /* Portal Logo */ }
  body.siteBlue header > h1:first-of-type {
    /*条件分岐*/
    background-image: url("common-navigation/blue.png"); }
@media only screen and (max-width: 750px) {
  body.siteBlue nav#common-navigation #nav-trigger {
    /*条件分岐*/
    background: #1e88e5; }
  body.siteBlue nav#common-navigation #nav-list {
    /*条件分岐*/
    background-image: url("common-navigation/blue.png");
    background-color: #1e88e5; } }
body.siteBlue #contents-navigation ul {
  /*条件分岐*/
  border-color: #1e88e5; }
  body.siteBlue #contents-navigation ul li a:hover, body.siteBlue #contents-navigation ul li a.activeAnchor {
    /*条件分岐*/
    background: #1e88e5; }
body.siteBlue .entryHeader {
  /*条件分岐*/
  border-bottom-color: #1e88e5; }
  body.siteBlue .entryHeader time {
    /*条件分岐*/
    color: #1e88e5; }
body.siteBlue .entrySubstance h4 {
  /*条件分岐*/
  border-bottom-color: #1e88e5; }
body.siteBlue .entrySubstance h5 {
  /*条件分岐*/
  border-left-color: #1e88e5; }
body.siteBlue .entrySubstance h6 {
  /*条件分岐*/
  color: #1e88e5; }
body.siteBlue .entrySubstance > table th {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .entryLink h1 {
  /*条件分岐*/
  background: #1e88e5; }
body.siteBlue .entryLink ul {
  /*条件分岐*/
  border: #1e88e5 solid 3px; }
body.siteBlue footer > #footer-search {
  /*条件分岐*/
  background: #1e88e5; }
