@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-size: clamp(14px, 1.56vw, 30px);
  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: clamp(13px, 1.56vw, 30px);
  font-weight: 900;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  letter-spacing: 0.2em;
  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: 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(../utsunomiya/images/guest-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  row-gap: 1.25vw;
  margin-top: 5.2vw;
}
.s .play__item-wrap--guest {
  padding: 0 12vw 8.66vw;
  background-image: url(../utsunomiya/images/guest-bg_sp.png);
  gap: 0;
  margin-top: 16vw;
}

.guest__title {
  margin: 0 auto;
  width: 60.13%;
  position: relative;
}
.s .guest__title {
  width: 100%;
  padding-top: 8.95%;
}

.guest__description {
  background-image: url(../utsunomiya/images/description-bg.svg);
  background-size: cover;
  font-size: clamp(12px, 1.1vw, 25px);
  text-align: center;
  width: 100%;
  margin: 0.92vw auto 0;
  padding: 3.12% 0;
  font-weight: 700;
}
.s .guest__description {
  width: 100%;
  font-size: 3.06vw;
  margin: 1.86vw auto 0;
}
.guest__description p {
  width: 94.55%;
  margin: 3.12% auto 0;
  line-height: 1.5;
}
.guest__name-wrap {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
}
.guest__name {
  font-size: 2.29vw;
  font-weight: 700;
  color: #ff1d7a;
  border-bottom: solid 2px #000;
  width: 90%;
  display: block;
  margin: 0 auto;
}
.m .guest__name {
  border-bottom: solid 1.5px #000;
}
.s .guest__name {
  font-size: 4.26vw;
  border-bottom: solid 1.5px #000;
}
.guest__name-wrap p {
  font-size: 1.77vw;
  margin: 0 auto;
  line-height: 1.5;
}
.s .guest__name-wrap p {
  font-size: 3.33vw;
}
.guest__day {
  position: absolute;
  top: -22%;
  left: 0;
  display: flex;
  align-items: center;
  column-gap: 0.8em;
}
.s .guest__day {
  top: 6%;
  gap: 3.33vw;
}
.guest__item:nth-of-type(3) .guest__day {
  position: absolute;
  top: 0;
  left: -33vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 72.85%;
  gap: 1em;
}
.s .guest__item:nth-of-type(3) .guest__day {
  top: 6%;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: normal;
  width: 100%;
}
.guest__day div:nth-of-type(1) {
  width: 48.43%;
}
.s .guest__day div:nth-of-type(1) {
  width: 48.33%;
}
.guest__day div:nth-of-type(2) p {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 1.97vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 0.2em;
}
.s .guest__day div:nth-of-type(2) p {
  font-size: 3.73vw;
}
.guest__day div:nth-of-type(2) span {
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  padding: 0.5em;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest__item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'a b'
    'c c';
  align-items: center;
  column-gap: 7.14vw;
  row-gap: 5.2vw;
  margin-top: 17.1%;
  justify-items: end;
}
.s .guest__item-wrap {
  grid-template-columns: 1fr;
  grid-template-areas:
    'a'
    'b'
    'c';
  align-items: center;
  justify-items: center;
  row-gap: 0;
  margin-top: 0;
  justify-items: end;
}
.guest__item {
  position: relative;
  /* width: 48.1%; */
  width: 98.5%;
}
.s .guest__item {
  flex-direction: column-reverse;
  gap: 16vw;
  padding-top: 26.66vw;
}
.guest__item:nth-of-type(1) {
  grid-area: a;
}
.guest__item:nth-of-type(2) {
  grid-area: b;
}
.guest__item:nth-of-type(3) {
  grid-area: c;
  width: 64.4%;
}
.s .guest__item:nth-of-type(3) {
  grid-area: c;
  width: 100%;
}

.guest__item--reverse {
  flex-direction: row-reverse;
}

.note {
  font-size: 1.3vw;
  font-weight: 500;
  text-align: center;
  padding-top: 3.5%;
}
.s .note {
  font-size: 3vw;
  padding-top: 4%;
}

.guest-deco--v1 {
  position: absolute;
  width: 9.88%;
  top: 84%;
  right: -18%;
}
.guest-deco--v2 {
  position: absolute;
  width: 11.13%;
  top: 40%;
  left: -21%;
}
.guest-deco--v3 {
  position: absolute;
  width: 8.45%;
  top: 63%;
  left: -31%;
}

/* 遊ぶ グルメ */
.play__item-wrap--gurume {
  background-image: url(../utsunomiya/images/gurume-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 5.2vw auto 0;
  padding: 4.68vw 0;
}
.s .play__item-wrap--gurume {
  background-image: url(../utsunomiya/images/gurume-bg_sp.png);
  margin: 12vw auto 0;
  padding-bottom: 9.33vw;
}
.play__item-wrap--gurume h3 {
}
.s .play__item-wrap--gurume h3 {
  width: 78.65%;
}

.category__title {
  font-weight: 700;
  margin: 4.27% auto 0;
  width: fit-content;
  text-align: center;
}
.s .category__title {
  width: 100%;
}
.category__title p {
  font-size: 1.56vw;
}
.s .category__title p {
  font-size: 3.06vw;
  line-height: 1.5;
}
.category__title-img {
  width: 26vw;
  margin: 3.5% auto 0;
}
.s .category__title-img {
  width: 40.8%;
}

.gourmet__day {
  margin: 0 auto;
}
.gourmet__day--d0808-0809 {
  width: 60%;
}
.s .gourmet__day--d0808-0809 {
}
.gourmet__day--d0808-0809-0810 {
  width: 77%;
}
.s .gourmet__day--d0808-0809-0810 {
}
.gourmet__day--d0809 {
  width: 41%;
}
.s .gourmet__day--d0809 {
}
.gourmet__day--d0810 {
  width: 41%;
}
.s .gourmet__day--d0810 {
}
/* .gourmet__group {
  margin-top: 3.94%;
}
.gourmet__group:nth-of-type(3) {
  margin-top: 4.6%;
}
.s .gourmet__group:nth-of-type(3) {
  margin-top: 13.43%;
}

.gourmet__group-day--m08d0910 {
  width: 24.27%;
}
.s .gourmet__group-day--m08d0910 {
  width: 38.5%;
} */
.gourmet__item-img {
  padding-top: 1rem;
  width: 80%;
  margin: 0 auto;
}
.s .gourmet__item-img {
  width: 89%;
}
.gourmet__item-img img {
  aspect-ratio: 2/1.6;
}
.gourmet__item-name {
  font-size: 1.8vw;
  font-weight: 700;
  text-align: center;
  padding-top: 3.86%;
}
.s .gourmet__item-name {
  font-size: 3.73vw;
  padding-top: 5.9%;
}

.gourmet__restaurant-name {
  background-image: url(../utsunomiya/images/description-bg.svg);
  background-size: cover;
  font-size: 1.45vw;
  font-weight: 700;
  text-align: center;
  margin-top: 1.3%;
  padding-bottom: 1rem;
}
.s .gourmet__restaurant-name {
  font-size: 3vw;
  margin-top: 2.3%;
}
.gourmet__restaurant-name p {
  line-height: 1.7;
}
.gourmet__restaurant-name p:nth-of-type(2) {
  background-color: #fff;
  color: #1ab800;
  line-height: 1.5;
  font-size: 2.2vw;
  font-weight: 900;
  width: 90%;
  margin: 0 auto;
}
.s .gourmet__restaurant-name p:nth-of-type(2) {
  font-size: 4.6vw;
}

.gourmet__item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.77vw;
  margin: 6.25% auto 0;
  width: 91.38%;
}
.s .gourmet__item-wrap {
  grid-template-columns: 1fr;
  gap: 11vw;
  width: 100%;
  margin: 7% auto 0;
}
.gourmet__item {
  /* width: 28.48%; */
}
.s .gourmet__item {
  width: 74%;
  margin: 0 auto;
}
.gourmet__item-day {
  width: 59.12%;
  margin: 0 auto;
}
.s .gourmet__item-day {
  width: 41.33%;
  margin: 0 auto;
}

.gift-campaign {
  width: 91.38%;
  margin: 14.8% auto 0;
  position: relative;
}
.s .gift-campaign {
  width: 86.38%;
}
.gift-campaign__lottery {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.s .gift-campaign__lottery {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.gift-campaign-balloon {
  position: absolute;
  top: -9%;
  left: -4%;
  width: 13.88%;
}
.s .gift-campaign-balloon {
  top: -4%;
  left: -12%;
  width: 22.98%;
}

.gurume-deco--v1 {
  position: absolute;
  top: -2%;
  left: -13%;
  width: 17vw;
}
.s .gurume-deco--v1 {
  top: -1%;
  left: -7%;
  width: 23.86vw;
}

.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%;
}
.play-deco--v5 {
  width: 12.85vw;
  top: 10%;
  right: 5%;
}
.s .play-deco--v5 {
  top: 10%;
  right: 7%;
}
.play-deco--v6 {
  width: 9.11vw;
  bottom: 19%;
  right: -5%;
}
.s .play-deco--v6 {
  width: 16.26vw;
  bottom: -10%;
  right: 5%;
}
.play-deco--v7 {
  width: 4.94vw;
  top: 0%;
  left: -8%;
}
.s .play-deco--v7 {
  width: 9.8vw;
  top: unset;
  bottom: 33%;
  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: 6.82vw;
  bottom: -9%;
  right: 36%;
}
.s .play-deco--v9 {
  width: 9.46vw;
  bottom: -9%;
  right: 10%;
}
.play-deco--v11 {
  width: 11.77vw;
  bottom: 0%;
  left: 4%;
}
.s .play-deco--v11 {
  width: 9.73vw;
  top: unset;
  left: 8%;
  bottom: 0%;
  right: unset;
}
.play-deco--v12 {
  width: 5.46vw;
  bottom: 44%;
  right: -7%;
}
.s .play-deco--v12 {
  width: 9.73vw;
  top: 8%;
  left: 2%;
  bottom: unset;
  right: unset;
}

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

.play__incidentally__deco {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  height: 24%;
  width: auto;
}

.play__incidentally__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.s .play__incidentally__deco {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  height: 14.3%;
  width: auto;
}

/* 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%;
  align-items: center;
  z-index: 1;
}
.s .model__items-wrap:first-of-type {
  padding-top: 6.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;
  position: relative;
}
.s .model__text-warp {
  align-items: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.model__text-warp--v1 {
  margin-top: 2.96%;
}
.model__text-warp--v3 {
  margin-top: 2.96%;
}

.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__text span {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: solid 1px #000;
  display: block;
}
.s .model__text span {
  text-align: left;
}
.model__text-warp--v3 span {
  border: none;
  margin-top: 0;
  font-weight: 500;
}

.model__text-balloon {
  position: absolute;
  width: 53.14%;
  top: -19%;
  right: -20%;
}
.s .model__text-balloon {
  position: absolute;
  width: 30.8%;
  top: -48%;
  right: -1%;
}

.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: 20%;
  left: -15%;
}
.s .model__time--v1 {
  top: 26%;
  right: -36%;
  left: unset;
}
.model__time--v2 {
  top: -8%;
  right: -15%;
}
.s .model__time--v2 {
  top: 34%;
  right: unset;
  left: -24%;
}
.model__time--v3 {
  top: 22%;
  left: -29%;
}
.s .model__time--v3 {
  top: 14%;
  left: unset;
  right: -14%;
}

.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;
  justify-content: center;
  z-index: 2;
}
.model__img-wrap--v2 {
  width: 43.35%;
}
.model__img-wrap--v1 {
  position: relative;
  z-index: 1;
}
.model__img-wrap--v1::before {
  position: absolute;
  content: '';
  background-image: url(../utsunomiya/images/model-img_01_bg.png);
  width: 100%;
  height: 100%;
  bottom: -56%;
  left: 1%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.s .model__img-wrap--v1 {
  width: 51.46vw;
  margin-right: 20%;
}
.s .model__img-wrap--v1::before {
  position: absolute;
  content: '';
  background-image: url(../utsunomiya/images/model-img_01_bg_sp.png);
  bottom: -54%;
  left: 1%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

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

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

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

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

.special__text {
  font-size: 1.56vw;
  letter-spacing: 0.05em;
  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.5em 1em;
  margin: 0 1em;
}

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

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

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

.special__img--v2 {
  width: 20.47%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    'a'
    'b';
  row-gap: 2em;
}
.s .special__img--v2 {
  grid-template-columns: 0.6fr 1.4fr;
  grid-template-areas: 'b a';
  align-items: center;
  column-gap: 1.5em;
}
.special__img--v2 picture {
  grid-area: b;
  width: 115%;
  max-width: 115%;
}
.special__limited-seal {
  grid-area: a;
  font-weight: 700;
  font-size: 1.25vw;
  font-size: clamp(12px, 1.25vw, 24px);
}
.s .special__limited-seal {
  font-size: clamp(8px, 2.4vw, 18px);
}
.special__limited-seal p {
  line-height: 1.5;
}
.special__limited-seal p:nth-child(2),
.special__limited-seal p:nth-child(3) {
  font-weight: 500;
  font-size: 0.75vw;
  font-size: clamp(10px, 0.75vw, 15px);
  text-indent: -1em;
  padding-left: 1em;
}
.s .special__limited-seal p:nth-child(2),
.s .special__limited-seal p:nth-child(3) {
  font-size: clamp(8px, 2.4vw, 18px);
  padding-top: 0.5em;
}

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

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

/* mサイズ */

.m .special__text {
  font-size: 1.644vw;
}

.m .special__contents--wrap {
  width: 89.33vw;
}

/* 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: 5.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: 90.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: 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-wrap {
  background: url(../kishiwada/imgs/influencer-report_bg_sp.png);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;
  position: relative;
  width: 96.87vw;
  margin: 2vw auto 0;
  background-size: 100% 100%;
  background-position: center;
  padding: 12% 6% 10%;
} */
/* .s .influencer__report-wrap {
  width: 110vw;
  margin-left: -5vw;
} */
/* .s .influencer__report-wrap--sp {
  display: flex;
  flex-direction: column;
  gap: 5px;
} */

.influencer__report-title {
  position: absolute;
  top: 21%;
  left: 18%;
  width: 65%;
}
.s .influencer__report-title {
  position: absolute;
  top: -17%;
  left: 9%;
  width: 83%;
}

/* .report__img--v1 {
  top: 18%;
  left: 9%;
  width: 23.13%;
  min-width: 300px;
}
.report__img--v2 {
  top: 18%;
  left: 39%;
  width: 23.13%;
  min-width: 300px;
}
.report__img--v3 {
  top: 18%;
  left: 68%;
  width: 23.13%;
  min-width: 300px;
} */

/* .influencer-name {
  margin: 6.97% auto 0;
}

.influencer-name--v1 {
  width: 72%;
}
.influencer-name--v2 {
  width: 108%;
  max-width: 600px;
  margin-left: -4%;
}
.influencer-name--v3 {
  width: 110%;
  max-width: 110%;
  margin-left: -5%;
} */

.imgcharacter__text {
  position: absolute;
  top: 55%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 4;
  width: 28.59%;
}

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

.instagram__link {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12%;
}
.s .instagram__link {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13%;
}
/* 
.instagram__item_tentative {
  position: relative;
} */

/* インスタグラム投稿追加用 */
/* .reportite__item {
  position: relative;
  width: 110%;
  margin-left: -5%;
  background: url(../kishiwada/imgs/influencer-report_bg_sp.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25% 0 25%;
} */

/* .reportite__item--movie--v1 {
  width: 63.6vw;
  min-width: 320px;
  top: 17%;
  left: 21%;
}
.reportite__item--movie--v2 {
  width: 63.6vw;
  min-width: 320px;
  top: 3%;
  left: 21%;
}
.reportite__item--movie--v3 {
  width: 63.6vw;
  min-width: 320px;
  height: auto;
  top: 3%;
  left: 21%;
} */

.influencer__report-bg {
  margin-top: -12%;
}
.s .influencer__report-bg {
  margin-top: 11%;
}
.influencer__report-bg img {
  width: 130%;
  position: relative;
}
.influencer__report-text {
  width: 40vw;
  position: absolute;
  top: 56%;
  left: 31%;
}
.s .influencer__report-text {
  width: 55vw;
  top: 40%;
  left: 23%;
}

/* インスタ埋め込み用 */
/* .instagram__item {
  position: relative;
  width: 100%;
}

.instagram-media {
  min-width: 10px !important;
}

.Feedback {
  display: none !important;
} */

/* sp */

/* .s .influencer-name {
  margin: 3.77% auto 0;
}

.s .influencer-name--v1 {
  max-width: 700px;
  width: 75%;
}

.s .influencer-name--v2 {
  width: 87.84%;
}

.s .influencer-name--v3 {
  max-width: 600px;
  width: 106%;
  margin-left: 0;
} */

/* *********************************
  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%;
  border-bottom: solid 1px #000;
  width: 70%;
  margin: 0 auto;
}

.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-size: clamp(13px, 1.25vw, 24px);
  font-weight: 500;
}
.m .info__contents-wrap p {
  /* font-size: 1.6vw; */
}
.s .info__contents-wrap p {
  font-size: 3.33vw;
}

.info__text-wrap {
  width: 95%;
  margin: 0 auto;
}
.m .info__text-wrap {
  /* 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-size: clamp(13px, 1.25vw, 24px);
  font-weight: 500;
}
.s .info__text-wrap ul {
  font-size: 3.33vw;
  font-weight: 500;
}
.info__text-wrap ul li span {
  color: #ff6000;
}

.info__overview-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'a b';
  gap: 4%;
  margin-top: 2.91%;
  place-items: center;
}
.s .info__overview-wrap {
  grid-template-columns: 1fr;
  grid-template-areas:
    'b'
    'a';
  justify-items: center;
  gap: 5.97vw;
}
.info__overview-wrap div:nth-of-type(2) {
  grid-area: b;
  justify-self: start;
}
.s .info__overview-wrap div:nth-of-type(2) {
  grid-area: b;
  justify-self: center;
}
.info__poster {
  width: 74.2%;
  grid-area: a;
  justify-self: end;
}
.s .info__poster {
  width: 57.16%;
  justify-self: center;
}
/* .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: 41.67%;
  width: max(277px, 41.67%);
  padding: 2% 0;
}
.s .info__text-wrap .btn {
  margin: 0 auto;
  margin-top: 5.33%;
  width: 72.38%;
  font-size: 3.33vw;
  padding: 4% 0;
}

/* 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;
}
