@charset "UTF-8";
/* トップページ */
.p-top__floating-bnr-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .p-top__floating-bnr-wrap {
    right: 0;
    transform: none;
    width: 400px;
  }
}
.p-top__floating-bnr-link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top__floating-bnr-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-top__mv {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-top__bnr-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  margin-top: 10px;
}
.p-top__bnr-link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top__bnr-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-top__bnr-questionnaire {
  margin: 10px 5px 2em 5px;
}
.p-top__bnr-questionnaire-link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top__bnr-questionnaire-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* トマトページ */
.p-tomato__container {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-tomato__container {
    display: block;
  }
}
.p-tomato__txt {
  width: 70%;
  margin-inline: 20px 30px;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .p-tomato__txt {
    width: 95%;
    margin-right: 0;
  }
}
.p-tomato__sub-img {
  display: block;
  width: 280px;
  transform: translateY(-70px);
}
@media screen and (max-width: 767px) {
  .p-tomato__sub-img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    transform: translateY(0);
  }
}
.p-tomato__sub-txt {
  margin-top: 10px;
  font-size: 14px;
}
.p-tomato__sub-txt--red {
  margin-right: 1em;
  color: red;
  font-weight: bold;
}

/* アンケートページ */
.p-questionnaire__wrap {
  width: 120%;
  margin-left: -12px;
}
@media screen and (min-width: 576px) {
  .p-questionnaire__wrap {
    width: 100%;
    margin-left: 0;
  }
}
.p-questionnaire__wrap iframe {
  width: 90%;
  height: calc(100vh - 300px);
  border: none;
}
@media screen and (min-width: 576px) {
  .p-questionnaire__wrap iframe {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-questionnaire__wrap iframe {
    height: 2800px;
  }
}

/* ユーティリティクラス */
.u-display-pc {
  display: none;
}
@media screen and (min-width: 767px) {
  .u-display-pc {
    display: block;
  }
}

.u-display-sp {
  display: block;
}
@media screen and (min-width: 767px) {
  .u-display-sp {
    display: none;
  }
}