#mainSection {
  width: 100%;
  margin-top: 20px;
  background-color: #f1f1f1;
  position: relative;
  padding-bottom: 100px;
}

#mainImg {
  width: 100%;
  height: 640px;
}

#mainImg > img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

#mainTitle {
  width: 1000px;
  margin: auto;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

#mainTitle > h2 {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fefefe;
  text-align: right;
}

#mainTitle > h3 {
  font-size: 24px;
  color: #fefefe;
  text-align: right;
  margin-top: 20px;
}

#mainCopyBlock {
  width: 1000px;
  margin: auto;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#mainCopy {
  width: 560px;
  padding: 50px 40px;
  color: #434343;
  background-color: #fefefe;
  border-radius: 20px;
  margin-left: auto;
  margin-right: 0;
}

#mainCopy > h4 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
}

#mainCopy > p {
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  #mainSection {
    margin-top: 10px;
  }

  #mainImg {
    height: 460px;
  }

  #mainImg > img {
    height: 460px;
    object-fit: cover;
    object-position: 22% 50%;
  }

  #mainTitle {
    width: 86%;
    top: 40px;
    margin: auto;
  }

  #mainTitle > h2 {
    font-size: 32px;
    line-height: 1.4;
  }

  #mainTitle > h3 {
    font-size: 16px;
    letter-spacing: 2px;
  }

  #mainCopyBlock {
    width: 86%;
    left: 7%;
    transform: none;
  }

  #mainCopy {
    width: 100%;
    padding: 25px;
  }

  #mainCopy > h4 {
    font-size: 16px;
  }

  #mainCopy > p {
    font-size: 12px;
  }
}
#newsSection {
  background-color: #fefefe;
  padding-top: 30px;
  padding-bottom: 30px;
}

#newsSection > div {
  width: 1000px;
  margin: auto;
  display: grid;
  grid-template-areas: "newsTitle newsContent" "newsLink newsContent";
  grid-template-columns: 20% 80%;
  grid-template-rows: 1fr 1fr;
  align-items: center;
}

#newsTitle {
  grid-area: newsTitle;
}

#newsTitle > p {
  font-size: 48px;
  color: #009944;
  font-weight: 700;
  text-align: center;
}

#newsTitle > p > span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
}

#newsLink {
  grid-area: newsLink;
}

#newsLink p {
  text-align: center;
}

#newsLink p > a {
  font-size: 13px;
  color: #009944;
  position: relative;
  padding-right: 20px;
}

#newsLink p > a::before {
  content: "";
  background-color: #009944;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

#newsLink p > a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #fefefe;
  border-right: solid 1px #fefefe;
  transform: rotateZ(-45deg);
  position: absolute;
  top: 5px;
  right: 6px;
}

#newsContent {
  grid-area: newsContent;
}

#newsSentence {
  margin: auto;
  display: flex;
  flex-direction: column;
}

#newsSentence > div > a {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: solid 1px #ddd;
}

#newsSentence > div:last-child {
  border-bottom: solid 1px #ddd;
}

#newsSentence .newsDate {
  font-size: 15px;
  color: #434343;
  width: 17%;
  text-align: center;
}

#newsSentence .newsCategory {
  font-size: 12px;
  color: #009944;
  width: 13%;
}

#newsSentence .newsText {
  font-size: 15px;
  color: #434343;
  width: fit-content;
  position: relative;
}

#newsSentence .newsText::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #434343;
  bottom: -2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: all 0.6s ease-in-out;
}

#newsSentence > div > a:hover .newsText::after {
  transform: scale(1, 1);
}

@media (max-width: 1000px) {
  #newsSection > div {
    width: 86%;
    grid-template-areas: "newsTitle newsLink" "newsContent newsContent";
    grid-template-columns: 70% 30%;
    grid-template-rows: auto 1fr;
  }

  #newsTitle {
    margin-bottom: 10px;
  }

  #newsTitle > p {
    font-size: 32px;
    text-align: left;
    vertical-align: middle;
  }

  #newsTitle > p > span {
    font-size: 13px;
    display: inline;
    padding-left: 5px;
  }

  #newsLink p {
    text-align: right;
  }

  #newsLink p > a {
    font-size: 11px;
  }

  #newsLink p > a::before {
    width: 14px;
    height: 14px;
  }

  #newsLink p > a::after {
    width: 3px;
    height: 3px;
  }

  #newsSentence > div > a {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #newsSentence .newsDate {
    font-size: 11px;
    width: 20%;
    text-align: left;
    margin-bottom: 5px;
  }

  #newsSentence .newsCategory {
    font-size: 10px;
    width: 80%;
    text-align: left;
    margin-bottom: 5px;
  }

  #newsSentence .newsText {
    font-size: 13px;
    line-height: 1.3;
    width: 100%;
  }
}
#recommendDormitory {
  padding: 60px 0 40px;
  background-color: #f1f1f1;
}

div.recDomContent {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 900px;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

div.recDomImg {
  width: 400px;
  height: 293px;
  position: relative;
}

div.recDomImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

div.recDomImg .dormitoryIcon {
  position: absolute;
  top: 0;
  right: 20px;
  height: 28px;
  line-height: 28px;
  border-radius: 15px;
  box-sizing: border-box;
}

div.recDomImg .dormitoryIcon > p {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fefefe;
  width: 90px;
}

div.recDomImg .dormitoryIcon img.d_icon {
  width: 25px;
  height: auto;
  padding-right: 2px;
  object-fit: contain;
  box-sizing: border-box;
  position: relative;
  top: -3px;
  left: -1px;
  border-radius: 0;
}

div.recDomImg .dormitoryIcon.firstIcon {
  background-color: #13bafc;
  top: 20px;
}

div.recDomImg .dormitoryIcon.secondIcon {
  background-color: #f54ea5;
  top: 55px;
}

div.recDomImg .dormitoryIcon.thirdIcon {
  background-color: #ff9411;
  top: 90px;
}

div.recDomTxt > h3 {
  font-size: 48px;
  padding-bottom: 5px;
}

div.recDomTxt > h4 {
  font-size: 16px;
  padding-bottom: 10px;
}

div.recDomTxt p.recDomPrice {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
}

div.recDomTxt p.recDomPrice > span {
  font-size: 16px;
  font-weight: 500;
}

div.recDomTxt p.recDomText {
  line-height: 1.4;
}

@media (max-width: 900px) {
  #recommendDormitory {
    padding: 50px 0 5px;
  }

  div.recDomContent {
    width: 86%;
    max-width: 460px;
    flex-direction: column;
    gap: 0;
  }

  div.recDomImg {
    max-width: 400px;
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 5;
    margin-bottom: 20px;
  }

  div.recDomImg .dormitoryIcon {
    right: 10px;
  }

  div.recDomImg .dormitoryIcon > p {
    font-size: 12px;
    font-weight: 400;
  }

  div.recDomImg .dormitoryIcon img.d_icon {
    left: -3px;
  }

  div.recDomTxt > h3 {
    font-size: 40px;
    text-align: center;
  }

  div.recDomTxt > h4 {
    font-size: 15px;
    text-align: center;
  }

  div.recDomTxt p.recDomText {
    font-size: 13px;
  }
}
div.recDomWord {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px auto;
}

div.recDomWord > p {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  color: #009944;
  background-color: #e6f3db;
}

@media (max-width: 900px) {
  div.recDomWord {
    flex-wrap: wrap;
  }

  div.recDomWord > p {
    font-size: 10px;
  }
}
div.recDomLink {
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

div.recDomLink div.btnDetail > a {
  color: #fefefe;
  background: linear-gradient(to right, #fefefe 50%, #009944 50%);
  background-size: 200% 100%;
  background-position: right top;
  border: solid 1px #009944;
  width: 130px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 16px;
  box-sizing: border-box;
  transition: all 0.6s ease-in-out;
}

div.recDomLink div.btnDetail > a:hover {
  color: #009944;
  background-position: left top;
}

div.recDomLink div.btnApp > a {
  color: #fefefe;
  background: linear-gradient(to right, #009944 50%, #434343 50%);
  background-size: 200% 100%;
  background-position: right top;
  width: 130px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 16px;
  transition: all 0.6s ease-in-out;
}

div.recDomLink div.btnApp > a:hover {
  background-position: left top;
}

@media (max-width: 900px) {
  div.recDomLink {
    justify-content: center;
  }
}
#dormitoryAll {
  padding: 0 0 80px;
  background-color: #f1f1f1;
}

#dormitorySpace {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 1080px) {
  #dormitorySpace {
    max-width: 90%;
    justify-content: center;
  }
}
div.dormitoryContent {
  width: 340px;
  background-color: #fefefe;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
}

div.dormitoryImg {
  width: 100%;
}

div.dormitoryImg {
  width: 100%;
  position: relative;
}

div.dormitoryImg > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

div.dormitoryImg .dormitoryIcon {
  position: absolute;
  top: 0;
  right: 0;
  height: 28px;
  line-height: 28px;
  border-radius: 15px;
  box-sizing: border-box;
}

div.dormitoryImg .dormitoryIcon > p {
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fefefe;
  width: 90px;
}

div.dormitoryImg .dormitoryIcon img.d_icon {
  width: 25px;
  height: auto;
  padding-right: 2px;
  object-fit: contain;
  box-sizing: border-box;
  position: relative;
  top: -3px;
  left: -1px;
  border-radius: 0;
}

div.dormitoryImg .dormitoryIcon.firstIcon {
  background-color: #13bafc;
  top: 20px;
  right: 10px;
}

div.dormitoryImg .dormitoryIcon.secondIcon {
  background-color: #f54ea5;
  top: 55px;
  right: 10px;
}

div.dormitoryImg .dormitoryIcon.thirdIcon {
  background-color: #ff9411;
  top: 90px;
  right: 10px;
}

div.dormitoryTxt {
  margin: 20px auto;
}

div.dormitoryTxt > h3 {
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.05em;
}

div.dormitoryTxt > h4 {
  font-size: 16px;
  text-align: center;
  margin: 5px auto 15px;
}

div.dormitoryTxt > p {
  font-size: 14px;
  line-height: 1.5;
  color: #434343;
}

div.dormitoryLink {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

div.dormitoryLink div.btnDetail > a {
  color: #fefefe;
  background-color: #009944;
  width: 130px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 16px;
}

div.dormitoryLink div.btnApp > a {
  color: #fefefe;
  background-color: #434343;
  width: 130px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  border-radius: 16px;
}

@media (max-width: 900px) {
  #dormitoryAll {
    padding: 50px 0;
  }

  div.dormitoryContent {
    width: 320px;
  }

  div.dormitoryImg > img {
    height: 200px;
  }

  div.dormitoryImg .dormitoryIcon > p {
    font-size: 12px;
    font-weight: normal;
    position: relative;
    top: 0;
    line-height: 1.4;
  }

  div.dormitoryImg .dormitoryIcon img.d_icon {
    padding-right: 2px;
    top: 3px;
    left: -4px;
  }

  div.dormitoryTxt > h3 {
    font-size: 40px;
  }

  div.dormitoryTxt > h4 {
    font-size: 15px;
  }

  div.dormitoryTxt > p {
    font-size: 13px;
  }
}
#faqArea {
  width: 800px;
  padding: 80px 0;
  margin: auto;
}

@media (max-width: 900px) {
  #faqArea {
    width: 86%;
    padding: 60px 0;
  }
}
.moveinTitle {
  margin: auto;
  margin-bottom: 50px;
}

.moveinTitle > h3 {
  font-size: 48px;
  color: #009944;
  text-align: center;
  margin-bottom: 10px;
}

.moveinTitle > h4 {
  font-size: 24px;
  color: #009944;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 20px;
}

.moveinTitle > p {
  font-size: 16px;
  color: #009944;
  text-align: center;
}

@media (max-width: 900px) {
  .moveinTitle {
    margin: auto;
    margin-bottom: 30px;
  }

  .moveinTitle > h3 {
    font-size: 40px;
  }

  .moveinTitle > h4 {
    font-size: 20px;
  }

  .moveinTitle > p {
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
  }
}
#faqLink {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
}

#faqLink > div {
  display: flex;
  align-items: center;
  width: 190px;
  background-color: #009944;
  border-radius: 30px;
  margin: 0 5px 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#faqLink > div:hover {
  filter: opacity(0.8);
}

#faqLink > div a {
  color: #fefefe;
  font-size: 15px;
  width: 100%;
  height: 100%;
  display: table-cell;
  height: auto;
  line-height: 1.4;
  /*height:36px; line-height: 36px;*/
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

#faqLink > div a:hover {
  filter: opacity(0.8);
}

@media (max-width: 700px) {
  #faqLink > div {
    align-items: center;
    width: 150px;
    margin: 0 auto 20px;
  }

  #faqLink > div a {
    font-size: 13px;
    display: table-cell;
    height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
div.faqSection {
  padding-top: 60px;
}

div.faqSection > h5 {
  font-size: 24px;
  color: #009944;
}

div.faqSection > div.faqBlock {
  margin-top: 20px;
  border: solid 1px #009944;
}

div.faqSection > div.faqBlock details {
  margin: auto;
  position: relative;
}

div.faqSection > div.faqBlock details::before {
  content: "";
  top: 20px;
  left: 30px;
  width: 26px;
  height: 21px;
  background: url("../image/faq/faqIcon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

div.faqSection > div.faqBlock details::after {
  content: "";
  top: 22px;
  right: 30px;
  width: 15px;
  height: 15px;
  background-color: #009944;
  border-radius: 10px;
  position: absolute;
}

div.faqSection > div.faqBlock details summary {
  font-size: 16px;
  line-height: 1.4;
  color: #009944;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  padding: 20px 30px;
  padding-left: 66px;
  position: relative;
  z-index: 10;
}

div.faqSection > div.faqBlock details summary::before {
  content: "";
  width: 7px;
  height: 1px;
  top: 29px;
  right: 34px;
  background-color: #fefefe;
  position: absolute;
}

div.faqSection > div.faqBlock details summary::after {
  content: "";
  width: 7px;
  height: 1px;
  top: 29px;
  right: 34px;
  background-color: #fefefe;
  position: absolute;
  transform: rotateZ(90deg);
  transition: all 0.6s ease-in-out;
}

div.faqSection > div.faqBlock details[open] summary::after {
  transform: rotateZ(0);
}

div.faqSection > div.faqBlock details p {
  font-size: 14px;
  line-height: 1.4;
  padding: 5px 30px 20px 66px;
}

div.faqSection > div.faqBlock details p > a {
  color: #434343;
  width: fit-content;
  display: inline-block;
  position: relative;
}

div.faqSection > div.faqBlock details p > a:hover {
  color: #009944;
}

div.faqSection > div.faqBlock details p > a::after {
  content: "";
  background-color: #434343;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
}

div.faqSection > div.faqBlock details p > a:hover::after {
  animation: extendLine 0.6s ease-in-out forwards;
}

@media (max-width: 900px) {
  div.faqSection {
    padding-top: 40px;
  }

  div.faqSection > h5 {
    font-size: 18px;
  }

  div.faqSection > div.faqBlock {
    margin-top: 15px;
  }

  div.faqSection > div.faqBlock details::before {
    top: 16px;
    left: 16px;
    width: 24px;
    height: 20px;
  }

  div.faqSection > div.faqBlock details::after {
    top: 17px;
    right: 16px;
  }

  div.faqSection > div.faqBlock details summary {
    font-size: 14px;
    line-height: 1.4;
    padding: 15px 20px;
    padding-left: 50px;
    padding-right: 30px;
  }

  div.faqSection > div.faqBlock details summary::before {
    top: 24px;
    right: 20px;
  }

  div.faqSection > div.faqBlock details summary::after {
    top: 24px;
    right: 20px;
  }

  div.faqSection > div.faqBlock details p {
    font-size: 12px;
    padding: 1px 30px 20px 50px;
  }
}
@keyframes extendLine {
  0% {
    transform: scale(0, 1);
    transform-origin: left bottom;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: left bottom;
    background-color: #009944;
  }
}
#flowArea {
  width: 800px;
  padding: 80px 0;
  margin: auto;
}

@media (max-width: 900px) {
  #flowArea {
    width: 86%;
    padding: 60px 0;
  }
}
div.moveinStep {
  width: 640px;
  margin: auto;
  display: grid;
  grid-template-areas: "moveinNum moveinContent" "moveinLine moveinContent";
  grid-template-columns: 110px 1fr;
  grid-template-rows: 76px auto;
}

div.moveinNum {
  grid-area: moveinNum;
}

div.moveinNum > p {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #009944;
  text-align: center;
}

div.moveinNum > p > span {
  font-size: 56px;
  font-weight: 700;
  display: block;
}

div.moveinLine {
  grid-area: moveinLine;
}

div.moveinLine > span {
  top: 20px;
  left: 55px;
  width: 2px;
  height: 140%;
  background-color: #009944;
  display: block;
  position: relative;
}

div.moveinContent {
  grid-area: moveinContent;
}

div.moveinText {
  margin: auto;
}

div.moveinText > h5 {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

div.moveinText > h5::before {
  content: "";
  position: absolute;
}

div#stepNum01.moveinStep div.moveinText > h5::before {
  width: 42px;
  height: 42px;
  top: -10px;
  left: 0;
  background: url("../image/guide/iconStep01.png");
  background-size: contain;
  background-repeat: no-repeat;
}

div#stepNum02.moveinStep {
  margin-top: 80px;
}

div#stepNum02.moveinStep div.moveinText > h5::before {
  width: 25px;
  height: 43px;
  top: -10px;
  left: 10px;
  background: url("../image/guide/iconStep02.png");
  background-size: contain;
  background-repeat: no-repeat;
}

div#stepNum03.moveinStep {
  margin-top: 80px;
}

div#stepNum03.moveinStep div.moveinText > h5::before {
  width: 52px;
  height: 33px;
  top: -5px;
  left: -3px;
  background: url("../image/guide/iconStep03.png");
  background-size: contain;
  background-repeat: no-repeat;
}

div#stepNum04.moveinStep {
  margin-top: 80px;
}

div#stepNum04.moveinStep div.moveinText > h5::before {
  width: 52px;
  height: 33px;
  top: -5px;
  left: 0px;
  background: url("../image/guide/iconStep04.png");
  background-size: contain;
  background-repeat: no-repeat;
}

div.moveinText > p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 60px;
}

div.moveinText > p > span {
  color: #009944;
}

div.moveinText div.moveinLink {
  display: flex;
  column-gap: 20px;
  padding-left: 60px;
}

div.moveinText div.moveinLink div > a {
  font-size: 16px;
  color: #fefefe;
  background: linear-gradient(to right, #fefefe 50%, #009944 50%);
  background-size: 200% 100%;
  background-position: top right;
  letter-spacing: 0.05em;
  width: 200px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 22px;
  border: solid 2px #009944;
  transition: all 0.6s ease-in-out;
}

div.moveinText div.moveinLink div > a:hover {
  color: #009944;
  background-position: top left;
}

@media (max-width: 900px) {
  div.moveinStep {
    width: 100%;
    grid-template-columns: 52px 1fr;
    grid-template-rows: 64px auto;
    column-gap: 10px;
  }

  div.moveinNum > p {
    font-size: 14px;
  }

  div.moveinNum > p > span {
    font-size: 40px;
  }

  div.moveinLine > span {
    top: 0;
    left: 24px;
  }

  div.moveinText > h5 {
    font-size: 20px;
    padding-left: 46px;
  }

  div#stepNum01.moveinStep div.moveinText > h5::before {
    width: 36px;
    height: 36px;
    top: -7px;
    left: 0;
  }

  div#stepNum02.moveinStep div.moveinText > h5::before {
    width: 24px;
    height: 34px;
    top: -7px;
    left: 12px;
  }

  div#stepNum02.moveinStep {
    margin-top: 60px;
  }

  div#stepNum03.moveinStep div.moveinText > h5::before {
    width: 40px;
    height: 28px;
    top: -3px;
    left: -1px;
  }

  div#stepNum03.moveinStep {
    margin-top: 60px;
  }

  div#stepNum04.moveinStep div.moveinText > h5::before {
    width: 44px;
    height: 30px;
    top: -4px;
    left: 0px;
  }

  div#stepNum04.moveinStep {
    margin-top: 60px;
  }

  div.moveinText > p {
    font-size: 12px;
    padding-left: 0;
  }

  div.moveinText div.moveinLink {
    column-gap: 10px;
    padding-left: 0;
  }

  div.moveinText div.moveinLink div > a {
    font-size: 13px;
    letter-spacing: 0.01em;
    width: 104px;
    height: 28px;
    line-height: 28px;
  }
}
