<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&amp;family=Noto+Sans+JP:wght@100..900&amp;display=swap');

:root {
  --C-black: #1A1311;
  --C-white: #fff;
  --C-gray: #707070;
  --C-green: #67C44B;
  --C-L-green: #EAF2DF;
  --C-pink: #F57F8C;
  --C-L-pink: #FDF1F3;
  --C-brown: #B89E5F;
}

/* ===============================
	site utility
 =============================== */
body { max-width: 1920px; margin: auto;}
body *{font-family: "M PLUS Rounded 1c", sans-serif; color: var(--C-black); font-weight: 400; line-height: 1.8;}
img { max-width: 100%; height: auto;}
a {transition: 0.4s;}
a:hover {transition: 0.4s; opacity: 0.7;}

/* 最大width幅 */
.w874,.w900,.w946,.w1000 {max-width: 100%;}
.w874 {width: calc(874px + (30px * 2));}
.w900 {width: calc(900px + (30px * 2));}
.w946 {width: calc(946px + (30px * 2));}
.w1000 {width: calc(1000px + (30px * 2));}

/* ボタン */
.btn {
  display: block;
  width: 350px;
  text-align: center;
  padding: 20px 10px;
  margin: auto;
}
.btn a {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 750px) {
  .btn {
    width: 100%;
    padding: 18px;
  }
  .btn a {
    font-size: 16px;
  }
}

body {
  display: grid;
  grid-template-columns: 320px calc(100% - 320px);
  grid-template-rows: auto auto;
  gap: 0px 0px;
  grid-template-areas:
      "header_con main_con"
      "header_con footer_con";
}
main {
  grid-area: main_con;
}
@media screen and (max-width: 750px) {
  body {
    display: block;
  }
}

/* ===============================
	header
 =============================== */
.header {
  grid-area: header_con;
  grid-column: 1 / 3;
  background: var(--C-L-green);
  border-image-source: linear-gradient(var(--C-L-green), var(--C-L-green));
  border-image-slice: 0 fill;
  border-image-outset: 0 0 0 100vw;
  width: 100%;
  max-width: 320px;
  z-index: 999;
}
.header .header_inner {
  position: sticky;
  top: 0;
}
.header_logo {
  padding-top: 74px;
  padding-left: 37px;
  margin-bottom: 90px;
}
.header-nav .nav_toggle {
  display: none;
}
.header-nav .nav_menu .bg_L_green {
  padding-left: 45px;
  padding-right: 30px;
}
.header-nav .nav_menu .station_menu,
.header-nav .nav_menu .office_menu {
  padding-bottom: 35px;
}
.header-nav .nav_menu .station_menu {
  border-bottom: var(--C-white) 2px solid;
}
.header-nav .nav_menu .office_menu {
  padding-top: 22px;
}
.header-nav .nav_menu .station_menu .title,
.header-nav .nav_menu .office_menu .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 18px;
}
.header-nav .nav_menu .station_menu .title {
  color: var(--C-green);
}
.header-nav .nav_menu .office_menu .title {
  color: var(--C-pink);
}
.header-nav .nav_menu .station_menu a,
.header-nav .nav_menu .office_menu a {
  font-size: 15px;
  line-height: 1.8;
}
.header-nav .nav_menu .contact_menu {
  background: var(--C-brown);
  border-image-source: linear-gradient(var(--C-brown), var(--C-brown));
  border-image-slice: 0 fill;
  border-image-outset: 0 0 100vh 100vw;
  padding: 21px 30px 28px 45px;
}
.header-nav .nav_menu .contact_menu * {
  color: var(--C-white);
  line-height: 1.4;
}
.header-nav .nav_menu .contact_menu .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.header-nav .nav_menu .contact_menu li {
  margin-bottom: 20px;
}
.header-nav .nav_menu .contact_menu li p {
  font-size: 16px;
  font-weight: 500;
}
.header-nav .nav_menu .contact_menu li .tel {
  font-size: 29px;
  font-weight: 600;
}
.header-nav .nav_menu .contact_menu li .tel::before {
  content: '';
  background-image: url(../img/common/icon_tel.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  display: inline-block;
}
.header-nav .nav_menu .contact_menu li span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}
.header-nav .nav_menu .contact_menu .contact_btn {
  background: var(--C-white);
  border-radius: 19px;
  width: 100%;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-nav .nav_menu .contact_menu .contact_btn span {
  font-size: 16px;
  font-weight: 600;
  color: var(--C-brown);
}
.header-nav .nav_menu .contact_menu .contact_btn span::before {
  content: '';
  background-image: url(../img/common/icon_mail.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.header-nav .nav_menu .contact_menu .contact_btn.noscript {
  height: 60px;
  border-radius: 0;
  flex-wrap: wrap;
}
.header-nav .nav_menu .contact_menu .contact_btn.noscript span {
  margin-bottom: -10px;
}
.header-nav .nav_menu .contact_menu .contact_btn.noscript img {
  width: 90%;
}
/* 追従クラス付与 */
#js-header.tuiju {
  display: flex;
}
#js-header.tuiju .header_inner {
  top: auto;
  bottom: 0;
  margin-bottom: 0;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .header {
    height: 66px;
    position: sticky;
    top: 0;
    background: var(--C-L-green);
    max-width: inherit;
  }
  .header_inner {
    padding: 0;
    top: 0;
    bottom: auto;
    margin-bottom: auto;
    width: auto;
  }
  .header_logo {
    padding-top: 16px;
    padding-left: 4vw;
    margin-bottom: auto;
  }
  .header_logo img {
    height: 10vw;
    width: auto;
  }
  .header-nav {
    margin-left: auto;
  }
  .header-nav .nav_toggle {
    display: block;
    position: fixed;
    right: 2%;
    top: 1%;
    width: 50px;
    height: 50px;
    background: var(--C-brown);
    border-radius: 4vw;
  }
  .header-nav .nav_toggle span {
    background: var(--C-white);
    width: 60%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
  }
  .header-nav .nav_toggle span:first-child {
    top: 30%;
  }
  .header-nav .nav_toggle span:nth-child(2) {
    top: 50%;
    bottom: 50%;
  }
  .header-nav .nav_toggle span:last-child {
    bottom: 30%;
  }
  .header-nav .nav_menu .bg_L_green {
    padding-left: 8vw;
    padding-right: 8vw;
    padding-top: calc(66px + 4vh);
  }
  .header-nav .nav_menu {
    background: var(--C-L-green);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: auto;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: .5s;
  }
  .header-nav .nav_menu .station_menu,
  .header-nav .nav_menu .office_menu {
    padding-bottom: 5vw;
  }
  .header-nav .nav_menu .office_menu {
    padding-top: 4vw;
  }
  .header-nav .nav_menu .station_menu ul ,
  .header-nav .nav_menu .office_menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .header-nav .nav_menu .station_menu li ,
  .header-nav .nav_menu .office_menu li {
    width: 50%;
  }
  .header-nav .nav_menu .station_menu .title,
  .header-nav .nav_menu .office_menu .title {
    font-size: 4.4vw;
    margin-bottom: 2vw;
  }
  .header-nav .nav_menu .station_menu a,
  .header-nav .nav_menu .office_menu a {
    font-size: 3.6vw;
  }
  .header-nav .nav_menu .contact_menu {
    padding: 4vw 8vw 6vw 8vw;
  }
  .header-nav .nav_menu .contact_menu .title {
    font-size: 4.4vw;
    margin-bottom: 3vw;
  }
  .header-nav .nav_menu .contact_menu li {
    margin-bottom: 4vw;
  }
  .header-nav .nav_menu .contact_menu li p {
    font-size: 3.6vw;
    margin-bottom: 1vw;
  }
  .header-nav .nav_menu .contact_menu li .tel {
    font-size: 6vw;
    margin-bottom: 1vw;
  }
  .header-nav .nav_menu .contact_menu li span {
    font-size: 3.2vw;
  }
  .header-nav .nav_menu .contact_menu .contact_btn {
    border-radius: 10vw;
    height: 12vw;
  }
  .header-nav .nav_menu .contact_menu .contact_btn span {
    font-size: 3.6vw;
  }
  .header-nav .nav_menu .contact_menu .contact_btn.noscript img {
    width: 80%;
  }
  /* ナビオープン時 */
  .nav-open .header-nav .nav_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    justify-content: space-between;
  }
  .nav-open .header-nav .nav_toggle {
    border-radius: 0;
  }
  .nav-open .header_contact {
    position: fixed;
  }
  .nav-open .header-nav .nav_toggle span:first-child {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header-nav .nav_toggle span:nth-child(2) {
    display: none;
  }
  .nav-open .header-nav .nav_toggle span:last-child {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header_bg {
    opacity: .3;
    visibility: visible;
    transform: translateY(0);
  }
    /* 追従クラス付与 */
    #js-header.tuiju {
      display: block;
    }
    #js-header.tuiju .header_inner {
      top: 0;
      bottom: auto;
      margin-bottom: auto;
      width: auto;
    }
}

/* ===============================
	footer
 =============================== */
#footer {
  grid-area: footer_con;
  border-image-source: linear-gradient(var(--C-L-pink), var(--C-L-pink));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 0;
}
#footer a {
  color: #000;
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 0 40px; */
}
.footer_inner {
  max-width: 1290px;
  overflow: visible;
  margin-left: 9.27083333333333vw;
  margin-right: 20px;
  padding-top: 56px;
  padding-bottom: 10px;
  container-type: inline-size;
}
.footer_txt {
  max-width: 100%;
}
.footer_company {
  margin-bottom: 32px;
}
.footer_company strong {
  font-size: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.footer_company address {
  font-size: 18px;
}
.footer_store ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_store li {
  border-left: var(--C-gray) 1px solid;
  padding-left: 18px;
}
.footer_store .store_station {
  /* width: clamp(287px, 332 / 1780* 100vw, 332px); */
  padding-right: 30px;
}
.footer_store .store_station p {
  color: var(--C-green);
}
.footer_store .store_office {
  /* width: 240px; */
  padding-right: 30px;
}
.footer_store .store_office p {
  color: var(--C-pink);
}
.footer_store p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 14px;
}
.footer_store span {
  font-size: 15px;
  line-height: 1.6;
  display: block;
}
.footer_link {
  padding-top: 44px;
  width: calc(100% - 440px);
  max-width: 800px;
}
.footer_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px 29px;
  /* width: 545px; */
  /* width: clamp(300px, 546 / 1290* 100vw, 545px); */
  max-width: 100%;
  margin-bottom: 20px;
}
.footer_nav {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 25px;
  padding-right: 25px;
}
.footer_nav a {
  font-size: 13px;
  border-bottom: var(--C-black) 1px solid;
}
.footer_copyright {
  font-size: 13px;
  text-align: center;
  width: 100%;
  margin-top: 12px;
}
@container (max-width: 1140px) {
  .footer_store ul {
    /* width: 800px; */
    max-width: 100%;
    gap: 20px
  }
  .footer_store li {
    /* width: 50% !important; */
  }
  .footer_link {
    /* margin-left: auto; */
  }
  .footer_banner {
    width: 100%;
  }
}
@media screen and (max-width: 1140px) {
  .footer_link {
    width: 100%;
    /* margin-left: auto; */
  }
  .footer_banner {
    /* width: 100%; */
    flex-wrap: nowrap;
    gap: 15px 1.3vw;
  }
}
@media screen and (max-width: 750px) {
  #footer {
    margin-left: auto;
  }
  .footer_inner {
    padding-top: 14vw;
    padding-bottom: 6vw;
    padding-left: 4vw;
    padding-right: 4vw;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_company {
    margin-bottom: 6vw;
  }
  .footer_company strong {
    font-size: 4.4vw;
    margin-bottom: 2vw;
  }
  .footer_company address {
    font-size: 3.7vw;
  }
  .footer_store ul {
    width: 100%;
    gap: 4vw;
  }
  .footer_store li {
    width: 100% !important;
  }
  .footer_store p {
    font-size: 3.7vw;
    margin-bottom: 2vw;
  }
  .footer_store span {
    font-size: 3.6vw;
  }
  .footer_link {
    padding-top: 6vw;
    margin-right: auto;
  }
  .footer_banner {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2vw;
  }
  .footer_banner li {
    width: calc((100% - 2vw) / 2);
  }
  .footer_nav {
    justify-content: center;
    gap: 4vw;
    padding-right: 0;
  }
  .footer_copyright {
    font-size: 3.1vw;
    text-align: center;
    width: 100%;
    margin-top: 6vw;
  }
}

/* ===============================
	page
 =============================== */
/* 共通タイトル部分 */
.mv_title {
  font-size: 42px;
  text-align: center;
  margin-top: 140px;
}
@media screen and (max-width: 750px) {
  .mv_title {
    font-size: 6vw;
    margin-top: 16vw;
  }
}

/* コンタクトエリア */
.contact_area {
  text-align: center;
  padding-top: 18px;
  margin-bottom: 150px;
}
.contact_area strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 46px;
}
.contact_area h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--C-brown);
  margin-bottom: 16px;
}
.contact_area li,
.contact_area li a {
  font-size: 35px;
  font-weight: 600;
}
.contact_area li:not(:last-child) {
  margin-bottom: 16px;
}
.contact_area li span {
  font-size: 30px;
  font-weight: 600;
}
.contact_area li p {
  font-size: 14px;
}
.contact_area .contact_btn {
  background: var(--C-brown);
  border-radius: 34px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 12px;
  width: 374px;
  max-width: 100%;
  height: 51px;
  padding-right: 14px;
  margin: auto;
  margin-top: 20px;
}
.contact_area .contact_btn p {
  font-size: 20px;
  font-weight: 600;
  color: var(--C-white);
  position: relative;
}
.contact_area .contact_btn p::before {
  content: '';
  width: 40px;
  height: 27px;
  background-image: url(../img/common/icon_mail_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48px;
  margin: auto;
}
.contact_area .contact_btn span {
  font-size: 14px;
  font-weight: 600;
  background: var(--C-white);
  border-radius: 11px;
  padding: 3px 12px;
}
.contact_area .contact_btn.noscript {
  border-radius: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  height: 90px;
  padding-right: 0;
}
.contact_area .contact_btn.noscript p {
  width: 70%;
  margin-left: 12%;
}
@media screen and (max-width: 750px) {
  .contact_area {
    padding-top: 2vw;
    margin-bottom: 16vw;
  }
  .contact_area strong {
    font-size: 4.3vw;
    line-height: 1.6;
    margin-bottom: 4vw;
  }
  .contact_area h3 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
  .contact_area li:not(:last-child) {
    margin-bottom: 2vw;
  }
  .contact_area li,
  .contact_area li a {
    font-size: 9vw;
  }
  .contact_area li p {
    font-size: 3.4vw;
  }
  .contact_area .contact_btn {
    gap: 4vw;
    height: 16vw;
    padding-right: 4vw;
    margin-top: 6vw;
  }
  .contact_area .contact_btn p {
    font-size: 4.2vw;
  }
}

/* 施設概要＆グループ事業 */
.info {
  margin-bottom: 148px;
}
.info .wrap &gt; div:not(:last-child) {
  margin-bottom: 110px;
}
.info .title {
  font-size: 24px;
  font-weight: 600;
  color: var(--C-brown);
  max-width: 234px;
  min-width: 180px;
  width: 100%;
}
.info .station_list,
.info .office_list {
  max-width: 100%;
}
.info .station_list *,
.info .office_list * {
  font-size: 16px;
}
.info ul {
  width: 476px;
  max-width: 100%;
}
.info li {
  border-bottom: #C4C4C4 1px solid;
  padding: 14px 0;
}
.info dl {
  display: flex;
  flex-wrap: wrap;
}
.info dt {
  width: 126px;
}
.info dd {
  width: calc((100% - 126px));
}
.info dd a {
  display: inline-block;
}
.info dd a:hover {
  opacity: 1;
  color: var(--C-brown);
}
.info .station,
.info .office {
  display: flex;
  flex-wrap: wrap;
}
.info .address {
  margin-top: 24px;
}
.info .address &gt; div {
  border-bottom: #C4C4C4 1px solid;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 6px 0;
}
.info .address p {
  width: 256px;
}
.info .address p::before {
  content: '●';
  font-size: 10px;
  color: var(--C-brown);
  margin-right: 1ch;
}
.info .address a {
  width: calc(100% - 276px);
  min-width: 130px;
}
@media screen and (max-width: 750px) {
  .info {
    margin-bottom: 20vw;
  }
  .info .wrap &gt; div:not(:last-child) {
    margin-bottom: 16vw;
  }
  .info .station,
  .info .office {
    display: block;
  }
  .info .title {
    font-size: 4.4vw;
    margin-bottom: 2vw;
  }
  .info .station_list *,
  .info .office_list * {
    font-size: 3.7vw;
    line-height: 1.6;
  }
  .info li {
    padding: 2vw 0;
  }
  .info dt {
    width: 24%;
  }
  .info dd {
    width: 76%;
  }
  .info .address {
    margin-top: 2vw;
  }
  .info .address &gt; div {
    display: block;
    padding: 2vw 0;
  }
}

/* ニュースリスト */
#news_list * {
  color: #1A1311;
}
#news_list li:not(:last-child) {
  border-bottom: var(--C-brown) 1px solid;
}
#news_list a {
  display: flex;
  justify-content: left;
}
#news_list a:hover {
  opacity: 1;
}
#news_list time {
  font-size: 16px;
  transition: 0.4s;
}
#news_list a:hover time {
  color: var(--C-brown);
}
.news_category {
  font-size: 15px;
  font-weight: 600;
  color: var(--C-white) !important;
  border-radius: 11px;
  width: 99px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  transition: 0.4s;
}
.news_category.category_01 {
  background: var(--C-brown);
  border-color: var(--C-brown);
}
.news_category.category_02 {
  background: var(--C-green);
  border-color: var(--C-green);
}
.news_category.category_03 {
  background: var(--C-pink);
  border-color: var(--C-pink);
}
#news_list p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 750px) {
  #news_list a {
    flex-wrap: wrap;
  }
  .news_category {
    font-size: 3.6vw;
    width: 24vw;
    height: 5vw;
  }
  #news_list time {
    font-size: 3.7vw;
  }
  #news_list p {
    font-size: 3.7vw;
  }
}

/* ===============================
	投稿エディタリセット
 =============================== */
 /* 画像配置 */
 img.alignright { display: block; margin: 0 0 0 auto!important;}
 img.alignleft { display: block; margin: 0 auto 0 0!important;}
 img.aligncenter { display: block; margin: 0 auto!important;}

/* タグ */
.post_data * {
  font-size: 16px;
  line-height: 1.5;
}
.post_data strong {
  font-weight: bold;
}
.post_data em {
  font-style: italic;
}
.post_data ul,
.post_data ol {
  padding-left: 25px;
}
.post_data li {
  list-style: disc;
  margin-bottom: 0;
}

.post_data ol li {
  list-style: decimal;
}
.post_data a {
  text-decoration: underline;
}
.post_data p,
.post_data ul,
.post_data ol {
  margin-bottom: 1em;
}

/* ===============================
	ページャー
 =============================== */
 .cms-pagination {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.cms-pagination ul {
  position: relative;
  float: left;
  left: 50%;
  margin-bottom: 12px;
}

.cms-pagination ul li {
  position: relative;
  float: left;
  left: -50%;
  width: 34px;
  height: 38px;
  display: table;
  margin: 0 2px;
  display: none;
}

.cms-pagination ul li.pagination-no-num {
  /* width: 50px; */
  display: table;
}

.cms-pagination ul li.pagination-no-num span {
  background: #eee;
  border: 1px solid #ddd;
  color: #ccc;
}

.cms-pagination ul li.pagination-sp {
  display: table;
}

.cms-pagination ul li a,
.cms-pagination ul li span {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  border: 2px solid var(--C-brown);
  background: var(--C-brown);
  color: var(--C-white);
  font-size: 18px;
  border-radius: 10px;
}

.cms-pagination ul li a:before,
.cms-pagination ul li span:before {
/*   position: absolute;
  display: block;
  content: '';
  width: 96%;
  height: 2px;
  background: #ccc;
  bottom: -3px;
  left: 2%; */
}

.cms-pagination ul li span {
  background: var(--C-white);
  border: 2px solid var(--C-brown);
  color: var(--C-brown);
}

.pagination-txt {
  clear: both;
  text-align: center;
  margin-bottom: 40px;
}

.pagination-txt span {
  color: #999;
}

@media print,screen and (min-width: 1024px) {
  .cms-pagination ul li {
      width: 45px;
      height: 45px;
      margin: 0 3px;
      display: table;
  }
  .cms-pagination ul li a {
      -webkit-transition: background 0.3s ease;
      -moz-transition: background 0.3s ease;
      transition: background 0.3s ease;
  }
  .cms-pagination ul li a:hover {
      background: var(--C-white);
      color: var(--C-brown);
      -webkit-transition: background 0.3s ease;
      -moz-transition: background 0.3s ease;
      transition: background 0.3s ease;
  }
  .cms-pagination ul li.pagination-no-num {
      /* width: 60px; */
  }

  .pagination-txt {
      margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .cms-pagination ul li a,
  .cms-pagination ul li span {
    font-size: 3.2vw;
  }
}</pre></body></html>