@charset "UTF-8";
/* =======================
VARIABLES
* ======================= */
/* colors */
/* breakpoints */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
/* =======================
 * Functions CLASS
 * ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

button:disabled {
  cursor: not-allowed;
}

/* ホバー可能なデバイスでのみ適用される */
@media (any-hover: hover) {
  .hoverLinkGood:hover {
    color: orangered;
  }
}
/*====================================================================
siteHeader
====================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  transition: all 0.6s ease-in-out 0s;
}
.header.v2 .header__navMenuItemLink {
  color: #1A1A19;
}
.header.v2 .header__menuBar {
  background-color: #1A1A19;
}
.header__container {
  margin: 0 auto;
  padding: 16px 49px 16px 46px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  position: relative;
  box-sizing: border-box;
}
.header__logo {
  padding: 0;
  width: 250px;
  display: block;
  box-sizing: border-box;
  transition: all 0.6s ease-in-out 0s;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo {
  position: relative;
}
.header__logo .musicBoostLogoWhite {
  transition: all 0.6s ease-in-out 0s;
}
.header__logo .musicBoostLogoBlack {
  transition: all 0.6s ease-in-out 0s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header__menuBarsWrapper {
  display: none;
}
.header__navMenuContainer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header__navMenuItems {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 26px;
  list-style: none;
}
.header__navMenuItems.m-pcDb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header__navMenuItem {
  position: relative;
}
.header__navMenuItemLink {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 100%;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  text-transform: capitalize;
  display: block;
  box-sizing: border-box;
  position: relative;
  transition: all 0.6s ease-in-out 0s;
}
.header__navMenuItemLink:hover {
  opacity: 0.7;
}
.header__navSns {
  display: none;
}

/*====================================================================
siteHeader PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) {
  .header__container {
    padding: 1.4545454545vw 4.4545454545vw 1.4545454545vw 4.1818181818vw;
  }
  .header__logo {
    width: 22.7272727273vw;
  }
  .header__navMenuItems {
    gap: 2.3636363636vw;
  }
  .header__navMenuItemLink {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 100%;
    color: #fff;
  }
}
/*====================================================================
Header SP
====================================================================*/
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
  .header.v2 .header__navMenuItemLink {
    color: #EBFF01;
  }
  .header.v2 .header__menuBar {
    background-color: #1A1A19;
  }
  .header__container {
    margin: 0 auto;
    padding: 13px 0 13px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .header__logo {
    width: 200px;
    z-index: 1;
  }
  .header__navMenuContainer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 25, 0.95);
    transition: all 0.6s ease-in-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .header__navMenuContainer.is-active {
    left: 0;
  }
  .header__navMenuItems {
    margin: 0 auto 0;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px 62.5px;
  }
  .header__navMenuItems.m-pcDf {
    display: none;
  }
  .header__navMenuItems.m-spDf {
    display: flex;
  }
  .header__navMenuItem {
    margin: 0;
    width: 100%;
    max-width: 133.5px;
  }
  .header__navMenuItemLink {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
    transition: all 0.6s ease-in-out 0s;
  }
  .header__navMenuItemLink:hover {
    opacity: 0.7;
  }
  .header__navMenuItemLink h5 {
    width: max-content;
    position: relative;
  }
  .header__navMenuItemLink h5:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #767575;
  }
  .header__navMenuItemLink h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 1px;
    background-color: #EBFF01;
  }
  .header__navMenuItemLink span {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 120%;
    color: #d9d9d9;
  }
  .header__menuBarsWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    box-sizing: border-box;
    text-align: center;
    position: relative;
  }
  .header__menuBars {
    margin: 0 auto;
    padding: 0 20px 0;
    width: auto;
    display: inline-block;
    transition: all 0.7s ease;
    cursor: pointer;
  }
  .header__menuBars.bars-clicked .header__menuBar {
    background-color: #EBFF01;
  }
  .header__menuBar {
    margin: 8px auto;
    width: 23px;
    height: 1px;
    display: block;
    background: #EBFF01;
    transition: all 0.7s ease;
  }
  .header__menuBar.top {
    margin-top: 0;
  }
  .header__menuBar.bottom {
    margin: 8px 0 0;
  }
  .header .bars-clicked .top {
    transform: translateY(6px) rotateZ(45deg);
  }
  .header .bars-clicked .middle {
    width: 0;
  }
  .header .bars-clicked .bottom {
    transform: translateY(-3px) rotateZ(-45deg);
  }
  .header__navSns {
    padding-left: 20px;
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
  }
  .header__navSns__itm {
    width: 40px;
    height: 40px;
    transition: all 0.6s ease-in-out 0s;
  }
  .header__navSns__itm:hover {
    opacity: 0.7;
  }
}
/*====================================================================
siteHeader SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .header__container {
    padding: 3.4666666667vw 0 3.4666666667vw 5.3333333333vw;
  }
  .header__logo {
    width: 53.3333333333vw;
  }
  .header__navMenuItems {
    padding-left: 5.3333333333vw;
    gap: 5.3333333333vw 16.6666666667vw;
  }
  .header__navMenuItem {
    max-width: 35.6vw;
  }
  .header__navMenuItemLink {
    font-size: 7.4666666667vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .header__navMenuItemLink h5:before {
    height: 0.2666666667vw;
  }
  .header__navMenuItemLink h5:after {
    width: 3.2vw;
    height: 0.2666666667vw;
  }
  .header__navMenuItemLink span {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 120%;
    color: #d9d9d9;
  }
  .header__menuBars {
    padding: 0 5.3333333333vw 0;
  }
  .header__menuBar {
    margin: 2.1333333333vw auto;
    width: 6.1333333333vw;
    height: 0.2666666667vw;
  }
  .header__menuBar.bottom {
    margin: 2.1333333333vw 0 0;
  }
  .header .bars-clicked .top {
    transform: translateY(6px) rotateZ(45deg);
  }
  .header .bars-clicked .bottom {
    transform: translateY(-3px) rotateZ(-45deg);
  }
  .header__navSns {
    padding-left: 20px;
    width: 100%;
    margin-top: 40px;
    gap: 12px;
  }
  .header__navSns__itm {
    width: 40px;
    height: 40px;
  }
}
/*====================================================================
siteFooter
====================================================================*/
.siteFooter {
  margin: 0 auto;
  width: 100%;
  background-color: #EBFF01;
}
.siteFooter .section__ttl {
  color: #524F4E;
}
.siteFooter__container {
  margin: 0 auto;
  padding-top: 36px;
  width: 100%;
  max-width: 800px;
}
.siteFooter__mailBtn {
  margin-bottom: 42px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 150%;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  text-align: center;
  background-color: #524F4E;
}
.siteFooter__links {
  padding: 22px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 24px;
  border-top: 1px dashed #000000;
  border-bottom: 1px dashed #000000;
}
.siteFooter__linkItm {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 120%;
  color: #1A1A19;
  font-family: "Comfortaa", sans-serif;
  transition: all 0.6s ease-in-out 0s;
}
.siteFooter__linkItm:hover {
  opacity: 0.7;
}
.siteFooter__copyright {
  padding: 55px 0 33px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 120%;
  color: #524F4E;
  font-family: "Comfortaa", sans-serif;
  text-align: center;
}

/*====================================================================
siteFooter Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) {
  .siteFooter__container {
    padding-top: 3.2727272727vw;
    max-width: 72.7272727273vw;
  }
  .siteFooter__mailBtn {
    margin-bottom: 3.8181818182vw;
    height: 9.0909090909vw;
    font-size: 2.1818181818vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
  .siteFooter__links {
    padding: 2vw 0 2.1818181818vw;
    gap: 2.1818181818vw;
  }
  .siteFooter__linkItm {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 120%;
    color: #1A1A19;
  }
  .siteFooter__copyright {
    padding: 5vw 0 3vw;
    font-size: 1.2727272727vw;
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 120%;
    color: #524F4E;
  }
}
/*====================================================================
siteFooter SP
====================================================================*/
@media screen and (max-width: 767px) {
  .siteFooter__container {
    padding-top: 37px;
    max-width: 338.5px;
    max-width: 90%;
  }
  .siteFooter__mailBtn {
    margin-bottom: 20px;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
  .siteFooter__links {
    padding: 28px 0 29.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 5.5px;
    border-top: 1px dashed #524F4E;
    border-bottom: 1px dashed #524F4E;
  }
  .siteFooter__linkItm {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 120%;
    color: #524F4E;
  }
  .siteFooter__copyright {
    padding: 37.5px 0 38px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 120%;
    color: #524F4E;
  }
}
/*====================================================================
siteFooter SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .siteFooter__container {
    padding-top: 9.8666666667vw;
    max-width: 90.2666666667vw;
  }
  .siteFooter__mailBtn {
    margin-bottom: 5.3333333333vw;
    height: 13.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .siteFooter__links {
    padding: 7.4666666667vw 0 7.8666666667vw;
    gap: 1.4666666667vw;
    border-top: 0.2666666667vw dashed #524F4E;
    border-bottom: 0.2666666667vw dashed #524F4E;
  }
  .siteFooter__linkItm {
    font-size: 3.2vw;
  }
  .siteFooter__copyright {
    padding: 10vw 0 10.1333333333vw;
    font-size: 2.6666666667vw;
  }
}
/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}
body.menu-is-active {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    overflow-x: hidden;
  }
}

/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.m-pcDb {
  display: block;
}

.m-pcDib {
  display: inline-block;
}

.m-pcDin {
  display: inline;
}

.m-pcDf {
  display: flex;
}

.m-pcDt {
  display: table;
}

.m-pcDtc {
  display: table-cell;
}

.m-spDb,
.m-spDib,
.m-spDin,
.m-spDf,
.m-spDt,
.m-spDtc {
  display: none;
}

@media screen and (max-width: 767px) {
  .m-pcDb,
  .m-pcDib,
  .m-pcDin,
  .m-pcDf,
  .m-pcDt,
  .m-pcDtc {
    display: none;
  }
  .m-spDb {
    display: block;
  }
  .m-spDib {
    display: inline-block;
  }
  .m-spDin {
    display: inline;
  }
  .m-spDf {
    display: flex;
  }
  .m-spDt {
    display: table;
  }
  .m-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
Container
------------------------------------------------*/
.siteContainer {
  margin: auto;
  width: 100%;
  max-width: 356px;
  max-width: 90%;
  position: relative;
}
@media screen and (max-width: 375px) {
  .siteContainer {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .siteContainer {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .siteContainer {
    max-width: 100vw;
  }
}

/*-----------------------------------------------
Anchor
------------------------------------------------*/
.anchor {
  position: relative;
}
.anchor__box {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  outline: none;
  pointer-events: none;
  cursor: default;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .anchor__box {
    top: 0;
    width: 4.5454545455vw;
    height: 4.5454545455vw;
  }
}
@media screen and (max-width: 767px) {
  .anchor__box {
    top: -6.6666666667vw;
    left: 0;
    right: 0;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}

/*-----------------------------------------------
Common Text 
------------------------------------------------*/
img.lazy {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
}
img.loaded-class {
  opacity: 1;
}

/*-----------------------------------------------
Image LazyLoad
------------------------------------------------*/
img.lazy {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.2s;
}
img.loaded-class {
  opacity: 1;
}

/*-----------------------------------------------
Audition Btn Floating
------------------------------------------------*/
.audition__btn {
  display: block;
  width: 100%;
  max-width: 205px;
  height: 64px;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #000000;
  font-family: "Comfortaa", sans-serif;
  box-sizing: border-box;
  position: fixed;
  bottom: 64px;
  right: 51px;
  z-index: 5;
  text-align: center;
  border: 2.3px solid #EBFF01;
}
.audition__btn span {
  width: 100%;
  background-color: #EBFF01;
  color: #000000;
}
@media screen and (max-width: 1100px) {
  .audition__btn {
    max-width: 18.6363636364vw;
    height: 5.8181818182vw;
    box-shadow: 0 0.3636363636vw 0.3636363636vw 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
    font-size: 1.4545454545vw;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 180%;
    color: #000000;
    bottom: 5.8181818182vw;
    right: 4.6363636364vw;
    border: 0.2090909091vw solid #EBFF01;
  }
}
@media screen and (max-width: 767px) {
  .audition__btn {
    max-width: 151px;
    height: 47.5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 180%;
    color: #000000;
    bottom: 20px;
    right: 20px;
    border: 2px solid #EBFF01;
  }
}
@media screen and (max-width: 350px) {
  .audition__btn {
    max-width: 40.2666666667vw;
    height: 12.6666666667vw;
    box-shadow: 0 0.5333333333vw 0.5333333333vw 0 rgba(0, 0, 0, 0.25);
    font-size: 3.2vw;
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
    border: 0.5333333333vw solid #EBFF01;
  }
}

/*-----------------------------------------------
Overlay
------------------------------------------------*/
.overlay {
  position: relative;
}
.overlay__videoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay__elem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  z-index: 1;
  will-change: opacity;
}

/*-----------------------------------------------
Button
------------------------------------------------*/
.mb__btn {
  transition: all 0.6s ease-in-out 0s;
}
.mb__btn:hover {
  transform: scale(0.9);
}

/*-----------------------------------------------
Section TTL
------------------------------------------------*/
.section__ttl {
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .section__ttl {
    font-size: 7.2727272727vw;
  }
}
@media screen and (max-width: 767px) {
  .section__ttl {
    font-size: 64px;
  }
}
@media screen and (max-width: 350px) {
  .section__ttl {
    font-size: 17.0666666667vw;
  }
}

/*-----------------------------------------------
Video
------------------------------------------------*/
video {
  display: block;
  width: 100%;
  height: auto;
}

.noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/section/kv/noise.png);
  background-attachment: fixed;
  animation: noise 8s steps(10) infinite;
  animation-play-state: paused;
  pointer-events: none;
  transition: all 0.1s ease-in-out 0s;
  z-index: 3;
}
.noise.is-scrolling {
  animation-play-state: running;
}

/*====================================================================
KV Section SP
====================================================================*/
.keyVisual {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  min-height: 500px;
}
.keyVisual.front-page {
  position: relative;
}
.keyVisual.front-page:after {
  content: "";
  position: absolute;
  bottom: 231px;
  left: -10px;
  width: 103%;
  height: 259px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/section/kv/float-elems-line-mob.png);
}
.keyVisual.front-page .keyVisual__container {
  padding-bottom: 190px;
  justify-content: flex-end;
}
.keyVisual__container {
  margin: 0 auto;
  padding: 0 12.5px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.keyVisual__title {
  font-size: 59px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 100%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  font-style: italic;
}
.keyVisual__title.first-block {
  margin-bottom: 5px;
}
.keyVisual__title.second-block {
  margin-bottom: 5px;
  padding-left: 12px;
  display: flex;
}
.keyVisual__title span {
  display: block;
}
.keyVisual__title span.caption {
  font-family: "Allerta Stencil", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 117%;
  color: #fff;
  font-style: normal;
  text-align: right;
}
.keyVisual__title span.outlined {
  margin-left: 6px;
  padding-left: 6px;
  -webkit-text-stroke: 2px #EBFF01;
  color: transparent;
  position: relative;
}
.keyVisual__title span.outlined:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 2px;
  height: 52.5px;
  background-color: #EBFF01;
}
.keyVisual__jpTxt {
  margin-top: 10px;
  margin-left: 0;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #fff;
}
.keyVisual__scrollElem {
  position: absolute;
  bottom: 38px;
  left: -20px;
  width: 97px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  transform: rotate(90deg);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 150%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  overflow: hidden;
}
.keyVisual__scrollElem:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.keyVisual__scrollElem:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 22px;
  height: 2px;
  background: #EBFF01;
  animation: scrollBar 2.8s 0.5s infinite;
}

/*====================================================================
KV Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .keyVisual {
    min-height: 133.3333333333vw;
  }
  .keyVisual.front-page:after {
    bottom: 61.6vw;
    left: -2.6666666667vw;
    height: 69.0666666667vw;
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 50.6666666667vw;
  }
  .keyVisual__container {
    padding: 0 3.3333333333vw;
  }
  .keyVisual__title {
    font-size: 15.7333333333vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 1.3333333333vw;
  }
  .keyVisual__title.second-block {
    margin-bottom: 1.3333333333vw;
    padding-left: 3.2vw;
  }
  .keyVisual__title span.caption {
    font-size: 2.1333333333vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 1.6vw;
    padding-left: 1.6vw;
    -webkit-text-stroke: 0.5333333333vw #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 1.3333333333vw;
    width: 0.5333333333vw;
    height: 14vw;
  }
  .keyVisual__jpTxt {
    margin-top: 2.6666666667vw;
    margin-left: 0;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 10.1333333333vw;
    left: -5.3333333333vw;
    width: 25.8666666667vw;
    height: 5.6vw;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 12.8vw;
    height: 0.5333333333vw;
  }
  .keyVisual__scrollElem:after {
    right: 1.0666666667vw;
    width: 5.8666666667vw;
    height: 0.5333333333vw;
  }
}
/*====================================================================
KV Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .keyVisual {
    min-height: 700px;
  }
  .keyVisual.front-page:after {
    bottom: 0;
    top: auto;
    transform: translateY(0);
    left: -11px;
    width: 859px;
    height: 605px;
    background-size: contain;
    background-image: url(../images/section/kv/float-elems-line.png);
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 97px;
    justify-content: flex-end;
  }
  .keyVisual__container {
    padding: 0 88px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
  }
  .keyVisual__title {
    font-size: 112px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 13px;
  }
  .keyVisual__title.second-block {
    margin-bottom: 24px;
    padding-left: 104px;
  }
  .keyVisual__title span.caption {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 12px;
    padding-left: 12px;
    -webkit-text-stroke: 4px #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 5px;
    width: 4px;
    height: 110px;
  }
  .keyVisual__jpTxt {
    margin-top: 5px;
    margin-left: 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 38px;
    left: 7px;
    width: 97px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 48px;
    height: 2px;
  }
  .keyVisual__scrollElem:after {
    right: 4px;
    width: 22px;
    height: 2px;
  }
}
/*====================================================================
KV Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .keyVisual {
    min-height: 63.6363636364vw;
  }
  .keyVisual.front-page:after {
    left: -1vw;
    width: 78.0909090909vw;
    height: 55vw;
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 8.8181818182vw;
  }
  .keyVisual__container {
    padding: 0 8vw;
  }
  .keyVisual__title {
    font-size: 10.1818181818vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 1.1818181818vw;
  }
  .keyVisual__title.second-block {
    margin-bottom: 2.1818181818vw;
    padding-left: 9.4545454545vw;
  }
  .keyVisual__title span.caption {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 1.0909090909vw;
    padding-left: 1.0909090909vw;
    -webkit-text-stroke: 0.3636363636vw #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 0.4545454545vw;
    width: 0.3636363636vw;
    height: 10vw;
  }
  .keyVisual__jpTxt {
    margin-top: 0.4545454545vw;
    margin-left: 1.3636363636vw;
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 3.4545454545vw;
    left: 0.6363636364vw;
    width: 8.8181818182vw;
    height: 1.9090909091vw;
    font-size: 1.2727272727vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 4.3636363636vw;
    height: 0.1818181818vw;
  }
  .keyVisual__scrollElem:after {
    right: 0.3636363636vw;
    width: 2vw;
    height: 0.1818181818vw;
  }
}
.noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/section/kv/noise.png);
  background-attachment: fixed;
  animation: noise 8s steps(10) infinite;
  animation-play-state: paused;
  pointer-events: none;
  transition: all 0.1s ease-in-out 0s;
  z-index: 3;
}
.noise.is-scrolling {
  animation-play-state: running;
}

/*====================================================================
KV Section SP
====================================================================*/
.keyVisual {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  min-height: 500px;
}
.keyVisual.front-page {
  position: relative;
}
.keyVisual.front-page:after {
  content: "";
  position: absolute;
  bottom: 231px;
  left: -10px;
  width: 103%;
  height: 259px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/section/kv/float-elems-line-mob.png);
}
.keyVisual.front-page .keyVisual__container {
  padding-bottom: 190px;
  justify-content: flex-end;
}
.keyVisual__container {
  margin: 0 auto;
  padding: 0 12.5px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.keyVisual__title {
  font-size: 59px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 100%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  font-style: italic;
}
.keyVisual__title.first-block {
  margin-bottom: 5px;
}
.keyVisual__title.second-block {
  margin-bottom: 5px;
  padding-left: 12px;
  display: flex;
}
.keyVisual__title span {
  display: block;
}
.keyVisual__title span.caption {
  font-family: "Allerta Stencil", sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 117%;
  color: #fff;
  font-style: normal;
  text-align: right;
}
.keyVisual__title span.outlined {
  margin-left: 6px;
  padding-left: 6px;
  -webkit-text-stroke: 2px #EBFF01;
  color: transparent;
  position: relative;
}
.keyVisual__title span.outlined:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 2px;
  height: 52.5px;
  background-color: #EBFF01;
}
.keyVisual__jpTxt {
  margin-top: 10px;
  margin-left: 0;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #fff;
}
.keyVisual__scrollElem {
  position: absolute;
  bottom: 38px;
  left: -20px;
  width: 97px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  transform: rotate(90deg);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 150%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  overflow: hidden;
}
.keyVisual__scrollElem:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.keyVisual__scrollElem:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 22px;
  height: 2px;
  background: #EBFF01;
  animation: scrollBar 2.8s 0.5s infinite;
}

/*====================================================================
KV Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .keyVisual {
    min-height: 133.3333333333vw;
  }
  .keyVisual.front-page:after {
    bottom: 61.6vw;
    left: -2.6666666667vw;
    height: 69.0666666667vw;
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 50.6666666667vw;
  }
  .keyVisual__container {
    padding: 0 3.3333333333vw;
  }
  .keyVisual__title {
    font-size: 15.7333333333vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 1.3333333333vw;
  }
  .keyVisual__title.second-block {
    margin-bottom: 1.3333333333vw;
    padding-left: 3.2vw;
  }
  .keyVisual__title span.caption {
    font-size: 2.1333333333vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 1.6vw;
    padding-left: 1.6vw;
    -webkit-text-stroke: 0.5333333333vw #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 1.3333333333vw;
    width: 0.5333333333vw;
    height: 14vw;
  }
  .keyVisual__jpTxt {
    margin-top: 2.6666666667vw;
    margin-left: 0;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 10.1333333333vw;
    left: -5.3333333333vw;
    width: 25.8666666667vw;
    height: 5.6vw;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 12.8vw;
    height: 0.5333333333vw;
  }
  .keyVisual__scrollElem:after {
    right: 1.0666666667vw;
    width: 5.8666666667vw;
    height: 0.5333333333vw;
  }
}
/*====================================================================
KV Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .keyVisual {
    min-height: 700px;
  }
  .keyVisual.front-page:after {
    bottom: 0;
    top: auto;
    transform: translateY(0);
    left: -11px;
    width: 859px;
    height: 605px;
    background-size: contain;
    background-image: url(../images/section/kv/float-elems-line.png);
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 97px;
    justify-content: flex-end;
  }
  .keyVisual__container {
    padding: 0 88px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
  }
  .keyVisual__title {
    font-size: 112px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 13px;
  }
  .keyVisual__title.second-block {
    margin-bottom: 24px;
    padding-left: 104px;
  }
  .keyVisual__title span.caption {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 12px;
    padding-left: 12px;
    -webkit-text-stroke: 4px #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 5px;
    width: 4px;
    height: 110px;
  }
  .keyVisual__jpTxt {
    margin-top: 5px;
    margin-left: 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 38px;
    left: 7px;
    width: 97px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 48px;
    height: 2px;
  }
  .keyVisual__scrollElem:after {
    right: 4px;
    width: 22px;
    height: 2px;
  }
}
/*====================================================================
KV Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .keyVisual {
    min-height: 63.6363636364vw;
  }
  .keyVisual.front-page:after {
    left: -1vw;
    width: 78.0909090909vw;
    height: 55vw;
  }
  .keyVisual.front-page .keyVisual__container {
    padding-bottom: 8.8181818182vw;
  }
  .keyVisual__container {
    padding: 0 8vw;
  }
  .keyVisual__title {
    font-size: 10.1818181818vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual__title.first-block {
    margin-bottom: 1.1818181818vw;
  }
  .keyVisual__title.second-block {
    margin-bottom: 2.1818181818vw;
    padding-left: 9.4545454545vw;
  }
  .keyVisual__title span.caption {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 117%;
    color: #fff;
  }
  .keyVisual__title span.outlined {
    margin-left: 1.0909090909vw;
    padding-left: 1.0909090909vw;
    -webkit-text-stroke: 0.3636363636vw #EBFF01;
  }
  .keyVisual__title span.outlined:after {
    left: 0.4545454545vw;
    width: 0.3636363636vw;
    height: 10vw;
  }
  .keyVisual__jpTxt {
    margin-top: 0.4545454545vw;
    margin-left: 1.3636363636vw;
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #fff;
  }
  .keyVisual__scrollElem {
    bottom: 3.4545454545vw;
    left: 0.6363636364vw;
    width: 8.8181818182vw;
    height: 1.9090909091vw;
    font-size: 1.2727272727vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #EBFF01;
  }
  .keyVisual__scrollElem:before {
    width: 4.3636363636vw;
    height: 0.1818181818vw;
  }
  .keyVisual__scrollElem:after {
    right: 0.3636363636vw;
    width: 2vw;
    height: 0.1818181818vw;
  }
}
/*====================================================================
hotTopics Section SP
====================================================================*/
.hotTopics {
  margin: 0 auto;
  width: 100%;
  background-color: #000000;
  position: relative;
  z-index: 2;
}
.hotTopics__container {
  margin: 0 auto;
  padding: 20px 0 51.5px;
  max-width: 100%;
  box-sizing: border-box;
}
.hotTopics .section__ttl {
  padding-left: 19.08px;
}
.hotTopics__intr {
  margin: 0 auto;
  width: 100%;
  max-width: max-content;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 150%;
  color: #fff;
  display: block;
  text-align: center;
  position: relative;
}
.hotTopics__intr:after {
  margin-left: -10px;
  content: "MUSICBOOST";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.002em;
  line-height: 150%;
  color: rgba(235, 255, 1, 0.14);
  display: block;
  z-index: 2;
  font-family: "Fjalla One", sans-serif;
  font-style: italic;
  white-space: nowrap;
  text-transform: uppercase;
}
.hotTopics__intr span {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 150%;
  color: #EBFF01;
  display: block;
  z-index: 2;
}
.hotTopics__intr span.bigNum {
  font-size: 40px;
  color: #fff;
  display: inline-block;
  line-height: 1;
}
.hotTopics__intr .floatElem {
  width: 43.5px;
  height: 96.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.hotTopics__intr .floatElem--1 {
  left: -45px;
}
.hotTopics__intr .floatElem--2 {
  right: -45px;
}
.hotTopics .swiper-wrapper {
  transition-timing-function: linear !important;
}
.hotTopics .hotTopicsSlider {
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.hotTopics .hotTopicsSlider--1--sp {
  margin-top: 31.69px;
}
.hotTopics .hotTopicsSlider--2--sp {
  margin-top: 28.5px;
}
.hotTopics__itm {
  padding-bottom: 4px;
  width: 100%;
  max-width: 109px;
  position: relative;
}
.hotTopics__itm.slide--1 img {
  width: 94.5px;
}
.hotTopics__itm.slide--2 img {
  width: 94.5px;
}
.hotTopics__itm.slide--3 img {
  width: 99px;
}
.hotTopics__itm.slide--4 img {
  width: 90px;
}
.hotTopics__itm.slide--5 img {
  width: 100%;
}
.hotTopics__itm.slide--6 img {
  width: 101px;
}
.hotTopics__itm.slide--7 img {
  width: 74.5px;
}
.hotTopics__itm.slide--8 img {
  width: 100%;
}
.hotTopics__itm.slide--9 img {
  width: 98px;
}
.hotTopics__itm.slide--10 img {
  width: 96.5px;
}
.hotTopics__itm.slide--11 img {
  width: 100%;
}
.hotTopics__itm.slide--12 img {
  width: 98.5px;
}
.hotTopics__itm:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 106px;
  background-color: #EBFF01;
}
.hotTopics__itm:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 106px;
  right: auto;
  left: 1px;
  height: 2px;
  background-color: #EBFF01;
}
.hotTopics__itm__ttl {
  margin-left: 3px;
  width: 98.5px;
  min-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #524F4E;
  text-align: center;
  background-color: #EBFF01;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotTopics__itm__imgWrapper {
  margin-top: -9px;
  padding: 0 1.5px;
  width: 104.5px;
  min-height: 104.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
}
.hotTopics__itm__img {
  width: 100%;
}
.hotTopics__andMore {
  margin: 37px auto 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: #fff;
  text-align: center;
}

/*====================================================================
hotTopics SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .hotTopics__container {
    padding: 5.3333333333vw 0 13.7333333333vw;
  }
  .hotTopics .section__ttl {
    padding-left: 5.088vw;
  }
  .hotTopics__intr {
    font-size: 5.3333333333vw;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 150%;
    color: #fff;
  }
  .hotTopics__intr:after {
    margin-left: -2.6666666667vw;
    font-size: 14.9333333333vw;
    font-weight: 900;
    letter-spacing: -0.002em;
    line-height: 150%;
    color: rgba(235, 255, 1, 0.14);
  }
  .hotTopics__intr span {
    font-size: 7.4666666667vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .hotTopics__intr span.bigNum {
    font-size: 10.6666666667vw;
  }
  .hotTopics__intr .floatElem {
    width: 11.6vw;
    height: 25.7333333333vw;
  }
  .hotTopics__intr .floatElem--1 {
    left: -12vw;
  }
  .hotTopics__intr .floatElem--2 {
    right: -12vw;
  }
  .hotTopics .hotTopicsSlider {
    margin: 4.2666666667vw auto 0;
    max-width: 100%;
  }
  .hotTopics .hotTopicsSlider--1--sp {
    margin-top: 8.452vw;
  }
  .hotTopics .hotTopicsSlider--2--sp {
    margin-top: 7.6vw;
  }
  .hotTopics__itm {
    padding-bottom: 1.0666666667vw;
    max-width: 29.0666666667vw;
  }
  .hotTopics__itm.slide--1 img {
    width: 25.2vw;
  }
  .hotTopics__itm.slide--2 img {
    width: 25.2vw;
  }
  .hotTopics__itm.slide--3 img {
    width: 26.4vw;
  }
  .hotTopics__itm.slide--4 img {
    width: 24vw;
  }
  .hotTopics__itm.slide--5 img {
    width: 100%;
  }
  .hotTopics__itm.slide--6 img {
    width: 26.9333333333vw;
  }
  .hotTopics__itm.slide--7 img {
    width: 19.8666666667vw;
  }
  .hotTopics__itm.slide--8 img {
    width: 100%;
  }
  .hotTopics__itm.slide--9 img {
    width: 26.1333333333vw;
  }
  .hotTopics__itm.slide--10 img {
    width: 25.7333333333vw;
  }
  .hotTopics__itm.slide--11 img {
    width: 100%;
  }
  .hotTopics__itm.slide--12 img {
    width: 26.2666666667vw;
  }
  .hotTopics__itm:before {
    width: 0.5333333333vw;
    height: 28.2666666667vw;
  }
  .hotTopics__itm:after {
    width: 28.2666666667vw;
    left: 0.2666666667vw;
    height: 0.5333333333vw;
  }
  .hotTopics__itm__ttl {
    margin-left: 0.8vw;
    width: 26.2666666667vw;
    min-height: 4.2666666667vw;
    font-size: 2.6666666667vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #524F4E;
  }
  .hotTopics__itm__imgWrapper {
    margin-top: -2.4vw;
    padding: 0 0.4vw;
    width: 27.8666666667vw;
    min-height: 27.8666666667vw;
  }
  .hotTopics__andMore {
    margin: 9.8666666667vw auto 0;
    font-size: 5.3333333333vw;
  }
}
/*====================================================================
Hot Topics Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .hotTopics__container {
    padding: 20px 0 30px;
    max-width: 100%;
  }
  .hotTopics .section__ttl {
    margin: 0 auto;
    padding-left: 95px;
    width: 1100px;
  }
  .hotTopics__intr {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 150%;
    color: #fff;
  }
  .hotTopics__intr:after {
    font-size: 72px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: rgba(235, 255, 1, 0.14);
    font-family: "Fjalla One", sans-serif;
    z-index: 1;
  }
  .hotTopics__intr span {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .hotTopics__intr span.bigNum {
    font-size: 40px;
  }
  .hotTopics__intr .floatElem {
    width: 57px;
    height: 126px;
  }
  .hotTopics__intr .floatElem--1 {
    left: -49px;
  }
  .hotTopics__intr .floatElem--2 {
    right: -49px;
  }
  .hotTopics .hotTopicsSlider {
    margin: 47px auto 0;
    max-width: 100%;
  }
  .hotTopics .hotTopicsSlider--1--sp, .hotTopics .hotTopicsSlider--2--sp {
    display: none;
  }
  .hotTopics__itm {
    padding-bottom: 6px;
    max-width: 120px;
  }
  .hotTopics__itm.slide--1 img {
    width: 103px;
  }
  .hotTopics__itm.slide--2 img {
    width: 103px;
  }
  .hotTopics__itm.slide--3 img {
    width: 109px;
  }
  .hotTopics__itm.slide--4 img {
    width: 99px;
  }
  .hotTopics__itm.slide--5 img {
    width: 108px;
  }
  .hotTopics__itm.slide--6 img {
    width: 111px;
  }
  .hotTopics__itm.slide--7 img {
    width: 81px;
  }
  .hotTopics__itm.slide--8 img {
    width: 114px;
  }
  .hotTopics__itm.slide--9 img {
    width: 107px;
  }
  .hotTopics__itm.slide--10 img {
    width: 106px;
  }
  .hotTopics__itm.slide--11 img {
    width: 112px;
  }
  .hotTopics__itm.slide--12 img {
    width: 108px;
  }
  .hotTopics__itm:before {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 116px;
  }
  .hotTopics__itm:after {
    right: 0;
    width: 118px;
    height: 2px;
  }
  .hotTopics__itm__ttl {
    margin-left: 3px;
    width: 108px;
    min-height: 18px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #524F4E;
  }
  .hotTopics__itm__imgWrapper {
    margin-top: -9px;
    padding: 0 3px;
    width: 114px;
    min-height: 114px;
  }
  .hotTopics__itm__img {
    width: 100%;
  }
  .hotTopics__andMore {
    margin: 40.2px auto 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
Hot Topics Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .hotTopics__container {
    padding: 1.8181818182vw 0 2.7272727273vw;
  }
  .hotTopics .section__ttl {
    padding-left: 8.6363636364vw;
    width: 100vw;
  }
  .hotTopics__intr {
    font-size: 2.3636363636vw;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 150%;
    color: #fff;
  }
  .hotTopics__intr:after {
    font-size: 6.5454545455vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: rgba(235, 255, 1, 0.14);
    font-family: "Fjalla One", sans-serif;
    z-index: 1;
  }
  .hotTopics__intr span {
    font-size: 3.6363636364vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .hotTopics__intr span.bigNum {
    font-size: 3.6363636364vw;
  }
  .hotTopics__intr .floatElem {
    width: 5.1818181818vw;
    height: 11.4545454545vw;
  }
  .hotTopics__intr .floatElem--1 {
    left: -4.4545454545vw;
  }
  .hotTopics__intr .floatElem--2 {
    right: -4.4545454545vw;
  }
  .hotTopics .hotTopicsSlider {
    margin: 4.2727272727vw auto 0;
    max-width: 100%;
  }
  .hotTopics .hotTopicsSlider--1--sp, .hotTopics .hotTopicsSlider--2--sp {
    display: none;
  }
  .hotTopics__itm {
    padding-bottom: 0.5454545455vw;
    max-width: 10.9090909091vw;
  }
  .hotTopics__itm.slide--1 img {
    width: 9.3636363636vw;
  }
  .hotTopics__itm.slide--2 img {
    width: 9.3636363636vw;
  }
  .hotTopics__itm.slide--3 img {
    width: 9.9090909091vw;
  }
  .hotTopics__itm.slide--4 img {
    width: 9vw;
  }
  .hotTopics__itm.slide--5 img {
    width: 9.8181818182vw;
  }
  .hotTopics__itm.slide--6 img {
    width: 10.0909090909vw;
  }
  .hotTopics__itm.slide--7 img {
    width: 7.3636363636vw;
  }
  .hotTopics__itm.slide--8 img {
    width: 10.3636363636vw;
  }
  .hotTopics__itm.slide--9 img {
    width: 9.7272727273vw;
  }
  .hotTopics__itm.slide--10 img {
    width: 9.6363636364vw;
  }
  .hotTopics__itm.slide--11 img {
    width: 10.1818181818vw;
  }
  .hotTopics__itm.slide--12 img {
    width: 9.8181818182vw;
  }
  .hotTopics__itm:before {
    bottom: 0vw;
    right: 0vw;
    width: 0.1818181818vw;
    height: 10.5454545455vw;
  }
  .hotTopics__itm:after {
    right: 0vw;
    width: 10.7272727273vw;
    height: 0.1818181818vw;
  }
  .hotTopics__itm__ttl {
    margin-left: 0.2727272727vw;
    width: 9.8181818182vw;
    min-height: 1.6363636364vw;
    font-size: 1vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #524F4E;
  }
  .hotTopics__itm__imgWrapper {
    margin-top: -0.8181818182vw;
    padding: 0vw 0.2727272727vw;
    width: 10.3636363636vw;
    min-height: 10.3636363636vw;
  }
  .hotTopics__itm__img {
    width: 100%;
  }
  .hotTopics__andMore {
    margin: 3.6545454545vw auto 0;
    font-size: 1.8181818182vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
ABOUT Section SP
====================================================================*/
.about {
  margin: 0 auto;
  width: 100%;
  position: relative;
  background-color: #1A1A19;
}
.about:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 25, 0.9);
  z-index: 1;
}
.about__scroller {
  position: absolute;
  top: 40px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.about__scroller__row {
  overflow: visible;
  white-space: nowrap;
}
.about__scroller__row:first-child .about__scroller__track span {
  line-height: 82%;
}
.about__scroller__row:nth-child(4) {
  margin-top: 80px;
}
.about__scroller__track {
  display: flex;
  width: max-content;
  gap: 0 50px;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.about__scroller__track span {
  font-size: 265px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 76%;
  color: #EBFF01;
  font-family: "Bebas Neue", sans-serif;
  font-style: italic;
  white-space: nowrap;
  text-transform: uppercase;
}
.about {
  /* ODD ROWS — LEFT ➡ RIGHT */
}
.about__scroller__row:nth-child(odd) .about__scroller__track {
  animation-name: scroll-right;
}
.about {
  /* EVEN ROWS — RIGHT ⬅ LEFT */
}
.about__scroller__row:nth-child(even) .about__scroller__track {
  animation-name: scroll-left;
}
.about {
  /* KEYFRAMES */
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.about__floatImg {
  position: absolute;
  z-index: 2;
}
.about__floatImg--1 {
  margin: auto;
  top: 83.5px;
  right: auto;
  left: 20px;
  width: 100%;
  max-width: 297px;
}
.about__floatImg--2 {
  top: 780.5px;
  left: auto;
  right: -20px;
  width: 295px;
}
.about .siteContainer {
  padding: 50px 0 56px 0;
  max-width: calc(100% - 40px);
  position: relative;
  z-index: 3;
}
.about .section__ttl {
  line-height: 1.2;
}
.about__container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}
.about__block {
  width: 100%;
}
.about__block--1 {
  margin-top: 99px;
  margin-bottom: 125px;
  width: 100%;
}
.about__block--1 img {
  margin-bottom: 17.5px;
  width: 100%;
  max-width: 331.5px;
}
.about__block--2 {
  margin-left: 0px;
  width: 100%;
}
.about__block--2 img {
  margin-bottom: 20.5px;
  width: 100%;
  max-width: 325px;
}
.about__contents {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 170%;
  color: #fff;
}
.about__contents span {
  background: linear-gradient(to right, #EBFF01 0%, #EBFF01 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left center;
  transition: all 1s ease-out;
  color: #fff;
}
.about__contents span.is-visible {
  background-size: 100% 100%;
  color: #000000;
}

/*====================================================================
ABOUT Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 390px) {
  .about__scroller {
    top: 10.6666666667vw;
  }
  .about__scroller__row:nth-child(4) {
    margin-top: 21.3333333333vw;
  }
  .about__scroller__track {
    gap: 0 13.3333333333vw;
  }
  .about__scroller__track span {
    font-size: 68vw;
  }
  .about__floatImg--1 {
    top: 22.2666666667vw;
    left: 5.3333333333vw;
    max-width: 79.2vw;
  }
  .about__floatImg--2 {
    top: 208.1333333333vw;
    right: -5.3333333333vw;
    width: 78.6666666667vw;
  }
  .about .siteContainer {
    padding: 13.3333333333vw 0 14.9333333333vw 0;
    max-width: calc(100% - 10.6666666667vw);
  }
  .about__block--1 {
    margin-top: 26.4vw;
    margin-bottom: 33.3333333333vw;
  }
  .about__block--1 img {
    margin-bottom: 4.6666666667vw;
    max-width: 88.4vw;
  }
  .about__block--2 {
    margin-left: 0vw;
  }
  .about__block--2 img {
    margin-bottom: 5.4666666667vw;
    max-width: 86.6666666667vw;
  }
  .about__contents {
    font-size: 4vw;
  }
}
/*====================================================================
ABOUT Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .about__scroller {
    top: 40px;
  }
  .about__scroller__row:first-child .about__scroller__track span {
    line-height: 84%;
  }
  .about__scroller__row:nth-child(4) {
    margin-top: 0;
  }
  .about__scroller__track {
    gap: 0 50px;
  }
  .about__scroller__track span {
    font-size: 336px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 84%;
    color: #EBFF01;
  }
  .about__floatImg--1 {
    margin: 0;
    top: 93px;
    right: 0;
    left: auto;
    max-width: 563px;
  }
  .about__floatImg--2 {
    top: 695px;
    left: 6px;
    width: 450px;
  }
  .about .siteContainer {
    padding: 56px 0 72px 100px;
    max-width: 1100px;
  }
  .about__container {
    padding: 0 85px 0 50px;
  }
  .about__block--1 {
    margin-top: 0;
    margin-bottom: 148px;
    width: 100%;
  }
  .about__block--1 img {
    margin-bottom: 27px;
    max-width: 406px;
  }
  .about__block--2 {
    margin-bottom: 0;
    margin-left: 176px;
    width: 100%;
  }
  .about__block--2 img {
    margin-bottom: 41px;
    max-width: 519px;
  }
  .about__contents {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 170%;
    color: #fff;
  }
}
/*====================================================================
ABOUT Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .about__scroller {
    top: 3.6363636364vw;
  }
  .about__scroller__track {
    gap: 0 4.5454545455vw;
  }
  .about__scroller__track span {
    font-size: 30.5454545455vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 84%;
    color: #EBFF01;
  }
  .about__floatImg--1 {
    top: 8.4545454545vw;
    width: 51.1818181818vw;
  }
  .about__floatImg--2 {
    top: 63.1818181818vw;
    left: 0.5454545455vw;
    width: 40.9090909091vw;
  }
  .about .siteContainer {
    padding: 5.0909090909vw 0 6.5454545455vw 9.0909090909vw;
    max-width: 100vw;
  }
  .about__container {
    padding: 0 7.7272727273vw 0 4.5454545455vw;
  }
  .about__block--1 {
    margin-bottom: 13.4545454545vw;
    width: 100%;
  }
  .about__block--1 img {
    margin-bottom: 2.4545454545vw;
    width: 36.9090909091vw;
  }
  .about__block--2 {
    margin-left: 16vw;
    width: 100%;
  }
  .about__block--2 img {
    margin-bottom: 3.7272727273vw;
    width: 47.1818181818vw;
  }
  .about__contents {
    font-size: 2.1818181818vw;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 170%;
    color: #fff;
  }
}
/*====================================================================
features Section SP
====================================================================*/
.features {
  margin: 0 auto;
  width: 100%;
  background-color: #524F4E;
}
.features__container {
  margin: auto;
  padding: 70px 0 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
  max-width: 79%;
  gap: 16px;
  box-sizing: border-box;
}
.features .section__ttl {
  position: absolute;
  top: 22px;
  left: -22px;
}
.features__displayImg {
  width: 100%;
  height: 46vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/section/features/img-main-mob.png);
}
.features__contents {
  padding-top: 0;
  width: 100%;
  display: block;
}
.features__itms {
  padding: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 13.5px;
}
.features__itm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
.features__itm:nth-child(1) .features__itm__num img {
  height: 21.5px;
}
.features__itm__num {
  margin-right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.features__itm__num img {
  width: 31px;
  height: 21.5px;
  object-fit: contain;
}
.features__itm__ttl {
  vertical-align: middle;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 100%;
  color: #EBFF01;
}
.features__itm__desc {
  margin-top: 8px;
  padding-bottom: 17.5px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #d9d9d9;
  border-bottom: 1px solid #767575;
}

/*====================================================================
features Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .features__container {
    padding: 18.6666666667vw 0 0;
    gap: 4.2666666667vw;
  }
  .features .section__ttl {
    top: 5.8666666667vw;
    left: -5.8666666667vw;
  }
  .features__displayImg {
    width: 78.1333333333vw;
  }
  .features__itms {
    padding: 0 0 8.5333333333vw;
    gap: 3.6vw;
  }
  .features__itm:nth-child(1) .features__itm__num img {
    height: 5.7333333333vw;
  }
  .features__itm__num {
    margin-right: 2.9333333333vw;
  }
  .features__itm__num img {
    width: 8.2666666667vw;
    height: 5.7333333333vw;
  }
  .features__itm__ttl {
    font-size: 4.2666666667vw;
  }
  .features__itm__desc {
    margin-top: 2.1333333333vw;
    padding-bottom: 4.6666666667vw;
    font-size: 3.7333333333vw;
    border-bottom: 0.2666666667vw solid #767575;
  }
}
/*====================================================================
features Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .features__container {
    padding-top: 0;
    max-width: 1100px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 124px;
  }
  .features .section__ttl {
    position: relative;
    top: auto;
    left: auto;
  }
  .features__displayImg {
    width: 441px;
    height: auto;
    background-image: url(../images/section/features/img-main.png);
  }
  .features__contents {
    padding-top: 43px;
    width: 450px;
  }
  .features__itms {
    padding: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 18px;
  }
  .features__itm:nth-child(1) .features__itm__num img {
    height: 30px;
  }
  .features__itm:nth-child(1) .features__itm__desc {
    margin-top: 13px;
  }
  .features__itm__num {
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .features__itm__num img {
    width: 45px;
    height: 48px;
  }
  .features__itm__ttl {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 100%;
    color: #EBFF01;
  }
  .features__itm__desc {
    margin-top: 5px;
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #d9d9d9;
    border-bottom: 2px solid #767575;
  }
}
/*====================================================================
features Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .features__container {
    gap: 11.2727272727vw;
    max-width: 100%;
  }
  .features__displayImg {
    width: 40.0909090909vw;
  }
  .features__contents {
    padding-top: 3.9090909091vw;
    width: 40.9090909091vw;
  }
  .features__itms {
    padding-bottom: 4.5454545455vw;
    gap: 1.6363636364vw;
  }
  .features__itm:nth-child(1) .features__itm__num img {
    height: 2.7272727273vw;
  }
  .features__itm:nth-child(1) .features__itm__desc {
    margin-top: 1.1818181818vw;
  }
  .features__itm__num {
    margin-right: 1vw;
  }
  .features__itm__num img {
    width: 4.0909090909vw;
    height: 4.3636363636vw;
  }
  .features__itm__ttl {
    font-size: 2.1818181818vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 100%;
    color: #EBFF01;
  }
  .features__itm__desc {
    margin-top: 0.4545454545vw;
    padding-bottom: 2.7272727273vw;
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #d9d9d9;
    border-bottom: 0.1818181818vw solid #767575;
  }
}
/*====================================================================
pickup song Section SP
====================================================================*/
.pickupSongSlider {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  border: 7px solid #524F4E;
  box-sizing: border-box;
  position: relative;
}
.pickupSongSlider:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 239px;
  background-color: #EBFF01;
  z-index: 1;
}
.pickupSongSlider__container {
  padding: 53px 0 0 12px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.pickupSongSlider .splide {
  padding-bottom: 118px;
}
.pickupSongSlider .video_playBtn {
  margin: auto;
  width: 176px;
  display: block;
}
.pickupSongSlider .section__ttl {
  color: #1A1A19;
}
.pickupSongSlider__poster {
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.pickupSongSlider__poster .youtube_start_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.pickupSongSlider__itm__tag {
  margin-bottom: 12.5px;
  padding: 0 5px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: 22px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #EBFF01;
  background-color: #767575;
  box-sizing: border-box;
}
.pickupSongSlider__itm__subTtl {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
}
.pickupSongSlider__itm__ttl {
  margin-bottom: 12.5px;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
  border-bottom: 2px solid #d9d9d9;
}
.pickupSongSlider__itm__name {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #767575;
}
.pickupSongSlider__itm__cap {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #767575;
}
.pickupSongSlider__itm__cap img {
  width: 9px;
  vertical-align: baseline;
  margin-right: 1px;
}
.pickupSongSlider__label {
  margin: -56px 0 0 0;
  padding: 0 44px;
  width: 100%;
  display: block;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}
.pickupSongSlider .splide__arrows {
  position: absolute;
  top: auto;
  bottom: 48px;
  left: 0;
  font-size: 0;
}
.pickupSongSlider .splide__arrow {
  padding: 0;
  border: 0;
  font-size: 0;
  width: 44px;
  height: 44px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pickupSongSlider .splide__arrow--prev {
  background-image: url(../images/common/img-splide-arrow-left-v1.png);
}
.pickupSongSlider .splide__arrow--prev:disabled {
  background-image: url(../images/common/img-splide-arrow-left-disabled.png);
}
.pickupSongSlider .splide__arrow--next {
  background-image: url(../images/common/img-splide-arrow-right-v1.png);
}
.pickupSongSlider .splide__arrow--next:disabled {
  background-image: url(../images/common/img-splide-arrow-right-disabled.png);
}
.pickupSongSlider .splide__arrow:first-child {
  margin-right: 10px;
}
.pickupSongSlider .splide__pagination {
  display: flex !important;
  position: absolute;
  bottom: 64px;
  left: auto;
  right: 20px;
  gap: 8px;
}
.pickupSongSlider .splide__pagination li {
  width: 12px;
  height: 12px;
  position: relative;
}
.pickupSongSlider .splide__pagination li button {
  position: absolute;
  top: 0;
  left: 0;
}
.pickupSongSlider .splide__pagination li .splide__pagination__page {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border: 0;
}
.pickupSongSlider .splide__pagination li .splide__pagination__page.is-active {
  background-color: #1A1A19;
}

/*====================================================================
pickupSongSlider Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .pickupSongSlider {
    border: 1.8666666667vw solid #524F4E;
  }
  .pickupSongSlider:after {
    height: 63.7333333333vw;
  }
  .pickupSongSlider__container {
    padding: 14.1333333333vw 0 0 3.2vw;
  }
  .pickupSongSlider .splide {
    padding-bottom: 31.4666666667vw;
  }
  .pickupSongSlider .video_playBtn {
    width: 46.9333333333vw;
  }
  .pickupSongSlider__poster {
    margin-bottom: 5.3333333333vw;
  }
  .pickupSongSlider__itm__tag {
    margin-bottom: 3.3333333333vw;
    padding: 0 1.3333333333vw;
    min-height: 5.8666666667vw;
    font-size: 3.2vw;
  }
  .pickupSongSlider__itm__subTtl {
    margin-bottom: 0.8vw;
    font-size: 3.7333333333vw;
  }
  .pickupSongSlider__itm__ttl {
    margin-bottom: 3.3333333333vw;
    padding-bottom: 3.2vw;
    font-size: 6.4vw;
    border-bottom: 0.5333333333vw solid #d9d9d9;
  }
  .pickupSongSlider__itm__name {
    margin-bottom: 1.0666666667vw;
    font-size: 3.7333333333vw;
  }
  .pickupSongSlider__itm__cap {
    font-size: 3.7333333333vw;
  }
  .pickupSongSlider__itm__cap img {
    width: 2.4vw;
    margin-right: 0.2666666667vw;
  }
  .pickupSongSlider .splide__arrows {
    bottom: 12.8vw;
  }
  .pickupSongSlider .splide__arrow {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
  .pickupSongSlider .splide__arrow:first-child {
    margin-right: 2.6666666667vw;
  }
  .pickupSongSlider .splide__pagination {
    bottom: 17.0666666667vw;
    right: 5.3333333333vw;
    gap: 2.1333333333vw;
  }
  .pickupSongSlider .splide__pagination li {
    width: 3.2vw;
    height: 3.2vw;
  }
}
/*====================================================================
pickup song Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .pickupSongSlider {
    border: 10px solid #524F4E;
  }
  .pickupSongSlider:after {
    height: 364px;
  }
  .pickupSongSlider__container {
    margin: 0 0 0 auto;
    padding: 44px 0 0 100px;
    max-width: 1500px;
  }
  .pickupSongSlider .splide {
    padding-bottom: 110px;
  }
  .pickupSongSlider .video_playBtn {
    width: 51.85%;
    width: 237px;
  }
  .pickupSongSlider__poster {
    margin-bottom: 19px;
  }
  .pickupSongSlider__itm__tag {
    margin-bottom: 13px;
    padding: 0 5px;
    min-height: 22px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .pickupSongSlider__itm__subTtl {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .pickupSongSlider__itm__ttl {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
    border-bottom: 2px solid #d9d9d9;
  }
  .pickupSongSlider__itm__name {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #767575;
  }
  .pickupSongSlider__itm__cap {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #767575;
  }
  .pickupSongSlider__itm__cap img {
    width: 9px;
    margin-right: 1px;
  }
  .pickupSongSlider .splide__arrows {
    bottom: 44px;
  }
  .pickupSongSlider .splide__arrow {
    width: 43px;
    height: 43px;
  }
  .pickupSongSlider .splide__arrow:first-child {
    margin-right: 9px;
  }
  .pickupSongSlider .splide__pagination {
    bottom: 55px;
    right: auto;
    left: 375px;
    gap: 8px;
  }
  .pickupSongSlider .splide__pagination li {
    width: 14px;
    height: 14px;
  }
}
/*====================================================================
pickup song Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .pickupSongSlider {
    border: 0.9090909091vw solid #524F4E;
  }
  .pickupSongSlider:after {
    height: 33.0909090909vw;
  }
  .pickupSongSlider__container {
    padding: 4vw 0 0 9.0909090909vw;
    max-width: 136.3636363636vw;
  }
  .pickupSongSlider .splide {
    padding-bottom: 10vw;
  }
  .pickupSongSlider .video_playBtn {
    width: 21.5454545455vw;
  }
  .pickupSongSlider__poster {
    margin-bottom: 1.7272727273vw;
  }
  .pickupSongSlider__itm__tag {
    margin-bottom: 1.1818181818vw;
    padding: 0 0.4545454545vw;
    min-height: 2vw;
    font-size: 1.0909090909vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .pickupSongSlider__itm__subTtl {
    margin-bottom: 0.2727272727vw;
    font-size: 1.2727272727vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .pickupSongSlider__itm__ttl {
    margin-bottom: 1.2727272727vw;
    padding-bottom: 1.0909090909vw;
    font-size: 2.1818181818vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
    border-bottom: 0.1818181818vw solid #d9d9d9;
  }
  .pickupSongSlider__itm__name {
    margin-bottom: 0.3636363636vw;
    font-size: 1.2727272727vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #767575;
  }
  .pickupSongSlider__itm__cap {
    font-size: 1.2727272727vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #767575;
  }
  .pickupSongSlider__itm__cap img {
    width: 0.8181818182vw;
    margin-right: 0.0909090909vw;
  }
  .pickupSongSlider__label {
    margin-top: -5.0909090909vw;
    padding: 0 4vw;
  }
  .pickupSongSlider .splide__arrows {
    bottom: 4vw;
  }
  .pickupSongSlider .splide__arrow {
    width: 3.9090909091vw;
    height: 3.9090909091vw;
  }
  .pickupSongSlider .splide__arrow:first-child {
    margin-right: 0.8181818182vw;
  }
  .pickupSongSlider .splide__pagination {
    bottom: 5vw;
    left: 34.0909090909vw;
    gap: 0.7272727273vw;
  }
  .pickupSongSlider .splide__pagination li {
    width: 1.2727272727vw;
    height: 1.2727272727vw;
  }
}
/*====================================================================
interviewSlider Section SP
====================================================================*/
.interviewSlider {
  margin: 0 auto;
  width: 100%;
  background-color: #524F4E;
  box-sizing: border-box;
  position: relative;
}
.interviewSlider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 374px;
  background-color: #EBFF01;
  z-index: 1;
}
.interviewSlider.singlesPage {
  overflow-x: hidden;
}
.interviewSlider.singlesPage .interviewSlider__container {
  padding-left: 28px;
}
.interviewSlider.singlesPage .splide__track {
  overflow: visible;
}
.interviewSlider.singlesPage .splide__slide {
  overflow: hidden;
}
.interviewSlider__container {
  padding: 29.5px 0 52px 20px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.interviewSlider__viewBtn {
  padding: 0 5px;
  display: block;
  position: absolute;
  padding: 0 5px;
  top: 63px;
  right: 20px;
  width: max-content;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 36px;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  box-sizing: border-box;
  border-bottom: 2px solid #EBFF01;
  transition: all 0.6s ease-in-out 0s;
}
.interviewSlider__viewBtn:hover {
  opacity: 0.7;
}
.interviewSlider__viewBtn {
  z-index: 2;
}
.interviewSlider__viewBtn.top {
  width: 76px;
}
.interviewSlider .splide {
  padding-bottom: 63px;
}
.interviewSlider__poster {
  height: 72.8vw;
  background-color: #aaa;
  display: block;
  position: relative;
}
.interviewSlider__poster img {
  height: 100%;
  object-fit: cover;
}
.interviewSlider__itm__contents {
  background-color: #fff;
  padding: 20px 20px;
  height: 100%;
  box-sizing: border-box;
}
.interviewSlider__itm__tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.interviewSlider__itm__tag {
  margin-bottom: 10.5px;
  padding: 0 5px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: 22px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #EBFF01;
  background-color: #767575;
  box-sizing: border-box;
}
.interviewSlider__itm__ttl {
  margin-bottom: 4.5px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.interviewSlider__itm__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}
.interviewSlider .splide__arrows {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  font-size: 0;
}
.interviewSlider .splide__arrow {
  padding: 0;
  border: 0;
  font-size: 0;
  width: 44px;
  height: 44px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.interviewSlider .splide__arrow--prev {
  background-image: url(../images/common/img-splide-arrow-left-v1.png);
}
.interviewSlider .splide__arrow--prev:disabled {
  background-image: url(../images/common/img-splide-arrow-left-disabled.png);
}
.interviewSlider .splide__arrow--next {
  background-image: url(../images/common/img-splide-arrow-right-v1.png);
}
.interviewSlider .splide__arrow--next:disabled {
  background-image: url(../images/common/img-splide-arrow-right-disabled.png);
}
.interviewSlider .splide__arrow:first-child {
  margin-right: 10px;
}
.interviewSlider .splide__pagination {
  display: flex !important;
  position: absolute;
  bottom: 16px;
  left: auto;
  right: 20px;
  gap: 8px;
}
.interviewSlider .splide__pagination li {
  width: 12px;
  height: 12px;
  position: relative;
}
.interviewSlider .splide__pagination li button {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}
.interviewSlider .splide__pagination li .splide__pagination__page {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border: 0;
}
.interviewSlider .splide__pagination li .splide__pagination__page.is-active {
  background-color: #1A1A19;
}
.interviewSlider__moreBtn {
  margin: 20px 20px 0 auto;
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 150%;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  text-align: center;
  background-color: #524F4E;
  border: 0;
  position: relative;
  transition: all 0.6s ease-in-out 0s;
  cursor: pointer;
}

/*====================================================================
interviewSlider Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .interviewSlider.singlesPage .interviewSlider__container {
    padding-left: 5.6vw;
  }
  .interviewSlider:after {
    height: 99.7333333333vw;
  }
  .interviewSlider__container {
    padding: 7.8666666667vw 0 13.8666666667vw 5.3333333333vw;
  }
  .interviewSlider__viewBtn {
    padding: 0 1.3333333333vw;
    top: 16.8vw;
    right: 5.3333333333vw;
    font-size: 5.3333333333vw;
    border-bottom: 0.5333333333vw solid #EBFF01;
  }
  .interviewSlider__viewBtn.top {
    width: 20.2666666667vw;
  }
  .interviewSlider .splide {
    padding-bottom: 16.8vw;
  }
  .interviewSlider__itm__contents {
    padding: 5.3333333333vw 5.3333333333vw;
  }
  .interviewSlider__itm__tags {
    gap: 2.6666666667vw;
  }
  .interviewSlider__itm__tag {
    margin-bottom: 2.8vw;
    padding: 0 1.3333333333vw;
    min-height: 5.8666666667vw;
    font-size: 3.2vw;
  }
  .interviewSlider__itm__ttl {
    margin-bottom: 1.2vw;
    font-size: 6.4vw;
  }
  .interviewSlider__itm__name {
    font-size: 4.2666666667vw;
  }
  .interviewSlider .splide__arrow {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
  .interviewSlider .splide__arrow:first-child {
    margin-right: 2.6666666667vw;
  }
  .interviewSlider .splide__pagination {
    bottom: 4.2666666667vw;
    right: 5.3333333333vw;
    gap: 2.1333333333vw;
  }
  .interviewSlider .splide__pagination li {
    width: 3.2vw;
    height: 3.2vw;
  }
  .interviewSlider__moreBtn {
    margin: 5.3333333333vw 5.3333333333vw 0 auto;
    height: 13.3333333333vw;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
interviewSlider Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .interviewSlider:after {
    height: 530px;
  }
  .interviewSlider.singlesPage .interviewSlider__container {
    padding-left: 100px;
    overflow-x: hidden;
  }
  .interviewSlider.singlesPage .splide__track {
    overflow: hidden;
  }
  .interviewSlider.singlesPage .splide__slide {
    overflow: hidden;
  }
  .interviewSlider__viewBtn {
    top: 95px;
    right: 100px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 36px;
    color: #EBFF01;
    border-bottom: 2px solid #EBFF01;
  }
  .interviewSlider__viewBtn.top {
    width: 76px;
  }
  .interviewSlider__container {
    margin: 0 0 0 auto;
    padding: 44px 0 80px 90px;
    max-width: 1500px;
  }
  .interviewSlider .splide {
    padding-bottom: 72px;
  }
  .interviewSlider .splide .splide__slide {
    height: 100%;
  }
  .interviewSlider__poster {
    height: 237px;
  }
  .interviewSlider__itm__contents {
    padding: 20px 20px;
  }
  .interviewSlider__itm__tags {
    gap: 10px;
  }
  .interviewSlider__itm__tag {
    margin-bottom: 9px;
    padding: 0 5px;
    min-height: 22px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .interviewSlider__itm__ttl {
    margin-bottom: 9px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewSlider__itm__name {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewSlider .splide__arrows {
    bottom: 0;
  }
  .interviewSlider .splide__arrow {
    width: 43px;
    height: 43px;
  }
  .interviewSlider .splide__arrow:first-child {
    margin-right: 9px;
  }
  .interviewSlider .splide__pagination {
    bottom: 15px;
    left: 235px;
    right: auto;
    gap: 8px;
  }
  .interviewSlider .splide__pagination li {
    width: 14px;
    height: 14px;
  }
  .interviewSlider__moreBtn {
    margin: 64px auto 0 0;
    width: 900px;
    height: 89px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
interviewSlider Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .interviewSlider:after {
    height: 48.1818181818vw;
  }
  .interviewSlider.singlesPage .interviewSlider__container {
    padding-left: 9.0909090909vw;
  }
  .interviewSlider__container {
    padding: 4vw 0 7.2727272727vw 9.0909090909vw;
    max-width: 136.3636363636vw;
  }
  .interviewSlider__viewBtn {
    padding: 0 0.4545454545vw;
    top: 8.6363636364vw;
    right: 9.0909090909vw;
    font-size: 1.8181818182vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 30px;
    color: #EBFF01;
    border-bottom: 0.1818181818vw solid #EBFF01;
  }
  .interviewSlider__viewBtn.top {
    width: 6.9090909091vw;
  }
  .interviewSlider .splide {
    padding-bottom: 6.5454545455vw;
  }
  .interviewSlider__poster {
    height: 21.5454545455vw;
  }
  .interviewSlider__itm__contents {
    padding: 1.8181818182vw 1.8181818182vw;
  }
  .interviewSlider__itm__tags {
    gap: 0.9090909091vw;
  }
  .interviewSlider__itm__tag {
    margin-bottom: 0.8181818182vw;
    padding: 0 0.4545454545vw;
    min-height: 2vw;
    font-size: 1.0909090909vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .interviewSlider__itm__ttl {
    margin-bottom: 0.8181818182vw;
    font-size: 2.1818181818vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewSlider__itm__name {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewSlider .splide__arrows {
    bottom: 0;
  }
  .interviewSlider .splide__arrow {
    width: 3.9090909091vw;
    height: 3.9090909091vw;
  }
  .interviewSlider .splide__arrow:first-child {
    margin-right: 0.8181818182vw;
  }
  .interviewSlider .splide__pagination {
    bottom: 1.3636363636vw;
    left: 21.3636363636vw;
    gap: 0.7272727273vw;
  }
  .interviewSlider .splide__pagination li {
    width: 1.2727272727vw;
    height: 1.2727272727vw;
  }
  .interviewSlider__moreBtn {
    margin: 5.8181818182vw auto 0 0;
    width: 81.8181818182vw;
    height: 8.0909090909vw;
    font-size: 2.1818181818vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
partner Section SP
====================================================================*/
.partner {
  margin: 0 auto;
  width: 100%;
  background-color: #524F4E;
  border: 7px solid #524F4E;
  border-bottom: 0;
}
.partner .siteContainer {
  padding-left: 0;
}
.partner__contents {
  margin: auto;
  width: 100%;
  margin-top: 10px;
}
.partner__contentsWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0;
}
.partner__contents {
  background-color: #d9d9d9;
}
.partner__displayImg {
  display: none;
  width: 340px;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/section/partner/img-main.png);
}
.partner__itms {
  padding: 38.5px 0 58px;
  width: 100%;
  max-width: 211px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px;
}
.partner__itm {
  width: 211px;
  position: relative;
}
.partner__itm span {
  width: 205px;
  min-height: 49.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  background-color: #fff;
}
.partner__itm:before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 3px;
  height: 52.5px;
  background-color: #EBFF01;
}
.partner__itm:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 3px;
  width: 205px;
  height: 3px;
  background-color: #EBFF01;
}
.partner__itm:nth-child(1) img {
  width: 174.5px;
}
.partner__itm:nth-child(2) img {
  width: 82px;
}
.partner__itm:nth-child(3) img {
  width: 143.5px;
}
.partner__itm:nth-child(4) img {
  width: 100px;
}
.partner__itm:nth-child(5) img {
  width: 56px;
}
.partner__itm:nth-child(6) img {
  width: 180px;
}
.partner__itm:nth-child(7) img {
  width: 36.33px;
}

/*====================================================================
partner Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .partner {
    border: 1.8666666667vw solid #524F4E;
  }
  .partner__contents {
    margin-top: 2.6666666667vw;
  }
  .partner__displayImg {
    width: 90.6666666667vw;
  }
  .partner__itms {
    padding: 10.2666666667vw 0 15.4666666667vw;
    max-width: 56.2666666667vw;
    gap: 4.8vw;
  }
  .partner__itm {
    width: 56.2666666667vw;
  }
  .partner__itm span {
    width: 54.6666666667vw;
    min-height: 13.2vw;
  }
  .partner__itm:before {
    bottom: -1.6vw;
    width: 0.8vw;
    height: 14vw;
  }
  .partner__itm:after {
    bottom: -1.6vw;
    left: 0.8vw;
    width: 54.6666666667vw;
    height: 0.8vw;
  }
  .partner__itm:nth-child(1) img {
    width: 46.5333333333vw;
  }
  .partner__itm:nth-child(2) img {
    width: 21.8666666667vw;
  }
  .partner__itm:nth-child(3) img {
    width: 38.2666666667vw;
  }
  .partner__itm:nth-child(4) img {
    width: 26.6666666667vw;
  }
  .partner__itm:nth-child(5) img {
    width: 14.9333333333vw;
  }
  .partner__itm:nth-child(6) img {
    width: 48vw;
  }
  .partner__itm:nth-child(7) img {
    width: 9.688vw;
  }
}
/*====================================================================
partner Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .partner {
    border: 10px solid #524F4E;
  }
  .partner .siteContainer {
    padding-left: 100px;
  }
  .partner__contents {
    margin-top: 0;
  }
  .partner__contentsWrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 74px;
  }
  .partner__displayImg {
    display: block;
    width: 340px;
  }
  .partner__itms {
    padding: 113px 0 110px;
    max-width: 580px;
    gap: 16px;
  }
  .partner__itm {
    width: 281px;
  }
  .partner__itm span {
    width: 273px;
    min-height: 66px;
  }
  .partner__itm:before {
    bottom: -8px;
    right: 0;
    width: 4px;
    height: 70px;
  }
  .partner__itm:after {
    bottom: -8px;
    right: 0;
    width: 277px;
    height: 4px;
  }
  .partner__itm:nth-child(1) img {
    width: 232px;
  }
  .partner__itm:nth-child(2) img {
    width: 113px;
  }
  .partner__itm:nth-child(3) img {
    width: 191px;
  }
  .partner__itm:nth-child(4) img {
    width: 133px;
  }
  .partner__itm:nth-child(5) img {
    width: 74px;
  }
  .partner__itm:nth-child(6) img {
    width: 239px;
  }
  .partner__itm:nth-child(7) img {
    width: 48px;
  }
}
/*====================================================================
partner Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .partner {
    border: 0.9090909091vw solid #524F4E;
  }
  .partner .siteContainer {
    padding-left: 9.0909090909vw;
  }
  .partner__contentsWrapper {
    gap: 6.7272727273vw;
  }
  .partner__displayImg {
    width: 30.9090909091vw;
  }
  .partner__itms {
    padding: 10.2727272727vw 0 10vw;
    max-width: 52.7272727273vw;
    gap: 1.4545454545vw;
  }
  .partner__itm {
    width: 25.5454545455vw;
  }
  .partner__itm span {
    width: 24.8181818182vw;
    min-height: 6vw;
  }
  .partner__itm:before {
    bottom: -0.7272727273vw;
    width: 0.3636363636vw;
    height: 6.3636363636vw;
  }
  .partner__itm:after {
    bottom: -0.7272727273vw;
    width: 25.1818181818vw;
    height: 0.3636363636vw;
  }
  .partner__itm:nth-child(1) img {
    width: 21.0909090909vw;
  }
  .partner__itm:nth-child(2) img {
    width: 10.2727272727vw;
  }
  .partner__itm:nth-child(3) img {
    width: 17.3636363636vw;
  }
  .partner__itm:nth-child(4) img {
    width: 12.0909090909vw;
  }
  .partner__itm:nth-child(5) img {
    width: 6.7272727273vw;
  }
  .partner__itm:nth-child(6) img {
    width: 21.7272727273vw;
  }
  .partner__itm:nth-child(7) img {
    width: 4.3636363636vw;
  }
}
/*====================================================================
company Section SP
====================================================================*/
.company {
  margin: 0 auto;
  width: 100%;
  background-color: #524F4E;
  position: relative;
}
.company .siteContainer {
  padding: 31.5px 0 44px 0;
  max-width: 100%;
  box-sizing: border-box;
}
.company__informationWrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 21px;
}
.company__informationWrapper.snsBlock {
  margin-top: 20px;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.company__informationWrapper.snsBlock .section__ttl {
  padding-left: 23px;
  align-self: flex-start;
}
.company__informationContentsWrapper {
  padding-left: 24px;
  position: relative;
}
.company__map {
  width: 100%;
  height: 233px;
}
.company__map iframe {
  width: 100%;
  height: 100%;
}
.company__cap {
  padding-left: 23px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 180%;
  color: #fff;
}
.company__snsItms {
  width: 100%;
  padding-left: 47px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 19px;
}
.company__snsItm {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-color: #d9d9d9;
  transition: all 0.6s ease-in-out 0s;
}
.company__snsItm:hover {
  opacity: 0.7;
}

/*====================================================================
company Section SP
====================================================================*/
@media screen and (max-width: 375px) {
  .company .siteContainer {
    padding: 8.4vw 0 11.7333333333vw 0;
  }
  .company__informationWrapper {
    gap: 5.6vw;
  }
  .company__informationWrapper.snsBlock {
    margin-top: 5.3333333333vw;
  }
  .company__informationWrapper.snsBlock .section__ttl {
    padding-left: 6.1333333333vw;
  }
  .company__informationContentsWrapper {
    padding-left: 6.4vw;
  }
  .company__map {
    height: 62.1333333333vw;
  }
  .company__cap {
    padding-left: 6.1333333333vw;
    font-size: 3.7333333333vw;
  }
  .company__snsItms {
    padding-left: 12.5333333333vw;
    gap: 5.0666666667vw;
  }
  .company__snsItm {
    width: 16vw;
    height: 16vw;
  }
}
/*====================================================================
company Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .company .siteContainer {
    padding: 78px 0 77px 150px;
    max-width: 1100px;
  }
  .company__informationWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 87px;
  }
  .company__informationWrapper.snsBlock {
    margin-top: 55px;
    gap: 147px;
  }
  .company__informationWrapper.snsBlock .section__ttl {
    padding-left: 0;
  }
  .company__informationContentsWrapper {
    padding-left: 0;
  }
  .company__map {
    width: 400px;
    height: 249px;
  }
  .company__cap {
    padding-left: 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #fff;
  }
  .company__snsItms {
    padding-left: 0;
    gap: 18px;
    width: auto;
  }
  .company__snsItm {
    width: 60px;
    height: 60px;
  }
}
/*====================================================================
ABOUT Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .company .siteContainer {
    padding: 7.0909090909vw 0 7vw 13.6363636364vw;
  }
  .company__informationWrapper {
    gap: 7.9090909091vw;
  }
  .company__informationWrapper.snsBlock {
    margin-top: 5vw;
    gap: 13.3636363636vw;
  }
  .company__map {
    width: 36.3636363636vw;
    height: 22.6363636364vw;
  }
  .company__cap {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #fff;
  }
  .company__snsItms {
    gap: 1.6363636364vw;
  }
  .company__snsItm {
    width: 5.4545454545vw;
    height: 5.4545454545vw;
    border-radius: 909vw;
  }
}
/*====================================================================
contact Section SP
====================================================================*/
.contact {
  margin: 0 auto;
  width: 100%;
  background-color: #d9d9d9;
  position: relative;
}
.contact__container {
  margin: 0 auto;
  padding: 37px 0 54.5px;
  width: 100%;
  max-width: 89%;
}
.contact__heading {
  margin: 0 auto 12px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 36px;
  color: #000000;
  font-family: "Comfortaa", sans-serif;
}
.contact__mailBtn {
  height: 50px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 36px;
  color: #fff;
}

/*====================================================================
contact Section SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .contact__container {
    padding: 9.8666666667vw 0 14.5333333333vw;
  }
  .contact__heading {
    margin: 0 auto 3.2vw;
    font-size: 8.5333333333vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 36px;
    color: #000000;
  }
  .contact__mailBtn {
    height: 13.3333333333vw;
    font-size: 4.2666666667vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 36px;
    color: #fff;
  }
}
/*====================================================================
contact Section PC
====================================================================*/
@media screen and (min-width: 768px) {
  .contact__container {
    padding: 65px 0 135px;
    max-width: 950px;
  }
  .contact__heading {
    margin: 0 auto 12px;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 72px;
    color: #000000;
  }
}
/*====================================================================
contact Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .contact__container {
    padding: 5.9090909091vw 0 12.2727272727vw;
    max-width: 86.3636363636vw;
  }
  .contact__heading {
    margin: 0 auto 1.0909090909vw;
    font-size: 2.9090909091vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 6.5454545455vw;
    color: #000000;
  }
  .contact__mailBtn {
    height: 9.0909090909vw;
    font-size: 1.8181818182vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 6.5454545455vw;
    color: #fff;
  }
}
/*====================================================================
Page 404 PC
====================================================================*/
.page404 {
  margin: 200px auto 100px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.page404__container {
  margin: 0 auto;
  padding: 20px 95px 30px;
  box-sizing: border-box;
}
.page404 .section__ttl {
  color: #524F4E;
}
.page404__btn {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 150%;
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  text-align: center;
  background-color: #524F4E;
}

/*====================================================================
Page 404 PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) {
  .page404 {
    margin: 18.1818181818vw auto 9.0909090909vw;
  }
  .page404__container {
    padding: 1.8181818182vw 8.6363636364vw 2.7272727273vw;
  }
  .page404__btn {
    height: 9.0909090909vw;
    font-size: 2.1818181818vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
Page 404 SP
====================================================================*/
@media screen and (max-width: 767px) {
  .page404 {
    margin: 100px auto 100px;
  }
  .page404__container {
    padding: 20px 20px 30px;
  }
  .page404__btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
Page 404 SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .page404 {
    margin: 26.6666666667vw auto 26.6666666667vw;
  }
  .page404__container {
    padding: 5.3333333333vw 5.3333333333vw 8vw;
  }
  .page404__btn {
    height: 13.3333333333vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    color: #fff;
  }
}
/*====================================================================
Interview Archive Page SP
====================================================================*/
.keyVisual.interviewPage__kvSlider {
  height: 100vh;
  min-height: 550px;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.keyVisual.interviewPage__kvSlider .keyVisual__container {
  justify-content: flex-start;
  padding: 0;
  position: relative;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__titleWrapper {
  position: absolute;
  bottom: 284px;
  left: 15px;
  z-index: 2;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 100%;
  color: #EBFF01;
  font-style: normal;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title.first-block {
  margin-bottom: 0;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title.second-block {
  margin-bottom: 0;
  padding-left: 0;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title span.outlined {
  margin-left: 0;
  padding-left: 0;
  -webkit-text-stroke: 2px #EBFF01;
  letter-spacing: 0.004em;
}
.keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title span.outlined:after {
  display: none;
}
.keyVisual.interviewPage__kvSlider .splide {
  width: 100%;
  height: 100%;
}
.keyVisual.interviewPage__kvSlider .splide .splide__track {
  width: 100%;
  position: relative;
  height: 100%;
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrows {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 20px;
  font-size: 0;
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow {
  padding: 0;
  border: 0;
  font-size: 0;
  width: 44px;
  height: 44px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow--prev {
  background-image: url(../images/common/img-splide-arrow-left-v2.png);
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow--prev:disabled {
  background-image: url(../images/common/img-splide-arrow-left-disabled.png);
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow--next {
  background-image: url(../images/common/img-splide-arrow-right-v2.png);
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow--next:disabled {
  background-image: url(../images/common/img-splide-arrow-right-disabled.png);
}
.keyVisual.interviewPage__kvSlider .splide .splide__arrow:first-child {
  margin-right: 10px;
}
.keyVisual.interviewPage__kvSlider .splide .splide__pagination {
  display: flex !important;
  position: absolute;
  bottom: 36px;
  left: auto;
  right: 20px;
  gap: 8px;
}
.keyVisual.interviewPage__kvSlider .splide .splide__pagination li {
  width: 12px;
  height: 12px;
  position: relative;
}
.keyVisual.interviewPage__kvSlider .splide .splide__pagination li button {
  position: absolute;
  top: 0;
  left: 0;
}
.keyVisual.interviewPage__kvSlider .splide .splide__pagination li .splide__pagination__page {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border: 0;
}
.keyVisual.interviewPage__kvSlider .splide .splide__pagination li .splide__pagination__page.is-active {
  background-color: #EBFF01;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__poster {
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 435px;
  height: 70vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #524F4E;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__contents {
  margin-left: 0;
  width: 100%;
  max-width: 335px;
  padding: 20px 20px 20px;
  box-sizing: border-box;
  position: absolute;
  bottom: 86px;
  background-color: #fff;
  left: 0;
  z-index: 1;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tag {
  margin-bottom: 10.5px;
  padding: 0 5px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: 22px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #EBFF01;
  background-color: #767575;
  box-sizing: border-box;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__ttl {
  margin-bottom: 2.5px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}

.interviewArticles {
  margin: 0 auto;
  padding: 45.5px 12.5px 64px;
  width: 100%;
  background-color: #524F4E;
  border: 7px solid #EBFF01;
  box-sizing: border-box;
}
.interviewArticles__container {
  margin: auto;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.interviewArticles__heading {
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 100%;
  color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
}
.interviewArticles__heading.outlined {
  -webkit-text-stroke: 2px #EBFF01;
  letter-spacing: 0.02em;
  color: transparent;
  position: relative;
}
.interviewArticles__itms {
  margin: 88.5px auto 96px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.interviewArticles__itms .bgElem {
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -19.5px;
  width: calc(80% + 39px);
  height: calc(100% + 80px);
  background-color: #EBFF01;
  transition: all 0.6s ease-in-out 0s;
}
.interviewArticles__itm {
  width: 100%;
  display: block;
  transition: all 0.6s ease-in-out 0s;
  position: relative;
  z-index: 2;
}
.interviewArticles__itm__poster {
  width: 100%;
  min-height: 237px;
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #aaa;
}
.interviewArticles__itm__contents {
  width: 100%;
  padding: 20px 20px;
  min-height: 195px;
  box-sizing: border-box;
  background-color: #fff;
}
.interviewArticles__itm__tags {
  margin-bottom: 12.5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.interviewArticles__itm__tag {
  padding: 0 5px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  min-height: 22px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #EBFF01;
  background-color: #767575;
  box-sizing: border-box;
}
.interviewArticles__itm__ttl {
  margin-bottom: 4.5px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.interviewArticles__itm__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}
.interviewArticles__moreBtn {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 72%;
  color: #524F4E;
  font-family: "Fjalla One", sans-serif;
  text-align: center;
  background-color: #EBFF01;
  border: 0;
  position: relative;
  transition: all 0.6s ease-in-out 0s;
  cursor: pointer;
}
.interviewArticles__moreBtn.is-hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.interviewArticles__moreBtn.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.interviewArticles__moreBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 13.5px;
  height: 13.5px;
  transform: translateY(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-plus.png);
}

/*====================================================================
Interview Archive Page SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .keyVisual.interviewPage__kvSlider {
    min-height: 146.6666666667vw;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container {
    justify-content: flex-start;
    padding: 0;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__titleWrapper {
    bottom: 75.7333333333vw;
    left: 4vw;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title {
    font-size: 17.0666666667vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title span.outlined {
    -webkit-text-stroke: 0.5333333333vw #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .splide {
    height: 100%;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__track {
    height: 100%;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrows {
    bottom: 5.3333333333vw;
    left: 5.3333333333vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow:first-child {
    margin-right: 2.6666666667vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination {
    bottom: 9.6vw;
    right: 5.3333333333vw;
    gap: 2.1333333333vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination li {
    width: 3.2vw;
    height: 3.2vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__poster {
    margin: 0 0 0 auto;
    max-width: 100%;
    min-height: 116vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__contents {
    max-width: 89.3333333333vw;
    padding: 5.3333333333vw;
    bottom: 22.9333333333vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tags {
    gap: 2.6666666667vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tag {
    margin-bottom: 2.8vw;
    padding: 0 1.3333333333vw;
    min-height: 5.8666666667vw;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__ttl {
    margin-bottom: 0.6666666667vw;
    font-size: 6.4vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__name {
    font-size: 4.2666666667vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles {
    margin: 0 auto;
    padding: 12.1333333333vw 3.3333333333vw 17.0666666667vw;
    border: 1.8666666667vw solid #EBFF01;
  }
  .interviewArticles .bgElem {
    top: 59.4666666667vw;
    right: 0;
    width: 80.2666666667vw;
    height: 91.5%;
  }
  .interviewArticles__container {
    max-width: 100%;
  }
  .interviewArticles__heading {
    font-size: 17.0666666667vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .interviewArticles__heading.outlined {
    -webkit-text-stroke: 0.5333333333vw #EBFF01;
  }
  .interviewArticles__itms {
    margin: 23.6vw auto 25.6vw;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10.6666666667vw;
  }
  .interviewArticles__itms .bgElem {
    top: -10.6666666667vw;
    bottom: -10.6666666667vw;
    right: -5.2vw;
    width: calc(80% + 10.4vw);
    height: calc(100% + 21.3333333333vw);
  }
  .interviewArticles__itm {
    width: 100%;
  }
  .interviewArticles__itm__poster {
    width: 100%;
    min-height: 63.2vw;
  }
  .interviewArticles__itm__contents {
    width: 100%;
    padding: 5.3333333333vw;
    min-height: 52vw;
  }
  .interviewArticles__itm__tags {
    margin-bottom: 3.3333333333vw;
    gap: 2.6666666667vw;
  }
  .interviewArticles__itm__tag {
    padding: 0 1.3333333333vw;
    min-height: 5.8666666667vw;
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .interviewArticles__itm__ttl {
    margin-bottom: 1.2vw;
    font-size: 6.4vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewArticles__itm__name {
    font-size: 4.2666666667vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles__moreBtn {
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 72%;
    color: #524F4E;
  }
  .interviewArticles__moreBtn:after {
    right: 5.3333333333vw;
    width: 3.6vw;
    height: 3.6vw;
  }
}
/*====================================================================
Interview Archive Page PC
====================================================================*/
@media screen and (min-width: 768px) {
  .keyVisual.interviewPage__kvSlider .keyVisual__container {
    padding: 0;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__titleWrapper {
    bottom: 384px;
    left: 45px;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title {
    font-size: 96px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title span.outlined {
    margin-left: 0;
    padding-left: 0;
    -webkit-text-stroke: 3px #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrows {
    bottom: 45px;
    left: 50px;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow {
    width: 43px;
    height: 43px;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow:first-child {
    margin-right: 9px;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination {
    bottom: 67px;
    left: 350px;
    right: auto;
    gap: 8px;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination li {
    width: 14px;
    height: 14px;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__poster {
    margin: 0 0 0 auto;
    max-width: 74.5454545455vw;
    height: 100vh;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__contents {
    margin-left: 50px;
    max-width: 402px;
    padding: 32px 24px 27px;
    bottom: 124px;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tags {
    gap: 10px;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tag {
    margin-bottom: 17.6px;
    padding: 0 5px;
    min-height: 26.4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__ttl {
    margin-bottom: 3.8px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__name {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles {
    margin: 0 auto;
    padding: 80px 100px 79px;
    border: 4px solid #EBFF01;
  }
  .interviewArticles__container {
    max-width: 950px;
  }
  .interviewArticles__heading {
    font-size: 96px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .interviewArticles__heading.outlined {
    -webkit-text-stroke: 4px #EBFF01;
  }
  .interviewArticles__itms {
    margin: 65px auto 120px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px 20px;
  }
  .interviewArticles__itms .bgElem {
    top: -40px;
    bottom: -40px;
    right: -521px;
    width: 100%;
    height: calc(100% + 80px);
  }
  .interviewArticles__itm {
    width: calc((100% - 40px) / 3);
  }
  .interviewArticles__itm.hidden {
    display: none;
  }
  .interviewArticles__itm__poster {
    width: 100%;
    min-height: 202px;
  }
  .interviewArticles__itm__contents {
    width: 100%;
    min-height: 162px;
    padding: 18px 17px 14.87px;
  }
  .interviewArticles__itm__tags {
    margin-bottom: 9px;
    gap: 10px;
  }
  .interviewArticles__itm__tag {
    padding: 0 5px;
    min-height: 18px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .interviewArticles__itm__ttl {
    margin-bottom: 3.8px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewArticles__itm__name {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles__moreBtn {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 72%;
    color: #524F4E;
  }
  .interviewArticles__moreBtn:after {
    right: 50px;
    width: 19px;
    height: 20px;
  }
}
/*====================================================================
Interview Archive Page PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .keyVisual.interviewPage__kvSlider .keyVisual__container {
    padding: 0;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__titleWrapper {
    bottom: 34.9090909091vw;
    left: 4.0909090909vw;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title {
    font-size: 8.7272727273vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .keyVisual__container .keyVisual__title span.outlined {
    -webkit-text-stroke: 0.2727272727vw #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrows {
    bottom: 4.0909090909vw;
    left: 4.5454545455vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow {
    width: 3.9090909091vw;
    height: 3.9090909091vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__arrow:first-child {
    margin-right: 0.8181818182vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination {
    bottom: 6.0909090909vw;
    left: 31.8181818182vw;
    gap: 0.7272727273vw;
  }
  .keyVisual.interviewPage__kvSlider .splide .splide__pagination li {
    width: 1.2727272727vw;
    height: 1.2727272727vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__poster {
    max-width: 74.5454545455vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__contents {
    margin-left: 4.5454545455vw;
    max-width: 36.5454545455vw;
    padding: 2.9090909091vw 2.1818181818vw 2.4545454545vw;
    bottom: 11.2727272727vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tags {
    gap: 0.9090909091vw;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__tag {
    margin-bottom: 1.6vw;
    padding: 0 0.4545454545vw;
    min-height: 2.4vw;
    font-size: 1.2727272727vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__ttl {
    margin-bottom: 3.8px;
    font-size: 2.5454545455vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .keyVisual.interviewPage__kvSlider .interviewPage__kvSlider__itm__name {
    font-size: 1.8181818182vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles {
    padding: 7.2727272727vw 9.0909090909vw 7.1818181818vw;
    background-color: #524F4E;
    border: 0.3636363636vw solid #EBFF01;
  }
  .interviewArticles__container {
    max-width: 86.3636363636vw;
  }
  .interviewArticles__heading {
    font-size: 8.7272727273vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #EBFF01;
  }
  .interviewArticles__heading.outlined {
    -webkit-text-stroke: 0.3636363636vw #EBFF01;
  }
  .interviewArticles__itms {
    margin: 5.9090909091vw auto 120px;
    gap: 3.6363636364vw 1.8181818182vw;
  }
  .interviewArticles__itms .bgElem {
    top: -3.6363636364vw;
    bottom: -3.6363636364vw;
    right: -47.3636363636vw;
    height: calc(100% + 7.2727272727vw);
  }
  .interviewArticles__itm {
    width: calc((100% - 3.6363636364vw) / 3);
  }
  .interviewArticles__itm__poster {
    min-height: 18.3636363636vw;
  }
  .interviewArticles__itm__contents {
    padding: 1.6363636364vw 1.5454545455vw 14.87px;
    min-height: 14.7272727273vw;
  }
  .interviewArticles__itm__tags {
    margin-bottom: 0.8181818182vw;
    gap: 0.9090909091vw;
  }
  .interviewArticles__itm__tag {
    padding: 0 0.4545454545vw;
    min-height: 1.6363636364vw;
    font-size: 0.9090909091vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #EBFF01;
  }
  .interviewArticles__itm__ttl {
    margin-bottom: 0.3454545455vw;
    font-size: 1.8181818182vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewArticles__itm__name {
    font-size: 1.2727272727vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewArticles__moreBtn {
    height: 8.1818181818vw;
    font-size: 2.1818181818vw;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 72%;
    color: #524F4E;
  }
  .interviewArticles__moreBtn:after {
    right: 4.5454545455vw;
    width: 1.7272727273vw;
    height: 1.8181818182vw;
  }
}
/*====================================================================
Interview Details Page SP
====================================================================*/
.interviewDetails {
  margin: 0 auto;
  width: 100%;
  position: relative;
  border: 8px solid #EBFF01;
  overflow: hidden;
}
.interviewDetails:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 458.5px;
  background-color: #EBFF01;
}
.interviewDetails__container {
  margin: 0 auto;
  padding: 100px 0 0;
  width: 100%;
  max-width: 335px;
  max-width: 89.33%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.interviewDetails__post__ttl {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 150%;
  color: #1A1A19;
}
.interviewDetails__post__block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px;
}
.interviewDetails__post__date {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}
.interviewDetails__post__tags {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.interviewDetails__post__tag {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}
.interviewDetails__post__poster {
  margin: 28.5px auto 13.5px;
  width: 100%;
  height: auto;
  min-height: 237px;
  aspect-ratio: 16/9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.interviewDetails__post__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
}
.interviewDetails__author__block {
  margin: 75px auto 75.5px;
  padding: 32px 19.5px 32px;
  width: 100%;
  background-color: #F8F8F8;
}
.interviewDetails__author__block__top {
  margin-bottom: 11.5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 13.5px;
}
.interviewDetails__author__img {
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.interviewDetails__author__label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
}
.interviewDetails__author__name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 150%;
  color: #1A1A19;
}
.interviewDetails__author__cap {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
}
.interviewDetails__contents {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 68.5px;
}
.interviewDetails__content__block {
  width: 100%;
}
.interviewDetails__content__block h2 {
  margin-bottom: 16.5px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
  position: relative;
}
.interviewDetails__content__block h2 .videoWrapper {
  position: relative;
  cursor: pointer;
}
.interviewDetails__content__block h2 .videoWrapper video {
  width: 100%;
  display: block;
}
.interviewDetails__content__block h2 .videoWrapper .videoOverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  transition: all 0.2s ease-in-out 0s;
  z-index: 2;
}
.interviewDetails__content__block h2 .videoWrapper .playBtn {
  width: 30px;
  height: 30px;
  background: url(../images/common/icon-btn-play.png) center/contain no-repeat;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.interviewDetails__content__block figure,
.interviewDetails__content__block video,
.interviewDetails__content__block iframe {
  margin-bottom: 34px;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.interviewDetails__content__block figcaption {
  margin-top: 7px;
  padding-left: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 150%;
  color: #767575;
  position: relative;
}
.interviewDetails__content__block h3 {
  margin-bottom: 21px;
  padding-left: 36.71px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 160%;
  color: #1A1A19;
  position: relative;
}
.interviewDetails__content__block h3:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #1A1A19;
}
.interviewDetails__content__block h3:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 13px;
  height: 1px;
  background-color: #EBFF01;
}
.interviewDetails__content__block p {
  margin-bottom: 25.2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
  position: relative;
}
.interviewDetails__content__block p code,
.interviewDetails__content__block p span {
  font-weight: bold;
  position: relative;
  display: inline;
  box-shadow: inset 0 -9px 0 #ebff01;
}
.interviewDetails__content__inner__block {
  margin-bottom: 27.5px;
}
.interviewDetails__content__inner__block:last-child {
  margin-bottom: 0;
}

.cta {
  margin: 32px auto 0;
  width: 100%;
  background-color: #524F4E;
  text-align: center;
}
.cta__container {
  margin: auto;
  padding: 38.5px 0 38.5px;
  width: 100%;
  max-width: 295px;
}
.cta__heading {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 130%;
  color: #EBFF01;
}
.cta__btn {
  margin-top: 10px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  min-height: 112px;
  background-color: #EBFF01;
  font-family: "Fjalla One", sans-serif;
  font-size: 66.5px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 150%;
  color: #524F4E;
}
.cta__btn span {
  margin-bottom: -15px;
  display: block;
  font-family: "Fjalla One", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #524F4E;
}

.sns {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.sns__container {
  margin: auto;
  padding: 18.57px 0 144px;
  width: 100%;
  max-width: 205px;
}
.sns__heading {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
}
.sns__itms {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 13.5px;
}
.sns__itm {
  width: 60px;
  display: block;
  transition: all 0.6s ease-in-out 0s;
}
.sns__itm:hover {
  opacity: 0.7;
}

/*====================================================================
Interview Details Page SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .interviewDetails {
    border: 2.1333333333vw solid #EBFF01;
  }
  .interviewDetails:after {
    height: 122.2666666667vw;
  }
  .interviewDetails__container {
    padding: 26.6666666667vw 0 0;
    max-width: 89.3333333333vw;
  }
  .interviewDetails__post__ttl {
    margin-bottom: 2.1333333333vw;
    font-size: 6.4vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 150%;
    color: #1A1A19;
  }
  .interviewDetails__post__block {
    gap: 4.8vw;
  }
  .interviewDetails__post__date {
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__tags {
    gap: 2.6666666667vw;
  }
  .interviewDetails__post__tag {
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__poster {
    margin: 7.6vw auto 3.6vw;
    min-height: 63.2vw;
  }
  .interviewDetails__post__desc {
    font-size: 3.7333333333vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__author__block {
    margin: 20vw auto 20.1333333333vw;
    padding: 8.5333333333vw 5.2vw 8.5333333333vw;
  }
  .interviewDetails__author__block__top {
    margin-bottom: 3.0666666667vw;
    gap: 3.6vw;
  }
  .interviewDetails__author__img {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }
  .interviewDetails__author__label {
    font-size: 3.2vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__author__name {
    font-size: 4.2666666667vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #1A1A19;
  }
  .interviewDetails__author__cap {
    font-size: 3.7333333333vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__contents {
    gap: 18.2666666667vw;
  }
  .interviewDetails__content__block h2 {
    margin-bottom: 4.4vw;
    font-size: 5.3333333333vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewDetails__content__block h2 .videoWrapper .playBtn {
    width: 8vw;
    height: 8vw;
  }
  .interviewDetails__content__block figure,
  .interviewDetails__content__block video,
  .interviewDetails__content__block iframe {
    margin-bottom: 9.0666666667vw;
  }
  .interviewDetails__content__block figcaption {
    margin-top: 1.8666666667vw;
    font-size: 3.2vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__content__block h3 {
    margin-bottom: 5.6vw;
    padding-left: 9.7893333333vw;
    font-size: 4.2666666667vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 160%;
    color: #1A1A19;
  }
  .interviewDetails__content__block h3:before {
    top: 3.4666666667vw;
    width: 8vw;
    height: 1px;
  }
  .interviewDetails__content__block h3:after {
    top: 3.4666666667vw;
    width: 3.4666666667vw;
    height: 1px;
  }
  .interviewDetails__content__block p {
    margin-bottom: 6.72vw;
    font-size: 3.7333333333vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__content__block p code,
  .interviewDetails__content__block p span {
    box-shadow: inset 0 -2.4vw 0 #ebff01;
  }
  .interviewDetails__content__inner__block {
    margin-bottom: 7.3333333333vw;
  }
  .cta {
    margin: 8.5333333333vw auto 0;
  }
  .cta__container {
    padding: 10.2666666667vw 0 10.2666666667vw;
    max-width: 78.6666666667vw;
  }
  .cta__heading {
    font-size: 4.2666666667vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #EBFF01;
  }
  .cta__btn {
    margin-top: 2.6666666667vw;
    padding-top: 4.8vw;
    min-height: 29.8666666667vw;
    font-size: 17.7333333333vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #524F4E;
  }
  .cta__btn span {
    margin-bottom: -4vw;
    font-size: 4.2666666667vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #524F4E;
  }
  .sns__container {
    padding: 4.952vw 0 38.4vw;
    max-width: 54.6666666667vw;
  }
  .sns__heading {
    font-size: 3.7333333333vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .sns__itms {
    margin-top: 2.4vw;
    gap: 3.6vw;
  }
  .sns__itm {
    width: 16vw;
  }
}
/*====================================================================
Interview Details Page PC
====================================================================*/
@media screen and (min-width: 768px) {
  .interviewDetails {
    border: 14px solid #EBFF01;
  }
  .interviewDetails:after {
    height: 715px;
  }
  .interviewDetails__container {
    padding: 137px 0 0;
    max-width: 660px;
  }
  .interviewDetails__post__ttl {
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 151%;
    color: #1A1A19;
  }
  .interviewDetails__post__block {
    gap: 17px;
  }
  .interviewDetails__post__date {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__tags {
    gap: 10px;
  }
  .interviewDetails__post__tag {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__poster {
    margin: 50px auto 25px;
    height: 466px;
  }
  .interviewDetails__post__desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__author__block {
    margin: 112px auto 112px;
    padding: 41px 23.4px 40.4px;
  }
  .interviewDetails__author__block__top {
    margin-bottom: 13.6px;
    gap: 16.2px;
  }
  .interviewDetails__author__img {
    width: 84px;
    height: 84px;
  }
  .interviewDetails__author__label {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__author__name {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #1A1A19;
  }
  .interviewDetails__author__cap {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__contents {
    gap: 105px;
  }
  .interviewDetails__content__block h2 {
    margin-bottom: 28px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewDetails__content__block .videoWrapper .playBtn {
    width: 58px;
    height: 59px;
  }
  .interviewDetails__content__block .videoWrapper.is-playing .videoOverlay {
    opacity: 0;
    pointer-events: none;
  }
  .interviewDetails__content__block figure,
  .interviewDetails__content__block video,
  .interviewDetails__content__block iframe {
    margin-bottom: 47px;
    aspect-ratio: 16/9;
  }
  .interviewDetails__content__block figcaption {
    margin-top: 11px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
    text-align: center;
  }
  .interviewDetails__content__block h3 {
    margin-bottom: 19px;
    padding-left: 40px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 160%;
    color: #1A1A19;
  }
  .interviewDetails__content__block h3:before {
    top: 14px;
    left: 0;
    width: 30px;
    height: 1px;
  }
  .interviewDetails__content__block h3:after {
    top: 14px;
    left: 0;
    width: 13px;
    height: 1px;
  }
  .interviewDetails__content__block p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
    margin-bottom: 28.8px;
  }
  .interviewDetails__content__block p:last-child {
    margin-bottom: 0;
  }
  .interviewDetails__content__block p span,
  .interviewDetails__content__block p code {
    box-shadow: inset 0 -8px 0 #ebff01;
  }
  .interviewDetails__content__inner__block {
    margin-bottom: 41px;
  }
  .cta {
    margin: 49px auto 0;
  }
  .cta__container {
    padding: 46.2px 0 46.37px;
    max-width: 356px;
  }
  .cta__heading {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #EBFF01;
  }
  .cta__btn {
    margin-top: 12.32px;
    padding-top: 21px;
    min-height: 134px;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #524F4E;
  }
  .cta__btn span {
    margin-bottom: -15px;
    font-size: 19.2px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #524F4E;
  }
  .sns__container {
    padding: 24px 0 136px;
    max-width: 246px;
  }
  .sns__heading {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .sns__itms {
    margin-top: 11.8px;
    gap: 16.5px;
  }
  .sns__itm {
    width: 71px;
  }
}
/*====================================================================
Interview Details Page PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .interviewDetails {
    border: 1.2727272727vw solid #EBFF01;
  }
  .interviewDetails:after {
    height: 65vw;
  }
  .interviewDetails__container {
    padding: 12.4545454545vw 0 0;
    max-width: 60vw;
  }
  .interviewDetails__post__ttl {
    margin-bottom: 1.3636363636vw;
    font-size: 3.6363636364vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 151%;
    color: #1A1A19;
  }
  .interviewDetails__post__block {
    gap: 1.5454545455vw;
  }
  .interviewDetails__post__date {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__tags {
    gap: 0.9090909091vw;
  }
  .interviewDetails__post__tag {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__post__poster {
    margin: 4.5454545455vw auto 2.2727272727vw;
    height: 42.3636363636vw;
  }
  .interviewDetails__post__desc {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__author__block {
    margin: 10.1818181818vw auto 10.1818181818vw;
    padding: 3.7272727273vw 2.1272727273vw 3.6727272727vw;
  }
  .interviewDetails__author__block__top {
    margin-bottom: 1.2363636364vw;
    gap: 1.4727272727vw;
  }
  .interviewDetails__author__img {
    width: 7.6363636364vw;
    height: 7.6363636364vw;
  }
  .interviewDetails__author__label {
    font-size: 1.2727272727vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__author__name {
    font-size: 1.8181818182vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 150%;
    color: #1A1A19;
  }
  .interviewDetails__author__cap {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__contents {
    gap: 9.5454545455vw;
  }
  .interviewDetails__content__block h2 {
    margin-bottom: 2.5454545455vw;
    font-size: 2.9090909091vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .interviewDetails__content__block h2 .videoWrapper .playBtn {
    width: 5.2727272727vw;
    height: 5.3636363636vw;
  }
  .interviewDetails__content__block figure,
  .interviewDetails__content__block video,
  .interviewDetails__content__block iframe {
    margin-bottom: 4.2727272727vw;
  }
  .interviewDetails__content__block figcaption {
    margin-top: 1vw;
    font-size: 1.2727272727vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #767575;
  }
  .interviewDetails__content__block h3 {
    margin-bottom: 1.7272727273vw;
    padding-left: 3.6363636364vw;
    font-size: 1.8181818182vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 160%;
    color: #1A1A19;
  }
  .interviewDetails__content__block h3:before {
    top: 1.2727272727vw;
    width: 2.7272727273vw;
    height: 0.0909090909vw;
  }
  .interviewDetails__content__block h3:after {
    top: 1.2727272727vw;
    width: 1.1818181818vw;
    height: 0.0909090909vw;
  }
  .interviewDetails__content__block p {
    margin-bottom: 2.6181818182vw;
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .interviewDetails__content__block p code,
  .interviewDetails__content__block p span {
    box-shadow: inset 0 -0.7272727273vw 0 #ebff01;
  }
  .interviewDetails__content__inner__block {
    margin-bottom: 3.7272727273vw;
  }
  .cta {
    margin: 4.4545454545vw auto 0;
  }
  .cta__container {
    padding: 4.2vw 0 4.2154545455vw;
    max-width: 32.3636363636vw;
  }
  .cta__heading {
    font-size: 1.8181818182vw;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 130%;
    color: #EBFF01;
  }
  .cta__btn {
    margin-top: 1.12vw;
    padding-top: 1.9090909091vw;
    min-height: 12.1818181818vw;
    font-size: 7.2727272727vw;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #524F4E;
  }
  .cta__btn span {
    margin-bottom: -1.3636363636vw;
    font-size: 1.7454545455vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: #524F4E;
  }
  .sns__container {
    padding: 2.1818181818vw 0 12.3636363636vw;
    max-width: 22.3636363636vw;
  }
  .sns__heading {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .sns__itms {
    margin-top: 1.0727272727vw;
    gap: 1.5vw;
  }
  .sns__itm {
    width: 6.4545454545vw;
  }
}
/*====================================================================
Privacy Policy Page SP
====================================================================*/
.privacyPolicy {
  margin: 101.5px auto 144px;
  width: 100%;
}
.privacyPolicy__container {
  margin: 0 auto;
  width: 100%;
  max-width: 89%;
}
.privacyPolicy__heading {
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
}
.privacyPolicy__contents__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 28px;
}
.privacyPolicy__contents__block {
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid #1A1A19;
}
.privacyPolicy__contents__block p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
}
.privacyPolicy__contents__block p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 1px;
}

/*====================================================================
Privacy Policy Page SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .privacyPolicy {
    margin: 27.0666666667vw auto 38.4vw;
  }
  .privacyPolicy__container {
    max-width: 89%;
  }
  .privacyPolicy__heading {
    margin-bottom: 8vw;
    font-size: 5.3333333333vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__wrapper {
    gap: 7.4666666667vw;
  }
  .privacyPolicy__contents__block {
    padding-bottom: 7.4666666667vw;
    border-bottom: 0.2666666667vw solid #1A1A19;
  }
  .privacyPolicy__contents__block p {
    font-size: 3.7333333333vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__block p a {
    text-underline-offset: 0.2666666667vw;
  }
}
/*====================================================================
Privacy Policy Page PC
====================================================================*/
@media screen and (min-width: 768px) {
  .privacyPolicy {
    margin: 135px auto 158px;
  }
  .privacyPolicy__container {
    max-width: 658px;
  }
  .privacyPolicy__heading {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__wrapper {
    gap: 40px;
  }
  .privacyPolicy__contents__block {
    padding-bottom: 40px;
    border-bottom: 1px solid #1A1A19;
  }
  .privacyPolicy__contents__block p {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__block p a {
    text-underline-offset: 2px;
  }
}
/*====================================================================
Privacy Policy Page PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .privacyPolicy {
    margin: 12.2727272727vw auto 14.3636363636vw;
  }
  .privacyPolicy__container {
    max-width: 59.8181818182vw;
  }
  .privacyPolicy__heading {
    margin-bottom: 3.6363636364vw;
    font-size: 2.9090909091vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__wrapper {
    gap: 3.6363636364vw;
  }
  .privacyPolicy__contents__block {
    padding-bottom: 3.6363636364vw;
    border-bottom: 0.0909090909vw solid #1A1A19;
  }
  .privacyPolicy__contents__block p {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .privacyPolicy__contents__block p a {
    text-underline-offset: 0.1818181818vw;
  }
}
/*====================================================================
Notice Page SP
====================================================================*/
.notice {
  margin: 101.5px auto 144px;
  width: 100%;
}
.notice__container {
  margin: 0 auto;
  width: 100%;
  max-width: 89%;
}
.notice__heading {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 130%;
  color: #1A1A19;
}
.notice__contents__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 28px;
}
.notice__contents__block {
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid #1A1A19;
}
.notice__contents__block p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 180%;
  color: #1A1A19;
}
.notice__contents__block p a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 1px;
}

/*====================================================================
Notice Page SP Breakpoint
====================================================================*/
@media screen and (max-width: 375px) {
  .notice {
    margin: 27.0666666667vw auto 38.4vw;
  }
  .notice__container {
    max-width: 89%;
  }
  .notice__heading {
    margin-bottom: 8vw;
    padding-bottom: 8vw;
    font-size: 5.3333333333vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .notice__contents__wrapper {
    gap: 7.4666666667vw;
  }
  .notice__contents__block {
    padding-bottom: 7.4666666667vw;
    border-bottom: 0.2666666667vw solid #1A1A19;
  }
  .notice__contents__block p {
    font-size: 3.7333333333vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .notice__contents__block p a {
    text-underline-offset: 0.2666666667vw;
  }
}
/*====================================================================
Notice Page PC
====================================================================*/
@media screen and (min-width: 768px) {
  .notice {
    margin: 135px auto 158px;
  }
  .notice__container {
    max-width: 658px;
  }
  .notice__heading {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1A1A19;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .notice__contents__wrapper {
    gap: 40px;
  }
  .notice__contents__block {
    padding-bottom: 40px;
    border-bottom: 1px solid #1A1A19;
  }
  .notice__contents__block p {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .notice__contents__block p a {
    text-underline-offset: 2px;
  }
}
/*====================================================================
Notice Page PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .notice {
    margin: 12.2727272727vw auto 14.3636363636vw;
  }
  .notice__container {
    max-width: 59.8181818182vw;
  }
  .notice__heading {
    margin-bottom: 3.6363636364vw;
    padding-bottom: 3.6363636364vw;
    border-bottom: 0.0909090909vw solid #1A1A19;
    font-size: 2.9090909091vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 130%;
    color: #1A1A19;
  }
  .notice__contents__wrapper {
    gap: 3.6363636364vw;
  }
  .notice__contents__block {
    padding-bottom: 3.6363636364vw;
    border-bottom: 0.0909090909vw solid #1A1A19;
  }
  .notice__contents__block p {
    font-size: 1.4545454545vw;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 180%;
    color: #1A1A19;
  }
  .notice__contents__block p a {
    text-underline-offset: 0.1818181818vw;
  }
}
/*# sourceMappingURL=style.css.map */