@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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: inherit; /* 2 */
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  77% {
    left: -75%;
  }
  100% {
    left: 125%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
/* Layout
========================================== */
body {
  position: relative;
}

.bg {
  background: url(../img/pc_bg.png);
  background-size: 46px 67px;
  position: fixed;
  inset: 0;
}
.bg_slider div {
  padding-inline: 5px;
  width: 166px;
}
.bg_slider img {
  width: 100%;
  opacity: 0.42;
}
.bg_slider .slick-list {
  overflow: visible !important;
}
.bg_left_slider {
  margin-top: 30px;
  opacity: 0;
}
.bg_left_slider.slick-initialized {
  opacity: 1;
}
.bg_left_slider img {
  outline: none;
}
.bg_right_slider {
  margin-top: calc(100vh - 207px - 207px - 30px - 30px);
  opacity: 0;
}
.bg_right_slider.slick-initialized {
  opacity: 1;
}
.bg_right_slider img {
  outline: none;
}

.container {
  max-width: 500px;
  margin-inline: auto;
  background: #fcde82;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.container .flower {
  background: url(../img/bg.png) no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  width: 100%;
  height: 208px;
  position: absolute;
  top: 0;
  left: 0;
}

.gradation {
  background: linear-gradient(to bottom, #fcde82, #fef3d0);
}

.under_radius {
  background: #fde087;
  height: 40px;
  position: relative;
}
.under_radius::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fef3d0;
  border-bottom-left-radius: 50% 40px;
  border-bottom-right-radius: 50% 40px;
}

.result_under_radius {
  background: #f6d778;
  height: 40px;
  position: relative;
}
.result_under_radius::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fcde82;
  border-bottom-left-radius: 50% 40px;
  border-bottom-right-radius: 50% 40px;
}

/* Common
========================================== */
.mincho {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

.btn {
  max-width: 366.6666666667px;
  margin-inline: auto;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
}
.btn.wide {
  max-width: 433.3333333333px;
}
.btn a {
  -webkit-touch-callout: none;
  display: block;
  border-radius: 32px;
  width: 100%;
  background: #fff;
  text-align: center;
  height: 64px;
  line-height: 64px;
  font-size: 21.3333333333px;
  font-weight: 600;
  vertical-align: middle;
  box-shadow: 3.3333333333px 3.3333333333px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  box-sizing: border-box;
  outline: none;
}
.btn.type_blue a {
  color: #fff;
  border: 2px solid #01a0ca;
  line-height: 60px;
  background: #01a0ca;
}
.btn.type_blue a svg {
  width: 15.3333333333px;
  height: 14.6666666667px;
  position: absolute;
  top: 50%;
  right: 23.3333333333px;
  transform: translateY(-50%);
}
.btn.type_blue.hover_on a {
  transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .btn.type_blue.hover_on a:hover {
    color: #01a0ca;
    background: #fff;
    box-shadow: none;
  }
  .btn.type_blue.hover_on a:hover svg path {
    fill: #01a0ca;
  }
}
.btn.type_black a {
  background: #000;
  color: #fff;
}
.btn.type_black a:hover {
  opacity: 0.8;
}
.btn.type_yellow a {
  background: #fabe00;
}
.btn.type_yellow a:hover {
  opacity: 0.8;
}
.btn.sns_x a img {
  width: 38.6666666667px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 18.6666666667px;
  transform: translateY(-50%);
}
.btn.sns_officialx a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.sns_officialx a img {
  width: 38.6666666667px;
  height: 38.6666666667px;
  margin-right: 10px;
}
.btn.type_question_a a {
  color: #332405;
  line-height: 60px;
  background: #f5feff;
}
.btn.type_question_a a:hover {
  background: #e8fdff;
}
.btn.type_question_a a svg {
  width: 15.3333333333px;
  height: 14.6666666667px;
  position: absolute;
  top: 50%;
  right: 23.3333333333px;
  transform: translateY(-50%);
}
.btn.type_question_a a svg path {
  fill: #332405;
}
.btn.type_question_b a {
  color: #332405;
  line-height: 60px;
  background: #fff5f8;
}
.btn.type_question_b a:hover {
  background: #ffecf2;
}
.btn.type_question_b a svg {
  width: 15.3333333333px;
  height: 14.6666666667px;
  position: absolute;
  top: 50%;
  right: 23.3333333333px;
  transform: translateY(-50%);
}
.btn.type_question_b a svg path {
  fill: #332405;
}

/* Header
========================================== */
.header__cnt {
  overflow: hidden;
}
.header h1 {
  text-align: center;
  padding-top: 41.3333333333px;
  margin-bottom: 33.3333333333px;
}
.header h1 img {
  width: 307.3333333333px;
  height: 145.3333333333px;
}

/* Lead
========================================== */
.lead {
  padding-top: 3.3333333333px;
  margin-bottom: 26.6666666667px;
}
.lead h2 {
  font-size: 26.6666666667px;
  font-weight: 500;
  color: #332405;
  text-align: center;
  margin-bottom: 13.3333333333px;
}
.lead h2 + p {
  font-size: 18.6666666667px;
  line-height: 33.3333333333px;
  font-weight: 400;
  text-align: center;
  color: #332405;
  margin-bottom: 20px;
}
.lead__startbtn {
  margin-bottom: 73.3333333333px;
}
.lead h3 {
  font-size: 24px;
  line-height: 43.3333333333px;
  color: #332405;
  text-align: center;
  font-weight: 500;
  margin-bottom: 13.3333333333px;
}
.lead h3 span {
  font-size: 17.3333333333px;
  line-height: 1;
  display: block;
}

/* Campaign
========================================== */
.campaign {
  padding: 161.3333333333px 33.3333333333px 0;
}
.campaign__inner {
  background: #f3a000;
  border-top-left-radius: 217.3333333333px;
  border-top-right-radius: 217.3333333333px;
  padding-top: 217.3333333333px;
  padding-bottom: 73.3333333333px;
  position: relative;
}
.campaign__image img {
  position: absolute;
  box-shadow: 6.6666666667px 6.6666666667px 11.3333333333px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 1s;
}
.campaign__image_01 {
  left: -22.6666666667px;
  top: -86.6666666667px;
  width: 224.6666666667px;
  transform: rotate(-9deg);
  transform-origin: right top;
}
.campaign__image_01.active {
  top: -126.6666666667px;
  transform: rotate(-11deg);
  opacity: 1;
}
.campaign__image_02 {
  right: -25.3333333333px;
  top: -111.3333333333px;
  width: 224.6666666667px;
  transform: rotate(8deg);
  transform-origin: left top;
}
.campaign__image_02.active {
  top: -151.3333333333px;
  transform: rotate(10deg);
  opacity: 1;
}
.campaign h2 {
  text-align: center;
  padding-top: 48px;
  margin-bottom: 53.3333333333px;
}
.campaign h2 img {
  width: 187.3333333333px;
  height: auto;
}
.campaign__lead {
  font-feature-settings: "palt";
  text-align: center;
  font-size: 24px;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #fff;
  line-height: 49.3333333333px;
  margin-bottom: 33.3333333333px;
}
.campaign__lead .size_M {
  font-size: 32.6666666667px;
}
.campaign__lead .size_LLL {
  font-size: 56px;
}
.campaign__lead .size_LL {
  font-size: 42.6666666667px;
}
.campaign__lead .size_L {
  font-size: 38.6666666667px;
}
.campaign__lead .shorten {
  letter-spacing: -0.08em;
}
.campaign__lead .yellow {
  color: #fff000;
}
.campaign dl {
  margin-inline: 33.3333333333px;
  color: #fff;
}
.campaign dl dt {
  background: #e86400;
  line-height: 44px;
  text-align: center;
  font-size: 21.3333333333px;
  font-weight: 500;
}
.campaign dl dd {
  margin-top: 13.3333333333px;
  font-size: 18.6666666667px;
  line-height: 33.3333333333px;
  margin-bottom: 54.6666666667px;
}
.campaign dl dd a {
  text-decoration: underline;
}
.campaign dl dd ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.campaign dl dd:last-child {
  margin-bottom: 0;
}
.campaign dl dt.accordion {
  position: relative;
  cursor: pointer;
}
.campaign dl dt.accordion:hover {
  opacity: 0.8;
}
.campaign dl dt.accordion::before {
  content: "";
  height: 21.3333333333px;
  width: 1px;
  position: absolute;
  background: #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.campaign dl dt.accordion::after {
  content: "";
  width: 21.3333333333px;
  height: 1px;
  position: absolute;
  background: #fff;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.campaign dl dt.accordion.open::before {
  display: none;
}
.campaign dl dt.accordion + dd .accordion_child {
  padding-top: 6.6666666667px;
  display: none;
}

/* Recommend
========================================== */
.recommend {
  padding-top: 73.3333333333px;
  padding-bottom: 250px;
  overflow: hidden;
}
.recommend h3 {
  text-align: center;
  margin-bottom: 33.3333333333px;
}
.recommend h3 img {
  width: 376px;
}
.recommend_slider {
  width: 240px;
  margin-inline: auto;
  margin-bottom: 53.3333333333px;
}
.recommend_slider .slick-list {
  overflow: visible !important;
}
.recommend_slider__img {
  padding: 0 13.3333333333px;
  box-sizing: border-box;
}
.recommend_slider__img img {
  width: 100%;
  height: auto;
  box-shadow: 6.6666666667px 6.6666666667px 11.3333333333px rgba(0, 0, 0, 0.1);
}

/* Footer
========================================== */
.footer {
  padding: 168px 33.3333333333px 0;
  position: relative;
}
.footer__image img {
  position: absolute;
  box-shadow: 6.6666666667px 6.6666666667px 11.3333333333px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 1s;
}
.footer__image_01 {
  left: 28.6666666667px;
  top: -154.6666666667px;
  width: 196px;
  transform: rotate(-7.63deg);
  transform-origin: right top;
}
.footer__image_01.active {
  top: -194.6666666667px;
  transform: rotate(-9.63deg);
  opacity: 1;
}
.footer__image_02 {
  right: 41.3333333333px;
  top: -178px;
  width: 198.6666666667px;
  transform: rotate(8.18deg);
  transform-origin: left top;
}
.footer__image_02.active {
  top: -218px;
  transform: rotate(10.18deg);
  opacity: 1;
}
.footer__image_03 {
  right: 138.6666666667px;
  top: -123.3333333333px;
  width: 198.6666666667px;
  transform: rotate(1.69deg);
  transform-origin: left top;
}
.footer__image_03.active {
  top: -163.3333333333px;
  transform: rotate(3.69deg);
  opacity: 1;
}
.footer__bnr {
  margin-bottom: 26.6666666667px;
}
.footer__bnr a {
  display: block;
  margin-bottom: 9.3333333333px;
  background: #fff;
}
.footer__bnr a:last-child {
  margin-bottom: 0;
}
.footer__bnr a img {
  width: 100%;
  vertical-align: bottom;
}
.footer__bnr a:hover img {
  opacity: 0.8;
}
.footer__copy {
  padding-block: 100px;
}
.footer__copy p {
  text-align: center;
  font-size: 16px;
  line-height: 25.3333333333px;
  margin-bottom: 16.6666666667px;
}
.footer__copy p:last-child {
  margin-bottom: 0;
}
.footer-page {
  padding-block: 22.6666666667px;
}
.footer-page__copy p {
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

/* Question
========================================== */
.question__cnt__inner {
  padding-top: 46.6666666667px;
  padding-bottom: 193.3333333333px;
}
.question__cnt__label {
  margin-bottom: 40px;
  text-align: center;
}
.question__cnt__label img {
  height: 34.6666666667px;
  width: auto;
}
.question__cnt__title {
  text-align: center;
  font-size: 21.3333333333px;
  color: #332405;
  font-weight: 400;
  margin-bottom: 80px;
}
.question__cnt__select__a {
  margin-bottom: 23.3333333333px;
}

#diagnosis {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fcde82;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}
#diagnosis.active {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s;
}
#diagnosis_rap {
  padding-block: 80px;
}
#diagnosis_rap img {
  width: 130px;
  height: auto;
  margin-bottom: 33.3333333333px;
}
#diagnosis p {
  font-size: 24px;
  line-height: 38.6666666667px;
  color: #332405;
  margin-bottom: 21.3333333333px;
}
#diagnosis_bar {
  width: 164.6666666667px;
  height: 3px;
  background: #fff;
  margin-inline: auto;
  margin-bottom: 13.3333333333px;
  position: relative;
  overflow: hidden;
}
#diagnosis_bar span {
  width: 100%;
  height: 3px;
  background: #f3a000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
#diagnosis_number {
  font-size: 18.6666666667px;
  line-height: 30px;
  color: #332405;
}
#diagnosis .diagnosis_books {
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  height: 100vw;
}
#diagnosis .diagnosis_books img {
  width: 591.3333333333px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Result
========================================== */
.result_headline {
  color: #332405;
  padding-top: 73.3333333333px;
  text-align: center;
  font-size: 21.3333333333px;
  font-weight: 500;
  line-height: 0.6666666667px;
  padding-bottom: 36.6666666667px;
  background: url(../img/line_result_headline.png) center bottom no-repeat;
  background-size: 314px auto;
}

.result {
  padding-top: 26.6666666667px;
}
.result__lead {
  font-size: 32px;
  line-height: 51.2px;
  color: #332405;
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
  padding-inline: 10px;
}
.result__lead.small_lead {
  font-size: 30px;
  line-height: 45.3333333333px;
}
.result__lead.after_line::after {
  content: "";
  width: 56.6666666667px;
  height: 2px;
  display: inline-block;
  background: #332405;
  margin: 0 0 13.3333333333px 6.6666666667px;
}
.result__img {
  width: 326.6666666667px;
  height: auto;
  display: block;
  margin-inline: auto;
  box-shadow: 6.6666666667px 6.6666666667px 11.3333333333px rgba(0, 0, 0, 0.1);
  margin-bottom: 33.3333333333px;
}
.result__link {
  margin-bottom: 54.6666666667px;
}
.result__link ul {
  margin: 0 33.3333333333px;
  display: flex;
  gap: 26.6666666667px;
}
.result__link ul li {
  width: 100%;
}
.result__link ul li a {
  display: block;
  height: 64px;
  line-height: 1;
  font-size: 21.3333333333px;
  font-weight: 600;
  text-align: center;
  border-radius: 32px;
  box-shadow: 2.6666666667px 2.6666666667px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 23.3333333333px;
}
.result__link ul li a::before {
  content: "";
  display: inline-block;
}
.result__link ul li.view_btn a {
  color: #fff;
  background: #f3a000;
}
.result__link ul li.view_btn a:hover {
  background: #e59900;
}
.result__link ul li.view_btn a::before {
  background: url(../img/icon_view.png) no-repeat;
  background-size: 21.3333333333px 21.3333333333px;
  width: 21.3333333333px;
  height: 21.3333333333px;
}
.result__link ul li.read_btn a {
  background: #fabe00;
  color: #332405;
}
.result__link ul li.read_btn a:hover {
  background: #ecb500;
}
.result__link ul li.read_btn a::before {
  background: url(../img/icon_read.png) no-repeat;
  background-size: 22px 22px;
  width: 22px;
  height: 22px;
}
.result__detail {
  margin: 0 33.3333333333px;
  margin-bottom: 33.3333333333px;
}
.result__detail h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 13.3333333333px;
  color: #332405;
}
.result__detail h1 span {
  font-size: 18.6666666667px;
  display: block;
}
.result__detail__name {
  font-size: 18.6666666667px;
  line-height: 30px;
  color: #332405;
  border-bottom: 1px solid #f3a000;
  padding-bottom: 10px;
  margin-bottom: 13.3333333333px;
}
.result__detail__name span {
  margin-right: 20px;
  display: inline-block;
}
.result__detail__name span:last-child {
  margin-right: 0;
}
.result__detail__price {
  font-size: 18.6666666667px;
  color: #332405;
  line-height: 30px;
  margin-bottom: 30px;
}
.result__detail__price strong {
  font-weight: 500;
}
.result__detail__price span {
  font-size: 32px;
}
.result__detail__text {
  font-size: 18.6666666667px;
  color: #332405;
  line-height: 30px;
}
.result__outside_link {
  background: #f6d778;
  padding: 50px 0 70px;
}
.result__outside_link ul {
  margin: 0 33.3333333333px;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.result__outside_link ul:last-child {
  margin-bottom: 0;
}
.result__outside_link ul li {
  width: 100%;
}
.result__outside_link ul li a {
  box-shadow: 2px 2px 2.6666666667px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 10px;
  height: 71.3333333333px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18.6666666667px;
  color: #332405;
  font-weight: 600;
}
.result__outside_link ul li a:hover {
  background: rgba(255, 255, 255, 0.8);
}
.result__share {
  background: url(../img/bg_share.png) no-repeat;
  background-size: cover;
  height: 376.6666666667px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.result__share p {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.result__retry {
  padding: 60px 0 266.6666666667px;
}

/* 終了 */
.campaign {
  position: relative;
}
.campaign__lead {
  line-height: 44px;
}

.bnr__closed {
  position: absolute;
  top: 584px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: url(../img/pc_bg.png);
  padding-block: 45.3333333333px;
  border-top: 8px solid #9a6500;
  border-bottom: 8px solid #9a6500;
}
.bnr__closed::before, .bnr__closed::after {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  background: #fff;
}
.bnr__closed::before {
  top: 0;
}
.bnr__closed::after {
  bottom: 0;
}
.bnr__closed span {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #6a4600;
  line-height: 1;
}
.bnr__closed__middle {
  letter-spacing: -0.05em;
  font-size: 42.6666666667px;
  margin-bottom: 6.6666666667px;
}
.bnr__closed__large {
  font-size: 70.6666666667px;
  letter-spacing: -0.1em;
  margin-bottom: 20px;
}
.bnr__closed__small {
  font-size: 24px;
}

@media screen and (max-width: 500px) {
  .pc_only {
    display: none !important;
  }
  /* Layout
  ========================================== */
  .bg_left_slider {
    display: none;
  }
  .bg_right_slider {
    display: none;
  }
  .container .flower {
    height: 41.6vw;
  }
  .container .under_radius {
    height: 8vw;
  }
  .container .under_radius::after {
    border-bottom-left-radius: 50% 8vw;
    border-bottom-right-radius: 50% 8vw;
  }
  /* Common
  ========================================== */
  .btn {
    max-width: 73.3333333333vw;
    border-radius: 6.4vw;
  }
  .btn.wide {
    max-width: 86.6666666667vw;
  }
  .btn a {
    border-radius: 6.4vw;
    height: 12.8vw;
    line-height: 12.8vw;
    font-size: 4.2666666667vw;
    box-shadow: 0.6666666667vw 0.6666666667vw 0.4vw rgba(0, 0, 0, 0.2);
  }
  .btn.type_blue a {
    border: 0.4vw solid #01a0ca;
    line-height: 12vw;
  }
  .btn.type_blue a svg {
    width: 3.0666666667vw;
    height: 2.9333333333vw;
    right: 4.6666666667vw;
    transform: translateY(-50%);
  }
  .btn.sns_x a img {
    width: 7.7333333333vw;
    left: 3.7333333333vw;
  }
  .btn.sns_officialx a img {
    width: 7.7333333333vw;
    height: 7.7333333333vw;
    margin-right: 2vw;
  }
  .btn.type_question_a a {
    line-height: 12vw;
  }
  .btn.type_question_a a svg {
    width: 3.0666666667vw;
    height: 2.9333333333vw;
    right: 4.6666666667vw;
  }
  .btn.type_question_b a {
    line-height: 12vw;
  }
  .btn.type_question_b a svg {
    width: 3.0666666667vw;
    height: 2.9333333333vw;
    right: 4.6666666667vw;
  }
  /* Header
  ========================================== */
  .header h1 {
    padding-top: 8.2666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .header h1 img {
    width: 61.4666666667vw;
    height: 29.0666666667vw;
  }
  /* Lead
  ========================================== */
  .lead {
    padding-top: 0.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .lead h2 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .lead h2 + p {
    font-size: 3.7333333333vw;
    line-height: 6.6666666667vw;
    margin-bottom: 4vw;
  }
  .lead__startbtn {
    margin-bottom: 14.6666666667vw;
  }
  .lead h3 {
    font-size: 4.8vw;
    line-height: 8.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .lead h3 span {
    font-size: 3.4666666667vw;
  }
  /* Campaign
  ========================================== */
  .campaign {
    padding: 32.2666666667vw 6.6666666667vw 0;
  }
  .campaign__inner {
    border-top-left-radius: 43.4666666667vw;
    border-top-right-radius: 43.4666666667vw;
    padding-top: 43.4666666667vw;
    padding-bottom: 14.6666666667vw;
  }
  .campaign__image img {
    box-shadow: 2.6666666667vw 2.6666666667vw 1.3333333333vw rgba(0, 0, 0, 0.1);
  }
  .campaign__image_01 {
    left: -4.5333333333vw;
    top: -17.3333333333vw;
    width: 44.9333333333vw;
  }
  .campaign__image_01.active {
    top: -25.3333333333vw;
  }
  .campaign__image_02 {
    right: -5.0666666667vw;
    top: -22.2666666667vw;
    width: 44.9333333333vw;
  }
  .campaign__image_02.active {
    top: -30.2666666667vw;
  }
  .campaign h2 {
    padding-top: 9.6vw;
    margin-bottom: 10.6666666667vw;
  }
  .campaign h2 img {
    width: 37.4666666667vw;
  }
  .campaign__lead {
    font-size: 4.8vw;
    line-height: 9.8666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .campaign__lead .size_M {
    font-size: 6.5333333333vw;
  }
  .campaign__lead .size_LLL {
    font-size: 11.2vw;
  }
  .campaign__lead .size_LL {
    font-size: 8.5333333333vw;
  }
  .campaign__lead .size_L {
    font-size: 7.7333333333vw;
  }
  .campaign dl {
    margin-inline: 6.6666666667vw;
  }
  .campaign dl dt {
    line-height: 8.8vw;
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .campaign dl dd {
    font-size: 3.7333333333vw;
    line-height: 6.6666666667vw;
    margin-bottom: 10.9333333333vw;
  }
  .campaign dl dt.accordion::before {
    height: 4.2666666667vw;
    right: 4vw;
  }
  .campaign dl dt.accordion::after {
    width: 4.2666666667vw;
    right: 2vw;
  }
  .campaign dl dt.accordion + dd .accordion_child {
    padding-top: 1.3333333333vw;
  }
  /* Recommend
  ========================================== */
  .recommend {
    padding-top: 14.6666666667vw;
    padding-bottom: 50vw;
  }
  .recommend h3 {
    margin-bottom: 6.6666666667vw;
  }
  .recommend h3 img {
    width: 75.2vw;
  }
  .recommend_slider {
    width: 48vw;
    margin-bottom: 10.6666666667vw;
  }
  .recommend_slider__img {
    padding: 0 2.6666666667vw;
  }
  .recommend_slider__img img {
    box-shadow: 2.6666666667vw 2.6666666667vw 1.3333333333vw rgba(0, 0, 0, 0.1);
  }
  /* Footer
  ========================================== */
  .footer {
    padding: 33.6vw 6.6666666667vw 0;
  }
  .footer__image img {
    box-shadow: 2.6666666667vw 2.6666666667vw 1.3333333333vw rgba(0, 0, 0, 0.1);
  }
  .footer__image_01 {
    left: 5.7333333333vw;
    top: -30.9333333333vw;
    width: 39.2vw;
  }
  .footer__image_01.active {
    top: -38.9333333333vw;
  }
  .footer__image_02 {
    right: 8.2666666667vw;
    top: -35.6vw;
    width: 39.7333333333vw;
  }
  .footer__image_02.active {
    top: -43.6vw;
  }
  .footer__image_03 {
    right: 27.7333333333vw;
    top: -24.6666666667vw;
    width: 39.7333333333vw;
  }
  .footer__image_03.active {
    top: -32.6666666667vw;
  }
  .footer__bnr {
    margin-bottom: 5.3333333333vw;
  }
  .footer__bnr a {
    display: block;
    margin-bottom: 1.8666666667vw;
  }
  .footer__copy {
    padding-block: 20vw;
  }
  .footer__copy p {
    font-size: 3.2vw;
    line-height: 5.0666666667vw;
    margin-bottom: 3.3333333333vw;
  }
  .footer-page {
    padding-block: 4.5333333333vw;
  }
  .footer-page__copy p {
    font-size: 3.2vw;
  }
  /* Question
  ========================================== */
  .question_wrap .container {
    height: 100svh;
  }
  .question__cnt__inner {
    padding-top: 9.3333333333vw;
    padding-bottom: 38.6666666667vw;
  }
  .question__cnt__label {
    margin-bottom: 8vw;
  }
  .question__cnt__label img {
    height: 6.9333333333vw;
  }
  .question__cnt__title {
    font-size: 4.2666666667vw;
    margin-bottom: 16vw;
  }
  .question__cnt__select__a {
    margin-bottom: 4.6666666667vw;
  }
  #diagnosis_rap {
    padding-block: 16vw;
  }
  #diagnosis_rap img {
    width: 26vw;
    margin-bottom: 6.6666666667vw;
  }
  #diagnosis p {
    font-size: 4.8vw;
    line-height: 7.7333333333vw;
    margin-bottom: 4.2666666667vw;
  }
  #diagnosis_bar {
    width: 32.9333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  #diagnosis_number {
    font-size: 3.7333333333vw;
    line-height: 6vw;
  }
  #diagnosis .diagnosis_books img {
    width: 118.2666666667vw;
  }
  /* Result
  ========================================== */
  .result_headline {
    padding-top: 14.6666666667vw;
    font-size: 4.2666666667vw;
    line-height: 0.1333333333vw;
    padding-bottom: 7.3333333333vw;
    background-size: 62.8vw auto;
  }
  .result {
    padding-top: 5.3333333333vw;
  }
  .result__lead {
    font-size: 6.4vw;
    line-height: 10.24vw;
    margin-bottom: 10vw;
  }
  .result__lead.after_line::after {
    width: 11.3333333333vw;
    margin: 0 0 2.6666666667vw 1.3333333333vw;
  }
  .result__img {
    width: 65.3333333333vw;
    box-shadow: 1.3333333333vw 1.3333333333vw 2.2666666667vw rgba(0, 0, 0, 0.1);
    margin-bottom: 6.6666666667vw;
  }
  .result__link {
    margin-bottom: 10.9333333333vw;
  }
  .result__link ul {
    margin: 0 6.6666666667vw;
    gap: 5.3333333333vw;
  }
  .result__link ul li a {
    height: 12.8vw;
    font-size: 4.2666666667vw;
    border-radius: 6.4vw;
    box-shadow: 0.5333333333vw 0.5333333333vw 0.4vw rgba(0, 0, 0, 0.2);
    gap: 4vw;
    padding-left: 4.6666666667vw;
  }
  .result__link ul li.view_btn a::before {
    background-size: 4.2666666667vw 4.2666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  .result__link ul li.read_btn a::before {
    background-size: 4.4vw 4.4vw;
    width: 4.4vw;
    height: 4.4vw;
  }
  .result__detail {
    margin: 0 6.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .result__detail h1 {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
  .result__detail h1 span {
    font-size: 3.7333333333vw;
  }
  .result__detail__name {
    font-size: 3.7333333333vw;
    line-height: 6vw;
    padding-bottom: 2vw;
    margin-bottom: 2.6666666667vw;
  }
  .result__detail__name span {
    margin-right: 4vw;
  }
  .result__detail__price {
    font-size: 3.7333333333vw;
    line-height: 6vw;
    margin-bottom: 6vw;
  }
  .result__detail__price span {
    font-size: 6.4vw;
  }
  .result__detail__text {
    font-size: 3.7333333333vw;
    line-height: 6vw;
  }
  .result__outside_link {
    padding: 10vw 0 14vw;
  }
  .result__outside_link ul {
    margin: 0 6.6666666667vw;
    gap: 6vw;
    margin-bottom: 4vw;
  }
  .result__outside_link ul li a {
    box-shadow: 0.4vw 0.4vw 0.5333333333vw rgba(0, 0, 0, 0.1);
    border-radius: 2vw;
    height: 14.2666666667vw;
    font-size: 3.7333333333vw;
  }
  .result__share {
    height: 75.3333333333vw;
    margin-bottom: 12vw;
  }
  .result__share p {
    font-size: 6.4vw;
    margin-bottom: 4vw;
  }
  .result__retry {
    padding: 12vw 0 53.3333333333vw;
  }
  /* 終了 */
  .bnr__closed {
    top: 117.3333333333vw;
    padding-block: 12vw;
    border-top: 1.0666666667vw solid #9a6500;
    border-bottom: 1.0666666667vw solid #9a6500;
  }
  .bnr__closed::before, .bnr__closed::after {
    height: 1.0666666667vw;
  }
  .bnr__closed__middle {
    font-size: 8.5333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .bnr__closed__large {
    font-size: 14.1333333333vw;
    margin-bottom: 4vw;
  }
  .bnr__closed__small {
    font-size: 4.8vw;
  }
}
@keyframes shine {
  0% {
    left: -75%;
  }
  77% {
    left: -75%;
  }
  100% {
    left: 125%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}

/*# sourceMappingURL=style.css.map */
