@charset "UTF-8";
:root {
  --color-main: #f74140;
  --color-sub: #0b165e;
  --color-accent: #fefe3e;
  --color-gray: #d3d3d3;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "M PLUS Rounded 1c", "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--color-sub);
  background: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

.container {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-block: 10rem;
  }
}

.inner {
  padding-inline: 1rem;
  width: 100%;
  max-width: calc(1200px + 2rem);
  margin-inline: auto;
}

.br {
  display: inline-block;
}

.jaggy {
  transform: rotate(0.04deg);
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title {
    width: 50%;
  }
}
.section-title img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .section-title img {
    width: 50%;
  }
}
.section-title::before {
  content: url(../img/cast_title_icon.svg);
  display: block;
  width: 40%;
  transform: translateY(2rem);
}
@media screen and (min-width: 768px) {
  .section-title::before {
    width: 50%;
  }
}

.swaying-btn, .swayingReverse-btn {
  transition: all 0.3s;
  animation: swaying 1s ease-in-out infinite alternate;
}
@media (hover: hover) {
  .swaying-btn:hover, .swayingReverse-btn:hover {
    scale: 1.1;
    opacity: 1;
  }
}
.swaying-btn:active, .swayingReverse-btn:active {
  scale: 1.1;
}
@keyframes swaying {
  0% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(-1rem);
  }
}

.swayingReverse-btn {
  animation: swayingReverse 1s ease-in-out infinite alternate;
}
@keyframes swayingReverse {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(1rem);
  }
}

.decoSwing {
  animation: decoSwing 2.4s infinite steps(2, end);
  animation-delay: 2s;
}
@keyframes decoSwing {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(20deg);
  }
}

.decoSwingReverse {
  animation: decoSwingReverse 2.4s infinite steps(2, end);
  animation-delay: 2s;
}
@keyframes decoSwingReverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-20deg);
  }
}

.decoSwingCast {
  animation: decoSwingCast 2.4s infinite steps(2, end);
  animation-delay: 2s;
}
@keyframes decoSwingCast {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}

.decoSwingCastReverse {
  animation: decoSwingCastReverse 2.4s infinite steps(2, end);
  animation-delay: 2s;
}
@keyframes decoSwingCastReverse {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}

.bg {
  position: relative;
}
.bg::before, .bg::after {
  content: "";
  background: url(../img/bg.svg) no-repeat center/100%;
  width: 50rem;
  height: 50rem;
  position: absolute;
  top: 60rem;
  left: -20rem;
  z-index: -2;
  opacity: 0.4;
  animation: rotate 20s infinite linear 0.5s both;
}
@media screen and (min-width: 768px) {
  .bg::before, .bg::after {
    width: 130rem;
    height: 130rem;
    top: 50rem;
    left: -53rem;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bg::after {
  top: 120rem;
  left: auto;
  right: -20rem;
}
@media screen and (min-width: 768px) {
  .bg::after {
    top: 250rem;
    right: -53rem;
  }
}

/* ヘッダー -------------------------------------------------------------------------------------------------------- */
.header {
  position: relative;
  background-image: radial-gradient(#d3d3d3 16%, transparent 17%), radial-gradient(#d3d3d3 16%, transparent 17%);
  background-size: 5rem 5rem;
  background-position: 0 0, 2.5rem 2.5rem;
}
@media screen and (min-width: 1024px) {
  .header {
    background-size: 7rem 7rem;
    background-position: 0 0, 3.5rem 3.5rem;
    padding-bottom: unset;
  }
}
.header::after {
  content: "";
  background: linear-gradient(135deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
}
.header h1 {
  position: relative;
  z-index: 1;
}
.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  padding-block: 0.5rem 2rem;
  padding-inline: 3%;
}
@media screen and (min-width: 768px) {
  .header__btn {
    flex-direction: row;
    padding-top: unset;
    padding-bottom: 3%;
  }
}
@media screen and (min-width: 1024px) {
  .header__btn {
    position: absolute;
    z-index: 1;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: unset;
    bottom: clamp(1.1rem, 1.8vw, 3.4rem);
  }
}
.header__btn-anchor {
  position: relative;
  z-index: 10;
}
@media (hover: hover) {
  .header__btn-anchor:hover {
    z-index: 11;
  }
}
.header__btn-anchor:active {
  z-index: 11;
}
.header__btn .anchor-TVer {
  color: #fff;
  background: var(--color-main);
  font-size: 2.8rem;
  font-weight: 800;
  width: 33rem;
  height: 6.2rem;
  border-radius: 10rem;
  box-shadow: 0.5rem 0.5rem 0.25rem rgba(11, 22, 94, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(1rem);
}
@media screen and (min-width: 768px) {
  .header__btn .anchor-TVer {
    font-size: clamp(2.5rem, 4vw, 4.1rem);
    height: 10.7vw;
    width: 45vw;
  }
}
@media screen and (min-width: 1024px) {
  .header__btn .anchor-TVer {
    font-size: min(3.7rem, 2.11vw);
    max-width: 37rem;
    width: 19.7vw;
    max-height: 8.5rem;
    height: 5.3vw;
    box-shadow: 1rem 1rem 0.5rem rgba(11, 22, 94, 0.35);
  }
}
.header__btn .anchor-TVer.swaying-btn {
  animation-delay: 0.5s;
}
.header__btn .anchor-campaign {
  width: 33rem;
  height: 6.2rem;
  filter: drop-shadow(0.5rem 0.5rem 0.25rem rgba(11, 22, 94, 0.35));
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.3rem solid var(--color-main);
  background: var(--color-accent);
  transform: translateY(-1rem);
}
@media screen and (min-width: 768px) {
  .header__btn .anchor-campaign {
    width: 62vw;
    height: 10.7vw;
    border: min(0.4rem, 0.4vw) solid var(--color-main);
  }
}
@media screen and (min-width: 1024px) {
  .header__btn .anchor-campaign {
    max-width: 47rem;
    width: 28.4vw;
    max-height: 8.5rem;
    height: 5.3vw;
    border: min(0.4rem, 0.3vw) solid var(--color-main);
  }
}
.header__btn .anchor-campaign img {
  width: 88%;
  max-width: 38.3rem;
}
@media screen and (min-width: 768px) {
  .header__btn .anchor-campaign img {
    width: 85%;
    max-width: 48.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .header__btn .anchor-campaign img {
    max-width: 38.5rem;
  }
}

/* フッター -------------------------------------------------------------------------------------------------------- */
.footer {
  background: var(--color-sub);
  padding-block: 2rem;
  color: #fff;
}
.footer .pankuzu {
  display: none;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer .pankuzu {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .pankuzu__item {
  transform: rotate(0.04deg);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
.footer .pankuzu__item:not(:last-child)::after {
  content: "";
  border-top: 0.25rem solid;
  border-right: 0.25rem solid;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  transform: rotate(45deg);
  margin-right: 0.7em;
}
.footer .sp-footer {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2em;
       column-gap: 2em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer .sp-footer {
    display: none;
  }
}
.footer .sp-footer a {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  row-gap: 0.3em;
}
.footer .sp-footer a::before {
  content: "";
  width: 4.5rem;
  aspect-ratio: 1;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
}
.footer .sp-footer a span {
  display: block;
  font-size: 1.3rem;
}
.footer .sp-footer .home::before {
  -webkit-mask-image: url(../img/link-home.svg);
          mask-image: url(../img/link-home.svg);
}
.footer .sp-footer .tv::before {
  -webkit-mask-image: url(../img/link-tv.svg);
          mask-image: url(../img/link-tv.svg);
}
.footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-block: 1.7rem 2.1rem;
}
.footer .sns__item a {
  border-radius: 10rem;
  padding: 0.3rem;
}
.footer .sns__item a.btn-fb {
  background: #1877f2;
}
.footer .sns__item a.btn-tw {
  background: #000;
}
.footer .sns__item a.btn-line {
  background: #1eb900;
}
.footer .sns__item img {
  width: 5rem;
  border-radius: 10rem;
}
.footer .copyright {
  font-size: 0.8em;
  display: block;
  text-align: center;
  line-height: 1.5;
  padding-inline: 6rem;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    line-height: inherit;
    padding-inline: unset;
  }
}

/* main -------------------------------------------------------------------------------------------------------- */
.main {
  overflow-x: hidden;
  overflow-y: clip;
}

/* 概要 -------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .about.bg::after {
    content: none;
  }
}
.about__top {
  padding-block: 4rem 0;
  background-image: radial-gradient(var(--color-main) 16%, transparent 17%), radial-gradient(var(--color-main) 16%, transparent 17%);
  background-size: 5rem 5rem;
  background-position: 0 -0.5rem, 2.5rem 2rem;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .about__top {
    padding-block: 5rem 0;
    background-size: 7rem 7rem;
    background-position: 0 0.6rem, 3.5rem 4.2rem;
  }
}
.about__top::before {
  content: "";
  background: var(--color-main);
  clip-path: polygon(0 0, 50% 100%, 100% 0%);
  width: 100%;
  height: 5rem;
  position: absolute;
  bottom: -4.95rem;
}
@media screen and (min-width: 1024px) {
  .about__top::before {
    height: 8rem;
    bottom: -7.95rem;
  }
}
.about__top::after {
  content: "";
  background: linear-gradient(175deg, #ff5453 0%, var(--color-main) 70%);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
.about__top .inner {
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .about__top .inner {
    padding-inline: 11rem;
  }
}
.about__top p {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.8;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .about__top p {
    line-height: inherit;
  }
}
.about__top p .br2 {
  display: inline;
}
@media screen and (min-width: 768px) {
  .about__top p .br2 {
    display: inline-block;
  }
}
.about__top p .paragraph {
  margin-top: 1em;
  display: block;
}
@media screen and (min-width: 768px) {
  .about__top p .paragraph {
    margin-top: unset;
  }
}
.about__top p .strong {
  font-size: 150%;
  line-height: 1.3;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .about__top p .strong {
    margin-top: 0.2em;
    font-size: 180%;
  }
}
.about__top p .strong.yellow {
  color: var(--color-accent);
}
.about__top p .small {
  font-size: 60%;
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .about__top p .small {
    margin-top: 0.6em;
    font-size: 70%;
  }
}
.about__bottom {
  padding-block: 9.5rem 5rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about__bottom {
    padding-block: 13.5rem 10rem;
  }
}
.about__bottom .inner {
  max-width: calc(900px + 2rem);
}
.about__bottom p {
  font-size: inherit;
  font-weight: 700;
  text-align: center;
  word-break: auto-phrase;
  letter-spacing: 0;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .about__bottom p {
    font-size: 2rem;
    line-height: 2.1;
  }
}
.about__bottom p.margin {
  margin-top: 2em;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .about__bottom p.margin {
    margin-bottom: unset;
  }
}
.about__bottom .strong {
  font-size: 138%;
  line-height: 1.6;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .about__bottom .strong {
    font-size: 200%;
    font-size: 4rem;
  }
}
.about__bottom .red {
  color: var(--color-main);
}
.about__bottom .cast-box {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bottom .cast-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .about__bottom .cast-box {
    margin-top: 5rem;
  }
}
.about__bottom .cast-img {
  transform: rotate(-10deg);
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__bottom .cast-img {
    width: 45%;
  }
}
@media screen and (min-width: 1280px) {
  .about__bottom .cast-img {
    max-width: 50%;
    width: 26vw;
    margin-inline: unset;
  }
}
.about__bottom .cast-img.cast01 {
  transform: rotate(10deg);
}
.about__bottom .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 1280px) {
  .about__bottom .wrapper {
    display: none;
  }
}
.about__bottom .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 1280px) {
  .about__bottom .wrap {
    position: absolute;
    gap: 10rem;
    z-index: -1;
    width: 20%;
    max-width: 36.7rem;
  }
  .about__bottom .wrap.wrap01 {
    top: 10%;
    left: 3%;
  }
  .about__bottom .wrap.wrap03 {
    top: 10%;
    right: 3%;
  }
}
.about__bottom .wrap.wrap-wide {
  display: none;
}
@media screen and (min-width: 1280px) {
  .about__bottom .wrap.wrap-wide {
    display: flex;
  }
}
.about__bottom .icon {
  width: 40%;
  margin-left: 3rem;
}
@media screen and (min-width: 768px) {
  .about__bottom .icon {
    width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .about__bottom .icon {
    width: 40%;
  }
}
.about__bottom .food {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .about__bottom .food {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .about__bottom .food {
    width: 80%;
  }
}

/* 出演者 -------------------------------------------------------------------------------------------------------- */
.cast {
  padding-block: 8rem 26rem;
}
@media screen and (min-width: 768px) {
  .cast {
    padding-block: 10rem 30rem;
  }
}
@media screen and (min-width: 768px) {
  .cast.bg::before, .cast.bg::after {
    content: none;
  }
}
.cast.bg::before {
  top: 50rem;
}
.cast.bg::after {
  top: 140rem;
}
.cast__list {
  margin-top: 8rem;
  position: relative;
  z-index: 1;
}
.cast__top-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .cast__top-list {
    flex-direction: row;
    width: 95%;
    margin-inline: auto;
    gap: 2rem;
    align-items: center;
  }
}
.cast__top-item {
  width: 60%;
  position: relative;
}
.cast__top-item::before {
  content: "";
  background: url(../img/cast_talent_name_01.svg) no-repeat center/contain;
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: -47%;
}
.cast__top-item:nth-child(2)::before {
  background-image: url(../img/cast_talent_name_02.svg);
  width: 50%;
  top: -49%;
  right: -1%;
}
.cast__top-item:nth-child(3)::before {
  background-image: url(../img/cast_talent_name_03.svg);
  width: 74%;
  right: -7%;
  top: -40%;
}
.cast__top-item.main-cast {
  width: 80%;
}
.cast__top-item:nth-child(2) {
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .cast__top-item:nth-child(3) {
    align-self: flex-start;
  }
}
.cast__top-item img {
  filter: drop-shadow(0.73rem 0.73rem 0.36rem rgba(11, 22, 94, 0.35));
}
.cast__bottom {
  margin-top: 5rem;
}
.cast__bottom h3 {
  width: 18.7rem;
}
@media screen and (min-width: 768px) {
  .cast__bottom h3 {
    width: 36rem;
  }
}
.cast__bottom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(5rem, 35%));
  gap: 8% 6%;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-inline: 2rem auto;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .cast__bottom-list {
    grid-template-columns: repeat(5, minmax(5rem, 20rem));
    justify-content: center;
    gap: 28% 3%;
    margin-inline: unset;
    margin-top: 6rem;
  }
}
.cast__bottom-item {
  position: relative;
}
.cast__bottom-item:nth-child(3), .cast__bottom-item:nth-child(4), .cast__bottom-item:nth-child(7), .cast__bottom-item:nth-child(8) {
  transform: translateX(40%);
}
@media screen and (min-width: 768px) {
  .cast__bottom-item:nth-child(3), .cast__bottom-item:nth-child(4), .cast__bottom-item:nth-child(7), .cast__bottom-item:nth-child(8) {
    transform: unset;
  }
}
@media screen and (min-width: 768px) {
  .cast__bottom-item:nth-child(2), .cast__bottom-item:nth-child(4), .cast__bottom-item:nth-child(7), .cast__bottom-item:nth-child(9) {
    transform: translateY(50%);
  }
}
.cast__bottom-item::before {
  content: "";
  background: url(../img/cast_ana_name_01.svg) no-repeat center/contain;
  position: absolute;
  width: 128%;
  height: 128%;
  top: 50%;
  left: 50%;
  transform: translate(-49%, -50.5%);
}
.cast__bottom-item:nth-child(2)::before {
  background-image: url(../img/cast_ana_name_02.svg);
}
.cast__bottom-item:nth-child(3)::before {
  background-image: url(../img/cast_ana_name_03.svg);
  transform: translate(-52.1%, -50%);
}
.cast__bottom-item:nth-child(4)::before {
  background-image: url(../img/cast_ana_name_04.svg);
}
.cast__bottom-item:nth-child(5)::before {
  background-image: url(../img/cast_ana_name_05.svg);
}
.cast__bottom-item:nth-child(6)::before {
  background-image: url(../img/cast_ana_name_06.svg);
}
.cast__bottom-item:nth-child(7)::before {
  background-image: url(../img/cast_ana_name_07.svg);
  transform: translate(-51%, -51%);
}
.cast__bottom-item:nth-child(8)::before {
  background-image: url(../img/cast_ana_name_08.svg);
  transform: translate(-51%, -51.5%);
}
.cast__bottom-item:nth-child(9)::before {
  background-image: url(../img/cast_ana_name_09.svg);
  transform: translate(-54%, -50.3%);
}
.cast__bottom-item:nth-child(10)::before {
  background-image: url(../img/cast_ana_name_10.svg);
  transform: translate(-53%, -51%);
}
.cast__bottom-item img {
  filter: drop-shadow(0.5rem 0.5rem 0.4rem rgba(11, 22, 94, 0.35));
}

/* 店舗情報 -------------------------------------------------------------------------------------------------------- */
.shop {
  position: relative;
  padding-block: 8rem 7rem;
  background-image: radial-gradient(#d3d3d3 16%, transparent 17%), radial-gradient(#d3d3d3 16%, transparent 17%);
  background-size: 5rem 5rem;
  background-position: 0 0, 2.5rem 2.5rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .shop {
    padding-block: 10rem 10rem;
    background-size: 7rem 7rem;
    background-position: 0 0, 3.5rem 3.5rem;
  }
}
.shop::before {
  content: "";
  background: linear-gradient(150deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 50%);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
.shop .bg-right::before, .shop .bg-right::after {
  z-index: 0;
}
.shop .bg-right::before {
  top: 30rem;
}
@media screen and (min-width: 768px) {
  .shop .bg-right::before {
    content: none;
  }
}
.shop .bg-right::after {
  top: 90rem;
}
@media screen and (min-width: 768px) {
  .shop .bg-right::after {
    top: -100rem;
  }
}
.shop .bg-top::before, .shop .bg-top::after {
  top: 150rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .shop .bg-top::before, .shop .bg-top::after {
    top: 50rem;
  }
}
.shop .bg-top::after {
  top: 210rem;
}
@media screen and (min-width: 768px) {
  .shop .bg-top::after {
    top: 200rem;
  }
}
.shop .bg-bottom::before, .shop .bg-bottom::after {
  top: -150rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .shop .bg-bottom::before, .shop .bg-bottom::after {
    top: -370rem;
  }
}
.shop .bg-bottom::after {
  top: -90rem;
}
@media screen and (min-width: 768px) {
  .shop .bg-bottom::after {
    top: -220rem;
  }
}
.shop .section-title {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shop .section-title {
    width: 60%;
  }
}
.shop .section-title img {
  width: 65%;
}
@media screen and (min-width: 768px) {
  .shop .section-title img {
    width: 60%;
  }
}
.shop .section-title::before {
  width: 35%;
}
@media screen and (min-width: 768px) {
  .shop .section-title::before {
    width: 40%;
  }
}
.shop__map {
  margin-top: 5rem;
  transform: scale(1.15) translateX(-0.3rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .shop__map {
    transform: unset;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .shop__map {
    transform: unset;
  }
}
.shop__list {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .shop__list {
    gap: 5rem;
    margin-top: 3rem;
  }
}
.shop__item {
  padding: 1rem;
  padding-bottom: 3rem;
  border-radius: 2rem;
  box-shadow: 0.2rem 0.2rem 1rem rgba(11, 22, 94, 0.4);
  position: relative;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .shop__item {
    padding: 2rem;
    padding-bottom: 3rem;
    border-radius: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .shop__item {
    padding: 3rem;
  }
}
.shop__item::before {
  content: "";
  background: url(../img/shop_listmap_01.svg) no-repeat center/100%;
  position: absolute;
  top: 0rem;
  right: 0.8rem;
  width: 11rem;
  height: 12rem;
  z-index: 0;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .shop__item::before {
    width: 24rem;
    height: 24rem;
    right: 3rem;
    top: 1rem;
  }
}
.shop__item:nth-child(2)::before {
  background-image: url(../img/shop_listmap_02.svg);
}
.shop__item:nth-child(3)::before {
  background-image: url(../img/shop_listmap_03.svg);
}
.shop__item:nth-child(4)::before {
  background-image: url(../img/shop_listmap_04.svg);
}
.shop__item:nth-child(5)::before {
  background-image: url(../img/shop_listmap_05.svg);
}
.shop__item:nth-child(6)::before {
  background-image: url(../img/shop_listmap_06.svg);
}
.shop__item:nth-child(7)::before {
  background-image: url(../img/shop_listmap_07.svg);
}
.shop__item:nth-child(8)::before {
  background-image: url(../img/shop_listmap_08.svg);
}
.shop__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.shop__head-title h3 {
  width: 18.5rem;
  height: auto;
  transform: translateX(-2.5rem);
}
@media screen and (min-width: 768px) {
  .shop__head-title h3 {
    width: clamp(24rem, 31.2vw, 33rem);
    transform: translateX(-16%);
  }
}
.shop__head-ana {
  transform: translateX(-1.4rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .shop__head-ana {
    flex-direction: row;
    align-items: center;
    transform: translateX(-2.5rem);
    width: auto;
    gap: 1.5rem;
  }
}
.shop__head-ana img {
  filter: drop-shadow(0.3rem 0.3rem 0.2rem rgba(11, 22, 94, 0.4));
  width: 8rem;
}
@media screen and (min-width: 768px) {
  .shop__head-ana img {
    width: clamp(13rem, 16.4vw, 15rem);
  }
}
.shop__head-ana-name {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .shop__head-ana-name {
    gap: 0.5rem;
    font-size: clamp(1.6rem, 2vw, 2.5rem);
  }
}
.shop__head-ana-name span {
  line-height: 1;
}
.shop__head-ana-name span.name-head {
  font-size: 70%;
}
.shop__head-ana-name span .small {
  font-size: 70%;
  vertical-align: -0.1em;
  margin-left: 0.3em;
}
.shop__head-combi {
  display: flex;
  gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .shop__head-combi {
    gap: unset;
  }
}
.shop__head-combi .shop__head-ana {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .shop__head-combi .shop__head-ana {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .shop__head-combi .shop__head-ana-name {
    max-width: 14rem;
    min-width: 9rem;
    width: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .shop__head-combi .shop__head-ana.okamoto {
    margin-left: 1rem;
  }
}
.shop__head-combi .shop__head-ana .small.br {
  display: block;
  margin-top: 0.2rem;
  margin-left: unset;
}
@media screen and (min-width: 768px) {
  .shop__head-combi .shop__head-ana .small.br {
    display: inline-block;
    margin-top: unset;
  }
}
.shop__body {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .shop__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2rem, 2.6vw, 3rem);
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .shop__body {
    padding-inline: min(2rem, 1.6vw);
    gap: clamp(3rem, 3.8vw, 5rem);
  }
}
.shop__body-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .shop__body-item {
    flex-direction: column;
    flex: 1;
    gap: 1.5rem;
  }
}
.shop__body-item:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .shop__body-item:nth-child(2) {
    flex-direction: column;
  }
}
.shop__body-title {
  flex: 1;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .shop__body-title {
    flex: auto;
    width: 100%;
    padding-inline: 0.5rem;
  }
}
.shop__body-title::before {
  content: "";
  position: absolute;
  background: url(../img/icon_udon.svg) no-repeat center/100%;
  width: 10rem;
  height: 10rem;
  transform: rotate(-10deg);
  z-index: -1;
  opacity: 0.3;
  top: -2rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .shop__body-title::before {
    width: 12rem;
    height: 12rem;
    top: -3rem;
  }
}
.shop__body-title.udon::before {
  background-image: url(../img/icon_udon.svg);
}
.shop__body-title.ramen::before {
  background-image: url(../img/icon_ramen.svg);
}
.shop__body-title.yakisoba::before {
  background-image: url(../img/icon_yakisoba.svg);
}
.shop__body-title.donburi::before {
  background-image: url(../img/icon_donburi.svg);
}
.shop__body-title h4 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .shop__body-title h4 {
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1.6;
  }
}
.shop__body-title-info {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.4;
  transform: rotate(0.04deg);
}
@media screen and (min-width: 768px) {
  .shop__body-title-info {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 1.7rem;
    letter-spacing: -0.01em;
    font-size: clamp(1.4rem, 1.4vw, 1.7rem);
  }
}
@media screen and (min-width: 1024px) {
  .shop__body-title-info {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .shop__body-title-info .small {
    line-height: 1.2;
    display: inline-grid;
  }
}
.shop__body-title-info .small .notes {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .shop__body-title-info .small .notes {
    font-size: 0.65em;
  }
}
.shop__body-item:nth-child(1) .shop__body-title {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .shop__body-item:nth-child(1) .shop__body-title {
    text-align: left;
  }
}
.shop__body-item:nth-child(2) .shop__body-title::before {
  left: unset;
  right: 0;
  transform: rotate(10deg);
}
@media screen and (min-width: 768px) {
  .shop__body-item:nth-child(2) .shop__body-title::before {
    right: unset;
    transform: rotate(-10deg);
  }
}
.shop__body figure {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .shop__body figure {
    flex: auto;
    width: 100%;
  }
}
.shop__body figure img {
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .shop__body figure img {
    border-radius: 2rem;
  }
}
.shop__body figure figcaption {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  display: flex;
  justify-content: flex-start;
  padding-inline: 0.2rem;
  flex-wrap: wrap;
  transform: rotate(0.04deg);
  -moz-column-gap: 1em;
       column-gap: 1em;
  line-height: 1;
  margin-top: 0.5rem;
  row-gap: 0.2em;
}
@media screen and (min-width: 768px) {
  .shop__body figure figcaption {
    font-size: clamp(2rem, 2.5vw, 3rem);
    flex-direction: row;
    justify-content: center;
    gap: 1em;
    margin-top: 0.8rem;
  }
}
.shop__body figure figcaption .small {
  font-size: 70%;
}
@media screen and (min-width: 768px) {
  .shop__body figure figcaption .small {
    font-size: 60%;
  }
}
.shop__body-item:nth-child(2) figcaption {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .shop__body-item:nth-child(2) figcaption {
    justify-content: center;
  }
}

/* キャンペーンリンク -------------------------------------------------------------------------------------------------------- */
.campaign-link {
  position: fixed;
  bottom: 10px;
  right: -160px;
  z-index: 9999;
  width: 170px;
  filter: drop-shadow(0.5rem 0.6rem 0.5rem rgba(11, 22, 94, 0.35));
}
@media screen and (min-width: 768px) {
  .campaign-link {
    width: inherit;
    right: -400px;
    bottom: 8rem;
  }
}

/* キャンペーン -------------------------------------------------------------------------------------------------------- */
.campaign {
  color: var(--color-main);
  background-image: radial-gradient(rgba(254, 254, 62, 0.5) 16%, transparent 17%), radial-gradient(rgba(254, 254, 62, 0.5) 16%, transparent 17%);
  background-size: 5rem 5rem;
  background-position: 0 0, 2.5rem 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .campaign {
    background-size: 7rem 7rem;
    background-position: 0rem 0.5rem, 3.5rem 4rem;
    padding-block: 8rem 10rem;
  }
}
.campaign::before {
  content: "";
  background: linear-gradient(135deg, rgb(255, 255, 255), rgba(254, 254, 62, 0.5), rgb(255, 255, 255));
  background: rgba(254, 254, 62, 0.2);
  background: linear-gradient(344deg, rgba(254, 254, 62, 0), rgba(254, 254, 62, 0.8) 50%);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
.campaign .bg::before, .campaign .bg::after {
  z-index: -1;
  mix-blend-mode: multiply;
}
.campaign .bg::before {
  top: -15rem;
}
@media screen and (min-width: 768px) {
  .campaign .bg::before {
    top: -90rem;
  }
}
.campaign .bg::after {
  top: 50rem;
}
@media screen and (min-width: 768px) {
  .campaign .bg::after {
    top: 60rem;
  }
}
.campaign .inner {
  max-width: 800px;
}
.campaign .br-pc {
  display: inline;
}
@media screen and (min-width: 768px) {
  .campaign .br-pc {
    display: inline-block;
  }
}
.campaign__title {
  margin-inline: auto;
  max-width: 640px;
}
.campaign__title-head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-inline: auto;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__title-head {
    width: 65%;
  }
}
.campaign__title-head .logo {
  width: 8rem;
}
@media screen and (min-width: 768px) {
  .campaign__title-head .logo {
    width: 14rem;
  }
}
.campaign__title-head .text {
  font-size: 0.5em;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .campaign__title-head .text {
    font-size: 0.9em;
    font-weight: 700;
  }
}
.campaign__period {
  background: var(--color-main);
  border-radius: 1rem;
  font-size: 1.55rem;
  color: #fff;
  font-weight: 800;
  margin-inline: auto;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  letter-spacing: 0.15em;
  max-width: 640px;
}
@media screen and (min-width: 768px) {
  .campaign__period {
    border-radius: 2rem;
    font-size: 2.9rem;
  }
}
.campaign__period span {
  margin-right: 1rem;
  align-self: center;
}
.campaign__period time {
  font-size: 180%;
  line-height: 1.3;
}
.campaign__image {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 1rem;
  border-radius: 2rem;
  outline: 0.5rem solid;
  outline-offset: -0.45rem;
}
@media screen and (min-width: 768px) {
  .campaign__image {
    border-radius: 3rem;
    outline: 0.6rem solid;
    outline-offset: -0.6rem;
  }
}
.campaign__about {
  text-align: center;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 3.4rem;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.6;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .campaign__about {
    font-size: 2rem;
    letter-spacing: inherit;
    padding-inline: unset;
    margin-top: 5.5rem;
  }
}
.campaign .content-title {
  line-height: 1.1;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .campaign .content-title {
    font-size: 4.5rem;
  }
}
.campaign .content-title::before, .campaign .content-title::after {
  content: "";
  background: url(../img/campaign_icon_left.svg) no-repeat center/100%;
  display: block;
  width: 3.5rem;
  height: 7rem;
  transform: translateY(0.1rem);
}
@media screen and (min-width: 768px) {
  .campaign .content-title::before, .campaign .content-title::after {
    width: 4.4rem;
    height: 8.8rem;
  }
}
.campaign .content-title::after {
  background-image: url(../img/campaign_icon_right.svg);
}
.campaign .content-title .br {
  display: block;
  margin-right: 1.3rem;
}
.campaign__quiz {
  margin-top: 3.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign__quiz {
    margin-top: 5.2rem;
  }
}
.campaign__quiz-content {
  margin-top: 0.5rem;
  padding: 3rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(11, 22, 94, 0.3);
}
@media screen and (min-width: 768px) {
  .campaign__quiz-content {
    margin-top: 0.5rem;
    padding: 5rem;
    padding-top: 4.1rem;
    border-radius: 4rem;
  }
}
.campaign__quiz-content p {
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign__quiz-content p {
    font-size: 2.5rem;
    padding-inline: 5%;
    line-height: 1.5;
  }
}
.campaign__quiz-content .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .campaign__quiz-content .wrapper {
    flex-direction: row;
    gap: 2em;
    margin-top: 2rem;
  }
}
.campaign__quiz-content img {
  max-width: 640px;
  margin-inline: auto;
  border-radius: 1rem;
  outline: 0.3rem solid;
  outline-offset: -0.3rem;
}
@media screen and (min-width: 768px) {
  .campaign__quiz-content img {
    width: 50%;
    flex: 1.8;
    border-radius: 1rem;
    outline: 0.35rem solid;
    outline-offset: -0.3rem;
  }
}
.campaign__quiz-content ol {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__quiz-content ol {
    flex: 1;
    line-height: inherit;
    font-size: 2rem;
  }
}
.campaign__method {
  margin-top: 3rem;
}
.campaign__method .content-title {
  line-height: 1;
  font-size: 4rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .campaign__method .content-title {
    font-size: 5rem;
  }
}
.campaign__method-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  margin-top: 0.7rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-list {
    flex-direction: row;
    gap: 2rem;
  }
}
.campaign__method-item {
  border-radius: 2rem;
  padding: 3rem;
  background: #fff;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(11, 22, 94, 0.3);
}
@media screen and (min-width: 768px) {
  .campaign__method-item {
    border-radius: 4rem;
    padding: 3rem;
  }
}
.campaign__method-item.instagram {
  color: #c92565;
}
.campaign__method-item.x {
  color: #000;
}
.campaign__method-title {
  font-size: 2.6rem;
  font-weight: 700;
  border-radius: 10rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .campaign__method-title {
    font-size: 3rem;
  }
}
.campaign__method-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
}
.campaign__method-title.instagram {
  background: #c92565;
  color: #fff;
}
.campaign__method-title.instagram::before {
  background: url(../img/icon_sns_instagram.svg) no-repeat center/100%;
  width: 3rem;
  height: 3rem;
  margin-right: 0.6rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-title.instagram::before {
    width: 3.7rem;
    height: 3.7rem;
  }
}
.campaign__method-title.x {
  background: #000;
  color: #fff;
}
.campaign__method-title.x::before {
  background: url(../img/icon_sns_x.svg) no-repeat center/100%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-title.x::before {
    width: 6rem;
    height: 6rem;
  }
}
.campaign__method-title h4 {
  margin-left: 3.5rem;
}
.campaign__method .textlink {
  color: var(--color-sub);
  display: inline;
}
.campaign__method-order {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-top: 1.7rem;
  padding-inline: 0.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign__method-order {
    gap: 0.8em;
  }
}
.campaign__method-order-item {
  list-style: decimal;
  list-style-position: inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
  line-height: 1.5;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .campaign__method-order-item {
    font-size: 1.6rem;
  }
}
.campaign__method .notes {
  font-size: 0.75em;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid;
  width: 26rem;
  margin-inline: auto;
  padding: 0.8rem;
  padding-top: 0.2rem;
  border-radius: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .campaign__method .notes {
    padding-top: 0.1rem;
  }
}
.campaign__method .notes.instagram {
  color: #c92565;
}
.campaign__method .notes.x {
  color: #000;
}
.campaign__method .notes .btn {
  border-radius: 10rem;
  padding: 0.3rem 1rem 0.4rem;
  color: #fff;
  width: 16.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.campaign__method .notes .btn.instagram {
  background: #c92565;
}
.campaign__method .notes .btn.x {
  background: #000;
}
.campaign__btn {
  width: 90%;
  max-width: 600px;
  height: 8rem;
  background: var(--color-main);
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-left: 0.5em;
  box-shadow: 0.5rem 0.5rem 0.25rem rgba(11, 22, 94, 0.35);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .campaign__btn {
    margin-top: 5rem;
    box-shadow: 1rem 1rem 0.5rem rgba(11, 22, 94, 0.35);
    width: 70%;
    font-size: 4.5rem;
    height: 11rem;
  }
}
@media (hover: hover) {
  .campaign__btn:hover {
    scale: 1.1;
    opacity: 1;
  }
}
.campaign__btn:active {
  scale: 1.1;
}
.campaign__btn span {
  font-size: 50%;
  margin-bottom: 0.5rem;
  padding-right: 1em;
  color: var(--color-accent);
}

/* モーダル -------------------------------------------------------------------------------------------------------- */
.hide {
  display: none;
}

.mask,
.modal-content,
.modal-close {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s ease;
}

.mask.show,
.modal-content.show,
.modal-close.show {
  opacity: 1;
  visibility: visible;
}

.mask {
  background: rgba(0, 0, 0, 0.9);
  /* 画面いっぱいに表示し固定させる */
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.modal-content {
  /* 画面中央に配置し固定させる */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  width: 88%;
  background: #fff;
  padding: 1em 1rem;
  border-radius: 2rem;
  height: 80%;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: auto;
    min-width: 600px;
    max-width: 800px;
    padding: 5rem 3rem;
    border-radius: 5rem;
    height: 90%;
  }
}
.modal-content .textlink {
  color: var(--color-main);
  display: inline;
}
.modal-content__wrapper {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .modal-content__wrapper {
    padding-inline: 3rem;
  }
}
.modal-content__wrapper::-webkit-scrollbar {
  width: 0.5rem;
}
@media screen and (min-width: 768px) {
  .modal-content__wrapper::-webkit-scrollbar {
    width: 1rem;
  }
}
.modal-content__wrapper::-webkit-scrollbar-thumb {
  background: var(--color-sub);
  border-radius: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-content h3 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-content h3 {
    font-size: 5rem;
  }
}
.modal-content__content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 0.8em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .modal-content__content {
    margin-top: 2.4em;
    letter-spacing: inherit;
  }
}
.modal-content__content .small {
  font-size: 0.85em;
}
@media screen and (min-width: 768px) {
  .modal-content__content .small {
    display: inline-block;
  }
}
.modal-content__list dt {
  border: 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  height: 4rem;
}
.modal-content__list dd {
  padding-left: 0.2em;
}
.modal-content__list dd:nth-of-type(1) {
  margin-top: 1em;
}
.modal-content__list dd .present__item {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}
.modal-content__list dd .present__item .left {
  width: 3.2em;
}
.modal-content__list dd .present__item .right {
  width: calc(100% - 3.2em);
}
.modal-content__list dd .sns-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.modal-content__list dd .sns-item__text {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .sns-item__text {
    font-size: inherit;
    padding-left: 1em;
  }
}
.modal-content__list dd .summary-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.modal-content__list dd .summary-item__list1 li {
  text-indent: -1em;
  padding-left: 1em;
}
.modal-content__list dd .summary-item__list2 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.modal-content__list dd .summary-item .list2__item-text {
  padding-inline: 0.8em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-text {
    padding-inline: 0.5em;
  }
}
.modal-content__list dd .summary-item .list2__item-list {
  text-indent: -1em;
  padding-left: 1.7em;
  border: 1px dotted;
  padding-inline: 1.2em 0.4em;
  width: 90%;
  margin-left: 0.8em;
  padding-block: 0.4em;
  margin-block: 0.4em;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list {
    width: 93%;
    margin-left: 0.6em;
    padding-block: 0.4em;
    margin-block: 0.3em;
    padding-inline: 1.1em 0.5em;
  }
}
.modal-content__list dd .summary-item .list2__item-list.notes {
  font-size: 0.8em;
  border: unset;
  padding-inline: 0.9em 0em;
  padding-block: 0.2em 0;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list.notes {
    padding-left: 1.2em;
    border: unset;
    padding-block: 0.2em 0;
    margin-block: 0.3em 0;
  }
}
.modal-content__list dd .summary-item .list2__item-list.notes li {
  text-indent: -1em;
  padding-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .modal-content__list dd .summary-item .list2__item-list.notes li {
    padding-left: 0.3em;
  }
}
.modal-content__list dd .summary-item__list3 {
  text-indent: -1em;
  padding-left: 1em;
}
.modal-content__list dd .summary-item__list4 {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.modal-content__list dd .summary-item__list4.notes {
  font-size: 0.8em;
  padding-inline: 2.2em 0;
}

.modal-close {
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  position: fixed;
  z-index: 10001;
  transition: all 0.3s;
  color: #fff;
  font-size: 4rem;
  top: 0rem;
  right: 0rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal-close {
    font-size: 5rem;
    top: 1rem;
    right: 1rem;
  }
}
@media (hover: hover) {
  .modal-close:hover {
    opacity: 0.7;
  }
}

/* ページトップ -------------------------------------------------------------------------------------------------------- */
.pagetop {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: -100px;
  background: var(--color-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0.2rem 0.3rem 0.5rem rgba(11, 22, 94, 0.4);
  border: 0.3rem solid var(--color-main);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 3rem;
  }
}
@media (hover: hover) {
  .pagetop:hover {
    scale: 1.1;
    transform: translateY(-5px);
    opacity: 1;
  }
}
.pagetop:active {
  transform: translateY(-5px);
  scale: 1.1;
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-77.5%, -50%) rotate(-45deg);
  background: #fff;
  width: 17px;
  height: 5px;
  transition: all 0.3s;
}
.pagetop::after {
  transform: translate(-22.5%, -50%) rotate(45deg);
}/*# sourceMappingURL=style.css.map */