@charset "UTF-8";
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
          animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 2s 0.5s forwards;
          animation: logo_fade 2s 0.5s forwards;
  width: 16rem;
}

@-webkit-keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

.mv {
  width: 100%;
  height: 95vh;
  overflow: hidden;
  background: url(../img/bbc-mv-mb.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .mv {
    background: url(../img/bbc-mv-pc.jpg);
    background-size: cover;
    background-position: center;
  }
}

.mv img {
  width: auto;
  height: 100vh;
  -webkit-animation: background-loop 30s linear infinite;
          animation: background-loop 30s linear infinite;
}

.mv .catch {
  width: 100%;
  height: 100%;
  position: relative;
}

.mv .catch img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 1024px) {
  .mv .catch img {
    width: 40%;
  }
}

.mv .scrollbar-text_04 {
  display: inline-block;
  position: absolute;
  bottom: 10rem;
  padding: 0 0.5rem 12rem;
  color: #fff;
  font-size: 14px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  right: 2rem;
}

.mv .scrollbar_04 {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.mv .scrollbar_04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
}

.mv .scrollbar_04::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
          animation: circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 95px;
  }
  100% {
    bottom: 0px;
  }
}

@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

body {
  margin: 0;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  /* 背景色と文字色の変更にスムーズなトランジションを追加 */
}

section {
  /* 各セクションの高さを設定 */
}

span {
  position: absolute;
  top: 20px;
  font-size: 12px;
}

.about {
  background: url(../img/beaubelle-logo.jpg);
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.95);
  background-blend-mode: lighten;
  padding: 0 0 5rem;
}

@media screen and (min-width: 1024px) {
  .about {
    padding: 10rem 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .about .left {
    width: 50%;
  }
}

.about .right {
  width: 50%;
}

@media screen and (min-width: 1024px) {
  .about .right {
    padding: 5rem 0;
  }
}

.about .right .img-box {
  width: 100%;
  height: 45rem;
  padding: 3rem 2rem;
  background: url(../img/bbc-about-1.jpg);
  background-position: center;
  background-size: cover;
}

.about .title {
  padding: 5rem 2rem 2rem;
}

.about .title h2 {
  font-size: 2.4rem;
}

@media screen and (min-width: 1024px) {
  .about .title h2 {
    font-size: 4rem;
  }
}

.about .title p {
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .about .title p {
    font-size: 2rem;
  }
}

.about .text {
  padding: 2rem 2rem 3rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .about .text {
    font-size: 1.6rem;
    padding: 3rem 5rem 3rem 3rem;
  }
}

.about .text h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .about .text h3 {
    font-size: 2rem;
  }
}

.about .img {
  width: 100%;
  height: auto;
  margin: 0 0 2rem;
}

.section-title {
  padding: 0 2rem 1rem;
  margin: 0 0 5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.section-title p {
  font-size: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .section-title p {
    font-size: 4rem;
  }
}

.section-title :root {
  --line-color: #191f29;
  /* 初期値（黒系） */
}

.section-title h3 {
  font-size: 1.4rem;
  line-height: 2;
  padding: 0 3rem;
  position: relative;
}

.section-title h3::before, .section-title h3::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.1rem;
  top: 50%;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  background-color: var(--line-color);
  /* ← CSS変数を設定 */
}

.section-title h3::before {
  left: 1.5rem;
}

.section-title h3::after {
  right: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .section-title h3 {
    font-size: 2rem;
  }
}

.section-title .border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
}

.middle-img {
  opacity: 0.4;
}

@media screen and (min-width: 1024px) {
  .middle-img {
    width: 70%;
  }
}

.service {
  height: auto;
  padding: 15rem 0 5rem;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .service {
    padding: 30rem 10% 10rem;
  }
}

.service .s-c {
  padding: 0 2rem 4rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c {
    padding: 4rem 2rem 8rem;
  }
}

@media screen and (min-width: 1024px) {
  .service .s-c .flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.service .s-c .flex-box .left {
  padding: 5rem 0 2rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .flex-box .left {
    width: 50%;
    padding: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .service .s-c .flex-box .right {
    width: 50%;
    padding: 3rem;
  }
}

.service .s-c .title {
  margin: 0 0 3rem;
  position: relative;
}

.service .s-c .title .num {
  position: absolute;
  top: -5rem;
  left: -2rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .title .num {
    top: -8rem;
    left: -5rem;
  }
}

.service .s-c .title .num p {
  font-size: 5rem;
  opacity: 0.1;
}

@media screen and (min-width: 1024px) {
  .service .s-c .title .num p {
    font-size: 8rem;
  }
}

.service .s-c .title h4 {
  font-size: 1.8rem;
  padding: 0 0 0 1rem;
  margin: 0 0 1rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .title h4 {
    font-size: 2rem;
  }
}

.service .s-c .title .border {
  background-color: #fff;
  height: 0.1rem;
}

.service .s-c .title p {
  text-align: right;
  font-size: 2rem;
  opacity: 0.1;
}

@media screen and (min-width: 1024px) {
  .service .s-c .title p {
    font-size: 3rem;
  }
}

.service .s-c .text {
  line-height: 2;
  margin: 0 0 3rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .text {
    font-size: 1.6rem;
  }
}

.service .s-c .img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .service .s-c .img img {
    width: 100%;
  }
}

.service .s-c .child-c {
  padding: 0 0 0 1rem;
}

.service .s-c .child-c .block {
  border-left: 0.1rem solid #fff;
  padding: 4rem 0 2rem 2rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .child-c .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 2rem;
  }
}

.service .s-c .child-c .block .c {
  padding: 0 0 3rem;
}

@media screen and (min-width: 1024px) {
  .service .s-c .child-c .block .c {
    padding: 2rem;
    width: 33%;
  }
}

.service .s-c .child-c .block .c .t {
  border-bottom: #fff solid 0.1rem;
  padding: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .service .s-c .child-c .block .c .t {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.6rem;
  }
}

.service .s-c .child-c .block .c .c-text {
  padding: 1rem 1rem 2rem;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .service .s-c .child-c .block .c .c-text {
    font-size: 1.4rem;
  }
}

.service .s-c .child-c .block .c .btn a {
  font-size: 1.2rem;
  border-radius: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 0 0 auto;
  border: #fff solid 0.1rem;
}

.service .s-c .child-c .block .c .btn a p {
  padding: 1rem 4rem;
}

.service .s-c .child-c .program {
  width: 100vw;
  margin-left: calc(((100vw - 100%) / 2) * -1.2);
}

@media screen and (min-width: 1024px) {
  .service .s-c .child-c .program img {
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
}

.service .bottom {
  padding: 3rem 0;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .service .bottom {
    font-size: 1.6rem;
  }
}

.service .bottom .btn a {
  font-size: 1.2rem;
  color: #fff;
  border: 0.1rem solid #fff;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 4rem;
  margin: 2rem 0 2rem auto;
  text-decoration: none;
  cursor: pointer;
  z-index: 50;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 1024px) {
  .service .bottom .btn a {
    font-size: 1.4rem;
    padding: 2rem 6rem;
  }
}

.service .bottom .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8rem;
  width: 10rem;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service .bottom .btn a:hover::after {
  -webkit-animation: OutIn-Line 700ms;
          animation: OutIn-Line 700ms;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@-webkit-keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  51% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  51% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

.information {
  padding: 10rem 0;
}

@media screen and (min-width: 1024px) {
  .information {
    padding: 10rem 10%;
  }
}

.information .massage {
  padding: 0 0 10rem;
}

@media screen and (min-width: 1024px) {
  .information .massage .flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3rem 0;
  }
  .information .massage .flex-box .left {
    width: 50%;
    padding: 2rem;
  }
  .information .massage .flex-box .left img {
    width: 90%;
    margin: 0 0 0 auto;
  }
  .information .massage .flex-box .right {
    width: 50%;
  }
}

.information .massage .img {
  padding: 0 4rem 2rem 0;
}

.information .massage .img img {
  width: 100%;
}

.information .massage .text {
  padding: 2rem;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .information .massage .text {
    font-size: 1.6rem;
  }
}

.information .massage .text-2 {
  padding: 0 4rem;
  font-size: 1.4rem;
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .information .massage .text-2 {
    font-size: 1.4rem;
  }
}

.news {
  padding: 5rem 2rem;
}

.news .iscvblock .pt-cv-readmore.btn {
  background: #fff;
  color: #191f29;
  border: solid 0.1rem #191f29;
}

@media screen and (min-width: 1024px) {
  .news .iscvblock .pt-cv-readmore.btn {
    padding: 1rem 0;
    width: 50%;
    margin: 3rem 0;
  }
}

.news .pt-cv-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 1024px) {
  .news .pt-cv-page {
    display: inherit;
  }
}

.news .pt-cv-wrapper {
  overflow-x: auto;
}

@media screen and (min-width: 1024px) {
  .news .pt-cv-wrapper {
    overflow-x: inherit;
  }
}

.news .pt-cv-view {
  width: 240%;
}

@media screen and (min-width: 1024px) {
  .news .pt-cv-view {
    width: 100%;
  }
}

.news .pt-cv-wrapper .btn {
  border-radius: inherit;
}

.news h4.pt-cv-title {
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .news h4.pt-cv-title {
    font-size: 1.6rem;
    margin: 0 0 2rem;
  }
}

.news .pt-cv-content {
  font-size: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .news .pt-cv-content {
    font-size: 1.4rem;
  }
}

.news .pt-cv-blockgrid.list1 .pt-cv-content-item {
  padding-bottom: 5rem;
}

.news .pt-cv-content-item {
  position: relative;
}

.news .pt-cv-content-item::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 1.0rem;
  background-color: #191f29;
  bottom: 2rem;
  right: 0rem;
  z-index: 5;
}
/*# sourceMappingURL=top.css.map */