/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 10px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-size: 9.375px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 9.375px;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

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

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 7.5px;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  z-index: 99999;
  text-indent: 1em;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

.menu-toggle {
  display: none;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: right;
  width: 50%;
  text-align: right;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: left;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 8.75px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Parts
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .over_display {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .under_display {
    display: none !important;
  }
}

@media print, screen and (min-width: 640px) {
  .sp_display {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 1em;
  padding: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
}

a:focus {
  outline: none;
}

a:visited {
  color: inherit;
}

a:visited:hover {
  color: inherit;
}

ul, menu {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0;
}

dl {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}

dd {
  -webkit-margin-start: 0;
}

html {
  font-family: "繝偵Λ繧ｮ繝惹ｸｸ繧ｴ Pro W4", "繝偵Λ繧ｮ繝惹ｸｸ繧ｴ Pro", "Hiragino Maru Gothic Pro", "繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3", "Hiragino Kaku Gothic Pro", "HG荳ｸ�ｽｺ�ｾ橸ｽｼ�ｽｯ�ｽｸM-PRO", "HGMaruGothicMPRO";
  height: auto;
  font-size: 10px;
  position: relative;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
}

.noscript {
  color: #f00;
  font-size: 250%;
  text-align: center;
  position: absolute;
}

.loading {
  position: relative;
  width: 32px;
  height: 32px;
  margin: -68px 0 0 -68px;
  left: 50%;
  top: 50%;
  margin-top: -16px;
  margin-left: -16px;
}

.wrapper .main_header {
  width: 90%;
  margin: 0 auto;
  margin-top: 18px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header {
    margin-top: 10px;
  }
}
.wrapper .main_header .left {
  float: left;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .left {
    width: 50%;
  }
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .left .site_logo {
    margin: 0;
  }
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .left .site_logo img {
    max-width: 70%;
  }
}
.wrapper .main_header .right {
  float: right;
  text-align: right;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .right {
    width: 50%;
  }
}
.wrapper .main_header .right .tw, .wrapper .main_header .right .fb {
  display: inline-block;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
}
.wrapper .main_header .right .tw:hover, .wrapper .main_header .right .fb:hover {
  transform: translate(0, 5px);
  -webkit-transform: translate(0, 5px);
  -ms-transform: translate(0, 5px);
  -moz-transform: translate(0, 5px);
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .right .tw img, .wrapper .main_header .right .fb img {
    max-width: 70%;
  }
}
.wrapper .main_header .right .fb {
  margin-right: 18px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .right .fb {
    margin-right: 0;
  }
}
.wrapper .main_header .page_logo {
  text-align: center;
  padding-top: 35px;
  position: relative;
  margin-bottom: 40px;
}
.wrapper .main_header .page_intro {
  text-align: center;
  font-size: 18px;
  line-height: 2em;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_header .page_intro {
    font-size: 15px;
    text-align: left;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.wrapper .report_wrapper {
  margin-top: 70px;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper {
    margin-top: 40px;
  }
}
.wrapper .report_wrapper .carousel_wrapper {
  overflow: hidden;
  position: relative;
}
.wrapper .report_wrapper .carousel {
  padding: 30px 0;
  position: relative;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .carousel {
    padding: 20px 0;
  }
}
.wrapper .report_wrapper .carousel.carousel1 {
  background-color: #F9B0A0;
}
.wrapper .report_wrapper .carousel.carousel1 .episode p:after, .wrapper .report_wrapper .carousel.carousel1 :before {
  background: #F9B0A0;
}
.wrapper .report_wrapper .carousel.carousel2 {
  background-color: #AEDFFA;
}
.wrapper .report_wrapper .carousel.carousel2 .episode p:after, .wrapper .report_wrapper .carousel.carousel2 :before {
  background: #AEDFFA;
}
.wrapper .report_wrapper .carousel.carousel3 {
  background-color: #FDF3B2;
}
.wrapper .report_wrapper .carousel.carousel3 .episode p:after, .wrapper .report_wrapper .carousel.carousel3 :before {
  background: #FDF3B2;
}
.wrapper .report_wrapper .carousel.carousel4 {
  background-color: #F9B0A0;
}
.wrapper .report_wrapper .carousel.carousel4 .episode p:after, .wrapper .report_wrapper .carousel.carousel4 :before {
  background: #F9B0A0;
}
.wrapper .report_wrapper .carousel .carousel_inner {
  position: relative;
  left: 0;
  float: left;
}
.wrapper .report_wrapper .report_card {
  float: left;
  max-width: 450px;
  width: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity .3s linear;
  -moz-transition: opacity .3s linear;
  -ms-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card {
    max-width: 250px;
  }
}
.wrapper .report_wrapper .report_card:hover {
  opacity: 0.7;
}
.wrapper .report_wrapper .report_card .left {
  float: left;
  max-width: 185px;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card .left {
    max-width: 110px;
  }
}
.wrapper .report_wrapper .report_card .left img {
  width: 100%;
}
.wrapper .report_wrapper .report_card .right {
  float: right;
  max-width: 218px;
  width: 100%;
  position: absolute;
  right: 30px;
  bottom: 20px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card .right {
    max-width: 110px;
    right: 15px;
    bottom: 10px;
  }
}
.wrapper .report_wrapper .report_card .right .type {
  color: #fff;
  background-color: #fff;
  padding: 0.5em;
  display: inline-block;
  font-size: 16px;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card .right .type {
    font-size: 12px;
    letter-spacing: -0.05em;
  }
}
.wrapper .report_wrapper .report_card .right .type:before {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right: 10px solid #fff;
  display: block;
  position: absolute;
  left: -17px;
  top: 12px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card .right .type:before {
    border: 5px solid transparent;
    border-right: 10px solid #fff;
    left: -14px;
  }
}
.wrapper .report_wrapper .report_card .right .type .color_dummy {
  display: none;
}
.wrapper .report_wrapper .report_card .right .type p {
  text-align: justify;
  text-justify: inter-ideograph;
}
.wrapper .report_wrapper .report_card .right .type span {
  font-size: 13px;
}
.wrapper .report_wrapper .report_card .right .episode {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #353332;
  overflow: hidden;
  width: 11em;
}
.wrapper .report_wrapper .report_card .right .episode p {
  margin: 0;
}
@media print, screen and (max-width: 768px) {
  .wrapper .report_wrapper .report_card .right .episode {
    width: 100%;
  }
}
.wrapper .report_wrapper .report_card .right .episode p {
  color: #353332;
  font-size: 13px;
  height: 52px;
  line-height: 2;
  position: relative;
}
.wrapper .report_wrapper .report_card .right .episode p:before, .wrapper .report_wrapper .report_card .right .episode p:after {
  position: absolute;
}
.wrapper .report_wrapper .report_card .right .episode p:before {
  content: "...";
  top: 26px;
  right: 0;
}
.wrapper .report_wrapper .report_card .right .episode p:after {
  content: "";
  height: 100%;
  width: 100%;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_1 .type {
  background-color: #63C2F7;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_1 .type:before {
  border-right: 10px solid #63C2F7;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_1 .type .color_dummy {
  color: #63C2F7;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_2 .type {
  color: #000;
  background-color: #FCEA68;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_2 .type:before {
  border-right: 10px solid #FCEA68;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_2 .type .color_dummy {
  color: #000;
  background-color: #000;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_3 .type {
  background-color: #EA6A50;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_3 .type:before {
  border-right: 10px solid #EA6A50;
}
.wrapper .report_wrapper .carousel1 .report_card.report_card_3 .type .color_dummy {
  color: #EA6A50;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_1 .type {
  background-color: #EA6A50;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_1 .type:before {
  border-right: 10px solid #EA6A50;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_1 .type .color_dummy {
  color: #EA6A50;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_2 .type {
  background-color: #63C2F7;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_2 .type:before {
  border-right: 10px solid #63C2F7;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_2 .type .color_dummy {
  color: #63C2F7;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_3 .type {
  color: #000;
  background-color: #FCEA68;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_3 .type:before {
  border-right: 10px solid #FCEA68;
}
.wrapper .report_wrapper .carousel2 .report_card.report_card_3 .type .color_dummy {
  color: #000;
  background-color: #000;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_1 .type {
  color: #000;
  background-color: #FCEA68;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_1 .type:before {
  border-right: 10px solid #FCEA68;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_1 .type .color_dummy {
  color: #000;
  background-color: #000;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_2 .type {
  background-color: #EA6A50;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_2 .type:before {
  border-right: 10px solid #EA6A50;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_2 .type .color_dummy {
  color: #EA6A50;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_3 .type {
  background-color: #63C2F7;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_3 .type:before {
  border-right: 10px solid #63C2F7;
}
.wrapper .report_wrapper .carousel3 .report_card.report_card_3 .type .color_dummy {
  color: #63C2F7;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_1 .type {
  background-color: #63C2F7;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_1 .type:before {
  border-right: 10px solid #63C2F7;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_1 .type .color_dummy {
  color: #63C2F7;
  background-color: #fff;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_2 .type {
  color: #000;
  background-color: #FCEA68;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_2 .type:before {
  border-right: 10px solid #FCEA68;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_2 .type .color_dummy {
  color: #000;
  background-color: #000;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_3 .type {
  background-color: #EA6A50;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_3 .type:before {
  border-right: 10px solid #EA6A50;
}
.wrapper .report_wrapper .carousel4 .report_card.report_card_3 .type .color_dummy {
  color: #EA6A50;
  background-color: #fff;
}
.wrapper .main_footer {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media print, screen and (max-width: 960px) {
  .wrapper .main_footer {
    margin-top: 50px;
  }
}
.wrapper .main_footer .footerbutton_wrap {
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  display: inline-block;
}
.wrapper .main_footer .footerbutton {
  float: left;
  margin-right: 20px;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
}
@media print, screen and (max-width: 960px) {
  .wrapper .main_footer .footerbutton {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_footer .footerbutton {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .wrapper .main_footer .footerbutton:last-child {
    margin-right: 0;
  }
}
.wrapper .main_footer .footerbutton:hover {
  transform: translate(0, 5px);
  -webkit-transform: translate(0, 5px);
  -ms-transform: translate(0, 5px);
  -moz-transform: translate(0, 5px);
}
.wrapper .main_footer .credit {
  margin-top: 80px;
  color: #808080;
  font-size: 13px;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_footer .credit {
    margin-top: 50px;
    font-size: 10px;
  }
}
@media print, screen and (max-width: 768px) {
  .wrapper .main_footer .credit img {
    max-width: 70%;
  }
}
.wrapper .appear_wrapper {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.wrapper .appear_wrapper .appear_back {
  width: 100%;
  position: fixed;
  height: calc(100% + 30px);
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  margin-top: -30px;
}
.wrapper .appear_wrapper .appear_front_wrap {
  width: 100%;
  max-width: 800px;
  right: 0;
  left: 0;
  position: absolute;
  height: 100%;
  top: 0;
  margin: auto;
}
.wrapper .appear_wrapper .appear_front_wrap .close_button {
  padding: 0;
  border: none;
  box-shadow: none;
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  height: 46px;
  width: 46px;
  display: block;
  background-image: url("img/close_button.png");
  background-size: 46px 46px;
  position: absolute;
  right: 5px;
  margin-top: 20px;
  z-index: 100;
  background-color: inherit;
  z-index: 100%;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_wrap .close_button {
    right: 10px;
    margin-top: 20px;
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    top: 0px;
  }
}
.wrapper .appear_wrapper .appear_front_overflow {
  width: calc(100% - 17px);
  overflow: hidden;
  max-width: calc(800px - 17px);
  right: 0;
  left: 0;
  position: absolute;
  height: 100%;
  top: 0;
  margin: auto;
  right: -17px;
  z-index: 1;
}
.wrapper .appear_wrapper .appear_front_scrollwrap {
  max-width: calc(800px + 17px);
  width: calc(100% + 17px);
  height: 100%;
  z-index: 100;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  overflow-y: scroll;
  padding-right: 17px;
  z-index: 1;
  direction: rtl;
  left: -17px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap {
    max-width: 90%;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_colorwrap {
  position: relative;
  z-index: 100;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  margin-left: 17px;
  margin-top: 30px;
  z-index: 1;
  direction: ltr;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_colorwrap {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner {
  max-width: 700px;
  width: 100%;
  padding-top: 60px;
  position: relative;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: inherit;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner {
    max-width: 90%;
    padding-top: 30px;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner img {
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner img {
    max-width: 50%;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .report_card {
  background-color: inherit;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner section {
  background-color: inherit;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .right {
  background-color: inherit;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .type {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  background-color: inherit;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .type {
    font-size: 13px;
    color: #fff;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .type .type_inner {
  background-color: inherit;
  padding: 1em;
  display: inline-block;
  max-width: 90%;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .type .type_inner p {
  background-color: #fff;
  border-radius: 1.5em;
  -moz-border-radius: 1.5em;
  -webkit-border-radius: 1.5em;
  -o-border-radius: 1.5em;
  -ms-border-radius: 1.5em;
  display: inline-block;
  padding: 0.1em 1.2em 0.2em 1em;
  z-index: 1;
  position: relative;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .type .type_inner span {
  font-size: 13px;
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .episode {
  color: #353332;
  font-size: 18px;
  line-height: 2em;
  border: 2px solid #fff;
  padding: 30px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  margin-top: -60px;
  z-index: -2;
}
@media print, screen and (max-width: 768px) {
  .wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .episode {
    font-size: 13px;
    margin-top: -55px;
  }
}
.wrapper .appear_wrapper .appear_front_scrollwrap .appear_front_inner .episode p {
  color: #353332;
}

div.back,
div.next {
  cursor: pointer;
  position: fixed;
  top: calc(50% - 100px);
  width: 40px;
  height: 200px;
  z-index:3;
}
div.back {
  left: 0;
}
div.next {
  right: 0;
}

div.back > div.block,
div.next > div.block {
  position: absolute;
  height: 100%;
  width: 100%;
  padding-top: 80px;
  text-align: center;
  background-color: #000;
  font-size: 30px;
  opacity: 0.2;
  z-index: 4;
  cursor: pointer;
}
div.back > div.block {
  border-radius: 0px 10px 10px 0px;
}
div.next > div.block {
  border-radius: 10px 0px 0px 10px;
}

div.back > div.arrow,
div.next > div.arrow {
  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 80px;
  text-align: center;
  color: #FFF;
  font-size: 30px;
  z-index: 5;
  font-weight: bold;
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */
