@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 62.5%;
  font-feature-settings: "palt";
  scroll-padding-top: 140px;
}
@media only screen and (min-width: 1200px) {
  html {
    scroll-padding-top: 240px;
  }
}

i {
  font-style: normal;
  font-weight: 700;
  margin-right: 5px;
}

body {
  color: #282828;
  margin: 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (min-width: 960px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*Text*/
.txt_br {
  display: block;
}

.txt-important {
  color: #f06060;
}

.note {
  font-size: 1.2rem;
}
@media only screen and (min-width: 960px) {
  .note {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .note {
    font-size: 1.4rem;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
}

.if:before {
  font-family: "FontAwesome";
  padding-right: 5px;
}

.is-empty {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  height: 0 !important;
}

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

@media only screen and (min-width: 960px) {
  .list-table {
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
  }
}

table {
  border: 1px solid #cbcbcb;
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  border: 1px solid #cbcbcb;
  padding: 0.8em;
}
table th p:last-child,
table td p:last-child {
  margin-bottom: 0 !important;
}

ul {
  margin: 1em 0 1em 1em;
  list-style: disc outside;
}

ol {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
  margin: 1em 0;
}

ol > li {
  position: relative;
  padding: 0 0 0 1.6em;
}
ol > li:before {
  counter-increment: list;
  content: counter(list) ". ";
  position: absolute;
  left: 0;
}

.notice,
.notice-free {
  position: relative;
  margin: 1rem 0;
  line-height: 1.4;
  font-size: 1.2rem;
}
@media only screen and (min-width: 960px) {
  .notice,
  .notice-free {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .notice,
  .notice-free {
    font-size: 1.4rem;
  }
}

p.notice,
div.notice {
  margin-left: 1em;
  text-indent: -1em;
}

ul.notice,
ul.notice-free {
  list-style-type: none;
  padding: 0;
}

ul.notice > li,
ul.notice-free > li {
  position: relative;
  padding: 0 0 0 2rem;
}
ul.notice > li:before,
ul.notice-free > li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

ol.notice,
ol.brackets-num {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
  margin: 1em 0;
}

ol.notice > li {
  position: relative;
  padding: 0 0 0 3rem;
}
ol.notice > li:before {
  counter-increment: list;
  content: "※" counter(list) ". ";
  position: absolute;
  left: 0;
  top: 0.9rem;
  transform: translateY(-50%);
}

ol.brackets-num > li {
  position: relative;
  padding: 0 0 0.25rem 3rem;
}
ol.brackets-num > li:before {
  counter-increment: list;
  content: "(" counter(list) ")";
  position: absolute;
  left: 0;
  top: 1.1rem;
  transform: translateY(-50%);
}

.circle-list {
  position: relative;
  margin: 1rem 0;
  line-height: 1.4;
  list-style-type: none;
  padding: 0;
}
.circle-list > li {
  position: relative;
  padding: 0 0 0 2rem;
}
.circle-list > li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.w-circle-list {
  position: relative;
  margin: 1rem 0;
  line-height: 1.4;
  list-style-type: none;
  padding: 0;
}
.w-circle-list > li {
  position: relative;
  padding: 0 0 0 2rem;
}
.w-circle-list > li:before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
}

.bdr-box {
  border: 1px solid #cbcbcb;
  padding: 1.6em;
}
.bdr-box-important {
  border: 1px solid #f06060;
  padding: 1.6em;
}

a {
  color: #282828;
  text-decoration: none;
  transition: 0.2s;
}

input[type=text],
input[type=email],
select {
  border-radius: 3px;
  border: none;
  padding: 6px;
  font-size: inheirt;
  box-sizing: border-box;
}

input[type=submit] {
  background: #2a7dce;
  border-radius: 600px;
  border: none !important;
  color: #ffffff;
  padding: 1.2em 2.4em;
  line-height: 1;
  font-size: inheirt;
  box-sizing: border-box;
  width: 12em;
}

input::-moz-placeholder {
  color: #B5B5B5;
  font-size: 12px;
}

input::placeholder {
  color: #B5B5B5;
  font-size: 12px;
}

/*Button*/
@media only screen and (min-width: 960px) {
  .sp-link-none {
    pointer-events: none;
  }
}

/******  Structure *****/
body {
  background: #81cac3;
}

main {
  position: relative;
}

footer {
  background: #25918c;
  color: #fff;
  padding: 2vh 10%;
  text-align: center;
}
footer h3 {
  margin-bottom: 1em;
  font-weight: 300;
}
footer a {
  color: #fff;
}
footer .contact__txt {
  font-weight: 300;
  margin-bottom: 2em;
  line-height: 1.6;
}
footer figure {
  margin: 0 auto 1rem;
  width: 40%;
  max-width: 200px;
}
footer .at-mark::before {
  content: "@";
  display: inline;
}
footer .copyright,
footer .operation {
  color: #fff;
  text-align: center;
  font-size: min(2vw, 1.3rem);
}

h2 {
  font-weight: 900;
}

.hero {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  height: 50vh;
}
@media only screen and (min-width: 960px) {
  .hero {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
@media only screen and (min-width: 960px) {
  .hero {
    height: 45vh;
  }
}
.hero h1 {
  text-align: center;
  margin-top: 8vh;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .hero h1 {
    margin-top: 0;
  }
}
.hero h1 img {
  width: 80%;
  max-width: 800px;
}

main {
  position: relative;
  overflow: hidden;
}
main::after {
  content: "";
  display: block;
  width: 100vw;
  padding-top: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg.jpg) left 20vh no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media only screen and (min-width: 960px) {
  main::after {
    background: url(../img/bg.jpg) left bottom no-repeat;
    background-size: 100% auto;
  }
}

.intro__badge {
  width: 30%;
  max-width: 160px;
  position: absolute;
  right: 7%;
  top: 27vh;
}
@media only screen and (min-width: 960px) {
  .intro__badge {
    max-width: 240px;
    left: 75%;
    top: 37vh;
  }
}
.intro__badge__cont {
  display: block;
  position: relative;
  animation: rotateY 3s infinite linear;
  transform-style: preserve-3d;
  z-index: 10;
  /* カード表面のスタイル */
  /* ホバー時のカード裏面 */
}
.intro__badge__cont::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.intro__badge__cont .front {
  transform: rotateY(-180deg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  z-index: 11;
}
.intro__badge__cont .back {
  transform: rotateY(0);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.intro__badge__cont img {
  display: block;
  height: 100%;
  width: 100%;
}
@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.intro__lead {
  padding: 0 10%;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3vh;
}
@media only screen and (min-width: 960px) {
  .intro__lead {
    padding-right: 10%;
    padding-left: calc(40% + 5vh);
    font-size: 3.2vw;
    text-align: left;
  }
}
.intro__lead span {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (min-width: 960px) {
  .intro__lead span {
    font-size: 1.6vw;
  }
}
.intro__catch {
  background: #000;
  padding: 1vh 0 1vh 5vh;
  transform: translateX(15%);
}
@media only screen and (min-width: 960px) {
  .intro__catch {
    padding-left: calc(5% + 5vh);
    transform: translateX(35%);
  }
}
.intro__catch::before {
  content: "";
  background: #000;
  height: 100%;
  width: 35px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-99%);
}
.intro__catch img {
  width: 70%;
  max-width: 360px;
}
.intro__box {
  padding: 2vh 10% 8vh;
}
@media only screen and (min-width: 960px) {
  .intro__box {
    padding-left: calc(40% + 5vh);
  }
}
.intro__box h2 {
  font-size: 2.8rem;
  margin-bottom: 3vh;
  line-height: 1.4;
}
@media only screen and (min-width: 960px) {
  .intro__box h2 {
    font-size: 3.2vw;
  }
}
.intro__box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-left: 0.5em;
}
@media only screen and (min-width: 960px) {
  .intro__box p {
    font-size: min(1.8vw, 2rem);
  }
}

.about {
  padding: 0 0 6vh 10%;
}
@media only screen and (min-width: 960px) {
  .about {
    padding: 8vh 0 10vh 5%;
  }
}
.about h2 {
  font-size: 2.8rem;
  margin-bottom: 2.4vh;
  line-height: 1.4;
}
@media only screen and (min-width: 960px) {
  .about h2 {
    font-size: min(2.8vw, 4.8rem);
    margin-left: 2.4rem;
  }
}
.about h2 span {
  display: block;
}
.about__box {
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
}
.about__box__purpose {
  width: 100%;
  margin-bottom: 4vh;
  padding-right: 10%;
}
@media only screen and (min-width: 960px) {
  .about__box__purpose {
    width: 45%;
    margin-bottom: 0;
  }
}
.about__box__purpose__txt {
  background: #fff;
  border-radius: 16px;
  padding: 2.4rem;
  width: 100%;
}
.about__box__purpose__txt dl dt {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 960px) {
  .about__box__purpose__txt dl dt {
    font-size: min(2.6vw, 2.4rem);
  }
}
.about__box__purpose__txt dl dt span {
  display: inline-block;
  padding: 0 1.5em;
  position: relative;
}
.about__box__purpose__txt dl dt span::before {
  content: "";
  width: 1em;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
}
.about__box__purpose__txt dl dt span::after {
  content: "";
  width: 1em;
  height: 1px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
}
.about__box__purpose__txt dd {
  padding-left: 0.2em;
  line-height: 2;
  font-size: 1.6rem;
  margin-left: 1em;
  text-indent: -1.2em;
}
@media only screen and (min-width: 960px) {
  .about__box__purpose__txt dd {
    font-size: min(1.8vw, 2.2rem);
  }
}
.about__box__purpose__txt dd::before {
  content: "⦿";
  margin-right: 0.2em;
}
.about__box__point {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .about__box__point {
    width: 55%;
  }
}
.about__box__point .point-list {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
.about__box__point .point-list > div {
  color: #ffffff;
  display: flex;
  justify-content: stretch;
  align-items: center;
  background: url(../img/bg_point.png) left center;
  background-size: cover;
  margin-bottom: 2%;
  height: 3.6em;
  padding: 0 2rem 0 4rem;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .about__box__point .point-list > div {
    padding: 0 8rem 0 8rem;
    font-size: min(2.4vw, 3.2rem);
  }
}
.about__box__point .point-list > div:first-child {
  padding-right: 12rem;
}
@media only screen and (min-width: 960px) {
  .about__box__point .point-list > div:first-child {
    transform: translateX(30%);
  }
}
@media only screen and (min-width: 960px) {
  .about__box__point .point-list > div:nth-of-type(2) {
    padding-right: 12rem;
    transform: translateX(20%);
  }
}
@media only screen and (min-width: 960px) {
  .about__box__point .point-list > div:nth-of-type(3) {
    padding-right: 12rem;
    transform: translateX(10%);
  }
}
@media only screen and (min-width: 960px) {
  .about__box__point .point-list > div:nth-of-type(4) {
    padding-right: 12rem;
  }
}

.merit {
  margin-bottom: 5vh;
}
.merit__shoulder {
  text-align: center;
  font-size: min(2.8vw, 2.8rem);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.merit h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3vh;
  line-height: 1.4;
}
@media only screen and (min-width: 960px) {
  .merit h2 {
    font-size: min(3.6vw, 4.8rem);
  }
}
.merit h2 span {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 120%;
  display: inline;
  padding-top: 10px;
}
.merit__list {
  width: 80%;
  margin: 0 auto 12vh;
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
@media only screen and (min-width: 960px) {
  .merit__list {
    width: 90%;
    margin: 0 auto 12vh;
  }
}
.merit__list__item {
  background: #fff;
  border-radius: 12px;
  padding: 1.6em 2.4em;
  width: 100%;
}
.merit__list__item:not(:last-of-type) {
  margin-bottom: 4%;
}
@media only screen and (min-width: 960px) {
  .merit__list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 960px) {
  .merit__list__item {
    width: 32%;
  }
}
.merit__list__item h3 {
  font-size: 2rem;
  margin-bottom: 2vh;
  line-height: 1.4;
}
@media only screen and (min-width: 960px) {
  .merit__list__item h3 {
    font-size: min(2vw, 3.2rem);
  }
}
.merit__list__item p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (min-width: 960px) {
  .merit__list__item p {
    font-size: min(1.6vw, 1.8rem);
  }
}
.merit__more {
  width: 80%;
  margin: 0 auto;
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  position: relative;
}
@media only screen and (min-width: 960px) {
  .merit__more {
    width: 90%;
    max-width: 1400px;
  }
}
.merit__more .more-txt {
  background: #ffe203;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  box-sizing: border-box;
  font-size: 2.4rem;
  left: 50%;
  top: 0vh;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%) translateY(-8vh) rotate(-5deg);
}
@media only screen and (min-width: 960px) {
  .merit__more .more-txt {
    padding: 0.5em 2em;
    box-sizing: content-box;
    font-size: min(2.8vw, 3.4rem);
    left: 50%;
    top: 0;
  }
}
.merit__more__item {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .merit__more__item {
    width: 48%;
  }
}
.merit__more__item > div {
  margin-bottom: 0.8em;
}
.merit__more__item p {
  line-height: 1.6;
  padding: 0 1em;
}
.merit__more__item.sp01 {
  margin-bottom: 5vh;
}
@media only screen and (min-width: 960px) {
  .merit__more__item.sp01 {
    margin-bottom: 0;
  }
}
.merit__more__item.sp01 h3 {
  text-align: center;
  color: #282828;
  font-size: 2.4rem;
}
@media only screen and (min-width: 960px) {
  .merit__more__item.sp01 h3 {
    font-size: min(2vw, 3.2rem);
  }
}
.merit__more__item.sp01 ol {
  background: #fff;
  border: 6px solid #282828;
  border-radius: 12px;
  padding: 1.6em;
}
.merit__more__item.sp01 ol li {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media only screen and (min-width: 960px) {
  .merit__more__item.sp01 ol li {
    font-size: min(1.6vw, 2rem);
  }
}
.merit__more__item.sp01 ol li:not(:last-child) {
  margin-bottom: 1.2em;
}
.merit__more__item.sp01 ol li span {
  display: block;
  font-size: 80%;
}

.outline {
  color: #fff;
  background: #4ea8a4;
  padding: 5vh 0 0;
}
.outline__box {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 5vh;
  display: flex;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
@media only screen and (min-width: 960px) {
  .outline__box {
    width: 90%;
  }
}
.outline__box__item {
  width: 100%;
}
.outline__box__item:not(:last-of-type) {
  margin-bottom: 6vh;
}
@media only screen and (min-width: 960px) {
  .outline__box__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 960px) {
  .outline__box__item {
    width: 46%;
  }
}
.outline__box__item h2 {
  text-align: center;
  margin-bottom: 1em;
}
.outline__box__item h2 span {
  background: #ffffff;
  color: #4ea8a4;
  display: inline-block;
  padding: 0.8em 1em;
  border-radius: 500px;
  line-height: 1;
  width: 70%;
  font-weight: 400;
  font-size: min(3vw, 2.6rem);
}
.outline__box__item .oputline-table {
  font-size: min(3vw, 2.2rem);
}
.outline__box__item .oputline-table > dt {
  width: 100%;
  padding: 1em 1em 0.5em;
  font-weight: 600;
}
.outline__box__item .oputline-table > dd {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  padding: 0 1em 1em;
}
.outline__box__item .oputline-table > dd ul {
  margin-top: 0;
}
@media only screen and (min-width: 960px) {
  .outline__box__item .oputline-table {
    display: flex;
    display: -ms-flexbox;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    align-items: flex-start;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
  }
  .outline__box__item .oputline-table > dt {
    display: flex;
    align-self: stretch;
    width: 25%;
    border-bottom: 1px solid #ffffff;
    padding: 1em;
    font-weight: 400;
  }
  .outline__box__item .oputline-table > dd {
    width: 75%;
    border-bottom: 1px solid #ffffff;
    padding: 1em;
  }
  .outline__box__item .oputline-table > dd ul {
    margin-top: 0;
  }
}
.outline__box__item .outline-curriculum {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
}
.outline__box__item .outline-curriculum:not(:last-of-type) {
  margin-bottom: 4vh;
  padding-bottom: 4vh;
  border-bottom: 1px solid #85d0c2;
}
@media only screen and (min-width: 960px) {
  .outline__box__item .outline-curriculum:not(:last-of-type) {
    margin-bottom: 2vh;
    padding-bottom: 2vh;
  }
}
.outline__box__item .outline-curriculum > div {
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 960px) {
  .outline__box__item .outline-curriculum > div {
    font-size: min(1.8vw, 2.4rem);
  }
}
.outline__entry {
  background: #3c9c97;
  padding: 5vh 0;
  text-align: center;
}
.outline__entry p {
  margin-bottom: 1em;
}
@media only screen and (min-width: 960px) {
  .outline__entry p br {
    display: none;
  }
}
.outline__entry__btn {
  background: #fbeb36;
  border-radius: 500px;
  font-weight: 600;
  font-size: 1.8rem;
  width: 80%;
  max-width: 640px;
  padding: 1em 1em;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .outline__entry__btn {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */