@charset "UTF-8";
/* ===== CSS基本リセット ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'ryo-gothic-plusn', sans-serif;
  font-style: normal;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* ===== リスト系リセット ===== */
ul,
ol {
  list-style: none;
}

/* ===== リンク初期設定 ===== */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== 画像の初期設定 ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== ボタンのリセット ===== */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ===== テーブル初期設定 ===== */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ===== フォーム要素のフォント継承 ===== */
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* *********************************
 共通項目
****************************** */
.title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: fit-content;
}
.s .title {
  width: 84.44vw;
}
.title--padding-top {
  padding-top: 6.56%;
}
.s .title--padding-top {
  padding-top: 8.66%;
}

.wave {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-1px);
}
.wave-divider--bottom {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transform: translateY(3px);
}

.btn {
  position: relative;
  display: flex;
  gap: 40px;
  background-color: #fff;
  border-radius: 100px;
  border: solid 2px #000;
  padding: 16px 0;
  font-size: 1.56vw;
  font-weight: 700;
  width: 100%;
  box-shadow: 8px 8px 0px 0px #ff6000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.s .btn {
  gap: 34px;
  border-radius: 100px;
  border: solid 1.67px #000;
  padding: 3.092% 0;
  font-size: 3.33vw;
  width: 100%;
  box-shadow: 6px 6px 0px 0px #ff6000;
}
.btn:hover,
.btn:active {
  background-color: #ffff58;
}
.btn::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 30px;
  position: absolute;
  right: 10%;
  background-image: url(../imgs/button-arrow.svg);
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.s .btn::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 3vw;
  height: 5vw;
  right: 10%;
  background-image: url(../imgs/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn:hover:after {
  transform: translateX(5px);
}

.sp {
  display: none;
}
.pc {
  display: block;
}
.s .sp {
  display: block;
}
.s .pc {
  display: none;
}

/* spのみ */
.s .btn img {
  width: 6.8vw;
}

.s .text--margin {
  margin-left: 1rem;
}

/* メニュー */
.menu {
  position: fixed;
  top: -2px;
  right: -2px;
  padding: 3.1vw 3.1vw 3.9vw 3.1vw;
  background-color: #ffffc5;
  border-radius: 0 0 0 40px;
  border: #000 solid 2px;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 100;
}
.s .menu {
  top: -1px;
  right: -1px;
  padding: 8.6vw 8.6vw 7.3vw 8.6vw;
  border-radius: 0 0 0 30px;
  border: #000 solid 1px;
}
.menu._acitve {
  transform: translateX(0);
}

.menu-title {
  width: 6.2vw;
}
.s .menu-title {
  width: 26.6vw;
}

.menu-list {
  padding-top: 3.6vw;
  width: 25.2vw;
  display: flex;
  flex-direction: column;
  row-gap: 2.8vw;
}
.s .menu-list {
  padding-top: 8.6vw;
  width: 100%;
  row-gap: 10.6vw;
}

.menu-list li {
  width: fit-content;
  height: 3.2vw;
}
.s .menu-list li {
  height: 10.2vw;
}

.menu-list li img {
  width: auto;
  height: 100%;
}

.menu-item {
  text-decoration-skip-ink: auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1vw;
}
.menu-item img:nth-child(2) {
  display: inline-block;
  width: 2.08vw;
  height: 1.35vw;
  transition: transform 0.2s;
}

.s .menu-item img:nth-child(2) {
  width: 5.33vw;
  height: 3.46vw;
}

.menu-item:hover img:nth-child(2),
.menu-item:active img:nth-child(2) {
  transform: translateY(0.3vw);
}

.menu-item:hover,
.menu-item:active {
  opacity: 0.75;
}

.menu-bottom {
  width: 20.5vw;
  margin: 3.6vw auto 0;
}
.s .menu-bottom {
  width: 70.5vw;
  margin: 12.6vw auto 0;
}

.menu-open {
  position: fixed;
}
.menu-close {
  position: absolute;
}
.menu-open,
.menu-close {
  width: 6.2vw;
  top: 1.5vw;
  right: 1.5vw;
  z-index: 99;
  cursor: pointer;
}
.s .menu-open,
.s .menu-close {
  width: 14.4vw;
  top: 2.6vw;
  right: 2.6vw;
}

/* 追従ボタン */
.follow-btn {
  position: fixed;
  bottom: 1.5vw;
  right: 1.5vw;
  width: 6.2vw;
  z-index: 99;
  display: none;
}
.s .follow-btn {
  bottom: 2.6vw;
  right: 2.6vw;
  width: 14.4vw;
}

/**********************************
 main
****************************** */
main {
  overflow: hidden;
}

/**********************************
 about
****************************** */
.about {
  position: relative;
  background-color: #ffffc5;
  padding: 9.73vw 0 8.85vw 0;
}
.s .about {
  padding: 10.73vw 0 10.73vw 0;
}

.about__text {
  font-size: 1.56vw;
  font-weight: 900;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.2em;
  line-height: 2;
  z-index: 2;
}
.m .about__text {
  font-size: 1.73vw;
}
.s .about__text {
  font-size: 3.333vw;
  font-weight: 900;
  text-align: center;
  width: 81.86%;
  margin: 0 auto;
  letter-spacing: 0.02em;
  line-height: 2;
}

.about-deco {
  position: absolute;
  z-index: 0;
  width: fit-content;
}
.about-deco--v1 {
  width: 9.84vw;
  bottom: 19%;
  left: 6%;
}
.about-deco--v2 {
  width: 6.35vw;
  top: 9%;
  right: 11%;
}
.about-deco--v3 {
  width: 9.79vw;
  top: 50%;
  right: 5%;
}
.s .about-deco--v1 {
  width: 12.66vw;
  bottom: 21%;
  left: 0%;
}
.s .about-deco--v2 {
  width: 8.13vw;
  top: 12%;
  right: 25%;
}
.s .about-deco--v3 {
  width: 9.6vw;
  top: 65%;
  right: 9%;
}

/* *********************************
play
****************************** */
.play {
  position: relative;
  background-color: #ffe4ef;
  z-index: 1;
  padding-bottom: 9.53%;
}
.play::after {
  content: '';
  background-image: url(../imgs/play-bg.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: center 10%;
  z-index: -1;
}

.play__title {
  width: 65.78vw;
}
.s .play__title {
  width: 84.26vw;
}

.play__item-wrap {
  background-color: #fff;
  width: 79.16vw;
  margin: 0 auto;
  position: relative;
  padding: 5.2vw 3.22vw;
}
.s .play__item-wrap {
  width: 89.33vw;
  margin: 0 auto;
  padding: 0;
}

.play-deco {
  position: absolute;
}

/* guest */
.play__item-wrap--guest {
  background-image: url(../tamano/images/guest-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  row-gap: 1.25vw;
  margin-top: 1.56vw;
}
.s .play__item-wrap--guest {
  padding: 0 8.13vw 14.66vw;
  background-image: url(../tamano/images/guest-bg_sp.png);
  gap: 0;
  margin-top: 1.86vw;
}

.guest {
  width: 50.59%;
  position: relative;
}
.s .guest {
  width: 100%;
}
.guest p {
  background-image: url(../imgs/play-name-bg.png);
  background-size: 100% 100%;
  font-size: 1.04vw;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: bold;
  width: 74%;
  margin: 0.92vw auto 0;
  padding: 1.31% 0;
}
.s .guest p {
  width: 100%;
  font-size: 2.66vw;
  margin: 1.86vw auto 0;
}
.guest p span {
  font-size: 1.56vw;
}
.s .guest p span {
  font-size: 4vw;
}
.guest__time {
  width: 36.32%;
  position: absolute;
  top: -33%;
  left: 0;
}
.guest__time--reverse {
  width: 36.32%;
  position: absolute;
  top: -33%;
  right: 0;
}
.s .guest__time--reverse {
  width: 36.32%;
  position: absolute;
  top: -33%;
  left: 0;
}

.guest-item {
  position: relative;
  display: flex;
  column-gap: 3.12vw;
  width: 100%;
  align-items: center;
}
.s .guest-item {
  flex-direction: column-reverse;
  gap: 16vw;
  padding-top: 14.66vw;
}
.guest-item--reverse {
  flex-direction: row-reverse;
}

.guest-comment {
  background-image: url(../tamano/images/guest-comment-left.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 29.14%;
  aspect-ratio: 3 / 1;
  position: relative;
  font-weight: bold;
  font-size: 2.91vw;
}
.guest-comment--reverse {
  background-image: url(../tamano/images/guest-comment-right.png);
}
.s .guest-comment,
.s .guest-comment--reverse {
  background-image: url(../tamano/images/guest-comment_sp.png);
  width: 56.8%;
  background-size: 100% 100%;
  aspect-ratio: 3 / 1.5;
}
.guest-comment p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 100%;
}
.s .guest-comment p {
  font-size: 6.93vw;
  top: 44%;
}

.guest-deco--v1 {
  position: absolute;
  bottom: 0%;
  right: 38%;
  width: 6.71%;
}
.s .guest-deco--v1 {
  width: 9.86vw;
  top: 16%;
  left: unset;
  bottom: unset;
  right: 4%;
}
.guest-deco--v2 {
  position: absolute;
  bottom: -5%;
  right: 10%;
  width: 14.93%;
}
.s .guest-deco--v2 {
  width: 14.4vw;
  bottom: -17%;
}

.play-next {
  width: 30.78vw;
  margin: 1.82vw auto 0;
}
.s .play-next {
  width: 57.46%;
  margin: 4.66vw auto 0;
}

/* 遊ぶ グルメ */
.play__item-wrap--gurume {
  background-image: url(../tamano/images/gurume-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 1.82vw auto 0;
  padding: 4.68vw 0;
}
.s .play__item-wrap--gurume {
  background-image: url(../tamano/images/gurume-bg_sp.png);
  margin: 4.66vw auto 0;
  padding: 2.66vw 0 9.33vw 0;
}
.play__item-wrap--gurume h3 {
  font-size: 5vw;
  color: #1ab800;
  font-weight: 900;
  text-align: center;
}
.s .play__item-wrap--gurume h3 {
  font-size: 7.33vw;
}

.gurume-deco--v1 {
  top: -7%;
  left: 3%;
  width: 16%;
}
.s .gurume-deco--v1 {
  top: -3%;
  left: 5%;
}

.gurume__item__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 8.59vw;
}
.s .gurume__item__wrap {
  flex-direction: column;
  margin-top: 10.8vw;
}

.gurume__title-wrap {
  position: relative;
}
.gurume-deco {
  position: absolute;
}
.gurume-deco--heavy--v1 {
  width: 5.78vw;
  top: -120%;
  right: 6%;
}
.s .gurume-deco--heavy--v1 {
  width: 8.13vw;
  top: -75%;
  right: 15%;
}
.gurume-deco--heavy--v2 {
  width: 4.2vw;
  bottom: -76%;
  left: 5%;
}
.s .gurume-deco--heavy--v2 {
  width: 5.6vw;
  bottom: -59%;
  left: 19%;
}
.gurume-deco--light--v1 {
  width: 4.6vw;
  top: -157%;
  right: 9%;
}
.s .gurume-deco--light--v1 {
  width: 7vw;
  top: -100%;
  right: 16%;
}
.gurume-deco--light--v2 {
  width: 3.48vw;
  bottom: -40%;
  left: 7%;
}
.s .gurume-deco--light--v2 {
  width: 6.26vw;
  bottom: -40%;
  left: 16%;
}
.gurume__title {
  font-size: 5.3vw;
  font-weight: 900;
  text-align: center;
}
.s .gurume__title {
  font-size: 8.26vw;
}
.gurume__title--heavy {
  color: #ff1d7a;
}
.gurume__title--light {
  color: #228cff;
}

.gurume--heavy,
.gurume--light {
  flex: 50%;
}
.s .gurume--light {
  margin-top: 20.53%;
}
.gurume--heavy ul,
.gurume--light ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8.42vw;
  margin-top: 6.57%;
}

.gurume__item {
  width: 100%;
}
.gurume__item div {
  width: 75.37%;
  margin: 0 auto;
}
.gurume__item picture {
  width: 52.63%;
  margin: 0 auto;
}
.s .gurume__item picture {
  width: 68.65%;
}
.gurume__item-name {
  text-align: center;
  width: 59.86%;
  margin: 4.6vw auto 0;
  padding: 3.3% 0;
}
.gurume--heavy .gurume__item-name {
  font-size: 2.6vw;
  font-weight: 500;
  color: #fff;
  background-color: #ff1d7a;
}
.s .gurume--heavy .gurume__item-name {
  font-size: 5vw;
}
.gurume--light .gurume__item-name {
  font-size: 2.6vw;
  font-weight: 500;
  color: #fff;
  background-color: #228cff;
}
.s .gurume--light .gurume__item-name {
  font-size: 5vw;
}
.gurume__item-description {
  font-size: 1.6vw;
  font-weight: 500;
  text-align: center;
  margin-top: 4.6%;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.s .gurume__item-description {
  font-size: 3.33vw;
}

.play-deco--v1 {
  width: 17.08vw;
  position: absolute;
  top: -2%;
  right: -13%;
}
.s .play-deco--v1 {
  width: 19.1vw;
  top: -1%;
  right: -6%;
}
.play-deco--v2 {
  width: 5.88vw;
  position: absolute;
  top: 25%;
  left: -10%;
}
.play-deco--v3 {
  width: 4.79vw;
  position: absolute;
  bottom: 27%;
  right: -10%;
}
.play-deco--v4 {
  width: 7.5vw;
  position: absolute;
  bottom: -50%;
  left: -12%;
}
.m .play-deco--v4 {
  bottom: -90%;
}
.play-deco--v5 {
  width: 10.26vw;
  top: 5%;
  right: 8%;
}
.s .play-deco--v5 {
  top: 6%;
  right: 7%;
}
.play-deco--v6 {
  width: 5.83vw;
  bottom: 19%;
  right: -2%;
}
.s .play-deco--v6 {
  width: 9vw;
  bottom: 42%;
  right: 5%;
}
.play-deco--v7 {
  width: 4.94vw;
  top: 50%;
  left: 0%;
}
.s .play-deco--v7 {
  width: 9.8vw;
  top: unset;
  bottom: 48%;
  left: 5%;
}
.play-deco--v8 {
  width: 5.1vw;
  bottom: 30%;
  right: -3%;
}
.s .play-deco--v8 {
  width: 9.46vw;
  bottom: 37%;
  right: 4%;
}
.play-deco--v9 {
  width: 4.73vw;
  top: 31%;
  left: 43%;
}
.s .play-deco--v9 {
  width: 12.26vw;
  top: 5%;
  left: unset;
  right: 14%;
}
.play-deco--v10 {
  width: 7.91vw;
  bottom: 2%;
  right: 33%;
}
.s .play-deco--v10 {
  width: 17vw;
  bottom: 30%;
  right: unset;
  left: 0;
}
.play-deco--v11 {
  width: 11.77%;
  bottom: 15%;
  left: -4%;
}
.s .play-deco--v11 {
  width: 11.73vw;
  bottom: -14%;
  left: unset;
  right: 6%;
}
.play-deco--v12 {
  width: 5.46vw;
  bottom: 44%;
  right: -7%;
}
.s .play-deco--v12 {
  width: 9.73vw;
  top: 3%;
  left: 2%;
  bottom: unset;
  right: unset;
}

.play__incidentally {
  width: 79.16vw;
  margin: 1.5vw auto 0;
  position: relative;
}
.s .play__incidentally {
  width: 89.33vw;
  margin: 2.5vw auto 0;
  position: relative;
}

/* SPのみ */
.s .gurume_heavy-light {
  width: 56.91%;
  margin: 1.49% auto 0;
}

/* model */
.model {
  position: relative;
  z-index: 1;
}
.s .model {
  padding-bottom: 12.93%;
}

.model__items-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  width: 79.16vw;
  margin: 0 auto;
  justify-content: flex-start;
}
.s .model__items-wrap {
  flex-direction: column;
  padding-top: 12.733%;
  gap: 25px;
  width: 89.33%;
  margin: 0 auto;
}

.model__items-wrap:first-of-type {
  padding-top: 3.34%;
}
.s .model__items-wrap:first-of-type {
  padding-top: 12.733%;
}

.model__title {
  width: 48.59vw;
}
.s .model__title {
  width: 63.2vw;
}
.s .model__title.title--padding-top {
  padding-top: 21.22vw;
}

.model__text-warp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.56vw;
  align-items: flex-start;
}
.s .model__text-warp {
  align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.model__text-warp--v4 {
  margin-bottom: 5.2vw;
}

.model__text-order {
  font-size: 1.56vw;
  font-weight: 900;
  display: flex;
  align-items: flex-end;
  gap: 25px;
  letter-spacing: 0.15em;
}
.m .model__text-order {
  font-size: 1.644vw;
  gap: 25px;
}
.s .model__text-order {
  font-size: 5.06vw;
  gap: 20px;
  letter-spacing: 0.15em;
  align-items: center;
}

.model__number--v1 {
  width: 1.11vw;
}
.s .model__number--v1 {
  width: 1.6vw;
}
.model__number--v2 {
  width: 2vw;
}
.s .model__number--v2 {
  width: 3.86vw;
}
.model__number--v3 {
  width: 2.1vw;
}
.s .model__number--v3 {
  width: 3.86vw;
}
.model__number--v4 {
  width: 2.44vw;
}
.s .model__number--v4 {
  width: 4.66vw;
}

.model__text {
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.m .model__text {
  font-size: 1.5vw;
  font-weight: 700;
}
.s .model__text {
  font-size: 3.33vw;
  letter-spacing: 0.05em;
}

.model__img-wrap {
  position: relative;
  width: 43.35%;
}
.s .model__img-wrap {
  width: 72vw;
}

.model__time {
  width: 13.43vw;
  position: absolute;
}
.s .model__time {
  width: 23.2vw;
}
.model__time--v1 {
  top: -5%;
  left: 0;
}
.s .model__time--v1 {
  top: 10%;
  right: -14%;
  left: unset;
}
.model__time--v2 {
  top: -4%;
  right: 14%;
}
.s .model__time--v2 {
  top: 27%;
  right: unset;
  left: -2%;
}
.model__time--v3 {
  top: 37%;
  left: -5%;
}
.s .model__time--v3 {
  top: 14%;
  left: unset;
  right: -14%;
}
.model__time--v4 {
  top: 2%;
  right: -3%;
}
.s .model__time--v4 {
  top: 20%;
  right: unset;
  left: -22%;
}

.model__items-wrap:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.s .model__items-wrap:nth-of-type(2n) {
  align-items: flex-end;
  flex-direction: column;
  padding-top: 12.733%;
}
.model__items-wrap:nth-of-type(2) {
  position: relative;
  padding-top: 2.58vw;
  align-items: center;
  column-gap: 3.07vw;
}
.model__img-wrap--v2 {
  width: 57%;
}

.model__items-wrap:nth-of-type(3) {
  position: relative;
  padding-top: 2.58vw;
  align-items: center;
  column-gap: 3.07vw;
}
.model__img-wrap--v3 {
  width: 52%;
}
.s .model__items-wrap:nth-of-type(3) {
  padding-top: 12.733%;
}

.model__items-wrap:nth-of-type(4) {
  position: relative;
  justify-content: flex-start;
  align-items: end;
  column-gap: 3.07vw;
}
.model__img-wrap--v4 {
  width: 47%;
}

.model__items-wrap:nth-of-type(2)::before {
  content: '';
  background-image: url(../imgs/model-arrow_01.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 0%;
  left: 43%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.m .model__items-wrap:nth-of-type(2)::before {
  left: 46%;
}
.s .model__items-wrap:nth-of-type(2)::before {
  content: '';
  background-image: url(../imgs/model-arrow_01_sp.png);
  background-size: contain;
  width: 14.67vw;
  height: 15.93vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 5%;
  left: 11%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.model__items-wrap:nth-of-type(3)::before {
  content: '';
  background-image: url(../imgs/model-arrow_02.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 4%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.s .model__items-wrap:nth-of-type(3)::before {
  content: '';
  background-image: url(../imgs/model-arrow_02_sp.png);
  background-size: contain;
  width: 14.67vw;
  height: 15.93vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 7%;
  left: 85%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.model__items-wrap:nth-of-type(4)::before {
  content: '';
  background-image: url(../imgs/model-arrow_03.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: -4%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.m .model__items-wrap:nth-of-type(4)::before {
  left: 52%;
}
.s .model__items-wrap:nth-of-type(4)::before {
  content: '';
  background-image: url(../imgs/model-arrow_03_sp.png);
  background-size: contain;
  width: 14.67vw;
  height: 15.93vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 11%;
  left: 13%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* SPのみ */
.s .model__img-wrap--v1 {
  width: 72vw;
}
.s .model__img-wrap--v2 {
  width: 100%;
}
.s .model__img-wrap--v3 {
  margin-right: auto;
}

.s .play__incidentally-comment {
  width: 23.73%;
  position: absolute;
  right: -2%;
  bottom: 2%;
}

/* *********************************
 special
****************************** */
.special {
  background-color: #c9ff8f;
  position: relative;
  padding-bottom: 8.22vw;
}

.special__title {
  width: 30.72vw;
}
.s .special__title {
  width: 54.66vw;
}

.special__contents--wrap {
  background-color: #fff;
  width: 79.16vw;
  margin: 4.427vw auto 0;
  position: relative;
  padding-top: 3.947%;
  padding-bottom: 13.15%;
}
.m .special__contents--wrap {
  width: 89.33vw;
}
.s .special__contents--wrap {
  margin: 7.73vw auto 0;
  padding-top: 14.66%;
}

.special__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'b b'
    'a c';
  align-items: center;
  justify-items: center;
  column-gap: 2.8vw;
  width: 79.6%;
  margin: 0 auto;
}
.s .special__items {
  grid-template-columns: 1fr;
  grid-template-areas:
    'b'
    'a'
    'c';
  width: 100%;
}
.movie-img {
  grid-area: a;
  width: 30vw;
  text-align: right;
  justify-items: end;
  margin-top: 9.91%;
}
.s .movie-img {
  width: 64.8vw;
  margin-top: 8.67%;
}
.movie-title {
  grid-area: b;
  font-size: 3.12vw;
  font-weight: 900;
  color: #ff1d7a;
  text-align: center;
  position: relative;
  letter-spacing: 0.1em;
}
.s .movie-title {
  font-size: 7.2vw;
  letter-spacing: 0;
}
.movie-title p {
  line-height: 1.7;
}
.s .movie-title p {
  line-height: 1.5;
}

.movie-info {
  grid-area: c;
  font-weight: 700;
  font-size: 2.6vw;
  letter-spacing: 0.05em;
  padding-top: 5.26%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.s .movie-info {
  border: none;
  font-size: 4.53vw;
  width: 64.8vw;
}
.movie-info div:nth-of-type(1) {
  padding-bottom: 3.71%;
}
.movie-info div:nth-of-type(2) {
  padding-top: 3.71%;
}
.custom-dotted {
  width: 100%;
  height: 0.36vw;
  background-image: repeating-radial-gradient(circle, #000 0 0.18vw, transparent 0.18vw 0.72vw);
  background-size: 0.72vw 0.36vw;
  background-repeat: repeat-x;
}
.s .custom-dotted {
  height: 1.2vw;
  background-image: repeating-radial-gradient(circle, #000 0 0.55vw, transparent 0.55vw 2.1vw);
  background-size: 2.1vw 1.2vw;
}

.special__movie {
  width: 79.6%;
  height: auto;
  margin: 7.89% auto 0;
}
.s .special__movie {
  width: 84.77%;
}
.special__movie video {
  width: 100%;
  display: block;
  line-height: 0;
}

.special-deco {
  position: absolute;
}
.special-deco--v1 {
  width: 9.53vw;
  top: -65%;
  right: 0;
}
.s .special-deco--v1 {
  width: 13.73vw;
  top: -55%;
  right: unset;
  left: 13%;
}
.special-deco--v2 {
  width: 2.76vw;
  top: 17%;
  right: -15%;
}
.s .special-deco--v2 {
  width: 12.93vw;
  top: 69%;
  right: -2%;
}

.special__deco {
  width: 15.26%;
  height: auto;
}
.special__deco--v1 {
  position: absolute;
  top: -2%;
  left: -4%;
}
.special__deco--v2 {
  position: absolute;
  top: -2%;
  right: -4%;
}
.special__deco--v3 {
  position: absolute;
  bottom: -2%;
  left: -4%;
}
.special__deco--v4 {
  position: absolute;
  bottom: -2%;
  right: -4%;
}

/* *********************************
 influencer
****************************** */
.influencer {
  background-color: #ffffc5;
  position: relative;
  padding-bottom: 8.22vw;
}
.s .influencer {
  padding-bottom: 8vw;
}

.influencer__title {
  width: 86.3vw;
  text-align: center;
}
.s .influencer__title {
  width: 94.66vw;
  text-align: center;
}

.influencer__report-title {
  position: absolute;
  top: -11vw;
  left: 17%;
  width: 68.7%;
}
.s .influencer__report-title {
  position: absolute;
  top: -4%;
  left: 8%;
  width: 84%;
}
.influencer__contents--wrap {
  background-image: url(../tamano/images/influencer-contents_bg.png);
  background-size: contain;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  margin-top: 10%;
}
.s .influencer__contents--wrap {
  background-image: url(../tamano/images/influencer-contents_bg_sp.png);
  background-size: 100% 100%;
  margin-top: 13%;
}
.influencer__contents {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 1fr);
  width: 70%;
  margin: 0 auto;
  justify-items: center;
  padding: 7.25% 0;
  row-gap: 4.16vw;
}
.s .influencer__contents {
  grid-template-columns: 1fr;
  width: 80%;
  padding: 20% 0;
  row-gap: 12vw;
}
.influencer__item {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  align-items: center;
}
.influencer__item__icon {
  width: 14.37vw;
}
.s .influencer__item__icon {
  width: 26vw;
}
.influencer__item__name {
  padding-top: 1.6em;
  font-size: 1.56vw;
}
.s .influencer__item__name {
  padding-top: 1em;
  font-size: 3.33vw;
}
.influencer__item__text {
  padding-top: 2em;
  font-size: 1.25vw;
}
.s .influencer__item__text {
  padding-top: 1.7em;
  font-size: clamp(10px, 2.4vw, 18px);
}
.influencer__item__text p {
  line-height: 1.5;
}
.influencer__item__text .list-arrow li::before {
  content: '▷';
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
}
.influencer__item__text .list-triangle li::before {
  content: '▶︎';
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
}
.influencer__item__text .list-square li::before {
  content: '□';
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
}

.wave-divider--bottom--influencer {
  bottom: 2.44vw;
}

/* *********************************
  info
****************************** */
.info {
  background-image: url(../imgs/info-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 4.16vw;
}
.s .info {
  padding-bottom: 19.73vw;
}

.info__title {
  width: 38.8vw;
}
.s .info__title {
  width: 56.4%;
}

.info__contents-wrap {
  background-color: #fff;
  text-align: center;
  width: 79.16vw;
  margin: 3.64vw auto 0;
  padding-bottom: 5.26vw;
}
.s .info__contents-wrap {
  width: 89.33%;
  margin: 7.73vw auto 0;
  padding-bottom: 6.71%;
}

.info__subtitle {
  font-size: 30px;
  font-weight: 900;
  padding-top: 2.96%;
  padding-bottom: 2.3%;
}

.info__subtitle:nth-of-type(2) {
  padding-top: 7.1%;
}
.s .info__subtitle:nth-of-type(2) {
  padding-top: 12.77%;
}

.info__contents-wrap p {
  font-size: 1.25vw;
  font-weight: 500;
}
.m .info__contents-wrap p {
  font-size: 1.6vw;
}
.s .info__contents-wrap p {
  font-size: 3.33vw;
}

.info__text-wrap {
  border-top: solid 1px #000;
  width: 55%;
  margin: 0 auto;
}
.m .info__text-wrap {
  border-top: solid 1px #000;
  width: 85.02%;
  margin: 0 auto;
}
.s .info__text-wrap {
  width: 94.02%;
  margin: 0 auto;
}

.info__text-wrap p:nth-child(1) {
  padding-top: 3.82%;
  line-height: 1.5;
}
.s .info__text-wrap p:nth-child(1) {
  padding-top: 4.77%;
  letter-spacing: 0.05em;
}
.info__text-wrap p:nth-child(2) {
  padding-top: 6.78%;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.s .info__text-wrap p:nth-child(2) {
  padding-top: 6.56%;
  letter-spacing: 0.05em;
}
.info__text-wrap p:nth-child(3) {
  padding-top: 7.78%;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.info__text-wrap p:nth-child(3) .text--margin {
  margin-left: 1em;
}
.info__text-wrap p:nth-child(4) {
  padding-top: 1.05%;
}
.s .info__text-wrap p:nth-child(4) {
  padding-top: 1.06%;
}
.m .info__text-wrap p:nth-child(2),
.m .info__text-wrap p:nth-child(3) {
  padding-top: 3.94%;
}
.s .info__text-wrap p:nth-child(3) .text--margin {
  margin-left: 0;
}

.info__text-wrap ul {
  font-size: 1.25vw;
  font-weight: 500;
}
.s .info__text-wrap ul {
  font-size: 3.33vw;
  font-weight: 500;
}
.info__text-wrap ul li span {
  color: #ff6000;
}

/* .inline-center {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  font-size: 1em;
  margin: 0 0.25em;
} */

.slash {
  display: inline-block;
  margin-left: 0.5em;
}

.info__text-wrap .btn {
  margin: 0 auto;
  margin-top: 6.97%;
  width: 76.77%;
  padding: 4% 0;
}
.m .info__text-wrap .btn {
  width: 65.54%;
  font-size: 2.4vw;
}
.s .info__text-wrap .btn {
  margin: 0 auto;
  margin-top: 5.33%;
  width: 72.38%;
  font-size: 3.33vw;
}

/* SPのみ */
.s .info__contents-wrap h3 {
  font-size: 5.06vw;
  font-weight: 700;
  padding-top: 6.77%;
}

.s .info__text-wrap--sp {
  display: inline-block;
}

/* *********************************
 footer
****************************** */
.footer {
  background-color: #b5d1dc;
  text-align: center;
}

.footer__icon {
  margin: 0 auto;
  width: 5.93vw;
  padding-top: 1.197vw;
}
.s .footer__icon {
  padding-top: 3.2vw;
  width: 12.26vw;
}

.footer__text {
  padding-top: 2.08vw;
  font-size: 1.25vw;
  font-weight: 500;
}
.s .footer__text {
  padding-top: 2.8%;
  font-size: 2.4vw;
}

.copyright {
  font-size: 20px;
  font-weight: 500;
  background-color: #ffffc5;
  padding: 1.71vw 0;
  margin-top: 1.197vw;
}
.s .copyright {
  font-size: 2vw;
  padding: 2.13% 0;
  margin-top: 4vw;
}
