@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  background-color: #fff;
  color: #3E2B2A;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
@media (max-width: 841px) {
  body .pc-only {
    display: none;
  }
}
@media (min-width: 841px) {
  body .sp-only {
    display: none;
  }
}

.cta {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  width: 450px;
  height: 115px;
  display: flex;
  box-shadow: 4px 12px 10px #b8b8b8;
  border-radius: 120px;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  background: linear-gradient(180deg, #EFE8FF, #F076A3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (min-width: 841px) {
  .cta:hover {
    transform: translate(4px, 4px); /* 右下に4pxずつ移動 */
    box-shadow: 0px 0px 0px #b8b8b8; /* 影を消す */
  }
}
.cta::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 50px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

header {
  height: 80px;
  position: relative;
  z-index: 999;
  font-size: 24px;
}
header .header__inner {
  display: flex;
  position: fixed;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
header .header__inner .header__left {
  padding-left: 60px;
}
@media screen and (min-width: 841px) {
  header .header__inner .header__left:hover {
    opacity: 0.6;
  }
}
header .header__inner .header__left .header__logo {
  width: 100%;
  height: 100%;
  display: block;
}
header .header__inner .header__left .logo {
  width: 230px;
  height: auto;
}
header .header__inner .header__right {
  padding-right: 72px;
}
header .header__inner .btn {
  background: linear-gradient(135deg, #EEA8FF, #FFFA8F);
  border-radius: 4px;
  width: 152px;
  height: 53px;
  text-transform: capitalize;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
@media screen and (min-width: 841px) {
  header .header__inner .btn:hover {
    background: linear-gradient(150deg, #2E2E2E 0%, #ff39d4 50%, #FFFFFF 100%);
  }
}

main {
  background-image: url(../img/fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 49.6527777778vw;
  position: relative;
}
@media screen and (max-width: 840px) {
  main {
    background-image: url(../img/fv-sp.webp);
  }
}
main .copy {
  width: 35.7638888889vw;
  height: auto;
  padding-left: 3%;
  max-width: 1440px;
  position: absolute;
  top: -15%;
  bottom: 0;
  margin: auto 0;
}
main a {
  background: #F076A3;
  box-shadow: 4px 4px 4px #713B55;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  position: absolute;
  right: 49%;
  width: 17.6388888889vw;
  height: 5.7638888889vw;
  bottom: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (min-width: 841px) {
  main a:hover {
    transform: translate(4px, 4px); /* 右下に4pxずつ移動 */
    box-shadow: 0px 0px 0px #713B55; /* 影を消す */
  }
}
main a span {
  margin-right: 33px;
}
main a::before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  position: absolute;
  right: 12%;
}
main a::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: #F076A3;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  position: absolute;
  right: 14%;
}

.ticket {
  background-image: url(../img/ticket-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 64.6527777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 52px;
}
.ticket .ticket__img {
  width: 64.5833333333vw;
  height: auto;
  margin: 60px 0 0 34px;
}
.ticket .butterfly {
  position: absolute;
  width: 21.5972222222vw;
  height: auto;
  top: 2%;
  left: 9%;
}
.ticket .craft {
  position: absolute;
  right: 20%;
  top: 17%;
  width: 12.5vw;
  height: auto;
}

.voice {
  background-image: url(../img/osusume-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 85.4166666667vw;
  margin-top: -20px;
}
.voice h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice h3 img {
  width: 57.9861111111vw;
  height: auto;
  margin-top: 68px;
}
.voice .img__area {
  width: 57.7083333333vw;
  height: auto;
  margin: 63px auto 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice .img__top {
  display: flex;
}
.voice .img__top .price {
  width: 20.8333333333vw;
  height: 9.7222222222vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: -40px;
}
.voice .img__top .create {
  width: 30.9027777778vw;
  height: 12.5vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 50px;
}
.voice .img__middle {
  display: flex;
  margin-top: -34px;
  gap: 224px;
}
.voice .img__middle .sense {
  width: 20.8333333333vw;
  height: 10.4166666667vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 22px;
}
.voice .img__middle .watch {
  width: 27.0833333333vw;
  height: 12.5vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.voice .understand {
  width: 31.25vw;
  height: 19.4444444444vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 27px;
  margin-right: 18px;
}

.case__img {
  position: relative;
  margin-bottom: 33px;
}
.case__img::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-top: 2px solid #2C2426;
  border-right: 2px solid #2C2426;
  transform: rotate(138deg) skewX(20deg) skewY(10deg);
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: -14px;
  margin: 0 auto;
}

.case__large {
  width: 51.875vw;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  margin: -170px auto 0;
}

.outer {
  background-image: url(../img/lp-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 35px;
  overflow-x: hidden;
}
@media screen and (max-width: 540px) {
  .outer {
    background-image: url(../img/lp-bg-sp.webp);
    background-size: contain;
    background-position: unset;
  }
}
.outer .ticket {
  background: none;
  justify-content: normal;
  height: 40.2777777778vw;
}
.outer .ticket .ticket__img {
  margin: 87px 0;
}
.outer .ticket .craft {
  right: 21%;
  top: 10%;
}
.outer .btn {
  width: 450px;
  margin: 0 auto;
}
.outer .btn .cta {
  margin: 77px 0 96px;
}

.case {
  max-width: 1354px;
  margin: -5px auto 0;
  padding: 30px 15px 85px;
  background: rgba(255, 184, 210, 0.25);
  text-align: center;
}
.case .case__container {
  margin-top: 40px;
}
.case ul {
  display: flex;
  flex-wrap: wrap;
  gap: 62px;
  justify-content: center;
}
.case li {
  width: 332px;
  height: 401px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 73px;
}
.case li .case__title {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 23px;
  border-radius: 4px;
  margin: 0 0 19px;
}
.case li .case__title img {
  width: 22.83px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.case li .case__title .number {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.case li .case__title .number span {
  font-weight: 500;
  font-size: 40px;
  border-top: 1px dotted #fff;
  padding: 0 2px;
}
.case li .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.case li .content::after {
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  width: 30px;
  height: 17px;
  display: block;
  border-radius: 17px;
  margin: 15px 0;
}
.case li .small__title {
  font-size: 22px;
  font-weight: bold;
  width: 198px;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.case li .small__content {
  line-height: 1.5;
}
.case .attend {
  display: flex;
  align-items: flex-start;
}
.case .attend .star {
  width: 22.41px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  margin-right: 13px;
  margin-left: -11px;
}
.case .attend .little__text {
  font-size: 14px;
  margin-bottom: 23px;
  line-height: 1.8;
}
.case .case01 {
  background-image: url(../img/case01.webp);
}
.case .case01 .case__title {
  background: #F076A3;
}
.case .case01 .small__title {
  color: #F076A3;
  border-bottom: 1px solid #F076A3;
}
.case .case01 .content::after {
  background: #F076A3;
}
.case .case02 {
  background-image: url(../img/case02.webp);
}
.case .case02 .case__title {
  background: #67A2E2;
}
.case .case02 .small__title {
  color: #67A2E2;
  border-bottom: 1px solid #67A2E2;
}
.case .case02 .content::after {
  background: #67A2E2;
}
.case .case03 {
  background-image: url(../img/case03.webp);
}
.case .case03 .case__title {
  background: #D766E1;
}
.case .case03 .small__title {
  color: #D766E1;
  border-bottom: 1px solid #D766E1;
}
.case .case03 .content::after {
  background: #D766E1;
}

.message {
  background-image: url(../img/at-last-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 1168px;
  height: 995px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: calc(50% + 87.5px);
  transform: translateX(-50%);
}
@media screen and (max-width: 540px) {
  .message {
    background-image: url(../img/at-last-bg-sp.webp);
  }
}
.message .message__text {
  width: 533px;
  height: 616px;
  padding: 54px 50px 0px 0px;
  margin-left: -109px;
}
.message .message__text p {
  margin: 15px 0 35px;
  line-height: 1.7;
}
.message .dot {
  position: relative;
}
.message .dot::before {
  content: "・・・・";
  position: absolute;
  top: -1em; /* ドットの位置を調整 */
  left: 0;
  width: 100%;
  text-align: justify;
  letter-spacing: -0.4em;
  font-size: 1.5em;
  margin-left: -3px;
  color: #FFCAF0;
}
.message .line__purple {
  background: linear-gradient(transparent 70%, #E8CAFF 60%);
}
.message .line__pink {
  background: linear-gradient(transparent 70%, #FFCAF0 60%);
}
.message .line__blue {
  background: linear-gradient(transparent 70%, #CAD9FF 60%);
}

footer {
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 10px;
  text-align: center;
}

@media (max-width: 840px) {
  header {
    height: 50px;
  }
  header .header__inner {
    height: 50px;
  }
  header .header__inner .header__left .logo {
    width: 120px;
  }
  header .header__inner .btn {
    height: 40px;
  }
  main {
    height: 177.0666666667vw;
    margin-top: -9px;
  }
  main .copy {
    width: 62.6666666667vw;
    top: -13%;
  }
  main a {
    right: 5%;
    bottom: 39%;
    width: 33.3333333333vw;
    height: 11.7333333333vw;
  }
  main a::before {
    width: 3.2vw;
    height: 3.2vw;
  }
  main a::after {
    width: 1.7066666667vw;
    height: 1.6vw;
  }
  .voice {
    height: 202.6666666667vw;
  }
  .voice .img__area {
    width: 100vw;
    align-items: stretch;
    margin: 18px auto 0;
  }
  .voice .img__top {
    flex-direction: column;
    align-items: flex-end;
  }
  .voice .img__top .create {
    margin-top: 0;
    width: 42.6666666667vw;
    height: 32vw;
    margin-right: 5px;
  }
  .voice .img__top .price {
    width: 42.6666666667vw;
    height: 37.3333333333vw;
    margin-right: 27px;
    margin-top: 20px;
  }
  .voice .img__middle {
    flex-direction: column;
    margin-top: -72%;
    gap: 10px;
  }
  .voice .img__middle .sense {
    width: 37.3333333333vw;
    height: 37.3333333333vw;
    margin-left: 43px;
  }
  .voice .img__middle .watch {
    width: 48vw;
    height: 48vw;
  }
  .voice .understand {
    width: 77.3333333333vw;
    height: 48vw;
    margin-left: 25px;
    margin-top: -28px;
  }
  .case__large {
    width: 92vw;
    margin-top: -46px;
    height: 100%;
  }
  .case__img::after {
    width: 35px;
    height: 35px;
    bottom: -25px;
  }
  .outer .ticket .ticket__img {
    margin: 11px 0 0 7px;
  }
  .outer .ticket .craft {
    top: -16px;
  }
}
@media (max-width: 540px) {
  header {
    font-size: 18px;
  }
  header .header__inner .header__left {
    padding-left: 16px;
  }
  header .header__inner .header__right {
    padding-right: 16px;
  }
  .cta {
    font-size: 14px;
    width: 200px;
    padding: 0px 0 0 10px;
    height: 50px;
    margin-top: -23px;
  }
  .cta::after {
    width: 9px;
    height: 9px;
    margin-left: 18px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  main a {
    font-size: 14px;
  }
  main a span {
    margin-right: 18px;
  }
  .ticket {
    height: 94.6666666667vw;
    background-size: contain;
    overflow: hidden;
  }
  .ticket .ticket__img {
    width: 106.6666666667vw;
    margin: 27px 16px 0;
  }
  .ticket .butterfly {
    left: 12%;
  }
  .ticket .craft {
    right: 4%;
    top: 8%;
    width: 21.3333333333vw;
  }
  .voice {
    margin-top: 12px;
  }
  .voice h3 img {
    width: 93.3333333333vw;
    margin-top: 45px;
  }
  .outer .ticket {
    overflow: unset;
  }
  .outer .ticket .craft {
    right: 4%;
  }
  .outer .btn {
    width: auto;
    margin-top: -100px;
  }
  .outer .btn .cta {
    margin: 77px auto 96px;
  }
  .message {
    font-size: 14px;
    left: auto;
    transform: none;
    width: auto;
    height: 214.9333333333vw;
  }
  .message .message__text {
    padding: 90px 33px 0px 42px;
    margin-left: 0;
    letter-spacing: 0.03em;
  }
  .message .message__text p {
    margin: 16px 0 20px;
    line-height: 1.5;
  }
  .case__img {
    margin-bottom: 39px;
  }
  .case {
    background: none;
    padding-top: 0;
  }
  .case .case__container {
    margin-top: 14px;
    background-image: url(../img/case-bg-sp.webp);
    background-repeat: no-repeat;
    background-size: 100% 59%;
    background-position: center;
  }
  .case ul {
    gap: 40px;
  }
  .case li {
    width: 292px;
    height: 352px;
    padding-top: 64px;
  }
  .case li .case__title {
    padding: 2px 19px;
    margin: 0 0 14px;
  }
  .case li .case__title .number {
    font-size: 16px;
  }
  .case li .case__title .number span {
    font-size: 36px;
  }
  .case li .content::after {
    margin-bottom: 5px;
  }
  .case li .small__title {
    font-size: 20px;
    width: 180px;
    padding-bottom: 4px;
  }
  .case li .small__content {
    line-height: 1.4;
  }
  .case .attend .star {
    margin: 4px 2px 0 -19px;
    width: 16px;
  }
}
@media (max-width: 375px) {
  .message {
    font-size: 13px;
  }
  .message .message__text {
    padding: 110px 30px 0px 30px;
    letter-spacing: 0;
  }
}/*# sourceMappingURL=style.css.map */