@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-family: "Kiwi Maru", serif;
  font-size: 18px;
  color: #333;
  min-height: 100vh;
  background-color: #FFFEF2;
}
@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;
}

.imgs4 {
  display: flex;
  flex-wrap: wrap;
}
.imgs4 div {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .imgs4 div {
    width: 50%;
  }
}

h2 {
  max-width: 454px;
  margin: 0 auto 40px;
  width: 80%;
}

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

.text_body p {
  margin-bottom: 1em;
  line-height: 1.8;
  text-align: justify;
}
.text_body p:last-of-type {
  margin-bottom: 0.7em;
}

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

.footer {
  background-color: #fff;
  padding: 60px 40px 40px;
}
.footer .title_footer {
  max-width: 428px;
  width: 80%;
  margin: 0 auto 0px;
}
.footer .release_footer {
  width: 80%;
  max-width: 463px;
  margin: 0 auto 30px;
}

.major {
  display: block;
  margin: 0 auto 20px;
  max-width: 280px;
  width: 100%;
}
.major:hover {
  opacity: 0.7;
}

/*fixed_bg------------------------*/
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #FFFEF2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_inner .loader {
  animation: flash 1s infinite;
  max-width: 400px;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*-------------------------------*/
/*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:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #333;
}
.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;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes flash {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/*-inview------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
}
@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: 1s;
    opacity: 0;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.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;
  }
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  opacity: 0;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    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.8s;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    background-color: rgba(255, 253, 238, 0.8);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .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: center;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  display: block;
  padding: 20px 0.25em;
  font-size: 1.1em;
  color: #9D498E;
  transition: 0.4s;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.43em;
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.gnav .gnav_list li a img {
  width: 22px;
}

.nav_top {
  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: #ECEC72;
  cursor: pointer;
}
.nav_top:hover {
  transform: scale(1, 0.6) translateY(2px);
}
.nav_top.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_top.active {
    opacity: 1;
  }
}

/*-------------------------------*/
#top {
  height: 43.18vw;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top {
    height: 170vw;
  }
}
#top .main {
  position: absolute;
  width: 42.29%;
  top: 4.83%;
  left: 6.56%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    top: 0%;
    left: 0%;
  }
}
#top .main img {
  transition: 2s;
  opacity: 0;
  transform: scale(1.1);
}
#top .main.inview img {
  transform: scale(1);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 43.59%;
  top: 8.81%;
  left: 52.4%;
  opacity: 0;
  transition: 2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 88.21%;
    top: 3.02%;
    left: 5.9%;
  }
}
#top .copy.inview {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#top .award {
  position: absolute;
  width: 9.23%;
  top: 23.04%;
  left: 69.58%;
  opacity: 0;
  transition: 2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .award {
    width: 29.23%;
    top: 10.57%;
    left: 30.77%;
  }
}
#top .award.inview {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#top h1.title {
  position: absolute;
  width: 38.65%;
  top: 39.6%;
  left: 54.9%;
  opacity: 0;
  transition: 2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top h1.title {
    width: 94.1%;
    top: 51.81%;
    left: 3.08%;
  }
}
#top h1.title.inview {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#top .release {
  position: absolute;
  width: 34.38%;
  top: 85.84%;
  left: 57.03%;
  opacity: 0;
  transition: 2s;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 95.13%;
    top: 94.5%;
    left: 2.31%;
  }
}
#top .release.inview {
  opacity: 1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#top .title_bg {
  position: absolute;
  width: 61.15%;
  top: 10.62%;
  left: 42.5%;
}
@media screen and (max-width: 768px) {
  #top .title_bg {
    width: 0%;
    top: 0%;
    left: 0%;
  }
}

#info {
  padding: 40px 50px 80px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 40px;
  }
}
#info .btn_theater {
  display: block;
  max-width: 240px;
  width: 100%;
  margin: 0 auto 30px;
}
#info .btn_theater:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#info .btns div {
  margin: 0 10px 10px;
  position: relative;
  max-width: 190px;
  width: 100%;
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 190px;
  width: 100%;
}
#info .btns div a:hover {
  filter: brightness(120%);
}
#info h2 {
  margin-bottom: 0;
}

.sns_btns {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}
.sns_btns a {
  width: 160px;
  display: block;
  margin: 0 5px;
}
.sns_btns a:hover {
  opacity: 0.7;
}

.tieup {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
  flex-wrap: wrap;
}
.tieup li {
  margin-bottom: 20px;
}
.tieup li a {
  max-width: 200px;
  width: 90%;
  text-align: center;
  display: block;
  opacity: 0.9;
}
.tieup li a:hover {
  opacity: 0.7;
}

.bnrs2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.bnrs2 a {
  display: block;
  width: calc(50% - 5px);
  max-width: 170px;
  border: solid 1px #D5A9CD;
  border-radius: 10px;
  overflow: hidden;
}
.bnrs2 a:hover {
  filter: brightness(120%);
}

.bnrs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bnrs .bnr {
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  max-width: 200px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bnrs .bnr {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    max-width: unset;
  }
}
.bnrs .bnr a {
  display: block;
  transition: 0.3s;
}
.bnrs .bnr a:hover {
  filter: brightness(120%);
}
.bnrs .bnr img {
  border-radius: 5px;
}

.mvtk {
  width: 100%;
  margin: 0 auto 30px;
}
.mvtk div {
  margin: 0 auto;
}

.billing {
  max-width: 1100px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .billing {
    max-width: 320px;
  }
}
.billing .mvtk #mvtk-widgets-container {
  margin: 0 auto 40px;
}

/*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 h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-weight: bold;
  color: #ECEC72;
  font-size: 1.5em;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
#trailer .trailer_tab li {
  width: 50%;
  margin: 0;
}
#trailer .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: #ECEC72;
  background-color: #3D3000;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tab li a {
    height: 3em;
  }
}
#trailer .trailer_tab .tab.active a {
  color: #333;
  background-color: #ECEC72;
}
#trailer .trailer_tab .tab.active a::before {
  content: "● ";
}
#trailer .trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#intro .section_inner {
  overflow: hidden;
  background-color: #fff;
}
#intro .section_inner .section_main {
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    max-width: 500px;
  }
}
#intro .section_inner .section_main h3 {
  max-width: 855px;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h3 {
    margin-bottom: 10px;
  }
}
#intro .section_inner .section_main h4 {
  max-width: 993px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h4 {
    margin-bottom: 10px;
  }
}
#intro .section_inner .section_main .intro_box {
  display: flex;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .intro_box {
    flex-wrap: wrap;
  }
}
#intro .section_inner .section_main .intro_box .intro_texts {
  width: 63%;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .intro_box .intro_texts {
    width: 100%;
  }
}
#intro .section_inner .section_main .intro_box .intro_texts .copy3 {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .intro_box .intro_texts .copy3 {
    margin-bottom: 14px;
  }
}
#intro .section_inner .section_main .intro_box .intro_texts .copy4 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .intro_box .intro_texts .copy4 {
    margin-bottom: 20px;
  }
}
#intro .section_inner .section_main .intro_box .intro_img {
  margin-left: 30px;
  width: 37%;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .intro_box .intro_img {
    width: 100%;
    margin-left: 0;
    transform: translateX(40px);
    margin-top: 30px;
  }
}

#story .section_inner {
  background-color: #ffffe6;
}
#story .section_inner .section_main {
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main {
    max-width: 500px;
  }
}
#story .section_inner .section_main h2 {
  margin-bottom: 25px;
}
#story .section_inner .section_main .img_story {
  max-width: 120px;
  margin: 0 auto 10px;
}

#cast .section_inner, #staff .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner, #staff .section_inner {
    padding: 80px 30px;
  }
}
#cast .section_inner .section_main, #staff .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main, #staff .section_inner .section_main {
    max-width: 500px;
  }
}
#cast .prof_items .prof_item, #staff .prof_items .prof_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
#cast .prof_items .prof_item:last-of-type, #staff .prof_items .prof_item:last-of-type {
  margin-bottom: 0;
}
#cast .prof_items .prof_item .prof_img, #staff .prof_items .prof_item .prof_img {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #cast .prof_items .prof_item .prof_img, #staff .prof_items .prof_item .prof_img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
#cast .prof_items .prof_item .prof_texts, #staff .prof_items .prof_item .prof_texts {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #cast .prof_items .prof_item .prof_texts, #staff .prof_items .prof_item .prof_texts {
    width: 100%;
  }
}
#cast .prof_items .prof_item .prof_texts .prof_names, #staff .prof_items .prof_item .prof_texts .prof_names {
  border-bottom: dashed 1px #D5A9CD;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #cast .prof_items .prof_item .prof_texts .prof_names, #staff .prof_items .prof_item .prof_texts .prof_names {
    text-align: center;
  }
}
#cast .prof_items .prof_item .prof_texts .prof_names .prof_role, #staff .prof_items .prof_item .prof_texts .prof_names .prof_role {
  margin-bottom: 0.5em;
  color: #D5A9CD;
}
#cast .prof_items .prof_item .prof_texts .prof_names .prof_name, #staff .prof_items .prof_item .prof_texts .prof_names .prof_name {
  font-size: 1.5em;
  margin-bottom: 0.25em;
  margin-left: -0.1em;
}
@media screen and (max-width: 768px) {
  #cast .prof_items .prof_item .prof_texts .prof_names .prof_name, #staff .prof_items .prof_item .prof_texts .prof_names .prof_name {
    font-size: 1.3em;
    margin-left: 0;
    line-height: 1.4;
  }
}
#cast .prof_items .prof_item .prof_texts .prof_names .prof_name_en, #staff .prof_items .prof_item .prof_texts .prof_names .prof_name_en {
  margin-bottom: 1em;
  color: #77bd08;
  font-style: italic;
  letter-spacing: 0.1em;
  font-size: 0.8em;
}
#cast .prof_items .prof_item .prof_texts .prof_body p, #staff .prof_items .prof_item .prof_texts .prof_body p {
  text-align: justify;
  line-height: 1.6;
}
#cast .prof_items .prof_item.noimg .prof_texts, #staff .prof_items .prof_item.noimg .prof_texts {
  width: 100%;
}
#cast .neko, #staff .neko {
  max-width: 200px;
  width: 50%;
  margin: 80px auto -140px;
}

#cast {
  background-color: #fff;
}

#comment {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(img/bgp.png);
  background-size: 200px;
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #comment {
    padding: 80px 30px;
  }
}
#comment .section_inner .section_main .comment-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
#comment .section_inner .section_main .comment-anchor li {
  padding: 0.5em 0.75em;
}
#comment .section_inner .section_main .comment-anchor li a {
  color: #9D498E;
  -webkit-text-decoration: underline dashed 1px #ECEC72;
          text-decoration: underline dashed 1px #ECEC72;
}
#comment .section_inner .section_main .cau {
  text-align: center;
  font-size: 0.8em;
  margin-bottom: 1em;
  opacity: 0.7;
}
#comment .section_inner .section_main .comment-list {
  max-width: 940px;
  margin: 0 auto;
}
#comment .section_inner .section_main .comment-list .comment-item {
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 10px;
  border: solid 1px #FFF;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment-list .comment-item {
    margin-bottom: 20px;
  }
}
#comment .section_inner .section_main .comment-list .comment-item .comment_names {
  text-align: right;
}
#comment .section_inner .section_main .comment-list .comment-item .comment_names .comment_name {
  font-size: 1.3em;
  margin-top: 0.5em;
  color: #9D498E;
  position: relative;
  z-index: 2;
}
#comment .section_inner .section_main .comment-list .comment-item .comment_names .comment_katagaki {
  font-size: 0.9em;
  margin-top: 0.5em;
  color: #a3c5b1;
}
#comment .section_inner .section_main .comment-list .comment-item .comment_body p {
  font-size: 0.9em;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 0.5em;
}
#comment .section_inner .section_main .comment-list .comment-item .comment_body p:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment-list:last-of-type {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */