* {
  box-sizing: border-box;
  font-family: "font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;";
  color: #212529;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: calc(1 / 1920 * 100vw);
}

body {
  width: 100%;
  height: 100%;
}

.flex {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col {
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.a-c {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.j-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.j-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.j-a {
  -webkit-box-pack: distribute;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.container {
  width: 100%;
  padding-inline: 358rem;
}

.sentence-space {
  display: inline-block;
  width: 20px;
  /* Adjust the sentence spacing here */
}

a {
  text-decoration: none;
}

/* ======== Header =========== */
/* Open Menu Button */
#openMenu {
  position: fixed;
  top: 40rem;
  right: 40rem;
  z-index: 1001;
  background-color: rgba(190, 190, 190, 0.5);
  filter: grayscale(20%) brightness(1.1);
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: 0.3s ease;
  gap: 10px;
}

.line {
  background-color: #fff;
  width: 40px;
  height: 3px;
  border-radius: 2px;
}

/* Hide the button when menu is active */
#openMenu.hide {
  display: none;
}

/* Side Menu */
.menu {
  position: fixed;
  top: 0;
  right: -250px;
  /* hide it outside screen (from right) */
  width: 250px;
  height: 100%;
  background-color: rgba(51, 128, 193, 0.8);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.4s ease;
  z-index: 1000;
}

/* When menu is active */
.menu.active {
  right: 0;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Menu links */
.menu nav ul {
  list-style: none;
  padding: 0;
}

.menu nav ul li {
  margin: 20px 0;
}

.menu nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 10px 20px;
}

/* ==== Main ====== */

main .first_view {
  position: relative;
  width: 100%;
  height: 720px;
  margin-bottom: 142rem;
  background: url("../img/mfb/new_bg.png") no-repeat center / cover;
}

main .first_view img {
  position: absolute;
  top: 0;
  right: 0;
  width: 1330px;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(1.1);
  z-index: -15;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  background: linear-gradient(105deg,
      rgb(28 39 103) 0%,
      rgb(47 58 131) 10%,
      rgb(227 196 235 / 70%) 60%,
      rgba(216, 180, 226, 0.5) 80%,
      rgba(216, 180, 226, 0.3) 100%);

  pointer-events: none;
  /* Allows clicks to pass through */
}

main .first_view .star_gp img:nth-of-type(1) {
  width: 169px;
  height: auto;
  z-index: 1000;
  top: 450px;
  left: 100rem;
}

main .first_view .star_gp img:nth-of-type(2) {
  width: 270px;
  height: auto;
  z-index: 1000;
  top: 460px;
  left: 220rem;
}

main .first_view .text p:nth-of-type(1) {
  width: 585rem;
  font-size: 73rem;
  color: #ffffff;
}

main .first_view .text p:nth-of-type(2) {
  width: 567rem;
  font-size: 35rem;
  color: #ffffff;
}

/* =========== */

.ribbon {
  display: inline-block;
  padding: 8px 30rem;
  background: #0d4c81;
  /* blue color */
  /* font-weight: bold; */
  position: relative;
  text-align: center;
  border-radius: 0;
  /* no rounding */
  height: 60px;
  margin-bottom: -30px;
}

.ribbon p {
  font-size: 30px;
  color: #ffffff;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

/* Create the cut-off sides */

.ribbon-left-top {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0px;
  border-left: 20px solid transparent;
  border-top: 30px solid #0d4c81;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: -19px;
}

.ribbon-left-bottom {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0px;
  border-left: 20px solid transparent;
  border-top: 0;
  border-bottom: 30px solid #0d4c81;
  position: absolute;
  bottom: 0;
  left: -19px;
}

.ribbon-right-top {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0;
  border-top: 30px solid #0d4c81;
  border-bottom: 0;
  position: absolute;
  top: 0;
  right: -19px;
}

.ribbon-right-bottom {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 0;
  border-top: 0;
  border-bottom: 30px solid #0d4c81;
  position: absolute;
  bottom: 0;
  right: -19px;
}


/* Highlight part (optional, if you want the date part to stand out) */
.ribbon span {
  color: #ffcc00;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
  /* or keep it white if you want */
}

/* ========== */

/* ----- ribbon_tag ------- */
main .ribbon_tag {
  background: url(../img/mfb/bg_grid.png) center / 150%;
  width: 100%;
  border: 1px solid #e2e2e2;
  padding-inline: 98rem;
  box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 80rem;
  padding-bottom: 50rem;
}

main .ribbon_tag p {
  font-size: 21rem;
  margin-top: 83rem;
  text-align: center;
  color: #212529;
  letter-spacing: .05em;
  line-height: 2em;
}

main .ribbon_tag .rb_Btn {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  margin-top: 46rem;
  width: 300rem;
  font-size: 21rem;
  height: 55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
  color: #303030;
}

main .container .explain {
  width: 100%;
  margin-bottom: 40rem;
}

main .container .fig_gp {
  position: relative;
  width: 368px;
  background: url("../img/mfb/explain.png") no-repeat center / contain;
}

main .container .text {
  width: 70%;
  font-size: 27rem;
  padding-left: 35rem;
  margin-bottom: 32rem;
}

main .container .description {
  width: 100%;
  background-color: #f5f5f5;
  padding-block: 60rem;
  margin-bottom: 121rem;
}

main .description .top {
  width: fit-content;
  padding-inline: 20rem;
  background-color: #0a4f88;
  font-size: 26rem;
  color: #ffffff;
  border-radius: 20px;
}

main .description .student_num .num {
  font-size: 200rem;
  color: #0a4f88;
}

main .description .student_num .num span {
  font-size: 64rem;
  color: #0a4f88;
}

main .description .student_num .num span:nth-child(2) {
  font-size: 32rem;
  color: #212529;
}

main .description .percent .num {
  font-size: 200rem;
  color: #0a4f88;
}

main .description .percent .num span {
  font-size: 64rem;
  color: #0a4f88;
}

main .description .result p:nth-of-type(1) {
  font-size: 64rem;
  color: #0a4f88;
}

main .description .result p:nth-of-type(1) span {
  font-size: 48rem;
}

main .description .result p:nth-of-type(2) {
  font-size: 99rem;
}

main .description .explain {
  padding-inline: 50rem;
  text-align: center;
}

main .description .explain p {
  font-size: 24rem;
}

/* ---- Members ---- */

main .members {
  width: 100%;
  margin-bottom: 100rem;
  gap: 20rem;
}

main .members .left .title {
  position: relative;
  font-size: 50rem;
  color: #0a4f88;
  margin-bottom: 72rem;
}

main .members img {
  width: 540rem;
}

main .members .title img {
  width: 100%;
  height: 250rem;
  position: absolute;
  top: 0;
  left: 0;
}

main .members .content {
  font-size: 20rem;
  gap: 20rem;
}

/* ----- Step Group ------ */
main .flow {
  width: 100%;
  margin-bottom: 121rem;
}

main .flow .top .step_group {
  width: 100%;
  border: 1px solid #c7c7c7;
  padding-block: 60rem;
  padding-inline: 57rem;
  align-items: flex-start;
  position: relative;
}

main .flow .top .title {
  width: 45%;
  font-size: 40rem;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: -40rem;
  position: relative;
  z-index: 20;
}

main .flow .step {
  width: 360rem;
}

main .flow .step .circle {
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background: linear-gradient(0deg, #114a8d 0%, #f04679 100%);
  font-size: 35rem;
  padding: 50rem;
  margin-bottom: 20rem;
}

main .flow .step .circle p {
  color: #ffffff;
}

main .flow .step .circle p:nth-of-type(1) {
  font-size: 14rem;
}

main .flow .top .step_group .tip p:nth-of-type(1) {
  font-size: 30rem;
  margin-bottom: 25rem;
}

main .flow .top .step_group .tip p:nth-of-type(2) {
  font-size: 20rem;
  text-align: center;
}

main .bottom {
  margin-top: 41rem;
}

main .bottom p {
  margin-bottom: 34rem;
  font-size: 21rem;
}

main .bottom .sign_Btn {
  width: 330rem;
  height: 55rem;
  background-color: #0a4f88;
  padding-inline: 30rem;
  padding-block: 21rem;
}

main .bottom .sign_Btn p {
  margin: 0;
  color: #ffffff;
  font-size: 21rem;
}

/* ---- sounds of clients ----- */
main .container .sounds {
  width: 100%;
  margin-bottom: 124rem;
}

main .container .sounds .content {
  width: 100%;
  padding: 50rem;
  border: 1px solid #c7c7c7;
}

main .container .sounds .client {
  background-color: #edf4f9;
  width: 530rem;
  gap: 30rem;
  padding-inline: 40rem;
  padding-block: 47rem;
}

main .container .sounds .title {
  width: 45%;
  font-size: 40rem;
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: -40rem;
  position: relative;
  z-index: 20;
}

main .container .sounds .client img {
  width: 124rem;
  height: 133rem;
  margin-bottom: 11rem;
}

main .container .sounds .photo p {
  font-size: 16rem;
}

main .container .sounds .tip p {
  font-size: 20rem;
}

/* about */

.about img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.about {
  background: url(../img/mfb/22484385.png);
  background-size: cover;
  padding: 150px 0px;
  background-repeat: no-repeat;
  position: relative;
}

.about-title h2 img {
  width: auto;
  height: 70px;
}

.about-inner {
  width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}

.about-box {
  width: 48%;
  text-align: center;
}

.about-box-inner {
  width: 90%;
  margin: 0 auto;
}

.about-box3, .about-box4, .about-box5, .about-box6 {
  margin-top: 30px;
}

.about-box:not(.about-box6) {
  background: #fff;
  padding: 50px 0px;
}

.about-box span {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

.about-box span:first-child {
  color: #0a4f88;
}

.about-box span:last-of-type {
  letter-spacing: .05em;
  color: #212529;
  padding-left: 5px;
}

.about-box p {
  font-size: 17px;
  margin-top: 20px;
  color: #212529;
}

.about-box6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-logo {
  width: 70%;
  margin: 0 auto;
}

.about-btn {
  width: 600px;
  height: 100px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -50px;
  margin: auto;
  background: linear-gradient(to right, #104f85, #e82a5d);
  text-align: center;
}

.about-btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-image: url(../img/mfb/apply-arrow.png);
  background-repeat: no-repeat;
  background-position: 90%;
}

.about-btn span {
  font-size: 24px;
  color: #fff;
}

@media (max-width: 1250px) {
  .about-inner {
    width: 90%;
  }

  .about-box span {
    font-size: 24px;
  }

  .about {
    padding: 120px 0px;
  }

  .about-box p {
    font-size: 16px;
  }

  .about-box span:last-of-type {
    line-height: 1.2;
  }
}

@media (max-width: 750px) {

  .about-title h2 img {
    height: 45px;
  }

  .about {
    padding: 80px 0px 50px;
  }

  .about-wrapper {
    display: block;
    margin-top: 30px;
  }

  .about-box {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .about-box:not(.about-box6) {
    padding: 40px 0px;
  }

  .about-box span {
    font-size: 20px;
  }

  .about-box p {
    font-size: 15px;
  }

  .about-box span:last-of-type {
    letter-spacing: .02em;
  }

  .about-btn {
    width: 90%;
    height: 80px;
    bottom: -40px;
  }

  .about-logo {
    width: 55%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .about-btn span {
    font-size: 18px;
  }

}


/* ======= */

main .faq-content {
  width: 100%;
  margin-bottom: 157rem;
  margin-top: 157rem;
}

.faq {
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
}

main .faq-content .title {
  width: 45%;
  text-align: center;
  margin-bottom: 30px;
  font-size: 40rem;
}

.faq-item {
  width: 100%;
  border-block: 1px solid #ddd;
  padding: 15px 0;
  margin-bottom: 10px;
  padding-inline: 40rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 20rem;
}

.toggle {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding-left: 20px;
  color: #555;
  line-height: 1.5;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20rem;
}

/* ======= profile ===== */
main .profile {
  margin-bottom: 190rem;
}

main .profile .container {
  gap: 40rem;
}

main .profile .photo {
  background: url("../img/mfb/IMG_1434.png") no-repeat center / contain;
  position: relative;
  width: 100%;
}

main .profile .pro_info {
  width: 100%;
}

main .profile .photo img {
  width: 800rem;
  position: absolute;
  top: 260rem;
  left: -275rem;
  z-index: -1;
}

main .profile .container .pro_info .title {
  font-size: 100rem;
  color: #0a4f88;
  margin-bottom: 30rem;
}

main .profile .job {
  position: relative;
}

main .profile .job img {
  position: absolute;
  top: 0;
  left: 340rem;
  z-index: -1;
}

main .profile .job p {
  font-size: 20rem;
}

main .profile .name p {
  font-size: 48rem;
  margin-bottom: 10rem;
}

main .profile .name span {
  font-size: 21rem;
}

main .profile .detail p {
  font-size: 20rem;
  margin-bottom: 15rem;
}

main .profile .detail p:nth-of-type(1) {
  font-size: 29rem;
  color: #0a4f88;
  margin-bottom: 20rem;
}

/* ==== footer ======== */
footer {
  width: 100%;
  height: 135rem;
  border-top: 1px solid rgba(160, 160, 160, 0.8);
}

footer .container {
  width: 100%;
  font-size: 18rem;
}



.tb-br {
  display: none;
}

.sp-br {
  display: none;
}

/* =================== Responsive ================== */
@media (max-width: 1440px) {
  html {
    font-size: calc(1 / 1440 * 100vw);
  }

  .container {
    padding-inline: 200rem;
  }

  main .ribbon_tag {
    padding-inline: 40rem;
  }

  .ribbon p {
    font-size: 32px;
  }

  /* .ribbon {
    width: 900px;
  } */

  .ribbon {
    width: 650px;
    height: 120px;
    margin-bottom: -60px;
  }

  main .description .student_num .num {
    font-size: 135rem;
  }

  main .description .student_num .num span {
    font-size: 40rem;
  }

  main .description .student_num .num span:nth-child(2) {
    font-size: 25rem;
  }

  main .description .percent .num {
    font-size: 135rem;
  }

  main .description .result p:nth-of-type(1) {
    font-size: 60rem;
  }

  main .description .result p:nth-of-type(1) span {
    font-size: 35rem;
  }

  main .description .result p:nth-of-type(2) {
    font-size: 80rem;
  }

  main .description .percent .num span {
    font-size: 40rem;
  }

  main .members {
    gap: 13rem;
  }

  main .members .left .title {
    font-size: 40rem;
    margin-bottom: 30rem;
  }

  main .members .content {
    font-size: 17rem;
  }

  main .members img {
    width: 565rem;
    height: 485rem;
  }

  main .flow .top .step_group {
    align-items: stretch;
    padding-inline: 20rem;
  }

  main .flow .step {
    width: 35%;
  }

  main .flow .top .step_group .tip p:nth-of-type(2) {
    font-size: 18rem;
  }

  main .container .sounds .content {
    padding-inline: 15rem;
    gap: 15rem;
  }

  main .about .container .rect_group .rect {
    padding: 0;
    width: 505rem;
    height: 240rem;
    justify-content: center;
  }

  main .about .container .rect p:nth-of-type(2) {
    font-size: 17rem;
  }

  main .profile .photo img {
    width: 665rem;
    top: 375rem;
    left: -180rem;
  }

  .tb-br {
    display: block;
  }

  .sp-br {
    display: none;
  }

  .ribbon-left-top {
    border-right: 0px;
    border-left: 30px solid transparent;
    border-top: 60px solid #0d4c81;
    border-bottom: 0;
    left: -29px;
  }

  .ribbon-left-bottom {
    border-right: 0px;
    border-left: 30px solid transparent;
    border-top: 0;
    border-bottom: 60px solid #0d4c81;
    left: -29px;
  }

  .ribbon-right-top {
    border-right: 30px solid transparent;
    border-left: 0;
    border-top: 60px solid #0d4c81;
    border-bottom: 0;
    right: -29px;
  }

  .ribbon-right-bottom {
    border-right: 30px solid transparent;
    border-left: 0;
    border-top: 0;
    border-bottom: 60px solid #0d4c81;
    right: -29px;
  }


}

@media (max-width: 1350px) {

  main .ribbon_tag p {
    margin-top: 110rem;
  }

}

@media (max-width: 900px) {
  .ribbon {
    width: 520px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: calc(1 / 1024 * 100vw);
  }

  .container {
    padding-inline: 100rem;
  }

  main .first_view .star_gp img:nth-of-type(1) {
    width: 200rem;
    left: 45rem;
  }

  main .first_view .star_gp img:nth-of-type(2) {
    width: 310rem;
    left: 180rem;
  }

  main .ribbon_tag .rb_Btn {
    margin-top: 20rem;
  }

  main .members {
    flex-direction: column;
    gap: 30rem;
  }

  main .members .left .title {
    font-size: 50rem;
    margin-bottom: 50rem;
  }

  main .members .content {
    font-size: 20rem;
  }

  main .members img {
    width: 100%;
    height: auto;
  }

  main .flow .top .step_group {
    flex-direction: column;
    align-items: center;
    gap: 40rem;
  }

  main .flow .step {
    width: 100%;
  }

  main .flow .top .step_group .tip p:nth-of-type(2) {
    font-size: 20rem;
  }

  main .flow .top .title {
    width: 60%;
  }

  main .container .sounds .content {
    flex-direction: column;
    gap: 25rem;
  }

  main .container .sounds .client {
    width: 650rem;
  }

  main .about .container .rect_group {
    justify-content: center;
  }

  main .about .container .rect_group .rect {
    width: 580rem;
  }

  main .about .gray_bg {
    height: 1800rem;
  }

  main .profile .container {
    flex-direction: column;
    align-items: center;
  }

  main .profile .photo {
    height: 750rem;
  }

  main .container .text {
    width: 60%;
    padding-left: 0;
  }

  main .profile .photo img {
    width: 785rem;
    top: 353rem;
    left: -88rem;
  }

}

@media (max-width: 768px) {
  html {
    font-size: calc(1 / 768 * 100vw);
  }

  .container {
    padding-inline: 50rem;
  }

  main .ribbon_tag p {
    margin-top: 83rem;
  }

  .ribbon p {
    font-size: 32rem;
  }

  .ribbon {
    width: 525rem;
    height: fit-content;
    margin-bottom: -60rem;
  }



  main .container .explain {
    flex-direction: column;
    align-items: center;
  }

  main .container .text {
    width: 100%;
  }

  main .container .fig_gp {
    width: 500rem;
    height: 300px;
  }

  main .description .info_group {
    flex-wrap: wrap;
  }

  main .flow .top .title {
    width: 75%;
  }

  main .flow .step .circle {
    width: 200rem;
    height: 200rem;
    font-size: 60rem;
    margin-bottom: 20rem;
  }

  main .flow .top .step_group .tip p:nth-of-type(1) {
    font-size: 35rem;
  }

  main .flow .top .step_group .tip p:nth-of-type(2) {
    font-size: 25rem;
  }

  main .flow .step .circle p:nth-of-type(1) {
    font-size: 25rem;
  }

  main .container .sounds .client {
    width: 100%;
  }

  main .container .sounds .title {
    width: 75%;
  }

  main .container .sounds .content {
    padding-inline: 20rem;
  }

  main .faq-content .title {
    width: 75%;
  }

  main .profile .photo img {
    width: 100%;
    top: 430rem;
    left: 30rem;
  }

  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


}

@media (max-width: 500px) {
  html {
    font-size: calc(1 / 500 * 100vw);
  }

  .container {
    padding-inline: 30rem;
  }

  main .container .text {
    padding-inline: 0;
  }

  main .first_view {
    margin-bottom: 100rem;
  }

  main .first_view .text p:nth-of-type(1) {
    width: 450rem;
    font-size: 55rem;
  }

  main .first_view .text p:nth-of-type(2) {
    width: 405rem;
    font-size: 25rem;
  }

  .ribbon {
    width: 390rem;
    margin-bottom: -40px;
    padding: 10px 0px;
  }

  .ribbon p {
    font-size: 24rem;
  }

  main .ribbon_tag p {
    font-size: 20rem;
    line-height: 1.6;
    margin-top: 90rem;
  }

  main .ribbon_tag {
    padding-top: 15rem;
    padding-inline: 30rem;
  }

  main .ribbon_tag .rb_Btn {
    margin-top: 25rem;
  }

  main .flow .top .title {
    width: 80%;
    text-align: center;
    margin-bottom: -75rem;
  }

  main .flow .top .step_group {
    padding-block: 90rem;
  }

  main .container .fig_gp {
    width: 375rem;
    height: 250px;
  }

  main .container .sounds .title {
    width: 80%;
  }

  main .about .container .rect p:nth-of-type(1) {
    font-size: 27rem;
  }

  main .about .container .rect p:nth-of-type(2) {
    font-size: 15rem;
  }

  main .about .gray_bg {
    height: 1905rem;
  }

  main .about .apply_Btn {
    width: 450rem;
  }

  main .about .apply_Btn img {
    right: 30rem;
  }

  main .faq-content .title {
    width: 80%;
  }

  main .profile .photo {
    width: 500rem;
    height: 432rem;
  }

  main .profile .photo img {
    width: 370rem;
    top: 260rem;
    left: 10px;
  }

  main .profile .job img {
    left: 260rem;
  }

  .pc-br {
    display: none;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}