@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #333;


  --color-white: #ffffff;

  --color-primary: #380054;

  --noto: "Noto Sans JP", sans-serif;
  --din: "Oswald", sans-serif;
  --tsuku: "Zen Kaku Gothic New", sans-serif;
  --serif: "Noto Serif JP", serif;

  --krona: "Krona One", sans-serif;
  --ud: "M PLUS 2", sans-serif;

  --header: 10rem;
  scroll-padding: var(--header);
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1440>> 10px */
  font-size: clamp(1px, 0.694444vw, 10px);
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.7rem;
  line-height: 1.4;
  letter-spacing: 0em;
  background: var(--color-white);
  color: var(--color-black);
}



a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}



@media screen and (max-width:1023px) {
  html {
    /* 750px>> 10px */
    font-size: 1.3333vw;
  }


}

/*================================================
 *  section btn
 ================================================*/



/*================================================
 *  header / ヘッダー
 ================================================*/

#fix_btn {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 100;
}

#fix_btn a {
  width: 50rem;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width:1023px) {

  #fix_btn a {
    max-width: unset;
  }
}

/*================================================
* layout
================================================*/
.pcBg {
  scroll-behavior: smooth;
  position: relative;
  height: 100vh;
}

.pcBg::before {
  position: fixed;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/pc_bg.webp) no-repeat center top/cover;
  z-index: -1;
}

#layout {
  display: flex;
  justify-content: center;
  padding: 0 1vw;
  max-width: 1920px;
  margin: 0 auto;
}


.layoutLeft,
.layoutRight {
  flex-shrink: 0;
  height: 100vh;
  min-height: 80rem;
  position: sticky;
  top: 0;
}



/* layoutLeft */
.layoutLeft {
  width: calc((100% - 75rem)/2);
  padding-top: 5rem;
}


.pc_logo {
  width: 80%;
  margin: 0 auto 3rem;
}

.pc_en {
  width: 90%;
  margin: 0 auto;
}

.leftNav {
  width: fit-content;
  margin: 4cqb auto 0;
}

.leftNav li {
  color: var(--color-white);
  letter-spacing: 0.2em;
  font-weight: 300;
}

.leftNav li a {
  letter-spacing: 0em;
  padding: 1rem 0;
  font-size: 1.8rem;
  display: block;
}

.leftNav .cta_btn {
  margin-top: 3rem;
}

.leftNav .cta_btn a {
  color: var(--color-black);
  padding: 1rem 0;
  font-weight: 500;
}




/* layoutRight */
.layoutRight {
  width: calc((100% - 75rem)/2);
}

.pc_right {
  width: 80%;
  margin: 6rem auto 0;
}





.mainContent {
  width: 75rem;
  flex-shrink: 0;
  min-height: 100vh;
  background: var(--color-white);

  padding-top: 8.5rem;
  border-radius: 6rem 6rem 0 0;
  /* background: var(--color-primary); */
  position: relative;
}

.mainContent::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8.5rem;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  border-radius: 6rem 6rem 0 0;
}

@media screen and (max-width:1023px) {
  #layout {
    padding: 0;
  }

  .layoutLeft,
  .layoutRight {
    display: none;
  }

  .mainContent {
    width: 100%;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}


.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75rem;
  margin: 0 auto;
  padding: 2rem 10rem 2rem 4.5rem;
  background: var(--color-primary);
  border-radius: 6rem 6rem 0 0;
  position: relative;
}

.nav_left {
  width: 35rem;
}

.nav_center {}

.cta_btn a {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 100px;
  background: #f5f3e2;
  display: block;
  width: 17rem;
  text-align: center;
}


.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  z-index: 300;
  transition: all .1s ease-out;
}

.hamburger::after {
  position: absolute;
  content: "MENU";
  color: var(--color-white);
  font-size: 1.5rem;
  font-family: var(--din);
  left: 50%;
  transform: translateX(-50%);
  top: 27%;
  text-align: center;
  width: 100%;
  opacity: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all .2s ease-out;
}

.open_nav .hamburger::after {
  opacity: 0;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 40%;
  height: 0.15rem;
  background-color: var(--color-white);
  transition: all .4s ease-out;
  transform: translateX(-50%);
}

.hamburger__line--1 {
  top: 50%;
}

.hamburger__line--2 {
  top: 60%;
}

.hamburger__line--3 {
  top: 70%;
}

/* line close */
.open_nav .hamburger__line--1 {
  transform: translateX(-50%) rotate(45deg);
  top: 50%;
  background-color: var(--color-black);
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: translateX(-50%) rotate(-45deg);
  top: 50%;
  background-color: var(--color-black);
}

/* ハンバーガーメニュー内 */
nav.global__nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 80%);
  transition: all .3s ease-out;
  z-index: 200;
  overflow-y: scroll;
  padding: 0 0;
  opacity: 0;
  pointer-events: none;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}


.global__nav .inner {
  width: 75rem;
  margin: 0 auto;
  background: var(--color-white);

}

.nav_logo {
  padding: 2rem 10rem 2rem 4.5rem;
}

.nav_logo img {
  width: 29rem;
}

.nav_menu {
  padding: 4rem 0 0 10rem;
  background: var(--color-primary);
  height: 100vh;
}

.nav_menu .sp_logo {
  background: var(--color-white);
}

.nav_menu li {
  border-bottom: 1px solid #dbdcdc;
}

.nav_menu a {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  padding: 2rem 4rem 2rem 1rem;
}

.nav_menu a span {
  /* font-family: var(--krona); */
  font-size: 2.6rem;
  font-weight: 400;
}

.nav_menu .cta_btn a {
  color: var(--color-primary);
  text-align: center;
  display: block;
  padding: 1rem;
  margin: 0 auto;
}

.nav_menu .cta_btn {
  border: none;
  padding: 4rem 4rem 6rem 0;
}

/*================================================
* 
================================================*/
#mv {
  padding-bottom: 0;
  z-index: 1;
}


.mv_catch {
  position: absolute;
}

.mv_catch.catch01 {
  width: 69rem;
  top: 3rem;
  left: 3rem;
}

.mv_catch.catch02 {
  width: 65.5rem;
  top: 17rem;
  left: 3rem;
}

.mv_catch.catch03 {
  width: 44rem;
  top: 49rem;
  right: 3rem;
}

.mv_catch.catch04 {
  width: 69.4rem;
  bottom: 4rem;
  left: 3rem;
}

.mv_catch.catch05 {
  width: 30rem;
  top: 0rem;
  right: 0rem;
}



@media screen and (max-width:767px) {}

/*================================================
* cp
================================================*/
#cp {
  margin-top: -6rem;
}

.cp_top {
  background: url(../images/cp_top_bg.webp) no-repeat center top/cover;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.cp_top img {
  width: 68rem;
  margin: 0 auto;
}

.cp_middle {
  background: url(../images/cp_middle_bg.webp) no-repeat center top/cover;
  height: 99.6rem;
  display: grid;
  place-content: center;
  margin-top: -6rem;
}

.cp_mid-img {
  width: 59rem;
  margin: 0 auto;
}

.cp_people {
  width: 37rem;
  margin: 4rem auto;
}

.cp_under {
  background: url(../images/cp_under_bg.webp) no-repeat center top/cover;
  height: 38rem;
  display: grid;
  place-content: center;
}

.cp_under img {
  width: 61rem;
}

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/
section {
  padding-bottom: 10rem;
  position: relative;
}


.section {
  padding-top: 10rem;
}

.hd span {
  display: block;
}

.hd {
  margin-bottom: 5.5rem;
}

.hd .en {
  text-align: center;
  font-family: var(--krona);
  font-size: 5rem;
  color: var(--color-primary);
  padding-bottom: 1rem;
  width: 44rem;
  margin: 0 auto;
  position: relative;
  text-transform: uppercase;
}

.hd .en::before {
  position: absolute;
  content: "";
  width: 40rem;
  height: 1rem;
  background: var(--color-primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hd .ja {
  font-size: 2.2rem;
  text-align: center;
  font-family: var(--ud);
  font-weight: 400;
  margin-top: 1rem;
}


@media screen and (max-width:767px) {}

/*================================================
* about
================================================*/
#about {
  background: url(../images/about_bg.webp) no-repeat center/cover;
}

#about .lead {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.8;
  width: 62rem;
  margin: 0 auto;
  font-feature-settings: "palt";
}

.about_img {
  position: relative;
  background: url(../images/about_img.webp) no-repeat center/cover;
  height: 40rem;
  margin-top: 3rem;
}

.about_img .obiArea {
  padding-top: 10rem;
  padding-left: 4.8rem;
}

.about_img .obiArea .obi:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about_img .obiArea .obi {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 1rem;
  display: block;
  width: fit-content;
  position: relative;
}

.about_img .obiArea .obi::before {
  background: rgb(255 255 255 / 70%);
  z-index: 1;

}

.about_img .obiArea .obi span {
  z-index: 1;
  position: relative;
}


.about_under p {
  width: 63rem;
  margin: 3rem auto 0;
  line-height: 2;
}

.about_under h3 {
  text-align: center;
  font-size: 3.8rem;
  width: 63rem;
  margin: 6rem auto 3rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid;
  color: #333;
  font-weight: 700;
}

.about_under h4 {
  color: var(--color-primary);
  width: 65rem;
  margin: 0 auto 4rem;
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 700;
  font-feature-settings: "palt";
}

.about_under h4+p {
  font-feature-settings: "palt";
}



@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/
.point_box {
  padding-bottom: 8rem;
}

.point_box h3 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding-left: 4rem;
}



.point_box h3 .num {
  width: 16rem;
  position: relative;
  top: 1rem;
}

.point_box h3 .ja {
  font-size: 5.2rem;
  font-family: var(--ud);
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.point_box .inner {
  background: url(../images/point_bg.webp) no-repeat center top/cover;
  margin-top: -1rem;
  padding-bottom: 6rem;
}

.point_box h4 {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;

}

.point_box h5 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0 0.6rem;
  border-bottom: 1px solid;
}

.point_box .note {
  text-align: center;
  font-weight: 400;
  font-size: 2.4rem;
  margin-top: 1rem;
}

.point_box .point_cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 64rem;
  margin: 3rem auto 0;
  border-left: 0.2rem solid var(--color-black);
}

.point_box .point_cardList li {
  border-right: 0.2rem solid var(--color-black);
  padding: 0 2rem;
}

.point_box .point_cardList li p {
  text-align: center;
  font-size: 2.6rem;
  font-family: var(--ud);
  background: var(--color-white);
  padding: 2rem 0;

}

.point_box .point_cardList li p .span {
  font-size: 2.8rem;
}

.point_box .point_cardList li p .num {
  font-size: 4rem;
}

/* box01 */
.point_box.box01 h4 {
  margin-top: -2rem;
}



/* box02 */
.point_box.box02 h3 .ja img {
  width: 14.4rem;
  display: inline-block;
  position: relative;
  top: -1rem;
  margin-left: 1rem;
}



/* box04 */
.point_box.box04 .point_cardList {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width:767px) {}

/*================================================
* machine
================================================*/
.machine_top {
  padding-top: 6rem;
  background: url(../images/machine_top.webp) no-repeat center top/cover;
  margin-bottom: -4rem;
  z-index: 1;
  position: relative;
}

.machine_top .hd {
  margin-bottom: 3rem;
}

.machine_top .hd .en {
  background: linear-gradient(90deg, rgba(161, 181, 193, 1) 0%, rgba(255, 255, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* display: inline-block; */
}

.machine_top .hd .en::before {
  background: linear-gradient(90deg, rgba(161, 181, 193, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.machine_top .hd .ja {
  color: var(--color-white);
}

.machine_img {
  position: relative;
  background: url(../images/machine_img.webp) no-repeat center/cover;
  height: 26.5rem;
  margin-top: 2rem;
}

.machine_img .obiArea {
  padding-top: 5rem;
  padding-left: 4.8rem;
}

.machine_img .obiArea .obi:not(:last-child) {
  margin-bottom: 2.5rem;
}

.machine_img .obiArea .obi {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 1rem;
  z-index: 1;
  position: relative;
}

.machine_img .obiArea .obi::before {
  background: rgb(255 255 255 / 70%);
}

.machine_img .obiArea .obi span {
  z-index: 1;
  position: relative;
}



.machine_top .lead {
  text-align: center;
  color: var(--color-white);
  font-size: 2.4rem;
  margin-top: 4rem;
  padding-bottom: 5rem;
}

.machine_top .lead img {
  width: 28rem;
  margin: 0 auto 1rem;
}

.machine_box {
  padding: 5rem 0 0;
  position: relative;
  z-index: 1;
}

.machine_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 6rem);
  top: 0;
  left: 0;
  background: url(../images/machine_bg.webp) no-repeat center top/cover;
  z-index: -1;
}

.machine_box h3 {
  text-align: center;
  font-family: var(--krona);
  color: var(--color-primary);
  opacity: 0;
  margin: 0 0;
  font-size: 6.8rem;
  text-transform: uppercase;
}

.machine_box h3.fadeLeft.started {
  opacity: .5 !important;
}

.machine_box .lead {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 2rem 0;
}

.machine_boxImg img {
  mix-blend-mode: multiply;
}

.machine_boxImg ul {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
}

.machine_boxImg ul li p {
  text-align: center;
  font-size: 2rem;
  width: fit-content;
  margin: 0 auto;
}


/* box01 */
.machine_box.box01 .machine_boxImg {
  width: 70rem;
  margin: 6rem auto 0;
}

.machine_box.box01 ul {
  gap: 2rem;
}



.machine_box.box01 ul li:nth-child(1) {
  width: 27.5rem;
}

.machine_box.box01 ul li:nth-child(2) {
  width: 28.5rem;
}

.machine_box.box01 ul li:nth-child(3) {
  width: 37.5rem;
}

.machine_box.box01 ul li:nth-child(4) {
  margin-top: 4rem;
  width: 28.5rem;
}




.machine_box .dumbbell {
  background: url(../images/dumbbell_img.webp) no-repeat center top/cover;
  height: 31rem;
  margin-top: 6rem;
}

.machine_box .dumbbell div {
  width: fit-content;
  padding: 3rem 3rem 0 0;
  margin-left: auto;
  color: var(--color-white);
}

.machine_box .dumbbell div h4 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.machine_box .dumbbell div h4 span {
  display: block;
  font-family: var(--krona);
  font-size: 5.6rem;
  opacity: .7;
  text-transform: uppercase;
}

.machine_box .dumbbell div p {
  font-size: 2.3rem;
  margin-top: 1rem;
}

.machine_box .dumbbell div p.ar {
  font-size: 1.8rem;
  margin-top: 3rem;
  font-weight: 400;
}


/* box02 */
.machine_box.box02 .machine_boxImg {
  width: 71rem;
  margin: 2rem auto;
  position: relative;
}

.machine_box.box02 .machine_boxImg>p {
  width: 34rem;
  font-size: 2.5rem;
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  line-height: 2;
}

.machine_box.box02 ul {
  display: block;
}

.machine_box.box02 ul li:nth-child(1) {
  width: 40rem;
}

.machine_box.box02 ul li:nth-child(2) {
  width: 35rem;
  margin-left: auto;
  margin-top: -30rem;
}

.machine_box.box02 ul li:nth-child(3) {
  width: 26rem;
  margin-left: 4rem;
}




.machine_box.box03::before {
  height: 100%;
}

.machine_box.box03 ul {
  align-items: start;
  gap: 3rem 2rem;
  padding-bottom: 6rem;
}

.machine_box.box03 ul li p {
  text-align: right;
}

.machine_box.box03 ul li:nth-child(2n) {
  margin-top: 4rem;
}

.machine_box.box03 ul li:nth-child(1) {
  width: 30rem;
}

.machine_box.box03 ul li:nth-child(2) {
  width: 28rem;
}

.machine_box.box03 ul li:nth-child(2) p {
  white-space: nowrap;
}

.machine_box.box03 ul li:nth-child(3) {
  width: 28rem;
}

.machine_box.box03 ul li:nth-child(4) {
  width: 26rem;
}

.machine_box.box03 ul li:nth-child(5) {
  width: 31rem;
}

.machine_box.box03 ul li:nth-child(6) {
  width: 30rem;
}

.machine_box.box03 ul li:nth-child(7) {
  width: 30rem;
}

.machine_box.box03 ul li:nth-child(8) {
  width: 26rem;
}


@media screen and (max-width:767px) {}

/*================================================
* cardio
================================================*/
#cardio .hd {
  opacity: .5s;
}


.cardio_img {
  position: relative;
  margin-bottom: 10rem;
}

.cardio_img p {
  position: absolute;
  color: var(--color-white);
  text-align: right;
  font-size: 2.5rem;
  line-height: 1.8;
  top: 10rem;
  right: 4rem;
}




#cardio .map p {
  width: 60rem;
  text-align: right;
  font-size: 2rem;
  margin: 0 auto;
}



@media screen and (max-width:767px) {}

/*================================================
* support
================================================*/
#support .hd {
  margin-bottom: 0;
}

#support .hd .en {
  color: #808080;
}

#support .hd .en::before {
  width: 75rem;
}

#support .hd .ja {
  color: var(--color-white);
}

#support .inner {
  background: url(../images/support_bg.webp) no-repeat center top/cover;
  color: var(--color-white);
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  margin-top: -5rem;
}

#support h3 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

#support p {
  font-size: 2.8rem;
  line-height: 2.4;
}

#support .note {
  font-size: 2.4rem;
  margin-bottom: 46rem;
}


@media screen and (max-width:767px) {}

/*================================================
*  faq
================================================*/
.faqList dt {
  color: var(--color-white);
  background: rgb(56 0 84 / 80%);
  position: relative;
  padding: 3rem 2rem 3rem 11rem;
  font-family: var(--ud);
}

.faqList dd {
  background: #e6e6e6;
  position: relative;
  padding: 3rem 2rem 3rem 11rem;
  border: 1px solid #cccccc;
  margin-bottom: 4rem;
}

.faqList dt::before,
.faqList dd::before {
  position: absolute;
  content: "";
  font-size: 5rem;
  font-family: var(--krona);
  top: 1.5rem;
  left: 4rem;
}

.faqList dt::before {
  content: "Q";
}


.faqList dd::before {
  content: "A";
}

.faqList dd p {
  line-height: 1.8;
  font-family: var(--ud);
  font-weight: 400;
}

@media screen and (max-width:767px) {}


/*================================================
* price
================================================*/
#price .hd {
  color: var(--color-primary);
}

#price .inner {
  padding: 5rem 0;
  background: url(../images/price_bg.webp) no-repeat center top/cover;
}

#price h3 {
  text-align: center;
  font-family: var(--ud);
  font-size: 3rem;
}

#price .inner img {
  width: 69rem;
  margin: 4rem auto;
}




@media screen and (max-width:767px) {}

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

@media screen and (max-width:767px) {}



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

@media screen and (max-width:767px) {}

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

@media screen and (max-width:767px) {}


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

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/
footer.hd .ja {
  color: var(--color-primary);
}


footer .inner {
  padding: 6rem 0;
  background: url(../images/ft_bg.webp) no-repeat center top/cover;
}

.ft_logo {
  width: 48rem;
  margin: 0 auto 2rem;
}

footer .inner h3 {
  text-align: center;
  font-weight: 700;
  margin: 1rem 0 4rem;
}

footer .inner h3 span {
  font-size: 4rem;
  display: block;
}


.ft_addr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem 1rem;
}

.ft_addr p {
  width: 100%;
  text-align: center;
  line-height: 1.6;
}

.ft_addr .add_icon {
  width: 23rem;
}

.ft_addr .add_p {
  width: 40rem;
  text-align: center;
  font-size: 2.6rem;
}

.ft_addr .add_p span {
  display: block;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 1rem;
  border-radius: 2.3rem;
  margin-top: 2rem;
  font-size: 3rem;
}

footer iframe {
  display: block;
  width: 100%;
  height: 60rem;
  margin: 3rem 0;
}

.ft_menu {
  padding: 2rem 0 10rem;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ft_menu li a {
  display: block;
  width: fit-content;
  padding: 1rem 2rem;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  font-size: 2rem;
}


@media screen and (max-width:767px) {}