@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@500&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@700;900&family=Zen+Maru+Gothic:wght@900&display=swap");
/*---
-reset
-base：基本のスタイル
-animation：アニメーション設定
-　Utilities：共通パーツ
-each-style ：各スタイル
 ーheader
 -mainvisual
 -common_element：各エリア、見出しまわり、各コンテンツ
 -footer
---*/
/* =======================================================================
　reset
========================================================================== */
* {
  box-sizing: border-box;
}

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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

b, strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  padding: 12px 0.5em;
}

caption, th, td {
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  outline: none;
  color: #06f;
  text-decoration: none;
}

a:link {
  color: #0B7E68;
}

a:visited {
  color: #0B7E68;
}

a:hover {
  color: #0B7E68;
}

a:active {
  color: #0B7E68;
}

a img {
  border: none;
}

img {
  height: auto;
  width: 100%;
  line-height: 1;
  vertical-align: top;
}

embed, iframe, object {
  margin-bottom: 1.5em;
  max-width: 100%;
}

input, button,
textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

/* =======================================================================
　base
========================================================================== */
html {
  font-size: 62.5%;
}

body {
  background: #c9f1e2;
  color: #0B7E68;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.65;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  background: url(../img/bg_sky.jpg) top center;
  background-size: cover;
  background-attachment: fixed;
}

section > *:last-child {
  margin-bottom: 0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.45;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.5rem;
}

/* Larger than phablet */
@media (min-width: 768px) {
  body {
    font-size: 1.9rem;
  }
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 5.6rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 2.2rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 1.9rem;
  }
}
/* Spacing */
button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Misc*/
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

hr.hr_kazari {
  width: 100%;
  height: 4px;
  display: block;
  border-top: 0;
  border-bottom: 4px dotted #7BA316;
}

@media (min-width: 768px) {
  hr.hr_kazari {
    margin-top: 2.5em;
    margin-bottom: 3em;
  }
  #Character hr.hr_kazari {
    margin-top: 2em;
    margin-bottom: 2.5em;
  }
  .comment-cont hr.hr_kazari {
    margin-top: 1.75em;
    margin-bottom: 2em;
  }
}
/* =======================================================================
　Animation
========================================================================== */
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUP {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*fadeDown*/
@keyframes fadeDown {
  0% {
    opacity: 0;
    padding-top: 4%;
  }
  to {
    opacity: 1;
    padding-top: 0;
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    padding-top: 4%;
  }
  to {
    opacity: 1;
    padding-top: 0;
  }
}
/* =======================================================================
　Utilities //共通パーツ u-name
========================================================================== */
.u-sp {
  display: block;
}

.u-pc {
  display: none;
}

.u-f-left {
  float: left;
}

.u-f-right {
  float: right;
}

.u-max-w100 {
  max-width: 100%;
}

.u-txt-center {
  text-align: center;
}

.u-txt-left {
  text-align: left;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-space {
  letter-spacing: 1em;
}

.u-f-75 {
  font-size: 75%;
  font-weight: normal;
}

.u-f-80 {
  font-size: 80%;
  font-weight: normal;
}

.u-f-85 {
  font-size: 85%;
  font-weight: normal;
}

.u-f-875 {
  font-size: 87.5%;
  font-weight: normal;
}

.u-f-110 {
  font-size: 110%;
}

.u-f-150 {
  font-size: 150%;
}

.u-f-red {
  color: #9C0002;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-indent-1 {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

.u-indent-2 {
  padding-left: 2em;
  text-indent: -2em;
  display: inline-block;
}

.u-indent-3 {
  padding-left: 3em;
  text-indent: -3em;
  display: inline-block;
}

.u-indent-4 {
  padding-left: 4em;
  text-indent: -4em;
  display: inline-block;
}

.u-indent-5 {
  padding-left: 5em;
  text-indent: -5em;
  display: inline-block;
}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-clear {
  clear: both;
}

.u-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.u-pos-r {
  position: relative;
}

.c-lead {
  font-size: 1.1em;
}

.c-lead2 {
  font-size: 1.2em;
  margin: 2em 0;
}

.title-figcap {
  font-weight: bold;
  margin-bottom: 2em;
  font-size: 1.6rem;
}

.note-box {
  border: 1px dotted #333;
  padding: 1.5em;
  margin-bottom: 2.5rem;
}

.br-sp-480 {
  display: none;
}

@media all and (max-width: 767px) {
  .br-tab {
    display: none;
  }
  .br-pc {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .br-sp-480 {
    display: block;
  }
}
@media all and (min-width: 768px) {
  .u-sp {
    display: none;
  }
  .u-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
  .c-lead {
    font-size: 1.2em;
    margin-bottom: 3.5em;
  }
  .c-lead2 {
    font-size: 1.4em;
    margin: 3em 0;
  }
  .title-figcap {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 1024px) {
  .br-tab {
    display: none;
  }
  .br-sp-tab {
    display: none;
  }
}
/* =======================================================================
　each-style
========================================================================== */
/*ALL*/
/* ----- header/main ----- */
header {
  position: absolute;
  top: 8.5%;
  left: 0;
  width: 100%;
  text-align: left;
}

.main-wrapper {
  position: relative;
  z-index: 3;
}

/*mainvisual*/
.main-wrapper h1 {
  width: 73%;
  margin: 0 5.3% 0;
}

.main-wrapper > * {
  z-index: 1;
}

.main-wrapper figure {
  display: block;
  width: 43.67%;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: -1.5vw;
  margin-left: -3.95vw;
  transform: rotate(6deg);
  box-shadow: 25px 25px 25px rgba(0, 0, 0, 0.34);
  z-index: 0;
}

.logo-right {
  position: absolute;
  top: 15px;
  right: 15px;
  text-align: right;
  margin: 0;
  z-index: 1;
}

.logo-right {
  width: 95px;
  height: 30px;
}

.btn-menu {
  position: absolute;
  top: 26px;
  right: 10px;
  width: 23%;
}

.fixed-menu.btn-menu {
  position: fixed;
}

.btn-menu img {
  width: 100%;
  height: auto;
}

/* ----- nav ----- */
#local_nav {
  text-align: center;
  width: 85%;
  padding: 2em 2.5em;
  border-radius: 8%;
  border: 4px solid #fff;
  background: #FBFFE8;
}

#local_nav h2 {
  color: #F5643D;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.75em;
}

#local_nav ul {
  width: 100%;
  margin: 0 auto;
}

#local_nav li {
  font-weight: normal;
  font-weight: 500;
  font-family: "Lexend Giga", sans-serif;
  list-style: none;
  font-size: 1.6rem;
  font-size: 4vw;
  line-height: 1;
  letter-spacing: -0.02em;
  border-bottom: 1px dashed #b0908e;
}

#local_nav li:last-child {
  border: none;
}

#local_nav li a {
  color: #87411F;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 0.65em;
}

#local_nav li a:hover {
  opacity: 0.8;
}

#local_nav li.link_blank {
  opacity: 0.5;
}

#local_nav li.link_blank a {
  pointer-events: none;
  cursor: default;
}

/*----------------------------------------------------
common_element
----------------------------------------------------*/
/*cont共通*/
.container {
  text-align: center;
  position: relative;
}

.container {
  animation: fade 2.5s ease 0s 1 normal;
  -webkit-animation: fade 2.5s ease 0s 1 normal;
}

main {
  position: relative;
}

.contents-wrapper {
  box-shadow: 0px 7px 10px -6px rgba(65, 61, 124, 0.25) inset;
}

.container-::before {
  content: "";
  width: 100%;
  position: fixed;
  padding-top: 79vw;
  display: block;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url(../img/bg_parts.png) bottom center no-repeat;
  background-size: 100% auto;
}

.contents-wrapper section:not(.sec-intro) {
  padding: 35px 15px 50px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/*共通飾り枠*/
/*見出しまわり*/
.title_h_lv2 {
  display: inline-block;
  margin-bottom: 0.75em;
  width: 100%;
}

.title_h_lv2 b {
  color: #F75F28;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-family: "Lexend Giga";
  display: inline-block;
  z-index: 1;
  line-height: 1em;
  transform: rotate(-8deg);
  text-shadow: 0px 0px 10px #FFF, 0px 0px 10px #FFF, 0px 0px 10px #FFF;
}

.title_h_lv2 span {
  color: #185247;
  display: block;
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 900;
  font-family: "Noto Serif JP";
  margin-top: 0.75em;
  letter-spacing: 0.01em;
  text-shadow: 0px 0px 10px #FFF, 0px 0px 10px #FFF;
}

.title_h_lv3 {
  color: #F75F28;
  font-family: "Lexend Giga";
  font-size: 2.9rem;
  letter-spacing: -0.02em;
  font-weight: 500;
}

/*INFO*/
.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex-item {
  width: 100%;
  border: 1px solid #BCB8D9;
  background-color: #fff;
  margin-bottom: 3rem;
  overflow: hidden;
}

/*アニメ化決定テキスト*/
.title-big {
  text-align: left;
  color: #E22F00;
  font-size: 2.9rem;
  font-weight: 900;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 0.5em;
  padding: 0.35em 0.75em;
  background-image: url(../img/bg_dot_pc.png), url(../img/bg_gradient_white.png);
  background-position: center center, center center;
  background-repeat: repeat-x, no-repeat;
  background-size: auto 100%, 100% 98%;
}

.title-big span {
  font-family: "Noto Serif JP", serif;
  color: #007B63;
}

.sns-embed-wrap {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  position: relative;
  overflow-y: auto;
}

.sns-embed-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Introduction*/
.intro-lead,
.intro-lead-big {
  font-weight: normal;
  margin-bottom: 4rem;
  text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.98), 0px 0px 6px rgba(255, 255, 255, 0.98);
}

.intro-lead {
  line-height: 2.5em !important;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
  color: #1C534B;
}

.sec-intro {
  position: relative;
  padding-bottom: 5vw;
  z-index: 1;
}

.sec-intro::after {
  content: "";
  width: 100%;
  position: absolute;
  padding-top: 71vw;
  display: block;
  bottom: -66vw;
  left: 0;
  z-index: -1;
  background: url(../img/bg_parts.png) bottom center no-repeat;
  background-size: 100% auto;
}

.fixed_parts .sec-intro::after {
  position: fixed;
  bottom: 0;
}

.u-color-orange {
  color: #F7632E;
}

.u-color-green {
  color: #0B7E68;
}

/*Cast&Staff Music*/
.sec-box {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.9em 1.5em;
  font-weight: 500;
  box-shadow: 0px 0px 6px 0px rgba(67, 71, 137, 0.24);
  position: relative;
  display: block;
  z-index: 1;
  border: 4px solid #fff;
  border-radius: 20px;
}

.sec-box::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_paper.jpg) bottom center no-repeat;
  background-size: cover;
  opacity: 0.89;
  z-index: -1;
  border-radius: 16px;
}

.sec-box > *:last-child {
  margin-bottom: 0;
}

/*Slider*/
.slider-chara-wrap {
  margin: 0 auto;
  position: relative;
}

.slider-chara .slick-slide {
  height: auto;
  overflow: hidden;
}

.slider-chara .slick-slide > img {
  display: block;
  margin: 0 auto 1em;
  width: 100%;
  max-width: 193px;
  height: auto;
  object-fit: cover;
}

.slide-cont-txt p {
  font-size: 1.4rem;
  line-height: 2.1em;
  text-align: left;
  margin-bottom: 0;
  font-weight: normal;
}

.slide-cont-txt h3 {
  font-size: 2.3rem;
  color: #F7632E;
  margin-bottom: 0.65em !important;
}

.slide-cont-txt h4 {
  display: none;
  font-size: 1.4rem;
  color: #F7632E;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

.thumbs_dots {
  margin: 10px 0 0;
}

.thumbs_list {
  margin-bottom: 0;
}

.thumbs_list li {
  display: inline-block;
  width: 112px;
  height: 0;
  padding-top: 112px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 50%;
  position: relative;
  margin: 1%;
}

.thumbs_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  border: 1px solid #fffff7;
}

.thumbs_list li.slick-active {
  opacity: 1;
}

.thumbs_list li.slick-active::after {
  border: 2px solid #07987C;
}

.title-name {
  color: #FF643B;
  font-size: 1.4rem;
  font-weight: normal;
  font-weight: 500;
}

.name-list tr {
  text-align: center;
  display: table;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
}

.name-list td {
  vertical-align: top;
}

.name-list tr.list-2 {
  max-width: 380px;
}

.name-list tr.list-2_long {
  max-width: 480px;
}

.name-list .list-2 td, .name-list .list1-2 td {
  width: 50%;
}

.name-list tr.list-2.list-pc-1 {
  max-width: 500px;
}

.name-list tr.list-3-chara {
  max-width: 100%;
}

.name-list tr td {
  display: table-cell;
}

.name-list tr .pdt0 {
  padding-top: 0;
}

.name-list tr .pdb0 {
  padding-bottom: 0;
}

.svg-logo {
  padding: 0.6em 0 0.3em;
  width: 152px;
  height: auto;
}

.link-comment {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.2em 0.5em 0.2em 1em;
  border: 1px solid #FF643B;
  width: 9.5em;
  margin: 0.65em auto 0;
  border-radius: 15px;
  color: #FF643B !important;
  letter-spacing: 0.02em;
}

.link-comment:hover {
  background-color: #FF643B;
  color: #fff !important;
}

.link-comment_btn img {
  display: inline-block !important;
  width: 31px;
  height: 25px;
  margin-left: 0.25em;
}

.bnr-bottom img {
  max-width: 500px;
  width: 90% !important;
}

.info-list {
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-bottom: 1px solid #41514f;
}

.info-list tr {
  text-align: left;
  margin: 0 auto;
}

.info-list tbody tr {
  border-bottom: 1px dotted #41514f;
}

.info-list th,
.info-list td {
  text-align: left;
  font-size: 1.4rem;
  vertical-align: top;
  padding: 13px;
  padding-left: 1em;
  padding-right: 1em;
}

.info-list thead th {
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(250, 165, 99, 0.15);
  color: #1C534B;
}

.info-list thead th, .info-list tbody th {
  padding-right: 0;
}

.info-list tbody th {
  color: #FF643B;
}

.info-list tbody th a {
  color: #FF643B;
  text-decoration: underline;
}

/*footer */
/* ----- pagetop ----- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  margin: 0 !important;
  z-index: 3;
}

#page-top a {
  width: 60px;
  height: 58px;
  display: block;
  text-align: center;
  font-weight: bold;
}

#page-top a:hover {
  opacity: 0.8;
}

/*footer-----------------------*/
footer {
  margin-top: 20px;
  padding: 1.25em 0.5em 2.25em;
  width: 100%;
  background: #6A6255;
  color: #fff;
  position: relative;
  z-index: 1;
}

footer p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.25em;
  margin: 0;
  letter-spacing: 0.05em;
}

/*SP*/
@media all and (max-width: 767px) {
  /* ----- header/main ----- */
  header {
    top: 4.69vw;
  }
  .main-wrapper figure {
    display: none;
  }
  /* ----- nav ----- */
  /*----------------------------------------------------
  common_element
  ----------------------------------------------------*/
  /*SP用*/
  .title-big {
    font-size: 7.733vw;
    margin: 103.7% 3% 0;
  }
  .contents-wrapper section.sec-info {
    padding: 40px 15px 25px;
  }
  .sec-box table {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  /*intro*/
  .sp-ltr-space {
    letter-spacing: -0.02em;
  }
  /*slider*/
  .thumbs_list {
    margin-left: auto;
    margin-right: auto;
  }
  .thumbs_list li {
    width: 95px;
    padding-top: 95px;
  }
  .name-list .list-4 {
    padding-left: 0.25em;
    padding-right: 0.25em;
  }
  .name-list tr.list-2 {
    width: 85%;
  }
  .name-list tr.list-2.list-pc-1 {
    width: 95%;
  }
  .name-list tr.list-3 {
    max-width: 430px;
  }
  .name-list tr.list-3-chara {
    max-width: 480px;
  }
  .name-list tr.list-3-chara td:first-of-type {
    width: 39.5%;
  }
  .name-list .list1-2 td {
    width: 100%;
    display: block;
  }
  .svg-logo {
    width: 138px;
    height: auto;
  }
  /*footer */
}
@media all and (max-width: 767px) and (max-width: 480px) {
  .u-ls-narrow {
    letter-spacing: -0.01em;
  }
  .name-list tr.list-2.list-pc-1 td {
    width: 100%;
    display: block;
  }
  .info-list th,
  .info-list td {
    font-size: 1.2rem;
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  .info-list thead th {
    font-size: 1.1rem;
  }
  .link-comment {
    width: 8.45em;
  }
}
@media all and (max-width: 767px) and (max-width: 615px) {
  .thumbs_list {
    max-width: 315px;
  }
  .thumbs_list li {
    width: 30%;
    padding-top: 30%;
  }
}
/*PC（more than tablet）*/
@media all and (min-width: 768px) {
  /* ----- header/main ----- */
  header {
    width: 100%;
    top: 7.05vw;
  }
  /*mainvisual*/
  .main-wrapper h1 {
    width: 44.5%;
    margin: 0 0 0 2.4%;
  }
  .logo-right {
    width: 12.59%;
    max-width: 172px;
    height: auto;
    right: 1.9vw;
    top: 0.95vw;
  }
  .btn-menu {
    width: 12.9%;
  }
  .btn-menu {
    top: -1.15vw;
  }
  .fixed-menu.btn-menu {
    top: 1vw;
  }
  /* ----- nav ----- */
  #local_nav h2 {
    font-size: 4.6rem;
  }
  #local_nav li {
    font-size: 2.8rem;
  }
  #local_nav li a {
    padding: 1em;
  }
  /*----------------------------------------------------
  common_element
  ----------------------------------------------------*/
  /*TAB/PC用*/
  .contents-wrapper {
    box-shadow: 0px 10px 15px -6px rgba(65, 61, 124, 0.23) inset;
  }
  .container::before {
    padding-top: 31.65vw;
    background-size: auto 100%;
  }
  .contents-wrapper section:not(.sec-intro) {
    padding: 80px 20px 110px;
  }
  .contents-wrapper section.sec-info {
    padding: 6.75vw 20px 4.25vw;
  }
  .title_h_lv2 span {
    font-size: 1.8rem;
    padding-bottom: 1.6em;
  }
  .title_h_lv3 {
    margin-bottom: 1em;
    font-size: 3.5rem;
  }
  .flex-box {
    column-gap: 40px;
    flex-wrap: nowrap;
  }
  .flex-item {
    width: 50%;
  }
  .title-big {
    padding: 0.3em 0.07em 0.325em;
    font-size: 64rem;
    font-size: 4.685vw;
    transform: rotate(-8.5deg);
    text-align: center;
    margin: 1.15em 9.12%;
  }
  .sec-intro {
    padding: 0 0 7vw;
  }
  .sec-intro::after {
    padding-top: 57vw;
    bottom: -35vw;
    left: 0;
    background: url(../img/bg_parts_pc.png) bottom center no-repeat;
    background-size: 100% auto;
  }
  .intro-lead {
    font-size: 2rem;
    line-height: 2.65em !important;
  }
  .sec-box {
    padding: 3em 3em;
    border-width: 6px;
  }
  .sec-box::after {
    border-radius: 12px;
  }
  #Character .sec-box {
    padding: 3.75em 3em;
  }
  /*slider*/
  .slider-chara-wrap {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
  }
  .slider-chara .slick-slide > img {
    width: 34.5%;
    max-width: 368px;
    float: left;
  }
  .slider-chara .slick-slide > img {
    margin-right: 1.5em;
  }
  .slide-cont-txt {
    text-align: left;
  }
  .slide-cont-txt p {
    font-size: 1.8rem;
    line-height: 2.235em;
  }
  .slide-cont-txt h3 {
    font-size: 2.9rem;
    margin-top: 1.2em;
  }
  .slide-cont-txt h4 {
    font-size: 1.9rem;
  }
  .ltr-space {
    letter-spacing: -0.015em;
  }
  .title-name {
    font-size: 1.7rem;
  }
  .name-list tr {
    min-width: 300px;
  }
  .name-list tbody > tr {
    margin-bottom: 0.5em;
  }
  .name-list tbody > tr.pdb0 {
    margin-bottom: 0;
  }
  .name-list th, .name-list td {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .name-list tr.list-3 {
    max-width: 500px;
  }
  .name-list tr.list-3-chara {
    max-width: 580px;
  }
  .name-list .list-3 td {
    width: 33.33%;
  }
  .link-comment {
    display: block;
    font-size: 1.2rem;
  }
  .info-list th,
  .info-list td {
    font-size: 1.7rem;
  }
  .info-list tbody td {
    font-size: 1.6rem;
  }
  .info-list thead th {
    font-size: 1.4rem;
  }
  .info-list th,
  .info-list td {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .info-list thead th {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  /*footer */
  /* –––– page-top ---- */
  /*footer-----------------------*/
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .title_h_lv2 {
    font-size: 4.3rem;
  }
  .title_h_lv2 span {
    font-size: 1.5rem;
  }
  .title_h_lv3 {
    font-size: 3rem;
  }
  .intro-lead {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 768px) and (min-width: 1366px) {
  .logo-right {
    right: 27px;
    top: 13px;
  }
  .btn-menu {
    max-width: 200px;
    right: 8px;
    top: -1.85vw;
  }
}
@media all and (min-width: 768px) {
  #page-top a {
    width: 102px;
    height: 98px;
  }
  footer {
    padding: 1.25em 0.5em 4em;
  }
  footer small {
    font-size: 1.5rem;
  }
}
@media print {
  .container {
    background-attachment: scroll;
  }
}/*# sourceMappingURL=style.css.map */