@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 {
  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: 10.56%;
}
.s .title--padding-top {
  padding-top: 7.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: 3px;
  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: 4px 4px 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;
  /* top: 32%; */
  right: 10%;
  background-image: url(../imgs/button-arrow.svg);
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.m .btn::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 24px;
  top: 34%;
  right: 10%;
  background-image: url(../imgs/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.s .btn::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 3vw;
  height: 5vw;
  top: 29%;
  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;
}
/* top */
.fukui_scroll01 {
  position: relative;
}
.top-img {
  position: absolute;
  top: 0.4%;
  right: 0;
  width: 39%;
  object-fit: cover;
  z-index: 1;
}
/* メニュー */
.menu {
  position: fixed;
  top: 15%;
  right: -2px;
  padding: 3.1vw 3.1vw 3.9vw 3.1vw;
  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;
  transform: translateX(100%);
  transition: transform 0.3s;
  background-color: #ffffc5;
}
.menu._acitve {
  transform: translateX(0);
}

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

.menu-list {
  padding-top: 2.6vw;
  width: 25.2vw;
  display: flex;
  flex-direction: column;
  row-gap: 1.8vw;
}
.m .menu-list {
  padding-top: 4.6vw;
  width: 100%;
  row-gap: 3.6vw;
}
.s .menu-list {
  padding-top: 8.6vw;
  width: 100%;
  row-gap: 10.6vw;
}
.menu-list li {
  width: fit-content;
  height: 2.8vw;
}
.m .menu-list li {
  height: 3.8vw;
}
.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: 1.4vw;
  height: 1.85vw;
  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 {
  display: none;
}
/* 追従ボタン */
.s .follow-btn {
  position: fixed;
  bottom: 2.6vw;
  right: 2.6vw;
  width: 14.4vw;
  z-index: 99;
}

/**********************************
 contents_wrap
****************************** */
.contents_wrap {
  position: relative;
}
.cnt_l_pc {
  position: relative;
}
.logo {
  position: absolute;
  top: 17.8vw;
  left: 8.8vw;
  width: 18.2vw;
  z-index: 99;
}
.s .logo {
  top: 2.6vw;
  left: 2.6vw;
  width: 14.4vw;
}
.bg_main {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../fukui/images/mv-fukui_01.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: -1;
}
.contents {
  position: relative;
  margin: 0 auto;
  max-width: 32vw;
  z-index: 1;
}
.s .contents {
  max-width: 100%;
}
/**********************************
 main
****************************** */
main {
  width: 100%;
  overflow: hidden;
}

/**********************************
 about
****************************** */
.about {
  position: relative;
  background-color: #ffffc5;
  padding: 6.73vw 0 4.85vw 0;
}
.s .about {
  padding: 8.73vw 0;
}

.about__text {
  font-size: 1.2vw;
  font-weight: 900;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 2;
  z-index: 2;
}

.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: 5.24vw;
  bottom: 20%;
  left: -0.1%;
}
.about-deco--v2 {
  width: 4.35vw;
  top: 9%;
  right: 23%;
}
.about-deco--v3 {
  width: 4.79vw;
  top: 60%;
  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: 28.5vw;
}
.s .play__title {
  width: 84.26vw;
}
.play__item-wrap {
  background-color: #fff;
  width: 28.5vw;
  margin: 0 auto;
  position: relative;
  /* padding: 0 0.8vw; */
}

.s .play__item-wrap {
  width: 90.33vw;
  margin: 0 auto;
  padding: 0;
}
.play-deco {
  position: absolute;
}

/* guest */
.guest {
  position: relative;
  border-radius: 3vw;
  padding-bottom: 1.2vw;
}
.s .guest {
  border-radius: 36px;
  padding-bottom: 3.2vw;
}
.guest--v1 {
  background: url(../fukui/images/play-bg_02.png) repeat;
  background-position: center bottom;
  background-size: 100% auto;
  border: #ff1d7a solid 2px;
  width: 100%;
}
.guest--v2 {
  background: url(../fukui/images/play-bg_04.png) repeat;
  background-position: center bottom;
  background-size: 100% auto;
  border: #228cff solid 2px;
  width: 100%;
}
.play__item-wrap--guest {
  margin-top: 1.96vw;
}
.s .play__item-wrap--guest {
  margin-top: 3.96vw;
}
.play-guest-wrap {
  padding: 0.6vw;
}
.s .play-guest-wrap {
  padding: 1.8vw;
}
.play-guest {
  margin-top: 24vw;
  padding-top: 9vw;
  /* padding-bottom: 4.2vw; */
}
.s .play-guest {
  margin-top: 64.4vw;
  padding-top: 24.2vw;
}

.play-guest--v1 {
  background-image: url(../fukui/images/play-bg_01.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.guest-name {
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: 1.7vw;
  padding: 1vw 0 0.6vw;
  width: 90%;
  margin: 0 auto;
  margin-top: 1.6vw;
  position: relative;
}
.s .guest-name {
  font-size: 5.8vw;
  padding: 2.4vw 0 2vw;
  margin-top: 4vw;
}
.guest--v1 .guest-name {
  background-color: #ff1d7a;
}
.guest--v2 .guest-name {
  background-color: #228cff;
  padding: 1.6vw 0;
  font-size: 2vw;
}
.s .guest--v2 .guest-name {
  padding: 3.6vw 0;
  font-size: 5.8vw;
}
.guest-name::before {
  content: '';
  position: absolute;
  top: -28%;
  left: 20%;
  width: 60%;
  height: 40%;
  background: url(../fukui/images/guest-deco_03.png) no-repeat center center / 100% 100%;
}
.guest-name img {
  display: block;
  margin: 0 auto;
  width: 30%;
}
.guest-name span {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #fff;
  margin-top: 0.5vw;
  padding: 0.6vw 0 0;
}
.s .guest-name span {
  padding: 1.4vw 0 0;
  margin-top: 1vw;
}
.guest-name p span {
  font-size: 0.9vw;
}
.s .guest-name p span {
  font-size: 2.4vw;
}
/* .guest-name--v1 {
  font-size: 1.7vw;
} */

/* ゲストネーム　フォントサイズ変更 */
.guest-name--v2 {
  font-size: 2vw;
}
.s .guest-name--v3 {
  font-size: 4.5vw;
}
.guest-name--v4 {
  font-size: 1.5vw;
}
.s .guest-name--v4 {
  font-size: 4.5vw;
}
.guest-name--v5 {
  font-size: 1.3vw;
}
.s .guest-name--v5 {
  font-size: 4vw;
}
.guest-name--v6 {
  font-size: 1.5vw;
}
.s .guest-name--v6 {
  font-size: 4.5vw;
}
.guest-name--v7 {
  font-size: 1.4vw;
}
.s .guest-name--v7 {
  font-size: 4.5vw;
}

/* .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__time {
  width: 44.32%;
  position: absolute;
  top: -3.75vw;
  left: -9.4%;
}
.s .guest__time {
  top: -11.8vw;
  left: -10.9%;
}
.guest__time--reverse {
  width: 44.32%;
  position: absolute;
  top: -3.75vw;
  right: -9.4%;
}
.s .guest__time--reverse {
  top: -11.8vw;
  right: -10.9%;
}
.guest--v2 .guest__time {
  width: 100%;
  position: absolute;
  top: -47.5%;
  left: 0.02%;
}
.s .guest--v2 .guest__time {
  top: -50.5%;
  left: 0.02%;
}
.play__item-wrap--dino .guest-wrap {
  padding-top: 2.4vw;
}
.guest-wrap {
  display: block;
  /* display: flex;
  flex-direction: column;
  gap: 6vw; */
  padding: 0 2vw 3vw;
}
.s .guest-wrap {
  padding: 0 7.2vw 3vw;
}
.guest-item + .guest-item {
  margin-top: 6vw;
}
.s .guest-item + .guest-item {
  margin-top: 15.6vw;
}
.play-guest--v2 .guest-item + .guest-item {
  margin-top: 2vw;
}
.s .play-guest--v2 .guest-item + .guest-item {
  margin-top: 4.8vw;
}
.guest-item {
  position: relative;
  display: flex;
  flex-direction: column;
  column-gap: 3.12vw;
  width: 100%;
  align-items: center;
  background-color: #fff;
  border-radius: 3vw;
}
.s .guest-item {
  border-radius: 36px;
}
.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-text--v1 {
  position: absolute;
  top: 8vw;
  left: 5.2vw;
  width: 18vw;
  margin: 0 auto;
}
.s .play-text--v1 {
  top: 24vw;
  left: 18.2vw;
  width: 52vw;
}
.play-text--v2 {
  position: absolute;
  top: 14.5vw;
  left: 6.5vw;
  width: 15.9vw;
  margin: 0 auto;
}
.s .play-text--v2 {
  position: absolute;
  top: 42.5vw;
  left: 25vw;
  width: 42.9vw;
}
.guest-wrap--family {
  margin-top: 11.5vw;
}
.s .guest-wrap--family {
  margin-top: 38.4vw;
}
/* .guest-img::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 7.54px;
  height: 39.84px;
  background: url(../fukui/images/guest-deco_03.png) no-repeat center center / 100% 100%;
} */

.guest-img img {
  border-radius: 3vw;
}
.s .guest-img img {
  border-radius: 36px;
}
.guest--v1 .guest-img img {
  outline: #ff1d7a solid 2px;
}
.guest--v2 .guest-img img {
  outline: #228cff solid 2px;
}

/* .guest-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  border: #FF1D7A solid 2px;
  z-index: 2;
} */

.guest-explanation {
  text-align: center;
  font-size: 1vw;
  font-weight: 700;
  margin-top: 0.92vw;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
.s .guest-explanation {
  margin-top: 2.5vw;
  font-size: 2.8vw;
}
.guest-explanation--sub {
  font-size: 0.7vw;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  margin-top: 0.45vw;
}
.s .guest-explanation--sub {
  font-size: 2vw;
  margin-top: 0.9vw;
}
.play-deco--v1 {
  width: 6.5vw;
  top: -0.58%;
  right: -5%;
}
.s .play-deco--v1 {
  width: 16.1vw;
  top: -0.6%;
  right: -5.8%;
}
.play-deco--v2 {
  width: 7.5vw;
  top: 22vw;
  right: 8%;
}
.s .play-deco--v2 {
  width: 24.5vw;
  top: 58vw;
  right: 8%;
}
.play-deco--v3 {
  width: 24vw;
  top: 10.8vw;
  right: 8%;
}
.s .play-deco--v3 {
  width: 74.5vw;
  top: 26.5vw;
  right: 10%;
}
.play-deco--v4 {
  width: 10vw;
  top: 27.2vw;
  left: -2%;
}
.s .play-deco--v4 {
  width: 31.8vw;
  top: 74.8vw;
  left: -1.8%;
}
/* .m .play-deco--v4 {
  bottom: -90%;
} */
.play-deco--v5 {
  width: 6.5vw;
  top: 7.9vw;
  left: -5%;
}
.s .play-deco--v5 {
  width: 19.46vw;
  top: 24.6vw;
  left: -4%;
}
.play-deco--v6 {
  width: 7.86vw;
  top: 29.5vw;
  right: -3%;
}
.s .play-deco--v6 {
  width: 24vw;
  top: 83.8vw;
  right: -3%;
}
.play-deco--v7 {
  width: 10.8vw;
  bottom: 37.9%;
  right: 7%;
}
.s .play-deco--v7 {
  width: 34.4vw;
  bottom: 37.6%;
  right: 8%;
}
.play-deco--v8 {
  width: 6.5vw;
  bottom: 39.2%;
  left: 21%;
}
.s .play-deco--v8 {
  width: 17.9vw;
  bottom: 38.9%;
  left: 20%;
}
.play-deco--v9 {
  width: 14.2vw;
  bottom: 38%;
  left: 10%;
}
.s .play-deco--v9 {
  width: 40.73vw;
  bottom: 37.9%;
  left: 10.5%;
}
.play-deco--v10 {
  width: 5.5vw;
  bottom: 36.4%;
  right: 33.5%;
}
.s .play-deco--v10 {
  width: 16.2vw;
  bottom: 36.2%;
  right: 35.2%;
}
.play-deco--v11 {
  width: 9.5vw;
  top: 10%;
  right: 5%;
}
.play-deco--v12 {
  width: 3.8vw;
  top: 12.2%;
  right: 8%;
}
.s .play-deco--v12 {
  width: 9.8vw;
  top: 12.2%;
  right: 8%;
}
/* .s .play-deco--v11 {
  width: 11.73vw;
  bottom: -14%;
  left: unset;
  right: 6%;
}

.s .play-deco--v12 {
  width: 9.73vw;
  top: 3%;
  left: 2%;
  bottom: unset;
  right: unset;
} */
.play-deco--v13 {
  position: absolute;
  width: 5.2vw;
  top: 14%;
  left: 5%;
}
.s .play-deco--v13 {
  width: 14.2vw;
  top: 14%;
  left: 5%;
}
.play-deco--v14 {
  position: absolute;
  width: 2.5vw;
  bottom: 24.2%;
  right: 10%;
}
.s .play-deco--v14 {
  width: 6.5vw;
  bottom: 26.2%;
  right: 10%;
}
.play-deco--v15 {
  position: absolute;
  width: 3.2vw;
  top: 42.5%;
  left: 8%;
}
.s .play-deco--v15 {
  width: 8.2vw;
  top: 42.5%;
  left: 8%;
}
.play-deco--v16 {
  position: absolute;
  width: 6vw;
  top: 35.5%;
  right: 7.5%;
}
.s .play-deco--v16 {
  width: 15vw;
  top: 34.8%;
  right: 6.5%;
}
.play-deco--v17 {
  position: absolute;
  width: 1.2vw;
  bottom: 36.8%;
  left: 8%;
}
.s .play-deco--v17 {
  width: 3.2vw;
  bottom: 39.2%;
  left: 9%;
}
.play-deco--v18 {
  position: absolute;
  width: 2.5vw;
  bottom: 45.2%;
  right: 10%;
}
.s .play-deco--v18 {
  width: 7.5vw;
  bottom: 46.8%;
  right: 8%;
}
.play__incidentally {
  width: 30vw;
  margin: 1.5vw auto 0;
  position: relative;
}
.s .play__incidentally {
  width: 89.33vw;
  margin: 2.5vw auto 0;
  position: relative;
}

/* 恐竜 */
.play-guest--v2 {
  background-image: url(../fukui/images/play-bg_03.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  /* margin-top: 82%; */
  padding-top: 11.5vw;
}
.s .play-guest--v2 {
  padding-top: 42.8vw;
}
.dino-text--v1 {
  position: absolute;
  top: 7.8vw;
  left: 4.5vw;
  width: 16.5vw;
  margin: 0 auto;
}
.s .dino-text--v1 {
  top: 24vw;
  left: 18.2vw;
  width: 46.5vw;
}
.play-vtuber {
  margin-top: 2.25vw;
  width: 100%;
  position: relative;
}
.play-vtuber__btn {
  position: absolute;
  width: 78%;
  bottom: 4vw;
  left: 3.8vw;
}
.s .play-vtuber__btn {
  width: 60%;
  bottom: 16.2vw;
  left: 22vw;
}
.play-vtuber__btn p {
  padding-top: 5%;
  font-size: 1vw;
  width: max-content;
  margin: 0 auto;
}
.s .play-vtuber__btn p {
  padding-top: 8%;
  font-size: 3vw;
}

.s .play-vtuber__btn .btn {
  padding: 3vw 0;
}
.dino-deco--v1 {
  width: 7.2vw;
  top: 24.8vw;
  right: -3%;
}
.s .dino-deco--v1 {
  width: 21.9vw;
  top: 68.5vw;
  right: -2.5%;
}
.dino-deco--v2 {
  width: 6.5vw;
  top: 29.5vw;
  left: 4.5%;
}
.s .dino-deco--v2 {
  width: 19vw;
  top: 82.2vw;
  left: 4.5%;
}

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

/* .model__items-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  width: 37.5vw;
  margin: 0 auto;
  justify-content: flex-start;
} */
.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: 13.34%;
}
.s .model__items-wrap:first-of-type {
  padding-top: 12.733%;
}

.model__title {
  width: 22.5vw;
}
.s .model__title {
  width: 64.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;
} */
.model__text-warp {
  align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 28vw;
  margin-top: 2.4vw;
}
.model__text-warp {
  width: 100%;
  margin-top: 2.4vw;
}
/* .model__text-warp--v4 {
  margin-bottom: 5.2vw;
} */

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

.model__text-title {
  position: relative;
  margin-top: 1.2vw;
}
.s .model__text-title {
  margin-top: 3.2vw;
}
.model__text-title::before {
  content: '';
  background-size: contain;
  width: 3vw;
  height: 2.8vw;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10%;
  left: 0%;
}
.s .model__text-title::before {
  width: 9.6vw;
  height: 7.6vw;
}
.model__text-title--v1 {
  padding-left: 1.5vw;
}
.s .model__text-title--v1 {
  padding-left: 4.2vw;
}
.model__text-title--v2 {
  padding-left: 2.4vw;
}
.s .model__text-title--v2 {
  padding-left: 6.8vw;
}
.model__text-title--v3 {
  padding-left: 2.4vw;
}
.s .model__text-title--v3 {
  padding-left: 6.8vw;
  margin-top: 5.2vw;
}
.model__text-title--v1::before {
  background-image: url(../imgs/model-number_01.png);
}
.model__text-title--v2::before {
  background-image: url(../imgs/model-number_02.png);
}
.model__text-title--v3::before {
  background-image: url(../imgs/model-number_03.png);
}
.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: 3.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;
  line-height: 1.6;
  margin-top: 10px;
  overflow-wrap: break-word;
}
.m .model__text {
  font-size: 1.35vw;
  font-weight: 700;
}
.s .model__text {
  font-size: 3.33vw;
  letter-spacing: 0.05em;
}

.model__img-wrap {
  position: relative;
  margin: 0 auto;
  width: 28vw;
}
.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(2) {
  position: relative;
  padding-top: 6.58vw;
}
.s .model__items-wrap:nth-of-type(2) {
  padding-top: 14.733%;
}
.model__img-wrap--v2 {
  margin-right: 0;
}
.model__items-wrap:nth-of-type(3) {
  position: relative;
  padding-top: 3.58vw;
}
.model__img-wrap--v3 {
  margin-left: 0;
  width: 100%;
}
.s .model__items-wrap:nth-of-type(3) {
  padding-top: 12.733%;
}

.s .model__items-wrap:nth-of-type(2)::before {
  width: 14.67vw;
  height: 15.93vw;
  top: 5%;
  left: 11%;
}
.s .model__items-wrap:nth-of-type(3)::before {
  width: 14.67vw;
  height: 15.93vw;
  top: 7%;
  left: 85%;
}
.model__items-wrap:nth-of-type(2)::before {
  content: '';
  background-image: url(../imgs/model-arrow_03_sp.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 10%;
  left: 18%;
  transform: translate(-50%, -50%);
}
/* .m .model__items-wrap:nth-of-type(4)::before {
  left: 52%;
} */
.s .model__items-wrap:nth-of-type(2)::before {
  content: '';
  width: 14.67vw;
  height: 15.93vw;
  top: 11%;
  left: 13%;
}
.model__items-wrap:nth-of-type(3)::before {
  content: '';
  background-image: url(../imgs/model-arrow_02_sp.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 14%;
  right: -5%;
  transform: translate(-50%, -50%);
}
.s .model__items-wrap:nth-of-type(3)::before {
  width: 14.67vw;
  height: 15.93vw;
  top: 7%;
  left: 85%;
}
.model__items-wrap:nth-of-type(4)::before {
  content: '';
  background-image: url(../imgs/model-arrow_03_sp.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 10%;
  left: 18%;
  transform: translate(-50%, -50%);
}
.s .model__items-wrap:nth-of-type(4)::before {
  content: '';
  width: 14.67vw;
  height: 15.93vw;
  top: 11%;
  left: 13%;
}
.model__items-wrap:nth-of-type(5)::before {
  content: '';
  background-image: url(../imgs/model-arrow_02_sp.png);
  background-size: contain;
  width: 5vw;
  height: 4.35vw;
  background-repeat: no-repeat;
  position: absolute;
  top: 14%;
  right: -5%;
  transform: translate(-50%, -50%);
}
.s .model__items-wrap:nth-of-type(5)::before {
  width: 14.67vw;
  height: 15.93vw;
  top: 7%;
  left: 85%;
}
.s .model__img-wrap--v2 {
  width: 88%;
}
.s .model__img-wrap--v3 {
  width: 100%;
}
.s .play__incidentally-comment {
  width: 23.73%;
  position: absolute;
  right: -2%;
  bottom: 2%;
}
.gurume-next {
  width: 88%;
  margin: 0 auto;
  margin-top: 3vw;
}
.s .gurume-next {
  margin-top: 9vw;
}
/* *********************************
 special
****************************** */
.special {
  background-color: #c9ff8f;
  position: relative;
  /* padding-bottom: 10.22vw; */
}

/* .s .special {
  padding-bottom: 24vw;
} */

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

.special__contents--wrap {
  background-color: #fff;
  width: 28.5vw;
  margin: 4.427vw auto 0;
  position: relative;
  padding-bottom: 13.15%;
}
.s .special__contents--wrap {
  width: 89.33%;
  margin: 7.73vw auto 0;
}
.special__contents--wrap {
  padding: 2.05% 2% 5.15%;
}
.special-items {
  max-width: 32vw;
  position: relative;
}
.s .special-items {
  max-width: 100%;
}
.special-items__subtitle {
  display: block;
  font-size: 1.98vw;
  background-color: #ff1d7a;
  width: 12.2vw;
  color: #fff;
  font-weight: 700;
  margin: 0 auto 1.25vw;
  text-align: center;
  padding: 0.25vw 0;
  border-radius: 4px;
}
.s .special-items__subtitle {
  width: 25.5vw;
  font-size: 4.26vw;
  margin: 0 auto 3vw;
  padding: 0.65vw 0;
  border-radius: 2px;
}
.dot-line {
  display: block;
  position: relative;
}
.dot-line::before {
  background-image: repeating-radial-gradient(circle, #000 0 0.12vw, transparent 0.18vw 0.72vw);
  background-size: 0.72vw 0.36vw;
  background-repeat: repeat-x;
  content: '';
  display: block;
  width: 22.5vw;
  height: 0.46vw;
  position: absolute;
  top: 0%;
  left: 9%;
}
.s .dot-line::before {
  background-image: repeating-radial-gradient(circle, #000 0 0.3vw, transparent 0.4vw 1.5vw);
  background-size: 1.5vw 0.8vw;
  width: 71.8vw;
  height: 2vw;
  top: 0%;
  left: 8%;
}
.items-list {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 74%;
}
.items-list .list-text {
  position: absolute;
  width: 100%;
  top: 2.9vw;
  left: 0;
  overflow: auto;
  padding: 0 2vw;
}
.s .items-list .list-text {
  top: 8.8vw;
  left: 0vw;
  padding: 0 6vw;
}
.items-list--v1 .list-text {
  padding: 0 1.4vw;
}
.s .items-list--v1 .list-text {
  padding: 0 5vw;
}
.items-list--v2 .list-text {
  top: 2.5vw;
  left: 0;
}
.s .items-list--v2 .list-text {
  top: 8.8vw;
  left: 0vw;
  padding: 0 6vw;
}
.list-text__title {
  position: relative;
  width: 100%;
  font-size: 1.04vw;
  font-weight: 800;
  text-align: left;
  color: #228cff;
  padding-left: 2.6vw;
}
.s .list-text__title {
  font-size: 3.35vw;
  padding-left: 7.6vw;
}
.special-items__contents {
  padding: 2.8vw 0 0;
}
.s .special-items__contents {
  padding: 4.8vw 0 0;
}
.special-items__contents--v2 .items-list {
  width: 100%;
  padding: 0 3.5vw;
}
.s .special-items__contents--v2 .items-list {
  padding: 0 11.5vw;
}
.list-text__title::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../fukui/images/special-icon_01.png) no-repeat center / contain;
  width: 2.4vw;
  height: 2.4vw;
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%);
}
.items-list--v2 .list-text__title::before {
  background: url(../fukui/images/special-icon_02.png) no-repeat center / contain;
}
.items-list--v3 .list-text__title::before {
  background: url(../fukui/images/special-icon_03.png) no-repeat center / contain;
}
.s .list-text__title::before {
  width: 6.8vw;
  height: 6.8vw;
}
.list-text__contents {
  width: 100%;
  margin-top: 0.8vw;
  text-align: left;
  font-weight: 500;
}
.s .list-text__contents {
  margin-top: 3vw;
}
.list-text__contents p {
  width: 100%;
  position: relative;
  padding-left: 0.8vw;
  line-height: 1.5;
  font-size: 1vw;
  font-weight: 600;
}
.s .list-text__contents p {
  font-size: 3vw;
  padding-left: 3vw;
}
.list-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.list-text__contents p::before {
  content: '';
  display: block;
  width: 0.52vw;
  height: 0.52vw;
  top: 0.4vw;
  left: 0%;
  background-color: #228cff;
  border-radius: 50%;
  position: absolute;
}
.s .list-text__contents p::before {
  width: 1.5vw;
  height: 1.5vw;
  top: 1.4vw;
}
.list-text__bgcolor {
  display: block;
  width: 90%;
  color: #fff;
  background-color: #228cff;
  padding: 0.25vw 0;
  text-align: center;
  margin: 1.5vw auto 0;
  font-size: 1vw;
  font-weight: 700;
}
.s .list-text__bgcolor {
  font-size: 3vw;
  padding: 0.9vw 0;
  margin-top: 5vw;
}
.list-text__borderColor {
  display: block;
  width: 90%;
  border: 2px solid #228cff;
  text-align: center;
  font-weight: 800;
  margin: 1.2vw auto 0;
  padding: 0.25vw 0;
  font-size: 1vw;
}
.s .list-text__borderColor {
  font-size: 3vw;
  padding: 0.9vw 0;
  margin-top: 4vw;
}
.list-text__lead {
  color: #ff1d7a;
  font-weight: 700;
}
.items-list--v1 .list-text__nodotted {
  font-size: 1.04vw;
  font-weight: 600;
  margin-top: 1.0vw;
  line-height: 1.5;
}
.s .items-list--v1 .list-text__nodotted {
  font-size: 3.35vw;
  margin-top: 3.2vw;
}
.items-list--v1 .list-text__small {
  margin: 2.0vw -0.3vw 0;
  font-size: 0.78vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.s .items-list--v1 .list-text__small {
  font-size: 2.48vw;
  margin: 6.4vw -2.0vw 0;
}
.list-icon {
  position: absolute;
  width: 4.8vw;
  height: 4.8vw;
  top: 3%;
  left: 4.2%;
}
.s .list-icon {
  width: 15.2vw;
  height: 18.2vw;
  left: 4.8%;
}
.items-list--v1 .list-text__contents {
  padding: 0 0.7vw;
  font-size: 1.0vw;
}
.items-list--v1 .special-items__list {
  margin-top: 0.7vw;
  list-style-type: disc;
  margin-left: 0.9vw;
  line-height: 1.5;
  font-weight: 600;
}
.s .items-list--v1 .special-items__list {
  margin-top: 2.4vw;
  margin-left: 3.0vw;
}
.s .items-list--v1 .list-text__contents {
  padding: 0 2vw;
  font-size: 3vw;
}
.items-list--v1 .list-text__foot {
  padding: 0 0.7vw;
}
.s .items-list--v1 .list-text__foot {
  padding: 0 2vw;
}
.items-list--v2 .list-text__title {
  font-size: 1.2vw;
}
.s .items-list--v2 .list-text__title {
  font-size: 3.6vw;
}
.items-list--v2 .list-text__contents {
  margin-top: 0.5vw;
}
.s .items-list--v2 .list-text__contents {
  margin-top: 1.2vw;
}
.items-list--v2 .list-text__contents p {
  font-size: 0.85vw;
}
.s .items-list--v2 .list-text__contents p {
  font-size: 2.58vw;
}

.items-list--v3 .list-text {
  padding-top: 0.8vw;
}
.s .items-list--v3 .list-text {
  padding-top: 2.4vw;
}
.items-list--v3 .list-text__title {
  font-size: 1.2vw;
}
.s .items-list--v3 .list-text__title {
  font-size: 3.6vw;
}
.items-list--v3 .list-text__contents {
  margin-top: 1vw;
}
.s .items-list--v3 .list-text__contents {
  margin-top: 2.8vw;
}
.items-list--v3 .list-text__contents p {
  font-size: 0.85vw;
}
.s .items-list--v3 .list-text__contents p {
  font-size: 2.7vw;
}
.special-deco {
  position: absolute;
}

.list-img {
  margin-top: 1.5vw;
}
.s .list-img {
  margin-top: 3.5vw;
}
/* .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;
  position: absolute;
}
.special__deco--v1 {
  top: -2%;
  left: -4%;
}
.special__deco--v2 {
  top: -2%;
  right: -4%;
}
.special__deco--v3 {
  bottom: -2%;
  left: -4%;
}
.special__deco--v4 {
  bottom: -2%;
  right: -4%;
}
.special__deco--v5 {
  width: 94%;
  position: absolute;
  top: 20%;
  right: 2%;
  z-index: -1;
}
/* .s .special__deco--v5 {
  width: 80%;
  top: 20.5%;
  right: 10%;
} */
.special__deco--v6 {
  width: 52%;
  position: absolute;
  top: -1%;
  right: 16%;
}
.special__deco--v7 {
  width: 22%;
  position: absolute;
  top: 13.2%;
  right: 3%;
}
.gift-text {
  font-size: 0.8vw;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-top: 3.94%;
}
.s .gift-text {
  font-size: 1.8vw;
  font-weight: 800;
  padding-top: 3.94%;
}

/* *********************************
応援企画
****************************** */

/* .special__title {
  width: 30.72vw;
} */

/* .special__contents--wrap {
  background-color: #fff;
  max-width: 37.5vw;
  margin: 4.427vw auto 0;
  position: relative;
  padding-top: 3.947%;
  padding-bottom: 5.78%;
} */

.s .special__contents--wrap {
  max-width: 100%;
}

.special__detailed-img {
  width: 100%;
  margin: 0 auto;
}

.special__text {
  font-size: 1.18vw;
  font-weight: 700;
  line-height: 2.5;
  text-align: center;
  padding-top: 3.94%;
}

.special__text span:nth-of-type(1),
.special__text span:nth-of-type(3) {
  background-color: #ffffc5;
  color: #ff6000;
  padding: 0.4em 0.6em;
  margin: 0 0.1em;
}

.special__text span:nth-of-type(2) {
  border-bottom: solid 1px #ff6000;
  padding-bottom: 5px;
}

.special__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5.27%;
  gap: 1.8vw;
  justify-content: flex-end;
  position: relative;
}

.special__img--v1 {
  width: 58.88%;
}

.special__img--v2 {
  width: 90.47%;
}

.special__img--v3 {
  position: absolute;
  left: 1%;
  top: 4%;
  width: 23.09%;
  height: auto;
}

.special__img--v4 {
  position: absolute;
  width: 23.09%;
  top: 20%;
  right: 1%;
}

.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%;
}

/* sサイズ */
.s .special__title {
  width: 44.66vw;
}

.s .special__img--v4 {
  position: absolute;
  width: 25.73%;
  top: 20%;
  right: 0;
}

.s .special__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.27%;
  gap: 3.921vw;
  justify-content: flex-end;
  position: relative;
}

.s .special__text {
  font-size: 3.333vw;
}

.s .special__text span:nth-of-type(1),
.s .special__text span:nth-of-type(3) {
  margin: 0 0.2em;
}

.s .special__detailed-img {
  width: 104%;
  transform: translateX(-2%);
}

.s .special__img--v1 {
  width: 54.02%;
}

.s .special__img--v2 {
  width: 82.68%;
}

.s .special__img--v3 {
  position: absolute;
  left: 0%;
  top: 0;
  width: 25.73%;
  height: auto;
}

/* *********************************
 influencer
****************************** */
.influencer {
  background-color: #ffffc5;
  position: relative;
  padding-bottom: 4.22vw;
  max-width: 32vw;
}
.s .influencer {
  padding-bottom: 10.8vw;
  max-width: 100%;
}

.s .influencer__report-wrap--sp {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.influencer__report-title--sp {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84.36%;
}
.s .influencer__report-title--sp {
  top: 0%;
  left: 10%;
  width: 78.36%;
}

.influencer__title {
  width: 95%;
  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: 0;
  left: 8%;
  width: 84%;
}
/* .influencer__contents--wrap {
  background-image: url(../fukui/images/influencer-contents_bg_sp.png);
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  margin-top: 10%;
}
.s .influencer__contents--wrap {
  background-image: none;
  margin-top: 0;
} */
.influencer__contents {
  /* width: 70%; */
  display: flex;
  flex-flow: column;
  margin: 0 auto;
  padding: 8.04vw 0 8.04vw; /*インフルエンサー埋め込み前 */
  row-gap: 2.0vw; /*インフルエンサー埋め込み前 */
  background-image: url(../fukui/images/influence-bg_01.png); /*インフルエンサー埋め込み前*/
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.s .influencer__contents {
  width: 100%;
  padding: 22.4vw 0; /* インフルエンサー埋め込み前 */
  row-gap: 4.8vw; /* インフルエンサー埋め込み前 */
}
.influencer__item {
  font-weight: 700;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  /* padding-top: 8vw; インフルエンサー埋め込み後 */
}
/* .s .influencer__item {
  padding-top: 22.4vw; インフルエンサー埋め込み後
} */
.influencer__item__embed {
  background-image: url(../fukui/images/influencer-contents_bg_sp.png); 
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* padding-bottom: 7.5vw; インフルエンサー埋め込み後 */
}
/* .s .influencer__item__embed  {
  padding-bottom: 22vw; インフルエンサー埋め込み後
} */
.influencer__item__icon {
  width: 8.8vw;
  margin: 0 auto;
}
.s .influencer__item__icon {
  width: 38.5%;
}
.influencer__item__icon__embed {
  width: 5.8vw;
}
.s .influencer__item__icon__embed {
  width: 20vw;
}
.influencer__item__name {
  padding-top: 1.6em;
  font-size: 1.04vw;
  text-align: center;
}
.s .influencer__item__name {
  padding-top: 1em;
  padding-left: 1em;
  font-size: 3.2vw;
}
.influencer__item:nth-of-type(2) .influencer__item__name {
  font-size: 0.92vw;
}
.s .influencer__item:nth-of-type(2) .influencer__item__name {
  font-size: 2.8vw;
}
.influencer__item:nth-of-type(4) .influencer__item__name {
  font-size: 0.97vw;
}
.s .influencer__item:nth-of-type(4) .influencer__item__name {
  font-size: 2.9vw;
}
.influencer__item__name--v2 {
  font-size: 0.92vw;
}
.s .influencer__item__name--v2 {
  font-size: 2.8vw;
}
.influencer__item__name--v4 {
  font-size: 0.97vw;
}
.s .influencer__item__name--v4 {
  font-size: 2.9vw;
}
.influencer__item__text {
  padding-top: 1.4em;
  font-size: 0.8vw;
  text-align: center;
}
.s .influencer__item__text {
  padding-top: 1.7em;
  font-size: 2.5vw;
  grid-column: 1/-1;
  justify-items: center;
}
.influencer__item__text p {
  line-height: 1.5;
}
.influencer__item__text .list-arrow--v1 li::before {
  content: '▶︎';
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
}

.influencer__item__text .list-arrow--v2 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;
}
.instagram-embed {
  width: 80%;
  margin: 0 auto;
}
.instagram-media {
  min-width: 10px !important;
  max-width: 100% !important;
}
.Feedback {
  display: none !important;
}

.wave-divider--bottom--influencer {
  bottom: 1.2vw;
}
.s .wave-divider--bottom--influencer {
  bottom: 3.2vw;
}
/* .influencer__report-bg {
  margin-top: 2%;
}
.influencer__report-bg img {
  width: 130%;
  position: relative;
} */
.influencer__report-text {
  width: 18vw;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.s .influencer__report-text {
  width: 48vw;
}
.influencer__report-bg--sp {
  padding-top: 30px;
}
.s .influencer__report-bg--sp {
  padding-top: 36px;
}

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

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

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

.info__subtitle {
  font-size: 2vw;
  font-weight: 900;
  padding: 5.96% 0 5%;
}

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

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

.info__text-wrap {
  border-top: solid 1px #000;
  width: 95%;
  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: 4%;
  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: 5.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.04vw;
  font-weight: 500;
}
.s .info__text-wrap ul {
  font-size: 3.2vw;
  font-weight: 500;
}
.info__text-wrap ul li span {
  color: #ff6000;
}
.info__img {
  width: 20vw;
  margin: 0 auto;
  margin-top: 1.2vw;
}
.s .info__img {
  width: 90%;
  margin: 0 auto;
  margin-top: 5.26vw;
  margin-bottom: 5.26vw;
}

/* .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: 90%;
  padding: 4% 0;
}
.m .info__text-wrap .btn {
  width: 90%;
  font-size: 1.7vw;
}
.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: 1.4vw;
  font-weight: 700;
  background-color: #ffffc5;
  padding: 1.2vw 0;
  margin-top: 1.197vw;
}
.s .copyright {
  font-size: 2vw;
  padding: 2.13% 0;
  margin-top: 4vw;
}
