@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-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #FFF;
  background-color: #000;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

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

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

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

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

.br-pc {
  display: 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;
  }
}

.imgb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 24%;
     object-position: 100% 24%;
  width: 100%;
  height: 35vw;
}
@media screen and (max-width: 768px) {
  .imgb img {
    height: 70vw;
  }
}

footer .footer {
  background-image: url(img/bg_b.jpg);
  block-size: cover;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 40px 30px;
  }
}
footer .footer .credit {
  max-width: 380px;
  margin: 0 auto;
}
footer .footer .title {
  width: 100%;
  max-width: 600px;
  margin: -20px auto 0;
}
@media screen and (max-width: 768px) {
  footer .footer .title {
    max-width: 300px;
  }
}
footer .release {
  width: 70%;
  margin: -30px auto 20px;
  max-width: 700px;
  padding-left: 1%;
}
@media screen and (max-width: 768px) {
  footer .release {
    max-width: 400px;
    margin: -10px auto 20px;
    width: 100%;
  }
}

h2 {
  color: #E60012;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-size: 2em;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
}

.imgs3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .imgs3 {
    padding: 20px 0;
    gap: 10px;
  }
}
.imgs3 div {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .imgs3 div {
    width: 100%;
  }
}

/*fixed_bg------------------------*/
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner .loader {
  animation: loadingFlash 1s infinite;
}
.loading .loader {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #CCC) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}
@keyframes l4 {
  to {
    transform: rotate(1turn);
  }
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 40px;
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
    margin-right: 0;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}
.share_btns li:hover {
  opacity: 0.7;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
    justify-content: flex-end;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 0px 0px 20px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}
.share_btns-square li:hover {
  opacity: 0.7;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeFromLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #3D3000;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: 50%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trailer_tab li {
    width: 100%;
  }
}
.trailer_tab li a {
  height: 3em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  background-color: #ce1414;
  pointer-events: none;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
/*nav----------------------------*/
.nav_bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    display: block;
    height: 60px;
    background: #000;
  }
}

.nav_title {
  z-index: 102;
  width: 300px;
  position: fixed;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .nav_title {
    width: 174px;
  }
}

.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
    top: 0px;
    right: 0px;
    background-image: url(img/nav_icon.svg);
    background-size: 100%;
    width: 60px;
    height: 60px;
    transition: 0.4s;
    opacity: 1;
  }
}
.nav_btn.show {
  background-image: url(img/nav_close.svg);
}

.gnav {
  z-index: 100;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 60px;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-color: #000;
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  opacity: 1;
}
.gnav .gnav_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .gnav .gnav_list {
    margin-bottom: 40px;
  }
}
.gnav .gnav_list li a {
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 0.5em;
  color: #FFF;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.2em;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
}
.gnav .gnav_list li a.construction {
  opacity: 0.6;
  pointer-events: none;
}
.gnav .gnav_list li a .icon_menu {
  width: 24px;
  margin-bottom: 13px;
}

.top_btn {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(1, 0.6);
  color: #E60012;
  cursor: pointer;
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}

/*-------------------------------*/
#top {
  position: relative;
  margin-top: 60px;
}
#top .main {
  position: relative;
  top: 0;
  left: 0;
  width: 52%;
  transition: 1s;
  filter: grayscale(100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
  }
}
#top .main img {
  transition: 0.5s;
  transform: scale(2);
}
#top .main.active {
  opacity: 1;
  filter: grayscale(0%);
}
#top .main.active img {
  transform: scale(1);
}
#top .copy_tate {
  position: absolute;
  width: 7.97%;
  top: 9.17%;
  left: 2.6%;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 18.21%;
    top: 4.59%;
    left: 5.9%;
  }
}
#top .copy_tate.active {
  transform: translateY(0);
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 48.23%;
  top: 4.69%;
  left: 49.01%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 91.54%;
    top: 54.26%;
    left: 3.33%;
  }
}
#top .copy_yoko.active {
  transform: translateX(0);
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 34.32%;
  top: 24.91%;
  left: 59.27%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 80.51%;
    top: 61.5%;
    left: 14.36%;
  }
}
#top .credit.active {
  transform: translateX(0);
  opacity: 1;
}
#top .title {
  position: absolute;
  width: 43.75%;
  top: 33.02%;
  left: 53.49%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 97.69%;
    top: 66.32%;
    left: 1.28%;
  }
}
#top .title.active {
  transform: translateX(0);
  opacity: 1;
}
#top .billing {
  position: absolute;
  width: 39.43%;
  top: 53.99%;
  left: 55.83%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .billing {
    width: 92.37%;
    top: 85.45%;
    left: 2.56%;
  }
}
#top .billing.active {
  transform: translateX(0);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 58.46%;
  top: 67.6%;
  left: 40.31%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 78.79%;
    top: 75.7%;
    left: 10.58%;
  }
}
#top .release.active {
  transform: translateX(0);
  opacity: 1;
}

#info {
  padding: 0px 40px 120px;
  width: 100%;
  margin-top: -8vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #info {
    max-width: 500px;
    padding: 10px 20px 80px;
    margin: 0 auto;
  }
}
#info .btns {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0 0px 20px auto;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #info .btns {
    margin: 0 auto 20px;
  }
}
#info .btns .btn_item {
  max-width: 200px;
  width: calc(50% - 10px);
  cursor: pointer;
  transition: 0.3s;
  border: solid 1px #E60012;
}
@media screen and (max-width: 768px) {
  #info .btns .btn_item {
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
  }
}
#info .btns .btn_item a {
  display: block;
}
#info .btns .btn_item:hover {
  opacity: 0.6;
}

.bnrs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.bnrs .bnr {
  width: calc(50% - 14px);
  margin: 0 0px 10px auto;
  max-width: 240px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bnrs .bnr {
    margin: 0 auto 20px;
    max-width: unset;
    width: 80%;
  }
}
.bnrs .bnr a {
  display: block;
}
.bnrs .bnr a:hover {
  filter: brightness(70%);
}
.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}
.bnr_kaisetsu {
  display: block;
  margin: 0 auto 60px;
  max-width: 500px;
  width: 100%;
  border: solid 1px #E60012;
}
.bnr_kaisetsu:hover {
  opacity: 0.7;
}

.bnr_twin {
  display: block;
  width: 100px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 768px) {
  .bnr_twin {
    margin: 0 auto 0px;
  }
}
.bnr_twin:hover {
  opacity: 0.7;
}

#intro {
  background-image: url(img/bg_b.jpg);
  background-size: cover;
}
#intro .section_inner {
  padding: 60px 0;
}
#intro .section_inner .section_main {
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    padding: 0 20px;
    max-width: 600px;
  }
}
#intro .section_inner .section_main h3 {
  max-width: 700px;
  margin-bottom: 20px;
}
#intro .section_inner .section_main .text_body p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.5em;
}
#intro .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}

#story {
  position: relative;
}
#story .section_bg {
  position: sticky;
  top: 60px;
  left: 0;
}
#story .section_bg img {
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 0%;
     object-position: 20% 0%;
}
#story .section_inner {
  position: relative;
  margin-top: -10vh;
  margin-top: -10dvh;
  padding-bottom: 30vh;
}
#story .section_inner .section_main {
  background: rgba(0, 0, 0, 0.9);
  padding: 80px 50px;
  width: 45%;
  margin: 0 5% 0 auto;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main {
    width: 80%;
    padding: 40px 20px;
    margin: 0 10%;
  }
}
#story .section_inner .section_main .text_body {
  line-height: 2;
  text-align: justify;
}

#caststaff .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner {
    padding: 80px 0;
  }
}
#caststaff .section_inner .section_main {
  padding: 0 50px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main {
    padding: 0 20px;
    max-width: 500px;
  }
}
#caststaff .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 60px;
}
#caststaff .section_inner .section_main h2 span {
  font-size: 0.8em;
  font-weight: inherit;
}
#caststaff .section_inner .section_main .prof_items .prof_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item {
    margin-bottom: 80px;
    flex-direction: column;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item {
    padding-right: 0;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item:nth-of-type(2n) {
  padding-left: 100px;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item:nth-of-type(2n) {
    padding-left: 0;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_img {
  width: 270px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_img {
    margin: 0 auto 20px;
    width: 200px;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts {
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts {
    width: 100%;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role {
  background-image: url(img/bg_r.jpg);
  background-size: cover;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role {
    margin-bottom: 1em;
    padding: 20x 10px;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names {
  font-style: italic;
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names {
    margin-bottom: 0.5em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names .name {
  font-size: 1.5em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names .name {
    font-size: 1.3em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names .name_ch {
  font-family: "Noto Serif JP";
  font-weight: 900;
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .names .name_ch {
    font-size: 1em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .role .text_body p {
  line-height: 1.6;
  font-size: 0.9em;
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor {
  padding: 0 10px;
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names {
  font-style: italic;
  color: #E60012;
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names {
    margin-bottom: 0.5em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names .name {
  font-size: 1.75em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names .name {
    font-size: 1.5em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names .name span {
  font-weight: 900;
  font-size: 0.5em;
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names .name_ch {
  font-family: "Noto Serif JP";
  font-weight: 900;
  font-size: 1.3em;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .names .name_ch {
    font-size: 1.1em;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .actor .text_body p {
  line-height: 1.8;
  text-align: justify;
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .imgs {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .imgs {
    gap: 20px;
    padding: 0 20px;
  }
}
#caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .imgs div {
  width: 32%;
}
@media screen and (max-width: 768px) {
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .imgs div {
    width: 80%;
  }
  #caststaff .section_inner .section_main .prof_items .prof_item .prof_texts .imgs div:nth-of-type(2) {
    margin: 0 0 0 auto;
  }
}

#kaisetsu {
  margin-top: 60px;
}
#kaisetsu .section_inner {
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner {
    padding: 60px 20px;
  }
}
#kaisetsu .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main {
    max-width: 500px;
  }
}
#kaisetsu .section_inner .section_main a {
  color: #a78000;
  text-decoration: underline;
  word-break: break-all;
}
#kaisetsu .section_inner .section_main .mi {
  opacity: 0.7;
  font-size: 0.9em;
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block {
  padding: 20px 40px;
  background-image: linear-gradient(to right, #300000, #000);
  margin-bottom: 40px;
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .kaisetsu_body .block {
    padding: 20px;
  }
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block .qu {
  margin-bottom: 10px;
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block .qu p {
  color: #E60012;
  font-style: italic;
  line-height: 2;
  text-align: justify;
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block .ans {
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .kaisetsu_body .block .ans {
    padding-left: 10px;
  }
}
#kaisetsu .section_inner .section_main .kaisetsu_body .block .ans p {
  line-height: 2;
  text-align: justify;
}
#kaisetsu .section_inner .section_main .prof_j {
  display: flex;
  width: 80%;
  margin: 0 auto 80px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .prof_j {
    width: 100%;
    margin-bottom: 40px;
  }
}
#kaisetsu .section_inner .section_main .prof_j .prof_img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .prof_j .prof_img {
    width: 130px;
    margin: 0 auto 20px;
  }
}
#kaisetsu .section_inner .section_main .prof_j .texts {
  width: calc(100% - 210px);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .prof_j .texts {
    width: 100%;
  }
}
#kaisetsu .section_inner .section_main .prof_j .texts .names {
  font-style: italic;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #kaisetsu .section_inner .section_main .prof_j .texts .names {
    text-align: center;
  }
}
#kaisetsu .section_inner .section_main .prof_j .texts .prof_body {
  font-size: 0.9em;
}
#kaisetsu .section_inner .section_main .prof_j .texts .prof_body p {
  text-align: justify;
}/*# sourceMappingURL=style.css.map */