<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
Theme Name: KOHOgene
Description: NewsRoom作成サービス「KOHOgene」のテーマです。広報に関するeラーニングシステムと記事作成機能が合わさったサービスです。
Theme URI: kohogene.com
Author: Kazunari Hirosawa
Author URI: jura.works
Version: 1.3.40
License: 
License URI:
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4em;
  font-family: Helvetica, "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

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

iframe {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

button {
  -webkit-appearance: none;
  border: 0;
}

input::-webkit-input-placeholder {
  color: #aaa;
}

.Footer_inner, .Container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.Wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.Header {
  padding: 16px 60px 16px 30px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .Header {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.Header_inner {
  display: flex;
  justify-content: space-between;
}
.Header_siteName {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.Header_siteName a {
  display: block;
  transition: opacity 0.2s;
}
.Header_siteName a:hover {
  opacity: 0.65;
}
.Header_siteName img {
  max-height: 80px;
}
@media screen and (max-width: 599px) {
  .Header_siteName {
    width: 60%;
  }
  .Header_siteName img {
    max-height: 40px;
  }
}
.Header_logo {
  vertical-align: bottom;
}
.Header_nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 798px) {
  .Header_nav {
    display: none;
  }
}
.Header_navList {
  text-align: center;
}
.Header_navList li {
  display: inline-block;
  margin-left: 35px;
}
.Header_navList li a {
  color: #000;
  transition: color 0.2s;
}
.Header_navList li a:hover {
  color: #0989FB;
}

.GlobalNav {
  display: none;
}
@media screen and (min-width: 960px) {
  .GlobalNav {
    display: flex;
    height: 50px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: #0D161A;
  }
  .GlobalNav a {
    display: block;
    flex: 0 1 auto;
    padding-right: 40px;
    padding-left: 40px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    transition: opacity 0.2s ease, transform 0.4s ease;
  }
  .GlobalNav a:hover {
    opacity: 0.65;
  }
}

.DrawerMenu {
  display: grid;
  justify-items: center;
  align-self: center;
  position: relative;
  height: 40px;
  width: 40px;
}
@media screen and (min-width: 798px) {
  .DrawerMenu {
    display: none;
  }
}
.DrawerMenu_hamburger {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  cursor: pointer;
  z-index: 5;
}
.DrawerMenu_hamburger:hover {
  opacity: 0.65;
}
.DrawerMenu_hamburger:focus {
  outline: 0;
}
.DrawerMenu_hamburger span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #000;
  border-radius: 0px;
  opacity: 1;
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out, all 0.25s ease-in-out;
}
.DrawerMenu_hamburger span:nth-child(1) {
  top: 11px;
}
.DrawerMenu_hamburger span:nth-child(2), .DrawerMenu_hamburger span:nth-child(3) {
  top: 19px;
}
.DrawerMenu_hamburger span:nth-child(4) {
  top: 27px;
}
.DrawerMenu_hamburger.is-open {
  position: fixed;
}
.DrawerMenu_hamburger.is-open span:nth-child(1) {
  opacity: 0;
  visibility: hidden;
}
.DrawerMenu_hamburger.is-open span:nth-child(2) {
  transform: rotate(45deg);
}
.DrawerMenu_hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}
.DrawerMenu_hamburger.is-open span:nth-child(4) {
  opacity: 0;
  visibility: hidden;
}
.DrawerMenu_hamburgerInner {
  position: relative;
}
.DrawerMenu_nav {
  width: 80%;
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  background: white;
  z-index: 4;
  padding: 70px 0 0;
  transform: translateX(100%);
  transition: transform 0.2s ease-in;
}
.DrawerMenu_nav ul {
  list-style: none;
}
.DrawerMenu_nav a {
  display: block;
  padding: 10px 40px;
}
.DrawerMenu_nav.is-open {
  transform: translateX(0);
}
.DrawerMenu .DrawerMenu_background {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  left: 0;
  top: 0;
  visibility: hidden;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}
.DrawerMenu .DrawerMenu_background.is-open {
  opacity: 0.5;
  visibility: visible;
}

.Button {
  text-align: center;
  cursor: pointer;
  transition: background 0.4s ease;
}
.Button.-more {
  position: relative;
  background-color: #ebebeb;
  width: 300px;
  height: 62px;
  border-radius: 31px;
  font-size: 1.6rem;
  font-weight: 600;
}
.Button.-more:hover {
  background-color: #d2d2d2;
}
@media screen and (max-width: 599px) {
  .Button.-more {
    height: 50px;
    font-size: 1.4rem;
  }
}
.Button_icon {
  display: inline-block;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.Button_icon.-more {
  position: absolute;
  width: 12px;
  height: 12px;
}
.Button_icon.-more::before, .Button_icon.-more::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
}
.Button_icon.-more::before {
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.Button_icon.-more::after {
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.Content {
  flex: 1 1 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 599px) {
  .Content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.Container {
  position: relative;
}

.Section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.Section.-bg {
  background: #0D161A;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .Section.-bg {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.Section.-widget .Container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Section.-widget .Container_Tag {
  width: 100%;
}
.Section.-widget .Container_Tag_Post {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 798px) {
  .Section.-widget .Container_Tag {
    flex: 1 1 64.21875%;
    max-width: 64.21875%;
  }
}
.Section.-widget .Container_Widget {
  width: 100%;
}
@media screen and (min-width: 798px) {
  .Section.-widget .Container_Widget {
    width: 30%;
  }
}
.Section.-widget .Container_Widget .widget {
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 36px;
  font-size: 1.6rem;
}
.Section.-widget .Container_Widget .widget:first-of-type {
  margin-top: 0;
}
.Section.-widget .Container_Widget .widget a {
  color: #23282d;
  transition: color 0.2s ease;
}
.Section.-widget .Container_Widget .widget a:hover {
  color: #0989FB;
}
.Section.-widget .Container_Widget .widget &gt; h1,
.Section.-widget .Container_Widget .widget &gt; h2,
.Section.-widget .Container_Widget .widget &gt; h3,
.Section.-widget .Container_Widget .widget &gt; h4,
.Section.-widget .Container_Widget .widget &gt; h5,
.Section.-widget .Container_Widget .widget &gt; h6 {
  margin-top: 28px;
  margin-bottom: 28px;
}
.Section.-widget .Container_Widget .widget &gt; h1:first-of-type,
.Section.-widget .Container_Widget .widget &gt; h2:first-of-type,
.Section.-widget .Container_Widget .widget &gt; h3:first-of-type,
.Section.-widget .Container_Widget .widget &gt; h4:first-of-type,
.Section.-widget .Container_Widget .widget &gt; h5:first-of-type,
.Section.-widget .Container_Widget .widget &gt; h6:first-of-type {
  margin-top: 0;
}
.Section.-widget .Container_Widget .widget p {
  margin-top: 28px;
  margin-bottom: 28px;
}
.Section.-widget .Container_Widget .widget &gt; h1 {
  font-size: 2.2rem;
}
.Section.-widget .Container_Widget .widget &gt; h2 {
  font-size: 2rem;
}
.Section.-widget .Container_Widget .widget &gt; h3 {
  font-size: 1.8rem;
}
.Section.-widget .Container_Widget .widget &gt; h4 {
  font-size: 1.6rem;
}
.Section.-widget .Container_Widget .widget &gt; h5 {
  font-size: 1.4rem;
}
.Section.-widget .Container_Widget .widget &gt; h6 {
  font-size: 1.2rem;
}
.Section.-widget .Container_Widget .widget p {
  font-size: 1.4rem;
  line-height: 1.6;
}
.Section.-widget .Container_Widget .widget p img {
  display: block;
  margin: 0 auto;
}
.Section.-widget .Container_Widget .widget p + h1,
.Section.-widget .Container_Widget .widget p + h2,
.Section.-widget .Container_Widget .widget p + h3,
.Section.-widget .Container_Widget .widget p + h4,
.Section.-widget .Container_Widget .widget p + h5,
.Section.-widget .Container_Widget .widget p + h6 {
  margin-top: 40px;
}
.Section.-widget .Container_Widget .widget ul,
.Section.-widget .Container_Widget .widget ol {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 0 2rem;
}
.Section.-widget .Container_Widget .widget ul ul,
.Section.-widget .Container_Widget .widget ul ol,
.Section.-widget .Container_Widget .widget ol ul,
.Section.-widget .Container_Widget .widget ol ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.Section.-widget .Container_Widget .widget code {
  padding: 2px;
  border-radius: 2px;
  color: #23282d;
  background: #f3f4f5;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: inherit;
}
.Section.-widget .Container_Widget .widget .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  margin-bottom: 28px;
}
.Section.-widget .Container_Widget .widget .alignleft {
  text-align: left;
}
.Section.-widget .Container_Widget .widget .alignright {
  text-align: right;
}
.Section.-widget .Container_Widget .widget .aligncenter {
  text-align: center;
}
.Section.-widget .Container_Widget .widget .wp-block-table table {
  border-collapse: collapse;
}
.Section.-widget .Container_Widget .widget .wp-block-table th,
.Section.-widget .Container_Widget .widget .wp-block-table td {
  padding: 0.5em;
  border: 1px solid;
  word-break: normal;
}
.Section.-widget .Container_Widget .widget .wp-block-image {
  margin-bottom: 2.8rem;
}
.Section.-widget .Container_Widget .widget .wp-block-image .alignright {
  margin-left: 2.8rem;
}
.Section.-widget .Container_Widget .widget .wp-block-image .alignleft {
  margin-right: 2.8rem;
}
.Section.-widget .Container_Widget .widget figcaption {
  text-align: center;
}
.Section.-widget .Container_Widget .widget .wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px;
  padding-left: 1em;
}
.Section.-widget .Container_Widget .widget .wp-caption,
.Section.-widget .Container_Widget .widget .gallery-caption,
.Section.-widget .Container_Widget .widget figcaption {
  color: #666;
  font-size: 1rem;
  font-style: italic;
  max-width: 100%;
}
.Section.-widget .Container_Widget .widget + footer {
  margin-top: 8rem;
}
@media screen and (max-width: 599px) {
  .Section.-widget .Container_Widget .widget h2 {
    font-size: 2rem;
  }
  .Section.-widget .Container_Widget .widget h3 {
    font-size: 1.4rem;
  }
  .Section.-widget .Container_Widget .widget h4 {
    font-size: 1.4rem;
  }
  .Section.-widget .Container_Widget .widget p {
    margin-bottom: 10px;
  }
}
.Section.-widget .Container .LatestTags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -1.951952%;
  margin-right: -1.951952%;
  margin-bottom: -3.903904%;
}
@media screen and (min-width: 798px) {
  .Section.-widget .Container .LatestTags .ArticleCard_item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.Section_header {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .Section_header {
    margin-bottom: 20px;
  }
}
.Section_title {
  margin-top: 0;
  font-size: 2rem;
}
.Section.-bg .Section_title {
  color: #fff;
}

.Footer {
  background-color: #0D161A;
}
.Footer_inner {
  padding: 40px 30px;
}
@media screen and (min-width: 600px) {
  .Footer_inner {
    display: flex;
    align-items: center;
  }
}
.Footer_nav {
  flex: 1 1 100%;
}
.Footer_nav li {
  display: inline-block;
  margin: 5px 45px 5px 0;
  text-align: left;
}
@media screen and (max-width: 374px) {
  .Footer_nav li {
    display: block;
    margin: 0 0 20px;
  }
}
.Footer_nav li a {
  color: #fff;
  transition: color 0.2s;
}
.Footer_nav li a:hover {
  color: #0989FB;
}
@media screen and (max-width: 599px) {
  .Footer_sns {
    margin-top: 36px;
    margin-left: -20px;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .Footer_sns {
    flex: 0 0 auto;
    justify-self: flex-end;
  }
}
.Footer_snsItem {
  display: inline-block;
  margin-left: 20px;
  text-align: center;
}
.Footer_snsItem a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  color: #0D161A;
  font-size: 1.6rem;
  transition: background 0.2s ease;
}
.Footer_snsItem a:hover {
  background-color: white;
}

.Hero {
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .Hero {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.Hero_inner {
  position: relative;
}
@media screen and (max-width: 599px) {
  .Hero_inner {
    display: flex;
    flex-wrap: wrap;
  }
}
.Hero_item {
  position: relative;
  flex-grow: 1;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #000;
}
.Hero_item.-large {
  width: 66.6666%;
}
.Hero_item.-small {
  position: absolute;
  right: 0;
  width: 33.3333%;
  height: 50%;
  border-left: 3px solid #fff;
}
.Hero_item.-small:nth-of-type(2) {
  top: 0;
}
.Hero_item.-small:nth-of-type(3) {
  bottom: 0;
  border-top: 3px solid #fff;
}
@media screen and (max-width: 599px) {
  .Hero_item.-large {
    width: 100%;
  }
  .Hero_item.-small {
    position: relative;
    width: 50%;
    border-top: 2px solid #fff;
    border-right: 0;
    border-left: 2px solid #fff;
  }
  .Hero_item.-small:nth-of-type(3) {
    border-right: 2px solid #fff;
  }
}
.Hero_itemInner {
  display: block;
  position: relative;
  padding-top: 56.25%;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .Hero_item.-small .Hero_itemInner {
    padding-top: calc(56.25% + 65px);
  }
}
.Hero_itemInner + img {
  transition: opacity 0.2s ease, transform 0.4s ease;
}
.Hero_itemInner:hover + img {
  opacity: 0.65;
  transform: scale(1.2);
}
.Hero_titleArea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}
@media screen and (max-width: 599px) {
  .Hero_titleArea {
    padding: 6px 16px;
  }
  .Hero_item.-small .Hero_titleArea {
    height: 65px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.Hero_date {
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .Hero_date {
    margin-bottom: 2px;
    font-size: 1.1rem;
  }
}
.Hero_title {
  margin-top: 0;
  font-size: 2.4rem;
  word-break: break-all;
}
@media screen and (max-width: 959px) {
  .Hero_title {
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.Hero_image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.ArticleCard_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.951952%;
  margin-right: -1.951952%;
  margin-bottom: -3.903904%;
}
@media screen and (max-width: 599px) {
  .ArticleCard_list {
    margin-bottom: -30px;
  }
}
.ArticleCard_item {
  padding-left: 1.951952%;
  padding-right: 1.951952%;
  padding-bottom: 3.903904%;
}
@media screen and (max-width: 959px) {
  .ArticleCard_item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .ArticleCard_item {
    flex: 1 1 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 960px) {
  .ArticleCard_item {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
  .widget .ArticleCard_item {
    flex: 1 1 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}
.ArticleCard_thumb {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.377551%;
  background-color: #000;
  overflow: hidden;
}
.ArticleCard_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease, transform 0.4s ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ArticleCard_thumb:hover img {
  opacity: 0.65;
  transform: scale(1.2);
}
.ArticleCard_titleArea {
  margin-top: 10px;
}
.ArticleCard_date {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.ArticleCard_title {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1.4;
}
.ArticleCard_title a {
  color: #000;
  transition: color 0.2s ease;
}
.ArticleCard_title a:hover {
  color: #0989FB;
}
.ArticleCard_tags {
  margin-top: 8px;
  opacity: 0.65;
  font-size: 1.2rem;
}
.ArticleCard_more {
  margin-top: 40px;
  text-align: center;
}

.CategoryNav {
  margin-bottom: 30px;
  letter-spacing: -0.4em;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 599px) {
  .CategoryNav {
    margin-bottom: 20px;
  }
}
.CategoryNav_item {
  display: inline-block;
  margin-right: 20px;
  padding: 4px 16px;
  color: #000;
  font-size: 1.6rem;
  line-height: 28px;
  transition: background 0.4s ease;
  border-radius: 28px;
  letter-spacing: normal;
}
.CategoryNav_item:hover {
  background: #ebebeb;
}
.CategoryNav_item.is-current {
  color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .CategoryNav_item {
    margin-right: 8px;
    padding: 2px 12px;
    font-size: 1.4rem;
  }
}

.Section.-bg .MoreLink {
  color: #fff;
}
.Section.-bg .MoreLink:hover {
  color: #0989FB;
}
@media screen and (max-width: 599px) {
  .MoreLink {
    display: block;
    width: 300px;
    margin: 30px auto 0;
    color: #044de8;
    border: 1px solid #044de8;
    transition: color 0.4s ease, background 0.4s ease;
    font-size: 1.4rem;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    font-weight: 600;
  }
  .MoreLink:hover {
    background-color: #044de8;
    color: #fff;
  }
  .Section.-bg .MoreLink {
    border-color: #fff;
  }
  .Section.-bg .MoreLink:hover {
    border-color: #044de8;
    background-color: #044de8;
  }
}
@media screen and (min-width: 600px) {
  .MoreLink {
    position: absolute;
    top: 4px;
    right: 0;
    color: #000;
    transition: color 0.2s;
  }
  .MoreLink:hover {
    color: #0989FB;
  }
}

.LatestImages {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: -8px;
}
.LatestImages_item {
  flex: 1 1 20%;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 8px;
  max-width: 20%;
}
.LatestImages_item a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.377551%;
  background-color: #000;
  overflow: hidden;
}
.LatestImages_item a:hover img {
  opacity: 0.65;
}
.LatestImages_item a img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease, transform 0.4s ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 959px) {
  .LatestImages_item {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (max-width: 599px) {
  .LatestImages_item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.LatestImages_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 798px) {
  .LatestMovies {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.LatestMovies_main {
  position: relative;
  padding-top: 54.6%;
}
.LatestMovies_main iframe,
.LatestMovies_main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 797px) {
  .LatestMovies_main {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 798px) {
  .LatestMovies_main {
    flex: 1 1 64.21875%;
    max-width: 64.21875%;
    padding-top: 35%;
  }
}
.LatestMovies_side {
  background-color: #ebebeb;
  padding: 12px;
}
.LatestMovies_side a &gt; div {
  transition: opacity 0.2s ease, transform 0.4s ease;
}
.LatestMovies_side a:hover &gt; div {
  opacity: 0.65;
}
@media screen and (min-width: 798px) {
  .LatestMovies_side {
    flex: 1 1 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.LatestMovies_item {
  display: flex;
  padding: 11.25px 4px;
}
.LatestMovies_item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 67.5px;
  width: 120px;
  min-width: 120px;
}
.LatestMovies_date {
  display: block;
  font-size: 1.1rem;
  opacity: 0.5;
  margin-bottom: 4px;
  color: #000;
}
.LatestMovies_titleArea {
  padding-left: 12px;
}
.LatestMovies_title {
  line-height: 1.36;
  font-size: 13px;
}
.LatestMovies_title a {
  color: #000;
  transition: color 0.2s;
}
.LatestMovies_title a:hover {
  color: #0989FB;
}
@media screen and (max-width: 959px) {
  .LatestMovies_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

.LeadMailmagazine {
  margin-bottom: 60px;
}
.LeadMailmagazine_link {
  position: relative;
  display: block;
  max-width: 662px;
  margin: 0 auto;
  padding: 25px 30px;
  background-size: 200%;
  background-position: 100%;
  border-radius: 54px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  overflow: hidden;
  transition: background 0.4s ease;
}
.LeadMailmagazine_link:hover {
  background-position: 0;
  box-shadow: none;
}
.LeadMailmagazine_link::before, .LeadMailmagazine_link::after {
  position: absolute;
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.LeadMailmagazine_link::before {
  top: 20px;
  left: 0;
  width: 187px;
  height: 94px;
  background-image: url(./assets/icon_mailmagazine.png);
  opacity: 0.2;
}
.LeadMailmagazine_link::after {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 23px;
  background-image: url(./assets/icon_arrow.png);
}
@media screen and (max-width: 599px) {
  .LeadMailmagazine {
    margin-bottom: 0;
  }
  .LeadMailmagazine_link {
    max-width: initial;
    margin-left: -15px;
    margin-right: -15px;
    padding-right: 10px;
    padding-left: 25px;
    border-radius: 0;
    font-size: 1.6rem;
  }
  .LeadMailmagazine_link::before {
    top: 25px;
    left: -10px;
    width: 90px;
    height: 47px;
  }
  .LeadMailmagazine_link::after {
    right: 15px;
    width: 20px;
    height: 12px;
  }
}

.SearchBox_input {
  display: block;
  width: 380px;
  height: 38px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAAH6ji2bAAAAAXNSR0IArs4c6QAAAcBJREFUOBGVlMlOAzEQRIdNgFjEcgBxgAOCsEag/P9nBLEe4MByYReCQIB6jstMRjPAlFRp292utrs9ybIe9qPNPGgNxJWWPdjpNMHdECe94njmjUH9EPvFLCJFrmhhx6vYfIp1O4Y8sEWz6YnsKGNntcSh1jreOqXJbgx6kR0XSbwoXosBnGYpjstMUCY3avdlEWVre1pMV4kBHBi1CeY+OOMqjMjRzAdS0mURx614Lib41qSeE0/FS5Fbc5RnsSMG0Lri+XCQzbXMuDVdOxaLoLNXIuULgdgq3MjBkf4MpETv+UAWysD5L3BwxrZIX4vBm9H/KJsKPqbxNgs5UJrhOG/nC56L6Rsi0C0Gokw5KNlvIBudey0GWRChDZGOPokEv4ll4M4k5XV2RT6AJIwgb2ZN/BQPxCohufqA8JZIgU/EUEQmPEBwJP5XjHhi2QOsEdR5zaCOWG/Hzx5rBEE+DbDQM7V+vccaoQkPkqCO8yKFTk6Nq0DteYC8ezp+Jga4y0wQWxXpNA3iQ+E/xqWgCTMip6L2Bh3mqwzfSl7QAVhOPCuSxPVhA0/qTgwdjT7+C3h2QbhKUP5aICm3+/gGKZ5EBfptmoUAAAAASUVORK5CYII=") no-repeat 12px 50%;
}
.widget .SearchBox_input {
  width: auto;
}
.SearchBox_input input {
  width: 100%;
  height: 100%;
  padding-left: 40px;
  background: none;
  border-radius: 38px;
  border: 1px solid #e3e3e3;
  transition: border 0.4s, box-shadow 0.4s;
  font-size: 1.4rem;
  -webkit-appearance: none;
}
.SearchBox_input input:focus {
  border-color: #0015D6;
  outline: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 599px) {
  .SearchBox_input {
    width: 100%;
  }
}

.SearchUtilities {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .SearchUtilities {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-left: -15px;
    margin-bottom: 20px;
  }
}
.SearchUtilities_category {
  margin-bottom: 20px;
}
.SearchUtilities_category .CategoryNav {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .SearchUtilities_category {
    flex: 1 1 100%;
    max-width: calc(100% - 135px);
    margin-right: -15px;
    margin-bottom: 0;
    padding-left: 20px;
  }
}
.SearchUtilities_sort select {
  width: 136px;
  height: 29px;
  padding: 5px 10px;
  background-color: #efefef;
  border: 0;
  border-radius: 2px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.4s ease;
}
.SearchUtilities_sort select:hover {
  background-color: #d2d2d2;
}
@media screen and (max-width: 599px) {
  .SearchUtilities_sort {
    flex: 0 0 135px;
    max-width: 135px;
  }
}

.PageHeader {
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .PageHeader {
    margin-bottom: 20px;
  }
}
.PageHeader.-hasSearch {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .PageHeader.-hasSearch {
    display: block;
  }
}
.PageHeader_title {
  margin-right: 50px;
  font-size: 3.2rem;
}
@media screen and (max-width: 599px) {
  .PageHeader_title {
    margin-right: 0;
    font-size: 2.4rem;
  }
}
.PageHeader_search {
  flex: 0 0 auto;
}
@media screen and (max-width: 599px) {
  .PageHeader_search {
    margin-top: 15px;
  }
}

.Article &gt; .Container {
  max-width: 950px;
}
.Article_header {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .Article_header {
    margin-bottom: 20px;
  }
}
.Article_title {
  margin-bottom: 15px;
  font-size: 3.2rem;
}
@media screen and (max-width: 599px) {
  .Article_title {
    font-size: 2.4rem;
  }
}
.Article_date {
  display: block;
  margin-bottom: 15px;
  color: #0d161a;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .Article_date {
    font-size: 1.4rem;
  }
}
.Article_tags {
  padding-top: 3rem;
  margin-bottom: 25px;
  opacity: 0.65;
  font-size: 1.4rem;
}
.Article_tags span {
  padding-left: 3px;
}
@media screen and (max-width: 599px) {
  .Article_tags {
    font-size: 1.2rem;
  }
}
.Article_more, .Article_pagination {
  margin: 150px 0 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.Article_more a, .Article_pagination a {
  display: inline-block;
  margin: 0 15px;
  color: inherit;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 40px;
  background-color: #ebebeb;
}
.Article_more a img, .Article_pagination a img {
  margin-right: 10px;
  vertical-align: middle;
}
.Article_more + .Article_more, .Article_pagination + .Article_more {
  margin: 50px 0;
}
@media screen and (max-width: 599px) {
  .Article_more, .Article_pagination {
    margin-top: 40px 0;
    flex-flow: column;
  }
  .Article_more a, .Article_pagination a {
    max-width: 300px;
    height: 62px !important;
  }
  .Article_more a + a, .Article_pagination a + a {
    margin-top: 20px;
  }
}
.Article_footer {
  padding: 30px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 599px) {
  .Article_footer {
    padding: 25px 20px;
  }
}
.Article_footerDownload {
  display: flex;
  align-items: center;
}
.Article_footerDownloadTitle {
  padding-right: 30px;
  font-size: 1.6rem;
  font-weight: bold;
}
.Article_footerDownloadButtons {
  display: flex;
}
@media screen and (max-width: 599px) {
  .Article_footerDownload {
    display: block;
    text-align: center;
  }
  .Article_footerDownloadTitle {
    padding-bottom: 25px;
    padding-right: 0;
    text-align: center;
  }
}
.Article_downloadButtons {
  flex: 1 1 auto;
}
.Article_downloadButtons &gt; a {
  margin-right: 15px;
}
.Article_downloadButtons &gt; a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 599px) {
  .Article_downloadButtons &gt; a {
    margin-right: 10px;
  }
}
.Article_downloadButton {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ebebeb;
  border-radius: 2px;
  color: inherit;
  font-size: 1.2rem;
  transition: background 0.4s ease;
}
.Article_downloadButton:hover {
  background-color: #d2d2d2;
}
.Article_downloadButtonIcon {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .Article_downloadButton {
    padding: 15px;
  }
}
.Article_body {
  font-size: 1.6rem;
}
.Article_body h1,
.Article_body h2,
.Article_body h3,
.Article_body h4,
.Article_body h5,
.Article_body h6,
.Article_body p {
  margin-top: 28px;
  margin-bottom: 28px;
}
.Article_body h1 {
  font-size: 3rem;
}
.Article_body h2 {
  font-size: 2.8rem;
}
.Article_body h3 {
  font-size: 2.6rem;
}
.Article_body h4 {
  font-size: 2.4rem;
}
.Article_body h5 {
  font-size: 2.2rem;
}
.Article_body h6 {
  font-size: 2rem;
}
.Article_body p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.Article_body p img {
  display: block;
  margin: 0 auto;
}
.Article_body p + h1,
.Article_body p + h2,
.Article_body p + h3,
.Article_body p + h4,
.Article_body p + h5,
.Article_body p + h6 {
  margin-top: 40px;
}
.Article_body ul,
.Article_body ol {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 0 2rem;
}
.Article_body ul ul,
.Article_body ul ol,
.Article_body ol ul,
.Article_body ol ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.Article_body code {
  padding: 2px;
  border-radius: 2px;
  color: #23282d;
  background: #f3f4f5;
  font-family: Menlo, Consolas, monaco, monospace;
  font-size: inherit;
}
.Article_body .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  margin-bottom: 28px;
}
.Article_body .alignleft {
  text-align: left;
}
.Article_body .alignright {
  text-align: right;
}
.Article_body .aligncenter {
  text-align: center;
}
.Article_body .wp-block-table table {
  border-collapse: collapse;
}
.Article_body .wp-block-table th,
.Article_body .wp-block-table td {
  padding: 0.5em;
  border: 1px solid;
  word-break: normal;
}
.Article_body .wp-block-image {
  margin-bottom: 2.8rem;
}
.Article_body .wp-block-image .alignright {
  margin-left: 2.8rem;
}
.Article_body .wp-block-image .alignleft {
  margin-right: 2.8rem;
}
.Article_body figcaption {
  text-align: center;
}
.Article_body .wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px;
  padding-left: 1em;
}
.Article_body .wp-caption,
.Article_body .gallery-caption,
.Article_body figcaption {
  color: #666;
  font-size: 1rem;
  font-style: italic;
  max-width: 100%;
}
.Article_body + footer {
  margin-top: 8rem;
}
@media screen and (max-width: 599px) {
  .Article_body h2,
.Article_body h3 {
    margin-bottom: 10px;
  }
  .Article_body h2 {
    font-size: 2rem;
  }
  .Article_body h3 {
    font-size: 1.8rem;
  }
  .Article_body h4 {
    font-size: 1.4rem;
  }
  .Article_body p {
    margin-bottom: 10px;
  }
}
.Article_body .has-huge-font-size {
  font-size: 4.8rem;
}
.Article_body .has-large-font-size {
  font-size: 3.6rem;
}
.Article_body .has-medium-font-size {
  font-size: 2rem;
}
.Article_body .has-normal-font-size {
  font-size: 1.6rem;
}
.Article_body .has-small-font-size {
  font-size: 1.3rem;
}
.Article_media {
  margin-bottom: 60px;
}
.Article_mediaTitle {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 2rem;
}
.Article_mediaItemTitle {
  margin-top: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
.Article_mediaItemTitle .video_title {
  cursor: pointer;
}
.Article_mediaList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: -8px;
}
.Article_mediaItem {
  flex: 1 1 33.33333%;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 8px;
  max-width: 33.33333%;
}
.Article_mediaItem .video_thumbnail {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 75%;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}
.Article_mediaItem .video_thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease, transform 0.4s ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Article_mediaItem .video_thumbnail:hover img {
  opacity: 0.65;
  transform: scale(1.2);
}
.Article_mediaItem .video_thumbnail p {
  display: none;
}
.Article_mediaItem .video_thumbnail:hover p {
  display: block;
  font-size: 1.4em;
  position: absolute;
  font-weight: bold;
  color: white;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.Article_mediaItem .Image_thumbnail {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 75%;
  background-color: #000;
  overflow: hidden;
  cursor: pointer;
}
.Article_mediaItem .Image_thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease, transform 0.4s ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Article_mediaItem .Image_thumbnail:hover img {
  opacity: 0.65;
  transform: scale(1.2);
}
.Article_mediaItem .Image_thumbnail p {
  display: none;
}
.Article_mediaItem .Image_thumbnail:hover p {
  display: block;
  font-size: 1.4em;
  position: absolute;
  font-weight: bold;
  color: white;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.Article_mediaItem img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.Article_mediaItem iframe {
  height: 100%;
}
@media screen and (max-width: 599px) {
  .Article_mediaItem {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.Article_navigation {
  display: flex;
  padding: 30px 0;
  margin: 30px 0;
  justify-content: space-between;
}
.Article_navigation a {
  position: relative;
  display: block;
  max-width: 244px;
  color: inherit;
  font-size: 1.4rem;
}
.Article_navigation a:hover {
  text-decoration: underline;
}
.Article_navigation a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  width: 33px;
  height: 22px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.Article_navigationPrev {
  padding-left: 53px;
}
.Article_navigationPrev::before {
  left: 0;
  background-image: url(./assets/arrow_left.png);
}
.Article_navigationNext {
  padding-right: 53px;
}
.Article_navigationNext::before {
  right: 0;
  background-image: url(./assets/arrow_right.png);
}
@media screen and (max-width: 599px) {
  .Article_navigation {
    margin: 35px 0 15px;
  }
  .Article_navigation a {
    width: 50%;
    text-align: justify;
  }
  .Article_navigation a::before {
    width: 19px;
    height: 14px;
  }
  .Article_navigationPrev {
    padding-left: 29px;
    padding-right: 10px;
  }
  .Article_navigationNext {
    padding-right: 29px;
    padding-left: 10px;
  }
}

.Form {
  margin-bottom: 60px;
}
.Form &gt; .Container {
  max-width: 950px;
}
@media screen and (max-width: 599px) {
  .Form {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .Form_tabs {
    display: flex;
    justify-content: space-around;
  }
}
.Form_tab {
  padding: 20px 30px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.4s ease;
}
@media screen and (max-width: 599px) {
  .Form_tab {
    box-shadow: none;
    background: white;
    border-radius: 32px;
    transition: all 1s ease;
  }
}
.Form_tab.-isActive {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07), 1px 0 18px 0 rgba(0, 0, 0, 0.12);
  color: #0015D6;
  z-index: 2;
  cursor: initial;
}
@media screen and (max-width: 599px) {
  .Form_tab.-isActive {
    color: white;
    border-radius: 32px;
  }
}
.Form_tab.-isActive:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: #fff;
  top: 100%;
  left: 0;
}
.Form_tab:focus {
  outline: 0;
}
@media screen and (min-width: 600px) {
  .Form_tab:not([class*=-isActive]):hover {
    background-color: #d2d2d2;
  }
}
@media screen and (max-width: 599px) {
  .Form_tab {
    background-color: #fff;
  }
  .Form_tab:not([class*=-isActive]):active {
    background-color: #d2d2d2;
  }
}
.Form_tabContent {
  display: none;
}
.Form_tabContent.-isActive {
  display: block;
}
@media screen and (max-width: 599px) {
  .Form_content {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.Form_inner {
  position: relative;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07), 1px 0 18px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 599px) {
  .Form_inner {
    padding: 30px 15px 60px;
    box-shadow: none;
  }
}
.Form_inner .text-divider {
  margin: 6rem 0;
  display: flex;
  align-items: center;
  color: #cecece;
}
.Form_inner .text-divider::before, .Form_inner .text-divider::after {
  content: "";
  height: 1px;
  background-color: #eee;
  flex-grow: 1;
}
.Form_inner .text-divider::before {
  margin-right: 2rem;
}
.Form_inner .text-divider::after {
  margin-left: 2rem;
}
.Form_inner .line_register_button h3 {
  position: absolute;
  height: 36px;
  line-height: 36px;
}
@media screen and (max-width: 599px) {
  .Form_inner .line_register_button h3 {
    position: relative;
    font-size: 1.4rem;
    height: 20px;
    line-height: 20px;
  }
}
.Form_inner .line_register_button a img {
  height: 36px;
  display: block;
  margin: 2rem auto;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07), 1px 0 18px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease;
}
@media screen and (max-width: 599px) {
  .Form_inner .line_register_button a img {
    margin: 1.5rem auto;
  }
}
.Form_inner .line_register_button a:hover img, .Form_inner .line_register_button a:focus img {
  box-shadow: none;
}
.Form_table {
  width: 100%;
  margin-bottom: 30px;
}
.Form_table th,
.Form_table td {
  padding: 15px;
  font-size: 1.6rem;
}
.Form_table th {
  width: 170px;
  padding-left: 0;
  padding-right: 40px;
  text-align: left;
}
.Form_table input[type=text],
.Form_table input[type=email],
.Form_table input[type=tel],
.Form_table select {
  height: 44px;
  padding: 10px;
  background-color: #fff;
}
.Form_table select {
  cursor: pointer;
}
.Form_table textarea {
  width: 100%;
  padding: 10px;
  resize: vertical;
}
.Form_table input,
.Form_table select,
.Form_table textarea {
  border: 1px solid #e3e3e3;
  transition: border 0.4s, box-shadow 0.4s;
  font-size: 1.6rem;
}
.Form_table input:focus,
.Form_table select:focus,
.Form_table textarea:focus {
  border-color: #0015D6;
  outline: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.Form_table .w100 {
  width: 100%;
}
.Form_table .w35 {
  width: 35%;
}
.Form_table .vat {
  vertical-align: top;
}
@media screen and (max-width: 599px) {
  .Form_table {
    margin-bottom: 0;
  }
  .Form_table th,
.Form_table td {
    display: block;
  }
  .Form_table th {
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
  }
  .Form_table td {
    padding: 15px 0 30px;
  }
  .Form_table input[type=text],
.Form_table input[type=email],
.Form_table input[type=tel],
.Form_table select {
    height: 44px;
  }
  .Form_table .w35 {
    width: 100%;
  }
}
.Form_submitSuccess {
  margin-bottom: 15px;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .Form_submitSuccess {
    font-size: 1.4rem;
  }
}
.Form_submitError {
  margin-bottom: 15px;
  color: #d0021b;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .Form_submitError {
    font-size: 1.4rem;
  }
}
.Form_complete {
  margin-bottom: 30px;
  text-align: center;
}
.Form_complete h3 {
  margin-bottom: 1em;
  font-size: 1.8rem;
}
.Form_toTop a,
.Form_toTop input, .Form_submit a,
.Form_submit input {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  padding: 25px 30px;
  background-size: 200%;
  background-position: 100%;
  border-radius: 54px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: pointer;
  border: 0;
}
.Form_toTop a:hover,
.Form_toTop input:hover, .Form_submit a:hover,
.Form_submit input:hover {
  background-position: 0;
  box-shadow: none;
}

.StaticPage &gt; .Container {
  max-width: 950px;
}
.StaticPage_body {
  font-size: 1.4rem;
}
.StaticPage_body.-privacyPolicy h3 {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: bold;
}
.StaticPage_body.-privacyPolicy h3:not(:first-child) {
  margin-top: 2em;
}
.StaticPage_body.-privacyPolicy p {
  margin: 1em 0;
  white-spacing: pre-line;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-inner {
  width: 80%;
  padding: 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  transform: scale(1.2);
  transition: 0.2s;
}
.popup-inner::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.popup-inner img {
  width: 100%;
}
.popup-inner .youtube_player {
  position: absolute;
  width: 80%;
  height: 80%;
  background-color: white;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup.is-show .popup-inner {
  transform: scale(1);
}
.popup.is-show .black-background {
  background-color: rgba(0, 0, 0, 0.8);
}
.popup .black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.close-btn .close-btn i {
  font-size: 20px;
  color: #333;
}

.preview p {
  background: skyblue;
  color: white;
  font-size: 20px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.siteMessage p {
  background: #eed124;
  color: black;
  font-size: 20px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}

.custom-logo {
  width: auto;
}

.WidgetArticleList_item {
  list-style: none;
  padding-bottom: 3rem;
}
.WidgetArticleList_inner {
  display: flex;
}
.WidgetArticleList_thumb {
  position: relative;
  display: block;
  width: 120px;
  min-width: 120px;
  max-height: 67.5px;
  padding-top: 67.5px;
  background-color: #000;
  overflow: hidden;
}
.WidgetArticleList_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s ease, transform 0.4s ease;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.WidgetArticleList_thumb:hover img {
  opacity: 0.65;
  transform: scale(1.2);
}
.WidgetArticleList_date {
  display: block;
  font-size: 1.1rem;
  opacity: 0.5;
  color: #000;
}
.WidgetArticleList_titleArea {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.WidgetArticleList_title {
  font-size: 1.6rem;
  line-height: 1.4;
  padding-top: 3px;
}
.WidgetArticleList_title a {
  color: #000;
  transition: color 0.2s;
}
.WidgetArticleList_title a:hover {
  color: #0989FB;
}
@media screen and (max-width: 959px) {
  .WidgetArticleList_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.WidgetArticleList_tags {
  opacity: 0.65;
  font-size: 1.2rem;
}

.tagcloud a {
  display: inline-block;
  margin: 0 0.1em 0.6em 0;
  padding: 0.6em;
  line-height: 1;
  text-decoration: none;
  color: #23282d;
  background-color: #fff;
  border: 1px solid #23282d;
  border-radius: 4px;
  font-size: 8pt !important;
}
.tagcloud a:hover {
  color: #0989FB;
  border: 1px solid #0989FB;
}
.tagcloud a:before {
  content: "# ";
}

.wpcom-instagram-images.wpcom-instagram-columns-3 a {
  overflow: hidden;
}
.wpcom-instagram-images.wpcom-instagram-columns-3 a div {
  transition: all 0.4s ease;
}
.wpcom-instagram-images.wpcom-instagram-columns-3 a:hover div, .wpcom-instagram-images.wpcom-instagram-columns-3 a:focus div {
  transform: scale(1.2);
}

[class^=swiper-button-] {
  transition: all 0.3s ease;
}

.swiper-container {
  width: 100%;
  display: flex;
  transition: opacity 0.6s ease, transform 0.3s ease;
  padding: 1rem 0 4rem 0;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-slide {
  overflow: hidden;
  background-color: white;
  width: 60%;
  max-width: 1280px;
  opacity: 0.4;
  transition: opacity 0.3s ease !important;
  background-color: white;
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-slide .content {
  width: 100%;
}
.swiper-slide .content .title {
  font-size: 20px;
}

[class^=swiper-button-] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}

.swiper-button-prev {
  transform: translateX(50px);
}

.swiper-button-next {
  transform: translateX(-50px);
}

.swiper-pagination {
  bottom: 0;
}
.swiper-pagination-bullet {
  position: relative;
  padding: 2px;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 0.4;
  margin: 0 9px !important;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 0px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet:hover, .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-width: 1px;
}

.Section .Container .timeline-Footer .u-floatLeft {
  display: none;
}
.Section .Container #twitter-widget-0 {
  display: none;
}
.Section .Container .SocialMedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Section .Container .SocialMedia .SocialMedia_Item {
  padding-left: 1.951952%;
  padding-right: 1.951952%;
  padding-bottom: 3.903904%;
}
.Section .Container .SocialMedia .SocialMedia_Item iframe {
  background-color: white;
  width: 100%;
}
.Section .Container .SocialMedia .SocialMedia_Item .fb-wrapper {
  background-color: white;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .Section .Container .SocialMedia .SocialMedia_Item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .Section .Container .SocialMedia .SocialMedia_Item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .Section .Container .SocialMedia .SocialMedia_Item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.Section .Container .SocialMedia .SocialMedia_Item .social-media-hedear {
  color: white;
  padding: 2rem;
}
.Section .Container .SocialMedia .SocialMedia_Item .twitter-header {
  background-color: #1da1f2;
}
.Section .Container .SocialMedia .SocialMedia_Item .facebook-header {
  background-color: #3b5998;
}
</pre></body></html>