@charset "UTF-8";

body {
  background-image: none;
  background-color: #fff;
}

.footer__support {
  margin-top: 40px;
}

/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  .sp_design {
    display: none;
  }
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  .pc_design {
    display: none;
  }
}

/*
  フォントサイズ
*/
/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  :root {
    --fs-heading: 32px;
    --fs-catch: 26px;
    --fs-catch-s: 21px;
    --fs-text: 17px;
    --fs-text-s: 15px;
    --fs-text-note: 13px;
  }
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  :root {
    --fs-heading: 28px;
    --fs-catch: 23px;
    --fs-catch-s: 20px;
    --fs-text: 16px;
    --fs-text-s: 14px;
    --fs-text-note: 10px;
  }
}

/*
  ボタン
*/
/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  .shinki-btn {
    --btn-width: 225px;
  }
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  .shinki-btn {
    --btn-width: 225px;
  }
}

.shinki-btn {
  --primary-color: #76952F;
  --secondary-color: #F5A32D;
  --tertiary-color: #CFAA6E;

  display: inline-flex;
  min-width: var(--btn-width);
  width: max-content;
  min-height: 48px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 18px;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  background: #c90000;
}

.shinki-btn__label {
  font-size: 19px;
  color: #fff;
  flex: 1;
  text-align: center;
}

.shinki-btn::after {
  --triangle-size: 7px;

  content: '';
  display: block;
  background: #ffffff;
  height: calc(tan(70deg) * var(--triangle-size) / 2);
  width: var(--triangle-size);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin: 0 0 0 10px;
}

/* Primary */
.shinki-btn.primary,
.shinki-btn.primary-anchor-button,
.shinki-btn.primary-outline::after,
.shinki-btn.primary-text::after {
  background-color: var(--primary-color);
}

.shinki-btn.primary-anchor-button::after {
  width: calc(tan(70deg) * var(--triangle-size) / 2);
  height: var(--triangle-size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.shinki-btn.primary-outline-blank::after {
  display: none;
}

.shinki-btn.primary-outline,
.shinki-btn.primary-outline-blank {
  border: 2px solid var(--primary-color);
  background-color: #fff;
}

.shinki-btn.primary-outline .shinki-btn__label,
.shinki-btn.primary-text .shinki-btn__label,
.shinki-btn.primary-outline-blank .shinki-btn__label {
  color: var(--primary-color);
}

.shinki-btn.primary-text {
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.shinki-btn.primary-text .shinki-btn__label {
  font-size: var(--fs-text);
  margin-left: 0;
}

.shinki-btn.primary-text.shinki-btn::after {
  margin-right: 0;
}

/* Secondary */
.shinki-btn.secondary,
.shinki-btn.secondary-anchor-button,
.shinki-btn.secondary-outline::after {
  background-color: var(--secondary-color);
}

.shinki-btn.secondary-anchor-button::after {
  width: calc(tan(70deg) * var(--triangle-size) / 2);
  height: var(--triangle-size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.shinki-btn.secondary-outline {
  border: 2px solid var(--secondary-color);
  background-color: #fff;
}

.shinki-btn.secondary-outline .shinki-btn__label {
  color: var(--secondary-color);
}

/* Tertiary */
.shinki-btn.tertiary,
.shinki-btn.tertiary-anchor-button,
.shinki-btn.tertiary-outline::after {
  background-color: var(--tertiary-color);
}

.shinki-btn.tertiary-anchor-button::after {
  width: calc(tan(70deg) * var(--triangle-size) / 2);
  height: var(--triangle-size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.shinki-btn.tertiary-outline {
  border: 2px solid var(--tertiary-color);
  background-color: #fff;
}

.shinki-btn.tertiary-outline .shinki-btn__label {
  color: var(--tertiary-color);
}

/*
  タイトル
*/
.otameshi-welcome__secion {
  margin-top: 50px;
}

.otameshi-welcome__title {
  --primary-color: #76952F;
  --secondary-color: #F5A32D;

  display: flex;
  flex-direction: column;
}

.otameshi-welcome__title i {
  width: 100%;
  height: 30px;
  position: relative;
  overflow: hidden;
}

.otameshi-welcome__title i::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 200%;
  height: 200px;
  border-radius: 50% / 100% 100% 0 0;
  transform: translateX(-25%);
}

.otameshi-welcome__title-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 15px 0 40px;
  font-size: var(--fs-heading);
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (min-width: 750px) {
  .otameshi-welcome__title-label {
    height: 125px;
  }
}

.otameshi-welcome__title i::before,
.otameshi-welcome__title.-primary .otameshi-welcome__title-label {
  background-color: var(--primary-color);
}

.otameshi-welcome__lead {
  margin: 30px 25px;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}

.otameshi-welcome__annotation {
  margin: 20px;
  line-height: 1.5;
  font-size: var(--fs-text-note);
}

/* CTA */
.otameshi-welcome__cta-link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* 新規トップ */
.otameshi-welcome__top {
  background: #f5eee3;
}

.otameshi-welcome__hero {
  background: #fff;
  padding-bottom: 10px;
}

.otameshi-welcome__main {
  margin-bottom: 6%;
}

.otameshi-welcome__main-mv-btn {
  min-width: 320px;
  margin-top: -9%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-container-hero.swiper-container {
  padding-bottom: 40px;
}

.swiper-container-hero.swiper-container .swiper-pagination {
  bottom: 10px;
}

.swiper-container-hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  border: 1px solid #aaa;
}

.swiper-container-hero .swiper-pagination-bullet-active {
  background: #aaa;
}

.js-swiper-hero-thumbnail .swiper-wrapper {
  justify-content: center;
}

.js-swiper-hero-thumbnail .swiper-slide {
  opacity: .5;
  margin: 0 5px;
}

/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  .js-swiper-hero-thumbnail .swiper-slide {
    width: 100px;
  }
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  .js-swiper-hero-thumbnail .swiper-slide {
    width: 50px;
  }
}

.js-swiper-hero-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.otameshi-welcome__main-title {
  margin: 40px 25px 0;
  font-size: var(--fs-catch);
  line-height: 1.5;
  text-align: center;
}

.otameshi-welcome__top-lead {
  margin: 30px 25px;
  font-size: var(--fs-text);
  line-height: 1.8;
  text-align: center;
}

.otameshi-welcome__main-cta {
  margin-top: 30px;
  position: relative;
}

.otameshi-welcome__main-cta .shinki-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* サービス紹介 */
.shinki-product__service {
  margin: 0 25px;
}

.shinki-product__service-flow {
  padding: 50px 25px;
  background: #F2F3E4;
}

.shinki-product__service-flow-item {
  background: #fff;
  margin: 0 0 75px;
  padding: 40px 25px;
  position: relative;
}

.shinki-product__service-flow-item:nth-last-child(1) {
  margin-bottom: 0;
}

.shinki-product__service-flow-item:not(:nth-last-child(1))::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.shinki-product__service-flow-item h3 {
  position: relative;
  text-align: center;
  font-size: var(--fs-catch-s);
  line-height: 1.7;
  margin: 0 -20px;
}

.shinki-product__service-flow-item h3 img {
  position: absolute;
  top: -63px;
  left: 50%;
  transform: translateX(-50%);
}

.shinki-product__service-flow-img {
  margin: 30px 0;
  text-align: center;
}

.shinki-product__service-flow-description {
  margin-top: 30px;
  font-size: var(--fs-text);
  line-height: 1.7;
}

.shinki-product__service-lead {
  padding: 30px 25px;
  font-size: var(--fs-text);
  line-height: 1.7;
  text-align: center;
  background: #fff;
}

.shinki-product__service-annotation {
  display: block;
  margin-top: 20px;
  font-size: var(--fs-text-note);
  line-height: 1.5;
  text-align: left;
}

.shinki-product__service-course {
  padding: 1px 20px;
  background: #fff;
}

.shinki-product__service-course-title h3 {
  font-size: var(--fs-text);
  line-height: 1.7;
  text-align: center;
  font-weight: normal;
}

.shinki-product__service-course-title:not(:nth-of-type(1)) h3 {
  margin-top: 30px;
}

.shinki-product__service-course-title h3 strong {
  display: block;
  margin-bottom: 3px;
  font-size: var(--fs-catch);
}

.shinki-product__service-course-description img {
  margin: 30px 0;
}

.shinki-product__service-point {
  background: #F2F3E4;
  padding: 1px 25px 40px;
}

.shinki-product__service-point-item {
  margin: 40px 0 0;
}

.shinki-product__service-point-item-title {
  font-size: var(--fs-catch);
  line-height: 1.7;
  text-align: center;
}

.shinki-product__service-point-item-title span {
  display: block;
  font-size: var(--fs-catch);
  color: #76952F;
  font-weight: bold;
}

.shinki-product__service-point-item-description {
  margin: 20px 25px;
  font-size: var(--fs-text);
  line-height: 1.7;
  text-align: center;
}

/* お客さまインタビュー */
.swiper-container.swiper-container-interview {
  overflow: hidden;
  padding: 0 10px;
}

.swiper-container-interview.swiper-container {
  padding-bottom: 40px;
}

.swiper-container-interview.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-container-interview .swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-container-interview.swiper-container .swiper-slide {
  height: auto;
  ;
}

.swiper-container-interview.swiper-container .swiper-slide .otameshi-interview-item {
  height: 100%;
}

.swiper-container-interview .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  border: 1px solid #aaa;
}

.swiper-container-interview .swiper-pagination-bullet-active {
  background: #aaa;
}

.otameshi-interview-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.otameshi-interview-item-img {
  position: relative;
}

.otameshi-interview-item-img figcaption {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
  color: #fff;
  padding: 8px;
  font-size: var(--fs-text);
  text-align: center;
  box-sizing: border-box;
}

.otameshi-interview-item__desctiption {
  font-size: var(--fs-text);
  line-height: 1.5;
  text-align: left;
  margin-top: 20px;
  flex: 1;
}

.otameshi-interview-item__user-name {
  text-align: left;
  font-size: var(--fs-text-s);
  margin-top: 20px;
}

.shinki-interview-top {
  margin: 25px 25px 50px;
}

.shinki-interview-top__item {
  margin-top: 40px;
}

.shinki-interview-top__item-title {
  margin-top: 20px;
  font-size: var(--fs-catch);
  line-height: 1.5;
}

.shinki-interview-top__item-user-name {
  font-size: var(--fs-text);
  line-height: 1.7;
}

.shinki-interview-top__item-description {
  margin-top: 20px;
  font-size: var(--fs-text);
  line-height: 1.7;
}

.shinki-interview-page {
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d9d9d9;
}

.shinki-interview-page__title {
  font-size: 24px;
  line-height: 1.5;
  margin: 20px 25px;
  text-align: center;
}

.shinki-interview-page__title span {
  display: block;
  font-size: var(--fs-text);
  line-height: 1.8;
}

.shinki-interview-page__content {
  margin: 30px 25px;
}

.shinki-interview-page__content p {
  margin-top: 20px;
  font-size: var(--fs-text);
  line-height: 1.8;
}

.shinki-interview-page__content figure {
  margin-top: 30px;
}

.shinki-interview-page__profile {
  margin-top: 30px;
  padding: 20px;
  background: #F4F4F4;
}

.shinki-interview-page__profile dt,
.shinki-interview-page__profile dd {
  font-size: var(--fs-text);
  line-height: 1.8;
}

.shinki-interview-page__profile dt {
  margin-bottom: 10px;
}

.shinki-interview-aside__title {
  margin-top: 20px;
  font-size: var(--fs-catch);
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.otameshi-welcome__secion-faq {
  background: #f5eee3;
  padding: 40px 20px;
}

.otameshi-welcome__faq-title {
  font-size: var(--fs-heading);
  text-align: center;
  line-height: 1.5;
}

.otameshi-welcome__faq-list {
  margin-top: 35px;
}

.otameshi-welcome__faq-item dt,
.otameshi-welcome__faq-item dd {
  display: flex;
  align-items: start;
  padding: 20px 0;
}

.otameshi-welcome__faq-item dt {
  border-bottom: 2px #c9a063 solid;
}

.otameshi-welcome__faq-item dt i {
  content: '';
  display: block;
  background: #c9a063;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  margin-top: 3px;
}

.otameshi-welcome__faq-item dt i::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -66%) rotate(135deg);
}

.otameshi-welcome__faq-item dt.close i::after {
  transform: translate(-50%, -25%) rotate(-45deg);
}

.otameshi-welcome__faq-icon-q,
.otameshi-welcome__faq-icon-a {
  color: #c9a063;
  font-weight: bold;
  font-size: var(--fs-catch);
}

.otameshi-welcome__faq-text {
  margin-left: 12px;
  font-size: var(--fs-text);
  line-height: 1.5;
  flex: 1;
}

/* 商品紹介 */
/*---------- PC ----------*/
@media screen and (min-width: 750px) {
  :root {
    --product-thumbnail-padding: 15px 40px;
  }
}

/*---------- SP ----------*/
@media screen and (max-width: 749px) {
  :root {
    --product-thumbnail-padding: 8px 10px;
  }
}

.js-swiper-product-thumbnail {
  margin-top: 30px;
  padding: 0;
  overflow: hidden;
}

.js-swiper-product-thumbnail .swiper-wrapper {
  display: flex;
  justify-content: center;
}

.js-swiper-product-thumbnail .swiper-slide {
  width: auto;
  height: auto;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px;
}

.js-swiper-product-thumbnail .swiper-slide span {
  display: block;
  padding: var(--product-thumbnail-padding);
  border-radius: 6px;
  color: #fff;
  font-size: var(--fs-text);
  opacity: 1;
}

.js-swiper-product-thumbnail .swiper-slide:hover {
  cursor: pointer;
}

.js-swiper-product-thumbnail .swiper-slide.swiper-slide-thumb-active::after {
  --triangle-size: 7px;

  content: '';
  width: calc(tan(70deg) * var(--triangle-size) / 2);
  height: var(--triangle-size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: -1px;
}

.js-swiper-product-thumbnail .swiper-slide:nth-child(1) span,
.js-swiper-product-thumbnail .swiper-slide:nth-child(1)::after,
.shinki-product-title.-kit {
  background: #EFCB36;
}

.js-swiper-product-thumbnail .swiper-slide:nth-child(2) span,
.js-swiper-product-thumbnail .swiper-slide:nth-child(2)::after {
  background: #9BA826;
}

.js-swiper-product-thumbnail .swiper-slide:nth-child(3) span,
.js-swiper-product-thumbnail .swiper-slide:nth-child(3)::after {
  background: #DB5A22;
}

.js-swiper-product-thumbnail .swiper-slide:nth-child(4) span,
.js-swiper-product-thumbnail .swiper-slide:nth-child(4)::after {
  background: #71C1D4;
}

.js-swiper-product-thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-container-product.swiper-container {
  margin-top: 10px;
}

.swiper-container.swiper-container-product {
  overflow: hidden;
}

.swiper-container-product.swiper-container {
  padding-bottom: 30px;
}

.swiper-container-product.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-container-product .swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-container-product .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  border: 1px solid #aaa;
}

.swiper-container-product .swiper-pagination-bullet-active {
  background: #aaa;
}

.otameshi-product-lineup-item__name {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.otameshi-product-lineup-item__name-single {
  font-size: var(--fs-text);
  line-height: 1.5;
  text-align: center;
}

.otameshi-product-lineup-item__name-set {
  display: flex;
  align-items: start;
}

.otameshi-product-lineup-item__name-set:nth-child(2) {
  margin-top: 10px;
}

.otameshi-product-lineup-item__name-set dt {
  font-size: 13px;
  padding: 4px;
  border: 1px solid #000;
  margin-right: 10px;
}

.otameshi-product-lineup-item__name-set dd {
  flex: 1;
  font-size: var(--fs-text);
  text-align: left;
  line-height: 1.5;
}

.otameshi-product-lineup-item__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 20px 0;
}

.otameshi-product-lineup-item__rating-text {
  display: block;
  color: #FCA531;
  text-align: center;
  font-size: var(--fs-text);
}

.otameshi-product-lineup-item__rating img {
  width: 150px;
  margin-top: 10px;
}

.otameshi-product-lineup-item__rating-annotation {
  margin: 15px 20px 0;
  font-size: var(--fs-text-note);
  line-height: 1.5;
  text-align: center;
}

.shinki-product__section-title {
  padding: 15px 0;
  font-size: var(--fs-catch);
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-align: center;
}

.shinki-product__section-title.-kit {
  background: #EFCB36;
}

.shinki-product__section-title.-yasai {
  background: #9BA826;
}

.shinki-product__section-title.-okazu {
  background: #DB5A22;
}

.shinki-product__section-title.-daily {
  background: #71C1D4;
}

.shinki-product__section-lead {
  margin: 30px 25px;
  font-size: var(--fs-text);
  line-height: 1.5;
  text-align: center;
}

/*
  Kit Oisixとは？ちゃんと Oisixとは？
*/
.shinki-product-detail {
  padding: 40px 25px;
  background: #f5eee3;
}

.shinki-product-detail__description {
  margin-top: 40px;
  font-size: var(--fs-catch);
  line-height: 1.7;
  text-align: center;
  font-weight: bold;
}

.shinki-product-detail__description:first-of-type {
  margin-top: 0;
}

.shinki-product-detail__img {
  margin-top: 20px;
}

/*
  診断
*/
.exdb-self-check {
  padding: 0;
  background: #f2e8c9;
}

.exdb-self-check.-repaint {
  box-sizing: border-box;
  height: 410px;
}

.exdb-self-check__static-title {
  font-size: var(--fs-catch);
  font-weight: bold;
  padding-top: 80px;
}

.exdb-self-check__lead {
  margin: 30px 25px 0;
  font-size: var(--fs-text);
  line-height: 2;
  text-align: center;
  color: #333;
}

.exdb-self-check__screen.-first-screen {
  text-align: center;
}

.exdb-self-check__screen.-first-screen .shinki-btn {
  margin-top: 20px;
  min-width: 186px;
}

.exdb-self-check__progress {
  width: 48%;
  padding-top: 40px;
  margin: 0 auto;
  display: none;
}

.exdb-self-check__progress-text {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.exdb-self-check__progress-text,
.exdb-self-check__progress-text span {
  font-size: var(--fs-text);
}

.exdb-self-check__progress-gauge {
  width: 100%;
  height: 10px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.exdb-self-check__progress-fill {
  height: 100%;
  background: #a6a600;
  width: 0;
  transition: width 0.3s ease;
  border-radius: 5px;
}

.exdb-self-check__screen-inner {
  margin: 40px 20px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  height: 270px;
}

.exdb-self-check__screen-text {
  text-align: center;
  font-size: var(--fs-text);
  line-height: 2;
  color: #333;
  box-sizing: border-box;
  height: 87px;
}

.exdb-self-check__screen-radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0;
}

.exdb-self-check__screen-radio {
  display: none;
}

.exdb-self-check__screen-radio-button {
  display: inline-block;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.exdb-self-check__screen-radio-button.-buttun-yes {
  background-color: #ff6666;
}

.exdb-self-check__screen-radio-button.-buttun-no {
  background-color: #66ccff;
}

/* 
.exdb-self-check__screen-radio:checked + .exdb-self-check__screen-radio-button {
  background-color: #4CAF50;
  color: white;
  border-color: #45a049;
}
.exdb-self-check__screen-radio-button:hover {
}
*/
.exdb-self-check__screen-radio:checked+.exdb-self-check__screen-radio-button {
  box-shadow: inset 3px 3px 0 rgba(0, 0, 0, 0.2);
  filter: grayscale(100%)
}

.exdb-self-check__screen-controller {
  display: flex;
  justify-content: space-between;
}

.exdb-self-check__screen-back-button,
.exdb-self-check__screen-next-button {
  margin-top: 20px;
  color: #76952F;
  font-size: var(--fs-text);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.exdb-self-check__screen-next-button {
  margin-left: auto;
}

.exdb-self-check__last-screen-inner {
  padding: 180px 0 140px;
  text-align: center;
}

.exdb-self-check__last-screen-text {
  font-size: var(--fs-catch);
  font-weight: bold;
  color: #333;
}

.exdb-self-check__loader {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.exdb-self-check__loader>div {
  background-color: #76952F;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 8px;
  animation-fill-mode: both;
  display: block;
}

.exdb-self-check__loader>div:nth-child(1) {
  animation: otameshiSelfCheckScale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.exdb-self-check__loader>div:nth-child(2) {
  animation: otameshiSelfCheckScale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.exdb-self-check__loader>div:nth-child(3) {
  animation: otameshiSelfCheckScale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

@keyframes otameshiSelfCheckScale {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  45% {
    transform: scale(0.1);
    opacity: 0.7;
  }

  80% {
    transform: scale(1);
    opacity: 1;
  }
}

.exdb-self-check-result {
  background: #F5EEE3;
  padding: 40px 25px 40px;
}

.exdb-self-check-result__title {
  margin-bottom: 20px;
  font-size: var(--fs-catch-s);
  line-height: 1.5;
  text-align: center;
  color: #333;
}

.exdb-self-check-result__title strong {
  display: block;
  font-size: var(--fs-catch);
  color: #333;
}

.exdb-self-check-result__mv {
  opacity: 0;
  animation: otameshiSelfCheckResultLoad 0.75s 0.2s forwards;
}

.exdb-self-check-result__lead {
  opacity: 0;
  margin: 20px 0;
  font-size: var(--fs-text);
  line-height: 2;
  text-align: center;
  color: #333;
  animation: otameshiSelfCheckResultLoad 0.75s 0.2s forwards;
}

.exdb-self-check-result__button {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.exdb-self-check-result__fukidashi {
  opacity: 0;
  background: #EFCB36;
  padding: 12px 21px;
  font-size: var(--fs-text);
  line-height: 1.5;
  text-align: center;
  position: relative;
  animation: otameshiSelfCheckResultLoad 0.75s 0.5s forwards;
}

.exdb-self-check-result__fukidashi::after {
  content: "";
  display: block;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 7px;
  border-right-width: 7px;
  border-top-color: #EFCB36;
}

@keyframes otameshiSelfCheckResultLoad {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.exdb-self-check-reset__button-wrap {
  text-align: center;
}

.exdb-self-check-reset__button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  color: #76952F;
  font-size: var(--fs-text);
}

/* 
  共通バナー
 */
.otameshi-welcome__otameshi-bnr-title {
  margin: 30px 0;
  font-size: var(--fs-catch-s);
  line-height: 1.5;
  text-align: center;
}

.otameshi-welcome__otameshi-bnr-cta {
  text-align: center;
  margin: 0 25px;
}

.otameshi-welcome__otameshi-bnr-cta .shinki-btn {
  margin-top: 30px;
}

.otameshi-welcome__otameshi-bnr-description {
  display: flex;
  margin-top: 30px;
}

@media screen and (min-width: 750px) {
  .otameshi-welcome__otameshi-bnr-description {
    align-items: center;
  }
}

.otameshi-welcome__otameshi-bnr-description img {
  width: 87px;
}

.otameshi-welcome__otameshi-bnr-description-text {
  margin-left: 20px;
  font-size: var(--fs-text);
  line-height: 1.5;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .exdb-self-check {
    margin-top: 10px;
  }
}

.footer__support {
  display: none;
}

.exdb-self-check__button {
  background: #fff;
  padding-bottom: 40px;
}
.exdb-self-check__button.--btn-image button {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}