@charset "UTF-8";
html {
  font-size: 62.5%;
}

body:has(.menu.is-active) {
  /* 背景ページのスクロールを止める */
  overflow: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.header {
  background-color: #fff;
  border-top: 1px solid #cccccc;
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
}
.header .header__inner {
  padding: 1.3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header .header__inner {
    padding: 2.4rem 3rem;
  }
}
@media screen and (min-width: 992px) {
  .header .header__inner {
    padding: 2.4rem 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .header__logo {
  width: 20rem;
  position: relative;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .header .header__logo:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) {
  .header .header__logo {
    width: 20rem;
  }
}
@media screen and (min-width: 992px) {
  .header .header__logo {
    width: 30.6rem;
  }
}
.header .header__logo a {
  display: block;
}
.header .header__linkButtonWrap {
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
  align-items: center;
  position: relative;
  z-index: 150;
}
@media screen and (min-width: 768px) {
  .header .header__linkButtonWrap {
    -moz-column-gap: 25px;
         column-gap: 25px;
    display: none;
  }
}
.header .header__linkWrap,
.header .header__link {
  width: 92px;
}
@media screen and (min-width: 768px) {
  .header .header__linkWrap,
  .header .header__link {
    width: 184px;
  }
}
.header .header__link {
  aspect-ratio: 184/36;
  display: block;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .header .header__link:hover {
    opacity: 0.5;
  }
}
.header .header__button {
  width: 3.6rem;
  height: 4.1rem;
  position: relative;
  z-index: 100;
  cursor: pointer;
  grid-area: button;
  transition: opacity 0.25s;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: flex-end;
}
@media (any-hover: hover) {
  .header .header__button:hover {
    opacity: 0.5;
  }
}
.header .header__button .header__buttonLine {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 1rem;
  transition: height 0.3s ease;
}
.header .header__button .header__buttonLine::before, .header .header__button .header__buttonLine::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.header .header__button .header__buttonLine::before {
  transform: translateY(calc(-50% + 1rem));
}
.header .header__button .header__buttonLine::after {
  transform: translateY(calc(-50% - 1rem));
}
.header .header__button .header__text {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}
.header .header__button.is-active .header__buttonLine {
  height: 0;
}
.header .header__button.is-active .header__buttonLine::before {
  transform: translateX(3%) translateY(-26%) rotate(45deg);
}
.header .header__button.is-active .header__buttonLine::after {
  transform: translateX(0%) translateY(-50%) rotate(-45deg);
}
.header .header__button.is-active .header__text {
  display: none;
}
.header .menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0px;
  transition: 0.3s ease;
  width: 100%;
  height: 100vh;
  z-index: 110;
  top: 0;
}
.header .menu .menu__inner {
  position: relative;
  z-index: 10;
}
.header .menu .menu__inner .menu__list {
  display: flex;
  flex-direction: column;
  padding: 50px 10px 82px;
}
@media screen and (min-width: 768px) {
  .header .menu .menu__inner .menu__list {
    padding: 0px 10px 24px;
  }
}
.header .menu .menu__inner .menu__list .menu__item {
  position: relative;
  text-align: center;
}
.header .menu .menu__inner .menu__list .menu__item .menu__itemLink {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  transition: opacity 0.25s;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .header .menu .menu__inner .menu__list .menu__item .menu__itemLink:hover {
    opacity: 0.5;
  }
}
.header .menu .menu__inner .menu__list .menu__item + .menu__item::before {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - 60px);
  background-color: #000000;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
}
@media screen and (min-width: 768px) {
  .header .menu .menu__inner .menu__list .menu__item + .menu__item::before {
    width: calc(100% - 40px);
  }
}
.header .menu .menu__inner .menu__itemName {
  color: #000000;
  line-height: 1.5;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Lora", serif;
}
.header .menu .menu__inner .menu__itemName._studiobymul {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.header .menu .menu__inner .menu__itemName._studiobymul .logo {
  width: 16rem;
}
.header .menu .menu__inner .menu__itemName._studiobymul .tagetbrank {
  width: 1.1rem;
}
.header .menu .menu__inner .menu__itemName._tbeaut {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.header .menu .menu__inner .menu__itemName._tbeaut .bag {
  width: 2.4rem;
}
.header .menu .menu__inner .menu__itemName._tbeaut .text {
  line-height: 1.5;
  font-size: 2.3rem;
  font-weight: 400;
  padding-top: 0.5rem;
}
.header .menu.is-active {
  opacity: 1;
  visibility: visible;
  transition: 0.5s ease;
}
.header .menu .menu__background {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  z-index: 5;
  mix-blend-mode: multiply;
}
.header .menuPC .menuPC__inner .menuPC__list {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
@media screen and (min-width: 992px) {
  .header .menuPC .menuPC__inner .menuPC__list {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemLink {
  position: relative;
  display: block;
  text-decoration: none;
  transition: opacity 0.25s;
  padding: 1rem;
}
@media (any-hover: hover) {
  .header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemLink:hover {
    opacity: 0.5;
  }
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemLink:has(._tbeaut) {
  padding-top: 0;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemLink._current::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #cccccc;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._studiobymul {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._studiobymul .logo {
  width: 16rem;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._studiobymul .tagetbrank {
  width: 1.1rem;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._tbeaut {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._tbeaut .bag {
  width: 2.4rem;
}
.header .menuPC .menuPC__inner .menuPC__list .menuPC__item .menuPC__itemName._tbeaut .text {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.main {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.commonHeading .commonHeading__text {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-family: "Lora", serif;
}
@media screen and (min-width: 768px) {
  .commonHeading .commonHeading__text {
    font-size: 3.8rem;
  }
}
.commonHeading .commonHeading__img._BelleStudioByMulHeading {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .commonHeading .commonHeading__img._BelleStudioByMulHeading {
    width: 100%;
    max-width: 45.3rem;
  }
}

.commonSection._gray {
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .commonSection._concept .commonSection__inner {
    padding-top: 2.8rem;
    padding-bottom: 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .commonSection._concept .commonSection__inner {
    padding-top: 5.5rem;
  }
}
.commonSection._whithoutPt .commonSection__inner {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .commonSection._linkList .commonSection__inner {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
.commonSection .commonSection__inner {
  padding: 9rem 1.2rem 6rem;
}
@media screen and (min-width: 768px) {
  .commonSection .commonSection__inner {
    padding: 10rem 2.4rem;
  }
}

.commonLink {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  color: #000000;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 2rem;
  min-width: 27.75rem;
  text-align: center;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .commonLink:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) {
  .commonLink {
    min-width: 25.8rem;
    padding: 0.8rem 2.5rem;
  }
}
.commonLink:not([target=_blank])::before {
  content: "";
  position: absolute;
  display: block;
  aspect-ratio: 1/1;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 1rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.commonLink[target=_blank] {
  padding: 1.2rem 4rem;
}
@media screen and (min-width: 768px) {
  .commonLink[target=_blank] {
    padding: 0.8rem 4rem;
  }
}
.commonLink[target=_blank] .commonLink__text {
  position: relative;
  display: inline-block;
  padding-right: 2.5rem;
}
.commonLink[target=_blank] .commonLink__text::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("/base/pc/store/special/bellesympathique/2026/img/common/icon-tagetbrank-gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1rem;
  right: 0.5rem;
  aspect-ratio: 1/1;
  top: 50%;
  transform: translateY(-30%);
}
.commonLink[target=_blank] .commonLink__text._bellestudiobymul::before {
  transform: translateY(0%);
}
.commonLink[target=_blank] .commonLink__text._bellestudiobymul .commonLink__img {
  width: 12.8rem;
}
@media screen and (min-width: 768px) {
  .commonLink[target=_blank] .commonLink__text._bellestudiobymul .commonLink__img {
    width: 15.4rem;
  }
}
.commonLink._narrow {
  padding: 1.2rem 1rem;
  min-width: 24.8rem;
}
@media screen and (min-width: 768px) {
  .commonLink._narrow {
    padding: 0.6rem 1rem;
    min-width: 23rem;
  }
}
.commonLink .commonLink__text {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .commonLink .commonLink__text {
    font-size: 1.6rem;
  }
}

.commonbrandList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3.9344262295%;
       column-gap: 3.9344262295%;
  max-width: 30.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  row-gap: 4rem;
}
@media screen and (min-width: 576px) {
  .commonbrandList {
    margin-top: 5.5rem;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2.1077283372%;
         column-gap: 2.1077283372%;
    row-gap: 9.5rem;
    max-width: 85.4rem;
  }
}
@media screen and (min-width: 768px) {
  .commonbrandList {
    grid-template-columns: repeat(4, 1fr);
  }
}

.commonBrand {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 0.2rem;
  text-decoration: none;
  color: #000000;
}
.commonBrand[href] {
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .commonBrand[href]:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 768px) {
  .commonBrand {
    row-gap: 1rem;
  }
}
.commonBrand .commonBrand__data {
  text-align: center;
}
.commonBrand .commonBrand__data .commonBrand__heading {
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Lora", "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .commonBrand .commonBrand__data .commonBrand__heading {
    font-size: 1.8rem;
  }
}
.commonBrand .commonBrand__data .commonBrand__kana {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .commonBrand .commonBrand__data .commonBrand__kana {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
.commonBrand .commonBrand__data .commonBrand__shoplist {
  display: flex;
  justify-content: center;
  background-color: #e6e6e6;
  margin-top: 1rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .commonBrand .commonBrand__data .commonBrand__shoplist {
    margin-top: 1.5rem;
    padding: 0.2rem 1rem;
  }
}
.commonBrand .commonBrand__data .commonBrand__shoplist li {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.commonBrand .commonBrand__data .commonBrand__shoplist li + li {
  position: relative;
  padding-left: 1rem;
}
.commonBrand .commonBrand__data .commonBrand__shoplist li + li::before {
  content: "・";
  position: absolute;
  display: block;
  left: -0.1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.commonBrand .commonBrand__img {
  background-color: #fff;
}
.commonBrand .commonBrand__img a {
  display: block;
  width: 100%;
  height: 100%;
}
.commonBrand .commonBrand__img {
  width: 100%;
  aspect-ratio: 200/130;
  position: relative;
}
.commonBrand .commonBrand__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.commonBrand .commonBrand__link {
  display: block;
  height: 100%;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .commonBrand .commonBrand__link:hover {
    opacity: 0.5;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.sp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .sp-inline {
    display: none;
  }
}

.commonNote {
  max-width: 32.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .commonNote {
    max-width: 80rem;
  }
}
.commonNote p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .commonNote p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}/*# sourceMappingURL=common.css.map */