@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*==================== 
 共通
==================== */
@font-face {
  font-family: "pop";
  src: url(../fonts/LightNovelPOPv2.otf) format("opentype");
}
html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden;
}

body {
  font-family: "M PLUS 1p", serif;
}

a:hover {
  opacity: 0.75;
  cursor: pointer;
}

img {
  width: 100%;
}

.section__title {
  font-size: 46px;
  font-family: "pop", sans-serif;
  text-align: center;
}

.section__title.section__title--cooking,
.section__title.section__title--secret,
.section__title.section__title--lineup {
  font-size: 40px;
}

.section__title.section__title--secret {
  margin-top: 18px;
}

.section__sub-title {
  font-size: 26px;
  font-family: "pop", sans-serif;
  text-align: center;
}

.section__highlight {
  background-image: radial-gradient(#e1222f 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 40px 40px;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .is--sp {
    display: none;
  }
}
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .is--pc {
    display: none;
  }
}
/*==================== 
 header 
==================== */
.header {
  position: absolute;
  right: 2%;
  top: 0;
  background: url(../img/header_background.png);
  background-size: cover;
  width: 90px;
  z-index: 9999;
}

.header__top {
  padding-top: 23px;
  padding-bottom: 31px;
}

.header__logo {
  max-width: 57px;
  margin-inline: auto;
}

.header__nav {
  padding-top: 31px;
  padding-bottom: 32px;
}

.header__nab_btn {
  width: 29px;
  height: 20px;
  position: relative;
  margin-inline: auto;
  cursor: pointer;
}

.header__nab_btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header__nab_btn span:nth-child(1) {
  top: 0px;
}

.header__nab_btn span:nth-child(2) {
  top: 10px;
}

.header__nab_btn span:nth-child(3) {
  top: 20px;
}

.header__nab_btn.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header__nab_btn.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.header__nab_btn.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 1000px) {
  .header {
    right: 1%;
  }
}
@media (max-width: 767px) {
  .header {
    right: 10px;
    width: 50px;
    background: url(../img/header_background_sp.png);
    background-size: cover;
  }
  .header__top {
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .header__logo {
    max-width: 32px;
  }
  .header__nav {
    padding-top: 24px;
    padding-bottom: 18px;
  }
  .header__nab_btn {
    width: 18px;
    height: 12px;
  }
  .header__nab_btn span {
    height: 2px;
  }
  .header__nab_btn span:nth-child(2) {
    top: 6px;
  }
  .header__nab_btn span:nth-child(3) {
    top: 12px;
  }
}
/* ハンバーガーメニュー */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #cc0b19;
  display: none;
  z-index: 9999;
}

.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 55px;
}

#close-menu {
  width: 34px;
  height: 43px;
  position: absolute;
  top: 33px;
  right: 33px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu__title {
  font-size: 22px;
  color: #ffffff;
  font-family: "pop", sans-serif;
  background-image: radial-gradient(#ffffff 20%, transparent 20%);
  background-position: bottom right;
  background-repeat: repeat-x;
  background-size: 16px 16px;
  padding-bottom: 16px;
}

.menu__items {
  text-align: center;
}

.menu__item:not(:first-child) {
  margin-top: 50px;
}

.menu__link {
  color: #ffffff;
  font-size: 22px;
  font-family: "pop", sans-serif;
  line-height: 1.6;
}
.menu__link .kenta {
  font-size: 18px;
}

.menu__strong {
  font-size: 28px;
}

.menu__dot {
  background-image: radial-gradient(#fff100 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 28px 28px;
  padding-top: 16px;
}

.menu__highlight {
  background-image: radial-gradient(#fff100 20%, transparent 20%), linear-gradient(transparent 80%, #e65762 0%);
  background-position: top right, 0 0;
  background-repeat: repeat-x, no-repeat;
  background-size: 28px 28px, 100% 100%;
  padding-top: 16px;
  font-size: 28px;
}

/*==================== 
 FV
==================== */
.fv__top {
  background: #b50d19;
  background-image: url(../img/fv.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  aspect-ratio: 1366/894;
  display: flex;
  position: relative;
}

.fv__yuno {
  width: 16%;
  position: absolute;
  top: 14%;
  right: 11%;
}

.fv__left {
  background-image: url(../img/fv_background.png);
  background-size: cover;
  width: 66%;
  height: 712px;
}

.fv__image {
  width: 39%;
  position: absolute;
  top: 38px;
  right: 148px;
}

.fv__bottom {
  background: url(../img/fv_bottom_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -28%;
  position: relative;
  border-radius: 40px;
}

.fv__container {
  display: flex;
  max-width: 1367px;
  padding-left: 63px;
  padding-right: 137px;
  margin-inline: auto;
  position: relative;
}

.fv__bottom-left {
  display: flex;
  width: 54%;
  padding-top: 27px;
}

.fv__puppet {
  width: 28%;
  margin-top: 9px;
}

.fv__puppet.fv__puppet--green {
  margin-top: 10px;
}

.fv__dashi {
  width: 21%;
  position: relative;
  z-index: 1;
}

.fv__dashi:nth-of-type(3) {
  margin-left: 14px;
}

.fv__bottom-right {
  width: 50%;
  margin-top: -11%;
  text-align: center;
}

@media (min-width: 1500px) {
  .fv__puppet.fv__puppet--green {
    margin-top: 30px;
  }
}
@media (max-width: 1024px) {
  .fv__bottom-right {
    margin-top: -60px;
  }
  .fv__yuno {
    right: 12%;
  }
}
@media (max-width: 767px) {
  .fv__top {
    background-image: url(../img/fv_sp.png);
    background-repeat: no-repeat;
    aspect-ratio: 390/492;
  }
  .fv__yuno {
    width: 24%;
    top: 45%;
    right: inherit;
    left: 3px;
  }
  .fv__container {
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    max-width: inherit;
  }
  .fv__bottom {
    margin-top: -154px;
  }
  .fv__bottom-left {
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }
  .fv__bottom-right {
    width: 82%;
    margin-inline: auto;
    margin-top: -22px;
  }
  .fv__dashi {
    max-width: inherit;
    width: 22%;
  }
  .fv__puppet {
    max-width: inherit;
    width: 28%;
    margin-top: 0;
  }
  .fv__puppet.fv__puppet--green {
    margin-top: 0;
  }
}
/*==================== 
 あとだしとは
==================== */
.about {
  background: #ffffff;
  border-radius: 40px;
  position: relative;
  margin-top: -8%;
}

.about__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 188px 53px 0 139px;
  max-width: 1174px;
  max-width: 1366px;
  margin-inline: auto;
}

.about__content {
  width: 46%;
  text-align: center;
}

.about__title {
  font-family: "pop", sans-serif;
  font-size: 32px;
  white-space: nowrap;
}

.about__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;
  margin-top: 30px;
}

.about__text:first-of-type {
  margin-top: 53px;
}

.about__highlight {
  font-size: 40px;
  background-image: radial-gradient(#e1222f 20%, transparent 20%), linear-gradient(transparent 70%, #fff100 0%);
  background-position: top right, 0 0;
  background-repeat: repeat-x, no-repeat;
  background-size: 40px 40px, 100% 100%;
  padding-top: 20px;
}

.about__text-highlight {
  background: linear-gradient(transparent 70%, #fff100 0%);
}

.about__right {
  width: 54%;
  margin-top: 26px;
}

.about__cooking {
  max-width: 433px;
}

.about__images {
  display: flex;
  justify-content: flex-end;
  margin-top: -40px;
}

.about__bubble {
  max-width: 192px;
}

.about__puppet {
  max-width: 234px;
  margin-top: 20px;
}

@media (min-width: 1500px) {
  .about {
    margin-top: -5%;
  }
}
@media (max-width: 1348px) {
  .about__inner {
    padding-left: 10.1756954612px;
    padding-right: 3.8799414348px;
  }
}
@media (max-width: 1024px) {
  .about {
    margin-top: -7%;
  }
  .about__inner {
    padding-top: 120px;
  }
}
@media (min-width: 768px) {
  .scroll {
    display: none;
  }
}
@media (max-width: 767px) {
  .about {
    overflow: hidden;
    margin-top: -18%;
  }
  .about__inner {
    padding-top: 300px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) and (max-width: 550px) {
  .about__inner {
    padding-top: 270px;
  }
}
@media screen and (max-width: 767px) and (max-width: 410px) {
  .about__inner {
    padding-top: 240px;
  }
}
@media (max-width: 767px) {
  .about__text {
    width: 82%;
    margin-inline: auto;
  }
  .about__text:first-of-type {
    margin-top: 46px;
  }
  .about__content,
  .about__right {
    width: 100%;
  }
  .about__right {
    padding-left: 28px;
    padding-right: 30px;
  }
  .about__cooking {
    max-width: inherit;
  }
  .about__images {
    margin-right: -66px;
  }
  .about__bubble {
    max-width: inherit;
    width: 31%;
    margin-top: 37px;
    margin-right: -6px;
  }
  .about__puppet {
    max-width: inherit;
    width: 57%;
  }
  .scroll {
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 68px;
  }
  .scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
}
@media (max-width: 340px) {
  .about__title {
    font-size: 28px;
  }
  .about__highlight {
    font-size: 36px;
  }
}
/*==================== 
 CM
==================== */
.cm {
  background-color: #182546;
}
.cm .cm-wrap {
  background: url(../img/cm_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 126px;
  padding-bottom: 86px;
  margin-top: -122px;
  border-radius: 40px;
}

.cm__inner {
  padding-top: 80px;
}

.cm__container {
  max-width: 852px;
  margin-top: 26px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cm iframe {
  aspect-ratio: 812/458;
  width: 100%;
}

@media (max-width: 767px) {
  .cm-wrap {
    padding-top: 126px;
    padding-bottom: 90px;
  }
  .cm__inner {
    padding-top: 84px;
  }
  .cm__container {
    max-width: inherit;
    padding-left: 28px;
    padding-right: 28px;
  }
}
/*==================== 
 あとだし × 料理
==================== */
.cooking {
  padding-top: 140px;
  padding-bottom: 110px;
  background: #ffffff;
  position: relative;
}

.cooking__block {
  margin-top: 74px;
}

.cooking__block:first-of-type {
  margin-top: 40px;
}

.cooking__head {
  background: #fff100;
  max-width: 720px;
  border-radius: 77px;
  margin-inline: auto;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 21px;
  position: relative;
  display: flex;
  justify-content: center;
}

.cooking__head.cooking__head--orange {
  background: #ffce00;
}

.cooking__yuno {
  position: absolute;
  top: 0;
  left: 16px;
  width: 112px;
  height: 118px;
  overflow: hidden;
}

.cooking__yuno.cooking__yuno--right {
  right: 16px;
  top: -12px;
  width: 129px;
  height: 136px;
  left: inherit;
}

.cooking__yuno.cooking__yuno--third {
  top: 4px;
  left: 6px;
  width: 162px;
  height: 112px;
}

.cooking__title {
  font-size: 28px;
  font-family: "pop", sans-serif;
}

.cooking__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5714285714;
  margin-top: 6px;
}

.cooking__slider {
  margin-top: 16px;
}

.cooking__item {
  margin: 0 10px;
}

.cooking__image-container {
  position: relative;
  max-width: 236px;
  margin-inline: auto;
}

.cooking__image-container::after {
  position: absolute;
  content: "";
  right: -19px;
  bottom: -11px;
  width: 72px;
  height: 59px;
  background-size: cover;
  background-repeat: no-repeat;
}

.cooking__image-container.cooking__image-container--green::after {
  background: url(../img/cooking_green.svg);
}

.cooking__image-container.cooking__image-container--blue::after {
  background: url(../img/cooking_blue.svg);
}

.cooking__image-container.cooking__image-container--lightblue::after {
  background: url(../img/cooking_lightblue.svg);
}

.cooking__image-container.cooking__image-container--purple::after {
  background: url(../img/cooking_purple.svg);
}

.cooking__image-container.cooking__image-container--red::after {
  background: url(../img/cooking_red.svg);
}

.cooking__image-main {
  margin-top: 30px;
}

.cooking__image-sub {
  position: absolute;
  width: 90px;
  top: -33px;
  left: -33px;
}

.cooking__item-title {
  font-size: 18px;
  max-width: 198px;
  font-weight: bold;
  line-height: 1.2222222222;
  margin-top: 14px;
  text-align: center;
  margin-inline: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cooking__item-text {
  max-width: 242px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714285714;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .cooking {
    padding-top: 102px;
    padding-bottom: 90px;
  }
  .cooking__head {
    padding-top: 16px;
    padding-bottom: 9px;
    padding-right: 20px;
  }
  .cooking__head.cooking__head--orange {
    padding-right: 0;
    padding-left: 20px;
  }
  .cooking__yuno {
    max-width: 104px;
    height: auto;
    left: 13px;
    top: 6px;
  }
  .cooking__yuno.cooking__yuno--right {
    max-width: 119px;
    height: auto;
    top: -4px;
  }
  .cooking__yuno.cooking__yuno--third {
    max-width: 130px;
    height: auto;
    top: 10px;
    left: 0;
  }
  .cooking__title {
    font-size: 26px;
  }
}
@media (max-width: 550px) {
  .cooking__title {
    font-size: 22px;
  }
  .cooking__text {
    font-size: 12px;
  }
  .cooking__yuno {
    top: 0;
  }
  .cooking__yuno.cooking__yuno--right {
    top: -12px;
  }
}
@media (max-width: 450px) {
  .cooking__head {
    justify-content: center;
    align-items: center;
  }
  .cooking__head.cooking__head--orange {
    flex-direction: row-reverse;
  }
  .cooking__yuno,
  .cooking__yuno.cooking__yuno--right,
  .cooking__yuno.cooking__yuno--third {
    position: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
  }
}
@media (max-width: 390px) {
  .cooking__head {
    justify-content: flex-start;
  }
  .cooking__title {
    font-size: 22px;
    white-space: nowrap;
  }
  .cooking__text {
    font-size: 12px;
  }
}
/*==================== 
 おいしさのヒミツ
==================== */
.secret {
  border-radius: 40px;
  background: url(../img/secret_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 162px;
  padding-bottom: 92px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 40px;
  margin-top: -152px;
}

.secret__inner {
  padding-top: 100px;
}

.secret__contents {
  max-width: 1180px;
  margin-inline: auto;
}

.secret__items {
  display: flex;
  justify-content: space-between;
}

.secret__items:not(:first-child) {
  justify-content: center;
  margin-top: 36px;
  gap: 45px;
}

.secret__item {
  width: 33.3333333333%;
}

.secret__item.secret__item--green {
  max-width: 361px;
}

.secret__item:nth-child(2) {
  margin-top: 70px;
}

.secret__item:nth-child(3) {
  margin-left: -26px;
}

.secret__items:not(:first-child) .secret__item:nth-child(2) {
  margin-left: 0;
  margin-top: 0;
}

.secret__item-head {
  width: 85%;
  position: relative;
  margin-left: auto;
}

.secret__item-head.secret__item-head--green {
  margin-left: 0;
  margin-right: auto;
}

.secret__container {
  display: flex;
  justify-content: space-between;
}

.secret__puppet {
  width: 30%;
}

.secret__text-block {
  width: 70%;
}

.secret__text {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 500;
  width: 70%;
  margin-top: 18px;
}

.secret__text-block .secret__text {
  width: 100%;
}

.secret__text.secret__text--small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6666666667;
  margin-top: 9px;
}

.secret__text.secret__text--small:not(:last-of-type) {
  margin-top: 13px;
}

.secret__ul {
  margin-top: 21px;
}

.secret__li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  position: relative;
  padding-left: 16px;
}

.secret__li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #cc0b19;
}

.secret__li:nth-child(2)::before {
  background: #147c1d;
}

.secret__li:nth-child(3)::before {
  background: #1b36b4;
}

.secret__li:nth-child(4)::before {
  background: #3aaef9;
}

@media (max-width: 1024px) {
  .secret__text,
  .secret__li {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .secret__text,
  .secret__ul,
  .secret__text.secret__text--small:not(:last-of-type) {
    margin-top: 10px;
  }
  .secret__li {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .secret {
    padding-top: 156px;
    padding-bottom: 126px;
    padding-left: 0;
    padding-right: 0;
    background: url(../img/secret_background_sp.png);
    background-size: cover;
  }
  .secret__inner {
    padding-top: 98px;
  }
  .secret__container {
    position: relative;
  }
  .secret__items {
    flex-direction: column;
    gap: 24px;
    margin-top: 37px;
    overflow: hidden;
  }
  .secret__puppet.secret__puppet--green {
    left: inherit;
    right: -30px;
  }
  .secret__text,
  .secret__text-block {
    max-width: 308px;
    margin-left: auto;
    padding-right: 36px;
  }
  .secret__text-block .secret__text {
    padding-right: 0;
    max-width: inherit;
  }
  .secret__ul {
    padding-left: 36px;
  }
  .secret__text.secret__text--green {
    margin-left: 0;
    margin-right: auto;
    padding-right: 0;
    padding-left: 36px;
  }
  .secret__item-head,
  .secret__item-head.secret__item-head--green {
    margin-inline: auto;
  }
  .secret__item,
  .secret__item:nth-child(2),
  .secret__item:nth-child(3),
  .secret__items:not(:first-child) .secret__item:nth-child(2) {
    max-width: 372px;
    width: 100%;
    margin-inline: auto;
  }
  .secret__item:nth-child(2),
  .secret__items:not(:first-child) .secret__item:nth-child(1) {
    margin-top: 0;
  }
}
/*==================== 
 ラインナップ
==================== */
.lineup {
  background: #ffffff;
  border-radius: 40px;
  padding-top: 94px;
  padding-bottom: 116px;
  position: relative;
}

.lineup__inner {
  max-width: 878px;
  max-width: 1054px;
  margin-top: 52px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.lineup__items {
  max-width: 878px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(394px, 1fr));
  row-gap: 34px;
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}

.lineup__item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
  z-index: 1;
  padding-bottom: 25px;
  padding-right: 40px;
}

.lineup__item.lineup__item--reverse {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 40px;
}

.lineup__item::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 90%;
  height: 170px;
  background: #fff2f3;
  z-index: -1;
}

.lineup__item.lineup__item--reverse::after {
  right: inherit;
  left: 0;
}

.lineup__item.lineup__item--green::after {
  background: #edf7ee;
}

.lineup__item.lineup__item--blue::after {
  background: #edf0ff;
}

.lineup__item.lineup__item--lightblue::after {
  background: #eff9ff;
}

.lineup__item.lineup__item--purple::after {
  background: #f6e7fa;
}

.lineup__image {
  width: 101px;
  position: relative;
  z-index: 1;
}

.lineup__image::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -25px;
  width: 74px;
  height: 74px;
  background: url(../img/lineup_item-red.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.lineup__image.lineup__image--green::before,
.lineup__image.lineup__image--lightblue::before {
  left: inherit;
  right: -25px;
}

.lineup__image.lineup__image--green::before {
  background: url(../img/lineup_item-green.png);
  background-size: cover;
}

.lineup__image.lineup__image--blue::before {
  background: url(../img/lineup_item-blue.png);
  background-size: cover;
}

.lineup__image.lineup__image--lightblue::before {
  background: url(../img/lineup_item-lightblue.png);
  background-size: cover;
}

.lineup__image.lineup__image--purple::before {
  background: url(../img/lineup_item-purple.png);
  background-size: cover;
}

.lineup__content {
  max-width: 211px;
}

.lineup__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
  color: #cc0b19;
  padding-left: 30px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 1px dashed #cc0b19;
}

.lineup__title.lineup__title--green {
  color: #147c1d;
  border-bottom: 1px dashed #147c1d;
}

.lineup__title.lineup__title--blue {
  color: #1b36b4;
  border-bottom: 1px dashed #1b36b4;
}

.lineup__title.lineup__title--lightblue {
  color: #3aaef9;
  border-bottom: 1px dashed #3aaef9;
}

.lineup__title.lineup__title--purple {
  color: #924b96;
  border-bottom: 1px dashed #924b96;
}

.lineup__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/lineup_item-title.png);
  background-size: cover;
}

.lineup__title.lineup__title--green::before {
  background: url(../img/lineup_item-title-green.png);
  background-size: cover;
}

.lineup__title.lineup__title--blue::before {
  background: url(../img/lineup_item-title-blue.png);
  background-size: cover;
}

.lineup__title.lineup__title--lightblue::before {
  background: url(../img/lineup_item-title-lightblue.png);
  background-size: cover;
}

.lineup__title.lineup__title--purple::before {
  background: url(../img/lineup_item-title-purple.png);
  background-size: cover;
}

.lineup__text {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 500;
  margin-top: 16px;
}

.lineup__bottom {
  width: 46%;
  position: absolute;
  bottom: -116px;
  right: 0;
}

.lineup__bottom-head {
  max-width: 442px;
  margin-inline: auto;
}

.lineup__puppet {
  width: 52%;
  margin-inline: auto;
  margin-top: -40px;
  position: relative;
}

.lineup__puppet::before,
.lineup__puppet::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 90px;
  height: 74px;
}

.lineup__puppet::before {
  left: -110px;
  background: url(../img/lineup_puppet_ornament.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.lineup__puppet::after {
  right: -110px;
  background: url(../img/lineup_puppet_ornament.png);
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotateY(180deg);
}

@media (max-width: 820px) {
  .lineup {
    padding-bottom: 0;
  }
  .lineup__inner {
    padding: 0;
  }
  .lineup__items {
    max-width: 394px;
  }
  .lineup__bottom {
    position: inherit;
    width: 100%;
    bottom: 0;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .lineup {
    padding-top: 106px;
    overflow: hidden;
  }
  .lineup__items {
    row-gap: 40px;
  }
  .lineup__bottom-head {
    max-width: inherit;
    width: 91%;
  }
  .lineup__puppet {
    width: 51%;
  }
  .lineup__puppet::before,
  .lineup__puppet::after {
    width: 72px;
    height: 59px;
    top: inherit;
    bottom: 40px;
  }
  .lineup__puppet::after {
    right: -98px;
  }
  .lineup__puppet::before {
    left: -80px;
  }
}
@media (max-width: 400px) {
  .lineup__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*==================== 
 footer
==================== */
.footer {
  background: #b50d18;
}

.footer__top {
  max-width: 868px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 124px;
  padding-bottom: 66px;
  margin-top: -66px;
}

.footer__container {
  display: flex;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 44.5%;
  border-right: 1px dashed #ffffff;
}

.footer__title {
  font-size: 20px;
  font-family: "pop", sans-serif;
  color: #ffffff;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__menu {
  display: flex;
  gap: 18px;
}

.footer__li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  padding-left: 36px;
}

.footer__bottom {
  text-align: center;
  background: url(../img/footer_bottom_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 24px;
  border-radius: 40px 40px 0 0;
}

.footer__logo {
  max-width: 241px;
  margin-inline: auto;
}

.footer__copyright {
  font-size: 10px;
  margin-top: 14.5px;
  line-height: 4.2;
}

@media (max-width: 820px) {
  .footer__container {
    flex-direction: column;
  }
  .footer__left {
    width: 100%;
    flex-direction: column;
    gap: 13px;
    border-right: none;
    border-bottom: 1px dashed #ffffff;
    padding-bottom: 35px;
  }
  .footer__menu {
    flex-direction: column;
    gap: 0;
    padding-top: 24px;
  }
  .footer__li {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer__top {
    margin-top: -44px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 62px;
  }
}
/*==================== 
 スライダー
==================== */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.dots__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}

.dots__wrap li {
  width: 12px;
  height: 12px;
  margin: 0 7px;
  background: #a0a0a0;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}

.dots__wrap li.slick-active {
  background: none;
  border: 4px solid #e1222f;
  box-sizing: content-box;
}

.dots__wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

/*==================== 
 パペットの動き
==================== */
.is-puppet {
  animation: puppet 1s steps(2, start) infinite;
}

@keyframes puppet {
  0% {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(-10deg);
  }
}
/*==================== 
 POPの動き
==================== */
main .is--pop {
  opacity: 0;
}

main .is--pop.active {
  opacity: 1;
  animation: pop 0.8s ease-out;
  animation-fill-mode: forwards;
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/*==================== 
 TOPに戻るボタン
==================== */
.back_top {
  width: 78px;
  height: 78px;
  position: fixed;
  right: 34px;
  bottom: 93px;
  z-index: 9998;
}

@media (max-width: 767px) {
  .back_top {
    bottom: 50px;
    right: 0;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.fv {
  position: relative;
}
.fv .bnr {
  position: absolute;
  z-index: 100;
  top: 28.5505124451vw;
  right: 0;
  text-align: right;
}
@media screen and (max-width: 1186px) {
  .fv .bnr {
    top: 32.9428989751vw;
  }
}
@media screen and (max-width: 990px) {
  .fv .bnr {
    top: 41.7276720351vw;
  }
}
@media screen and (max-width: 767px) {
  .fv .bnr {
    top: 182.0512820513vw;
  }
}
@media screen and (max-width: 550px) {
  .fv .bnr {
    top: 171.7948717949vw;
  }
}
@media screen and (max-width: 410px) {
  .fv .bnr {
    top: 161.5384615385vw;
  }
}
.fv .bnr img {
  width: 10.980966325vw;
}
@media screen and (max-width: 767px) {
  .fv .bnr img {
    width: 270px;
  }
}
@media screen and (max-width: 380px) {
  .fv .bnr img {
    width: 75%;
  }
}

.aidea {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 120px 0 70px;
  background-color: #182546;
  border-radius: 0 0 40px 40px;
}
@media screen and (max-width: 1000px) {
  .aidea {
    padding: 16vw 0 7vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea {
    padding: 25.641025641vw 0 23.0769230769vw;
    border-radius: 0 0 10.2564102564vw 10.2564102564vw;
  }
}
.aidea .aidea-inner {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .aidea .aidea-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .aidea .aidea-inner {
    padding-left: 1.2820512821vw;
    padding-right: 1.2820512821vw;
  }
}
.aidea .top-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box {
    gap: 0 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box {
    flex-direction: column;
    gap: 30px 0;
  }
}
.aidea .top-box .left {
  flex-shrink: 0;
  width: 495px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left {
    width: 49.5vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left {
    width: 100%;
  }
}
.aidea .top-box .left .img {
  text-align: center;
}
.aidea .top-box .left .img img {
  width: 370px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .img img {
    width: 37vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .img img {
    width: 80.7692307692vw;
  }
}
.aidea .top-box .left .text01 {
  margin-top: 30px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .text01 {
    margin-top: 3vw;
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .text01 {
    margin-top: 7.6923076923vw;
    font-size: 3.5897435897vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .img {
    position: relative;
    width: 71.7948717949vw;
    margin: 7.6923076923vw auto 0;
    text-align: center;
  }
  .aidea .top-box .left .img .circle {
    position: absolute;
    top: -3.8461538462vw;
    left: -10.7692307692vw;
    width: 33.3333333333vw;
  }
}
.aidea .top-box .left .box01 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 150px;
  margin-top: 35px;
  padding: 0 50px 0 70px;
  background-color: #fff;
  border-radius: 9999px;
  color: #182546;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .box01 {
    height: 15vw;
    margin-top: 3.5vw;
    padding: 0 5vw 0 7vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .box01 {
    margin-right: -1.2820512821vw;
    width: calc(100% + 1.2820512821vw);
    height: 43.5897435897vw;
    padding: 0 7.6923076923vw 0 12.8205128205vw;
    border-radius: 9999px 0 0 9999px;
  }
}
.aidea .top-box .left .box01 .box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
}
.aidea .top-box .left .box01 .box-head .box-title {
  font-family: "pop", sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .box01 .box-head .box-title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .box01 .box-head .box-title {
    padding-left: 3.8461538462vw;
    font-size: 5.1282051282vw;
  }
}
.aidea .top-box .left .box01 .box-head .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  padding-left: 25px;
  border-left: 1px solid #c6c6c6;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .box01 .box-head .sns {
    gap: 0 2vw;
    padding-left: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .box01 .box-head .sns {
    gap: 0 6.4102564103vw;
    border-left: none;
  }
}
.aidea .top-box .left .box01 .box-head .sns img {
  width: 36px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .box01 .box-head .sns img {
    width: 3.6vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .box01 .box-head .sns img {
    width: 9.2307692308vw;
  }
}
.aidea .top-box .left .box01 .text02 {
  margin-top: 15px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .left .box01 .text02 {
    margin-top: 1.5vw;
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .left .box01 .text02 {
    margin-top: 3.8461538462vw;
    font-size: 3.0769230769vw;
  }
}
.aidea .top-box .right {
  position: relative;
  flex-shrink: 0;
  width: 400px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .right {
    width: 40vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .top-box .right {
    width: 100%;
    text-align: center;
  }
  .aidea .top-box .right img {
    width: 71.7948717949vw;
  }
}
.aidea .top-box .right .circle {
  position: absolute;
  top: -42px;
  left: -56px;
  width: 185px;
}
@media screen and (max-width: 1000px) {
  .aidea .top-box .right .circle {
    top: -4.2vw;
    left: -5.6vw;
    width: 18.5vw;
  }
}
.aidea .btm-box {
  margin-top: 100px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box {
    margin-top: 35.8974358974vw;
  }
}
.aidea .btm-box .list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list {
    flex-direction: column;
    gap: 30.7692307692vw 0;
  }
}
.aidea .btm-box .list .item {
  width: 28.6%;
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item {
    width: 100%;
  }
}
.aidea .btm-box .list .item:nth-of-type(1) .rec img {
  width: 126px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item:nth-of-type(1) .rec img {
    width: 10.08vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item:nth-of-type(1) .rec img {
    width: 33.3333333333vw;
  }
}
.aidea .btm-box .list .item:nth-of-type(2) .rec img {
  width: 129px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item:nth-of-type(2) .rec img {
    width: 10.32vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item:nth-of-type(2) .rec img {
    width: 33.3333333333vw;
  }
}
.aidea .btm-box .list .item.comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 100%;
  border: 6px solid #816716;
  border-radius: 20px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item.comingsoon {
    border-radius: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item.comingsoon {
    height: 94.8717948718vw;
    border-radius: 5.1282051282vw;
    border-width: 1.5384615385vw;
  }
}
.aidea .btm-box .list .item.comingsoon p {
  font-size: 26px;
  color: #816716;
  font-family: "pop", sans-serif;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item.comingsoon p {
    font-size: 2.08vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item.comingsoon p {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .movie {
    width: 82.0512820513vw;
    margin: 0 auto;
  }
}
.aidea .btm-box .list .item .movie .movie-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 20px;
}
.aidea .btm-box .list .item .movie .movie-inner p {
  font-size: 23px;
  font-weight: bold;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .movie .movie-inner p {
    font-size: 1.84vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .movie .movie-inner p {
    font-size: 5.1282051282vw;
  }
}
.aidea .btm-box .list .item .movie .movie-inner .rec {
  position: absolute;
  top: -45px;
  left: -45px;
}
@media screen and (max-width: 1300px) {
  .aidea .btm-box .list .item .movie .movie-inner .rec {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .movie .movie-inner .rec {
    top: -10.2564102564vw;
    left: -6.4102564103vw;
  }
}
.aidea .btm-box .list .item .movie .movie-inner .dot {
  position: absolute;
  bottom: -16px;
  right: -27px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .movie .movie-inner .dot {
    bottom: -1.28vw;
    right: -2.16vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .movie .movie-inner .dot {
    bottom: -4.358974359vw;
    right: -8.9743589744vw;
  }
}
.aidea .btm-box .list .item .movie .movie-inner .dot img {
  width: 106px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .movie .movie-inner .dot img {
    width: 8.48vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .movie .movie-inner .dot img {
    width: 25.641025641vw;
  }
}
.aidea .btm-box .list .item .item-title {
  margin-top: 25px;
  font-size: 20px;
  font-family: "pop", sans-serif;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .item-title {
    margin-top: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .item-title {
    margin-top: 10.2564102564vw;
    padding: 0 7.6923076923vw;
    font-size: 5.1282051282vw;
  }
}
.aidea .btm-box .list .item .item-desc {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .item-desc {
    margin-top: 1.2vw;
    font-size: 1.12vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .item-desc {
    margin-top: 3.8461538462vw;
    padding: 0 7.6923076923vw;
    font-size: 3.5897435897vw;
  }
}
.aidea .btm-box .list .item .comment {
  position: relative;
  margin-top: 25px;
}
.aidea .btm-box .list .item .comment::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -28px;
  width: 92px;
  height: 92px;
  background-image: url("../img/kenta-icn-face.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .comment::before {
    right: -2.24vw;
    width: 7.36vw;
    height: 7.36vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .comment::before {
    bottom: -2.5641025641vw;
    right: 1.2820512821vw;
    width: 23.0769230769vw;
    height: 23.0769230769vw;
  }
}
.aidea .btm-box .list .item .comment .balloon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 290px;
  min-height: 133px;
  padding: 20px 40px 20px 25px;
  background-image: url("../img/kenta-balloon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .comment .balloon {
    width: 23.2vw;
    min-height: 10.64vw;
    padding: 1.6vw 3.2vw 1.6vw 2vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .comment .balloon {
    width: 74.358974359vw;
    min-height: 34.1025641026vw;
    padding: 5.1282051282vw 10.2564102564vw 5.1282051282vw 6.4102564103vw;
  }
}
.aidea .btm-box .list .item .comment .balloon p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .list .item .comment .balloon p {
    font-size: 1.12vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .list .item .comment .balloon p {
    font-size: 3.5897435897vw;
  }
}
.aidea .btm-box .last-text {
  position: relative;
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .last-text {
    margin-top: 5.6vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .last-text {
    margin-top: 20.5128205128vw;
  }
}
.aidea .btm-box .last-text::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -33px;
  width: 548px;
  height: 198px;
  background-image: url("../img/kenta-triangle.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .last-text::before {
    top: -2.64vw;
    width: 43.84vw;
    height: 15.84vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .last-text::before {
    top: 23.0769230769vw;
    width: 94.1025641026vw;
    height: 34.1025641026vw;
  }
}
.aidea .btm-box .last-text span {
  position: relative;
  z-index: 2;
  font-family: "pop", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 38px;
}
@media screen and (max-width: 1250px) {
  .aidea .btm-box .last-text span {
    font-size: 3.04vw;
  }
}
@media screen and (max-width: 767px) {
  .aidea .btm-box .last-text span {
    font-size: 8.7179487179vw;
  }
}

.modal {
  position: fixed;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.5s opacity, 0.5s zIndex, 0.5s visibility;
}
.modal.active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  position: relative;
}
.modal .modal-content .close {
  position: absolute;
  top: -35px;
  right: 0;
}
.modal .modal-content .close img {
  width: 30px;
}
.modal .modal-content .modal-inner {
  width: fit-content;
  max-height: 80vh;
  overflow-y: auto;
}
.modal .modal-content .movie iframe {
  width: 500px;
  height: 80vh;
}
@media screen and (max-width: 767px) {
  .modal .modal-content .movie iframe {
    width: 76.9230769231vw;
    height: 70vh;
  }
}
