@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* :focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

html {
  font-size: 18px;
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  font-weight: 400;
  line-height: 160%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  width: 100%;
  background-color: #fff;
  color: #090909;
}

a {
  text-decoration: none;
  font-size: 1rem;
}

h2 {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
}

li {
  list-style-type: none;
}

.br__sp {
  display: none;
}

.br__pc {
  display: block;
}

.br__tb {
  display: none;
}

@media screen and (max-width: 960px) {
  .br__tb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .br__sp {
    display: block;
  }
  .br__pc {
    display: none;
  }
}
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/**/
main {
  width: 100%;
  overflow: hidden;
}

/*フェードイン制御*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms ease;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.scale {
  transform: scale(0);
  transition: all 400ms ease;
}

.scale.scrollin {
  transform: scale(1);
}

.fadeinl {
  opacity: 0;
  transform: translate(-1000px, 0px);
  transition: all 600ms ease;
}

.fadeinl.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinr {
  opacity: 0;
  transform: translate(1000px, 0px);
  transition: all 600ms ease;
}

.fadeinr.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*FV*/
.mangaFv {
  position: relative;
  width: 100%;
  background-color: #090909;
}
.mangaFv-back {
  width: 100vw;
  max-height: 1000px;
  height: 90%;
  overflow: hidden;
  line-height: 0%;
}
.mangaFv-back__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../image/back_dot.png);
  z-index: 2;
}
.mangaFv-back video {
  width: 100%;
}
.mangaFv-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skew(0deg, -6deg);
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 50px 0;
  z-index: 3;
}
.mangaFv-text h1 {
  color: #fff;
  font-size: 7.7777777778rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1;
  font-feature-settings: "palt";
  margin-bottom: 25px;
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.mangaFv-text h1 span {
  font-size: 6.1111111111rem;
}
.mangaFv-text__obi {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 2.2222222222rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1;
  font-feature-settings: "palt";
  margin-bottom: 20px;
  padding: 10px 0;
}
.mangaFv-text__lead {
  color: #fff;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1;
  font-feature-settings: "palt";
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.mangaFv-con {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 100%;
  z-index: 5;
}
.mangaFv-con__btn {
  text-align: center;
}
.mangaFv-con__btn a {
  position: relative;
  display: inline-block;
  background: #FE9000;
  border-radius: 100vh;
  border-bottom: 5px solid #a85f00;
  color: #fff;
  font-size: 1.1111111111rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 10px 70px;
  transition: all 0.3s ease;
}
.mangaFv-con__btn a:hover {
  margin-top: 3px;
  border-bottom: 2px solid #a85f00;
  transition: all 0.3s ease;
}
.mangaFv-con__btn a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.mangaFv__pc {
  display: block !important;
}

.mangaFv__sp {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .mangaFv-con {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mangaFv-back {
    width: 100vw;
    max-height: 70vh;
    height: 70vh;
  }
  .mangaFv-text {
    top: 60%;
    transform: translateY(-60%) skew(0deg, -6deg);
    padding: 3vh 0;
  }
  .mangaFv-text h1 {
    font-size: 26.0416666667vw;
    line-height: 1;
    margin-bottom: 2vh;
  }
  .mangaFv-text h1 span {
    font-size: 13.0208333333vw;
  }
  .mangaFv-text__obi {
    font-size: 5.2083333333vw;
    line-height: 1;
    margin-bottom: 2vh;
    padding: 1vh 0;
  }
  .mangaFv-text__lead {
    font-size: 3.90625vw;
    line-height: 1;
  }
  .mangaFv__pc {
    display: none !important;
  }
  .mangaFv__sp {
    display: block !important;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
}
/*実績*/
.mangaSample-wrap {
  position: relative;
  width: 100%;
  max-height: 500px;
  height: 45vw;
  background-color: #0099cc;
  background-image: url(../image/back_line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.mangaSample__dododo {
  position: absolute;
  top: -80px;
  left: -10px;
  width: 40%;
}

.mangaSample {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: 90%;
  background: #fff;
  border-radius: 30px;
  margin: 0 auto;
  padding: 90px 50px 40px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.mangaSample__title {
  color: #0099cc;
  font-size: 2.7777777778rem;
  line-height: 1;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 40px;
}
.mangaSample-videoWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.mangaSample-video {
  width: calc(50% - 20px);
}
.mangaSample-video__frame {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.mangaSample-video__frame::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #333;
  opacity: 0.5;
  transition: 0.3s ease all;
}
.mangaSample-video__frame::after {
  content: "\f144";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  color: #333;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 4rem;
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.5), -5px -5px 5px rgba(255, 255, 255, 0.8);
  transition: 0.3s ease all;
}
.mangaSample-video__frame:hover::before {
  opacity: 0;
  transition: 0.3s ease all;
}
.mangaSample-video__frame:hover::after {
  color: #0099cc;
  transition: 0.3s ease all;
  transform: translateX(-50%) scale(1.3);
}
.mangaSample-video__frame img {
  width: 100%;
  height: auto;
}
.mangaSample-video__text {
  background: #0099cc;
  color: #fff;
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  .mangaSample-wrap {
    max-height: -moz-max-content;
    max-height: max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 100px 0;
  }
  .mangaSample__dododo {
    top: -40px;
  }
  .mangaSample {
    position: static;
    transform: translateX(0);
    padding: 50px 20px 10px;
  }
  .mangaSample__title {
    margin-bottom: 30px;
  }
  .mangaSample-videoWrap {
    flex-direction: column;
    gap: 0;
  }
  .mangaSample-video {
    width: 100%;
    margin-bottom: 30px;
  }
}
/*お客様の声*/
.mangaVoice-wrap {
  position: relative;
  background-image: url(../image/back_whiteY.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 650px 0 300px;
}

.mangaVoice-title {
  color: #090909;
  font-size: 3.8888888889rem;
  line-height: 1;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 80px;
}

.mangaVoice {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  max-width: 960px;
  width: 90%;
  z-index: 20;
}
.mangaVoice__ballon--line {
  background: linear-gradient(transparent 60%, #b2e0f0 60%);
}
.mangaVoice__ballon--small {
  font-size: 1rem;
}
.mangaVoice-left {
  position: relative;
  width: 50%;
  height: 400px;
  background-color: #fff;
  background-image: url(../image/voice2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  border: 3px solid #090909;
  margin-bottom: 50px;
}
.mangaVoice-left-ballon {
  position: absolute;
  bottom: -100px;
  right: -30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 215px;
  background-image: url(../image/balloon_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 30px;
}
.mangaVoice-left p {
  font-size: 1.1111111111rem;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mangaVoice-right {
  position: relative;
  width: 50%;
  height: 400px;
  background-color: #fff;
  background-image: url(../image/voice1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  border: 3px solid #090909;
  margin-top: 30px;
}
.mangaVoice-right-ballon {
  position: absolute;
  top: -100px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 234px;
  background-image: url(../image/balloon_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 20px;
}
.mangaVoice-right p {
  font-size: 1.1111111111rem;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mangaVoice-bottom {
  width: 100%;
  height: 250px;
  background: #090909;
}

@media screen and (max-width: 768px) {
  .mangaVoice-wrap {
    padding: 100px 0 50px;
  }
  .mangaVoice-title {
    font-size: 3.8888888889rem;
    margin-bottom: 30px;
  }
  .mangaVoice {
    position: static;
    transform: translateX(0);
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
  }
  .mangaVoice-left {
    height: 40vw;
    width: 100%;
    background-position: left top;
    background-size: contain;
    margin: 0;
  }
  .mangaVoice-left-ballon {
    position: static;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    background-image: none;
    text-align: right;
    padding: 0 0.5rem 0 0;
  }
  .mangaVoice-right {
    height: 40vw;
    width: 100%;
    background-position: left top;
    background-size: contain;
    margin: 0;
  }
  .mangaVoice-right-ballon {
    position: static;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    background-image: none;
    text-align: right;
    padding: 0 0.5rem 0 0;
  }
  .mangaVoice-bottom {
    height: 50px;
  }
}
/*世界観無限大*/
.mangaWorld {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url(../image/back_infinity.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10vw 0 15vw;
}
.mangaWorld p {
  color: #fff;
  font-size: 6.6666666667rem;
  line-height: 1.25;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  z-index: 2;
  transform: rotate(-10deg);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

/*マンガ動画の強み*/
.mangaMessage-wrap {
  position: relative;
  width: 100%;
  height: 1233px;
  background: #fff;
  padding-bottom: 150px;
}
.mangaMessage-wrap::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 100vw 0 0;
  border-color: transparent #fff transparent transparent;
}

.mangaMessage {
  position: absolute;
  top: -9vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: 90%;
  line-height: 0;
  text-align: center;
  margin: 0 auto;
}
.mangaMessage img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  .mangaMessage-wrap {
    height: auto;
    padding: 30px 0 100px;
  }
  .mangaMessage {
    position: static;
    transform: translateX(0);
  }
}
/*ジャンル*/
.mangaGenre {
  position: relative;
  background: #f8f8f8;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.mangaGenre-title {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
  padding-top: 40px;
  z-index: 1;
  animation: hurueru 0.1s infinite;
}
.mangaGenre-title::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../image/gizagiza.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  width: 600px;
  height: 500px;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.mangaGenre-title__text {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 3.8888888889rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.25;
}
.mangaGenre-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.mangaGenre-list ul {
  display: inline-block;
  animation: scrollGenre 10s linear infinite;
  margin-right: -5rem;
}
.mangaGenre-list li {
  display: inline-block;
  color: #ccc;
  font-size: 2.7777777778rem;
  line-height: 2;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-right: 5rem;
}

@media screen and (max-width: 768px) {
  .mangaGenre {
    height: 400px;
  }
  .mangaGenre-title {
    height: 400px;
  }
  .mangaGenre-title::before {
    width: 100%;
    height: 300px;
  }
  .mangaGenre-title__text {
    font-size: 13.0208333333vw;
  }
  .mangaGenre-list ul {
    margin-right: -2rem;
  }
  .mangaGenre-list li {
    font-size: 1.6666666667rem;
    margin-right: 2rem;
  }
}
@keyframes scrollGenre {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*NPの強み*/
.mangaNP-top {
  position: relative;
  width: 100%;
  background: #0099cc;
  color: #fff;
  text-align: center;
  font-size: 2.2222222222rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: -80px;
  padding-top: 100px;
}
.mangaNP-top::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 50vw 0 50vw;
  border-color: #0099cc transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.mangaNP-wrap {
  width: 100%;
  background-image: url(../image/back_dotWhite.png);
  padding: 200px 0 250px;
}

.mangaNPLead {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.mangaNPLead__title {
  position: relative;
  display: inline-block;
  color: #0099cc;
  font-size: 3.8888888889rem;
  line-height: 1.3;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: left;
  margin-bottom: 50px;
  z-index: 5;
}
.mangaNPLead__title span {
  background: #fff;
}
.mangaNPLead-band {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 200px;
}
.mangaNPLead-band::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50vw);
  bottom: 0;
  background: #0099cc;
  width: 100vw;
  height: 200px;
}
.mangaNPLead-band::after {
  content: "";
  position: absolute;
  bottom: -43.3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 43.3px 25px 0 25px;
  border-color: #0099cc transparent transparent transparent;
  z-index: 2;
}
.mangaNPLead-band__text {
  position: relative;
  color: #fff;
  font-size: 1.6666666667rem;
  text-align: left;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  z-index: 5;
}
.mangaNPLead-band__text span {
  position: relative;
  font-size: 2.2222222222rem;
  background: linear-gradient(transparent 80%, #FE9000 80%);
}
.mangaNPLead-band__img {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 0;
}

.mangaNPStrong {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
  padding-top: 130px;
  z-index: 1;
}
.mangaNPStrong::before {
  content: "strength";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 300px;
  color: #FE9000;
  font-size: 11.1111111111rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  opacity: 0.3;
}
.mangaNPStrong::after {
  content: "";
  position: absolute;
  top: 10px;
  background: #FE9000;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.mangaNPStrong__decoration {
  position: absolute;
  top: 80px;
  color: #fff;
  text-align: center;
  font-size: 3.3333333333rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaNPStrong__decoration-line1::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background: #FE9000;
  top: -50px;
  left: -50px;
  transform: rotate(-50deg);
}
.mangaNPStrong__decoration-line1::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background: #FE9000;
  top: -60px;
  left: -40px;
  transform: rotate(-30deg);
}
.mangaNPStrong__decoration-line2::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background: #FE9000;
  top: -38px;
  left: -58px;
  transform: rotate(-70deg);
}
.mangaNPStrong__text {
  position: relative;
  display: inline-block;
  background: #090909;
  color: #fff;
  text-align: center;
  font-size: 2.2222222222rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 120px;
  padding: 2rem 2rem 1rem;
}
.mangaNPStrong__text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 8px;
  left: 8px;
  z-index: -1;
  background-size: 6px 6px;
  background-image: linear-gradient(-45deg, #090909 25%, #fff 25%, #fff 50%, #090909 50%, #090909 75%, #fff 75%, #fff);
}
.mangaNPStrong__text span {
  position: relative;
  font-size: 3.8888888889rem;
}
.mangaNPStrong__text span::before {
  content: "クリエイティブコーディネーター";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
}

.mangaNP {
  max-width: 960px;
  width: 90%;
  margin: 0 auto 100px auto;
}

.mangaNP-child {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
}
.mangaNP-child-ballon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40%;
  height: 300px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.mangaNP-child-ballon__title {
  color: #090909;
  font-size: 1.6666666667rem;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  white-space: nowrap;
  line-height: 1.2;
  font-feature-settings: "palt";
}
.mangaNP-child-ballon__title span {
  font-size: 3.6111111111rem;
  font-family: vdl-logojrblack, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaNP-child-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  background-image: url(../image/back_linemono.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: 3px solid #090909;
  width: 100%;
  height: 200px;
  font-size: 1.1111111111rem;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaNP-child-frame span {
  background: linear-gradient(transparent 60%, #b2e0f0 60%);
}
.mangaNP-child--one {
  padding-left: 30%;
}
.mangaNP-child--one .mangaNP-child-ballon {
  top: -30%;
  left: 0;
  background-image: url(../image/mokomoko1.svg);
}
.mangaNP-child--two {
  padding-right: 30%;
}
.mangaNP-child--two .mangaNP-child-ballon {
  top: -30%;
  right: 0;
  background-image: url(../image/mokomoko2.svg);
  padding-bottom: 5%;
}
.mangaNP-child--three {
  padding-left: 30%;
  margin-bottom: 0;
}
.mangaNP-child--three .mangaNP-child-ballon {
  top: -30%;
  left: 0;
  background-image: url(../image/mokomoko3.svg);
  padding-bottom: 5vh;
}

@media screen and (max-width: 960px) {
  .mangaNP-top {
    font-size: 7.8125vw;
    margin: 0 auto -2vh auto;
    padding-top: 50px;
  }
  .mangaNP-wrap {
    padding: 13vh 0 100px;
  }
  .mangaNPLead__title {
    font-size: 9.1145833333vw;
    margin-bottom: 3vh;
  }
  .mangaNPLead-band {
    width: 100%;
    height: 26.0416666667vw;
  }
  .mangaNPLead-band::before {
    height: 26.0416666667vw;
  }
  .mangaNPLead-band::after {
    bottom: -16.3px;
    border-width: 17.3px 10px 0 10px;
  }
  .mangaNPLead-band__text {
    font-size: 3.90625vw;
  }
  .mangaNPLead-band__text span {
    font-size: 6.5104166667vw;
  }
  .mangaNPLead-band__img {
    height: auto;
    width: 70vw;
    right: -30vw;
  }
  .mangaNPStrong {
    padding-top: 18vw;
  }
  .mangaNPStrong::before {
    top: 10vw;
    height: 300px;
    font-size: 19.53125vw;
  }
  .mangaNPStrong::after {
    top: 10px;
    width: 30vw;
    height: 30vw;
  }
  .mangaNPStrong__decoration {
    top: 10vw;
    font-size: 7.8125vw;
  }
  .mangaNPStrong__decoration-line1::before {
    max-height: 30px;
    height: 4vw;
    top: -11vw;
    left: -4vw;
    transform: rotate(-30deg);
  }
  .mangaNPStrong__decoration-line1::after {
    max-height: 30px;
    height: 4vw;
    top: -9vw;
    left: -6vw;
    transform: rotate(-50deg);
  }
  .mangaNPStrong__decoration-line2::before {
    max-height: 30px;
    height: 4vw;
    top: -7vw;
    left: -7vw;
    transform: rotate(-70deg);
  }
  .mangaNPStrong__text {
    font-size: 7.8125vw;
    line-height: 2.5em;
    margin-bottom: 10vw;
    padding: -1em 1rem 1rem;
  }
  .mangaNPStrong__text span {
    font-size: 13.0208333333vw;
  }
  .mangaNPStrong__text span::before {
    top: -100%;
    font-size: 1rem;
  }
  .mangaNP-child {
    width: 100%;
    margin-bottom: 30px;
  }
  .mangaNP-child-ballon {
    position: static;
    width: 100%;
    height: auto;
  }
  .mangaNP-child-ballon__title {
    width: 50%;
    font-size: 8.4635416667vw;
  }
  .mangaNP-child-ballon__title span {
    font-size: 11.0677083333vw;
  }
  .mangaNP-child-frame {
    width: 100%;
    height: auto;
    padding: 1rem 0.5rem;
  }
  .mangaNP-child--one {
    padding-left: 0;
  }
  .mangaNP-child--one .mangaNP-child-ballon {
    background-image: none;
  }
  .mangaNP-child--two {
    padding-right: 0;
  }
  .mangaNP-child--two .mangaNP-child-ballon {
    background-image: none;
    padding: 0;
  }
  .mangaNP-child--three {
    padding-left: 0;
    margin-bottom: 0;
  }
  .mangaNP-child--three .mangaNP-child-ballon {
    background-image: none;
    padding: 0;
  }
}
/*おまかせください*/
.mangaToMe {
  position: relative;
  width: 100vw;
  margin: 0 auto;
  background: #0099cc;
  padding: 50px 0;
  transform: skew(0deg, -6deg);
}
.mangaToMe__text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  color: #fff;
  font-size: 3.6111111111rem;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.3;
  font-feature-settings: "palt";
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .mangaToMe {
    padding: 8vw 0;
  }
  .mangaToMe__text {
    font-size: 9.1145833333vw;
    height: auto;
  }
}
/*POINT1～3共通*/
.mangaPoint {
  width: 100%;
  padding: 150px 0;
}
.mangaPoint--bgGray {
  background: #f8f8f8;
}
.mangaPoint__img {
  text-align: center;
  line-height: 0;
}
.mangaPoint__img img {
  width: 100px;
  animation: float_point 3s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes float_point {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-6px);
  }
  66.66667% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.mangaPoint__title {
  font-size: 2.7777777778rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.mangaPoint__title span {
  font-size: 3.6111111111rem;
  font-family: vdl-logojrblack, sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #0099cc;
  line-height: 0%;
}

@media screen and (max-width: 768px) {
  .mangaPoint {
    padding: 100px 0;
  }
  .mangaPoint__img {
    margin-bottom: 5px;
  }
  .mangaPoint__img img {
    width: 100px;
  }
  .mangaPoint__title {
    font-size: 2.2222222222rem;
  }
  .mangaPoint__title span {
    font-size: 3.0555555556rem;
  }
}
/*マンガ動画の魅力*/
.mangaCharm {
  display: flex;
  gap: 30px;
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.mangaCharm-box {
  width: 33.3333333333%;
  background: #fff;
  padding: 20px;
}
.mangaCharm-box__num {
  width: 100%;
  color: #0099cc;
  font-size: 2.7777777778rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}
.mangaCharm-box-text {
  width: 100%;
}
.mangaCharm-box-text h3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100px;
  font-size: 1.9444444444rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1.3;
  border-bottom: 1px dashed #0099cc;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.mangaCharm-box-text__img {
  text-align: center;
  line-height: 0;
  margin-bottom: 10px;
}
.mangaCharm-box-text__img img {
  width: auto;
  height: 150px;
}
.mangaCharm-box-text__text {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .mangaCharm {
    flex-direction: column;
  }
  .mangaCharm-box {
    width: 100%;
  }
  .mangaCharm-box-text h3 {
    min-height: auto;
  }
}
.mangaScene {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.mangaScene__text {
  font-size: 1.1111111111rem;
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}
.mangaScene__img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 0;
}
.mangaScene__img img {
  width: 50%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .mangaScene__text {
    text-align: justify;
  }
}
.mangaAction {
  width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mangaAction-list {
  width: 155px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.mangaAction-list--white {
  background: #0099cc;
}
.mangaAction-list--white .mangaAction-list__no {
  color: #fff;
}
.mangaAction-list--white .mangaAction-list__cap {
  color: #fff;
}
.mangaAction-list--blue {
  background-color: #fff;
  border: 1px solid #0099cc;
}
.mangaAction-list--blue .mangaAction-list__no {
  color: #0099cc;
}
.mangaAction-list__no {
  font-size: 1.1111111111rem;
  text-align: center;
  font-family: vdl-logojrblack, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaAction-list__cap {
  font-size: 1rem;
  text-align: center;
  line-height: 150%;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mangaAction-list__cap span {
  font-size: 1.3888888889rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaAction-list__img {
  line-height: 0;
  text-align: center;
  margin-top: auto;
}
.mangaAction-list__img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 960px) {
  .mangaAction-overflow {
    overflow-x: scroll !important;
    white-space: nowrap;
    margin: 0;
  }
  .mangaAction-list__img img {
    width: 50%;
  }
}
/*インフォメーション*/
.mangaInfo-wrap {
  position: relative;
  width: 100%;
  padding: 150px 0px;
  background: #f8f8f8;
}
.mangaInfo-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 50px;
  background: #fff;
}

.mangaInfo {
  position: relative;
  max-width: 960px;
  width: 90%;
  margin: 0 auto 100px auto;
}
.mangaInfo::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: #0099cc;
}
.mangaInfo__title {
  width: 300px;
  background-color: #0099cc;
  color: #fff;
  font-size: 1.1111111111rem;
  text-align: center;
  margin: 0 auto 40px;
  padding: 10px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.mangaInfo-listWrap {
  width: 100%;
  display: flex;
  gap: 40px;
}
.mangaInfo-list {
  width: 50%;
  background: #fff;
  padding: 30px;
}
.mangaInfo-list__title {
  color: #0099cc;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}
.mangaInfo-list__img {
  text-align: center;
  line-height: 0;
  margin-bottom: 20px;
}
.mangaInfo-list__img-price {
  width: auto;
  height: 150px;
}
.mangaInfo-list__img-flow {
  width: 100%;
  height: auto;
}
.mangaInfo-list__price {
  font-size: 1.3888888889rem;
  text-align: center;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  margin-bottom: 10px;
}
.mangaInfo-list__text {
  font-size: 0.8888888889rem;
  line-height: 1.5;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .mangaInfo-wrap {
    padding: 100px 0px;
  }
  .mangaInfo-listWrap {
    flex-direction: column;
  }
  .mangaInfo-list {
    width: 100%;
  }
}
/*Q&A*/
.mangaQandA {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.mangaQandA__title {
  color: #0099cc;
  font-size: 3.3333333333rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}
.mangaQandA__title span {
  font-size: 1.6666666667rem;
}
.mangaQandA-list input {
  display: none;
}
.mangaQandA-list input[type=checkbox]:checked + label:after {
  transform: translateY(-50%) scale(1, -1);
}
.mangaQandA-list label {
  position: relative;
  display: block;
  background: #0099cc;
  border-bottom: 1px solid #fff;
  width: 100%;
  color: #fff;
  text-align: justify;
  padding: 1rem 2.5rem 1rem 4rem;
  cursor: pointer;
  transition: 0.3s ease all;
}
.mangaQandA-list label::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #0099cc;
  font-size: 1.1111111111rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}
.mangaQandA-list label::after {
  content: "\f107";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: 0.3s ease all;
}
.mangaQandA-list label:hover {
  background: #b2e0f0;
  color: #0099cc;
  transition: 0.3s ease all;
}
.mangaQandA-list label:hover::before {
  background: #0099cc;
  color: #fff;
  transition: 0.3s ease all;
}
.mangaQandA-list__answer {
  position: relative;
  width: calc(100% - 2rem);
  height: 0;
  background: #fff;
  border: solid #0099cc;
  border-width: 0 0 0 1px;
  text-align: justify;
  margin-left: 2rem;
  padding-right: 1rem;
  padding-left: 4rem;
  overflow-y: hidden;
  transition: padding-bottom 0.3s, padding-top 0.3s;
}
.mangaQandA-list__answer::before {
  content: "A";
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0099cc;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1111111111rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}

#question01:checked ~ #answer01,
#question02:checked ~ #answer02,
#question03:checked ~ #answer03,
#question04:checked ~ #answer04,
#question05:checked ~ #answer05,
#question06:checked ~ #answer06,
#question07:checked ~ #answer07 {
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/*お問い合わせ*/
.mangaContact-wrap {
  padding: 150px 0;
  background-image: url(../image/back_dotWhite.png);
}

.mangaDocument {
  position: relative;
  width: 600px;
  height: 600px;
  border: 3px solid #FE9000;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 150px;
  transition: 0.3s ease all;
}
.mangaDocument::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  color: #FE9000;
  font-size: 1.6666666667rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.mangaDocument:hover {
  background: #FFF4E5;
  transform: translate(5px, 5px);
  transition: 0.3s ease all;
}
.mangaDocument:hover::before {
  content: url(../image/zukyun.svg);
  position: absolute;
  top: -20px;
  left: 0;
  width: 300px;
  height: auto;
  z-index: 500;
  transition: all 0.3s ease;
}
.mangaDocument:hover::after {
  right: 1.5rem;
  transition: all 0.3s ease;
}
.mangaDocument a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #090909;
  padding-top: 100px;
}
.mangaDocument__balloon {
  position: absolute;
  top: 50px;
  display: inline-block;
  background: #FE9000;
  border-radius: 10px;
  color: #fff;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  padding: 10px;
}
.mangaDocument__title {
  position: relative;
  text-align: center;
  color: #FE9000;
  font-size: 1.9444444444rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.3;
  margin-bottom: 5px;
}
.mangaDocument__title::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #FE9000 transparent transparent transparent;
}
.mangaDocument__img {
  position: absolute;
  bottom: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
}

.mangaContact {
  position: relative;
  max-width: 960px;
  width: 90%;
  background: #fff;
  border: 3px solid #0099cc;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
  padding: 40px 40px 40px 300px;
}
.mangaContact__title {
  font-size: 1.9444444444rem;
  line-height: 1;
  margin-bottom: 10px;
}
.mangaContact__lead {
  font-size: 1.1111111111rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.mangaContact__lead a {
  color: #090909;
  transition: 0.3s ease all;
}
.mangaContact__lead a:hover {
  color: #0099cc;
  transition: 0.3s ease all;
}
.mangaContact__btn {
  margin-bottom: 20px;
}
.mangaContact__btn a {
  position: relative;
  display: inline-block;
  background: #FE9000;
  border-radius: 100vh;
  border-bottom: 5px solid #a85f00;
  color: #fff;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 30px 0;
  transition: all 0.3s ease;
  width: 100%;
}
.mangaContact__btn a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.mangaContact__btn a:hover {
  margin-top: 3px;
  border-bottom: 2px solid #a85f00;
  transition: all 0.3s ease;
}
.mangaContact__btn a:hover::before {
  right: 1.5rem;
  transition: all 0.3s ease;
}
.mangaContact-tel {
  background: #0099cc;
  border-radius: 5px;
  width: 100%;
  color: #fff;
  padding: 10px;
  transition: 0.3s ease all;
}
.mangaContact-tel:hover {
  opacity: 0.5;
  transition: 0.3s ease all;
}
.mangaContact-tel__num {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.2222222222rem;
}
.mangaContact__img {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 400px;
  max-height: none !important;
  height: auto;
}
.mangaContact__name {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 1rem;
  z-index: 5;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.mangaContact__name span {
  color: #0099cc;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
}

@media screen and (max-width: 960px) {
  .mangaContact-wrap {
    padding: 100px 0;
  }
  .mangaContact {
    width: 90%;
    padding: 2rem 1rem 60% 1rem;
  }
  .mangaContact__lead a {
    color: #090909;
    transition: 0.3s ease all;
  }
  .mangaContact__lead a:hover {
    color: #0099cc;
    transition: 0.3s ease all;
  }
  .mangaContact__btn a {
    font-size: 3.90625vw;
    padding: 1rem 1.5rem 1rem 0;
  }
  .mangaContact__btn a::before {
    right: 1rem;
  }
  .mangaContact-tel {
    font-size: 0.8rem;
  }
  .mangaContact-tel__num {
    font-size: 9.1145833333vw;
  }
  .mangaContact__img {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
  }
  .mangaContact__name {
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0.5rem;
    white-space: nowrap;
  }
  .mangaContact__name span {
    color: #0099cc;
    font-size: 1.1111111111rem;
  }
}
@media screen and (max-width: 768px) {
  .mangaDocument {
    width: 90vw;
    height: 90vw;
    margin: 0 auto 50px;
  }
  .mangaDocument a {
    justify-content: center;
    padding: 1rem;
  }
  .mangaDocument:hover::before {
    content: "";
  }
  .mangaDocument:hover::after {
    right: 1.5rem;
    transition: all 0.3s ease;
  }
  .mangaDocument__balloon {
    top: 0;
  }
  .mangaDocument__title {
    font-size: 7.1614583333vw;
    margin-bottom: 5px;
  }
  .mangaDocument__title::before {
    border: 0;
  }
  .mangaDocument__text {
    text-align: center;
  }
  .mangaDocument__img {
    position: static;
    width: auto;
    height: 40%;
    margin-bottom: 20px;
  }
}
/*Lab記事*/
.mangaLab-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 150px 5%;
  background: #fff;
  text-align: center;
}

.mangaLab__subtitle {
  position: relative;
  display: inline-block;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin-bottom: 30px;
}
.mangaLab__subtitle::before {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #0099cc;
}
.mangaLab__subtitle::after {
  content: "";
  position: absolute;
  bottom: -21.3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #0099cc transparent transparent transparent;
}

.mangaLab__title {
  color: #0099cc;
  font-size: 2.7777777778rem;
  line-height: 1;
  margin-bottom: 10px;
}

.mangaLab__lead {
  margin-bottom: 20px;
}

.mangaLab__link a {
  position: relative;
  display: inline-block;
  background: #0099cc;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 0.5rem 2rem 0.5rem 1rem;
}
.mangaLab__link a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.mangaLab__link a:hover::before {
  right: 0.2rem;
  transition: all 0.3s ease;
}

.mangaLab {
  display: flex;
  gap: 1rem;
  max-width: 960px;
  width: 90%;
  background: #f8f8f8;
  border-radius: 10px;
  margin: 0 auto 30px;
  padding: 2rem;
}
.mangaLab-child {
  width: 50%;
  height: auto;
  background: #fff;
  cursor: pointer;
}
.mangaLab-child a {
  color: #090909;
  width: 100%;
  height: 100%;
}
.mangaLab-child__photo {
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mangaLab-child__photo img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: all 0.3s ease;
}
.mangaLab-child__time {
  display: inline-block;
  background: #0099cc;
  border-radius: 100vh;
  color: #fff;
  font-size: 0.875rem;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin: 0 10px 5px;
  padding: 0.2em 0.5rem;
}
.mangaLab-child__title {
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding: 0 10px 20px;
}

@media screen and (max-width: 768px) {
  .mangaLab-wrap {
    width: 100%;
    padding: 100px 5%;
  }
  .mangaLab {
    display: flex;
    flex-direction: column;
  }
  .mangaLab-child {
    width: 100%;
  }
}
.mangaLab-child:hover .mangaLab-child__photo img {
  transform: scale(1.2, 1.2);
  transition: all 0.3s ease;
}

/*コンバージョン*/
.mangaBar-wrap {
  width: 100%;
  text-align: center;
  padding: 40px 0px;
  background-color: #fff;
  background-image: url(../image/back_whiteY.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mangaBar {
  display: flex;
  gap: 20px;
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.mangaBar-mail {
  width: 50%;
}
.mangaBar-mail__text {
  position: relative;
  display: inline-block;
  font-size: 0.8888888889rem;
}
.mangaBar-mail__text::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 2px;
  height: 25px;
  background: #FE9000;
  transform: rotate(-15deg);
}
.mangaBar-mail__text::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 2px;
  height: 25px;
  background: #FE9000;
  transform: rotate(15deg);
}
.mangaBar-mail__btn a {
  position: relative;
  display: inline-block;
  background: #FE9000;
  width: 100%;
  border-radius: 100vh;
  border-bottom: 5px solid #a85f00;
  color: #fff;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 30px 20px 30px 0;
  transition: all 0.3s ease;
}
.mangaBar-mail__btn a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.mangaBar-mail__btn a:hover {
  margin-top: 3px;
  border-bottom: 2px solid #a85f00;
  transition: all 0.3s ease;
}
.mangaBar-mail__btn a:hover::before {
  right: 1.5rem;
  transition: all 0.3s ease;
}
.mangaBar-download {
  width: 50%;
}
.mangaBar-download__text {
  position: relative;
  display: inline-block;
  font-size: 0.8888888889rem;
}
.mangaBar-download__text::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 2px;
  height: 25px;
  background: #FE9000;
  transform: rotate(-15deg);
}
.mangaBar-download__text::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 2px;
  height: 25px;
  background: #FE9000;
  transform: rotate(15deg);
}
.mangaBar-download__btn a {
  position: relative;
  display: inline-block;
  background: #fff;
  width: 100%;
  border-radius: 100vh;
  border-bottom: 5px solid #a85f00;
  color: #FE9000;
  font-size: 1.3888888889rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 30px 20px 30px 0;
  transition: all 0.3s ease;
}
.mangaBar-download__btn a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  color: #FE9000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.mangaBar-download__btn a:hover {
  margin-top: 3px;
  border-bottom: 2px solid #a85f00;
  transition: all 0.3s ease;
}
.mangaBar-download__btn a:hover::before {
  right: 1.5rem;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .mangaBar {
    flex-wrap: wrap;
  }
  .mangaBar-mail {
    width: 100%;
  }
  .mangaBar-mail__text {
    font-size: 0.7777777778rem;
  }
  .mangaBar-mail__btn a {
    width: 100%;
    font-size: 1.1111111111rem;
    padding: 20px 0;
  }
  .mangaBar-download {
    width: 100%;
  }
  .mangaBar-download__text {
    font-size: 0.7777777778rem;
  }
  .mangaBar-download__btn a {
    width: 100%;
    font-size: 1.1111111111rem;
    padding: 20px 0;
  }
}
/*ボタン：トップへ戻る*/
#btn__top {
  position: fixed;
  right: 1rem;
  bottom: 270px;
  border-radius: 50%;
  background: #fff;
  width: 3rem;
  height: 3rem;
  z-index: 900;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
}
#btn__top a {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-decoration: none;
  line-height: 1;
}
#btn__top a::after {
  content: "\f30c";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  color: #0099cc;
  font-size: 2rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: 0.3s ease all;
}
#btn__top a:hover::after {
  transform: translateY(-0.5rem);
  transition: 0.3s ease all;
}

@media screen and (max-width: 768px) {
  #btn__top {
    bottom: 55px;
  }
}
/*ボタン：お問い合わせ*/
.btn__con {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #FE9000;
  border-radius: 100vh;
  width: 300px;
  height: 50px;
  z-index: 900;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn__con a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.1111111111rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  padding-right: 1rem;
}
.btn__con a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.btn__con a:hover::before {
  right: 0.5rem;
  transition: all 0.3s ease;
}
.btn__con a:hover::after {
  content: url(../image/text_gogogo.svg);
  position: absolute;
  top: 50px;
  width: 300px;
  height: auto;
  z-index: 999;
  animation: hurueru 0.1s infinite;
}

@media screen and (max-width: 768px) {
  .btn__con {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 50px;
    box-shadow: 0px 0px 0px;
  }
  .btn__con a {
    font-size: 3.2552083333vw;
  }
  .btn__con a:hover::after {
    content: "";
  }
}
/*ボタン：資料ダウンロード*/
.btn__download {
  position: fixed;
  top: 1rem;
  right: 330px;
  background: #fff;
  border: 2px solid #FE9000;
  border-radius: 100vh;
  width: 300px;
  height: 50px;
  z-index: 900;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn__download a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #FE9000;
  font-size: 1rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  padding-right: 1rem;
}
.btn__download a::before {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  color: #FE9000;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 0.3s ease;
}
.btn__download a:hover::before {
  right: 0.5rem;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn__download {
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    border-radius: 0;
    width: 50%;
    box-shadow: 0px 0px 0px;
  }
  .btn__download a {
    font-size: 3.2552083333vw;
  }
}
.footer-wrap {
  width: 100%;
  background: #0099cc;
  color: #fff;
  padding: 100px 0;
}

.footer {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}
.footer__title {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.6666666667rem;
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 10px;
  transition: 0.3s ease all;
}
.footer__title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s ease all;
  transform: scaleX(0);
  transform-origin: top left;
}
.footer__title:hover::before {
  transform: scaleX(100%);
}

/*上書き*/
.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #0099cc;
}

.consultation {
  position: fixed;
  left: -10px;
  top: 180px;
  background: #0099cc;
  color: #fff;
  border: 1px solid #fff;
  line-height: 150%;
  padding: 10px 20px 10px 30px;
  z-index: 1000;
  transition: 0.3s ease;
}
.consultation:hover {
  background: #0099cc;
  transform: translateX(10px);
  transition: 0.3s ease;
}/*# sourceMappingURL=style_manga.css.map */