@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.3793103448vw;
  }
}
@media (min-width: 1160px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.comic {
  background: #0D64B7;
  padding-top: 1.875rem;
  position: relative;
}
@media (min-width: 768px) {
  .comic {
    padding-top: 6.25rem;
  }
}
.comic::before, .comic::after {
  position: absolute;
  content: "";
}
.comic::before {
  background: url(../images/common/wavy-line-sp.png) repeat-x center center/cover;
  width: 100%;
  height: 1rem;
  display: block;
  top: -0.9375rem;
}
@media (min-width: 768px) {
  .comic::before {
    height: 2.125rem;
    background: url(../images/common/wavy-line.png) repeat-x center center/contain;
    top: -2rem;
  }
}
.comic::after {
  -webkit-clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
          clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
  background: #0D64B7;
  width: 100%;
  height: 1.9375rem;
  display: block;
  bottom: -1.875rem;
}
@media (min-width: 768px) {
  .comic::after {
    height: 5.1875rem;
    bottom: -5rem;
  }
}
.comic .comic__inner {
  padding-inline: 0;
}

.comic__title-wrap {
  border: 0.125rem solid #333;
  background: #fff;
  border-radius: 9.6875rem;
  padding: 0.75rem;
  width: 17rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 768px) {
  .comic__title-wrap {
    border-radius: 19.375rem;
    width: 48.75rem;
    padding: 1.5625rem;
    border: 0.1875rem solid #333;
  }
}
.comic__title-wrap::before, .comic__title-wrap::after {
  position: absolute;
  content: "";
}
.comic__title-wrap::before {
  top: -18%;
  right: -5%;
  width: 1.4375rem;
  height: 2rem;
  display: inline-block;
  background: url(../images/common/shine-burst.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .comic__title-wrap::before {
    top: -10%;
    right: -3%;
  }
}
.comic__title-wrap::after {
  bottom: -25%;
  left: 22%;
  width: 1.25rem;
  height: 1.375rem;
  display: inline-block;
  background: url(../images/common/bubble-pair.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .comic__title-wrap::after {
    width: 2.5625rem;
    height: 2.8125rem;
    bottom: -35%;
    left: 15%;
  }
}

.comic__title {
  font-size: 1.1875rem;
  color: #333;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .comic__title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
.comic__title span {
  color: #CC0000;
}

.comic__img {
  width: 23.4375rem;
  max-width: 100%;
  margin-top: 1.6875rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .comic__img {
    width: 50rem;
    margin-top: 2.8125rem;
  }
}
.comic__img img {
  width: 100%;
  height: 100%;
}

.comic-02 {
  background: #FA8500;
  z-index: 0;
}
.comic-02::before {
  content: none;
}
.comic-02::after {
  -webkit-clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
          clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
  background: #FA8500;
  width: 100%;
  height: 1.9375rem;
  bottom: -1.875rem;
  display: block;
}
@media (min-width: 768px) {
  .comic-02::after {
    height: 5.1875rem;
    bottom: -5rem;
  }
}
.comic-02 .comic__title-wrap {
  width: 17rem;
}
@media (min-width: 768px) {
  .comic-02 .comic__title-wrap {
    width: 41.0625rem;
  }
}
.comic-02 .comic__title-wrap::after {
  z-index: -1;
  bottom: -24%;
  left: 22%;
  width: 1.15625rem;
  height: 1.625rem;
  display: inline-block;
  background: url(../images/common/bubble-accent.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .comic-02 .comic__title-wrap::after {
    width: 2.3125rem;
    height: 3.25rem;
    bottom: -35%;
    left: 18%;
  }
}

.comic-03 {
  background: #FA8500;
  z-index: 0;
  padding-top: 3.125rem;
}
@media (min-width: 768px) {
  .comic-03 {
    padding-top: 6.25rem;
  }
}
.comic-03::before {
  content: none;
}
.comic-03::after {
  -webkit-clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
          clip-path: polygon(50% 100%, 100% 2%, -2% 2%);
  background: #FA8500;
  width: 100%;
  height: 1.9375rem;
  bottom: -1.875rem;
  display: block;
}
@media (min-width: 768px) {
  .comic-03::after {
    height: 5.1875rem;
    bottom: -5rem;
  }
}
.comic-03 .comic__img {
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .comic-03 .comic__img {
    margin-top: 1.25rem;
  }
}
.comic-03 .comic__title-wrap {
  background: url(../images/common/comic-title-bg.png) no-repeat center center/cover;
  width: 20.3125rem;
  height: 4.875rem;
  padding-block: 0.6875rem;
  padding-inline: 3.625rem;
  border: none;
  border-radius: initial;
}
@media (min-width: 768px) {
  .comic-03 .comic__title-wrap {
    width: 41.125rem;
    height: 9.875rem;
    padding-block: 1.5625rem;
    padding-inline: 8rem 5.625rem;
  }
}
.comic-03 .comic__title-wrap::before {
  top: 32%;
  right: 3%;
  width: 3.625rem;
  height: 4.25rem;
  display: inline-block;
  background: url(../images/common/shine-ok.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .comic-03 .comic__title-wrap::before {
    top: 43%;
    right: -5%;
    width: 5rem;
    height: 5.625rem;
  }
}
.comic-03 .comic__title-wrap::after {
  content: none;
}

.contact {
  background: #DFF4FF;
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .contact {
    padding-block: 5rem;
  }
}

.contact__head {
  font-size: 1.1875rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  background: #0D64B7;
  border-radius: 0.3125rem;
  padding: 0.625rem 2.8125rem;
  text-align: center;
  width: 20.9375rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 768px) {
  .contact__head {
    line-height: 1.35;
    font-size: 2.5rem;
    width: 36.25rem;
    padding: 0.9375rem 4.375rem;
    border-radius: 0.625rem;
  }
}
.contact__head::after {
  content: "";
  position: absolute;
  bottom: 0.0625rem;
  left: 50%;
  border-style: solid;
  border-width: 0.625rem 0.625rem 0 0.625rem;
  border-color: #0d64b7 transparent transparent;
  translate: -50% 100%;
}

.contact__tel {
  margin-top: 0.625rem;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__tel {
    margin-top: 1.25rem;
  }
}
.contact__tel a {
  display: block;
  width: 19.1875rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact__tel a {
    width: 27.6875rem;
  }
}
.contact__tel a img {
  width: 100%;
  height: 100%;
}

.contact__tel-info {
  font-size: 0.93755rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact__tel-info {
    font-size: 1.125rem;
  }
}
.contact__btn {
  text-align: center;
  margin-top: 1.5625rem;
}
@media (min-width: 768px) {
  .contact__btn {
    margin-top: 2.5rem;
  }
}
.contact__btn a {
  text-align: center;
  font-size: 1.1875rem;
  font-weight: bold;
  width: 20.9375rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.125rem 0.9375rem;
  display: inline-block;
  border-radius: 4.0625rem;
  border: 0.125rem solid #0D64B7;
  background: #fff;
  -webkit-box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  text-indent: 1.25rem;
}
@media (min-width: 768px) {
  .contact__btn a {
    font-size: 1.875rem;
    width: 33.125rem;
    border-radius: 8.125rem;
    border: 0.25rem solid #0D64B7;
    padding: 1.3125rem 1.875rem;
    text-indent: initial;
  }
}
.contact__btn a::before {
  content: "";
  position: absolute;
  background: url(../images/common/mail-icon.png) no-repeat center center/cover;
  width: 1.875rem;
  height: 1.3125rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.9375rem;
}
@media (min-width: 768px) {
  .contact__btn a::before {
    width: 2.75rem;
    height: 1.875rem;
    left: 1.5625rem;
  }
}
.contact__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  translate: 0 -50%;
  background: url(../images/common/cta-arrow.svg) no-repeat center center/contain;
  width: 0.625rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .contact__btn a::after {
    right: 1.875rem;
  }
}

.cta {
  padding-block: 3.125rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.1%, #76CAF3), color-stop(100.1%, #054FC8));
  background: linear-gradient(180deg, #76CAF3 0.1%, #054FC8 100.1%);
}
@media (min-width: 768px) {
  .cta {
    padding-block: 3.75rem 6.25rem;
  }
}

.cta__head {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .cta__head {
    font-size: 2.5rem;
  }
}
.cta__head p {
  display: inline-block;
  position: relative;
}
.cta__head p::before, .cta__head p::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  width: 2.8125rem;
  height: 3.4375rem;
}
@media (min-width: 768px) {
  .cta__head p::before, .cta__head p::after {
    width: 2.4375rem;
    height: 2.9375rem;
  }
}
.cta__head p::before {
  background: url(../images/common/cta-accent-left.png) no-repeat center center/contain;
  left: -3.75rem;
}
.cta__head p::after {
  background: url(../images/common/cta-accent-right.png) no-repeat center center/contain;
  right: -3.75rem;
}

.cta__btn {
  text-align: center;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .cta__btn {
    margin-top: 2.5rem;
  }
}
.cta__btn a {
  width: 20.9375rem;
  max-width: 100%;
  margin-inline: auto;
  display: inline-block;
  text-align: center;
  border-radius: 4.375rem;
  border: 0.125rem solid #fff;
  background: #FFE201;
  -webkit-box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 5px 5px 13px 0px rgba(0, 0, 0, 0.35);
  font-size: 1.3125rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 0.8125rem 0.9375rem;
  position: relative;
}
@media (min-width: 768px) {
  .cta__btn a {
    width: 36.25rem;
    font-size: 1.875rem;
    line-height: 1.3;
    border-radius: 8.75rem;
    border: 0.1875rem solid #fff;
    padding: 1.625rem 1.875rem;
    -webkit-box-shadow: 10px 10px 27px 0px rgba(0, 0, 0, 0.35);
            box-shadow: 10px 10px 27px 0px rgba(0, 0, 0, 0.35);
  }
}
.cta__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  translate: 0 -50%;
  background: url(../images/common/cta-arrow.svg) no-repeat center center/contain;
  width: 0.6875rem;
  height: 1.0625rem;
}
@media (min-width: 768px) {
  .cta__btn a::after {
    width: 0.625rem;
    height: 1rem;
    right: 1.875rem;
  }
}

.episode {
  padding-block: 3.75rem 4.5625rem;
  position: relative;
}
@media (min-width: 768px) {
  .episode {
    padding-block: 10.125rem 10.875rem;
  }
}
.episode::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 0;
  background: url(../images/common/episode-bottom-circle-sp.png) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 375/53;
}
@media (min-width: 768px) {
  .episode::after {
    aspect-ratio: 1200/134;
    bottom: -0.0625rem;
    background: url(../images/common/episode-bottom-circle.png) no-repeat center center/cover;
  }
}
@media (min-width: 768px) {
  .episode .episode__inner {
    padding-inline: 1.875rem;
    width: 45.625rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.speech-bubble__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.speech-bubble__img {
  width: 5.3125rem;
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (min-width: 768px) {
  .speech-bubble__img {
    width: 7.25rem;
  }
}
.speech-bubble__img img {
  width: 100%;
  height: 100%;
}

.speech-bubble__text {
  position: relative;
  width: 32.75rem;
  max-width: 100%;
  margin-left: 0.9375rem;
}
@media (min-width: 768px) {
  .speech-bubble__text {
    margin-left: 1.875rem;
  }
}
.speech-bubble__text p {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  border: 0.125rem solid #0D64B7;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem 0.9375rem 2.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .speech-bubble__text p {
    font-size: 1.625rem;
    line-height: 1.2;
    border: 0.1875rem solid #0D64B7;
    padding: 1.25rem;
    border-radius: 1.25rem;
    text-align: center;
  }
}
.speech-bubble__text p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 0.46875rem 0.75rem 0.46875rem 0;
  border-color: transparent #0D64B7 transparent transparent;
  translate: -100% -50%;
}
@media (min-width: 768px) {
  .speech-bubble__text p::before {
    border-width: 0.625rem 1.25rem 0.625rem 0;
    translate: -100% -50%;
  }
}
.speech-bubble__text p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.0625rem;
  border-style: solid;
  border-width: 0.31875rem 0.5125rem 0.31875rem 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% -50%;
}
@media (min-width: 768px) {
  .speech-bubble__text p::after {
    border-width: 0.4125rem 0.89375rem 0.4125rem 0;
  }
}
.speech-bubble__text::before {
  position: absolute;
  content: "";
  top: -30%;
  right: -0.3125rem;
  background: url(../images/common/light-icon.png) no-repeat center center/cover;
  width: 1.5625rem;
  height: 2.8125rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .speech-bubble__text::before {
    top: -50%;
    right: 0;
    width: 1.875rem;
    height: 3.3125rem;
  }
}

.speech-bubble__triangle {
  width: 1.375rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -5%;
}
.speech-bubble__triangle img {
  width: 100%;
  height: 100%;
}

.episode__text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .episode__text {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}
.episode__text p + p {
  margin-top: 0.625rem;
}

.episode__block {
  background: #DFF4FF;
  padding: 0.9375rem;
  margin-top: 1.5625rem;
}
@media (min-width: 768px) {
  .episode__block {
    margin-top: 1.875rem;
    padding: 1.875rem;
  }
}

.episode__block-title {
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 0.9375rem;
  border-left: 0.3125rem solid #0D64B7;
}
@media (min-width: 768px) {
  .episode__block-title {
    font-size: 1.625rem;
    padding-left: 1.25rem;
    border-left: 0.625rem solid #0D64B7;
  }
}

.episode__block-chart {
  width: 19.0625rem;
  max-width: 100%;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .episode__block-chart {
    width: 38.125rem;
  }
}
.episode__block-chart img {
  width: 100%;
  height: 100%;
}

.episode__box {
  background: #fff;
  padding: 0.75rem;
  border-radius: 0.625rem;
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .episode__box {
    padding: 1.5rem;
    border-radius: 1.25rem;
    margin-top: 1.25rem;
  }
}

.episode__box-title {
  color: #0D64B7;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .episode__box-title {
    font-size: 1.125rem;
    text-align: initial;
  }
}

.episode__box-list {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.3125rem;
  padding-left: 0.3125rem;
}
@media (min-width: 768px) {
  .episode__box-list {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}
.episode__box-list li {
  position: relative;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
.episode__box-list li::before {
  content: "・";
  font-size: 1rem;
  padding-right: 0.3125rem;
}
@media (min-width: 768px) {
  .episode__box-list li::before {
    font-size: 1.125rem;
  }
}

.episode-02 {
  padding-block: 4.375rem 2.5rem;
}
@media (min-width: 768px) {
  .episode-02 {
    padding-block: 10.125rem 5rem;
  }
}
.episode-02::after {
  content: none;
}
.episode-02 .speech-bubble__text p {
  line-height: inherit;
  padding: 0.9375rem 2rem;
}
@media (min-width: 768px) {
  .episode-02 .speech-bubble__text p {
    line-height: 1.35;
    padding: 0.9375rem 1.25rem 0.9375rem 2.25rem;
  }
}
.episode-02 .speech-bubble__text::before {
  position: absolute;
  content: "";
  top: -17%;
  right: 0;
  background: url(../images/common/light-icon.png) no-repeat center center/cover;
  width: 1.875rem;
  height: 3.3125rem;
  z-index: 1;
}
.episode-02 .episode__text.--chart-bottom {
  margin-top: 1.5625rem;
}
.episode-02 .episode__text p span {
  color: #CC0000;
}

.episode-03 .speech-bubble__text p {
  padding: 0.9375rem 1.25rem 0.9375rem 2.25rem;
}
@media (min-width: 768px) {
  .episode-03 .speech-bubble__text p {
    padding: 1.875rem 2.5rem;
  }
}
.episode-03 .speech-bubble__text::before {
  position: absolute;
  content: "";
  top: -25%;
  right: 0;
  background: url(../images/common/light-icon.png) no-repeat center center/cover;
  width: 1.5625rem;
  height: 2.8125rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .episode-03 .speech-bubble__text::before {
    width: 1.875rem;
    height: 3.3125rem;
  }
}
.episode-03 .episode__block-title {
  font-size: 1.1875rem;
  font-weight: bold;
  border-left: none;
  text-align: center;
  padding-block: 1.25rem;
  padding-left: initial;
  width: 17.625rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 768px) {
  .episode-03 .episode__block-title {
    width: 35.25rem;
    font-size: 2rem;
    padding-block: 1.5625rem;
  }
}
.episode-03 .episode__block-title::before, .episode-03 .episode__block-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.75rem;
  background: url(../images/common/dot-blue-sp.svg) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .episode-03 .episode__block-title::before, .episode-03 .episode__block-title::after {
    background: url(../images/common/dot-blue-pc.svg) no-repeat center center/cover;
  }
}
.episode-03 .episode__block-title::before {
  top: 0;
  left: 0;
}
.episode-03 .episode__block-title::after {
  bottom: 0;
  left: 0;
}
.episode-03 .episode__block {
  margin-top: 1.5625rem;
  padding: 1.5625rem 0.9375rem 1.25rem;
  border-radius: 0.625rem;
  position: relative;
}
@media (min-width: 768px) {
  .episode-03 .episode__block {
    margin-top: 2.5rem;
    border-radius: 1.25rem;
    padding: 2.8125rem 1.875rem 1.875rem 1.875rem;
  }
}
.episode-03 .episode__block::before, .episode-03 .episode__block::after {
  position: absolute;
  content: "";
}
.episode-03 .episode__block::before {
  width: 4.125rem;
  height: 5.25rem;
  top: 7%;
  left: -5%;
  background: url(../images/common/shine-left.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .episode-03 .episode__block::before {
    top: 23%;
    left: -4%;
    width: 4.25rem;
    height: 5.4375rem;
  }
}
.episode-03 .episode__block::after {
  width: 4.5rem;
  height: 4.375rem;
  top: -4%;
  right: -4%;
  background: url(../images/common/shine-right.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .episode-03 .episode__block::after {
    width: 5.5rem;
    height: 5.4375rem;
    top: -4%;
    right: -3%;
  }
}
.episode-03 .episode__block .episode__block-list {
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  border-radius: 0.3125rem;
  padding: 0.9375rem 0.9375rem 0.9375rem 3.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .episode-03 .episode__block .episode__block-list {
    font-size: 1.125rem;
    border-radius: 0.625rem;
    padding: 1.25rem 1.875rem 1.25rem 5.3125rem;
  }
}
.episode-03 .episode__block .episode__block-list::before {
  content: "";
  position: absolute;
  background: url(../images/common/ellipses.png) no-repeat center center/contain;
  width: 1.625rem;
  height: 1.25rem;
  top: 1.125rem;
  left: 5%;
}
@media (min-width: 768px) {
  .episode-03 .episode__block .episode__block-list::before {
    width: 2.1875rem;
    height: 1.6875rem;
    top: 1.25rem;
  }
}
.episode-03 .episode__block .episode__block-list span {
  color: #CC0000;
}
.episode-03 .episode__block .episode__block-list:nth-child(n+2) {
  margin-top: 0.625rem;
}
.episode-03 .episode__block-item {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .episode-03 .episode__block-item {
    margin-top: 1.5625rem;
  }
}
.episode-03 .episode__block--2 {
  margin-top: 1.5625rem;
  background: #FFFFBB;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 {
    margin-top: 1.25rem;
  }
}
.episode-03 .episode__block--2::before {
  width: 4.125rem;
  height: 5.25rem;
  top: 9%;
  left: -5%;
  background: url(../images/common/shine-left.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2::before {
    width: 4.25rem;
    height: 5.4375rem;
    top: 16%;
    left: -1%;
  }
}
.episode-03 .episode__block--2::after {
  width: 4.5rem;
  height: 4.375rem;
  top: -2%;
  right: -4%;
  background: url(../images/common/shine-right.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2::after {
    width: 5.5rem;
    height: 5.4375rem;
    top: -3%;
    right: -3%;
  }
}
.episode-03 .episode__block--2 .episode__block-list {
  padding: 0.9375rem;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 .episode__block-list {
    padding: 1.25rem 1.875rem;
  }
}
.episode-03 .episode__block--2 .episode__block-list::before {
  content: none;
}
.episode-03 .episode__block--2 .episode__block-question {
  padding: 0.3125rem 0.625rem 1.25rem 4.5rem;
  border-bottom: 0.0625rem solid #D6D6D6;
  font-weight: bold;
  position: relative;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 .episode__block-question {
    padding: 1.25rem 0.625rem 2.5rem 5.625rem;
  }
}
.episode-03 .episode__block--2 .episode__block-question::before {
  content: "";
  position: absolute;
  background: url(../images/common/person-icon01.png) no-repeat center center/cover;
  width: 3.75rem;
  height: 3.75rem;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 .episode__block-question::before {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.episode-03 .episode__block--2 .episode__block-question.--question02::before {
  background: url(../images/common/person-icon03.png) no-repeat center center/cover;
}
.episode-03 .episode__block--2 .episode__block-answer {
  padding: 0.9375rem 0.625rem 0 4.5rem;
  font-weight: 500;
  position: relative;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 .episode__block-answer {
    padding: 1.25rem 0.625rem 1.25rem 5.625rem;
  }
}
.episode-03 .episode__block--2 .episode__block-answer::before {
  content: "";
  position: absolute;
  background: url(../images/common/person-icon02.png) no-repeat center center/cover;
  width: 3.75rem;
  height: 3.75rem;
  top: 0.9375rem;
  left: 0;
}
@media (min-width: 768px) {
  .episode-03 .episode__block--2 .episode__block-answer::before {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.footer {
  padding-block: 2.5rem;
  background: #013466;
}
@media (min-width: 768px) {
  .footer {
    padding-block: 5rem 8.75rem;
  }
}

@media (min-width: 768px) {
  .footer__nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

.footer__nav-item {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
}
@media (min-width: 768px) {
  .footer__nav-item {
    line-height: 1.5;
    font-size: 1.125rem;
  }
}
.footer__nav-item a {
  display: inline-block;
  padding-block: 0.75rem;
}
@media (min-width: 768px) {
  .footer__nav-item a {
    padding-block: 1.5rem;
  }
}

.footer__copy {
  margin-top: 1.5625rem;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 768px) {
  .footer__copy {
    margin-top: 3.125rem;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center;
  }
}

.fv {
  background: url(../images/common/fv-bg-sp.jpg) no-repeat center center/cover;
  width: 100%;
  height: 27.9375rem;
  position: relative;
}
@media (min-width: 768px) {
  .fv {
    background: url(../images/common/fv-bg-pc.jpg) no-repeat center center/cover;
    height: 52.9375rem;
  }
}

.fv__img {
  width: 22.875rem;
  height: 19.0625rem;
  max-width: 100%;
  display: inline-block;
  position: absolute;
  top: 2%;
  left: 50%;
  translate: -50%;
}
@media (min-width: 768px) {
  .fv__img {
    width: 45.75rem;
    height: 37.75rem;
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
}

.fv__text-block {
  background: url(../images/common/fv-text-bg-sp.jpg) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 375/82;
  padding: 1.0625rem 1.5625rem;
  position: absolute;
  bottom: 9%;
  left: 50%;
  translate: -50%;
}
@media (min-width: 768px) {
  .fv__text-block {
    background: url(../images/common/fv-text-bg-pc.jpg) no-repeat center center/cover;
    padding: 2rem 3.125rem;
    height: 7.25rem;
  }
}

.fv__text {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .fv__text {
    font-size: 2rem;
  }
}
.fv__text span {
  color: #FFE201;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
}
@media (min-width: 768px) {
  .fv__text span {
    font-size: 2.25rem;
  }
}

.header {
  background: #fff;
  height: 3rem;
}
@media (min-width: 768px) {
  .header {
    height: 6rem;
  }
}
.header .header__inner {
  padding: 0.625rem;
}
@media (min-width: 768px) {
  .header .header__inner {
    padding: 1.25rem;
  }
}

.header__logo {
  width: 3.5rem;
  height: 1.75rem;
}
@media (min-width: 768px) {
  .header__logo {
    width: 7rem;
    height: 3.5rem;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  width: 100%;
  height: 100%;
}

.inner {
  width: 100%;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1200px;
    padding-inline: 1.25rem;
  }
}

.merit {
  padding-block: 2.5rem 3.875rem;
  background: #FFFFBB;
  position: relative;
}
@media (min-width: 768px) {
  .merit {
    padding-block: 6.25rem 9.625rem;
  }
}
.merit::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.0625rem;
  background: url(../images/common/episode-bottom-circle-sp.png) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 375/53;
}
@media (min-width: 768px) {
  .merit::after {
    background: url(../images/common/episode-bottom-circle.png) no-repeat center center/cover;
    aspect-ratio: 1200/134;
  }
}
.merit .merit__inner {
  padding-inline: 0.9375rem;
}
@media (min-width: 768px) {
  .merit .merit__inner {
    padding-inline: initial;
  }
}

.merit__title-wrap {
  text-align: center;
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .merit__title-wrap {
    margin-top: 0.375rem;
  }
}

.merit__title {
  font-size: 1.46875rem;
  font-weight: bold;
  line-height: 1.2;
  color: #0D64B7;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .merit__title {
    font-size: 2.875rem;
    line-height: 1.1;
  }
}
.merit__title::before, .merit__title::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.125rem;
  height: 5.375rem;
}
@media (min-width: 768px) {
  .merit__title::before, .merit__title::after {
    width: 2.375rem;
    height: 5.9375rem;
  }
}
.merit__title::before {
  left: -3rem;
  background: url(../images/common/leaf-left.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .merit__title::before {
    left: -5rem;
  }
}
.merit__title::after {
  right: -3rem;
  background: url(../images/common/leaf-right.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .merit__title::after {
    right: -5rem;
  }
}

.merit__title-small {
  font-size: 1rem;
  font-weight: 500;
  display: block;
}
@media (min-width: 768px) {
  .merit__title-small {
    font-size: 1.125rem;
  }
}

.merit__title-num {
  font-family: "Abril Fatface", serif;
  font-size: 1.9375rem;
  color: #CC0033;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .merit__title-num {
    font-size: 3.625rem;
  }
}

.merit__title-accent {
  color: #CC0033;
}

.merit__items {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 2.1875rem;
  counter-reset: num;
}
@media (min-width: 768px) {
  .merit__items {
    width: 45.625rem;
    padding-inline: 1.875rem;
    margin-top: 2.5rem;
  }
}

.merit__item {
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5625rem 0.9375rem;
  text-align: center;
}
@media (min-width: 768px) {
  .merit__item {
    border-radius: 1.25rem;
    padding: 2.5rem 1.875rem 1.875rem;
  }
}
.merit__item:nth-child(n+2) {
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .merit__item:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.merit__item-title {
  font-size: 1.1875rem;
  font-weight: bold;
  display: inline-block;
  border-bottom: 0.125rem solid #0D64B7;
  padding-left: 2.25rem;
  padding-bottom: 0.625rem;
  position: relative;
}
@media (min-width: 768px) {
  .merit__item-title {
    font-size: 1.625rem;
    padding-left: 2.875rem;
  }
}
.merit__item-title::before {
  position: absolute;
  top: 3%;
  left: 0;
  counter-increment: num;
  content: counter(num);
  font-family: "Abril Fatface", serif;
  color: #fff;
  font-size: 1.125rem;
  border-radius: 2.8125rem;
  background: #C03;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1.65625rem;
  height: 1.65625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .merit__item-title::before {
    font-size: 1.625rem;
    border-radius: 5.625rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}

.merit__item-text {
  margin-top: 0.9375rem;
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 768px) {
  .merit__item-text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    text-align: center;
  }
}
.merit__item-text p + p {
  margin-top: 0.3125rem;
}
@media (min-width: 768px) {
  .merit__item-text p + p {
    margin-top: 0.625rem;
  }
}

.merit__item-note {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.3125rem;
  text-align: left;
}
@media (min-width: 768px) {
  .merit__item-note {
    font-size: 0.875rem;
    margin-top: 0.625rem;
    text-align: center;
  }
}

.merit__item-images {
  margin-top: 0.9375rem;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .merit__item-images {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
    margin-top: 1.25rem;
  }
}
.merit__item-images.--item-img02 {
  -webkit-column-gap: initial;
     -moz-column-gap: initial;
          column-gap: initial;
}
.merit__item-images.--item-img02 .merit__item-img {
  width: 19.6875rem;
}
@media (min-width: 768px) {
  .merit__item-images.--item-img02 .merit__item-img {
    width: 24.625rem;
  }
}
.merit__item-images.--item-img03 {
  margin-top: 1.25rem;
  display: block;
}
@media (min-width: 768px) {
  .merit__item-images.--item-img03 {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.merit__item-images.--item-img03 .merit__item-img {
  width: 19.6875rem;
  margin-top: -0.3125rem;
}
@media (min-width: 768px) {
  .merit__item-images.--item-img03 .merit__item-img {
    width: 11.875rem;
    margin-top: initial;
  }
}

.merit__item-img {
  width: 11.875rem;
}
.merit__item-img img {
  width: 100%;
  height: 100%;
}

.message {
  background: url(../images/common/message-bg-sp.jpg) no-repeat center center/cover;
  padding: 1.5625rem 1.25rem 2.1875rem;
}
@media (min-width: 768px) {
  .message {
    padding: 3.125rem 1.5rem 4.375rem;
    background: url(../images/common/message-bg.jpg) no-repeat center center/cover;
  }
}

.message__head {
  text-align: center;
}
.message__head p {
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .message__head p {
    font-size: 1.625rem;
  }
}
.message__head p::before, .message__head p::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  width: 0.9375rem;
  height: 1.09375rem;
}
@media (min-width: 768px) {
  .message__head p::before, .message__head p::after {
    width: 1.625rem;
    height: 1.875rem;
  }
}
.message__head p::before {
  background: url(../images/common/cta-accent-left.png) no-repeat center center/contain;
  left: -1.5625rem;
}
@media (min-width: 768px) {
  .message__head p::before {
    left: -2.1875rem;
  }
}
.message__head p::after {
  background: url(../images/common/cta-accent-right.png) no-repeat center center/contain;
  right: -1.5625rem;
}
@media (min-width: 768px) {
  .message__head p::after {
    right: -2.1875rem;
  }
}

.message__text {
  margin-top: 0.9375rem;
}
@media (min-width: 768px) {
  .message__text {
    margin-top: 1.875rem;
  }
}
.message__text p {
  text-align: center;
  background: #fff;
  padding: 0.3125rem;
  font-size: 1.1875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .message__text p {
    font-size: 2.5rem;
    padding: 0.625rem 1.25rem;
  }
}
.message__text p span {
  color: #CC0000;
}
.message__text p:nth-child(1) {
  width: 17.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .message__text p:nth-child(1) {
    width: 38.125rem;
  }
}
.message__text p:nth-child(2) {
  width: 11.625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .message__text p:nth-child(2) {
    width: 25.625rem;
  }
}
.message__text p:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .message__text p:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.search {
  background: url(../images/common/search-bg-sp.jpg) no-repeat center center/cover;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .search {
    background: url(../images/common/search-bg.jpg) no-repeat center center/cover;
    padding: 5rem 0;
  }
}

.search__text p {
  text-align: center;
  background: #fff;
  padding: 0.3125rem;
  font-size: 1.1875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .search__text p {
    font-size: 2.5rem;
    padding: 0.625rem 1.25rem;
  }
}
.search__text p span {
  color: #CC0000;
}
.search__text p:nth-child(1) {
  width: 13.75rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .search__text p:nth-child(1) {
    width: 30rem;
  }
}
.search__text p:nth-child(2) {
  width: 14.875rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .search__text p:nth-child(2) {
    width: 32.5rem;
  }
}
.search__text p:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .search__text p:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.search__head {
  margin-top: 1.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .search__head {
    margin-top: 3.75rem;
  }
}
.search__head p {
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .search__head p {
    font-size: 1.625rem;
  }
}
.search__head p::before, .search__head p::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  width: 0.9375rem;
  height: 1.09375rem;
}
@media (min-width: 768px) {
  .search__head p::before, .search__head p::after {
    width: 1.625rem;
    height: 1.875rem;
  }
}
.search__head p::before {
  background: url(../images/common/cta-accent-left.png) no-repeat center center/contain;
  left: -1.5625rem;
}
@media (min-width: 768px) {
  .search__head p::before {
    left: -2.1875rem;
  }
}
.search__head p::after {
  background: url(../images/common/cta-accent-right.png) no-repeat center center/contain;
  right: -1.5625rem;
}
@media (min-width: 768px) {
  .search__head p::after {
    right: -2.1875rem;
  }
}

.search__btn {
  margin-top: 1.25rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media (min-width: 768px) {
  .search__btn {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.search__btn a {
  width: 10.3125rem;
  max-width: 100%;
  display: inline-block;
  text-align: center;
  border-radius: 4.375rem;
  border: 0.125rem solid #fff;
  background: #FFE201;
  -webkit-box-shadow: 10px 10px 27px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 10px 10px 27px 0px rgba(0, 0, 0, 0.35);
  font-size: 1.3125rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 0.8125rem 0.75rem;
  position: relative;
  text-indent: -0.3125rem;
}
@media (min-width: 768px) {
  .search__btn a {
    width: 20.625rem;
    border-radius: 8.75rem;
    font-size: 1.875rem;
    padding: 1.0625rem 1.875rem;
    border: 0.1875rem solid #fff;
    text-indent: initial;
  }
}
.search__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  translate: 0 -50%;
  background: url(../images/common/cta-arrow.svg) no-repeat center center/contain;
  width: 0.5rem;
  height: 0.75rem;
}
@media (min-width: 768px) {
  .search__btn a::after {
    width: 0.625rem;
    height: 1rem;
    right: 1.875rem;
  }
}
/*# sourceMappingURL=style.css.map */
