@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Noto Sans JP", YakuHanJP, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

img:-moz-loading {
  visibility: hidden;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.common-button {
  display: block;
  width: 260px;
}

.slick-slider:focus,
.slick-track:focus,
.slick-slide:focus {
  outline: none;
}

.container {
  overflow: hidden;
}

.common-image-absolute {
  position: absolute !important;
  transform: translateZ(-100px);
  z-index: 1 !important;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    min-width: 1250px;
  }

  .wrapper {
    width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .display-flex {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.21rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }

  .common-button {
    width: 3.12rem;
    height: 0.77rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.first-header {
  background-color: #fff;
  position: relative;
  z-index: 99999999;
}
.first-header .box-menu-shadow {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  padding: 15px 20px 9px;
  text-align: center;
  position: relative;
  z-index: 9;
}
.first-header .menu-button {
  display: inline-block;
  cursor: pointer;
}

.header-top-navigation {
  background-color: rgba(255, 255, 255, 0.95);
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 80px;
}

@media print, (min-width: 768px) {
  header {
    height: 95px;
  }

  .menu-content {
    display: flex;
    justify-content: center;
    font-weight: 500;
    padding: 23px 20px;
    align-items: center;
  }
  .menu-content li {
    margin: 0 18px;
  }
  .menu-content li img {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 0.93rem;
  }

  .header-top-navigation {
    top: 0.8rem;
  }

  .first-header .box-menu-shadow {
    padding: 0.15rem 0.2rem 0.09rem;
  }
  .first-header .menu-button {
    width: 0.58rem;
  }
  .first-header .menu-content {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.165rem;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.1rem;
  }
  .first-header .menu-content li {
    margin: 0.06rem 0.2rem;
  }
  .first-header .menu-content img {
    height: 0.32rem;
    width: auto;
    margin: 0.1rem 0.1rem 0.1rem 0;
  }
}
.second-header {
  position: relative;
  width: 100%;
  z-index: 99999;
  border-bottom: 5px solid #fff;
  box-shadow: 0 10px 0px 0px rgba(0, 0, 0, 0.5);
}
.second-header.is-fixed {
  top: 0;
  position: fixed;
}

.second-header .beginning_menu .beginning_menu_lists {
  background-color: rgba(3, 37, 195, 0.8);
  display: none;
  position: absolute;
}
.second-header .beginning_menu .beginning_menu_lists a {
  color: #ffffff;
  position: relative;
}
.second-header .beginning_menu .beginning_menu_lists a::before{
  content: ">";
  display: block;
  position: absolute;
  top: 2px;
  left: -15px;
}

@media only screen and (max-width: 767px) {
  body.menu-opened .first-header {
    z-index: 99999;
  }
  body.menu-opened .second-header {
    z-index: 99999999;
  }
}
@media print, (min-width: 768px) {
  .second-header {
    background-image: url(../img/common/backgroun_header.png);
    background-size: cover;
    min-width: 1250px;
  }
  .second-header .logo {
    display: block;
    margin-right: 18px;
  }
  .second-header .wrapper {
    display: flex;
    align-items: center;
  }

  .beginning_menu_pc {
    display: block;
    position: relative;
    top: -0.6px;
  }
  .beginning_menu_sp {
    display: none;
  }
  .second-header .beginning_menu {
    cursor: pointer;
    margin-right: 22px;
    position: relative;
  }
  .second-header .beginning_menu .beginning_menu_lists {
    padding: 15px 0 10px 38px;
    top: 80px;
    left: 0;
    width: 300px;
  }
  .second-header .beginning_menu .beginning_menu_list.list_02 {
    margin-top: 5px;
  }
  .header-navigation ul {
    display: flex;
    justify-content: center;
  }
  .header-navigation ul li {
    padding: 9px 0 7px;
  }
  .header-navigation ul li:nth-of-type(2),
  .header-navigation ul li:nth-of-type(3),
  .header-navigation ul li:nth-of-type(5) {
    margin-left: 4px;
  }
  .header-navigation ul li:nth-of-type(4),
  .header-navigation ul li:nth-of-type(6),
  .header-navigation ul li:nth-of-type(7) {
    margin-left: 2px;
  }

  .header-navigation ul {
    display: flex;
    justify-content: center;
  }
  .header-navigation ul li {
    padding: 9px 0 7px;
  }

  .has-sub-menu {
    position: relative;
  }
  .has-sub-menu:hover .sub-menu {
    display: block;
  }

  .sub-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 75px;
    width: 400px;
    height: 190px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 7px 8px;
  }
  .sub-menu .text {
    margin-top: 10px;
  }

  .list-download-button {
    display: flex;
    margin-top: 10px;
  }
  .list-download-button li {
    margin: 0 9px;
  }
  .list-download-button li a {
    display: block;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url(../img/common/sp/backgroun_header.png);
    background-size: cover;
    margin: 0 -0.12rem;
    padding: 0.1rem 0.08rem 0.04rem 0.84rem;
    border-bottom: 0.06rem solid #fff;
  }
  .logo img {
    width: 1.83rem;
  }
  .logo h1 {
    width: 1.83rem;
    position: relative;
    z-index: 9;
  }

  .beginning_menu_pc {
    display: none;
  }
  .beginning_menu_sp {
    display: block;
    left: -0.12rem;
    position: relative;
  }
  .second-header .beginning_menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .second-header.open-navigation .beginning_menu {
    display: none;
  }
  .second-header .beginning_menu .beginning_menu_img img {
    width: 9.8vw;
  }
  .second-header .beginning_menu .beginning_menu_lists {
    padding: 5vw 0 3vw 7vw;
    top: 9.8vw;
    left: 0;
    width: 77vw;
  }
  .second-header .beginning_menu .beginning_menu_list {
    font-size: 3.46vw;
  }
  .second-header .beginning_menu .beginning_menu_list.list_02 {
    margin-top: 3vw;
  }
  .second-header .beginning_menu_sp .beginning_menu_close {
    background-color: rgba(1, 21, 113, 0.8);
    color: #ffffff;
    display: none;
    padding: 1.2vw 0;
    position: absolute;
    top: 30.4vw;
    left: 0;
    text-align: center;
    width: 77vw;
  }

  .button-menu-sp {
    width: 0.8rem;
    height: 0.6rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    background: url(../img/common/sp/icon_button_menu.png) left top;
    background-size: 100% auto;
  }

  .sub-menu {
    display: none;
  }

  .header-navigation {
    text-align: center;
    position: relative;
    z-index: 9;
    display: none;
    padding-bottom: 1.2rem;
  }
  .header-navigation ul {
    height: calc(100vh - 0.86rem);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.2rem;
  }
  .header-navigation li:not(.has-sub-menu) {
    padding: 0 0.38rem;
  }
  .header-navigation li:last-child {
    padding-bottom: 1.7rem;
  }

  .second-header {
    border-bottom: 0.05rem solid #fff;
    box-shadow: 0 0.08rem 0px 0px rgba(0, 0, 0, 0.5);
  }
  .second-header.open-navigation {
    top: 0;
  }
  .second-header.open-navigation.is-fixed {
    position: fixed;
  }
  .second-header.open-navigation .button-menu-sp {
    background: url(../img/common/sp/icon_button_menu.png) left bottom;
    background-size: 100% auto;
  }
  .second-header.open-navigation .wrapper {
    position: relative;
  }
  .second-header.open-navigation .wrapper:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
@media print {
  .second-header {
    display: none !important;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  position: relative;
  z-index: 99999;
}
footer::before {
  content: "";
  display: block;
  width: 120%;
  height: 200%;
  background-color: #000;
  transform: rotate(-4deg) translateX(-50%);
  position: absolute;
  left: 50%;
}
footer .inner {
  background-color: #fff;
  font-weight: 500;
  position: relative;
}
footer .copyright {
  color: #002abc;
}

.footer-menu {
  display: flex;
}

@media print, (min-width: 768px) {
  footer::before {
    top: -136px;
  }
  footer .inner {
    padding: 31px 32px;
    justify-content: space-between;
    align-items: center;
  }

  footer .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  footer .left .icon_jasrac {
    margin-left: 20px;
    width: 50px;
  }

  .footer-menu {
    font-size: 14px;
  }
  .footer-menu li {
    line-height: 1;
    padding: 0 15px;
    border-left: 1px solid #002abc;
  }
  .footer-menu li:first-child {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  footer::before {
    top: -1.05rem;
  }
  footer .copyright {
    text-align: center;
    margin-top: 0.44rem;
  }
  footer .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0.74rem 0.32rem 0.38rem;
    font-size: 0.21rem;
  }
  footer .left {
    display: flex;
    justify-content: center;
    align-items: baseline;
    order: 2;
    min-width: 100%;
  }
  footer .left small {
    display: block;
  }
  footer .left .icon_jasrac {
    margin-left: 2vw;
    width: 10vw;
  }
  footer .right {
    order: 1;
    min-width: 100%;
  }

  .footer-menu {
    display: flex;
    font-size: 0.21rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-menu li {
    line-height: 1;
    padding: 0 0.24rem;
    margin: 0.15rem 0;
    border-right: 0.02rem solid #002abc;
  }
  .footer-menu li:last-child {
    border-right: none;
  }
}
/* MODULES
 * ----------------------------------------------- */
.keyvisual .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.keyvisual .keyvisual-inner,
.keyvisual .wrapper {
  height: 100%;
}

.title-keyvisual img {
  width: 100%;
}

.keyvisual,
.keyvisual-inner {
  position: relative;
  z-index: 1;
}
.keyvisual:after,
.keyvisual-inner:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}
.keyvisual:after,
.keyvisual-inner:after {
  background: #000;
  transform: skewY(-5.5deg);
}

@media print, (min-width: 768px) {
  .is-sub {
    background: url(../img/common/keyvisual_bg.jpg) top -70px center/auto no-repeat;
  }

  .keyvisual {
    height: 377px;
  }

  .keyvisual-news .title-keyvisual {
    width: 315px;
  }

  .keyvisual-inner:after {
    bottom: -112px;
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .is-sub {
    background: url(../img/common/sp/keyvisual_bg.jpg) top -0.8rem center/100% auto no-repeat;
  }

  .keyvisual {
    height: 3.3rem;
  }
  .keyvisual .title-keyvisual {
    position: relative;
    top: -0.25rem;
  }

  .keyvisual-news .title-keyvisual {
    width: 3.15rem;
  }

  .keyvisual-inner:before {
    bottom: -2.18rem;
    height: 4rem;
  }
  .keyvisual-inner:after {
    bottom: -1.12rem;
    height: 2rem;
  }
}
@media print, (min-width: 768px) {
  .document-common {
    padding: 92px 0 160px;
    background: url(../img/common/document_background_01.jpg) top center/cover no-repeat;
  }
}
@media only screen and (max-width: 767px) {
  .document-common {
    padding: 0.68rem 0 1.35rem;
    background: url(../img/common/sp/document_background_01.jpg) top center/cover no-repeat;
  }
  .document-common .wrapper {
    padding: 0;
  }
}

.document-head {
  text-align: center;
}
.document-head img {
  width: auto;
  height: 100%;
}
@media print, (min-width: 768px) {
  .document-head {
    height: 200px;
    margin-bottom: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .document-head {
    height: 2rem;
    margin-bottom: 0.02rem;
  }
}

.document-body {
  position: relative;
}
.document-body .body-wrapper {
  position: relative;
  z-index: 1;
}
@media print, (min-width: 768px) {
  .document-body {
    padding: 94px 55px 108px 75px;
  }
}
@media only screen and (max-width: 767px) {
  .document-body {
    padding: 1.32rem 0.4rem 1.14rem 0.66rem;
  }
}

.document-story .story-title {
  font-weight: 500;
}
.document-story .story-detail {
  word-break: break-all;
}
@media print, (min-width: 768px) {
  .document-story {
    font-size: 13px;
    line-height: 1.85;
  }
  .document-story:not(:last-child) {
    margin-bottom: 28px;
  }
  .document-story .story-title {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .document-story {
    font-size: 0.21rem;
    line-height: 1.43;
  }
  .document-story:not(:last-child) {
    margin-bottom: 0.3rem;
  }
}

.background-common-document {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.background-common-document .background-canvas, .background-common-document .placeholder-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.background-common-document .background-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.background-common-document .background-placeholder span {
  position: absolute;
}
.background-common-document .background-canvas {
  z-index: 0;
}
@media print, (min-width: 768px) {
  .background-common-document .placeholder-layer span {
    width: 10px;
    height: 10px;
    margin: -5px;
    position: absolute;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(1) {
    top: 66px;
    left: 37px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(2) {
    top: 9px;
    right: 33px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(3) {
    right: 22px;
    bottom: 60px;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(4) {
    bottom: 39px;
    left: 39px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(1) {
    top: 31px;
    left: 14px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(2) {
    top: 26px;
    right: 9px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(3) {
    right: 37px;
    bottom: 17px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(4) {
    bottom: 64px;
    left: 41px;
  }
}
@media only screen and (max-width: 767px) {
  .background-common-document .placeholder-layer span {
    width: 0.1rem;
    height: 0.1rem;
    margin: -0.05rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(1) {
    top: 1rem;
    left: 0.32rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(2) {
    top: 0.44rem;
    right: 0.28rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(3) {
    right: 0.22rem;
    bottom: 0.58rem;
  }
  .background-common-document .placeholder-layer:nth-child(1) span:nth-child(4) {
    bottom: 0.36rem;
    left: 0.34rem;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(1) {
    top: 33px;
    left: 6px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(2) {
    top: 30px;
    right: 5px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(3) {
    right: 16px;
    bottom: 7px;
  }
  .background-common-document .placeholder-layer:nth-child(2) span:nth-child(4) {
    bottom: 32px;
    left: 18px;
  }
}

.wow {
  visibility: hidden;
}

@media print {
  .wow {
    visibility: visible;
  }
}
/* COMMON ANIMATION
 * ----------------------------------------------- */
.animated {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

@-webkit-keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@-webkit-keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

.skv-animate {
  visibility: hidden;
}

.skv-passed {
  visibility: visible !important;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Attention seekers */
@-webkit-keyframes bounce {
  from,
20%,
53%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
20%,
53%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* PAGE
 * ----------------------------------------------- */
.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

@media print, (min-width: 768px) {
  .social-links {
    /* padding-right: 18px; */
  }
  .social-links .item {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .social-links {
    margin-top: -0.25rem;
    /* padding-right: 0.1rem; */
  }
  .social-links .item {
    margin-left: 0.3rem;
  }
  .social-links .item:first-child img {
    width: 0.52rem;
  }
  .social-links .item:nth-child(2) img {
    width: 0.47rem;
  }
}
.content-news {
  margin: 0 auto;
  background: #fff;
}
.content-news:after, .content-news:before {
  content: "";
  background: #fff;
  position: absolute;
  left: 0;
}
.content-news:after {
  width: 100%;
  transform: skewY(-2.3deg);
  z-index: 0;
}

.content-news,
.wrapper-news {
  position: relative;
}

.wrapper-news:before {
  content: "";
  background: #000;
  position: absolute;
  z-index: -1;
}

.detail-news {
  border-bottom: 1px solid #000b71;
}

.link-news {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.link-news .time-news {
  color: #0b67ff;
  letter-spacing: 0.05em;
}
.link-news .time-category {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.link-news .category {
  text-align: center;
  color: #fff;
  letter-spacing: 0.025em;
  display: inline-block;
}

.select-box {
  position: relative;
  user-select: none;
  display: inline-block;
}

.custom-select {
  position: relative;
  height: 100%;
  z-index: 1;
  margin-left: auto;
}
.custom-select.open .select-option {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.custom-select-trigger {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  font-style: italic;
  background: url(../img/news/bg_select.png) no-repeat center center;
  background-size: cover;
}
.custom-select-trigger span {
  position: relative;
  color: #000101;
  letter-spacing: 0.02em;
  font-weight: 900;
}
.custom-select-trigger span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.block-selection {
  text-align: right;
  position: absolute;
}

.select-option {
  background: #000;
  position: relative;
  display: block;
  left: 0;
  right: 0;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  top: 0;
}
.select-option .custom-option {
  cursor: pointer;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: left;
}
.select-option .custom-option a {
  display: inline-block;
  width: 100%;
}
.select-option span {
  color: #fff;
  position: relative;
  display: inline-block;
}
.select-option span:before {
  content: "";
  display: inline-block;
  background: url(../img/news/list-icn.png) center/100% auto no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pagination {
  margin: 0 auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pagination li {
  letter-spacing: 0.25em;
}
.pagination .is-disabled {
  pointer-events: none;
}
.pagination .current {
  color: #e8ab0a;
}
.pagination .arrow {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  background: center/auto 100% no-repeat;
}
.pagination .previous {
  left: 0;
  background-image: url(../img/common/left_icn_01.png);
}
.pagination .next {
  right: 0;
  background-image: url(../img/common/right_icn_01.png);
}
.pagination a {
  display: block;
  height: 100%;
}
.pagination a.page-numbers {
  transition: color 0.3s;
}
.pagination a.page-numbers:hover {
  color: #e8ab0a;
}

.section-news {
  z-index: 1;
  position: relative;
  background: top center/100% auto no-repeat;
  background-size: cover;
}

@media print, (min-width: 768px) {
  .keyvisual {
    background-position: left 32px top;
  }
  .keyvisual .wrapper {
    padding: 14px 0 0 10px;
  }

  .content-news {
    width: 890px;
    padding: 36px 55px 74px 43px;
    border-left: 6px solid #000b71;
    border-right: 6px solid #000b71;
  }
  .content-news:before {
    width: 100%;
    height: 15px;
    box-shadow: 0 6px 0 0 #000b71, -6px 6px 0 0 #000b71;
    bottom: 0;
    transform: skewY(-0.7deg);
  }
  .content-news:after {
    height: 40px;
    top: -12px;
    box-shadow: 0 -6px 0 0 #000b71, 6px -6px 0 0 #000b71;
  }

  .wrapper-news {
    padding-left: 8px;
  }
  .wrapper-news:before {
    width: calc(100% - 53px);
    height: calc(100% + 24px);
    box-shadow: 6px 6px 0 0 #fff;
    left: 32px;
    top: -20px;
    transform: skewY(2.7deg) rotate(-0.1deg);
  }

  .list-news {
    margin-bottom: 70px;
  }

  .link-news {
    flex-wrap: wrap;
    padding: 20px 0 18px;
  }
  .link-news .time-news {
    margin-right: 6px;
    width: 145px;
  }
  .link-news .time-category {
    font-size: 16px;
    margin-right: 10px;
    width: 100%;
  }
  .link-news .category {
    max-width: 130px;
    width: 130px;
    min-height: 28px;
    background: repeat center/106px 24px;
  }
  .link-news .text-news {
    line-height: 1.66875;
    font-size: 16px;
  }

  .block-selection {
    right: 54px;
    top: -50px;
    height: 49px;
  }

  .custom-select {
    min-width: 220px;
    max-width: 220px;
    top: 0;
    right: -1px;
    border-radius: 10px;
  }

  .custom-select-trigger {
    border: 4px solid #000;
    border-radius: 8px;
    padding: 6px 5px 5px 16px;
  }
  .custom-select-trigger::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    transition: opacity 0.25s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .custom-select-trigger:hover::after {
    opacity: 0.2;
  }
  .custom-select-trigger span {
    top: -2px;
    font-size: 20px;
    padding-left: 24px;
    text-shadow: 2px 2px 0 #e8ab0a;
    text-align: left;
  }
  .custom-select-trigger span:before {
    top: 55%;
    width: 24px;
    height: 18px;
    background: url(../img/news/icon_arrow.png) no-repeat center/24px 18px;
  }

  .select-option {
    width: 100%;
    padding: 17px 20px 27px;
  }
  .select-option .custom-option {
    font-size: 18px;
    padding: 7px 0;
  }
  .select-option span {
    padding-left: 20px;
  }
  .select-option span:before {
    width: 8px;
    height: 14px;
  }

  .pagination {
    /* width: 440px; */
    width: 620px;
    padding-left: 6px;
  }

  .pagination li {
    margin: 0 14px;
    font-size: 22px;
  }
  .pagination .arrow {
    width: 33px;
    height: 46px;
  }

  .section-news {
    margin-top: -120px;
    padding-top: 95px;
    padding-bottom: 206px;
    background-image: url(../img/news/bg_news.png);
  }
}
@media only screen and (max-width: 767px) {
  .content-news {
    padding: 0.35rem 0.2rem 0.73rem 0.26rem;
    border: 0.06rem solid #000b71;
    border-top: none;
  }
  .content-news:after, .content-news:before {
    transform: skewY(-2.3deg);
  }
  .content-news:before {
    width: 100%;
    height: 0.15rem;
    box-shadow: 0 0.06rem 0 0 #000b71, -0.06rem 0.06rem 0 0 #000b71;
    bottom: 0;
    transform: skewY(-0.7deg);
  }
  .content-news:after {
    height: 0.32rem;
    top: -0.12rem;
    box-shadow: 0 -0.06rem 0 0 #000b71, 0.06rem -0.06rem 0 0 #000b71;
  }

  .wrapper-news {
    margin-right: 0.05rem;
    padding: 0 0.02rem 0 0.07rem;
  }
  .wrapper-news:before {
    width: calc(100% + .05rem);
    height: calc(100% + .2rem);
    box-shadow: 0.06rem 0.06rem 0 0 #fff;
    left: 0.01rem;
    top: -0.21rem;
    transform: skewY(3deg);
  }

  .list-news {
    margin-bottom: 0.74rem;
  }

  .link-news {
    flex-wrap: wrap;
    padding: 0.23rem 0 0.18rem;
  }
  .link-news .time-category {
    font-size: 0.18rem;
    margin-bottom: 0.12rem;
    width: 100%;
  }
  .link-news .category {
    min-width: 1.1rem;
    height: 0.28rem;
    background: repeat center/1.06rem 0.24rem;
    font-size: 0.16rem;
    padding-top: 1px;
  }
  .link-news .time-news {
    margin-right: 0.13rem;
    width: 1.8rem;
  }
  .link-news .text-news {
    font-size: 0.22rem;
    line-height: 1.486;
  }

  .block-selection {
    height: 0.59rem;
    right: 0.2rem;
    top: -0.5rem;
  }

  .custom-select {
    min-width: 2.6rem;
    max-width: 2.6rem;
    right: 0.03rem;
    border-radius: 0.1rem;
  }

  .custom-select-trigger {
    padding: 0.08rem 0.05rem 0.08rem 0;
    border-radius: 0.08rem;
    border: 0.04rem solid #000;
  }
  .custom-select-trigger span {
    padding-left: 0.5rem;
    text-shadow: 0.02rem 0.02rem 0 #e8ab0a;
    font-size: 0.24rem;
    top: -0.03rem;
    text-align: left;
  }
  .custom-select-trigger span:before {
    top: 60%;
    left: 0.2rem;
    width: 0.26rem;
    height: 0.19rem;
    background: url(../img/news/icon_arrow.png) no-repeat center/100% auto;
  }

  .select-option {
    padding: 0.26rem 0;
    top: -0.08rem;
  }
  .select-option .custom-option {
    font-size: 0.22rem;
    padding: 0.09rem 0.22rem;
  }
  .select-option span {
    padding-left: 0.2rem;
  }
  .select-option span:before {
    width: 0.08rem;
    height: 0.14rem;
  }

  .pagination {
    /* width: 5.2rem; */
    width: 100%;
  }

  .pagination li {
    margin: 0 0.11rem;
    font-size: 0.265rem;
  }
  .pagination .arrow {
    width: 0.39rem;
    height: 0.54rem;
  }

  .section-news {
    margin-top: -1.26rem;
    padding-top: 1.35rem;
    padding-bottom: 1.6rem;
    background-image: url(../img/news/sp/bg_news.png);
  }
}
.is-dark-purple .category {
  border: 2px solid #5373ff;
  background-image: url(../img/news/bg_category_dark_purple.jpg);
}

.is-purple .category {
  border: 2px solid #ab8eff;
  background-image: url(../img/news/bg_category_purple.jpg);
}

.is-pink .category {
  border: 2px solid #ff94db;
  background-image: url(../img/news/bg_category_pink.jpg);
}

.is-green .category {
  border: 2px solid #5de571;
  background-image: url(../img/news/bg_category_green.jpg);
}

.is-blue .category {
  border: 2px solid #4dd2f8;
  background-image: url(../img/news/bg_category_blue.jpg);
}

@media print, (min-width: 768px) {
  .is-pink .category {
    padding-bottom: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .is-dark-purple .category,
  .is-purple .category,
  .is-pink .category,
  .is-green .category,
  .is-blue .category {
    border-width: 0.02rem;
    width: 1.5rem;
  }
}
.section-news.is-news-detail .news-title {
  border-bottom: 1px solid #000;
  letter-spacing: 0.05em;
}
.section-news.is-news-detail .news-text {
  color: #06112e;
}
.section-news.is-news-detail .news-image {
  text-align: center;
}
.section-news.is-news-detail .detail-news {
  border-bottom: none;
}
.section-news.is-news-detail .list-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  left: 0;
}
.section-news.is-news-detail .list-button li:first-child {
  position: absolute;
  bottom: 0;
}
.section-news.is-news-detail .list-button li:last-child {
  position: absolute;
  bottom: 0;
}
.section-news.is-news-detail .list-button .center-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: inline-block;
}
.section-news.is-news-detail .news-button {
  display: inline-flex;
  background: url(../img/common/btn_bg_01.png) center/cover no-repeat;
  overflow: hidden;
}
.section-news.is-news-detail .news-button span {
  display: flex;
  align-items: center;
  color: #000101;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-style: italic;
}
.section-news.is-news-detail .previous-button span::before,
.section-news.is-news-detail .return-button span::before {
  content: "";
  display: inline-block;
  background: center/100% auto no-repeat;
}
.section-news.is-news-detail .previous-button span::before {
  background-image: url(../img/common/left_icn_02.png);
}
.section-news.is-news-detail .return-button span::before {
  background-image: url(../img/news/news_list_icn.png);
}
.section-news.is-news-detail .next-button span::after {
  content: "";
  display: inline-block;
  background: url(../img/common/right_icn_02.png) center/100% auto no-repeat;
}

@media print, (min-width: 768px) {
  .section-news.is-news-detail .content-news {
    padding: 20px 51px 66px 43px;
  }
  .section-news.is-news-detail .detail-news {
    margin-bottom: 4px;
  }
  .section-news.is-news-detail .news-title {
    margin-bottom: 25px;
    padding-bottom: 27px;
    font-size: 24px;
    letter-spacing: -0.03em;
  }
  .section-news.is-news-detail .news-text {
    font-size: 16px;
    line-height: 1.5;
  }
  .section-news.is-news-detail .news-text:not(:last-child) {
    margin-bottom: 33px;
  }
  .section-news.is-news-detail .news-image {
    margin-bottom: 37px;
  }
  .section-news.is-news-detail .list-button {
    padding: 0 48px 0 42px;
    bottom: -34px;
  }
  .section-news.is-news-detail .list-button li:first-child {
    left: 42px;
  }
  .section-news.is-news-detail .list-button li:last-child {
    right: 48px;
  }
  .section-news.is-news-detail .list-button .center-button {
    width: 160px;
  }
  .section-news.is-news-detail .news-button {
    min-width: 160px;
    height: 49px;
    border-radius: 10px;
    position: relative;
  }
  .section-news.is-news-detail .news-button::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #fff;
    transition: opacity 0.25s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .section-news.is-news-detail .news-button:hover::after {
    opacity: 0.2;
  }
  .section-news.is-news-detail .news-button span {
    font-size: 22px;
    text-shadow: 2px 2px 0 #e8ab0a;
    position: relative;
    top: -2px;
  }
  .section-news.is-news-detail .news-button span::before {
    background-position: top 2px center;
  }
  .section-news.is-news-detail .previous-button {
    padding: 0 2px 3px 23px;
  }
  .section-news.is-news-detail .previous-button span::before {
    width: 17px;
    height: 23px;
    margin-right: 2px;
  }
  .section-news.is-news-detail .return-button {
    padding: 0 0 3px 11px;
  }
  .section-news.is-news-detail .return-button span::before {
    width: 28px;
    height: 20px;
    position: relative;
    top: 2px;
  }
  .section-news.is-news-detail .next-button {
    padding: 0 0 3px 28px;
  }
  .section-news.is-news-detail .next-button span::after {
    width: 17px;
    height: 23px;
    margin-left: 11px;
    background-position: top 2px center;
  }
}
@media only screen and (max-width: 767px) {
  .section-news.is-news-detail .content-news {
    padding: 0.14rem 0.2rem 0.81rem 0.28rem;
  }
  .section-news.is-news-detail .link-news {
    padding-bottom: 0;
  }
  .section-news.is-news-detail .time-news {
    margin-right: 0.07rem;
  }
  .section-news.is-news-detail .news-title {
    margin-bottom: 0.18rem;
    padding-bottom: 0.17rem;
    font-size: 0.25rem;
    letter-spacing: 0.01em;
    line-height: 1.468;
  }
  .section-news.is-news-detail .news-text {
    font-size: 0.21rem;
    line-height: 1.42858;
    letter-spacing: 0.03em;
  }
  .section-news.is-news-detail .news-text:not(:last-child) {
    margin-bottom: 0.47rem;
  }
  .section-news.is-news-detail .news-image {
    margin-bottom: 0.48rem;
  }
  .section-news.is-news-detail .list-button {
    padding: 0 0.07rem 0 0.09rem;
    bottom: -0.34rem;
  }
  .section-news.is-news-detail .list-button li:first-child {
    left: 0.09rem;
  }
  .section-news.is-news-detail .list-button li:last-child {
    right: 0.07rem;
  }
  .section-news.is-news-detail .list-button .center-button {
    width: 1.93rem;
  }
  .section-news.is-news-detail .news-button {
    min-width: 1.93rem;
    height: 0.59rem;
    border-radius: 0.1rem;
  }
  .section-news.is-news-detail .news-button span {
    font-size: 0.26rem;
    text-shadow: 0.02rem 0.02rem 0 #e8ab0a;
    position: relative;
    top: 0.01rem;
  }
  .section-news.is-news-detail .previous-button {
    padding: 0 0.02rem 0.02rem 0.3rem;
  }
  .section-news.is-news-detail .previous-button span::before {
    width: 0.19rem;
    height: 0.26rem;
    margin-right: 0.02rem;
  }
  .section-news.is-news-detail .return-button {
    padding: 0 0 0.02rem 0.15rem;
  }
  .section-news.is-news-detail .return-button span::before {
    width: 0.34rem;
    height: 0.24rem;
    position: relative;
    top: 0.02rem;
  }
  .section-news.is-news-detail .next-button {
    padding: 0 0 0.02rem 0.36rem;
  }
  .section-news.is-news-detail .next-button span::after {
    width: 0.19rem;
    height: 0.26rem;
    margin-left: 0.13rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-news.is-news-detail .news-text {
    word-break: break-all;
  }

  .wrapper-news:before {
    transform: skewY(2.7deg) rotate(-0.15deg);
  }
}
main.is-pure, .keyvisual.is-pure, .section-news.is-pure {
  background: none !important;
}

.keyvisual.is-pure::after {
  display: none;
}
.keyvisual.is-pure .keyvisual-inner::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .keyvisual.is-pure {
    height: auto;
    padding: 0.3rem 0 1.27rem;
  }
}

@media only screen and (max-width: 767px) {
  .section-news.is-pure {
    padding-bottom: 0.65rem;
  }
}

/*# sourceMappingURL=news.css.map */
