@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=Comfortaa:wght@300..700&display=swap");
/* =======================
 * Functions CLASS
 * ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  margin: 0;
}

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

a {
  text-decoration: none;
  color: #333;
}

p {
  font-size: 18px;
}

ul {
  list-style: none;
}

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

/*====================================================================
opening
====================================================================*/
.opening_container{
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:transparent;
  z-index: 11000;
  overflow-y: hidden;
}
.opening_container_top{
  display: block;
  position: fixed;
  width: 100%;
  height: 51%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 12000;
}
.opening_container_bottom{
  display: block;
  position: fixed;
  width: 100%;
  height: 51%;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 12000;
}
.oplogo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: center;
  width: 90%;
  z-index: 13000;
}

.loader_container {
  box-sizing: content-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 120px;
  height: 20px;
  padding: 5px;
  border: #fff solid 2px;
  z-index: 14000;
}
.loader {
  width: 120px;
  height: 20px;
  background:linear-gradient(#fff 0 0) 0/0% no-repeat #000;
  animation: l1 2s linear forwards;
}
@keyframes l1 {
  100% {background-size:100%}
}

/*====================================================================
siteHeader
====================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.header.child--page .header__navMenuItemLink {
  color: #fff;
}
.header__container {
  margin: 0 auto;
  padding: 16px 51px 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;
  position: relative;
}
.header__logo.scroll{
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .header__logo:hover {
    opacity: 0.7;
  }
}
.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: 27px;
  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: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 16.73px;
  color: #fff;
  font-family: "Comfortaa", sans-serif;
  text-transform: capitalize;
  display: block;
  box-sizing: border-box;
  position: relative;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .header__navMenuItemLink {
    font-size: 12px;
  }
}
/*====================================================================
siteHeader PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .header__container {
    padding: 1.4545454545vw 4.6363636364vw 1.4545454545vw 4.1818181818vw;
    width: 100%;
  }
  .header__logo {
    width: 22.7272727273vw;
  }
  .header__navMenuItems {
    gap: 1.5vw;
  }
  .header__navMenuItemLink {
    font-size: 1.3vw;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.5209090909vw;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .header__navMenuItemLink {
    font-size: 12px;
  }
}
/*====================================================================
Header SP
====================================================================*/
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
  .header__container {
    margin: 0 auto;
    padding: 0 0 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .header__logo {
    width: 200px;
  }
  .header__navMenuContainer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: black;
    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 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 30px;
  }
  .header__navMenuItem {
    margin: 0 auto 0;
  }
  .header__navMenuItemLink {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .header__navMenuItemLink {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .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: 20.5px 13.5px 21.36px;
    width: auto;
    display: inline-block;
    transition: all 0.7s ease;
    cursor: pointer;
  }
  .header__menuBars.bars-clicked .header__menuBar {
    background-color: #fff;
  }
  .header__menuBar {
    margin: 8px auto;
    width: 23px;
    height: 1px;
    display: block;
    background: #fff;
    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);
  }
}
/*====================================================================
siteFooter
====================================================================*/
.siteFooter {
  margin: 0 auto;
  width: 100%;
  background-color: #d9d9d9;
}
.siteFooter__container {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}
.siteFooter__links {
  padding: 47px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 35px;
  border-top: 1px dashed #000000;
  border-bottom: 1px dashed #000000;
}
.siteFooter__linkItm {
  display: block;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 19.2px;
  color: #000000;
  font-family: "Comfortaa", sans-serif;
}
@media screen and (max-width: 767px) {
  .siteFooter__linkItm {
    font-size: 12px;
  }
}
.siteFooter__copyright {
  padding: 40px 0 55px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Comfortaa", sans-serif;
  text-align: center;
}

/*====================================================================
siteFooter Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .siteFooter__container {
    max-width: 86.3636363636vw;
  }
  .siteFooter__links {
    padding: 4.2727272727vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 3.1818181818vw;
    border-top: 0.0909090909vw dashed #000000;
    border-bottom: 0.0909090909vw dashed #000000;
  }
  .siteFooter__linkItm {
    font-size: 1.4545454545vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1.7454545455vw;
    color: #000000;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .siteFooter__linkItm {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .siteFooter__copyright {
    padding: 3.6363636364vw 0 5vw;
    font-size: 1.3636363636vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 2.1818181818vw;
    color: rgba(0, 0, 0, 0.8);
  }
}
/*====================================================================
siteFooter SP
====================================================================*/
@media screen and (max-width: 767px) {
  .siteFooter__container {
    max-width: 950px;
  }
  .siteFooter__links {
    padding: 23.5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 11px;
    border-top: 1px dashed #000000;
    border-bottom: 1px dashed #000000;
  }
  .siteFooter__linkItm {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 12px;
    color: #000000;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .siteFooter__linkItm {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .siteFooter__copyright {
    padding: 23.5px 0 41.5px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 12px;
    color: rgba(0, 0, 0, 0.8);
  }
}
/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-family: "Comfortaa", 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: 130.9090909091vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .siteContainer {
    max-width: calc(100% - 6.25vw);
  }
}

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

/*-----------------------------------------------
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 {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 2px solid #dddddd;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
  width: 150px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.audition__btn.scroll{
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .audition__btn {
    border: 0.1818181818vw solid #dddddd;
    box-shadow: 0px 0.3636363636vw 0.3636363636vw 0px rgba(0, 0, 0, 0.25);
    font-size: 2vw;
    width: 20%;
    bottom: 2vw;
    right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .audition__btn {
    font-size: 2vw;
  }
}
/*-----------------------------------------------
Overlay
------------------------------------------------*/
.overlay {
  position: relative;
}
.overlay__videoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -20;
}
.overlay__elem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  z-index: 3;
  will-change: opacity;
}

/*====================================================================
KV Section PC
====================================================================*/
.keyVisual {
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.keyVisual__container {
  width: 100%;
  position: absolute;
  bottom: 3%;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .keyVisual__container {
    bottom: 3%;
  }
}
.keyVisual__news__text{
  color: #fff;
  font-family: "Comfortaa", sans-serif;
  font-size: min(1.5vw, 16px);
  font-weight: 300;
  letter-spacing: .1em;
  margin-top: 5%;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: .05em;
  text-underline-offset: .2em;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .keyVisual__news__text{
    font-size: min(3.2vw, 24px);
    line-height: 2;
  }
}
.keyVisual__scrollElem {
  position: absolute;
  bottom: 2%;
  left: 7px;
  width: 120px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  transform: rotate(90deg);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
  color: #fff;
  font-family: "Comfortaa", sans-serif;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .keyVisual__scrollElem {
    font-size: 12px;
  }
}
.keyVisual__scrollElem:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.keyVisual__scrollElem:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  animation: scrollBar 2.8s 0.5s infinite;
}

/*====================================================================
KV Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1100px) {
  .keyVisual__scrollElem {
    bottom: 2%;
    left: 0.6363636364vw;
    width: 10.9090909091vw;
    height: 2.0909090909vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    transform: rotate(90deg);
    font-size: 1.3636363636vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1;
    color: #fff;
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  .keyVisual__scrollElem {
    font-size: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .keyVisual__scrollElem:before, .keyVisual__scrollElem:after {
    height: 0.0909090909vw;
  }
}
/*====================================================================
KV Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .keyVisual__scrollElem {
    bottom: 2.7%;
    left: 0;
    width: 60px;
    height: 26px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .keyVisual__scrollElem:before, .keyVisual__scrollElem:after {
    bottom: 0;
    height: 1px;
  }
}
/*====================================================================
ABOUT Section PC
====================================================================*/
.about {
  margin: 0 auto;
  width: 100%;
  background-attachment: fixed;
  position: relative;
}
.about__container {
  margin-left: auto;
  margin-right: auto;
  padding-top: 112px;
  padding-bottom: 135px;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 3;
}
.about__heading {
  --width: 100%;
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  font-family: "Comfortaa", sans-serif;
  padding-bottom: 10px;
  width: 30%;
  position: relative;
}
.about__heading::after {
  content: "";
  display: block;
  border-bottom: 2px solid #fff;
  width: var(--width);
  position: absolute;
  bottom: 0;
  left: 0;
}
.about__message{
  display: block;
  width: 45%;
  height: auto;
}

/*====================================================================
ABOUT Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .about__container {
    max-width: none;
  }
  .about__heading {
    margin-bottom: 5.4545454545vw;
    font-size: 2.9090909091vw;
    padding-left: 9%;
  }
  .about__message{
    margin-left: 9%;
  }
}
/*====================================================================
ABOUT Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .about__container {
    padding-top: 23%;
    padding-bottom: 48%;
  }
  .about__heading {
    margin-bottom: 60px;
    padding-left: 6%;
    font-size: 20px;
    width: 200px;
  }
  .about__heading::after {
    border-bottom: 1px solid #fff;
  }
  .about__message {
    margin-left: 6%;
    width: 70%;
  }
}


/*====================================================================
MV Section PC
====================================================================*/
.mv {
  margin: 0 auto;
  width: 100%;
  background-color: #d9d9d9;
}
.mv__container {
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 144px;
  width: 100%;
  max-width: 900px;
}
.mv__heading {
  --width: 100%;
  color: #000;
  font-size: 32px;
  font-weight: 300;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 80px;
  padding-bottom: 10px;
  width: 30%;
  position: relative;
}
.mv__heading::after {
  content: "";
  display: block;
  border-bottom: 2px solid #000;
  width: var(--width);
  position: absolute;
  bottom: 0;
  left: 0;
}
.mv__slider__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.mv__itms {
  width: 69%;
  display: block;
  overflow: hidden;
}
.mv__itm {
  width: 100% !important;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.youtube_start_02{
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 10;
  cursor: pointer;
  top: 50%;
  left: 50%;
}
.mv__itm__bg {
  width: 100%;
  height: 100%;
}
.mv__itm__pagis {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 10px;
}
.mv__itm__pagis .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
.mv__itm__pagi {
  aspect-ratio: 1/1;
  width: 60px !important;
  border-radius: 50%;
  position: relative;
  border: 1px solid transparent;
  cursor: pointer;
  z-index: 2;
}
.mv__itm__pagi svg {
  aspect-ratio: 1/1;
  position: absolute;
  width: 62px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circle-out 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  stroke-dasharray: 207.34512px 207.34512px;
  stroke-dashoffset: 207.34512px;
  stroke-width: 2px;
  backface-visibility: hidden;
  fill: transparent;
  stroke: #000;
}
.mv__itm__pagi .animated-circle {
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 0.9s ease;
}
.mv__itm__pagi:hover {
  border-color: #e5e5e5;
}
.mv__itm__pagi.is-active svg {
  animation: circle-in 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.mv__itm__pagi.is-active .animated-circle {
  stroke-dashoffset: 0;
}
@keyframes circle-in {
  0% {
    transform: transform(-50%, -50%) rotate(-90deg);
  }
  to {
    transform: transform(-50%, -50%) rotate(90deg);
    stroke-dashoffset: 0;
  }
}
@keyframes circle-out {
  0% {
    transform: transform(-50%, -50%) rotate(90deg);
    stroke-dashoffset: 0;
  }
  to {
    transform: transform(-50%, -50%) rotate(270deg);
    stroke-dashoffset: -207.34512px;
  }
}
.mv__itm__pagi__bord {
  content: "";
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  background-color: #000000;
  border-radius: 9999px;
  transition: all 0.6s ease-in-out 0s;
}

/*====================================================================
MV Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .mv__container {
    padding-top: 9.0909090909vw;
    padding-bottom: 13.0909090909vw;
    max-width: none;
  }
  .mv__heading {
    margin-bottom: 2.7272727273vw;
    padding-left: 9%;
    font-size: 2.9090909091vw;
  }
  .mv__slider__wrapper{
    width: 90%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .mv__heading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__itm {
    width: 100% !important;
  }
  .mv__itm__pagis {
    gap: 0.9090909091vw;
    padding-right: 5%;
  }
  .mv__itm__pagi {
    width: 5.4545454545vw !important;
    border: 0.0909090909vw solid transparent;
  }
  .mv__itm__pagi svg {
    width: 5.6363636364vw;
  }
  .mv__itm__pagi__bord {
    width: 0.7272727273vw;
  }
}
/*====================================================================
MV Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .mv__container {
    padding: 75px 0 115.5px;
    max-width: 100%;
  }
  .mv__heading {
    margin-bottom: 4%;
    padding-left: 0;
    font-size: 20px;
    margin-bottom: 9%;
    padding-left: 6%;
    width: 200px;
  }
  .mv__heading::after {
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 767px) {
  .mv__slider__wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    width: 88%;
  }
  .mv__itms {
    width: 100%;
  }
  .mv__itm {
    width: 100% !important;
  }
  .mv__itm__pagis {
    flex-direction: row;
    margin-top: 11%;
    padding-right: 0;
    width: 100%;
  }
  .mv__itm__pagi {
    width: 9% !important;
    border: 1px solid transparent;
  }
  .mv__itm__pagi svg {
    width: 100%;
    stroke-width: 2px;
  }
  .mv__itm__pagi__bord {
    width: 14%;
  }
}
/*====================================================================
OUR SERVICE Section PC
====================================================================*/
.ourService {
  margin: 0 auto;
  width: 100%;
  background-color: #d9d9d9;
  position: relative;
  overflow: hidden;
}
.ourService__container {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1100px;
  position: relative;
  box-sizing: border-box;
}
.ourService__itms {
  width: 100%;
  display: block;
}
.ourService__itm {
  width: 100%;
  position: relative;
}
.ourService__contents {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ourService__contents.show .ourService__num {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ourService__contents.show .ourService__ttl {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ourService__contents.show .ourService__cap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ourService__heading {
  border-bottom: 2px solid #000;
  color: #000;
  display: inline-block;
  font-size: 32px;
  font-weight: 300;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 60px;
  margin-left: 9%;
  padding-bottom: 10px;
  width: 30%;
}
.ourService__itm:nth-child(even) .ourService__heading {
  margin-left: auto;
  margin-right: 9%;
}
.ourService__inner{
  padding-left: 9%;
}
.ourService__itm:nth-child(even) .ourService__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  padding-left: 0;
  padding-right: 9%;
}
.ourService__num {
  padding-left: 40.5px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Comfortaa", sans-serif;
  position: relative;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform: translate3d(0, 60%, 0);
}
.ourService__num:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 28.5px;
  height: 1px;
  background-color: #000000;
}
.ourService__ttl {
  margin: 30px 0 45px;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Comfortaa", sans-serif;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform: translate3d(0, 60%, 0);
}
.ourService__itm:nth-child(even) .ourService__ttl {
  text-align: right;
}
.ourService__cap {
  width: 100%;
  max-width: 334px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Comfortaa", sans-serif;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transform: translate3d(0, 60%, 0);
}
.ourService__itm:nth-child(even) .ourService__cap {
  text-align: right;
}
.ourService__thumb {
  margin-left: auto;
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ourService__itm:nth-child(even) .ourService__thumb {
  margin-left: 0;
  margin-right: auto;
}
.ourService__thumb__img{
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/*====================================================================
OUR SERVICE Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .ourService__container {
    margin: 0 0 0 auto;
  }
  .ourService__heading {
    font-size: 2.9090909091vw;
    margin-left: 0;
    padding-left: 9%;
  }
  .ourService__itm:nth-child(even) .ourService__heading {
    margin-left: auto;
    margin-right: 0;
    padding-left: 0;
    padding-right: 9%;
    text-align: right;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .ourService__heading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .ourService__num {
    padding-left: 3.6818181818vw;
    font-size: 2.9090909091vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .ourService__num {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .ourService__num:after {
    max-width: 2.5909090909vw;
    height: 0.0909090909vw;
  }
  .ourService__ttl {
    margin: 2.7272727273vw 0 4.0909090909vw;
    font-size: 5vw;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .ourService__ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .ourService__cap {
    max-width: 30.3636363636vw;
    font-size: 1.3636363636vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 2.1818181818vw;
    color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .ourService__cap {
    font-size: 12px;
  }
}
/*====================================================================
OUR SERVICE Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .ourService__itm:nth-child(n+2){
    margin-top: 14%;
  }
  .ourService__contents{
    padding: 0;
    position: relative;
  }
  .ourService__itm:nth-child(even) .ourService__ttl{
    text-align: left;
  }
  .ourService__itm:nth-child(even) .ourService__cap{
    text-align: left;
  }
  .ourService__heading {
    padding-left: 6%;
    margin-bottom: 53px;
    font-size: 20px;
    width: 200px;
  }
  .ourService__itm:nth-child(even) .ourService__heading{
    margin-left: 0;
    padding-left: 6%;
    padding-right: 0;
    text-align: left;
  }
  .ourService__inner{
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    width: 88%;
  }
  .ourService__itm:nth-child(even) .ourService__inner {
    align-items: flex-start;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .ourService__num {
    padding-left: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .ourService__num {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .ourService__num:after {
    max-width: 14.5px;
    height: 1px;
  }
  .ourService__ttl {
    margin: 17.5px 0 17px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .ourService__ttl {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .ourService__cap {
    font-size: 12px;
    line-height: 19.2px;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .ourService__thumb {
    margin-top: 28px;
    width: 100%;
  }
}


/*====================================================================
Partner Section PC
====================================================================*/
.partner{
  background-color: #d9d9d9;
  padding-top: 10%;
  padding-bottom: 15%;
}

.partner__container{
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.partner__heading{
  --width: 100%;
  color: #000;
  font-size: 32px;
  font-weight: 300;
  font-family: "Comfortaa", sans-serif;
  margin-bottom: 80px;
  padding-bottom: 10px;
  width: 37%;
  position: relative;
}
.partner__heading::after {
  content: "";
  display: block;
  border-bottom: 2px solid #000;
  width: var(--width);
  position: absolute;
  bottom: 0;
  left: 0;
}

.partner__wrapper{
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  width: 80%;
}

.partner__logo__link{
  display: block;
  margin-bottom: 7%;
}

.partner__logo__box img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.partner__logo__box img[data-client="Tv Asahi Music"]{
    width: 40%;
    filter: contrast(85%);
}
.partner__logo__box img[data-client="株式会社エクシング"]{
    width: 24%;
}
.partner__logo__box img[data-client="ASOBISYSTEM"]{
    width: 30%;
}
.partner__logo__box img[data-client="株式会社インクス トゥエンター"]{
    width: 33%;
}
.partner__logo__box img[data-client="CK CREATIVE"]{
    width: 25%;
}
.partner__logo__box img[data-client="EntNet Agency"]{
    width: 18%;
}
.partner__logo__box img[data-client="HOVERBOARD,Inc"]{
    width: 35%;
}
.partner__logo__box img[data-client="Sound Bahn"]{
    width: 11%;
    filter: contrast(20%);
}

/*====================================================================
Partner Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .partner__container{
    width: 100%;
    max-width: none;
  }

  .partner__heading {
    margin-bottom: 2.7272727273vw;
    padding-left: 9%;
    font-size: 2.9090909091vw;
  }
}

/*====================================================================
Partner Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .partner{
    padding-top: 15%;
    padding-bottom: 20%;
  }

  .partner__heading{
    margin-bottom: 4%;
    padding-left: 0;
    font-size: 20px;
    margin-bottom: 9%;
    padding-left: 6%;
    width: 230px;
  }
  .partner__heading::after {
    border-bottom: 1px solid #000;
  }

  .partner__wrapper{
    flex-direction: column;
    gap: 0%;
    margin-top: 15%;
    width: 100%;
  }

  .partner__logo__link{
    margin-bottom: 12%;
  }

  .partner__logo__box img[data-client="Tv Asahi Music"]{
    width: 72%;
    filter: contrast(85%);
  }
  .partner__logo__box img[data-client="株式会社エクシング"]{
    width: 34%;
  }
  .partner__logo__box img[data-client="ASOBISYSTEM"]{
    width: 46%;
  }
  .partner__logo__box img[data-client="株式会社インクス トゥエンター"]{
    width: 54%;
  }
  .partner__logo__box img[data-client="CK CREATIVE"]{
    width: 35%;
  }
  .partner__logo__box img[data-client="EntNet Agency"]{
    width: 18%;
  }
  .partner__logo__box img[data-client="HOVERBOARD,Inc"]{
    width: 58%;
  }
  .partner__logo__box img[data-client="Sound Bahn"]{
    width: 11%;
    filter: contrast(20%);
  }
}

/*====================================================================
ABOUT Section PC
====================================================================*/
.company {
  margin: 0 auto;
  width: 100%;
  background-color: #000000;
  position: relative;
}
.company__container {
  margin: 0 auto;
  padding: 65px 0 135px;
  width: 90%;
  max-width: 900px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 72.2px;
  box-sizing: border-box;
}
.company__contents {
  width: 380px;
  position: relative;
}
.company__sns__contents{
  width: 42%;
}
.company__heading {
  margin: 0 auto 21px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 72px;
  color: #fff;
  font-family: "Comfortaa", sans-serif;
}
@media screen and (max-width: 767px) {
  .company__heading {
    font-size: 12px;
  }
}
.company__heading.sns-campaign-heading {
  margin: 0 0 0;
}
.company__cap {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 32px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company__cap {
    font-size: 12px;
  }
}
.company__snsItms {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23.2px;
}
.company__snsItm {
  aspect-ratio: 1/1;
  width: 65%;
  border-radius: 50%;
}
.company__snsItm:nth-child(3) {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.company__snsItm:nth-child(3) .company__sns {
  transform: scale(1.3);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.company__sns {
  border-radius: 50%; /* 丸くするための設定 */
  width: 100%; /* 枠のサイズは変えない */
  height: 100%;
}

/*====================================================================
ABOUT Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .company__container {
    padding: 5.9090909091vw 0 12.2727272727vw;
    gap: 6.5636363636vw;
  }
  .company__contents {
    width: 34.5454545455vw;
  }
  .company__heading {
    margin: 0 auto 1.9090909091vw;
    font-size: 2.9090909091vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 6.5454545455vw;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .company__heading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .company__cap {
    font-size: 1.4545454545vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 2.9090909091vw;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .company__cap {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .company__snsItms {
    gap: 2.1090909091vw;
  }
  .company__snsItm {
    width: 6.9818181818vw;
  }
}
/*====================================================================
ABOUT Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .company__container {
    padding: 20% 0 30%;
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
  .company__contents {
    text-align: center;
    width: auto;
  }
  .company__sns__contents{
    margin-top: 15%;
    text-align: center;
    width: 100%;
  }
  .company__heading {
    margin: 0 auto 21px;
    font-size: 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .company__cap {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 24px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .company__cap {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .company__snsItms {
    justify-content: center;
    gap: 4%;
    margin-top: 10%;
  }
  
  .company__snsItm {
    width: 13%; /* 要素の幅 */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*====================================================================
ABOUT Section PC
====================================================================*/
.contact {
  margin: 0 auto;
  width: 100%;
  background-color: #d9d9d9;
  position: relative;
}
.contact__container {
  margin: 0 auto;
  padding: 65px 0 135px;
  width: 100%;
  max-width: 950px;
}
.contact__heading {
  margin: 0 auto 12px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 72px;
  color: #000000;
  font-family: "Comfortaa", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    font-size: 12px;
  }
}
.contact__mailBtn {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 72px;
  color: #fff;
  text-align: center;
  background-color: #000000;
}
@media screen and (max-width: 767px) {
  .contact__mailBtn {
    font-size: 12px;
  }
}
.contact__notice{
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.contact__notice span{
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .contact__notice {
    font-size: 1.3636363636vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__notice {
    font-size: 10px;
    margin-top: 10px;
  }
}

/*====================================================================
ABOUT Section PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .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;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .contact__heading {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .contact__mailBtn {
    height: 9.0909090909vw;
    font-size: 1.8181818182vw;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 6.5454545455vw;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .contact__mailBtn {
    font-size: 12px;
  }
}
/*====================================================================
ABOUT Section SP
====================================================================*/
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 37px 0 54.5px;
    max-width: 89%;
  }
  .contact__heading {
    margin: 0 auto 12px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 36px;
    color: #000000;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .contact__mailBtn {
    height: 50px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 36px;
    color: #fff;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact__mailBtn {
    font-size: 16px;
  }
}
/*====================================================================
Privacy Policy Page PC
====================================================================*/
.info {
  margin: 0 auto;
  width: 100%;
}
.info.notice--page .info__container {
  padding-bottom: 290px;
}
.info.notice--page .info__heading {
  padding-bottom: 46px;
}
.info__container {
  margin: 172px auto 216px;
  width: 100%;
  max-width: 900px;
}
.info__heading {
  margin: 0 auto 0;
  padding: 0 0 59px;
  border-bottom: 1px solid #000000;
}
.info__contents {
  display: block;
}
.info__contentsItm {
  padding: 34px 0;
  display: block;
  border-bottom: 1px solid #000000;
}
.info .mb__ttl {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 32px;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .info .mb__ttl {
    font-size: 12px;
  }
}
.info .mb__ttl.big--ttl {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 72px;
  color: black;
}
@media screen and (max-width: 767px) {
  .info .mb__ttl.big--ttl {
    font-size: 12px;
  }
}
.info .mb__desc {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 32px;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .info .mb__desc {
    font-size: 12px;
  }
}
.info .mb__desc a {
  position: relative;
  border-bottom: 1px solid #000000;
}

/*====================================================================
Privacy Policy Page PC Breakpoint
====================================================================*/
@media screen and (max-width: 1200px) {
  .info.notice--page .info__container {
    padding-bottom: 26.3636363636vw;
  }
  .info.notice--page .info__heading {
    padding-bottom: 4.1818181818vw;
  }
  .info__container {
    margin: 15.6363636364vw auto 19.6363636364vw;
    max-width: 81.8181818182vw;
  }
  .info__heading {
    padding: 0 0 5.3636363636vw;
    border-bottom: 0.0909090909vw solid #000000;
  }
  .info__contentsItm {
    padding: 3.0909090909vw 0;
    border-bottom: 0.0909090909vw solid #000000;
  }
  .info .mb__ttl {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 2.9090909091vw;
    color: black;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .info .mb__ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .info .mb__ttl.big--ttl {
    font-size: 2.1818181818vw;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 6.5454545455vw;
    color: black;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .info .mb__ttl.big--ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .info .mb__desc {
    font-size: 1.4545454545vw;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 2.9090909091vw;
    color: black;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .info .mb__desc {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .info .mb__desc a {
    border-bottom: 0.0909090909vw solid #000000;
  }
}
/*====================================================================
Privacy Policy Page SP
====================================================================*/
@media screen and (max-width: 767px) {
  .info.notice--page .info__container {
    padding-bottom: 120.5px;
  }
  .info.notice--page .info__heading {
    padding-bottom: 46.5px;
  }
  .info__container {
    margin: 172px auto 216px;
    max-width: 86%;
  }
  .info__heading {
    padding: 0 0 39.5px;
    border-bottom: 1px solid #000000;
  }
  .info__contentsItm {
    padding: 19px 0;
    border-bottom: 1px solid #000000;
  }
  .info .mb__ttl {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 20px;
    color: black;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .info .mb__ttl {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .info .mb__ttl.big--ttl {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 36px;
    color: black;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .info .mb__ttl.big--ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .info .mb__desc {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 20px;
    color: black;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .info .mb__desc {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .info .mb__desc a {
    border-bottom: 1px solid #000000;
  }
}