@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", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  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;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  font-size: 2em;
  color: #A47F18;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 40px;
  }
}
h2.size-vw {
  color: #000;
  font-size: 6vw;
  margin-top: -0.2em;
  line-height: 1;
  mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
  h2.size-vw {
    font-size: 10vw;
  }
}

.section-default .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  .section-default .section_inner .section_main {
    max-width: 500px;
    padding: 60px 20px;
  }
}

.imgs3 {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .imgs3 {
    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;
  }
}

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
}

/*-------------------------------*/
/*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%, #A47F18) 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: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.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 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif, "Meiryo";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}
.share_btns-square li:hover {
  filter: brightness(70%);
}

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

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes flash {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.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;
}

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

.scaleDown {
  overflow: hidden;
}
.scaleDown img {
  transform: scale(1.1);
  transition: 1s;
  opacity: 0;
}
.scaleDown.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.clipFromLeft {
  opacity: 0;
  transition: 2s;
  clip-path: inset(0% 100% 0% 0);
}
.clipFromLeft.is-inview {
  clip-path: inset(0%);
  opacity: 1;
}

.imgIn {
  opacity: 0;
  transition: 1s;
  transform: translateX(-10px);
}
.imgIn.is-inview {
  opacity: 1;
  transform: translateX(0px);
}
.imgIn.imgIn2 {
  transition-delay: 0.2s;
}
.imgIn.imgIn3 {
  transition-delay: 0.4s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
footer {
  background-color: #000;
}
footer .footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 50px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    max-width: 400px;
    padding: 60px 20px;
  }
}
footer .footer .release {
  width: 60%;
  max-width: 340px;
  margin: 0 auto 20px;
}
footer .footer .billing-en {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 20px;
}
footer .footer .billing2 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

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

.gnav {
  z-index: 100;
  font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif, "Meiryo";
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  opacity: 0;
  transition: 0.4s;
  mix-blend-mode: exclusion;
}
@media screen and (max-width: 768px) {
  .gnav {
    mix-blend-mode: unset;
    z-index: 103;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-image: url(img/bg1.jpg);
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
  }
  .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;
}
@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: 50px;
  line-height: 50px;
  padding: 0 0.5em;
  font-size: 1.125em;
  color: #A47F18;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.43em;
  }
}
.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;
}

.to_top {
  z-index: 99;
  margin: 0 auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: 1s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}
.to_top::before {
  content: "▲";
  transform: scaleY(0.5);
  color: #A47F18;
}
.to_top:hover {
  opacity: 0.3;
}
.to_top.active {
  right: 10px;
  opacity: 1;
}

/*-------------------------------*/
#top {
  width: 100%;
  height: 55vw;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top {
    height: auto;
  }
}
#top .main_img {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.1);
}
#top .main_img.inview {
  transform: scale(1);
  opacity: 1;
}
#top .copy_tate {
  position: absolute;
  width: 2.7%;
  left: 47.5%;
  top: 19%;
  opacity: 0;
  transition: 0.5s;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 5%;
    left: 46%;
    top: 35%;
  }
}
#top .copy_tate.inview {
  filter: blur(0);
  opacity: 1;
}
#top h1.title {
  position: absolute;
  width: 46%;
  left: 27%;
  top: 62%;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top h1.title {
    width: 88%;
    left: 6%;
    top: 71%;
  }
}
#top h1.title.inview {
  transform: translateY(0px);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 26%;
  left: 37%;
  top: 76%;
  filter: drop-shadow(0px 0px 10px #000) drop-shadow(0px 0px 10px #000);
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 46%;
    left: 27%;
    top: 81%;
  }
}
#top .release.inview {
  transform: translateY(0px);
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 66%;
  left: 17%;
  top: 85.5%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 88%;
    left: 6%;
    top: 87%;
  }
}
#top .copy_yoko .copy_yoko-base {
  position: relative;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
#top .copy_yoko .copy_yoko-base.inview {
  transform: translateY(0px);
  opacity: 1;
}
#top .copy_yoko .copy_yoko-over {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s;
  transform: scale(1.2);
}
#top .copy_yoko .copy_yoko-over.inview {
  transform: scale(1);
  opacity: 1;
}
#top .copy_yoko2 {
  position: absolute;
  width: 40%;
  left: 30%;
  bottom: 0%;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .copy_yoko2 {
    width: 54%;
    left: 23%;
    bottom: 5%;
  }
}
#top .copy_yoko2.inview {
  transform: translateY(0px);
  opacity: 1;
}

#info {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 20px;
  }
}
#info .btns {
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
#info .btns a {
  max-width: 200px;
  border-radius: 4px;
  display: block;
  border: solid 1px #414141;
  transition: 0.2s;
}
#info .btns a:hover {
  background-color: #1d1d1d;
}
#info .mvtk {
  width: 100%;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 40px;
}
#info .billing {
  max-width: 700px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #info .billing {
    width: 90%;
  }
}

/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    padding: 0 20px;
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  padding: 0 0px 80px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main {
    padding: 0 0px 40px;
  }
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #414141;
}
#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;
}
.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;
  color: #FF0000;
  background-color: #3D3000;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  color: #333;
  background-color: #FF0000;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#intro {
  background-image: url(img/bg2.jpg);
  background-size: cover;
  min-height: 100vh;
}
#intro .section_inner .section_header {
  overflow: hidden;
}
#intro .section_inner .section_header h2 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_header h2 {
    text-align: center;
    width: 100%;
  }
}
#intro .section_inner .section_header .img_base {
  position: relative;
}
#intro .section_inner .section_main {
  max-width: 1000px;
}
#intro .section_inner .section_main .text_body h3 {
  margin-bottom: 40px;
  filter: drop-shadow(2px 2px 4px #FF0000);
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body h3 {
    margin-bottom: 20px;
  }
}
#intro .section_inner .section_main .text_body p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1em;
}

#story {
  position: relative;
  background-color: rgba(0, 69, 71, 0.2);
}
#story .section_inner {
  position: relative;
}
#story .section_inner .section_main {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main {
    flex-direction: column;
  }
}
#story .section_inner .section_main .left {
  width: 50%;
  position: sticky;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .left {
    position: relative;
  }
}
#story .section_inner .section_main .left .img-base {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#story .section_inner .section_main .left .img-base img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .left {
    width: 100%;
    height: 90vw;
  }
}
#story .section_inner .section_main .left h2 {
  position: absolute;
  top: 0;
  right: -0.2em;
  margin-top: -0.2em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .left h2 {
    right: 0;
  }
}
#story .section_inner .section_main .right {
  width: 50%;
  padding: 120px 50px;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .right {
    padding: 60px 20px;
    width: 100%;
    margin: 0 auto;
  }
}
#story .section_inner .section_main .right h3 {
  margin-bottom: 30px;
}
#story .section_inner .section_main .right .text_body p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .right .text_body p {
    text-align: center;
  }
}
#story .section_inner .section_main .right .text_body p:last-of-type {
  margin-bottom: 0;
}

#cast {
  position: relative;
}
#cast .section_bg {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  height: 100lvh;
  position: sticky;
  top: 0;
}
#cast .section_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#cast .section_inner {
  margin-top: -100vh;
  margin-top: -100lvh;
  position: relative;
}
#cast .section_inner .section_main {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main {
    padding: 60px 20px;
  }
}

.prof_item {
  display: flex;
  border-radius: 10px;
  padding: 40px 0 0 40px;
  margin-bottom: 60px;
  overflow: hidden;
  background-color: rgba(1, 30, 32, 0.5);
}
.prof_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .prof_item {
    margin-bottom: 40px;
    flex-direction: column;
    padding: 20px 0 0 20px;
  }
}
.prof_item .prof_img {
  max-width: 350px;
  width: 25%;
  padding-right: 3%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_img {
    margin: 0 auto 20px;
    width: 60%;
    padding-right: 0;
    max-width: 260px;
  }
}
.prof_item .prof_texts {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_texts {
    width: 100%;
  }
}
.prof_item .prof_texts .prof_names {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_texts .prof_names {
    padding-right: 20px;
    flex-direction: column;
  }
}
.prof_item .prof_texts .prof_names .prof_name {
  color: #EDD200;
  font-weight: 900;
  font-size: 1.6em;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_texts .prof_names .prof_name {
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
  }
}
.prof_item .prof_texts .prof_names .prof_name span {
  font-weight: 900;
  font-size: 0.8em;
}
.prof_item .prof_texts .prof_names .prof_role {
  opacity: 0.8;
  font-weight: 900;
  color: #FF0000;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_texts .prof_names .prof_role {
    font-size: 1.1em;
    width: 100%;
    text-align: right;
  }
}
.prof_item .prof_texts .prof_names .prof_role span {
  font-weight: 900;
  font-size: 0.8em;
  margin: 0 0.8em;
  color: #FFF;
  opacity: 0.5;
}
.prof_item .prof_texts .prof_body {
  border-left: 1px solid rgba(0, 69, 71, 0.8);
  border-top: 1px solid rgba(0, 69, 71, 0.8);
  padding: 30px 40px 0 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .prof_item .prof_texts .prof_body {
    padding: 20px 20px 0 20px;
  }
}
.prof_item .prof_texts .prof_body p {
  line-height: 1.8;
  text-align: justify;
}

#staff .section_inner .section_main {
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main {
    max-width: 500px;
  }
}
#staff .section_inner .section_main .prof_item {
  padding: 0px;
  border: 0;
  background-color: transparent;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .prof_item .prof_names {
    padding-right: 0;
  }
}
#staff .section_inner .section_main .prof_item .prof_names .prof_name {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .prof_item .prof_names .prof_name {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .prof_item .prof_names .prof_role {
    margin: 0 auto 10px;
    text-align: center;
  }
}
#staff .section_inner .section_main .prof_item .prof_body {
  border: 0;
  padding: 0;
}/*# sourceMappingURL=style.css.map */