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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
/*mixin--------------------------*/
/*-------------------------------*/
/* Chrome, Edge, Safari 対応 */
::-webkit-scrollbar {
  width: 8px; /* 横スクロールなら height */
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 9999px;
  border: none;
}

/* Firefox 対応 */
* {
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #231815;
  background-color: #FFF;
  min-height: 100vh;
}
@media (max-width: 1000px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

body.fixed {
  overflow: hidden;
  touch-action: none;
  height: 100vh;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #231815;
}

img, picture, video {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

section.default {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  section.default {
    padding: 80px 20px;
  }
}

span.no-br {
  display: inline-block;
}

span.no-br-pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  span.no-br-pc {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  span.no-br-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

.imgb01 {
  box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.15) inset, 0px 4px 20px 0px rgba(0, 0, 0, 0.15) inset;
  position: relative;
}
.imgb01 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 30vw;
  -o-object-position: 100% 31%;
     object-position: 100% 31%;
}
@media screen and (max-width: 768px) {
  .imgb01 img {
    height: 80vw;
  }
}

.imgf {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .imgf {
    display: none;
  }
}
.imgf img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 50vw;
  -o-object-position: 50% 87%;
     object-position: 50% 87%;
}

.sns-nav {
  z-index: 1010;
  position: fixed;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .sns-nav {
    top: 10px;
    left: 10px;
  }
}
.sns-nav li a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #16AE8B;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.sns-nav li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  background-image: url("../img/icon_x-w.svg");
}
@media screen and (max-width: 768px) {
  .sns-nav li a {
    width: 40px;
    height: 40px;
  }
}
.sns-nav.inview {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .sns-nav.active li a::before {
    background-image: url("../img/icon_x-b.svg");
  }
}

.to_top {
  cursor: pointer;
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .to_top {
    width: 45px;
    height: 45px;
    bottom: 5px;
    right: 5px;
  }
}
.to_top .to_top-base {
  position: relative;
}
.to_top .to_top-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
.to_top:hover .to_top-arrow {
  transform: translateY(-2px);
}

.gnav {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(35, 24, 21, 0.9);
  z-index: 1001;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  transition: 0.2s;
  opacity: 0;
  transform: translateX(-20px) scale(1.1);
}
@media screen and (max-width: 768px) {
  .gnav {
    max-width: unset;
  }
}
.gnav ul.gnav_inner {
  height: 100svh;
  margin-top: 80px;
}
.gnav ul.gnav_inner li {
  height: 60px;
  position: relative;
}
.gnav ul.gnav_inner li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #FFF;
  width: 0%;
  transition: width 0.2s ease;
  transition-delay: 0.2s;
}
.gnav ul.gnav_inner li a, .gnav ul.gnav_inner li .menu-text {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  color: #16AE8B;
  font-size: 2em;
  text-transform: uppercase;
  display: block;
  line-height: 60px;
  padding: 0 20px;
  position: relative;
  transition: 0.2s;
}
.gnav ul.gnav_inner li a:hover, .gnav ul.gnav_inner li .menu-text:hover {
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  .gnav ul.gnav_inner li a:hover, .gnav ul.gnav_inner li .menu-text:hover {
    transform: translateX(0);
  }
}
.gnav.active {
  opacity: 1;
  pointer-events: all;
  display: block;
  transform: translateX(0px) scale(1);
}
.gnav.active .gnav_inner li::after {
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(1)::after {
  transition-delay: 0s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(2)::after {
  transition-delay: 0.1s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(3)::after {
  transition-delay: 0.2s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(4)::after {
  transition-delay: 0.3s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(5)::after {
  transition-delay: 0.4s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(6)::after {
  transition-delay: 0.5s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(7)::after {
  transition-delay: 0.6s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(8)::after {
  transition-delay: 0.7s;
  width: 100%;
}

.gnav.active .gnav_inner li:nth-child(9)::after {
  transition-delay: 0.8s;
  width: 100%;
}

.nav_bar {
  z-index: 1000;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    background-image: url(../img/bg_w.jpg);
    background-size: cover;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  }
}

.nav_btn {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  z-index: 1011;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  cursor: pointer;
  background-image: url(../img/bg_w.jpg);
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    box-shadow: none;
    background-image: none;
  }
}
.nav_btn .bar {
  position: absolute;
  background-color: #16AE8B;
  transition: 0.2s;
  height: 3px;
  width: 40px;
  left: 10px;
}
.nav_btn .bar.bar1 {
  top: 19px;
}
.nav_btn .bar.bar2 {
  transition-delay: 0.05s;
  top: 29px;
}
.nav_btn .bar.bar3 {
  transition-delay: 0.1s;
  top: 39px;
}
.nav_btn .bar.bar4 {
  width: 0;
  transition-delay: 0.2s;
  transform-origin: left top;
  transform: rotate(26deg);
  top: 19px;
}
.nav_btn .bar.bar5 {
  width: 0;
  transition-delay: 0.15s;
  transform-origin: right top;
  transform: rotate(-26deg);
  top: 19px;
  left: unset;
  right: 10px;
}
.nav_btn.active {
  background-image: none;
}
.nav_btn.active .bar.bar1, .nav_btn.active .bar.bar2, .nav_btn.active .bar.bar3 {
  width: 0;
}
.nav_btn.active .bar.bar4, .nav_btn.active .bar.bar5 {
  width: 45px;
}

.loading {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg_g2.jpg);
  background-size: cover;
  background-color: #16AE8B;
}

.loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .loader {
    max-width: 240px;
  }
}

.fixed_bg {
  position: fixed;
  z-index: -10;
  background-image: url(../img/bg_w.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100lvh;
  width: 100%;
  background-color: #fff;
}

.noise_overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  background-image: url(../img/bg_l.png);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.3;
  overflow: hidden;
}
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 100px;
  }
}

#footer {
  z-index: 2;
  position: relative;
  box-shadow: rgba(17, 12, 46, 0.15) 0px -48px -100px 0px;
  padding: 50px 50px 50px;
  background-image: url(../img/bg_footer.jpg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 40px 20px 60px;
  }
}
#footer ul.share-texts {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 32px;
}
#footer ul.share-texts .icon-share {
  width: 16px;
}
#footer ul.share-texts a, #footer ul.share-texts #copy-button {
  cursor: pointer;
  transition: 0.1s;
}
#footer ul.share-texts a:hover, #footer ul.share-texts #copy-button:hover {
  opacity: 0.5;
}
#footer .wb_logo {
  width: 80px;
  margin: 0 auto 20px;
}
#footer ul.wb_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  margin: 0 auto 20px;
}
#footer ul.wb_sns li img {
  height: 40px;
  width: auto;
}
#footer ul.policies {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  font-size: 14px;
  margin: 0 auto 20px;
  margin-left: -1em;
}
#footer .copyright-footer {
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
}

.content .embed-youtube,
.content .wp-embed-aspect-16-9,
.content .wp-block-embed.is-type-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.content .embed-youtube iframe,
.content .wp-embed-aspect-16-9 iframe,
.content .wp-block-embed.is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content .wp-block-embed-x iframe,
.content .wp-block-embed-twitter iframe,
.content .wp-block-embed-instagram iframe,
.content .wp-block-embed-wordpress iframe,
.content .wp-block-embed-spotify iframe,
.content .wp-block-embed-facebook iframe {
  width: 100%;
  height: auto;
}
.content blockquote.twitter-tweet {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
  margin: 2em auto;
}
.content blockquote.twitter-tweet iframe {
  width: 100% !important;
  height: auto !important;
}
.content .has-text-color:not([class*=-color]) {
  color: inherit !important;
}
.content .has-background:not([class*=-background-color]) {
  background-color: inherit !important;
}
.content .has-text-color.has-white-color {
  color: #fff !important;
}
.content .has-text-color.has-black-color {
  color: #000 !important;
}
.content .has-text-color.has-red-color {
  color: red !important;
}
.content .has-black-color {
  color: #000000 !important;
}
.content .has-white-color {
  color: #ffffff !important;
}
.content .has-pale-pink-color {
  color: #f78da7 !important;
}
.content .has-vivid-red-color {
  color: #cf2e2e !important;
}
.content .has-luminous-vivid-orange-color {
  color: #ff6900 !important;
}
.content .has-luminous-vivid-amber-color {
  color: #fcb900 !important;
}
.content .has-light-green-cyan-color {
  color: #7bdcb5 !important;
}
.content .has-vivid-green-cyan-color {
  color: #00d084 !important;
}
.content .has-pale-cyan-blue-color {
  color: #8ed1fc !important;
}
.content .has-vivid-cyan-blue-color {
  color: #0693e3 !important;
}
.content .has-very-light-gray-color {
  color: #eeeeee !important;
}
.content .has-cyan-bluish-gray-color {
  color: #abb8c3 !important;
}
.content .has-very-dark-gray-color {
  color: #313131 !important;
}
.content .has-vivid-purple-color {
  color: #9b51e0 !important;
}
.content .has-black-background-color {
  background-color: #000000 !important;
}
.content .has-white-background-color {
  background-color: #ffffff !important;
}
.content .has-pale-pink-background-color {
  background-color: #f78da7 !important;
}
.content .has-vivid-red-background-color {
  background-color: #cf2e2e !important;
}
.content .has-luminous-vivid-orange-background-color {
  background-color: #ff6900 !important;
}
.content .has-luminous-vivid-amber-background-color {
  background-color: #fcb900 !important;
}
.content .has-light-green-cyan-background-color {
  background-color: #7bdcb5 !important;
}
.content .has-vivid-green-cyan-background-color {
  background-color: #00d084 !important;
}
.content .has-pale-cyan-blue-background-color {
  background-color: #8ed1fc !important;
}
.content .has-vivid-cyan-blue-background-color {
  background-color: #0693e3 !important;
}
.content .has-very-light-gray-background-color {
  background-color: #eeeeee !important;
}
.content .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3 !important;
}
.content .has-very-dark-gray-background-color {
  background-color: #313131 !important;
}
.content .has-vivid-purple-background-color {
  background-color: #9b51e0 !important;
}
.content .has-background {
  padding: 20px;
}
.content .has-small-font-size {
  font-size: 0.8em;
}
.content .has-medium-font-size {
  font-size: 1em;
}
.content .has-large-font-size {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .content .has-large-font-size {
    font-size: 1.2em;
  }
}
.content .has-huge-font-size {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  .content .has-huge-font-size {
    font-size: 1.3em;
  }
}
.content .has-x-large-font-size {
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  .content .has-x-large-font-size {
    font-size: 1.5em;
  }
}
.content .has-text-align-center {
  text-align: center;
}
.content .has-text-align-right {
  text-align: right;
}
.content .has-text-align-left {
  text-align: left;
}
.content .aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.content .alignleft {
  float: left;
}
.content .alignright {
  float: right;
}
.content .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
.content .wp-block-image.alignfull img,
.content .wp-block-image.alignwide img,
.content .size-full img, .content .size-large img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
.content a {
  color: #0693e3;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.content a:hover {
  opacity: 0.7;
}
.content em {
  font-style: italic;
}
.content p, .content figure {
  min-height: 1.5em;
  margin: 1em 0;
}
.content p:empty::before {
  content: " ";
}
.content .twitter-tweet {
  margin: 0 auto;
}
.content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1em;
  margin-right: -1em;
  margin-bottom: 2em;
}
.content .wp-block-columns .wp-block-column {
  flex: 0 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
}
.content .wp-block-columns .wp-block-column[style*="50%"] {
  max-width: calc(50% - 0em);
}
.content .wp-block-columns .wp-block-column[style*="33.33%"], .content .wp-block-columns .wp-block-column[style*="33.34%"] {
  max-width: calc(33.333% - 0em);
}
@media screen and (max-width: 768px) {
  .content .wp-block-columns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content .wp-block-columns.columns-2up .wp-block-column {
    width: 50% !important;
    max-width: 50% !important;
  }
  .content .wp-block-columns:not(.columns-2up) .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.content .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.content .wp-block-gallery .blocks-gallery-item {
  margin: 0;
  padding: 0;
  width: 100%;
}
.content .wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
}
.content .wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.content .wp-block-gallery.columns-2 .blocks-gallery-item {
  width: calc(50% - 0.5em);
}
.content .wp-block-gallery.columns-3 .blocks-gallery-item {
  width: calc(33.333% - 0.67em);
}
.content .wp-block-gallery.columns-4 .blocks-gallery-item {
  width: calc(25% - 0.75em);
}
@media screen and (max-width: 768px) {
  .content .wp-block-gallery .blocks-gallery-item {
    width: 100% !important;
  }
}
.content .wp-block-quote {
  border-left: 3px solid #231815;
  padding-left: 20px;
}
.content sup {
  font-size: 0.75em;
  vertical-align: super;
}
.content sub {
  font-size: 0.75em;
  vertical-align: sub;
}
.content s, .content del {
  text-decoration: line-through;
}
.content code {
  font-family: monospace;
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 3px;
}

#top {
  position: relative;
  width: 100%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #top {
    background-image: url(../img/bg_g2.jpg);
  }
}
#top .spacer {
  display: none;
}
@media screen and (max-width: 768px) {
  #top .spacer {
    display: block;
    height: 60px;
    width: 100%;
  }
}
#top .top_inner {
  position: relative;
  width: 100%;
  background-image: url(../img/bg_g2.jpg);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  #top .top_inner {
    box-shadow: none;
    background-image: none;
    display: block;
  }
}
#top .charas.swiper {
  width: 100%;
  margin: 0 auto 0 0;
  position: relative;
  overflow: hidden;
  height: 62vw;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper {
    width: 100%;
    height: auto;
  }
}
#top .charas.swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide .ckv-base {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide .ckv-base {
    transition: transform 5s linear;
    transform: scale(1.1);
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide .ckv-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide .ckv-logo {
    display: block;
    transition: 1s;
    opacity: 1;
    transform: scale(1.1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide .ckv-line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide .ckv-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 1s;
    transform: translateX(5px);
    transition-delay: 1s;
    opacity: 0;
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide .ckv-names-top {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide .ckv-names-top {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
    transition-timing-function: linear;
  }
}
#top .charas.swiper .swiper-wrapper .swiper-slide .ckv-names-bottom {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide .ckv-names-bottom {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s;
    transition-timing-function: linear;
  }
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-prev .ckv-base,
  #top .charas.swiper .swiper-wrapper .swiper-slide-active .ckv-base {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-prev .ckv-logo {
    opacity: 0;
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-next .ckv-logo {
    opacity: 0;
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-active .ckv-logo {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-prev .ckv-line {
    opacity: 0;
    transform: translateX(5px);
  }
  #top .charas.swiper .swiper-wrapper .swiper-slide-active .ckv-line {
    opacity: 1;
    transform: translateX(0px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-prev .ckv-names-top {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-prev .ckv-names-bottom {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #top .charas.swiper .swiper-wrapper .swiper-slide-active .ckv-names-top, #top .charas.swiper .swiper-wrapper .swiper-slide-active .ckv-names-bottom {
    opacity: 1;
  }
}
#top .charas.swiper .swiper-pagination {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  justify-content: flex-start;
  gap: 4px;
  z-index: 10;
  transform: skew(-40deg);
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .swiper-pagination {
    display: flex;
  }
}
#top .charas.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 5px;
  border-radius: 0;
  transition: all 0.5s ease;
  background: #16AE8B;
  opacity: 1;
  margin: 0;
}
#top .charas.swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 120px;
}
#top .charas.swiper .logo-pc-l {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .logo-pc-l {
    display: none;
  }
}
#top .charas.swiper .logo-pc-t {
  mix-blend-mode: screen;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  #top .charas.swiper .logo-pc-t {
    display: none;
  }
}
#top .texts {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .texts {
    width: 100%;
    position: relative;
    top: 0;
  }
}
#top .texts .text_inner {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top .texts .text_inner {
    padding: 0;
    display: block;
    top: 0;
    right: unset;
    width: 100%;
    position: relative;
  }
}
#top .texts h1.title {
  width: 50%;
  padding: 0 0% 0 5%;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  #top .texts h1.title {
    padding: 0;
    width: 100%;
    margin: 0 auto 4vw;
  }
}
#top .texts h1.title img {
  width: 100%;
  max-width: none;
}
#top .texts .release {
  width: 50%;
  padding: 0 5% 0 20%;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .texts .release {
    position: relative;
    margin: 0 auto;
    width: 40%;
    padding: 0;
    bottom: unset;
    right: unset;
  }
}
#top .texts .release.inview {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.body_news {
  background-image: url(../img/bg_w.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}
.body_news .logo {
  max-width: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .body_news .logo {
    top: 60px;
  }
}
.body_news .logo img {
  height: 170px;
  width: auto;
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .body_news .logo img {
    height: 70px;
  }
}
.body_news h2.section_title {
  z-index: 1;
  position: fixed;
  top: 80px;
  right: 12.5%;
}
@media screen and (max-width: 768px) {
  .body_news h2.section_title {
    right: 0;
    top: 100px;
  }
}
.body_news h2.section_title img {
  width: 134px;
}
@media screen and (max-width: 768px) {
  .body_news h2.section_title img {
    width: 187px;
  }
}
.body_news .section_inner {
  padding: 200px 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .body_news .section_inner {
    padding: 200px 20px 80px;
  }
}

#news-top #category-buttons {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #news-top #category-buttons {
    margin-bottom: 40px;
  }
}
#news-top #category-buttons button {
  cursor: pointer;
  font-size: 1.3em;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  background-color: #16AE8B;
  border: 0;
  padding: 0 10px;
  text-align: center;
  width: 224px;
  height: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: all;
  box-shadow: rgba(50, 50, 93, 0.05) 0px 50px 100px -20px, rgba(0, 0, 0, 0.1) 0px 30px 60px -30px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #news-top #category-buttons button {
    min-width: calc(33.33% - 6.8px);
    width: auto;
    height: 32px;
    font-size: 1em;
  }
}
#news-top #category-buttons button:hover {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  #news-top #category-buttons button:hover {
    letter-spacing: 0;
  }
}
#news-top #category-buttons button.active {
  cursor: unset;
  pointer-events: none;
  background-color: #FFF;
  color: #16AE8B;
  border: solid 1px #16AE8B;
}
#news-top #news-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #news-top #news-list {
    gap: 10px;
  }
}
#news-top #news-list .news-item {
  width: calc(33.33% - 20px);
  background: #16AE8B;
  border: solid 1px #16AE8B;
  box-shadow: rgba(50, 50, 93, 0.05) 0px 50px 100px -20px, rgba(0, 0, 0, 0.1) 0px 30px 60px -30px;
}
@media screen and (max-width: 768px) {
  #news-top #news-list .news-item {
    width: calc(50% - 5px);
  }
}
#news-top #news-list .news-item a {
  display: block;
}
#news-top #news-list .news-item a .news-thumb {
  background-color: #FFF;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
#news-top #news-list .news-item a .news-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: 0.2s;
}
#news-top #news-list .news-item a .news-meta {
  line-height: 1.8;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #news-top #news-list .news-item a .news-meta {
    padding: 10px;
  }
}
#news-top #news-list .news-item a .data-cat {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5em;
}
#news-top #news-list .news-item a .news-date {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #E6FF77;
  background-color: #231815;
  font-size: 1.125em;
  padding: 0px 10px 0px 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #news-top #news-list .news-item a .news-date {
    font-size: 1em;
    padding: 0 5px 0 7px;
  }
}
#news-top #news-list .news-item a .news-category {
  display: none;
}
#news-top #news-list .news-item a .news-title {
  font-size: 1.125em;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #news-top #news-list .news-item a .news-title {
    font-size: 0.9em;
  }
}
#news-top #news-list .news-item a:hover .news-thumb img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  #news-top #news-list .news-item a:hover .news-thumb img {
    transform: scale(1);
  }
}

#news-article #post-detail {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #FFF;
  border: solid 1px #16AE8B;
  padding: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #news-article #post-detail {
    padding: 20px;
  }
}
#news-article #post-detail time.news-date {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #E6FF77;
  background-color: #231815;
  font-size: 1.125em;
  padding: 0px 10px 0px 10px;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  display: inline-block;
}
#news-article #post-detail h2.post-title {
  color: #16AE8B;
  font-size: 1.5em;
  margin-bottom: 1em;
  border-bottom: solid 1px #231815;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #news-article #post-detail h2.post-title {
    font-size: 1.2em;
  }
}
#news-article #post-detail .category-site {
  display: none;
}
#news-article #post-detail img {
  width: auto;
  max-width: 100%;
}
#news-article #post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  max-width: 1200px;
  margin: 20px auto 0;
}
#news-article .nav-link {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  height: 40px;
  line-height: 40px;
  color: #FFF;
  background-color: #16AE8B;
  font-size: 1.3em;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news-article .nav-link {
    font-size: 1em;
    height: 32px;
    line-height: 32px;
    padding: 0 20px;
    min-width: 60px;
  }
}
#news-article .nav-link-next {
  width: 2em;
}
#news-article .nav-link-next span {
  transition: 0.2s;
  display: inline-block;
}
#news-article .nav-link-next:hover span {
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  #news-article .nav-link-next:hover span {
    transform: none;
  }
}
#news-article .nav-link-prev {
  width: 2em;
}
#news-article .nav-link-prev span {
  transition: 0.2s;
  display: inline-block;
}
#news-article .nav-link-prev:hover span {
  transform: translateX(-10px);
}
@media screen and (max-width: 768px) {
  #news-article .nav-link-prev:hover span {
    transform: none;
  }
}
#news-article .nav-link-list {
  width: 10em;
}
#news-article .nav-link-list span {
  transition: 0.2s;
}
#news-article .nav-link-list:hover span {
  letter-spacing: 0.2em;
}
#news-article .nav-link.invalid {
  pointer-events: none;
  opacity: 0.4;
  background-color: transparent;
  border: solid 1px #16AE8B;
  color: #16AE8B;
}

.vd_space {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 40vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .vd_space {
    height: 125vw;
  }
}
.vd_space video {
  z-index: 1;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .vd_space video {
    height: 125vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.vd_space .movie-left {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 200px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .vd_space .movie-left {
    width: 120px;
    left: -30px;
  }
}
.vd_space .movie-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 149px;
  opacity: 0.5;
  z-index: 4;
  width: 80px;
}
.vd_space .overlay-dot {
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(circle, rgba(237, 255, 134, 0.4) 0.5px, transparent 0.5px);
  background-position: 0 0;
  background-size: 7px 7px;
}
.vd_space #btn_watch-trailer {
  cursor: pointer;
  border: solid 1px #FFF;
  color: #FFF;
  font-size: 2.5em;
  line-height: 1;
  padding: 10px 14px 10px 10px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  z-index: 5;
  top: 40px;
  right: 40px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .vd_space #btn_watch-trailer {
    top: 10px;
    right: 10px;
    font-size: 1.7em;
    padding: 5px 10px 5px 5px;
  }
}
.vd_space #btn_watch-trailer:hover {
  opacity: 0.6;
}
.vd_space #btn_watch-trailer span {
  text-transform: uppercase;
  display: inline-block;
}
.vd_space #btn_watch-trailer::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../img/icon_play-circle.svg);
  background-size: 32px 32px;
  background-repeat: no-repeat;
  display: inline-block;
  line-height: 1;
  margin-top: 2px;
  margin-right: 0.1em;
}
@media screen and (max-width: 768px) {
  .vd_space #btn_watch-trailer::before {
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
}
.vd_space #btn_watch-trailer:hover {
  opacity: 1;
}

.teaser-trailer {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .teaser-trailer {
    padding: 0px 20px 30px;
  }
}
.teaser-trailer #btn_trailer {
  max-width: 540px;
  width: 28%;
  min-width: 420px;
  margin: 0 auto;
  color: #FFF;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-100px);
}
.teaser-trailer #btn_trailer img {
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.13);
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .teaser-trailer #btn_trailer {
    min-width: unset;
    width: 100%;
    margin: 30px auto 0;
  }
}
.teaser-trailer #btn_trailer:hover {
  box-shadow: none;
}
.teaser-trailer #btn_trailer:hover img {
  transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  .teaser-trailer #btn_trailer:hover img {
    transform: scale(1);
  }
}

#trailer-window {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9997;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media screen and (max-width: 768px) {
  #trailer-window {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
#trailer-window .trailer_inner {
  height: 100%;
  height: 100svh;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#trailer-window .trailer_inner .trailer_main {
  max-width: inherit;
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  max-height: 100vh;
  max-width: 150vh;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
#trailer-window .trailer_inner .trailer_main .youtube_outer {
  margin: 0 auto;
  max-width: calc(100% - 8em);
  position: relative;
}
@media screen and (max-width: 768px) {
  #trailer-window .trailer_inner .trailer_main .youtube_outer {
    width: 100%;
    margin-bottom: 0px;
    max-width: 100%;
  }
}
#trailer-window .trailer_inner .trailer_main .youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
@media screen and (max-width: 768px) {
  #trailer-window .trailer_inner .trailer_main .youtube_outer .youtube_embed {
    border-radius: 0px;
  }
}
#trailer-window .trailer_inner .trailer_main .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer-window .trailer_inner .trailer_main.show {
  opacity: 1;
  transform: scale(1);
}
#trailer-window .trailer_inner .overlay_trailer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
}
#trailer-window .close_btn_trailer {
  position: absolute;
  cursor: pointer;
  z-index: 9998;
  top: -40px;
  right: 0;
  width: 100px;
  height: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  #trailer-window .close_btn_trailer {
    width: 70px;
    height: 28px;
    top: unset;
    bottom: -28px;
    right: calc(50% - 35px);
  }
}
#trailer-window .close_btn_trailer span {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.2s;
  width: 107.7px;
  transform: translate(-50%, -50%) rotate(21.8deg);
}
#trailer-window .close_btn_trailer span:last-of-type {
  transform: translate(-50%, -50%) rotate(-21.8deg);
}
@media screen and (max-width: 768px) {
  #trailer-window .close_btn_trailer span {
    width: 75.4px;
    transform: translate(-50%, -50%) rotate(21.8deg);
  }
  #trailer-window .close_btn_trailer span:last-of-type {
    transform: translate(-50%, -50%) rotate(-21.8deg);
  }
}
#trailer-window .close_btn_trailer:hover span {
  transform: translate(-50%, -50%) rotate(16deg);
}
#trailer-window .close_btn_trailer:hover span:last-of-type {
  transform: translate(-50%, -50%) rotate(-16deg);
}
@media screen and (max-width: 768px) {
  #trailer-window .close_btn_trailer:hover span {
    transform: translate(-50%, -50%) rotate(16deg);
  }
  #trailer-window .close_btn_trailer:hover span:last-of-type {
    transform: translate(-50%, -50%) rotate(-16deg);
  }
}

#intro {
  overflow: hidden;
}
#intro .section_inner {
  padding: 60px 50px 120px;
  position: relative;
  background-image: url(../img/bg_b.jpg);
  background-size: 100%;
  background-repeat: repeat;
  background-position: bottom left;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    background-size: 570px;
    padding: 60px 0 80px;
  }
}
#intro .section_inner h2 {
  position: absolute;
  top: 0;
  left: 0;
}
#intro .section_inner h2 img {
  height: 11vw;
  width: auto;
  max-height: 121px;
}
#intro .section_inner .intro_copy {
  position: relative;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .intro_copy {
    margin-bottom: 10px;
  }
}
#intro .section_inner .intro_copy .intro_copy-base {
  position: relative;
}
#intro .section_inner .intro_copy .intro_copy-text {
  filter: drop-shadow(1px 0px 0px #EDFF86);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #intro .section_inner .intro_copy .intro_copy-text {
    filter: none;
    padding-left: 10px;
  }
}
#intro .section_main {
  transform: skewX(-5deg) rotate(-5deg);
  max-width: 1100px;
  margin: 0 auto;
}
#intro .text_body {
  position: relative;
  color: #EDFF86;
  margin-top: -5%;
}
@media screen and (max-width: 768px) {
  #intro .text_body {
    padding: 0 20px;
  }
}
#intro .text_body p {
  font-size: 1.25em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #intro .text_body p {
    font-size: 0.96em;
  }
}

#story {
  background-image: url(../img/bg_g2.jpg);
  background-size: 100%;
  background-repeat: repeat;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  #story {
    background-size: 1920px;
  }
}
#story .section_inner {
  padding: 60px 50px 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #story .section_inner {
    padding: 60px 0px 80px;
  }
}
#story .section_inner h2 {
  position: absolute;
  right: 0;
  top: -10px;
}
@media screen and (max-width: 768px) {
  #story .section_inner h2 {
    bottom: 2px;
    top: unset;
  }
}
#story .section_inner h2 img {
  height: 11vw;
  width: auto;
  max-height: 121px;
}
#story .section_inner h3 {
  filter: drop-shadow(3px 0px 0px #00A469);
  width: 60%;
  position: absolute;
  left: 50px;
  top: -8vw;
}
#story .section_inner h3 img {
  transform: skewX(-5deg) rotate(-5deg);
}
@media (max-width: 1000px) {
  #story .section_inner h3 {
    min-width: 616px;
  }
}
@media screen and (max-width: 768px) {
  #story .section_inner h3 {
    filter: drop-shadow(1px 0px 0px #00A469);
    left: 20px;
    width: calc(100% - 40px);
    top: -30vw;
    min-width: unset;
  }
}
#story .section_inner .logo_bfr {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
#story .section_inner .logo_bfr img {
  position: absolute;
  width: 40%;
  top: -10%;
  right: -3%;
}
@media screen and (max-width: 768px) {
  #story .section_inner .logo_bfr img {
    top: -20%;
    right: -20%;
    width: 90%;
  }
}
#story .section_inner .text_body {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  transform: skewX(-5deg) rotate(-5deg);
}
@media screen and (max-width: 768px) {
  #story .section_inner .text_body {
    padding: 0 20px;
  }
}
#story .section_inner .text_body p {
  color: #FFF;
  font-size: 1.25em;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #story .section_inner .text_body p {
    font-size: 1em;
  }
}

#caststaff .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner {
    padding: 60px 0;
  }
}
#caststaff .section_inner h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 3.75em;
  color: #16AE8B;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner h2 {
    margin-left: 10px;
  }
}
#caststaff .section_inner .title_staff span,
#caststaff .section_inner .title_cast span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px) scale(1.1);
}
#caststaff .section_inner .section_inner2 {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 {
    margin: 0 auto 48px;
  }
}
#caststaff .section_inner .section_inner2:last-of-type {
  margin-bottom: 0;
}
#caststaff .section_inner .section_inner2 ul.cast_list {
  margin-top: -5px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item {
  position: relative;
  cursor: pointer;
  background-image: url(../img/bg_g2.jpg);
  background-size: 1920px;
  width: 16.66%;
  overflow: hidden;
  margin-right: -1px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.cast_list .cast_item {
    margin-right: 0;
    width: 50%;
  }
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast_img-base {
  position: relative;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast_img-base img {
  transition: 0.2s;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast_img-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast-comment_btn {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  writing-mode: vertical-lr;
  top: 0;
  right: 0;
  text-transform: uppercase;
  color: #16AE8B;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 1px;
  align-items: center;
  transition: 0.2s;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast-comment_btn::after {
  content: "";
  transition: 0.2s;
  transform: rotate(0deg);
  background-image: url(../img/icon_plus.svg);
  width: 18px;
  height: 16px;
  background-size: 18px 16px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-top: 0.1em;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item .cast-comment_btn span {
  font-size: 1.3em;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item:hover .cast_img-base img {
  transform: scale(1.07);
  opacity: 0.8;
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item:hover .cast-comment_btn {
  background-color: rgba(255, 255, 255, 0.3);
}
#caststaff .section_inner .section_inner2 ul.cast_list .cast_item:hover .cast-comment_btn::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list {
    padding: 0 20px;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item {
  line-height: 1.8;
  border-bottom: solid 1px #C2C2C2;
  padding: 1em 0;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_names {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_names .staff_role {
  color: #16AE8B;
  font-size: 1.1em;
  width: 9em;
  text-align: center;
  border: solid 1px #16AE8B;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_names .staff_role {
    font-size: 0.85em;
    white-space: nowrap;
    width: 8em;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_names .staff_name {
  font-size: 2em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_names .staff_name {
    font-size: 1.3em;
    margin-left: 0.75em;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.4s;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_btn::after {
  content: "";
  transition: 0.4s;
  background-image: url(../img/icon_plus.svg);
  width: 28px;
  height: 28px;
  background-size: 28px 28px;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_btn::after {
    width: 19px;
    height: 19px;
    background-size: 19px 19px;
    margin-left: 2px;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_btn span {
  color: #16AE8B;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof .staff_btn span {
    font-size: 1em;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof:hover .staff_btn {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff_prof:hover .staff_btn {
    opacity: 1;
  }
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff-comment {
  margin-top: 0.5em;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item .staff-comment p {
  text-align: justify;
  margin-bottom: 1em;
}
#caststaff .section_inner .section_inner2 ul.staff_list .staff_item.is-open .staff_prof .staff_btn::after {
  animation: change-icon 0.01s forwards;
  transform: rotate(180deg);
}

@keyframes change-icon {
  to {
    background-image: url(../img/icon_minus.svg);
  }
}
.cast_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cast_modal {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.cast_modal .cast_modal_inner {
  padding: 80px 40px 0px 80px;
  background: #fff;
  background-image: url(../img/bg_w.jpg);
  background-size: 1920px;
  width: 90%;
  max-width: 1200px;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner {
    background-size: 1000px;
    background-position: center center;
  }
}
.cast_modal .cast_modal_inner .cast_modal_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
  top: 0;
  left: 0;
  mix-blend-mode: color-burn;
}
.cast_modal .cast_modal_inner .cast_modal_bg img {
  position: absolute;
  top: 0;
  right: -40%;
  width: 100%;
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_bg img {
    width: 210%;
    top: -30%;
    r: -50%;
  }
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner {
    overflow: auto;
    padding: 60px 0px 0px;
    width: 100%;
    position: relative;
    height: 100%;
    min-height: 100vh;
  }
}
.cast_modal .cast_modal_inner.fade-out-left {
  opacity: 0;
  transform: translateX(-30px);
}
.cast_modal .cast_modal_inner.fade-out-right {
  opacity: 0;
  transform: translateX(30px);
}
.cast_modal .cast_modal_inner.fade-in {
  opacity: 1;
  transform: translateX(0);
}
.cast_modal .cast_modal_inner.fade-out-only {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cast_modal .cast_modal_inner .fixed-target {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.cast_modal .cast_modal_inner .cast_modal_content {
  position: relative;
  z-index: 2;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper {
  display: flex;
  gap: 40px;
  position: relative;
  height: 50vh;
  max-height: 800px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper {
    overflow: visible;
    flex-direction: column;
    gap: 0px;
    padding: 0 20px;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_img {
  width: 220px;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_img {
    position: relative;
    margin: 0 auto 20px;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts {
  width: calc(100% - 260px);
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts {
    padding-right: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role {
  color: #16AE8B;
  margin-bottom: 30px;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names .cast_modal_role_name {
  position: relative;
  font-size: 2em;
  z-index: 2;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names .cast_modal_role_name {
    margin-right: 0;
    margin-bottom: 0.25em;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names .cast_modal_role_name-en {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5em;
  color: #FFF;
  -webkit-text-stroke: 1px #16AE8B;
  opacity: 0.4;
  font-size: 2.5em;
  position: absolute;
  z-index: 1;
  display: inline-block;
  top: 0;
  left: 0.5em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_names .cast_modal_role_name-en {
    font-size: 2em;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_body {
  line-height: 1.8;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_role .cast_modal_role_body p {
  text-align: justify;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act {
  position: relative;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act {
    padding-bottom: 80px;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names .cast_modal_act_name {
  font-size: 2em;
  margin-right: 0.5em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names .cast_modal_act_name {
    margin-bottom: 0.25em;
    margin-right: 0;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names .cast_modal_act_name span {
  font-size: 0.6em;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names .cast_modal_act_name-en {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFF;
  -webkit-text-stroke: 1px #231815;
  font-size: 2.5em;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0.5em;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_names .cast_modal_act_name-en {
    font-size: 2em;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
  }
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_body {
  position: relative;
  line-height: 1.8;
  padding-bottom: 40px;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .cast_modal_act_body p {
  text-align: justify;
}
.cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .sub-comment {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
  display: inline-block;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1em;
  color: #231815;
  text-transform: uppercase;
  margin-right: 10px;
  margin-top: 13px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner .cast_modal_content .cast_modal_upper .cast_modal_texts .cast_modal_act .sub-comment {
    position: relative;
    margin: 0 auto 10px;
    text-align: center;
    width: 100%;
  }
}
.cast_modal .cast_modal_inner .cast_modal_act_body p,
.cast_modal .cast_modal_inner .cast_modal_comment {
  font-size: 1em;
  line-height: 1.8;
}
.cast_modal .cast_modal_nav {
  width: 100%;
  color: #16AE8B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: static;
  width: 90%;
  max-width: 1200px;
  background-image: url(../img/bg_w.jpg);
  background-size: 1920px;
  border-top: solid 1px #16AE8B;
  height: 50px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_nav {
    background-position: center center;
    background-size: 1000px;
    margin-top: 30px;
    padding: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
  }
}
.cast_modal .cast_modal_nav.fade-out-left {
  opacity: 0;
  transform: translateX(-30px);
}
.cast_modal .cast_modal_nav.fade-out-right {
  opacity: 0;
  transform: translateX(30px);
}
.cast_modal .cast_modal_nav.fade-in {
  opacity: 1;
  transform: translateX(0);
}
.cast_modal .cast_modal_nav.fade-out-only {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cast_modal .cast_modal_nav button {
  background: none;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #16AE8B;
  z-index: 3;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  font-size: 1.3em;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 80px;
  text-align: center;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_nav button {
    line-height: 50px;
    height: 50px;
  }
}
.cast_modal .prev, .cast_modal .next {
  border: 0;
  width: 20%;
}
.cast_modal .prev span {
  transition: 0.2s;
}
.cast_modal .prev:hover span {
  transform: translateX(-10px);
}
@media screen and (max-width: 768px) {
  .cast_modal .prev:hover span {
    transform: none;
  }
}
.cast_modal .next span {
  transition: 0.2s;
}
.cast_modal .next:hover span {
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  .cast_modal .next:hover span {
    transform: none;
  }
}
.cast_modal .button_close {
  border: 0;
  border-right: solid 1px #16AE8B;
  border-left: solid 1px #16AE8B;
  width: 60%;
}
.cast_modal .button_close span {
  transition: 0.2s;
}
.cast_modal .button_close:hover span {
  letter-spacing: 0.2em;
}
.cast_modal .close_btn {
  position: absolute;
  cursor: pointer;
  z-index: 9998;
  top: -40px;
  right: 0;
  width: 100px;
  height: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .cast_modal .close_btn {
    width: 70px;
    height: 28px;
    top: unset;
    bottom: -28px;
    right: calc(50% - 35px);
    position: fixed;
    top: 10px;
    right: 10px;
    left: unset;
  }
}
.cast_modal .close_btn span {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.2s;
  width: 107.7px;
  transform: translate(-50%, -50%) rotate(21.8deg);
}
@media screen and (max-width: 768px) {
  .cast_modal .close_btn span {
    background-color: #16AE8B;
  }
}
.cast_modal .close_btn span:last-of-type {
  transform: translate(-50%, -50%) rotate(-21.8deg);
}
@media screen and (max-width: 768px) {
  .cast_modal .close_btn span {
    width: 75.4px;
    transform: translate(-50%, -50%) rotate(21.8deg);
  }
  .cast_modal .close_btn span:last-of-type {
    transform: translate(-50%, -50%) rotate(-21.8deg);
  }
}
.cast_modal .close_btn:hover span {
  transform: translate(-50%, -50%) rotate(16deg);
}
.cast_modal .close_btn:hover span:last-of-type {
  transform: translate(-50%, -50%) rotate(-16deg);
}
@media screen and (max-width: 768px) {
  .cast_modal .close_btn:hover span {
    transform: translate(-50%, -50%) rotate(16deg);
  }
  .cast_modal .close_btn:hover span:last-of-type {
    transform: translate(-50%, -50%) rotate(-16deg);
  }
}
.cast_modal.active {
  display: flex;
}

#original {
  background-image: url(../img/bg_g2.jpg);
  background-size: 100%;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  #original {
    background-size: 1920px;
  }
}
#original .section_inner {
  padding: 160px 50px 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #original .section_inner {
    padding: 80px 0 80px;
  }
}
#original h2 {
  position: absolute;
  top: -10px;
  right: 0;
}
#original h2 img {
  height: 11vw;
  width: auto;
  max-height: 121px;
}
#original .original_box {
  max-width: 1500px;
  margin: 0 auto;
}
#original .original-texts {
  box-shadow: rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
  width: 90%;
  margin: 0 0 0 auto;
  background: rgba(237, 255, 134, 0.2);
  padding: 50px;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #original .original-texts {
    padding: 40px 20px 60px;
  }
}
#original .original-texts .original-auth {
  text-align: center;
  font-size: 2em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #original .original-texts .original-auth {
    font-size: 1.3em;
    line-height: 1.4;
  }
}
#original .original-texts .original-auth span {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  #original .original-texts .original-auth span:first-of-type {
    font-size: 0.8em;
  }
}
#original .original-texts .original-inf {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #original .original-texts .original-inf {
    font-size: 1em;
    line-height: 1.8;
  }
}
#original .original-texts .original-inf span {
  display: inline-block;
}
#original .original-texts hr {
  width: 100%;
  height: 1px;
  background-color: #FFF;
  border: 0;
  margin: 20px 0;
}
#original .original-texts p {
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #original .original-texts p {
    text-align: left;
    font-size: 0.95em;
  }
}
#original .original-texts .original-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #original .original-texts .original-links {
    flex-direction: column;
  }
}
#original .original-texts .original-links a {
  position: relative;
  min-width: 300px;
  letter-spacing: 0.1em;
  display: inline-block;
  background-color: #231815;
  height: 40px;
  line-height: 40px;
  color: #FFF;
  padding: 0 16px;
}
#original .original-texts .original-links a::after {
  position: absolute;
  right: 20px;
  top: 0;
  content: "⇀";
  color: #FFF;
  transition: 0.2s;
}
#original .original-texts .original-links a:hover {
  color: #EDFF86;
}
#original .original-texts .original-links a:hover::after {
  right: 10px;
  color: #EDFF86;
}
#original .original-img {
  display: flex;
  gap: 10px;
  width: 90%;
  margin: -20px auto 0 0;
  position: relative;
}
#original .original-img div {
  box-shadow: -4px 4px 0px 0px rgba(237, 255, 134, 0.32), rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px;
}
@media screen and (max-width: 768px) {
  #original .original-img {
    gap: 5px;
    flex-wrap: wrap;
    margin: -30px auto 0 10px;
    width: calc(100% - 20px);
  }
  #original .original-img div {
    width: calc(33.33% - 6.4px);
  }
}
#original .original-img p.original-copy {
  font-size: 12px;
  color: #FFF;
  display: inline-block;
  position: absolute;
  bottom: -2em;
  right: 0;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #original .original-img p.original-copy {
    r: unset;
    left: 0;
  }
}/*# sourceMappingURL=style.css.map */