/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
@import url("https://fonts.googleapis.com/css2?family=Bellefair&text=LOADING");
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Correct the inheritance of border color in Firefox.
  * 2. Add the correct box sizing in Firefox.
  * 3. Show the overflow in Edge 18- and IE.
  */
hr {
  overflow: visible;
  /* 3 */
  height: 0;
  /* 2 */
  color: inherit;
  /* 1 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  padding: 0;
  list-style: none;
}

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  * 3. Prevent overflow of the container in all browsers (opinionated).
  */
pre {
  overflow: auto;
  /* 3 */
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  -ms-overflow-style: scrollbar;
  /* 3 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * 1. Collapse border spacing in all browsers (opinionated).
  * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
  * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
  */
table {
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 1 */
  text-indent: 0;
  /* 3 */
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
  border: 1px solid #a0a0a0;
  /* 1 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  overflow: auto;
  /* 2 */
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */
  resize: block;
  /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  padding: 1em;
  border: solid;
  margin: auto;
  background-color: white;
  color: black;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * Remove the tapping delay in IE 10.
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy="true"] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: #e6e6e6;
  color: #000;
  font-family: "TsukuMinPr6N-R", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

main {
  display: block;
}

a,
a:link {
  color: #24b2d3;
}

a:visited {
  color: #24b2d3;
}

a:hover,
a:active {
  color: #24b2d3;
  text-decoration: underline;
}

a img {
  transition: opacity ease-out 0.1s;
}

a:hover img {
  opacity: 0.7;
}

a[href^="#anc"] {
  display: block;
}

a[href^="#anc"] picture,
a[href^="#anc"] img {
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a img,
a:link img,
a:visited img,
a:hover img,
a:active img {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
em,
b {
  font-weight: bold;
}

[type="text"],
select,
button {
  padding: 0;
  border: 0;
  margin: 0;
  font-size: inherit;
}

button {
  background-color: transparent;
}

button:hover {
  cursor: pointer;
}

select,
button,
textarea,
[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

sup {
  vertical-align: super;
}

video {
  vertical-align: top;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  margin-bottom: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

.js-smooth-scroll img {
  pointer-events: none;
}

[id*="_cmp_elm"] {
  font-size: 0 !important;
}

.l-footer {
  position: relative;
  padding-top: 940px;
  background-color: #1f2638;
  color: #24b2d3;
}

.l-footer::before {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  width: 766px;
  height: 1372px;
  margin: 0 auto;
  background: url(../img/bg_footer.jpg) center 0 no-repeat;
  background-size: contain;
  content: "";
}

.l-footer__inner {
  max-width: 1920px;
  padding-right: 2%;
  padding-bottom: 200px;
  padding-left: 2%;
  margin: 0 auto;
}

.l-footer__logo {
  position: relative;
  margin-top: 0;
  margin-bottom: 512px;
  text-align: center;
}

.l-footer__appList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-top: 70px;
  margin-right: -10px;
  margin-bottom: -10px;
  margin-left: -10px;
  list-style: none;
}

.l-footer__appList > li {
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.l-footer__appList img {
  width: auto;
  height: 94px;
}

.l-footer__official {
  margin-top: 70px;
  text-align: center;
}

.l-footer__officialBtn {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  padding: 24px 0;
  border: 1px solid #24b2d3;
  color: #24b2d3;
  font-size: 32px;
  text-align: center;
  text-decoration: none;
  transition: background-color 200ms ease;
  vertical-align: bottom;
}

.l-footer__officialBtn:hover {
  background: #24b2d3;
  color: #1f2638;
  text-decoration: none;
}

.l-footer__attention {
  margin-top: 60px;
  font-size: 20px;
  text-align: center;
}

.l-footer__attentionList {
  display: inline-block;
  margin-top: 0;
  text-align: left;
}

.l-footer__attentionList li:nth-child(n + 2) {
  margin-top: 8px;
}

.l-footer__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-top: 44px;
  margin-right: -5px;
  margin-left: -5px;
  font-size: 20px;
  list-style: none;
}

.l-footer__navList > li {
  padding-right: 5px;
  padding-left: 5px;
}

.l-footer__copyright {
  margin-top: 70px;
  font-size: 20px;
  text-align: center;
}

.l-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f3d900;
}

.l-main::before {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_pc.jpg) 0 0 no-repeat;
  background-size: cover;
}

.l-nav__list {
  display: flex;
  margin: 0;
}

.btn-voice {
  position: relative;
  display: inline-block;
  transition: opacity ease-in-out 0.1s;
}

.btn-voice img {
  pointer-events: none;
}

.btn-voice svg {
  max-width: 100%;
  height: auto;
}

.btn-voice:hover {
  opacity: 0.7;
}

.btnApp {
  display: none;
  margin-top: 0;
}

.btnCampaign {
  margin-top: 96px;
  margin-right: 40px;
  text-align: right;
}

.btnGuide {
  max-width: 424px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.btnGuide__item {
  display: inline-block;
}

.btnGuide[data-follow] {
  position: fixed;
  z-index: 999;
  right: 10px;
  bottom: 10px;
  transition: opacity 0.3s ease-in;
}

.btnGuide[data-follow="false"] {
  opacity: 0;
  pointer-events: none;
}

.btnGuide[data-follow="true"] {
  opacity: 1;
  pointer-events: auto;
}

.js-view,
.js-charaView {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

.charabox {
  margin-top: 200px;
}

.redirectArea {
  display: none;
}

.c-section {
  margin-top: 180px;
}

.c-section__header {
  text-align: center;
}

.c-section__headerTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #f3d900;
  font-size: 42px;
  text-transform: uppercase;
}

.c-section__headerTitle::before, .c-section__headerTitle::after {
  display: block;
  height: 1px;
  flex-grow: 1;
  content: "";
}

.c-section__headerTitle::before {
  margin-right: 70px;
  background-image: linear-gradient(to right, rgba(243, 217, 0, 0) 0%, rgba(243, 217, 0, 0.5) 35%);
}

.c-section__headerTitle::after {
  margin-left: 70px;
  background-image: linear-gradient(to left, rgba(243, 217, 0, 0) 0%, rgba(243, 217, 0, 0.5) 35%);
}

.c-section__headerSub {
  margin: 0;
  color: #ee9e00;
  font-size: 22px;
  text-shadow: 1px 2px 6px #f3d900;
}

.c-section__content {
  margin-top: 60px;
}

.thankyou {
  margin-top: 200px;
  text-align: center;
}

.wallpaper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wallpaper__inner {
  max-width: 1920px;
  margin: 0 auto;
}

.wallpaper__header {
  display: flex;
  align-items: flex-end;
}

.wallpaper__headerTitle {
  margin-top: 0;
  margin-bottom: 0;
}

.wallpaper__headerShare {
  margin-top: 0;
  margin-left: 10px;
  line-height: 1;
}

.wallpaper__content {
  margin-top: 50px;
}

.wallpaper__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-top: 0;
  margin-right: -32px;
  margin-bottom: -96px;
  margin-left: -32px;
  list-style: none;
}

.wallpaper__listItem {
  padding-right: 32px;
  padding-left: 32px;
  margin-bottom: 96px;
}

.wallpaper__thumbnail {
  margin-top: 0;
}

.wallpaper__thumbnail img {
  border-width: 2px;
  border-style: solid;
}

.wallpaper__listItem--01 .wallpaper__thumbnail img {
  border-color: #23b2d4;
}

.wallpaper__listItem--02 .wallpaper__thumbnail img {
  border-color: #cf2122;
}

.wallpaper__listItem--03 .wallpaper__thumbnail img {
  border-color: #e8b923;
}

.wallpaper__listItem--04 .wallpaper__thumbnail img {
  border-color: #808080;
}

.wallpaper__download {
  position: relative;
  margin-top: 40px;
}

.wallpaper__download.is-cover {
  position: relative;
}

.wallpaper__download.is-cover::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -20px;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: auto;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: rgba(31, 38, 56, 0.7);
  color: #fff;
  content: "\30b5\30a4\30c8\3092\30b7\30a7\30a2\3057\3066\A\30c0\30a6\30f3\30ed\30fc\30c9";
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  white-space: pre;
}

.wallpaper__btn + .wallpaper__btn {
  margin-top: 30px;
}

.wallpaper__btn a {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: -6px 10px 0 #a1a1a1;
  text-align: center;
}

.wallpaper__listItem--01 .wallpaper__btn a {
  background-color: #23b2d4;
}

.wallpaper__listItem--02 .wallpaper__btn a {
  background-color: #cf2122;
}

.wallpaper__listItem--03 .wallpaper__btn a {
  background-color: #e8b923;
}

.wallpaper__listItem--04 .wallpaper__btn a {
  background-color: #808080;
}

.characterDetail__item {
  position: relative;
}

.characterDetail__item:nth-child(n + 2) {
  margin-top: 250px;
}

.characterDetail__headerTitle {
  margin-top: 0;
  margin-bottom: -16px;
}

.characterDetail__headerCv {
  position: relative;
  max-width: 1096px;
  padding: 5px 100px;
  margin-top: 0;
  margin-left: -100px;
  background-color: #1e2638;
  line-height: 1;
}

.characterDetail__voiceList {
  position: relative;
  z-index: 2;
  display: flex;
  padding-left: 0;
  margin-top: 30px;
  margin-right: -10px;
  margin-left: -10px;
  list-style: none;
}

.characterDetail__voiceList li {
  padding-right: 10px;
  padding-left: 10px;
}

.characterDetail__lead {
  position: relative;
  z-index: 1;
  max-width: min(85%, 790px);
  padding: 16px 36px 16px 100px;
  margin-top: 40px;
  margin-left: -100px;
  background-color: #fff;
  font-size: 24px;
  line-height: 1.3;
}

.characterDetail__lead > *:first-child {
  margin-top: 0;
}

.characterDetail__item--01 .characterDetail__lead {
  color: #24b2d3;
}

.characterDetail__item--02 .characterDetail__lead {
  color: #ce2121;
}

.characterDetail__item--03 .characterDetail__lead {
  color: #e8b923;
}

.characterDetail__material {
  position: relative;
}

.characterDetail__materialTitle {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.characterDetail__materialImage {
  margin-top: 0;
}

.characterDetail__column {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  margin-top: calc(40px + 2.790698%);
}

.characterDetail__column::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #fff, #fff 50%, transparent 75%, transparent 100%);
  content: "";
}

.characterDetail__image {
  display: block;
  margin-top: -63.953488%;
  margin-right: -33.7%;
  pointer-events: none;
}

.characterDetail__point {
  margin-top: 20px;
}

.characterDetail__pointInner {
  display: flex;
}

.characterDetail__pointBody {
  max-width: 309px;
  flex: 1;
}

.characterDetail__pointTitle {
  margin-top: 0;
  margin-bottom: 0;
}

.characterDetail__pointText {
  margin-left: -100px;
}

.characterDetail__pointImage {
  flex: 1;
  margin-top: 0;
  margin-left: 20px;
}

.characterDetail__3d {
  margin-top: 20px;
  margin-bottom: -5.73%;
}

.characterDetail__3dInner {
  display: flex;
}

.characterDetail__3dBody {
  max-width: 309px;
  flex: 1;
}

.characterDetail__3dTitle {
  margin-top: 0;
  margin-bottom: 0;
}

.characterDetail__3dImage {
  flex: 1;
  margin-top: 0;
  margin-left: 20px;
}

.characterDetail__comment {
  min-height: min(42vw, 520px);
  padding-right: calc((100vw - 100%) / 2 + 33.75%);
  padding-left: calc((100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / 2 * -1);
  margin-left: calc((100vw - 100%) / 2 * -1);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.characterDetail__commentBody {
  max-width: 1140px;
  margin-top: 0;
  margin-bottom: 0;
}

.characterDetail__commentTitle {
  margin-bottom: -6px;
}

.characterDetail__commentFrame {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border: 20px solid #1e2638;
}

.characterDetail__commentFrame iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.characterDetail__item--01 .characterDetail__comment {
  background-color: #24b2d3;
  background-image: url(../../img/chara/01/bg_character.jpg);
}

.characterDetail__item--02 .characterDetail__comment {
  background-color: #ce2121;
  background-image: url(../../img/chara/02/bg_character.jpg);
}

.characterDetail__item--03 .characterDetail__comment {
  background-color: #e8b923;
  background-image: url(../../img/chara/03/bg_character.jpg);
}

.character {
  padding-top: 150px;
}

.character__inner {
  max-width: 1920px;
  padding-right: 100px;
  padding-left: 100px;
  margin-right: auto;
  margin-left: auto;
}

.character__headerTitle {
  margin-top: 0;
  margin-bottom: 0;
}

.character__content {
  margin-top: 60px;
}

.development {
  padding-top: 150px;
}

.development__headerInner {
  position: relative;
  display: flex;
  max-width: 1920px;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-right: auto;
  margin-left: auto;
  background: url(../../img/dev_comment/txt_num.svg) 0 0 no-repeat;
  background-size: min(21.5625%, 414px) auto;
}

.development__headerTitle {
  position: absolute;
  top: calc(100% + 17px + 48px);
  left: 100px;
  padding-right: 100px;
  margin-top: 0;
  margin-bottom: 0;
}

.development__headerImage {
  margin-top: 3.125%;
  margin-bottom: -7.8125%;
  margin-left: -3.64%;
}

.development__headerImage img {
  border: 20px solid #1e2638;
}

.development__comment {
  position: relative;
  z-index: 1;
  width: 557px;
  margin-top: 0;
  margin-bottom: 0;
}

.development__comment dt {
  padding-right: 20%;
}

.development__content {
  margin-top: 17px;
  background: #1e2638 url(../../img/dev_comment/bg_fence.jpg) 100% 100% no-repeat;
}

.development__contentInner {
  max-width: 1920px;
  padding: clamp(125px, 10.4%, 200px) 100px 100px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.development__contentInner *:first-child {
  margin-top: 0;
}

.development__contentInner p {
  margin-top: 50px;
}

.keyvisual {
  position: relative;
}

.keyvisual__headerTitle {
  padding-top: 24.8%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: right;
}

.keyvisual__nav {
  margin-top: 26px;
}

.keyvisual__navList {
  display: flex;
  justify-content: flex-end;
  padding-left: 0;
  margin-top: 0;
  margin-right: -10px;
  margin-left: -10px;
  list-style: none;
}

.keyvisual__navItem {
  padding-right: 10px;
  padding-left: 10px;
}

.keyvisual__content {
  text-align: right;
}

.keyvisual__text {
  margin-top: 70px;
}

.keyvisual__lead {
  margin-top: 30px;
}

.keyvisual__image {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}

.keyvisual__image img {
  width: inherit;
}

.loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 1;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading__image {
  width: 100%;
  max-width: 170px;
  margin: 0;
}

.loading__text {
  margin: 0;
  color: #bbb;
  font-family: "Bellefair", serif;
  font-size: 12px;
}

.coverArea {
  position: fixed;
  z-index: 10000;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}

.pv {
  margin-top: 126px;
}

.pv__inner {
  display: flex;
  max-width: 1920px;
  height: 100%;
  flex-direction: row-reverse;
  align-items: stretch;
  padding-right: 100px;
  padding-left: 100px;
  margin: 0 auto;
}

.pv__header {
  max-width: 31.25%;
  padding-right: 70px;
  background: url(../../img/pv/bg_lead.svg) 0 50% no-repeat;
  background-size: contain;
}

.pv__content {
  flex: 1;
}

.pv__title {
  display: flex;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.pv__frame {
  position: relative;
  overflow: hidden;
  padding-top: calc(57.56522% - 40px);
  border-width: 20px;
  border-style: solid;
  -o-border-image: url(../img/bd_movie_frame.png) 20 20 20 20 repeat repeat;
  border-image: url(../img/bd_movie_frame.png) 20 20 20 20 repeat repeat;
}

.pv__frame iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px){
  body {
    font-size: 16px;
    line-height: 1.75;
  }
  .l-footer {
    overflow: hidden;
    padding-top: 470px;
  }
  .l-footer::before {
    top: 40px;
    right: 0;
    left: 0;
    width: 383px;
    height: 686px;
  }
  .l-footer__inner {
    padding-bottom: 100px;
  }
  .l-footer__logo {
    margin-bottom: 256px;
  }
  .l-footer__appList {
    margin-top: 35px;
    margin-right: -5px;
    margin-left: -5px;
  }
  .l-footer__appList > li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .l-footer__appList img {
    height: 42px;
  }
  .l-footer__official {
    margin-top: 35px;
  }
  .l-footer__officialBtn {
    padding-top: 12px;
    padding-bottom: 12px;
    border-width: 1px;
    font-size: 16px;
  }
  .l-footer__attention {
    margin-top: 30px;
    font-size: 10px;
  }
  .l-footer__attentionList {
    padding-left: 24px;
  }
  .l-footer__attentionList li:nth-child(n + 2) {
    margin-top: 4px;
  }
  .l-footer__navList {
    margin-top: 22px;
    margin-right: -3px;
    margin-left: -3px;
    font-size: 10px;
  }
  .l-footer__navList > li {
    padding-right: 3px;
    padding-left: 3px;
  }
  .l-footer__copyright {
    margin-top: 35px;
    font-size: 10px;
  }
  .l-main__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
  .btn-voice svg {
    width: auto;
    max-height: 40px;
  }
  .btnApp {
    position: fixed;
    z-index: 10;
    top: 10px;
    right: 10px;
    display: block;
  }
  .btnApp img {
    max-width: 54px;
  }
  .btnCampaign {
    margin-top: 48px;
    margin-right: 0;
    text-align: center;
  }
  .btnCampaign__image {
    max-width: 304px;
  }
  .btnGuide__item img {
    max-width: 212px;
  }
  .btnGuide[data-follow] {
    right: 5px;
    bottom: 5px;
  }
  .redirectArea {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-right: -5px;
    margin-left: -5px;
  }
  .redirectArea .redirectBtn {
    width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }
  .redirectArea .redirectBtn a {
    display: block;
    width: 100%;
    padding: 5% 0;
    border: 1px solid #24b2d3;
    box-shadow: 0 6px 10px -6px rgba(36, 178, 211, 0.8);
    font-size: min(4.5vw, 12px);
    letter-spacing: -0.05em;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .redirectArea .redirectBtn a:hover {
    background: #24b2d3;
    color: #1f2638;
    text-decoration: none;
  }
  .redirectArea .redirectBtn span {
    font-size: min(4.5vw, 16px);
  }
  .thankyou {
    margin-top: 100px;
  }
  .wallpaper__header {
    position: relative;
    max-width: 300px;
  }
  .wallpaper__headerShare {
    position: absolute;
    right: -5px;
    bottom: 0;
    width: min(16vw, 60px);
    height: auto;
    margin-left: 0;
  }
  .wallpaper__content {
    margin-top: 35px;
  }
  .wallpaper__list {
    margin-right: -16px;
    margin-bottom: -48px;
    margin-left: -16px;
  }
  .wallpaper__listItem {
    width: 50%;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 48px;
  }
  .wallpaper__download {
    margin-top: 20px;
  }
  .wallpaper__download.is-cover::before {
    left: -10px;
    padding: 10px;
    font-size: 11px;
  }
  .wallpaper__btn + .wallpaper__btn {
    margin-top: 15px;
  }
  .wallpaper__btn a {
    height: 48px;
    padding: 10px;
    box-shadow: -3px 5px 0 #a1a1a1;
  }
  .wallpaper__btn a img {
    width: auto;
    height: 36px;
  }
  .characterDetail__item:nth-child(n + 2) {
    margin-top: 125px;
  }
  .characterDetail__headerTitle {
    margin-bottom: -4px;
  }
  .characterDetail__headerTitle img {
    width: auto;
    max-height: 52px;
  }
  .characterDetail__headerCv {
    padding-right: 50px;
    padding-left: 50px;
    margin-left: -50px;
    font-size: 11px;
  }
  .characterDetail__headerCv img {
    width: auto;
    max-width: none;
    max-height: 16px;
  }
  .characterDetail__voiceList {
    justify-content: flex-end;
    margin-top: 15px;
    margin-right: -5px;
    margin-left: -5px;
  }
  .characterDetail__voiceList li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .characterDetail__lead {
    max-width: 100%;
    padding: 24px 18px 24px 50px;
    margin-top: -10px;
    margin-left: -50px;
    font-size: 12px;
  }
  .characterDetail__material {
    margin-top: 40px;
  }
  .characterDetail__materialTitle img {
    max-width: 270px;
  }
  .characterDetail__materialImage {
    padding-right: 25px;
    padding-left: 25px;
    margin-right: -25px;
    margin-left: -25px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 100% 85%;
  }
  .characterDetail__item--01 .characterDetail__materialImage {
    background-image: linear-gradient(to top, #24b2d3, #24b2d3);
  }
  .characterDetail__item--02 .characterDetail__materialImage {
    background-image: linear-gradient(to top, #ce2121, #ce2121);
  }
  .characterDetail__item--03 .characterDetail__materialImage {
    background-image: linear-gradient(to top, #e8b923, #e8b923);
  }
  .characterDetail__column {
    display: block;
    margin-top: calc(20px + 2.790698%);
  }
  .characterDetail__column::before {
    content: normal;
  }
  .characterDetail__image {
    margin-top: 0;
    margin-right: 0;
  }
  .characterDetail__point {
    margin-top: 10px;
  }
  .characterDetail__pointInner {
    display: block;
  }
  .characterDetail__pointBody {
    display: flex;
    max-width: none;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .characterDetail__pointTitle img {
    max-width: min(26.66vw,200px);
  }
  .characterDetail__pointText {
    margin-top: 0;
    margin-left: -25px;
  }
  .characterDetail__pointText img {
    max-width: min(48vw, 360px);
  }
  .characterDetail__pointImage {
    margin-top: 10px;
    margin-left: 0;
  }
  .characterDetail__3d {
    margin-top: 20px;
    margin-bottom: -100%;
  }
  .characterDetail__3dInner {
    display: block;
  }
  .characterDetail__3dBody {
    max-width: none;
  }
  .characterDetail__3dTitle {
    text-align: right;
  }
  .characterDetail__3dTitle img {
    max-width: 135px;
  }
  .characterDetail__3dImage {
    margin-top: 10px;
    margin-left: 0;
  }
  .characterDetail__comment {
    padding-top: 200%;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    margin-right: -25px;
    margin-left: -25px;
    background-size: contain;
  }
  .characterDetail__commentTitle {
    margin-bottom: -2px;
  }
  .characterDetail__commentTitle img {
    width: auto;
    height: 75px;
  }
  .characterDetail__commentFrame {
    border-width: 10px;
  }
  .characterDetail__item--01 .characterDetail__comment {
    background-image: url(../../img/chara/01/bg_character_sp.jpg);
  }
  .characterDetail__item--02 .characterDetail__comment {
    background-image: url(../../img/chara/02/bg_character_sp.jpg);
  }
  .characterDetail__item--03 .characterDetail__comment {
    background-image: url(../../img/chara/03/bg_character_sp.jpg);
  }
  .character {
    padding-top: 75px;
  }
  .character__inner {
    padding-right: 0;
    padding-left: 0;
  }
  .character__content {
    margin-top: 30px;
  }
  .development {
    padding-top: 75px;
  }
  .development__header {
    margin-right: -25px;
    margin-left: -25px;
  }
  .development__headerInner {
    display: block;
    background: none;
  }
  .development__headerTitle {
    position: static;
    top: auto;
    left: auto;
    max-width: 350px;
    padding-right: 25px;
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .development__headerImage {
    margin-top: 8px;
    margin-bottom: -20%;
    margin-left: 0;
  }
  .development__headerImage img {
    border-width: 10px;
  }
  .development__comment {
    display: flex;
    width: auto;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 30%;
  }
  .development__comment dt {
    padding-right: 0;
    padding-left: 0;
  }
  .development__content {
    margin-top: 0;
    margin-right: -25px;
    margin-left: -25px;
    background-image: url(../../img/dev_comment/bg_fence_sp.jpg);
    background-position: 0 100%;
    background-size: contain;
  }
  .development__contentInner {
    padding: 30px 45px 65px;
  }
  .development__contentInner p {
    margin-top: 25px;
  }
  .keyvisual {
    right: auto;
    left: auto;
    width: auto;
    margin-right: -25px;
    margin-left: -25px;
  }
  .keyvisual__headerTitle {
    padding-top: 85%;
  }
  .keyvisual__headerTitle img {
    max-width: 252px;
  }
  .keyvisual__nav {
    margin-top: 0;
    text-align: right;
  }
  .keyvisual__navList {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
  }
  .keyvisual__navItem {
    padding-right: 0;
    padding-left: 0;
  }
  .keyvisual__navItem:nth-child(n + 2) {
    margin-top: 10px;
  }
  .keyvisual__navItem img {
    max-width: 186px;
  }
  .keyvisual__text {
    margin-top: 35px;
  }
  .keyvisual__text img {
    width: min(95%, 357px);
  }
  .keyvisual__lead {
    margin-top: 15px;
  }
  .keyvisual__lead img {
    width: min(93.6%, 351px);
  }
  .pv {
    margin-top: 50px;
    margin-left: 0;
  }
  .pv__inner {
    flex-direction: column;
    align-items: normal;
    padding-right: 0;
    padding-left: 0;
  }
  .pv__header {
    max-width: none;
    padding-right: 0;
    background: none;
  }
  .pv__content {
    flex: 1;
  }
  .pv__title {
    display: block;
  }
  .pv__title img {
    width: 100%;
    max-width: 301px;
  }
  .pv__frame {
    padding-top: calc(57.56522% - 20px);
    border-width: 10px;
  }
}
/*# sourceMappingURL=style.css.map */