@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html, body {
  height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", serif;
}

nav {
  position: relative;
}
nav .nav_btn {
  position: fixed;
  z-index: 11;
  right: 20px;
  top: 10px;
  background: url("./img/_assets/nav_menu_bg.png");
  background-size: contain;
  border-radius: 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1vw;
  width: 10vw;
  height: 10vw;
}
@media screen and (min-width: 520px) {
  nav .nav_btn {
    width: 50px;
    height: 50px;
    gap: 5px;
  }
}
nav .nav_btn span {
  display: block;
  background: rgba(125, 80, 123, 0.8);
  border-radius: 3px;
  transition: 0.3s;
  width: 5.6vw;
  height: 0.8vw;
}
@media screen and (min-width: 520px) {
  nav .nav_btn span {
    width: 28px;
    height: 4px;
  }
}
nav .nav_btn.open span:nth-child(1) {
  transform: rotate(45deg) translateY(1.25vw) translateX(1.25vw);
}
@media screen and (min-width: 520px) {
  nav .nav_btn.open span:nth-child(1) {
    transform: rotate(45deg) translateY(6.5px) translateX(6px);
  }
}
nav .nav_btn.open span:nth-child(2) {
  width: 0;
}
nav .nav_btn.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-1.25vw) translateX(1.25vw);
}
@media screen and (min-width: 520px) {
  nav .nav_btn.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6.5px) translateX(6px);
  }
}
@media screen and (min-width: 1301px) {
  nav .nav_btn {
    display: none;
  }
}
nav .navigation {
  position: fixed;
  max-width: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(0);
  background: white;
  background-size: 95%;
  background-attachment: fixed;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
nav .navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 100%;
  background: url("./img/_assets/nav_bg_l.png") repeat-y;
  background-size: 100% auto;
}
nav .navigation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 24px;
  height: 100%;
  background: url("./img/_assets/nav_bg_r.png") repeat-y;
  background-size: 100% auto;
}
nav .navigation ul {
  width: 70%;
  max-width: 355px;
  transition: 0.6s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}
nav .navigation ul li a {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 5vw, 24px);
  line-height: 1.2;
  padding-bottom: 2px;
  box-sizing: border-box;
  width: 71vw;
  height: 17.4vw;
}
@media screen and (min-width: 517px) {
  nav .navigation ul li a {
    width: 355px;
    height: 87px;
  }
}
nav .navigation ul li:nth-child(odd) a {
  background: url("./img/_assets/nav_01_pc_off.png") no-repeat;
  background-size: contain;
  color: #f1679d;
}
nav .navigation ul li:nth-child(even) a {
  background: url("./img/_assets/nav_02_pc_off.png") no-repeat;
  background-size: contain;
  color: #ff913f;
}
nav .navigation .sns {
  width: 70%;
  max-width: 355px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10%;
  transition: 0.6s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}
nav .navigation .sns a {
  transition: 0.3s;
  text-decoration: none;
  width: 45%;
}
nav .navigation .sns a .img {
  background: url("./img/_assets/nav_sns_frame.png");
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  width: 30vw;
  height: 25.2vw;
}
@media screen and (min-width: 517px) {
  nav .navigation .sns a .img {
    width: 150px;
    height: 126px;
  }
}
nav .navigation .sns a .img img {
  margin-top: 0;
  max-width: 65px;
  width: 40%;
  height: auto;
}
nav .navigation .sns a span {
  background: #78c0ff;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  width: 100%;
  height: 30px;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
}
nav .nav_btn.open + .navigation {
  position: fixed;
  max-width: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
nav .nav_btn.open + .navigation ul,
nav .nav_btn.open + .navigation .sns {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (min-width: 520px) {
  nav .navigation .sns {
    margin-top: 15px;
    gap: 10px 20%;
  }
  nav .navigation .sns a {
    width: 40%;
  }
}
@media screen and (min-width: 1301px) {
  nav .navigation::before,
  nav .navigation::after {
    display: none;
  }
  nav .navigation,
  nav .nav_btn.open + .navigation {
    max-width: 355px;
    width: 100%;
    height: auto;
    top: 45px;
    left: auto;
    right: 50%;
    opacity: 1;
    transform: translateX(calc(50% + 462px));
    background: none;
    visibility: visible;
  }
  nav .navigation ul,
  nav .navigation .sns,
  nav .nav_btn.open + .navigation ul,
  nav .nav_btn.open + .navigation .sns {
    width: 100%;
    transition: 0;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
  }
  nav .navigation .sns,
  nav .nav_btn.open + .navigation .sns {
    margin-top: 0px;
    gap: 0 20%;
  }
  nav .navigation .sns a span,
  nav .nav_btn.open + .navigation .sns a span {
    display: none;
  }
  nav .navigation .sns a:hover .img,
  nav .nav_btn.open + .navigation .sns a:hover .img {
    background: url("./img/_assets/nav_sns_frame_on.png");
    background-size: cover;
  }
  nav .navigation ul li:nth-child(odd) a:hover,
  nav .nav_btn.open + .navigation ul li:nth-child(odd) a:hover {
    background: url("./img/_assets/nav_01_pc_on.png") no-repeat;
    background-size: cover;
    color: #fff;
  }
  nav .navigation ul li:nth-child(even) a:hover,
  nav .nav_btn.open + .navigation ul li:nth-child(even) a:hover {
    background: url("./img/_assets/nav_02_pc_on.png") no-repeat;
    background-size: cover;
    color: #fff;
  }
}
.header {
  background: #fff;
  background: url("./img/_assets/header_bg.png") no-repeat;
  overflow: hidden;
  background-size: cover;
  position: relative;
}
.header .aspect {
  width: 100%;
}
.header__frame {
  background: url("./img/_assets/header_obj.png") no-repeat;
  background-size: contain;
  height: 100%;
  padding-top: 24.933% !important;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.header h1 {
  padding-top: 4%;
}
.header h1 img {
  width: 92%;
  display: block;
  margin: 0 auto;
}
.header h2 {
  padding-top: 9.066%;
}
.header h2 img {
  width: 92.4%;
  display: block;
  margin: 0 auto;
}
.header__ebisis {
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.header__ebisis::before {
  content: "";
  display: block;
  padding-top: 61.733%;
}
.header__ebisis--fry {
  position: absolute;
  left: 0;
  top: 0;
  width: 51.2%;
  animation: header_fry_slide 0.8s forwards ease-out;
  animation-delay: 0.7s;
  opacity: 0;
}
.header__ebisis--fry::before {
  content: "";
  display: block;
  padding-top: 119.2708333333%;
}
.header__ebisis--fry .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: header_fry 3s infinite ease-in-out;
  transform-origin: 30% 80%;
}
.header__ebisis--fry .inner img {
  position: absolute;
  top: 0;
  left: 0;
}
.header__ebisis--fry .inner img.parts_base {
  top: 0;
  left: 0;
  width: 100%;
}
.header__ebisis--fry .inner img.parts_01 {
  top: 36.899%;
  left: 0%;
  width: 22.916%;
  animation: header_fry_parts_01 3s infinite ease-in-out;
  transform-origin: center 80%;
}
.header__ebisis--fry .inner img.parts_02 {
  top: 57.205%;
  left: 70.833%;
  width: 28.645%;
  animation: header_fry_parts_02 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--fry .inner img.parts_03 {
  top: 57.578%;
  left: 35.156%;
  width: 31.77%;
  animation: header_fry_parts_03 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--fry .inner img.parts_04 {
  top: 50%;
  left: 9.593%;
  width: 14.583%;
  animation: header_fry_parts_04 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--fry .inner img.parts_05 {
  top: 87.117%;
  left: 24.739%;
  width: 18.75%;
  animation: header_fry_parts_05 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--fry .inner img.parts_06 {
  top: 89.737%;
  left: 55.208%;
  width: 16.927%;
  animation: header_fry_parts_06 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--ten {
  width: 51.2%;
  position: absolute;
  right: 0;
  top: 15%;
  animation: header_ten_slide 0.8s forwards ease-out;
  animation-delay: 1s;
  opacity: 0;
  box-sizing: border-box;
}
.header__ebisis--ten::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.header__ebisis--ten .inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  animation: header_ten 3s infinite ease-in-out;
  transform-origin: 30% bottom;
}
.header__ebisis--ten .inner img {
  position: absolute;
  top: 0;
  left: 0;
}
.header__ebisis--ten .inner img.parts_base {
  top: 0;
  left: 0;
  width: 100%;
}
.header__ebisis--ten .inner img.parts_01 {
  top: 55.989%;
  left: 76.822%;
  width: 22.656%;
  animation: header_ten_parts_01 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--ten .inner img.parts_02 {
  top: 63.02%;
  left: 0%;
  width: 23.437%;
  animation: header_ten_parts_02 3s infinite ease-in-out;
  transform-origin: center;
}
.header__ebisis--ten .inner img.parts_03 {
  top: 48.656%;
  left: 68.489%;
  width: 23.437%;
  animation: header_ten_parts_03 3s infinite ease-in-out;
  transform-origin: left top;
}
.header__ebisis--ten .inner img.parts_04 {
  top: 65.885%;
  left: 25.52%;
  width: 11.458%;
  animation: header_ten_parts_04 3s infinite ease-in-out;
  transform-origin: 10% 60%;
}
.header__ebisis--ten .inner img.parts_05 {
  top: 88.281%;
  left: 39.843%;
  width: 13.541%;
  animation: header_ten_parts_05 3s infinite ease-in-out;
  transform-origin: 90% 20%;
}
.header__ebisis--ten .inner img.parts_06 {
  top: 82.812%;
  left: 62.5%;
  width: 14.322%;
  animation: header_ten_parts_06 3s infinite ease-in-out;
  transform-origin: 20% 20%;
}
.header__ebisis--ten .inner .wink {
  position: absolute;
  top: 51.041%;
  left: 35.937%;
  width: 6.77%;
}
.header__ebisis--ten .inner .wink img {
  display: block;
  position: absolute;
}
.header__ebisis--ten .inner .wink img:nth-child(2) {
  animation: header_ten_wink 6s infinite;
  position: absolute;
  top: 0;
  left: 0;
}
.header__ebifan {
  margin-top: 3%;
  position: relative;
  width: 98.266%;
}
.header__ebifan img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
}
.header__ebifan img:nth-child(1) {
  animation-delay: 0s;
  animation: header-ebifan-01 1.6s infinite;
}
.header__ebifan img:nth-child(2) {
  opacity: 0;
  animation: header-ebifan-02 1.6s infinite;
}

* img {
  max-width: 500px;
  width: 100%;
  vertical-align: bottom;
}

article {
  width: 100%;
  display: block;
  margin: 0 auto;
  background: linear-gradient(0deg, rgb(225, 238, 254) 0%, rgb(252, 218, 234) 100%);
  background-attachment: fixed;
}
article #contents {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
article #contents .profile_head {
  background: url("./img/_assets/profile_bg.png") no-repeat top center/cover;
}
article #contents .profile_head .interview_banner {
  padding: 6.8% 5.733% 0;
  display: block;
}
article #contents .profile_head .interview_banner a {
  transition: 0.3s;
}
article #contents .profile_head .interview_banner a:hover {
  opacity: 0.8;
}
article #contents .profile_head .shippos_banner {
  padding: 6.8% 5.733% 0;
  display: block;
}
article #contents .profile_head .shippos_banner a {
  transition: 0.3s;
}
article #contents .profile_head .shippos_banner a:hover {
  opacity: 0.8;
}
article #contents .profile {
  background-size: cover;
  position: relative;
  border-bottom: 4vw solid #8f7197;
  width: 100%;
  height: 107.8vw;
  box-sizing: border-box;
}
@media screen and (min-width: 517px) {
  article #contents .profile {
    width: 500px;
    height: 539px;
  }
}
@media screen and (min-width: 520px) {
  article #contents .profile {
    border-bottom: 20px solid #8f7197;
  }
}
article #contents .profile .profile_read {
  width: 57.2%;
  height: auto;
  position: absolute;
  top: 11.6%;
  left: 5.333%;
  cursor: pointer;
}
article #contents .profile .profile_animation_01 {
  position: absolute;
  width: 34.4%;
  height: auto;
  top: 47.333%;
  left: 58.266%;
  animation: profile_animation_01 5s infinite;
}
article #contents .profile .profile_animation_01 img {
  position: absolute;
  top: 0;
  left: 0;
  animation: profile_animation_02 5s infinite;
}
article #contents .profile .profile_animation_01 img:nth-child(1) {
  animation-delay: 0s;
}
article #contents .profile .profile_animation_01 img:nth-child(2) {
  animation-delay: 4s;
  opacity: 0;
  transform: translateY(0px);
}
article #contents .detail {
  background: #fbdee5 url("./img/_assets/detail_bg.png") no-repeat center top;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 94.6vw;
}
@media screen and (min-width: 517px) {
  article #contents .detail {
    width: 500px;
    height: 473px;
  }
}
article #contents .detail__inner--item01 {
  width: 49.333%;
  height: auto;
  position: absolute;
  top: 12%;
  right: 3.333%;
}
article #contents .detail__inner--item02 {
  width: 42.666%;
  height: auto;
  position: absolute;
  top: 28%;
  left: 6%;
}
article #contents .prologue {
  background: #fbdee5 url("./img/_assets/prologue_bg.png") no-repeat center top;
  background-size: cover;
  position: relative;
  border-bottom: 4vw solid #8f7197;
}
@media screen and (min-width: 520px) {
  article #contents .prologue {
    border-bottom: 20px solid #8f7197;
  }
}
article #contents .prologue__inner {
  padding: 10% 0;
}
article #contents .prologue__inner h2 {
  width: 84.4%;
  display: block;
  margin: 0 auto 9.333%;
}
article #contents .prologue__inner ul {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0%;
  justify-content: space-between;
}
article #contents .prologue__inner ul li {
  width: 42%;
  border-radius: 256px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
article #contents .prologue__inner ul li .prologue__inner--btn {
  transition: 0.3s;
}
article #contents .prologue__inner ul li .prologue__inner--btn img {
  opacity: 0;
}
article #contents .prologue__inner ul li:nth-child(1) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn01_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(1) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn01_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(2) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn02_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(2) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn02_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(3) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn03_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(3) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn03_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(4) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn04_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(4) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn04_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(5) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn05_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(5) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn05_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(6) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn06_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(6) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn06_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner ul li:nth-child(7) .prologue__inner--btn {
  background: url("./img/_assets/prologue_btn07_off.png") no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1301px) {
  article #contents .prologue__inner ul li:nth-child(7) .prologue__inner--btn:hover {
    background: url("./img/_assets/prologue_btn07_on.png") no-repeat;
    background-size: cover;
  }
}
article #contents .prologue__inner--img {
  width: 40.8%;
  display: block;
  margin: -22.666% 0 6.666% auto;
}
article #contents .prologue__inner .btn {
  background: url("./img/_assets/prologue_btn.png") no-repeat center;
  background-size: contain;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #7d507b;
  font-weight: 700;
  padding-right: 7%;
  margin: 10% auto 0;
  font-size: clamp(15px, 4vw, 20px);
  cursor: pointer;
  width: 65.6vw;
  height: 12.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .prologue__inner .btn {
    width: 328px;
    height: 64px;
  }
}
article #contents .prologue__inner .btn span {
  font-size: clamp(10px, 2.8vw, 14px);
  display: inline-block;
  margin-bottom: -1.2%;
  margin-left: 1%;
}
article #contents .toc {
  background: #fffde5;
}
article #contents .toc__head {
  background: url("./img/_assets/toc_head_bg.png") no-repeat;
  background-size: contain;
  position: relative;
  pointer-events: none;
}
article #contents .toc__head img {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .toc__head img.base {
  position: relative;
  width: 100%;
}
article #contents .toc__head img.parts_01 {
  width: 14.133%;
  left: 19.066%;
  top: 23.166%;
  animation: toc_head_animation_01 2s infinite ease-in-out;
  transform-origin: right center;
}
article #contents .toc__head img.parts_02 {
  width: 14%;
  left: 66.4%;
  top: 23.166%;
  animation: toc_head_animation_02 2s infinite ease-in-out;
  transform-origin: left center;
}
article #contents .toc__head img.parts_03 {
  width: 6.8%;
  left: 17.333%;
  top: 41.833%;
  animation: toc_head_animation_03 2s infinite ease-in-out;
  transform-origin: 60% bottom;
}
article #contents .toc__head img.parts_04 {
  width: 2%;
  left: 28.533%;
  top: 50.066%;
  animation: toc_head_animation_04 2s infinite ease-in-out;
}
article #contents .toc__head img.parts_05 {
  width: 4.933%;
  left: 86.266%;
  top: 37.166%;
  animation: toc_head_animation_05 2s infinite ease-in-out;
  transform-origin: 15% 75%;
}
article #contents .toc__head img.parts_06 {
  width: 5.2%;
  left: 37.2%;
  top: 55.666%;
  animation: toc_head_animation_06 2s infinite ease-in-out;
  transform-origin: right bottom;
}
article #contents .toc__head img.parts_07 {
  width: 3.066%;
  left: 53.466%;
  top: 60.666%;
  animation: toc_head_animation_07 2s infinite ease-in-out;
  transform-origin: 50% bottom;
}
article #contents .toc__head img.parts_08 {
  width: 4%;
  left: 44.533%;
  top: 69.333%;
  animation: toc_head_animation_08 2s infinite ease-in-out;
}
article #contents .toc__head img.parts_09 {
  width: 4%;
  left: 49.6%;
  top: 69.333%;
  animation: toc_head_animation_09 2s infinite ease-in-out;
}
article #contents .toc__head img.parts_10 {
  width: 16.133%;
  left: 1.6%;
  top: 51.166%;
  animation: toc_head_animation_10 2s infinite ease-in-out;
  transform-origin: center bottom;
}
article #contents .toc__head img.parts_11 {
  width: 3.2%;
  left: 22.666%;
  top: 78.5%;
  animation: toc_head_animation_11 2s infinite ease-in-out;
}
article #contents .toc__head img.parts_12 {
  width: 10.666%;
  left: 62.933%;
  top: 66.5%;
  animation: toc_head_animation_12 2s infinite ease-in-out;
  transform-origin: right 80%;
}
article #contents .toc__head img.parts_13 {
  width: 8%;
  left: 90%;
  top: 57.666%;
  animation: toc_head_animation_13 2s infinite ease-in-out;
  transform-origin: left 90%;
}
article #contents .toc__head img.parts_14 {
  width: 2.266%;
  left: 82.666%;
  top: 93.166%;
  animation: toc_head_animation_14 2s infinite ease-in-out;
  transform-origin: 50% top;
}
article #contents .toc__head img.parts_15 {
  width: 1.333%;
  left: 86.266%;
  top: 91.833%;
  animation: toc_head_animation_15 2s infinite ease-in-out;
  transform-origin: 50% top;
}
article #contents .toc h2 {
  position: relative;
  margin-bottom: 12%;
}
article #contents .toc h2 .title2 {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .toc__navigation {
  position: relative;
  padding-bottom: 20%;
}
article #contents .toc__navigation ul {
  margin: 0 auto;
}
article #contents .toc__navigation ul li a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  font-size: clamp(12px, 5vw, 24px);
  line-height: 1.2;
  font-weight: 600;
  transition: 0.3s;
  width: 77.6vw;
  height: 19vw;
}
@media screen and (min-width: 517px) {
  article #contents .toc__navigation ul li a {
    width: 388px;
    height: 95px;
  }
}
article #contents .toc__navigation ul li:nth-child(odd) a {
  background: url("./img/_assets/nav_01_pc_off.png") no-repeat;
  background-size: contain;
  color: #f1679d;
}
@media screen and (min-width: 1301px) {
  article #contents .toc__navigation ul li:nth-child(odd) a:hover {
    background: url("./img/_assets/nav_01_pc_on.png") no-repeat;
    background-size: contain;
    color: #fff;
  }
}
article #contents .toc__navigation ul li:nth-child(even) a {
  background: url("./img/_assets/nav_02_pc_off.png") no-repeat;
  background-size: contain;
  color: #ff913f;
}
@media screen and (min-width: 1301px) {
  article #contents .toc__navigation ul li:nth-child(even) a:hover {
    background: url("./img/_assets/nav_02_pc_on.png") no-repeat;
    background-size: contain;
    color: #fff;
  }
}
article #contents .toc__navigation ul li:not(:first-child) {
  padding-top: 13.333%;
}
article #contents .toc__navigation--icn {
  position: absolute;
}
article #contents .toc__navigation--icn.icn01 {
  top: 6.764%;
  left: 1.333%;
  width: 18.666%;
  height: auto;
  animation: toc_icn_animation_01 10s infinite ease-in-out;
  transform-origin: left top;
}
article #contents .toc__navigation--icn.icn02 {
  top: 31.96%;
  left: 78.4%;
  width: 15.066%;
  height: auto;
  animation: toc_icn_animation_02 15s infinite ease-in-out;
}
article #contents .toc__navigation--icn.icn03 {
  top: 57.647%;
  left: 6.533%;
  width: 9.733%;
  height: auto;
  animation: toc_icn_animation_01 15s infinite ease-in-out;
  transform-origin: center center;
}
article #contents .toc__navigation--icn.icn04 {
  bottom: -5.88%;
  right: 2%;
  width: 21.733%;
  height: auto;
  animation: toc_icn_animation_02 8s infinite ease-in-out;
}
article #contents .news {
  background: url("./img/_assets/news_bg.png") repeat-y;
  background-size: 100% auto;
}
article #contents .news h2 {
  width: 49.066%;
  margin: 0 auto;
  padding-top: 6%;
}
article #contents .news__label {
  background: url("./img/_assets/news_label.png") no-repeat;
  color: #f1679d;
  background-size: contain;
  margin: 2% 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 4vw, 20px);
  line-height: 1.3;
  font-weight: 600;
  width: 50vw;
  height: 14.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .news__label {
    width: 250px;
    height: 74px;
  }
}
article #contents .news__label span {
  display: inline-block;
  margin-bottom: 4px;
  padding-left: 8%;
}
article #contents .news .news_animation_01 {
  position: relative;
  z-index: 1;
  margin-top: 2%;
  margin-bottom: -6.666%;
  margin-left: 2%;
  width: 28.2vw;
  height: 16.4vw;
  pointer-events: none;
}
@media screen and (min-width: 517px) {
  article #contents .news .news_animation_01 {
    width: 141px;
    height: 82px;
  }
}
article #contents .news .news_animation_01 img {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .news .news_animation_01 img.parts_01 {
  top: 59.836%;
  left: 4.791%;
  width: 19.431%;
  animation: news_01_animation_01 3s infinite;
  transform-origin: center left;
}
article #contents .news .news_animation_01 img.parts_02 {
  top: 40.163%;
  left: 37.44%;
  width: 13.744%;
  animation: news_01_animation_02 3s infinite;
  transform-origin: right bottom;
}
article #contents .news .news_animation_01 img.parts_03 {
  top: 5.737%;
  left: 55.924%;
  width: 44.075%;
  animation: news_01_animation_03 3s infinite;
  transform-origin: center;
}
article #contents .news .news_animation_01 img.parts_04 {
  top: 0;
  left: 0;
  width: 56.398%;
}
article #contents .news .news_animation_01 img.parts_05 {
  top: 87.704%;
  left: 68.72%;
  width: 19.431%;
}
article #contents .news__slide {
  width: 100%;
  background: url("./img/_assets/news_hot_frame.png") no-repeat center top;
  background-size: 100% auto;
  padding-top: 7%;
}
article #contents .news__slide__inner {
  width: 90%;
  height: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
}
article #contents .news__slide__inner .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  pointer-events: none;
}
article #contents .news__slide__inner .mask .news_animation_02 {
  position: relative;
  background: url("./img/_assets/news_hot_mask.png") no-repeat center top;
  background-size: 100% auto;
  height: 100%;
}
article #contents .news__slide__inner .mask .news_animation_02 img {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .news__slide__inner .mask .news_animation_02 img.base {
  position: relative;
}
article #contents .news__slide__inner .mask .news_animation_02 img.parts_01 {
  top: 0%;
  left: 0%;
  width: 30.735%;
  animation: news_02_animation_01 6s infinite ease-out;
  transform-origin: center bottom;
}
article #contents .news__slide__inner .mask .news_animation_02 img.parts_02 {
  top: 8.301%;
  left: 72.647%;
  width: 5.588%;
  animation: news_02_animation_02 3s infinite ease-in-out;
  transform-origin: center top;
}
article #contents .news__slide__inner .mask .news_animation_02 img.parts_03 {
  top: 48.49%;
  left: 11.47%;
  width: 5.588%;
  transform: rotate(-10deg);
  animation: news_02_animation_02 4s infinite ease-in-out;
  transform-origin: center top;
}
article #contents .news__slide__inner .mask .news_animation_02 img.parts_04 {
  top: 70.188%;
  left: 89.411%;
  width: 5.588%;
  transform: rotate(20deg);
  animation: news_02_animation_02 5s infinite ease-in-out;
  transform-origin: center top;
}
article #contents .news__slide__inner .buttons {
  position: absolute;
  z-index: 0;
  bottom: 5%;
  width: 95%;
  left: 2.5%;
  display: flex;
  justify-content: space-between;
}
article #contents .news__slide__inner .buttons .button {
  width: 12.8%;
}
article #contents .news__slide ul {
  margin: 0 auto;
  width: 74%;
  height: 100%;
  display: block;
  position: relative;
}
article #contents .news__slide ul li {
  position: relative;
}
article #contents .news__slide ul li a {
  color: #7d507b;
  text-decoration: none;
}
article #contents .news__slide ul li .img {
  width: 100%;
  margin: 4.5% auto 0;
}
article #contents .news__slide ul li .img img {
  height: 64vw;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 520px) {
  article #contents .news__slide ul li .img img {
    height: 334px;
  }
}
article #contents .news__slide ul li p {
  padding: 7% 0 0;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: clamp(16px, 4.5vw, 22px);
  line-height: 1.4;
  color: #7d507b;
  font-weight: 600;
  position: relative;
  z-index: 20;
}
article #contents .news__slide ul li p span {
  font-size: clamp(14px, 3.866vw, 20px);
  display: block;
  margin-bottom: 1%;
}
article #contents .news__list {
  margin-top: 3%;
  background: url("./img/_assets/news_list_bg.png") no-repeat top;
  background-size: cover;
  padding: 8% 0 0;
}
article #contents .news__list .entry_list {
  width: 84%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 3%;
  transform: translateY(3%);
  gap: 30px 7.302%;
  background: url("./img/_assets/news_list_col.png") repeat-y center;
  padding: 5% 0;
}
article #contents .news__list .entry_list li {
  width: 46.349%;
  background: url("./img/_assets/news_list_row.png") repeat-x top center;
  background-size: auto 4px;
  padding-top: 8%;
}
article #contents .news__list .entry_list li:nth-child(1), article #contents .news__list .entry_list li:nth-child(2) {
  background: none;
  padding-top: 0;
}
article #contents .news__list .entry_list li a {
  text-decoration: none;
  color: #7d507b;
  font-weight: 500;
  line-height: 1.3;
  font-feature-settings: "palt";
  text-align: center;
}
article #contents .news__list .entry_list li a #box_img {
  position: relative;
  margin-bottom: 10px;
}
article #contents .news__list .entry_list li a #box_img::after {
  position: absolute;
  top: -1px;
  left: -1px;
  content: "";
  background: url("./img/_assets/news_list_frame.png") no-repeat;
  background-size: cover;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  display: block;
  border: 1px solid #fff;
}
article #contents .news__list .entry_list li a .news_top_time span {
  display: block;
}
article #contents .news__list .entry_list li a .news_top_time span.news {
  font-size: clamp(10px, 2.866vw, 14px);
  background: #f1679d;
  padding: 2px 0 3px;
  line-height: 1;
  color: #fff;
  width: 30%;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
}
article #contents .news__list .entry_list li a .news_top_time span.date {
  font-weight: 800;
  font-size: clamp(14px, 3.866vw, 20px);
  margin-bottom: 5px;
}
article #contents .news__list .entry_list li a .title {
  display: block;
  text-align: center;
  font-size: clamp(12px, 3.066vw, 16px);
}
article #contents .news__list .btn {
  background: url("./img/_assets/news_list_btn.png") no-repeat center;
  background-size: contain;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #00e498;
  font-weight: 700;
  padding-bottom: 2px;
  margin: 2% auto 0;
  transition: 0.3s;
  width: 40.8vw;
  height: 9.2vw;
}
@media screen and (min-width: 517px) {
  article #contents .news__list .btn {
    width: 204px;
    height: 46px;
  }
}
@media screen and (min-width: 1301px) {
  article #contents .news__list .btn:hover {
    background: url("./img/_assets/news_list_btn_on.png") no-repeat center;
    background-size: contain;
    color: #fff;
  }
}
article #contents .news__list .info {
  font-size: clamp(14px, 3.866vw, 20px);
  text-align: center;
  line-height: 1.4;
  color: #7d507b;
  font-weight: 500;
  padding: 0 0 3%;
}
article #contents .news__list .info a {
  color: #7d507b;
}
article #contents .news__list .info a:hover {
  text-decoration: none;
}
article #contents .movie {
  background: url("./img/_assets/movie_bg.png") repeat-y;
  background-size: 100% auto;
  padding-top: 10%;
}
article #contents .movie h2 {
  width: 53.866%;
  margin: 0 auto;
}
article #contents .movie .movie_animation_01 {
  margin: -14.4% 7.2% 0 auto;
  position: relative;
  width: 28.4vw;
  height: 23.4vw;
  pointer-events: none;
}
@media screen and (min-width: 517px) {
  article #contents .movie .movie_animation_01 {
    width: 142px;
    height: 117px;
  }
}
article #contents .movie .movie_animation_01 img {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .movie .movie_animation_01 img.note_01 {
  top: 12.5%;
  left: 26.635%;
  width: 6.074%;
  animation: movie_animation_01 2s infinite ease-in-out;
}
article #contents .movie .movie_animation_01 img.note_02 {
  top: 0%;
  left: 38.317%;
  width: 14.018%;
  animation: movie_animation_02 2s infinite ease-in-out;
}
article #contents .movie .movie_animation_01 img.note_03 {
  top: 16.477%;
  left: 55.738%;
  width: 11.682%;
  animation: movie_animation_01 2s infinite ease-in-out;
}
article #contents .movie .movie_animation_01 img.note_04 {
  top: 4.818%;
  left: 75.233%;
  width: 6.074%;
  animation: movie_animation_02 2s infinite ease-in-out;
}
article #contents .movie .movie_animation_01 .ten {
  width: 47.222%;
  position: absolute;
  left: 0;
  top: 31.818%;
  animation: movie_ten 2.5s infinite ease-in-out;
  transform-origin: 50% bottom;
  width: 13.6vw;
  height: 14.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .movie .movie_animation_01 .ten {
    width: 68px;
    height: 74px;
  }
}
article #contents .movie .movie_animation_01 .ten img {
  position: absolute;
  top: 0;
  left: 0;
  animation: movie_dance 2.5s infinite;
}
article #contents .movie .movie_animation_01 .ten img:nth-child(1) {
  animation-delay: 0s;
}
article #contents .movie .movie_animation_01 .ten img:nth-child(2) {
  animation-delay: 1.25s;
  opacity: 0;
  transform: translateY(0px);
}
article #contents .movie .movie_animation_01 .fry {
  width: 50.934%;
  position: absolute;
  left: 49.065%;
  top: 25.568%;
  animation: movie_ten 2.5s infinite ease-in-out;
  transform-origin: 50% bottom;
  width: 14.4vw;
  height: 17.4vw;
}
@media screen and (min-width: 517px) {
  article #contents .movie .movie_animation_01 .fry {
    width: 72px;
    height: 87px;
  }
}
article #contents .movie .movie_animation_01 .fry img {
  position: absolute;
  top: 0;
  left: 0;
  animation: movie_dance 2.5s infinite;
}
article #contents .movie .movie_animation_01 .fry img:nth-child(1) {
  animation-delay: 0s;
}
article #contents .movie .movie_animation_01 .fry img:nth-child(2) {
  animation-delay: 1.25s;
  opacity: 0;
  transform: translateY(0px);
}
article #contents .movie__label {
  background: url("./img/_assets/movie_label.png") no-repeat;
  color: #ff913f;
  background-size: contain;
  margin: 2% auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 4vw, 20px);
  line-height: 1.3;
  font-weight: 600;
  width: 50vw;
  height: 14.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .movie__label {
    width: 250px;
    height: 74px;
  }
}
article #contents .movie__label span {
  display: inline-block;
  margin-bottom: 4px;
  padding-left: 8%;
}
article #contents .movie__slide p {
  background: #fff;
  width: 65%;
  margin: 4% auto;
  text-align: center;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4%;
  box-sizing: border-box;
  border: 2px solid #ff913f;
  position: relative;
  color: #7d507b;
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(17px, 4vw, 22px);
}
article #contents .movie__slide p .date {
  font-size: clamp(14px, 3.866vw, 20px);
}
article #contents .movie__slide p::after {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 100px;
  border: 1px solid #ff913f;
  position: absolute;
  left: 3px;
  top: 3px;
  box-sizing: border-box;
}
article #contents .movie__slide .slick-dots {
  width: 100%;
}
article #contents .movie__slide .slick-dots li {
  height: 23px;
  width: 23px;
  margin: 0 5px;
}
article #contents .movie__slide .slick-dots li button {
  height: 23px;
  width: 23px;
}
article #contents .movie__slide .slick-dots li button:before {
  content: "";
  width: 23px;
  height: 23px;
  color: none;
  background: url("./img/_assets/movie_dot.png") no-repeat;
  background-size: cover;
  opacity: 1;
}
article #contents .movie__slide .slick-dots li.slick-active button:before {
  background: url("./img/_assets/movie_dot_active.png") no-repeat;
  background-size: cover;
  opacity: 1;
}
article #contents .movie__slide .buttons .button {
  border-radius: 100px;
  transition: 0.3s;
}
@media screen and (min-width: 1301px) {
  article #contents .movie__slide .buttons .button:hover {
    background: #fff;
  }
}
article #contents .movie__slide__tiktok {
  position: relative;
}
article #contents .movie__slide__tiktok ul li .tiktok_frame {
  max-width: 375px;
  margin: 0 auto;
  background: url("./img/_assets/movie_tiktok_frame.png") no-repeat;
  background-size: 100% auto;
  padding-top: 130px;
}
article #contents .movie__slide__tiktok ul li .tiktok_frame .tiktok-embed {
  margin: 0 auto;
}
article #contents .movie__slide__tiktok ul li .tiktok_frame iframe {
  width: 330px !important;
  margin: 0 22px;
}
article #contents .movie__slide__tiktok .buttons {
  position: absolute;
  bottom: 40px;
  width: 95%;
  left: 2.5%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 516px) {
  article #contents .movie__slide__tiktok .buttons {
    height: 10vw;
  }
}
article #contents .movie__slide__tiktok .buttons .button {
  width: 12.8%;
}
article #contents .movie__slide__tiktok .slick-dots {
  bottom: -2%;
  width: 100% !important;
  max-width: none !important;
  display: block;
}
article #contents .movie__slide__tiktok ul.slide-tiktok div.slick-list div.slick-track {
  height: 1050px;
}
@media screen and (max-width: 516px) {
  article #contents .movie__slide__tiktok ul.slide-tiktok div.slick-list div.slick-track {
    height: calc(950px + 18vw);
  }
}
article #contents .movie__slide__tiktok ul.slide-tiktok div.slick-list div.slick-track div.slick-slide {
  position: relative;
}
article #contents .movie__slide__tiktok ul.slide-tiktok div.slick-list div.slick-track div.slick-slide > div li.slide-tiktok--item p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
article #contents .movie__slide__youtube {
  position: relative;
  margin-top: 10%;
}
article #contents .movie__slide__youtube ul li .youtube_frame {
  background: url("./img/_assets/movie_youtube_frame.png") no-repeat;
  background-size: 100% auto;
  padding-top: 25.8%;
  padding-bottom: 8.8%;
  padding-left: 10%;
  padding-right: 10%;
}
article #contents .movie__slide__youtube ul li .youtube_frame .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
article #contents .movie__slide__youtube ul li .youtube_frame .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
article #contents .movie__slide__youtube .buttons {
  position: absolute;
  bottom: 9%;
  width: 95%;
  left: 2.5%;
  display: flex;
  justify-content: space-between;
}
article #contents .movie__slide__youtube .buttons .button {
  width: 12.8%;
}
article #contents .movie__slide__youtube .slick-dots {
  bottom: -3.5%;
  width: 100% !important;
  max-width: none !important;
  display: block;
}
article #contents .movie .movie__icn {
  width: 21.5%;
  margin: 0 8% 0 auto;
}
article #contents .movie .movie__icn img {
  margin-bottom: -35%;
}
article #contents .goods {
  background: url("./img/_assets/goods_bg.png") repeat-y;
  background-size: 100% auto;
  padding-top: 6%;
}
article #contents .goods__header {
  background: url("./img/_assets/goods_title_bg.png") no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 53.2vw;
}
@media screen and (min-width: 517px) {
  article #contents .goods__header {
    width: 500px;
    height: 266px;
  }
}
article #contents .goods__header h2 {
  width: 61.6%;
  margin: 0 auto;
}
article #contents .goods__header__label {
  background: url("./img/_assets/news_label.png") no-repeat;
  color: #f1679d;
  background-size: contain;
  margin: 2% 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 4vw, 20px);
  line-height: 1.3;
  font-weight: 600;
  width: 50vw;
  height: 14.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .goods__header__label {
    width: 250px;
    height: 74px;
  }
}
article #contents .goods__header__label span {
  display: inline-block;
  margin-bottom: 4px;
  padding-left: 8%;
  text-align: center;
}
article #contents .goods__contents {
  background: url("./img/_assets/goods_main_frame.png") no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 141.4vw;
}
@media screen and (min-width: 517px) {
  article #contents .goods__contents {
    width: 500px;
    height: 707px;
  }
}
article #contents .goods__contents .btn {
  position: absolute;
  top: 54%;
  left: 11.5%;
  background: url("./img/_assets/goods_lineup_btn.png") no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 4vw, 20px);
  padding-right: 5%;
  box-sizing: border-box;
  transition: 0.3s;
  color: #7d507b;
  width: 77.2vw;
  height: 12.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .goods__contents .btn {
    width: 386px;
    height: 64px;
  }
}
@media screen and (min-width: 1301px) {
  article #contents .goods__contents .btn:hover {
    background: url("./img/_assets/goods_lineup_btn_on.png") no-repeat center;
    background-size: contain;
    color: #fff;
  }
}
article #contents .goods__contents p {
  position: absolute;
  width: 94%;
  left: 3%;
  top: 71%;
  z-index: 2;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  color: #7d507b;
  font-size: clamp(13px, 3vw, 16px);
  font-feature-settings: "palt" !important;
}
article #contents .goods__contents p a {
  text-decoration: underline;
  color: #7d507b;
}
article #contents .goods__contents p a:hover {
  text-decoration: none;
}
article #contents .goods__contents p span {
  display: inline-block;
  margin-left: 1%;
  text-align: left;
  padding-top: 1.5%;
  font-size: clamp(10.5px, 2.5vw, 13px);
}
@media screen and (max-width: 520px) {
  article #contents .goods__contents p span .dp_pc {
    display: none !important;
  }
}
article #contents .goods__icn01 {
  position: absolute;
  width: 26.266%;
  bottom: -20.2%;
  left: 1.6%;
  z-index: 1;
}
article #contents .goods__icn02 {
  position: absolute;
  bottom: -8%;
  right: 2%;
  width: 26.266%;
  z-index: 1;
}
article #contents .goods__icn03 {
  width: 17.333%;
  z-index: 1;
  margin: 0 0 -8% 4%;
  position: relative;
  animation: movie_goods_04 1.5s infinite ease-in-out;
  transform-origin: bottom center;
  width: 17.4vw;
  height: 18.8vw;
  pointer-events: none;
}
@media screen and (min-width: 517px) {
  article #contents .goods__icn03 {
    width: 87px;
    height: 94px;
  }
}
article #contents .goods__icn03 img {
  position: absolute;
  top: 0%;
  left: 0%;
}
article #contents .goods__icn03 img.parts_01 {
  top: 0%;
  left: 0%;
  width: 100%;
}
article #contents .goods__icn03 img.parts_02 {
  top: 0.769%;
  left: 1%;
  width: 36.153%;
  animation: movie_goods_01 1.5s infinite ease-in-out;
  transform-origin: bottom center;
}
article #contents .goods__icn03 img.parts_03 {
  top: 60%;
  left: 79.23%;
  width: 13.846%;
  animation: movie_goods_02 1.5s infinite ease-in-out;
  transform-origin: bottom left;
}
article #contents .goods__icn03 img.parts_04 {
  top: 81.428%;
  left: 36.923%;
  width: 28.461%;
  animation: movie_goods_03 1.5s infinite ease-in-out;
  transform-origin: top 70%;
}
article #contents .sns {
  background: url("./img/_assets/sns_bg.png") repeat-y;
  background-size: 100% auto;
  padding-top: 6%;
}
article #contents .sns h2 {
  width: 36.666%;
  margin: 0 auto;
}
article #contents .sns__label {
  background: url("./img/_assets/movie_label.png") no-repeat;
  color: #ff913f;
  background-size: contain;
  margin: 2% auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 4vw, 20px);
  line-height: 1.3;
  font-weight: 600;
  width: 50vw;
  height: 14.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__label {
    width: 250px;
    height: 74px;
  }
}
article #contents .sns__label span {
  display: inline-block;
  margin-bottom: 4px;
  padding-right: 8%;
}
article #contents .sns .sns_animation_01 {
  margin: -10.4% 5.6% 0 auto;
  position: relative;
  width: 29vw;
  height: 15.4vw;
  pointer-events: none;
}
@media screen and (min-width: 517px) {
  article #contents .sns .sns_animation_01 {
    width: 145px;
    height: 77px;
  }
}
article #contents .sns .sns_animation_01 img {
  position: absolute;
  top: 0%;
  left: 0%;
}
article #contents .sns .sns_animation_01 img.parts_01 {
  top: 0%;
  left: 0%;
  width: 100%;
}
article #contents .sns .sns_animation_01 img.parts_02 {
  top: 0%;
  left: 0%;
  width: 43.577%;
  animation: sns_animation_01_01 2s infinite ease-in-out;
  transform-origin: bottom center;
}
article #contents .sns .sns_animation_01 img.parts_03 {
  top: 61.206%;
  left: 11.385%;
  width: 33.486%;
  animation: sns_animation_01_02 2s infinite ease-in-out;
  transform-origin: center center;
}
article #contents .sns__frame {
  background: url("./img/_assets/sns_frame.png") no-repeat;
  background-size: contain;
  padding-top: 12%;
  position: relative;
  width: 100%;
  height: 104.2vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__frame {
    width: 500px;
    height: 521px;
  }
}
article #contents .sns__frame ul {
  width: 78.4%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 54px 18%;
}
@media screen and (max-width: 517px) {
  article #contents .sns__frame ul {
    gap: 10.8vw 18%;
  }
}
article #contents .sns__frame ul li {
  width: 41%;
}
article #contents .sns__frame ul li a {
  text-decoration: none;
}
article #contents .sns__frame ul li a .img {
  background: url("./img/_assets/sns_icn_frame.png");
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  width: 30vw;
  height: 25.2vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__frame ul li a .img {
    width: 150px;
    height: 126px;
  }
}
article #contents .sns__frame ul li a .img img {
  margin-top: 0;
  max-width: 65px;
  width: 40%;
  height: auto;
}
article #contents .sns__frame ul li a span {
  background: #7d507b;
  border: 2px solid #7d507b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  width: 100%;
  height: 30px;
  border-radius: 8px;
  margin-top: 8px;
  transition: 0.3s;
}
@media screen and (min-width: 1301px) {
  article #contents .sns__frame ul li a:hover .img {
    background: url("./img/_assets/sns_icn_frame_on.png");
    background-size: cover;
  }
  article #contents .sns__frame ul li a:hover span {
    background: #fff;
    color: #7d507b;
  }
}
article #contents .sns__frame__icn_01 {
  position: absolute;
  top: 42.4%;
  right: 2%;
  width: 27.066%;
}
article #contents .sns__frame__icn_02 {
  position: absolute;
  bottom: 0;
  left: 10.4%;
  width: 20.533%;
}
article #contents .sns__campaign__frame {
  background: url("./img/_assets/campaign_bg.png") no-repeat;
  background-size: contain;
  margin-top: 5.2%;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 219vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame {
    width: 500px;
    height: 1095px;
  }
}
article #contents .sns__campaign__frame .campaign_main {
  position: absolute;
  top: 18.624%;
  left: 0;
  width: 100%;
  width: 100%;
  height: 75.4vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_main {
    width: 500px;
    height: 377px;
  }
}
article #contents .sns__campaign__frame .campaign_main .campaign_animation_01 {
  position: absolute;
  left: 1.333%;
  animation: campaign_animation_01_01 1s infinite ease-in-out;
  transform-origin: center bottom;
  width: 39.4vw;
  height: 24vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_main .campaign_animation_01 {
    width: 197px;
    height: 120px;
  }
}
article #contents .sns__campaign__frame .campaign_main .campaign_animation_01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: campaign_animation_01_02 2s infinite;
}
article #contents .sns__campaign__frame .campaign_main .campaign_animation_01 img:nth-child(1) {
  animation-delay: 0s;
}
article #contents .sns__campaign__frame .campaign_main .campaign_animation_01 img:nth-child(2) {
  animation-delay: 1s;
  opacity: 0;
  transform: translateY(0px);
}
article #contents .sns__campaign__frame .campaign_main .campaign_animation_02 {
  position: absolute;
  left: 81.733%;
  top: 46.466%;
  animation: campaign_animation_02 2s infinite ease-in-out;
  transform-origin: 10% 90%;
  width: 11.2vw;
  height: 18.4vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_main .campaign_animation_02 {
    width: 56px;
    height: 92px;
  }
}
article #contents .sns__campaign__frame .campaign_date {
  position: absolute;
  top: 48.934%;
  left: 0;
  width: 63.866%;
}
article #contents .sns__campaign__frame .campaign_detail {
  position: absolute;
  top: 55.569%;
  right: 0;
  width: 100%;
  height: 56vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_detail {
    width: 500px;
    height: 280px;
  }
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_03 {
  position: absolute;
  top: 0;
  left: 69.866%;
  z-index: 1;
  animation: campaign_animation_03 3s infinite ease-in-out;
  transform-origin: 55% 100%;
  width: 25.6vw;
  height: 17.6vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_detail .campaign_animation_03 {
    width: 128px;
    height: 88px;
  }
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 {
  position: absolute;
  top: 73.809%;
  left: 13.333%;
  z-index: 3;
  animation: campaign_animation_04_01 1.5s infinite ease-in-out;
  transform-origin: 55% 100%;
  pointer-events: none;
  width: 18.6vw;
  height: 14.6vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 {
    width: 93px;
    height: 73px;
  }
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 img {
  position: absolute;
  top: 0;
  left: 0;
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 img.parts_01 {
  top: 0%;
  left: 0%;
  width: 100%;
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 img.parts_02 {
  top: 0%;
  left: 0%;
  width: 100%;
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 img.parts_03 {
  top: 12.727%;
  left: 0%;
  width: 31.428%;
  animation: campaign_animation_04_02 1.5s infinite ease-in-out;
  transform-origin: 90% 90%;
}
article #contents .sns__campaign__frame .campaign_detail .campaign_animation_04 img.parts_04 {
  top: 0%;
  left: 66.428%;
  width: 30.714%;
  animation: campaign_animation_04_03 1.5s infinite ease-in-out;
  transform-origin: 10% 90%;
}
article #contents .sns__campaign__frame .campaign_detail .base {
  position: relative;
  z-index: 2;
}
article #contents .sns__campaign__frame .btn {
  position: absolute;
  top: 84.418%;
  left: 21.267%;
  background: url("./img/_assets/campaign_btn.png") no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 4vw, 20px);
  padding-right: 4%;
  box-sizing: border-box;
  color: #69a7f3;
  padding-bottom: 0.3%;
  transition: 0.3s;
  width: 57.4vw;
  height: 12.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .sns__campaign__frame .btn {
    width: 287px;
    height: 64px;
  }
}
@media screen and (min-width: 1301px) {
  article #contents .sns__campaign__frame .btn:hover {
    background: url("./img/_assets/campaign_btn_on.png") no-repeat center;
    background-size: contain;
    color: #fff;
  }
}
article #contents .footer {
  background: #fff;
}
article #contents .footer__img {
  position: relative;
  z-index: 1;
  margin: -20% auto 0;
  width: 90.533%;
}
article #contents .footer__link {
  width: 63.066%;
  margin: 0 auto 0;
}
article #contents .footer .btn {
  background: url("./img/_assets/footer_btn.png") no-repeat center;
  background-size: contain;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #7d507b;
  font-weight: 700;
  padding-right: 7%;
  margin: 10% auto 0;
  font-size: clamp(15px, 4vw, 20px);
  width: 65.6vw;
  height: 12.8vw;
}
@media screen and (min-width: 517px) {
  article #contents .footer .btn {
    width: 328px;
    height: 64px;
  }
}
article #contents .footer .btn span {
  font-size: clamp(10px, 2.8vw, 14px);
  display: inline-block;
  margin-bottom: -1.2%;
  margin-left: 1%;
}
article #contents .footer hr {
  border: none;
  height: 8px;
  width: 72%;
  background: url("./img/_assets/footer_hr.png") no-repeat;
  background-size: auto 100%;
  margin: 15% auto;
}
article #contents .footer p {
  padding: 16% 5% 2%;
  box-sizing: border-box;
  color: #7d507b;
  line-height: 1.8;
  font-size: clamp(10px, 2.666vw, 14px);
}
article #contents .footer small {
  padding: 0 5% 5%;
  text-align: center;
  display: block;
  color: #7d507b;
  line-height: 1.8;
  font-size: clamp(10px, 2.666vw, 14px);
}
article #contents .icn {
  width: 17.066%;
  margin: 0 0 -2% 1%;
  transform: translateY(-75%);
}

.modal {
  display: block;
  visibility: hidden;
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: rgba(255, 255, 255, 0.7) url("./img/_assets/modal_bg.png") center repeat-y;
  background-size: 100%;
  background-attachment: fixed;
  cursor: pointer;
}
@media screen and (min-width: 520px) {
  .modal {
    background: rgba(255, 255, 255, 0.7) url("./img/_assets/modal_bg.png") center repeat-y;
    background-size: 480px;
  }
}
.modal .modal-box {
  margin: 0 auto;
  animation-name: modalopen;
  animation-duration: 1s;
  min-height: 100%;
  max-width: 480px;
  position: relative;
  cursor: default;
  position: relative;
}
.modal .modal-box__contents {
  padding: 50px 10% 0;
  box-sizing: border-box;
}
.modal .modal-box__contents .modalClose {
  position: absolute;
  top: 10px;
  right: 35px;
  float: right;
  cursor: pointer;
}
.modal .modal-box__contents .modalClose img {
  max-width: 54px;
}
.modal .modal-box__contents .main {
  max-width: 380px;
  width: 100%;
}
.modal .modal-box__contents .story_img {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-bottom: 23px;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
ul.slide-items {
  display: block;
}
ul.slide-items li {
  text-align: center;
}
ul.slide-items li .main {
  display: block;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
}
ul.slide-items li .buttons {
  max-width: 300px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
}
ul.slide-items li .buttons .button {
  width: 60px;
}
ul.slide-items li .buttons .button img {
  width: 100%;
}

.fade {
  opacity: 0;
  transition: all 1s;
  transform: translateY(30px);
}
.fade.fade_delay {
  transition-delay: 0.2s;
}
.fade.fade_scale {
  transform: scale(0.9);
}
.fade.fadeIn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes profile_animation_01 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes profile_animation_02 {
  0%, 80% {
    opacity: 1;
  }
  80.01%, 100% {
    opacity: 0;
  }
}
@keyframes news_01_animation_01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes news_01_animation_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes news_01_animation_03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg) translateX(3%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes news_02_animation_01 {
  0% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(8px);
  }
}
@keyframes news_02_animation_02 {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(30deg);
  }
}
@keyframes movie_animation_01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-42%) rotate(15deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes movie_animation_02 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(42%) rotate(-15deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes movie_dance {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
@keyframes movie_ten {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-1.5%) translateX(1.5%);
  }
  20% {
    transform: translateY(0) translateX(3%);
  }
  30% {
    transform: translateY(-1.5%) translateX(4.5%);
  }
  40% {
    transform: translateY(0) translateX(6%);
  }
  50% {
    transform: translateY(0) translateX(6%);
  }
  60% {
    transform: translateY(0) translateX(6%) rotate(-1deg);
  }
  100% {
    transform: translateY(0) translateX(6%) rotate(-1deg);
  }
}
@keyframes movie_goods_01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0) rotate(-6deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes movie_goods_02 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0) rotate(10deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes movie_goods_03 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%) rotate(8deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes movie_goods_04 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0) rotate(-2deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes sns_animation_01_01 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0) rotate(4deg);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes sns_animation_01_02 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes campaign_animation_01_01 {
  0% {
    transform: translateY(0%);
  }
  60% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%) scale(1, 0.985);
  }
}
@keyframes campaign_animation_01_02 {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
@keyframes campaign_animation_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes campaign_animation_03 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes campaign_animation_04_01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes campaign_animation_04_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes campaign_animation_04_03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header-ebisis-01 {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
@keyframes header-ebifan-01 {
  0% {
    opacity: 0;
  }
  49.9% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes header-ebifan-02 {
  0% {
    opacity: 1;
  }
  49.9% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes header_fry {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg) translateY(-1%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_fry_parts_01 {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(0deg) translateY(-1%);
  }
  100% {
    transform: rotate(-8deg);
  }
}
@keyframes header_fry_parts_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg) translateY(-2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_fry_parts_03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg) translateY(-4%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_fry_parts_04 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(12deg) translateY(-4%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_fry_parts_05 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg) translateY(0%) translateX(0%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_fry_parts_06 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg) translateY(2%) translateX(0%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg) translateY(1%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(12deg) translateY(2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-12deg) translateY(2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-3deg) translateX(-5%) translateY(2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_04 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(9deg) translateX(0%) translateY(-1%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_05 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_parts_06 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header_ten_wink {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  72% {
    opacity: 1;
    transform: scale(1, 1);
  }
  74% {
    opacity: 0;
    transform: scale(1, 1);
  }
  99% {
    opacity: 0;
    transform: scale(1, 0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes header_fry_slide {
  0% {
    transform: translateX(0) translateY(6%);
    scale: 1;
    opacity: 0;
  }
  100% {
    transform: translateX(14%);
    opacity: 1;
    scale: 1;
  }
}
@keyframes header_ten_slide {
  0% {
    transform: translateX(0) translateY(-6%);
    scale: 1;
    opacity: 0;
  }
  100% {
    transform: translateX(-6%);
    opacity: 1;
    scale: 1;
  }
}
@keyframes toc_icn_animation_01 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px) rotate(-3deg);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes toc_icn_animation_02 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes toc_head_animation_01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes toc_head_animation_02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes toc_head_animation_03 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg) translateY(-2%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes toc_head_animation_04 {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  50% {
    transform: translateX(10%) translateY(10%);
  }
  100% {
    transform: translateX(0%) translateY(0%);
  }
}
@keyframes toc_head_animation_05 {
  0% {
    transform: rotate(0deg) translateX(-5%);
  }
  50% {
    transform: rotate(-10deg) translateX(-5%);
  }
  100% {
    transform: rotate(0deg) translateX(-5%);
  }
}
@keyframes toc_head_animation_06 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg) translateX(-5%) translateY(-5%);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes toc_head_animation_07 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes toc_head_animation_08 {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  50% {
    transform: translateX(-3%) translateY(-3%);
  }
  100% {
    transform: translateX(0%) translateY(0%);
  }
}
@keyframes toc_head_animation_09 {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  50% {
    transform: rotate(-5deg) translateX(5%) translateY(-3%);
  }
  100% {
    transform: translateX(0%) translateY(0%);
  }
}
@keyframes toc_head_animation_10 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes toc_head_animation_11 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: rotate(-6deg) translateX(6%) translateY(-4%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes toc_head_animation_12 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: rotate(6deg) translateY(-4%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes toc_head_animation_13 {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: rotate(-6deg) translateX(4%) translateY(4%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes toc_head_animation_14 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes toc_head_animation_15 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}
article .theme_interview__header {
  background: url("./img/_assets/interview/header_bg.png") repeat-y center top/100%;
  aspect-ratio: 1/1.786;
  padding-top: 17.333%;
  box-sizing: border-box;
}
article .theme_interview__header__member {
  margin: 8.533% 3.2%;
  border-radius: 3.2%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 5.333% 0 8.466% 3.466%;
  position: relative;
}
article .theme_interview__header__member h2 {
  font-size: clamp(0.938rem, 4vw, 1.25rem);
  color: #e47cb4;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 2.666%;
  margin-bottom: 5%;
  border-bottom: 1px solid #e47cb4;
  margin-right: 3.466%;
}
article .theme_interview__header__member ul li {
  font-size: clamp(0.688rem, -0.006rem + 2.96vw, 0.919rem);
  font-feature-settings: "palt";
  font-weight: 500;
  color: #706464;
  line-height: 3;
  position: relative;
  padding-left: 1.5%;
}
article .theme_interview__header__member ul li strong {
  color: #e47cb4;
}
article .theme_interview__header__member ul li::before {
  content: "・";
  position: absolute;
  left: -1.3%;
}
article .theme_interview__header__member::after {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  content: "";
  display: block;
  background: url("./img/_assets/interview/header_img_01.png") no-repeat top/contain;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 702/86;
}
article .theme_interview__contents {
  padding: 14.666% 6.666%;
}
article .theme_interview__contents h2 {
  font-size: clamp(0.938rem, 4vw, 1.25rem);
  line-height: 1.8;
  color: #5ea9ee;
  letter-spacing: 0.03rem;
  font-weight: 500;
}
article .theme_interview__contents p {
  font-size: clamp(0.75rem, 3.2vw, 1rem);
  letter-spacing: 0.025rem;
  line-height: 2.75;
  margin-top: 10%;
  font-weight: 500;
  color: #706464;
}
article .theme_interview__contents p .name {
  color: #e47cb4;
}
article .theme_interview__contents figure {
  margin-top: 13.333%;
}
article .theme_interview__contents figure img {
  max-width: 100%;
  width: auto;
}
article .theme_interview__contents figure figcaption {
  padding-top: 1%;
  font-size: clamp(0.625rem, 0.417rem + 0.89vw, 0.833rem);
}
article .theme_interview--btn_top {
  background: url("./img/_assets/interview/btn_top.png") no-repeat center/contain;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7d507b;
  font-weight: 600;
  padding-right: 7%;
  font-size: clamp(15px, 4vw, 20px);
  width: 65.6vw;
  height: 12.8vw;
  margin-inline: auto;
  padding-bottom: 1%;
  transition: 0.3s;
  margin-top: 26.666%;
}
article .theme_interview--btn_top:hover {
  opacity: 0.8;
}
@media screen and (min-width: 517px) {
  article .theme_interview--btn_top {
    width: 328px;
    height: 64px;
  }
}
article .theme_interview__footer {
  margin-top: 13.333%;
  background: #e7f5fc;
  text-align: center;
  padding: 3.333% 6.666%;
  color: #8e76bd;
  line-height: 1.5;
  font-size: clamp(0.625rem, 0.417rem + 0.89vw, 0.833rem);
}
article .theme_interview__footer small {
  display: block;
  padding-top: 1.667%;
}
article .theme_interview .left-bracket {
  margin-left: -1.4%;
}
article .theme_interview .right-bracket {
  margin-right: -1.4%;
}