@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--------------------------*/
/*-------------------------------*/
/*-------------------------------*/
:root {
  /* iOSの下部セーフエリア込みの余白（対応外ブラウザは0になる） */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --gap: 24px;
}

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

*:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000000;
  background-color: #014696;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex: 1;
  position: relative;
}

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

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

.js-fade,
.js-zoom,
.js-slide-left,
.js-slide-right,
.js-stagger .js-stagger-item {
  opacity: 0;
}

.intro_and_story {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.intro_and_story .bg-left, .intro_and_story .bg-right {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  background-repeat: repeat-y;
  background-size: 280px;
  background-position: top center;
  background-image: url(../img/bg_copy.svg);
  animation: bgScroll 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .intro_and_story .bg-left, .intro_and_story .bg-right {
    animation: bgScrollSp 20s linear infinite;
    width: 150px;
    background-size: 150px;
    opacity: 0.5;
  }
}
.intro_and_story .bg-right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

@keyframes bgScroll {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 1527px;
  }
}
@keyframes bgScrollSp {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 818px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}
section.section-default .section_inner .section_main h2 {
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}
section.section-default .section_inner .section_main h2 p.en {
  font-family: "Noto Serif JP";
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main h2 p.en {
    font-size: 1.75em;
  }
}
section.section-default .section_inner .section_main h2 p.ja {
  font-family: "Noto Serif JP";
  font-size: 0.88em;
  color: #DA0A17;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main h2 p.ja {
    text-indent: 0.1em;
  }
}
section.section-default .section_inner .section_main h2.white {
  color: #FFF;
}

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

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

/*nav----------------------------*/
.nav_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  background-image: url(../img/nav_icon.svg);
  background-size: 100%;
  width: 80px;
  height: 80px;
  transition: 0.5s;
  z-index: 103;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
}
.nav_btn {
  transition: 0.2s;
}
.nav_btn.show {
  background-image: url(../img/nav_icon-close.svg);
  opacity: 0.8;
}
.nav_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}
.nav_btn:hover {
  opacity: 0.6;
}

.nav_bar {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 80px;
  height: 80px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 102;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    z-index: 100;
    width: 100%;
    height: 60px;
    top: 0;
    right: 0;
    display: block;
  }
}

.gnav {
  background-color: #fff;
  z-index: 101;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
  overflow: auto;
  padding: 50px;
  background-image: url(../img/bg_q2.png);
  background-size: 430px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .gnav {
    background-size: 90%;
  }
}
.gnav.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.gnav .gnav_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    gap: 30px;
  }
}
.gnav .gnav_list li a {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  display: flex;
  gap: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s;
}
.gnav .gnav_list li a p.en {
  font-size: 1.8em;
  color: #014696;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a p.en {
    font-size: 1.29em;
  }
}
.gnav .gnav_list li a p.ja {
  color: #DA0A17;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a p.ja {
    font-size: 0.8em;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}

/*-------------------------------*/
.nav_sns {
  z-index: 104;
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 10px;
  transition: 0.5s;
}
.nav_sns li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .nav_sns li a {
    width: 40px;
    height: 40px;
  }
}
.nav_sns li a {
  transition: 0.2s;
}
.nav_sns li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}

.to_top {
  position: sticky;
  z-index: 99;
  bottom: 0px;
  width: 3em;
  height: 3em;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DA0A17;
  color: #014696;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0 1px auto;
}
.to_top::after {
  content: "▲";
  font-size: 14px;
  transform: scaleY(0.5);
  margin-bottom: 4px;
}
.to_top {
  transform: translateY(5px);
  opacity: 0;
  transition: 0.5s;
}
.to_top.active {
  transform: translateY(0px);
  opacity: 1;
}

.loading {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
}

.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: 320px;
}
@media screen and (max-width: 768px) {
  .loader {
    max-width: 240px;
  }
}

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

.fixed_bgv {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bgv {
    display: none;
  }
}
.fixed_bgv video {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fixed_bgv .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;
}

#footer {
  background-color: #fff;
  z-index: 2;
  position: relative;
  padding: 50px 50px 50px;
  color: #014696;
}
#footer a {
  color: #014696;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 40px 20px 60px;
  }
}
#footer ul.share-texts {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 32px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #footer ul.share-texts {
    font-size: 12px;
  }
}
#footer ul.share-texts .icon-share {
  width: 14px;
}
#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: 1.2em;
  margin: 0 auto 20px;
}
#footer ul.wb_sns li a {
  transition: 0.1s;
}
#footer ul.wb_sns li a:hover {
  opacity: 0.5;
}
#footer ul.wb_sns li a img {
  height: 36px;
  width: auto;
}
#footer ul.policies {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  font-size: 12px;
  margin: 0 auto 20px;
  margin-left: -1em;
  font-weight: 900;
}
#footer .copyright-footer {
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.spacer {
  display: none;
}
@media screen and (max-width: 768px) {
  .spacer {
    display: block;
    height: 60px;
    width: 100%;
  }
}

#top {
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  width: 100%;
  z-index: 2;
}
#top .main-pc {
  overflow: hidden;
  width: 100%;
  z-index: 1;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .main-pc {
    display: none;
  }
}
#top .main-pc .main_imgs {
  width: 100%;
  display: flex;
}
#top .main-pc .main_imgs .main {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#top .main-pc .main_imgs .main .main_img {
  position: relative;
  overflow: hidden;
}
#top .main-pc .main_imgs .main .main_img img {
  opacity: 0;
  filter: grayscale(100%);
  transition: 3s;
  transform: scale(1.1);
}
#top .main-pc .main_imgs .main .main_img img.inview {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}
#top .main-pc .main_imgs .main .copy_tate {
  position: absolute;
  top: 36%;
  left: 80%;
  width: 5.5%;
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .main-pc .main_imgs .main .copy_tate.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .main-sp {
  z-index: 1;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .main-sp {
    display: block;
  }
}
#top .main-sp_outer-outer {
  overflow: hidden;
  width: 100%;
}
#top .main-sp_outer {
  opacity: 0;
  filter: grayscale(100%);
  transition: 3s;
  transform: scale(1.1);
}
#top .main-sp_outer.inview {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}
#top .copy {
  z-index: 2;
  position: absolute;
  width: 74%;
  top: 4%;
  left: 13%;
  opacity: 0;
  transition: 1s;
  transform: translateY(-10px);
}
#top .copy.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3.5%;
  left: 6%;
  gap: 6%;
  width: 75%;
}
@media screen and (max-width: 768px) {
  #top .titles {
    display: block;
    width: 68%;
    bottom: 2%;
    left: 16%;
  }
}
#top .titles .copy2 {
  width: 36%;
}
@media screen and (max-width: 768px) {
  #top .titles .copy2 {
    display: none;
  }
}
#top .titles .copy2 {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .copy2.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles .title {
  width: 37%;
}
@media screen and (max-width: 768px) {
  #top .titles .title {
    width: 100%;
  }
}
#top .titles .title {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .title.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles .release {
  width: 18%;
}
@media screen and (max-width: 768px) {
  #top .titles .release {
    width: 37%;
    margin: 4% auto 0;
  }
}
#top .titles .release {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .release.inview {
  opacity: 1;
  transform: translateY(0px);
}

#info {
  background-color: #fff;
  background-image: url(../img/bg_q.jpg);
  background-size: 350px;
  background-position: center center;
  padding: 40px 50px 60px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 60px;
  }
}
#info .billing {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
}

/*trailer------------------------*/
#trailer {
  overflow: hidden;
}
#trailer .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    padding: 80px 0;
  }
}
#trailer .section_main {
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  #trailer .section_main {
    max-width: 500px;
  }
}
#trailer .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#trailer .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tabs {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 5px;
}
#trailer .trailer_tabs li {
  cursor: pointer;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
  color: #014696;
  pointer-events: all;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
#trailer .trailer_tabs li:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
#trailer .trailer_tabs .tab.active {
  opacity: 0.5;
  pointer-events: none;
}

/*-------------------------------*/
#intro {
  position: relative;
}
#intro .section_inner {
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    padding: 0 30px;
  }
}
#intro .section_inner .section_main h3 {
  margin-bottom: 2em;
}
#intro .section_inner .section_main .text_body p {
  line-height: 2;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: justify;
}
#intro .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}

#story {
  position: relative;
}
#story .section_inner {
  padding: 0px 0 120px;
}
@media screen and (max-width: 768px) {
  #story .section_inner {
    padding: 40px 0 80px;
  }
}
#story .section_inner .section_main {
  position: relative;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main {
    padding: 0 30px;
  }
}
#story .section_inner .section_main .bg_q {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 432px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .bg_q {
    width: 360px;
    padding-left: 20px;
  }
}
#story .section_inner .section_main .text_body {
  text-align: center;
}
#story .section_inner .section_main .text_body p {
  position: relative;
  line-height: 2.2;
  font-weight: 700;
  margin-bottom: 1em;
}
#story .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}
#story .section_inner .section_main .text_body p span {
  display: inline-block;
}
#story .section_inner .section_main .text_body p span.big {
  font-size: 1.375em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p span.big {
    font-size: 1.2em;
    line-height: 1.6;
  }
}
#story .section_inner .section_main .text_body p span.bigger {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p span.bigger {
    font-size: 1.5em;
  }
}
#story .section_inner .section_main .text_body p.red-mark {
  padding: 0 0.75em;
  font-size: 1.5em;
  background-color: #DA0A17;
  color: #FFF;
  display: inline-block;
  transform: rotate(1deg);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 1em auto 0.75em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p.red-mark {
    margin: 0.5em auto 0.75em;
    font-size: 1.28em;
    line-height: 1.6;
    padding: 0.25em 0.75em;
  }
}

.news {
  position: relative;
  z-index: 1;
}
.news .comment-q {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform, opacity;
  transition: opacity 2s ease;
  z-index: 1;
  filter: blur(2px);
}
.news .news-list {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .news-list li a {
  padding: 20px;
  display: flex;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .news .news-list li a {
    padding: 1em;
    display: block;
  }
}
.news .news-list li a .news-date {
  font-weight: 900;
  font-family: "Noto Serif JP";
  letter-spacing: 0.05em;
  width: 10em;
}
@media screen and (max-width: 768px) {
  .news .news-list li a .news-date {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: solid 1px #FFF;
  }
}
.news .news-list li a .news-title {
  font-weight: 700;
  flex: 1;
}
.news .news-list li a {
  transition: 0.2s;
}
.news .news-list li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
.news .news-list.news-list-top li a {
  background-color: #014696;
  color: #FFF;
}
.news .news-list.news-list-news li a {
  background-color: #FFF;
}
.news .news-list.news-list-news li a .news-date {
  color: #DA0A17;
}
@media screen and (max-width: 768px) {
  .news .news-list.news-list-news li a .news-date {
    border-bottom: solid 1px #DA0A17;
  }
}
.news a.to-list {
  display: block;
  text-align: center;
  margin-top: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.news a.to-list p {
  display: block;
  padding: 1em 0;
  transition: 0.2s;
}
.news a.to-list p:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
.news .page-navigation {
  border-top: solid 2px #DA0A17;
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.news .page-navigation a {
  padding: 0 1em;
  transition: 0.2s;
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  color: #014696;
  font-weight: 900;
}
.news .page-navigation a:hover, .news .page-navigation a.invalid {
  opacity: 0.2;
}
.news .page-navigation a.invalid {
  pointer-events: none;
}
.news .news-body {
  background-color: #fff;
  padding: 50px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news .news-body {
    padding: 30px 20px;
  }
}
.news .news-body .news-date {
  color: #DA0A17;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .news .news-body .news-date {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0.5em;
    padding-bottom: 0.25em;
    border-bottom: solid 1px #DA0A17;
  }
}
.news .news-body .news-title {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3;
  border-bottom: solid 2px #DA0A17;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news .news-body .news-title {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}
.news .news-body .news-content .block {
  margin: 0 0 2em;
}
.news .news-body .news-content .block:last-of-type {
  margin: 0 0 0;
}
.news .news-body .news-content p {
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 0.5em;
}
.news .news-body .news-content span.strong {
  font-weight: 700;
}
.news .news-body .news-content span.blue {
  color: #014696;
}
.news .news-body .news-content span.red {
  color: #DA0A17;
}
.news .news-body .news-content span.small {
  font-size: 0.8em;
  line-height: 1.4;
}
.news .news-body .news-content span.big {
  font-size: 1.2em;
  line-height: 1.6;
}
.news .news-body .news-content span.italic {
  font-style: italic;
}
.news .news-body .news-content a {
  color: #014696;
  word-break: break-all;
  text-decoration: underline;
  transition: 0.2s;
}
.news .news-body .news-content a:hover {
  text-decoration: none;
}
.news .news-body .news-content .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.news .news-body .news-content .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#news-top {
  overflow: hidden;
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  #news-top {
    padding: 60px 0 0;
  }
}
#news-top .section_inner .section_main {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main {
    padding: 0;
  }
}
#news-top .section_inner .section_main h2 {
  margin-bottom: 20px;
}

#news-list, #news-article {
  padding: 120px 0 80px;
}

#comment {
  position: relative;
  overflow: hidden;
}
#comment .comment-q {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform, opacity;
  transition: opacity 2s ease;
  z-index: 1;
  filter: blur(2px);
}
#comment .section_inner {
  z-index: 2;
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main .block {
  max-width: 1100px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block {
    margin: 0 auto 50px;
  }
}
#comment .section_inner .section_main .block:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .block .names {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block .names {
    flex-direction: column;
    align-items: flex-end;
  }
}
#comment .section_inner .section_main .block .names .role {
  display: flex;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
#comment .section_inner .section_main .block .names .name {
  display: flex;
  justify-content: center;
}
#comment .section_inner .section_main .block_inner {
  background-color: #fff;
  padding: 40px 50px 50px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block_inner {
    padding: 30px 20px 40px;
  }
}
#comment .section_inner .section_main .block_inner p.sub_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #DA0A17;
  margin-bottom: 0.5em;
}
#comment .section_inner .section_main .block_inner p {
  line-height: 2em;
  font-weight: 700;
  text-align: justify;
}
#comment .section_inner .section_main .block_inner p .color-r {
  color: #DA0A17;
  font-size: 1.3em;
}
#comment .section_inner .section_main .block_inner p .color-b {
  color: #014696;
  font-size: 1.3em;
}

#teaser_original .link_original a {
  background-color: #DA0A17;
  color: #FFF;
  text-align: center;
  display: block;
  width: 24em;
  max-width: 90%;
  margin: 0 auto 120px;
  height: 3em;
  line-height: 3em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #teaser_original .link_original a {
    margin: 0 auto 80px;
  }
}
#teaser_original .link_original a::after {
  content: "";
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #DA0A17;
  height: 5em;
  width: 5em;
  border: solid 20px #DA0A17;
  border-radius: 50%;
  transition: 0.2s;
}
#teaser_original .link_original a {
  transition: 0.2s;
}
#teaser_original .link_original a:hover {
  color: #014696;
}
#teaser_original .link_original a:hover::after {
  transform: translate(-50%, -50%) scale(0.9);
}

.aka-maru, .ao-maru, .aka-batsu, .ao-batsu {
  color: #FFF;
  position: relative;
  width: 3em;
  height: 3em;
  font-size: 1.2em;
  display: inline-block;
  line-height: 3em;
  text-align: center;
  font-weight: 900;
}

.aka-maru:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #DA0A17;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-maru:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-maru.yaku {
  color: #014696;
}

.ao-maru:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #014696;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ao-maru:after {
  content: "";
  background-color: #DA0A17;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aka-batsu:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #DA0A17;
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-batsu:after {
  content: "";
  background-color: #014696;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ao-batsu:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #014696;
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ao-batsu:after {
  content: "";
  background-color: #DA0A17;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-r {
  color: #DA0A17;
}

.color-b {
  color: #014696;
}/*# sourceMappingURL=style.css.map */