@charset "utf-8";

@media screen and (max-width: 414px) {
    .ec-item {
      position: relative;
        top: -1rem;
    }
}
.crowbyebye-contents {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック, YuGothic, "Yu Gothic", メイリオ, Meiryo, sans-serif;
  color: #333;
}

.crowbyebye-contents picture {
  width: 100%;
  height: auto;
}
.crowbyebye-contents img {
  display: block;
  width: 100%;
  height: auto;
}
.crowbyebye-inner {
  margin: 0 auto;
  padding: 30px 42px;
  max-width: 1024px;
}
@media screen and (max-width: 640px) {
  .crowbyebye-inner {
    padding: 15px 4%;
  }
}
@media screen and (min-width: 640px) {
  .crowbyebye-contents .--nopc {
    display: none;
  }
}


/* entry ----------------------------------------------------------------- */
.crowbyebye-entry {
  padding: 2rem 0;
  background-color: #FDF8E4;
  text-align: center;
}
.crowbyebye-entry__shoulder {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}
.crowbyebye-entry__shoulder::before,
.crowbyebye-entry__shoulder::after {
  content: "";
  width: 1px;
  height: 2rem;
  background-color: #333;
}
.crowbyebye-entry__shoulder::before {
  margin-right: 1.5rem;
  transform: rotate(-30deg);
}
.crowbyebye-entry__shoulder::after {
  margin-left: 1.5rem;
  transform: rotate(30deg);
}
.crowbyebye-entry__title {
  margin-top: .5rem;
  color: #EB6100;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .1rem;
}
.crowbyebye-entry__title span {
  font-size: 2.5rem;
  font-weight: bold;
}
.crowbyebye-entry__box {
  display: flex;
  gap: min(2rem, 3.5vw);
  margin: 1rem auto 0;
  padding: 0 1rem;
  width: 100%;
  max-width: 900px;
}
.crowbyebye-entry__link {
  flex: 1;
  display: block;
  padding: 1.5rem 1rem;
  background-color: #FFF;
  border-radius: .5rem;
  text-align: center;
}
.crowbyebye-entry__link-title {
    display: block;
    font-size: min(1.5rem, 3vw);
    font-weight: bold;
}
.crowbyebye-entry__link-text {
    display: block;
    margin-top: .5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}
.crowbyebye-entry__link-button {
  position: relative;
  display: block;
  margin: 1rem auto 0;
  padding: 1rem 0;
  width: 90%;
  background-color: #EB6100;
  border: 0;
  border-radius: .5rem;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .1rem;
  line-height: 1;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color .3s ease;
}
.crowbyebye-entry__link:hover .crowbyebye-entry__link-button {
  background-color: #FF7E22;
}
.crowbyebye-entry__link-button::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.crowbyebye-entry__shop {
  display: inline-block;
  margin: 1.5rem auto 0;
  color: #EB6100;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: underline;
  transition: color .3s ease;
}
.crowbyebye-entry__shop:hover {
  color: #FF7E22;
}
.crowbyebye-entry__price {
  font-size: 1.2rem;
  color: #EB6100;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .crowbyebye-entry__box {
    flex-direction: column;
  }
  .crowbyebye-entry__link {
    padding: 1rem;
  }
  .crowbyebye-entry__link-title {
    font-size: 1.5rem;
  }
}

p.crowbyebye-entry__link {
  pointer-events: none;
}
p.crowbyebye-entry__link .crowbyebye-entry__link-button {
  background-color: #CCC;
}
p.crowbyebye-entry__link:hover .crowbyebye-entry__link-button {
  background-color: #CCC;
}


/* hero ----------------------------------------------------------------- */
.crowbyebye-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url(/img/ec/crowbyebye/hero_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.crowbyebye-hero .page-title {
  margin: auto;
  aspect-ratio: 5 / 3;
  width: auto;
  height: 100%;
  max-height: 700px;
}
@media screen and (max-width: 640px) {
  .crowbyebye-hero {
    width: 100%;
    height: auto;
    min-height: inherit;
    max-height: none;
  }
  .crowbyebye-hero .page-title {
    width: 100%;
    height: auto;
    max-height: none;
  }
}



/* problem ----------------------------------------------------------------- */
.crowbyebye-problem {
  position: relative;
  background-color: #EBF5FE;
}
.crowbyebye-problem::after {
  content: "";
  position: absolute;
  bottom: -8vw;
  width: 100%;
  height: 8vw;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #EBF5FE;
}
.crowbyebye-problem  .crowbyebye-inner {
  padding-bottom: 0;
}
.crowbyebye-problem__list {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.crowbyebye-problem__list-item {
  flex: 1;
}
.crowbyebye-problem__illust {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.crowbyebye-problem__illust-item {
  flex: 1;
}
.crowbyebye-problem__text {
  margin-top: 2rem;
}
.crowbyebye-problem__text img {
  display: block;
  margin: 0 auto;
  width: 70%;
}
@media screen and (max-width: 640px) {
  .crowbyebye-problem__list {
    gap: .5rem;
    justify-content: space-between;
  }
  .crowbyebye-problem__illust {
    margin-top: 1rem;
    flex-direction: column;
  }
  .crowbyebye-problem__text {
    margin-top: 1rem;
  }
  .crowbyebye-problem__illust-item {
    flex: auto;
    margin: 0 auto;
    width: 80%;
  }
  .crowbyebye-problem__text img {
    width: 90%;
  }
}



/* product ----------------------------------------------------------------- */
.crowbyebye-product {
  padding-top: 5vw;
  background-color: #FCFAF0;
}
.crowbyebye-product__shoulder {
  margin: 2rem auto 0;
  width: 60%;
}
.crowbyebye-product__image {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.crowbyebye-product__image-item01 {
  width: 55%;
}
.crowbyebye-product__image-item02 {
  flex: 1;
}
.crowbyebye-product__appeal {
  margin-top: 1rem;
  padding: 1.5rem 2rem;
  background-color: #EBF5FE;
  border-radius: 1rem;
}
.crowbyebye-product__appeal-title {
  color: #145DB2;
  font-size: min(2.5rem, 5vw);
  font-weight: bold;
  text-align: center;
}
.crowbyebye-product__appeal-text {
  margin-top: .5rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
}
.crowbyebye-product__note {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background-color: #FFF;
  border: 3px solid #145DB2;
  border-radius: 1rem;
}
.crowbyebye-product__note-title {
  color: #145DB2;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.crowbyebye-product__note-text {
  margin-top: .5rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .crowbyebye-product__shoulder {
    margin: 1rem auto 0;
    width: 90%;
  }
  .crowbyebye-product__image {
    flex-direction: column;
  }
  .crowbyebye-product__image-item01 {
    width: 90%;
  }
  .crowbyebye-product__image-item02 {
    flex: auto;
    width: 80%;
  }
  .crowbyebye-product__appeal-title {
    font-size: 2rem;
  }
  .crowbyebye-product__note {
    padding: 1rem .5rem;
  }
  .crowbyebye-product__note-title {
    font-size: 1.5rem;
  }
}



/* feature ----------------------------------------------------------------- */
.crowbyebye-feature {
  background-color: #FFF;
}
.crowbyebye-feature__title {
  display: flex;
  align-items: flex-end;
  margin-top: 1rem;
}
.crowbyebye-feature__title img {
  display: block;
}
.crowbyebye-feature__title img:nth-child(1) {
  width: 66%;
}
.crowbyebye-feature__title img:nth-child(2) {
  width: 34%;
}
.crowbyebye-feature__point {
  display: flex;
  gap: 1rem;
}
.crowbyebye-feature__point h3 {
  flex: 1;
}
@media screen and (max-width: 640px) {
  .crowbyebye-feature__title {
    margin-top: 0;
  }
  .crowbyebye-feature__title {
    align-items: center;
  }
  .crowbyebye-feature__title img:nth-child(1) {
    width: 60%;
  }
  .crowbyebye-feature__title img:nth-child(2) {
    width: 40%;
  }
  .crowbyebye-feature__point {
    flex-direction: column;
  }
  .crowbyebye-feature__point h3 {
    flex: auto;
    margin: 0 auto;
    width: 90%;
  }
}



/* experiment ----------------------------------------------------------------- */
.crowbyebye-experiment {
  background-color: #FFF7E8;
}
.crowbyebye-experiment__title {
  margin: 2rem auto 0;
  width: 70%;
}
.crowbyebye-experiment__text {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
.crowbyebye-experiment__text span {
  display: inline-block;
  margin: 0 .1em;
  padding: 0 .2em;
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #FF9D00 70%);
}
.crowbyebye-experiment__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.crowbyebye-experiment__item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  background-color: #FFF;
  border: 3px solid #381701;
  border-radius: .5rem;
}
.crowbyebye-experiment__item-title {
  padding: 0 2rem;
  width: 10rem;
  line-height: 1;
}
.crowbyebye-experiment__item-title img {
  display: block;
}
.crowbyebye-experiment__item-text {
  flex: 1;
  padding-right: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.crowbyebye-experiment__item-text span {
  display: inline;
  padding: 0 .1em;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #F7D9AD 70%);
}
.crowbyebye-experiment__result {
  position: relative;
  margin-top: 8rem;
}
.crowbyebye-experiment__result::before {
  content: "";
  position: absolute;
  top: -7rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 2 / 5;
  width: auto;
  height: 6rem;
  background-image: url(/img/ec/crowbyebye/experiment_04.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .crowbyebye-experiment__title {
    margin: 1rem auto 0;
    width: 100%;
  }
  .crowbyebye-experiment__text {
    margin-top: 0;
  }
  .crowbyebye-experiment__item {
    flex-direction: column;
  }
  .crowbyebye-experiment__item-title {
    width: 12rem;
  }
  .crowbyebye-experiment__item-text {
    padding: .5rem 1rem;
  }
  .crowbyebye-experiment__result {
    position: relative;
    margin-top: 6rem;
  }
  .crowbyebye-experiment__result::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 2 / 5;
    width: auto;
    height: 4rem;
    background-image: url(/img/ec/crowbyebye/experiment_04.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}



/* voice ----------------------------------------------------------------- */
.crowbyebye-voice {
  background-color: #FFF;
}
.crowbyebye-voice__title {
  margin: 1rem auto 0;
  width: 60%;
}
.crowbyebye-voice__list {
  margin-top: 1rem;
}
@media screen and (max-width: 640px) {
  .crowbyebye-voice__title {
    margin: .5rem auto 0;
    width: 90%;
  }
}



/* faq ----------------------------------------------------------------- */
.crowbyebye-faq {
  background-color: #FFF;
}
.crowbyebye-faq__title {
  text-align: center;
}
.crowbyebye-faq__title span {
  display: inline-block;
  margin: 1rem auto 0;
  padding-bottom: .2rem;
  color: #145DB2;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #145DB2;
}
.crowbyebye-voice__list {
  margin-top: 1rem;
}
.crowbyebye-faq .p-faq__list {
  margin: 3rem 0 0 auto;
  max-width: 856px;
}
.crowbyebye-faq .p-faq__q {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}
.crowbyebye-faq .p-faq__q:before {
  background-image: url(/img/ec/crowbyebye/icon_q_2x.png);
}
.crowbyebye-faq .p-faq__q p {
  font-weight: bold;
  width: 744px;
}
.crowbyebye-faq .p-faq__q.on .p-faq__button:before {
  transform: rotate(0deg);
}
.crowbyebye-faq .p-faq__q.on .p-faq__button:after {
  background-color: transparent;
}
.crowbyebye-faq .p-faq__a {
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 36px 58px;
  width: calc(100% - 58px);
  max-width: 812px;
}
.crowbyebye-faq .p-faq__a:before {
  background-image: url(/img/ec/crowbyebye/icon_a_2x.png);
}
.crowbyebye-faq .p-faq__a p {
  width: 100%;
  max-width: 680px;
}
.crowbyebye-faq .p-faq__q:before,
.crowbyebye-faq .p-faq__a:before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-left: -24px;
  margin-right: 20px;
  height: 48px;
  width: 48px;
}
.crowbyebye-faq .p-faq__button {
  display: block;
  margin-left: 20px;
  height: 28px;
  width: 28px;
  position: relative;
}
.crowbyebye-faq .p-faq__button:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #666;
  transition: .2s;
  transform: rotate(90deg);
}
.crowbyebye-faq .p-faq__button:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #666;
  transition: .3s;
}
.crowbyebye-faq .p-faq__slide {
  display: none;
}
@media screen and (max-width: 820px){
  .crowbyebye-faq .p-faq__list{
    margin-left: 0;
    width: 100%;
  }
  .crowbyebye-faq .p-faq__q{
    margin-left: 4.26667vw;
    position: relative;
    width: auto;
  }
  .crowbyebye-faq .p-faq__q:before{
    margin-left: -4.26667vw !important;
  }
  .crowbyebye-faq .p-faq__q p{
    font-size: 32px;
    font-size: 4.26667vw;
    line-height: 1.3;
    max-width: 520px;
    padding-bottom: 0.66667vw;
    width: 62.66667vw;
  }
  .crowbyebye-faq .p-faq__a{
    margin: 0 0 4.8vw 0;
    width: auto;
  }
  .crowbyebye-faq .p-faq__a p{
    font-size: 32px;
    font-size: 4.26667vw;
    line-height: 1.5;
    max-width: 590px;
    width: 78.66667vw;
  }
  .crowbyebye-faq .p-faq__q:before,
  .crowbyebye-faq .p-faq__a:before{
    margin-left: 0;
    max-height: 64px;
    max-width: 64px;
    height: 8.53333vw;
    width: 8.53333vw;
  }
  .crowbyebye-faq .p-faq__button{
    margin-left: 0;
    max-height: 40px;
    max-width: 40px;
    height: 5.33333vw;
    width: 5.33333vw;
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    right: 0;
  }
  .crowbyebye-faq .p-faq__button:before{
    max-height: 6px;
    height: 0.8vw;
  }
  .crowbyebye-faq .p-faq__button:after{
    max-height: 6px;
    height: 0.8vw;
  }
}
