@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::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 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* 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 {
  color: inherit; /* 1 */
  height: 0; /* 2 */
  overflow: visible; /* 3 */
}

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

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

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
nav li::before {
  content: "​";
}

/**
  * 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 {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
  -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-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  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 {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * 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 {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  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 {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  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 {
  border-style: none;
  padding: 0;
}

/**
  * 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 {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

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) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  --baseDeviceWidth: 769;
  --screenHeight: 0px;
}

@media (min-width: 769px) {
  body.-lock {
    overflow: hidden;
  }
}

iframe[name=google_conversion_frame] {
  height: 0;
  position: absolute;
}

#mainContent {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  #mainContent {
    z-index: auto;
  }
}

#gHeaderWrapper {
  z-index: 2;
}

#qform *,
#qform_posted * {
  box-sizing: content-box;
}

/* sanitize overwrite */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a:focus {
  outline: none;
}

main {
  display: block;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

nav li:before {
  content: "";
  display: none;
}

.l-main {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
  .l-main {
    overflow-x: hidden;
  }
}
.l-main img {
  max-width: 100%;
}

.l-wrapper {
  overflow: hidden;
}

.l-main__siteurl {
  display: none;
}

span[data-ruby] {
  display: inline-flex;
  font-weight: inherit;
  line-height: 1em;
  position: relative;
}
span[data-ruby]::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: attr(data-ruby);
  font-feature-settings: "palt";
  font-size: 50%;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -100%);
  width: 300%;
}
@media (min-width: 769px) {
  span[data-ruby]::before {
    font-size: 50%;
  }
}

.c-yakuhalf {
  margin-left: -0.5em;
}

.c-note {
  background: #feebec;
  border-radius: 10px;
  padding: 4.5vw;
}
@media (min-width: 769px) {
  .c-note {
    border-radius: 8px;
    margin: 0 auto;
    padding: 16px 30px;
    width: 800px;
  }
}

.c-note__ttl {
  font-size: 0.8125rem;
  position: relative;
  color: #f53c46;
  font-weight: 900;
  padding-left: 24px;
}
.c-note__ttl::before {
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../../assets/img/common/ico_note.png) no-repeat center top/100%;
  content: "";
  display: block;
  height: 18px;
  width: 20px;
}
@media (min-width: 769px) {
  .c-note__ttl::before {
    position: absolute;
    left: 0;
    bottom: -1px;
  }
}

.c-note__list {
  margin-top: 6px;
}
@media (min-width: 769px) {
  .c-note__list {
    margin-top: 8px;
  }
}

.c-note__list__item {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 16px;
}
@media (min-width: 769px) {
  .c-note__list__item {
    font-size: 0.75rem;
    line-height: 18px;
  }
}
.c-note__list__item b {
  color: #f53c46;
  font-weight: 900;
}

.c-hover_op {
  transition: opacity 0.3s 0s ease;
}
.c-hover_op:hover {
  opacity: 0.7;
}

.c-guide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5000px;
  opacity: 0.5;
  opacity: 0;
  background: url(../../assets/img/common/ph_guide.jpg) no-repeat 0 0/100%;
  pointer-events: none;
  display: none;
}

.c-visible_nrw {
  display: block;
}
@media (min-width: 769px) {
  .c-visible_nrw {
    display: none;
  }
}

@media (max-width: 768px) {
  .c-visible_wide {
    display: none;
  }
}

.contents1 {
  background: #fffcbd;
  padding: 30px 0 60px;
}
@media (min-width: 769px) {
  .contents1 {
    padding: 60px 0 100px;
  }
}

.contents1__ttl {
  margin: 0 auto;
}
@media (min-width: 769px) {
  .contents1__ttl {
    width: 880px;
  }
}

.contents1__inner {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 769px) {
  .contents1__inner {
    width: 810px;
  }
}

.contents1__example {
  padding: 20px 0 10px 30px;
  width: 50%;
}
@media (min-width: 769px) {
  .contents1__example {
    padding: 14px 0 0 96px;
    width: auto;
  }
  .contents1__example picture {
    display: block;
    width: 394px;
  }
}

.contents1__shoulder {
  margin: 20px 30px 10px 0;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50% - 40px);
}
.contents1__shoulder a {
  background: #ffe021;
  display: block;
  font-size: 12px;
  font-weight: normal;
  font-weight: 900;
  padding: 8px 20px 8px 10px;
  position: relative;
}
.contents1__shoulder a::after {
  border-bottom: 3px solid #f53c46;
  border-right: 3px solid #f53c46;
  content: "";
  display: block;
  height: 12px;
  margin-top: -6px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: rotate(45deg);
  width: 12px;
}
.contents1__shoulder span {
  color: #f53c46;
  display: block;
  font-weight: 900;
  margin-top: 0.1em;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .contents1__shoulder {
    margin: 12px 0 0 0;
    width: 290px;
  }
  .contents1__shoulder a {
    font-size: 14px;
    padding-right: 24px;
  }
  .contents1__shoulder a:hover {
    color: #333333;
  }
  .contents1__shoulder a:hover span {
    color: #f53c46;
    text-decoration: none;
  }
  .contents1__shoulder a::after {
    height: 8px;
    margin-top: -4px;
    transition: all 0.2s;
    width: 8px;
  }
  .contents1__shoulder a:hover::after {
    margin-top: 2px;
  }
  .contents1__shoulder span {
    display: inline;
    margin-top: 0;
  }
}

.contents1 ol > li {
  margin-top: 20px;
  position: relative;
}
.contents1 ol > li:first-child {
  margin-top: 5px;
}
.contents1 ol > li::before {
  background: #2e3192;
  content: "";
  display: block;
  height: calc(100% - 75px);
  left: 35px;
  position: absolute;
  top: 65px;
  width: 3px;
}
.contents1 ol > li::after {
  background: url(../../assets/img/et_contents1/step_arrow.png) no-repeat 0 0;
  background-size: 100% auto;
  bottom: 0;
  content: "";
  display: block;
  height: 78px;
  left: 30px;
  position: absolute;
  width: 14px;
}
.contents1 ol > li:last-child::before, .contents1 ol > li:last-child::after {
  display: none;
}
@media (min-width: 769px) {
  .contents1 ol > li {
    margin-top: 14px;
  }
  .contents1 ol > li:first-child {
    margin-top: 0px;
  }
  .contents1 ol > li::before {
    background: #2e3192;
    height: calc(100% - 100px);
    left: 41px;
    position: absolute;
    top: 92px;
    width: 3.5px;
  }
  .contents1 ol > li::after {
    height: 90px;
    left: 35px;
    width: 16px;
  }
}

.contents1__list__title {
  height: 60px;
  padding: 14px 0 0 36px;
  position: relative;
}
.contents1__list__title img {
  display: block;
  left: 7px;
  position: absolute;
  top: 0;
  width: 60px;
}
.contents1__list__title span {
  background: #ffe021;
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 33px;
  padding-left: 40px;
}
@media (min-width: 769px) {
  .contents1__list__title {
    height: 84px;
    padding: 18px 0 0 40px;
  }
  .contents1__list__title img {
    left: 0;
    width: 84px;
  }
  .contents1__list__title span {
    font-size: 20px;
    line-height: 42px;
    padding-left: 56px;
  }
}

.contents1__list__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -3px;
  padding: 0 25px 0 75px;
}
.contents1__list__column .text {
  font-size: 0.875rem;
  background-image: linear-gradient(0deg, #ccc 1px, transparent 1px);
  background-size: 100% 2em;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 769px) {
  .contents1__list__column {
    margin-top: -65px;
    padding: 0 0 0 100px;
    position: relative;
  }
  .contents1__list__column .text {
    background-size: 100% 2.133em;
    height: 7em;
    line-height: 2.133;
    margin-top: 48px;
    padding: 0;
    width: 410px;
    font-size: 0.9375rem;
  }
}

.contents1__list__recom {
  width: 100%;
}
.contents1__list__recom h4 {
  background: #2e3192;
  border-radius: 0 100vh 100vh 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 24px;
  margin-top: 20px;
  padding-left: 1em;
  text-align: left;
}
.contents1__list__recom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents1__list__recom ul li {
  margin: 10px 0 5px;
  width: 46%;
}
.contents1__list__recom ul .image {
  padding: 0 5%;
  text-align: center;
}
.contents1__list__recom ul .image img {
  border: solid 1px #000;
  max-height: 160px;
  pointer-events: none;
  width: auto;
}
.contents1__list__recom ul p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.5em;
  text-align: center;
}
.contents1__list__recom ul p .min {
  font-size: 11px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .contents1__list__recom {
    text-align: right;
    width: 290px;
  }
  .contents1__list__recom h4 {
    border-radius: 100vh;
    display: inline-block;
    font-size: 14px;
    margin: -4px 60px 0 0;
    padding-left: 0;
    text-align: center;
    width: 172px;
  }
  .contents1__list__recom ul {
    justify-content: center;
  }
  .contents1__list__recom ul li {
    margin: 7px 0 0;
    width: 128px;
  }
  .contents1__list__recom ul .image img {
    height: 128px;
    text-align: center;
    width: auto;
  }
  .contents1__list__recom ul p {
    font-size: 13px;
    line-height: 1.38;
  }
  .contents1__list__recom ul p .min {
    font-size: 11px;
  }
}

@media (min-width: 769px) {
  .contents1 ol > li:nth-child(1) .contents1__list__column .text {
    height: 11em;
    width: 342px;
  }
  .contents1 ol > li:nth-child(1) .contents1__list__column .contents1__list__recom {
    width: 368px;
  }
  .contents1 ol > li:nth-child(1) .contents1__list__column .contents1__list__recom li {
    width: 122px;
  }
  .contents1 ol > li:nth-child(3) .contents1__list__column .text {
    height: 7em;
  }
  .contents1 ol > li:nth-child(3) .contents1__list__column .contents1__list__recom li {
    width: 180px;
  }
  .contents1 ol > li:nth-child(4) .contents1__list__column .text {
    height: 7em;
  }
  .contents1 ol > li:nth-child(4) .contents1__list__column .contents1__list__recom li {
    width: 180px;
  }
}

.contents1__challenge {
  background: #dfe4ec;
  border-radius: 10px;
  margin: 25px 25px 0;
}
.contents1__challenge .head {
  background: url(../../assets/img/et_contents1/challenge_bg.png) repeat 0 0;
  background-size: 34px auto;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}
.contents1__challenge .head h3 {
  font-size: 1rem;
  color: #ffe021;
  font-weight: 900;
  line-height: 1.375;
}
.contents1__challenge .head p {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  margin-top: 0.2em;
}
.contents1__challenge h4 {
  color: #f53c46;
  font-size: 14px;
  font-weight: 900;
  line-height: 16px;
}
.contents1__challenge h4::before {
  content: "▶";
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  margin-right: 0.2em;
}
.contents1__challenge .wrap_lead {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.53;
  margin-top: 0.4em;
}
.contents1__challenge .text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.53;
  margin-top: 0.2em;
}
.contents1__challenge .text.sp {
  display: block;
}
.contents1__challenge .text.pc {
  display: none;
}
.contents1__challenge .image {
  margin: 15px 0;
}
.contents1__challenge .note {
  color: #777777;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 0.2em;
}
.contents1__challenge .column {
  padding: 15px 5px;
}
.contents1__challenge .column .wrap {
  padding: 0 10px;
  position: relative;
}
.contents1__challenge .column .wrap a {
  color: #2e3192;
  font-weight: 700;
  text-decoration: underline;
}
.contents1__challenge .column .wrap .image {
  height: 50px;
  position: absolute;
  right: 20px;
  top: -10px;
  width: 50px;
}
.contents1__challenge .column .wrap:last-child {
  border-top: solid 1px #000000;
  margin-top: 15px;
  padding: 15px 10px;
}
.contents1__challenge .column .wrap:last-child .image {
  top: 0;
}
.contents1__challenge .solo {
  padding: 0 5px;
}
.contents1__challenge .solo .inner {
  padding: 0 10px 15px;
}
.contents1__challenge .forPC {
  display: none;
}
@media (min-width: 769px) {
  .contents1__challenge {
    border-radius: 14px;
    margin: 10px auto 0;
    width: 800px;
  }
  .contents1__challenge .forSP {
    display: none;
  }
  .contents1__challenge .forPC {
    display: block;
  }
  .contents1__challenge .head {
    padding: 15px;
    radius: 14px 14px 0 0;
  }
  .contents1__challenge .head h3 {
    font-size: 1.25rem;
    text-align: center;
  }
  .contents1__challenge .head h3 br {
    display: none;
  }
  .contents1__challenge .head p {
    font-size: 14px;
    text-align: center;
  }
  .contents1__challenge .head p br {
    display: none;
  }
  .contents1__challenge h4 {
    font-size: 16px;
  }
  .contents1__challenge h4::before {
    margin-right: 0.4em;
  }
  .contents1__challenge .wrap_lead {
    font-size: 14px;
    line-height: 1.42;
    margin-top: 0.8em;
  }
  .contents1__challenge .text {
    font-size: 14px;
    line-height: 1.42;
    margin-top: 0.5em;
  }
  .contents1__challenge .text.sp {
    display: none;
  }
  .contents1__challenge .text.pc {
    display: block;
  }
  .contents1__challenge .image {
    height: 54px;
    margin: 0;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 380px;
  }
  .contents1__challenge .note {
    font-size: 11px;
    margin-top: 0.5em;
  }
  .contents1__challenge .column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 30px 0;
  }
  .contents1__challenge .column .wrap {
    padding: 5px 20px 0 0;
    position: relative;
    width: 52%;
  }
  .contents1__challenge .column .wrap .image {
    height: 56px;
    position: absolute;
    right: 20px;
    top: -5px;
    width: 56px;
  }
  .contents1__challenge .column .wrap:last-child {
    border-bottom: solid 1px #000000;
    border-left: solid 1px #000000;
    border-top: none;
    margin-top: 0;
    padding: 5px 0 15px 20px;
    width: 48%;
  }
  .contents1__challenge .column .wrap:last-child .image {
    right: 0;
    top: -5px;
  }
  .contents1__challenge .solo {
    padding: 20px 30px 30px;
  }
  .contents1__challenge .solo .inner {
    border-top: none;
    padding: 0;
    position: relative;
  }
  .contents1__challenge .solo .image {
    right: 10px;
    top: 5px;
  }
}
.contents1__challenge .wrap.forPC {
  display: none;
}
.contents1__challenge .column.forSP {
  padding-bottom: 0;
  padding-top: 0;
}
.contents1__challenge .column.forSP .wrap {
  margin-top: 0;
}
@media (min-width: 769px) {
  .contents1__challenge .column.forSP {
    display: none;
  }
  .contents1__challenge .wrap.forPC {
    display: block;
  }
}

.contents2 {
  background: #ffe021;
  padding: 30px 0 0;
}
@media (min-width: 769px) {
  .contents2 {
    padding: 60px 0 0;
  }
}

.contents2__ttl {
  display: none;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .contents2__ttl {
    width: 880px;
  }
}

.contents2__tab {
  border-bottom: solid 10px #e9508e;
}
.contents2__tab ul {
  display: flex;
  justify-content: space-between;
  margin: 20px 0% 0;
}
.contents2__tab li {
  border-radius: 10px 10px 0 0;
  height: 56px;
  margin-top: 0px;
  opacity: 0.7;
  position: relative;
  width: 15.51246%;
}
.contents2__tab li::before {
  background-color: #000000;
  border-radius: 10px 10px 0 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
}
.contents2__tab li span {
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
}
.contents2__tab li span em {
  display: inline-block;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.contents2__tab li span .sub {
  font-size: 0.95em;
  position: relative;
  top: -0.6em;
  z-index: -1;
}
.contents2__tab li span .sub .sub2 {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
  top: -1.2em;
}
.contents2__tab li.current {
  filter: drop-shadow(2px -3px 4px rgba(0, 0, 0, 0.3));
  height: 56px;
  margin-top: 0;
  opacity: 1;
  width: 96px;
}
.contents2__tab li.current::before {
  display: none;
}
.contents2__tab li.current span {
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 55px;
  vertical-align: middle;
}
.contents2__tab li.current span em {
  font-size: 48px;
  letter-spacing: 0em;
}
.contents2__tab li.current span .sub {
  font-size: 0.95em;
  position: relative;
  top: -0.5em;
  z-index: -1;
}
.contents2__tab li.current span .sub .sub2 {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
  top: -1em;
}
.contents2__tab li:nth-child(1) {
  background: #e9508e;
}
.contents2__tab li:nth-child(2) {
  background: #e70012;
}
.contents2__tab li:nth-child(3) {
  background: #f08300;
}
.contents2__tab li:nth-child(4) {
  background: #009ee1;
}
.contents2__tab li:nth-child(5) {
  background: #a84892;
}
.contents2__tab li:nth-child(6) {
  background: #5186c5;
}
.contents2__tab li:nth-child(7) {
  background: #7fbe26;
}
@media (min-width: 769px) {
  .contents2__tab ul {
    margin: 10px auto 0;
    width: 1024px;
  }
  .contents2__tab li {
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    height: 48px;
    margin-top: 24px;
    position: relative;
    transition: opacity 0.3s;
    width: 142px;
    z-index: 0;
  }
  .contents2__tab li::before {
    border-radius: 20px 20px 0 0;
    transition: opacity 0.3s;
  }
  .contents2__tab li:hover {
    opacity: 1;
  }
  .contents2__tab li:hover::before {
    opacity: 0;
  }
  .contents2__tab li span {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 45px;
  }
  .contents2__tab li span em {
    font-size: 34px;
    letter-spacing: 0em;
    padding: 0 0.05em;
  }
  .contents2__tab li span .sub {
    font-size: 0.95em;
    position: relative;
    top: -0.3em;
    z-index: -1;
  }
  .contents2__tab li span .sub .sub2 {
    font-size: 0.5em;
    line-height: 0;
    position: relative;
    top: -0.3em;
  }
  .contents2__tab li.current {
    cursor: default;
    height: 72px;
    width: 142px;
  }
  .contents2__tab li.current span {
    font-size: 36px;
    line-height: 68px;
  }
  .contents2__tab li.current span em {
    font-size: 51px;
  }
  .contents2__tab li.current span .sub {
    font-size: 0.7em;
    position: relative;
    top: -0.4em;
  }
  .contents2__tab li.current span .sub em {
    font-size: 48px;
  }
  .contents2__tab li.current span .sub .sub2 {
    font-size: 0.7em;
    line-height: 0;
    position: relative;
    top: -0.5em;
  }
}

.contents2 .tools {
  display: none;
}
.contents2.q5 .contents2__tab {
  border-bottom-color: #e9508e;
}
.contents2.q5 #tool_q5 {
  display: block;
}
.contents2.q4 .contents2__tab {
  border-bottom-color: #e70012;
}
.contents2.q4 #tool_q4 {
  display: block;
}
.contents2.q3 .contents2__tab {
  border-bottom-color: #f08300;
}
.contents2.q3 #tool_q3 {
  display: block;
}
.contents2.j2 .contents2__tab {
  border-bottom-color: #009ee1;
}
.contents2.j2 #tool_j2 {
  display: block;
}
.contents2.j2p .contents2__tab {
  border-bottom-color: #a84892;
}
.contents2.j2p #tool_j2p {
  display: block;
}
.contents2.q2 .contents2__tab {
  border-bottom-color: #5186c5;
}
.contents2.q2 #tool_q2 {
  display: block;
}
.contents2.j1 .contents2__tab {
  border-bottom-color: #7fbe26;
}
.contents2.j1 #tool_j1 {
  display: block;
}

.contents2__inner {
  padding: 0 25px 35px;
}
@media (min-width: 769px) {
  .contents2__inner {
    margin: 0 auto;
    padding: 0 0 50px;
    width: 800px;
  }
}

.contents2__main {
  background: #ffffff;
}
.contents2__main .tools {
  padding-bottom: 35px;
}
.contents2__main .step {
  padding-top: 40px;
  width: 100%;
}
.contents2__main .body {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .contents2__main .body {
    margin: 15px 13px 0;
  }
}
.contents2__main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contents2__main ul li {
  width: 50%;
}
.contents2__main ul li:nth-child(3), .contents2__main ul li:nth-child(4) {
  margin-top: 20px;
}
.contents2__main ul .image {
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .contents2__main ul .image {
    height: 42.6vw;
  }
}
.contents2__main ul .image img {
  border: solid 1px #000;
  display: block;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  width: auto;
}
.contents2__main ul p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.38;
  margin-top: 0.7em;
  padding: 0 2px;
  text-align: center;
}
.contents2__main ul p .min {
  font-size: 11px;
  font-weight: 700;
}
.contents2__main ul .link {
  margin-top: 10px;
  text-align: center;
}
.contents2__main ul .link a {
  background: #2e3192;
  border-radius: 100vh;
  color: #ffffff;
  display: inline-block;
  font-size: 13px;
  height: 36px;
  line-height: 35px;
  position: relative;
  text-align: center;
  width: 120px;
}
.contents2__main ul .link a::after {
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  content: "";
  display: block;
  height: 8px;
  margin: -4px 12px 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.contents2__main ul .link a span {
  font-weight: 700;
}
.contents2__main ul .link a span.-small {
  display: inline-block;
  font-size: 12px;
  transform: translate(-4px, -1px);
}
.contents2__main ul .link.-sheet a {
  font-size: 13px;
  height: 26px;
  line-height: 26px;
}
.contents2__main ul .link.-sheet a::after {
  position: absolute;
  top: 50%;
  right: 0;
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  content: "";
  display: block;
  height: 8px;
  margin: -4px 12px 0 0;
  transform: rotate(45deg);
  width: 8px;
}
@media (min-width: 769px) {
  .contents2__main ul .link.-sheet a::after {
    transition: margin 0.3s;
  }
}
.contents2__main ul .link.-sheet a::before {
  position: absolute;
  top: 50%;
  left: 8.2%;
  background-image: url(../../assets/img/et_contents2/icon_sheet.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: unset;
  content: "";
  display: block;
  height: 13px;
  margin: unset;
  transform: rotate(0) translateY(-50%);
  width: 16px;
}
.contents2__main .c-note__list {
  display: block;
}
.contents2__main .c-note__list .c-note__list__item {
  width: auto;
}
.contents2__main .notice {
  background: #fdecd9;
  border-radius: 8px;
  padding: 20px;
}
.contents2__main .notice h3 {
  color: #f08300;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.36;
  padding-left: 1.2em;
}
.contents2__main .notice h3::before {
  content: "▶";
  display: inline-block;
  margin-left: -1em;
  margin-right: 0.2em;
}
.contents2__main .notice h3.notice__q3, .contents2__main .notice h3.notice__j2, .contents2__main .notice h3.notice__q2, .contents2__main .notice h3.notice__j1 {
  display: none;
}
.contents2__main .notice .text {
  color: #808080;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1em;
}
.contents2__main .notice .text p {
  padding-left: 1em;
  text-indent: -1em;
}
@media (min-width: 769px) {
  .contents2__main .tools {
    padding-bottom: 50px;
  }
  .contents2__main .column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .contents2__main .step {
    padding-top: 50px;
    width: 380px;
  }
  .contents2__main ul li {
    width: 50%;
  }
  .contents2__main ul li:nth-child(3) {
    margin-top: 0;
  }
  .contents2__main ul .image {
    height: 156px;
    width: auto;
  }
  .contents2__main ul .image img {
    height: 100%;
  }
  .contents2__main ul .link a {
    font-size: 16px;
    height: 40px;
    line-height: 38px;
    max-width: 152px;
    transition: all 0.3s;
    width: 100%;
  }
  .contents2__main ul .link a::after {
    height: 10px;
    margin: -5px 14px 0 0;
    transition: all 0.3s;
    width: 10px;
  }
  .contents2__main ul .link a:hover {
    opacity: 0.8;
  }
  .contents2__main ul .link a:hover::after {
    margin-right: 8px;
  }
  .contents2__main ul .link.-sheet a {
    font-size: 13px;
    height: 26px;
    line-height: 26px;
  }
  .contents2__main ul .link.-sheet a::after {
    position: absolute;
    top: 50%;
    right: 0;
    border-right: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    content: "";
    display: block;
    height: 8px;
    margin: -4px 12px 0 0;
    transform: rotate(45deg);
    width: 8px;
  }
  .contents2__main ul .link.-sheet a::before {
    position: absolute;
    top: 50%;
    left: 8.2%;
    background-image: url(../../assets/img/et_contents2/icon_sheet.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: unset;
    content: "";
    display: block;
    height: 13px;
    margin: unset;
    transform: rotate(0) translateY(-50%);
    width: 16px;
  }
  .contents2__main ul .link.-sheet a:hover {
    opacity: 0.8;
  }
  .contents2__main ul .link.-sheet a:hover::after {
    margin-right: 8px;
  }
  .contents2__main ul.col3 li {
    width: 32%;
  }
  .contents2__main ul.col3 li:nth-child(2) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .contents2__main ul.col3 li:nth-child(n+4) {
    margin-top: 20px;
  }
  .contents2__main ul.col3 li .link a {
    max-width: 128px;
  }
  .contents2__main ul.col_over3 li:nth-child(n+3) {
    margin-top: 20px;
  }
  .contents2__main .notice {
    padding: 20px 40px;
  }
  .contents2__main .notice h3 {
    font-size: 16px;
    line-height: 1.375;
  }
  .contents2__main .notice .text {
    margin-top: 0.8em;
  }
}

.step_title img {
  display: block;
  max-width: none;
  width: 100%;
}

#et_contents2.q5 .contents2__main .notice {
  background: #fce5ee;
}
#et_contents2.q5 .contents2__main .notice h3 {
  color: #e9508e;
}

#et_contents2.q4 .contents2__main .notice {
  background: #fbd9db;
}
#et_contents2.q4 .contents2__main .notice h3 {
  color: #e70012;
}

#et_contents2.q3 .contents2__main .notice {
  background: #fdecd9;
}
#et_contents2.q3 .contents2__main .notice h3 {
  color: #f08300;
}
#et_contents2.q3 .contents2__main .notice h3.notice__q3 {
  display: block;
}

#et_contents2.j2 .contents2__main .notice {
  background: #d9f0fa;
}
#et_contents2.j2 .contents2__main .notice h3 {
  color: #009ee1;
}
#et_contents2.j2 .contents2__main .notice h3.notice__j2 {
  display: block;
}

#et_contents2.j2p .contents2__main .notice {
  background: #f2e4ef;
}
#et_contents2.j2p .contents2__main .notice h3 {
  color: #a84892;
}
#et_contents2.j2p .contents2__main .notice h3.notice__j2p {
  display: block;
}

#et_contents2.q2 .contents2__main .notice {
  background: #e5edf6;
}
#et_contents2.q2 .contents2__main .notice h3 {
  color: #5186c5;
}
#et_contents2.q2 .contents2__main .notice h3.notice__q2 {
  display: block;
}

#et_contents2.j1 .contents2__main .notice {
  background: #ecf5de;
}
#et_contents2.j1 .contents2__main .notice h3 {
  color: #7fbe26;
}
#et_contents2.j1 .contents2__main .notice h3.notice__j1 {
  display: block;
}

.kanken {
  background: url(../../assets/img/kanken/bg.png) repeat 0 0/42px 42px;
  background-color: #f2faff;
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 769px) {
  .kanken {
    margin-bottom: 15px;
    padding: 70px 0 50px;
  }
}

.kanken__inner {
  margin: 0 auto;
  padding: 0 25px;
}
@media (min-width: 769px) {
  .kanken__inner {
    padding: 0;
    width: 660px;
  }
}

.kanken__head {
  position: relative;
  background: #ffe021;
  border-radius: 100vh;
  margin-bottom: 30px;
  padding: 10px 20px;
}
@media (min-width: 769px) {
  .kanken__head {
    background-size: 81px 81px;
    margin-bottom: 40px;
  }
}
.kanken__head::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  border-color: #ffe021 transparent transparent transparent;
  border-style: solid;
  border-width: 22px 14px 0 14px;
  content: "";
  display: block;
  height: 0;
  margin: 0 0 -18px -7px;
  width: 0;
}
@media (min-width: 769px) {
  .kanken__head::after {
    border-width: 16px 10px 0 10px;
    margin: 0 0 -14px -5px;
  }
}
.kanken__head h2 {
  font-size: 1.125rem;
  color: #2e3192;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .kanken__head h2 {
    font-size: 1.5rem;
  }
}
.kanken__head p {
  font-size: 0.6875rem;
  font-weight: 700;
  margin: 5px 0 0;
  text-align: center;
}

.kanken__body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .kanken__body ul li {
    max-width: 120px;
    width: 40%;
  }
}
@media (min-width: 769px) {
  .kanken__body ul li {
    width: 200px;
  }
}
.kanken__body ul li + li {
  margin-left: 10.1vw;
}
@media (min-width: 769px) {
  .kanken__body ul li + li {
    margin-left: -10px;
  }
}
.kanken__body ul .image {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .kanken__body ul .image {
    width: 140px;
  }
}
.kanken__body ul .image img {
  border: 1px solid #000;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  width: auto;
}
.kanken__body ul p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.38;
  margin-top: 0.7em;
  text-align: center;
}
.kanken__body ul p span {
  display: block;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .kanken__body ul p span {
    display: inline-block;
    margin-left: 1em;
  }
}
.kanken__body ul .link {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 769px) {
  .kanken__body ul .link {
    margin-top: 10px;
  }
}
.kanken__body ul .link a {
  background: #2e3192;
  border-radius: 100vh;
  color: #ffffff;
  display: inline-block;
  font-size: 13px;
  line-height: 36px;
  max-width: 120px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .kanken__body ul .link a {
    font-size: 16px;
    line-height: 40px;
    max-width: 152px;
    transition: all 0.3s;
    width: 100%;
  }
}
.kanken__body ul .link a::after {
  border-right: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  content: "";
  display: block;
  height: 8px;
  margin: -4px 12px 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
@media (min-width: 769px) {
  .kanken__body ul .link a::after {
    height: 10px;
    margin: -5px 14px 0 0;
    transition: all 0.3s;
    width: 10px;
  }
}
.kanken__body ul .link a span {
  font-weight: 700;
}
@media (min-width: 769px) {
  .kanken__body ul .link a:hover {
    opacity: 0.8;
  }
  .kanken__body ul .link a:hover::after {
    margin-right: 8px;
  }
}

.kanken__return {
  margin-top: 40px;
  text-align: center;
}
.kanken__return a {
  position: relative;
  font-size: 0.8125rem;
  background: #ffffff;
  border: solid 2px #2e3192;
  border-radius: 100vh;
  color: #2e3192;
  display: inline-block;
  font-weight: 900;
  line-height: 36px;
  text-align: center;
  width: 180px;
}
@media (min-width: 769px) {
  .kanken__return a {
    font-size: 20px;
    line-height: 56px;
    transition: all 0.3s;
    width: 300px;
  }
}
.kanken__return a::after {
  position: absolute;
  top: 50%;
  right: 0;
  border-right: 3px solid #2e3192;
  border-top: 3px solid #2e3192;
  content: "";
  display: block;
  height: 8px;
  margin: -3px 12px 0 0;
  transform: rotate(45deg);
  width: 8px;
}
@media (min-width: 769px) {
  .kanken__return a::after {
    border-right-width: 4px;
    border-top-width: 4px;
    height: 14px;
    margin: -7px 20px 0 0;
    transition: all 0.3s;
    width: 14px;
  }
}
@media (min-width: 769px) {
  .kanken__return a:hover {
    background: #2e3192;
    color: #ffffff;
  }
  .kanken__return a:hover::after {
    border-right-color: #ffffff;
    border-top-color: #ffffff;
    margin-right: 12px;
  }
}

@keyframes mainttlIn_x {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mainttlIn_y {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mv_y {
  to {
    background-position: center top;
    opacity: 1;
  }
}
.mv {
  animation: mv_y 0.6s 0.2s ease forwards;
  background: #fff85a;
  background: #fff85a url(../../assets/img/mv/bg_sp.png) no-repeat center top -40px/100% auto;
  opacity: 0;
  position: relative;
}
@media (min-width: 769px) {
  .mv {
    background-image: url(../../assets/img/mv/bg.png);
    background-size: 1440px auto;
    overflow: hidden;
  }
}
.mv img {
  pointer-events: none;
}

.mv__inner {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 769px) {
  .mv__inner {
    max-width: 952px;
  }
}

.mv__mainttl {
  animation: mainttlIn_x 0.6s 0.6s ease forwards;
  opacity: 0;
  padding: 30px 0 0;
  transform: translateX(20px);
}
.mv__mainttl picture {
  display: block;
  margin: 0px auto;
  max-width: 638px;
}
@media (min-width: 769px) {
  .mv__mainttl {
    padding: 30px 0 0;
    padding-left: 0;
  }
}

.mv__catch {
  animation: mainttlIn_x 0.6s 1s ease forwards;
  margin: 2.8% auto 0;
  opacity: 0;
  transform: translateX(20px);
}
@media (min-width: 769px) {
  .mv__catch {
    margin: 15px auto 0;
  }
  .mv__catch picture {
    display: block;
    margin: 0 auto 0 5%;
    max-width: 820px;
  }
}

.mv__sub {
  position: relative;
  background: #fff;
  margin-top: 12.6vw;
  padding-bottom: 6.4vw;
}
@media (min-width: 769px) {
  .mv__sub {
    margin-top: 50px;
    padding-bottom: 24px;
  }
}
.mv__sub::before {
  position: absolute;
  top: -25.6vw;
  left: 0;
  background: url(../../assets/img/mv/bg_human_sp.png) no-repeat center bottom/100% auto;
  content: "";
  display: block;
  height: 25.6vw;
  width: 100%;
}
@media (min-width: 769px) {
  .mv__sub::before {
    position: absolute;
    top: -188px;
    left: 0;
    background: url(../../assets/img/mv/bg_human.png) no-repeat center top/1440px auto;
    height: 188px;
  }
}
@media (max-width: 768px) {
  .mv__sub .mv__inner {
    padding: 0 7.4vw;
  }
}

.mv__sub__ttl {
  position: absolute;
  top: -9.9vw;
  left: 50%;
  transform: translateX(-50%);
  width: 55.2vw;
}
@media (min-width: 769px) {
  .mv__sub__ttl {
    position: absolute;
    top: -42px;
    left: 50%;
    margin: 0 auto;
    width: 438px;
  }
}

.mv__sub__howto {
  position: relative;
}
@media (min-width: 769px) {
  .mv__sub__howto {
    margin: 0 auto;
    padding-left: 28px;
    width: 800px;
  }
}

@media (max-width: 768px) {
  .mv__sub__howto__ph {
    padding-top: 5.6vw;
  }
}

.mv__sub__howto__txt {
  font-weight: 500;
}
@media (max-width: 768px) {
  .mv__sub__howto__txt {
    font-size: 0.6875rem;
    line-height: 1.4545454545;
    margin-top: 3.2vw;
  }
}
@media (min-width: 769px) {
  .mv__sub__howto__txt {
    font-size: 0.75rem;
    margin-top: 8px;
  }
}
.mv__sub__howto__txt a {
  color: #2e3192;
  font-weight: 700;
  text-decoration: underline;
}
.mv__sub__howto__txt span {
  color: #2e3192;
}

@media (max-width: 768px) {
  .mv__sub__howto__shoulder {
    position: absolute;
    top: -1.6vw;
    right: -5.1vw;
    width: 26.6vw;
  }
}
@media (min-width: 769px) {
  .mv__sub__howto__shoulder {
    position: absolute;
    top: -53px;
    right: -30px;
    width: 138px;
  }
}

.mv__sub__note {
  margin-top: 3.2vw;
}
@media (min-width: 769px) {
  .mv__sub__note {
    margin-top: 16px;
  }
}

.mv__sub__links {
  background-color: #fffcbd;
  font-weight: 500;
}
@media (max-width: 768px) {
  .mv__sub__links {
    font-size: 0.6875rem;
    border-radius: 10px;
    line-height: 1.3636363636;
    margin: 3.2vw auto 0;
    padding: 4.5vw;
  }
}
@media (min-width: 769px) {
  .mv__sub__links {
    font-size: 0.75rem;
    border-radius: 8px;
    line-height: 1.5;
    margin: 10px auto 0;
    padding: 16px 30px;
    width: 800px;
  }
}

.mv__another {
  background-color: #fffcbd;
  font-weight: 500;
}
@media (max-width: 768px) {
  .mv__another {
    font-size: 0.6875rem;
    border-radius: 10px;
    line-height: 1.3636363636;
    margin: 3.2vw auto 0;
    padding: 4.5vw;
  }
}
@media (min-width: 769px) {
  .mv__another {
    font-size: 0.75rem;
    border-radius: 8px;
    line-height: 1.5;
    margin: 10px auto 0;
    padding: 16px 30px;
    width: 800px;
  }
}
@media (max-width: 768px) {
  .mv__another ul {
    margin-top: 0.6vw;
  }
}
@media (min-width: 769px) {
  .mv__another ul {
    margin-top: 2px;
  }
}
.mv__another li {
  font-weight: 500;
}
@media (max-width: 768px) {
  .mv__another li {
    margin-top: 0.6vw;
  }
}
@media (min-width: 769px) {
  .mv__another li {
    margin-top: 4px;
  }
}
.mv__another li a {
  display: inline-block;
  font-weight: 500;
  margin-left: 0.6em;
  position: relative;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .mv__another li a {
    pointer-events: none;
    text-decoration: none;
  }
}
.mv__another li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  border-right: 2px solid #000000;
  border-top: 2px solid #000000;
  content: "";
  display: block;
  height: 0.6em;
  margin: -0.2em -0.8em 0 0;
  transform: rotate(45deg);
  width: 0.6em;
}
@media (min-width: 769px) {
  .mv__another li a::after {
    display: none;
  }
}
.mv__another p {
  font-size: 0.6875rem;
  color: #808080;
  line-height: 1.4545454545;
}
@media (max-width: 768px) {
  .mv__another p {
    margin-top: 0.6vw;
  }
}
@media (min-width: 769px) {
  .mv__another p {
    margin-top: 2px;
  }
}

.pagenav {
  position: relative;
  background: #2e3192;
  height: 56px;
}
@media (min-width: 769px) {
  .pagenav {
    display: block;
  }
}

.pagenav__inner {
  position: relative;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 600px;
}
@media (min-width: 769px) {
  .pagenav__inner::after {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 8px);
    background: #ffffff;
  }
}

.pagenav__item {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 9px;
  background: url(../../assets/img/nav/num_1.svg) no-repeat right 15px center;
  background-size: auto 33px;
}
.pagenav__item picture {
  width: 95px;
}
@media (min-width: 769px) {
  .pagenav__item.-nd picture {
    width: 128px;
  }
}
@media (max-width: 768px) {
  .pagenav__item.-nd picture {
    width: 103px;
  }
}
.pagenav__item::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 6px;
  margin-left: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}
.pagenav__item::after {
  position: absolute;
  top: 4px;
  right: -1px;
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 8px);
  background: #ffffff;
}
.pagenav__item:last-child::after {
  display: none;
}
.pagenav__item:nth-child(2) {
  background-image: url(../../assets/img/nav/num_2.svg);
}
@media (min-width: 769px) {
  .pagenav__item {
    font-size: 16px;
    padding-bottom: 14px;
  }
  .pagenav__item:last-child::after {
    display: block;
  }
  .pagenav__item::before {
    bottom: 12px;
    transition: all 0.3s;
  }
  .pagenav__item:hover {
    color: #ffffff;
  }
  .pagenav__item:hover::before {
    bottom: 6px;
  }
  .pagenav__item picture {
    width: 214px;
  }
  .pagenav__item br {
    display: none;
  }
}

.bottomui {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  left: 0;
  pointer-events: none;
  position: sticky;
  z-index: 2;
}
@media (min-width: 769px) {
  .bottomui {
    margin-top: -97px;
  }
}

.bottombnr {
  pointer-events: initial;
}
@media (min-width: 769px) {
  .bottombnr {
    margin-bottom: 15px;
    width: 230px;
  }
}

.bottomui__pagetop {
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.3));
  margin-bottom: 15px;
  margin-right: 15px;
  pointer-events: initial;
  width: 68px;
}
.bottomui__pagetop a {
  display: block;
}

.js-scrollreveal {
  opacity: 0;
  transform: translateY(10px);
}
.js-scrollreveal.-reveal {
  animation: revalIn 0.6s ease forwards;
}
@keyframes revalIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}