.container {
  max-width: 284px;
  width: 100%;
  margin: 0 auto;
}
@media (width >= 768px) {
  .container {
    max-width: 560px;
  }
}
@media (width >= 1024px) {
  .container {
    max-width: 832px;
  }
}
@media (width >= 1440px) {
  .container {
    max-width: 1152px;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (width >= ) {
  html {
    font-size: 41.67%;
  }
}
@media (width >= 768px) {
  html {
    font-size: 55%;
  }
}

body {
  color: #333333;
  background: url(../img/cow_patarn.png) repeat center/contain;
  background-size: 450px;
  z-index: -99;
}
@media (width >= 768px) {
  body {
    background: url(../img/cow_patarn_pc.png) repeat center/contain;
  }
}

a:hover {
  opacity: 0.5;
}

.header {
  width: 100%;
  height: 54px;
  position: sticky;
  top: 0;
  z-index: 99;
}
@media (width >= 1024px) {
  .header {
    height: 104px;
  }
}
.header .container {
  max-width: 359px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (width >= 768px) {
  .header .container {
    max-width: 729px;
  }
}
@media (width >= 1024px) {
  .header .container {
    max-width: 985px;
  }
}
@media (width >= 1440px) {
  .header .container {
    max-width: 1401px;
  }
}
.header .container .logo_h1 {
  z-index: 99999;
}
.header .container .logo_h1 a {
  display: inline-block;
  width: 100%;
}
.header .container .logo_h1 a .logo_img {
  width: 128px;
  height: 32px;
}
@media (width >= 1024px) {
  .header .container .logo_h1 a .logo_img {
    width: 208px;
    height: 52px;
  }
}
.header .container .nav_header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.header .container .nav_header .nav_list {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
}
@media (width >= 1024px) {
  .header .container .nav_header .nav_list {
    display: flex;
  }
  .header .container .nav_header .nav_list li:first-of-type {
    margin-right: 42px;
  }
  .header .container .nav_header .nav_list li + li {
    margin-right: 42px;
  }
  .header .container .nav_header .nav_list li.nav_items.pc_btn {
    margin-right: 0;
  }
}
.header .container .nav_header .nav_list .nav_items .nav_items_link {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header .container .nav_header .nav_list .nav_items .nav_items_link .link_icon_title {
  padding: 22px 0;
  height: 100%;
}
@media (width >= 1024px) {
  .header .container .nav_header .nav_list .nav_items .nav_items_link .link_icon_title {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.header .container .nav_header .nav_list .nav_items .nav_items_link .link_icon_title .link_text {
  margin-top: 14px;
}
@media (width >= 1024px) {
  .header .container .nav_header .nav_list .nav_items.no_white_nav {
    display: none;
  }
}

@media (width >= 1024px) {
  .nav_items.sp_btn {
    display: none;
  }
}

.nav_items.pc_btn {
  display: none;
}
@media (width >= 1024px) {
  .nav_items.pc_btn {
    display: inline-block;
    border-radius: 10px;
    width: 220px;
    padding: 20px 20px;
    background-color: #FB8014;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    color: #fff;
  }
  .nav_items.pc_btn .nav_items_link::after {
    content: "";
    display: inline-block;
    background: url(../img/right_arrow.svg) no-repeat center/cover;
    width: 0.5em;
    height: 0.5em;
    position: absolute;
    top: 50%;
    margin-top: -0.25em;
    margin-left: 10px;
  }
}
@media (width >= 1440px) {
  .nav_items.pc_btn {
    width: 252px;
    padding: 25.5px 25.5px;
    font-size: 20px;
  }
}

.burger {
  z-index: 999;
  display: flex;
  width: 4rem;
  height: 4rem;
  background: url(../img/burgericon.svg) no-repeat center/contain;
  background-size: 2.4rem;
  cursor: pointer;
  border-radius: 4px;
  background-color: #fff;
}
@media (width >= 1024px) {
  .burger {
    display: none;
  }
}

.burger.is-active {
  width: 4rem;
  height: 4rem;
  background: url(../img/closeicon.svg) no-repeat center/contain;
  background-size: 2.4rem;
  cursor: pointer;
  border-radius: 4px;
  background-color: #fff;
}

#burger_menu.is-active {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  padding: 104px 32px 200px;
  width: 100%;
  background-color: #A0D6E9;
}
#burger_menu.is-active li.nav_items {
  width: calc((100% - 32px) / 2);
  height: 104px;
  border-radius: 10px;
  background-color: #fff;
}
#burger_menu.is-active li.no_white_nav {
  background-color: #A0D6E9;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
  gap: 16px;
}
#burger_menu.is-active li.no_white_nav a {
  height: 12px;
  text-align: left;
}
#burger_menu.is-active a.nav_items_link {
  width: 100%;
  text-align: center;
}

.nav_header li {
  font-size: 12px;
}
@media (width >= 1440px) {
  .nav_header li {
    font-size: 16px;
  }
}

.header {
  background-color: #fff;
}

.fv {
  height: 613px;
  background: url(../img/horseride.jpg) no-repeat center/cover;
}
@media (width >= 1024px) {
  .fv {
    background: url(../img/horseride.jpg) no-repeat right/cover;
    background-size: 880px;
    background-color: #FFE142;
  }
}
@media (width >= 1440px) {
  .fv {
    height: 744px;
    background: url(../img/horseride.jpg) no-repeat right/cover;
    background-size: 1258px;
    background-position-y: top;
    background-color: #FFE142;
  }
}
.fv .fv_title {
  display: flex;
  gap: 14px;
  padding: 42px 0 0 42px;
}
@media (width >= 1024px) {
  .fv .fv_title.sp_fv_title {
    display: none;
  }
}
.fv .fv_title.pc_fv_title {
  display: none;
}
@media (width >= 1024px) {
  .fv .fv_title.pc_fv_title {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}
@media (width >= 1440px) {
  .fv .fv_title.pc_fv_title {
    gap: 32px;
    padding: 72px 0 0 104px;
  }
  .fv .fv_title.pc_fv_title .pc_title_item_1 {
    width: 600px;
    height: 85px;
  }
  .fv .fv_title.pc_fv_title .pc_title_item_2 {
    width: 640px;
    height: 85px;
  }
}
.fv .reserve_btn {
  display: block;
  border-radius: 50px;
  margin-top: 158px;
  margin-left: auto;
  margin-right: 14px;
  width: 182px;
  padding: 16px 16px;
  background-color: #FB8014;
  position: relative;
}
@media (width >= 1024px) {
  .fv .reserve_btn {
    display: none;
  }
}
.fv .reserve_btn::after {
  content: "";
  display: inline-block;
  background: url(../img/right_arrow.svg) no-repeat center/cover;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 50%;
  margin-top: -0.25em;
  margin-left: 10px;
}
.fv .reserve_btn {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: 14px;
  line-height: 1.364;
}

.experience {
  padding-top: 72px;
}
@media (width >= 1440px) {
  .experience {
    padding-top: 104px;
  }
}
@media (width >= 1440px) {
  .experience .farm_title1 img {
    width: 313px;
  }
}
.experience .experience_items_boxes {
  margin-top: 32px;
}
@media (width >= 1440px) {
  .experience .experience_items_boxes {
    margin-top: 54px;
  }
}
.experience .experience_items_boxes .experience_cards {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (width >= 768px) {
  .experience .experience_items_boxes .experience_cards {
    display: flex;
    gap: 32px;
  }
}
@media (width >= 1440px) {
  .experience .experience_items_boxes .experience_cards {
    gap: 64px;
  }
}
.experience .experience_items_boxes .experience_cards .experience_img {
  width: 100%;
  height: 213px;
  border-radius: 15px 15px 0 0;
}
@media (width >= 768px) {
  .experience .experience_items_boxes .experience_cards .experience_img {
    height: 213px;
    border-radius: 15px 0 0 15px;
  }
}
@media (width >= 1024px) {
  .experience .experience_items_boxes .experience_cards .experience_img {
    height: 284px;
  }
}
@media (width >= 1440px) {
  .experience .experience_items_boxes .experience_cards .experience_img {
    height: 426px;
  }
}
.experience .experience_items_boxes .experience_cards .experience_img.img1 {
  background: url(../img/horsefeed.jpg) no-repeat center/cover;
}
.experience .experience_items_boxes .experience_cards .experience_img.img2 {
  background: url(../img/hiyoko.jpg) no-repeat center/cover;
}
.experience .experience_items_boxes .experience_cards .experience_img.img3 {
  background: url(../img/forestAdoventure.jpg) no-repeat center/cover;
}
.experience .experience_items_boxes .experience_cards .experience_text {
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 16px 42px;
}
@media (width >= 768px) {
  .experience .experience_items_boxes .experience_cards .experience_text {
    padding: 32px 42px 32px 0;
    border-radius: 0 15px 15px 0;
  }
}
@media (width >= 1440px) {
  .experience .experience_items_boxes .experience_cards .experience_text {
    padding: 42px 64px 42px 0;
  }
}
.experience .experience_items_boxes .experience_cards .experience_text h3 {
  text-align: center;
}
@media (width >= 768px) {
  .experience .experience_items_boxes .experience_cards .experience_text h3 {
    text-align: left;
  }
}
.experience .experience_items_boxes .experience_cards .experience_text p {
  margin-top: 14px;
}
@media (width >= 768px) {
  .experience .experience_items_boxes .experience_cards .experience_text p {
    margin-top: 24px;
  }
}
@media (width >= 1024px) {
  .experience .experience_items_boxes .experience_cards .experience_text p {
    margin-top: 32px;
  }
}
@media (width >= 1440px) {
  .experience .experience_items_boxes .experience_cards .experience_text p {
    margin-top: 42px;
  }
}

@media (width >= 768px) {
  .experience_cards.bordercolor2 {
    flex-direction: row-reverse;
  }
}
@media (width >= 768px) {
  .experience_cards.bordercolor2 .experience_img.img2 {
    border-radius: 0 15px 15px 0;
  }
}
@media (width >= 768px) {
  .experience_cards.bordercolor2 .experience_text.text2 {
    padding: 42px 0 42px 64px;
    border-radius: 15px 0 0 15px;
  }
}

.experience h3 {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (width >= 1024px) {
  .experience h3 {
    font-size: 24px;
  }
}
@media (width >= 1440px) {
  .experience h3 {
    font-size: 40px;
  }
}
.experience p {
  font-size: 14px;
}
@media (width >= 768px) {
  .experience p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (width >= 1440px) {
  .experience p {
    font-size: 20px;
    line-height: 2;
  }
}
.experience .experience_cards.bordercolor1 {
  border: 5px solid #FBAC14;
}
.experience .experience_cards.bordercolor2 {
  border: 5px solid #53BF4A;
}
.experience .experience_cards.bordercolor3 {
  border: 5px solid #49A8FF;
}
.experience h3.textcolor_1 {
  color: #FBAC14;
}
.experience h3.textcolor_2 {
  color: #53BF4A;
}
.experience h3.textcolor_3 {
  color: #49A8FF;
}

.money {
  padding-top: 72px;
}
@media (width >= 1440px) {
  .money {
    padding-top: 104px;
  }
}
@media (width >= 1440px) {
  .money .farm_title2 img {
    width: 313px;
    height: 109px;
  }
}
.money .money_items_boxes {
  margin-top: 32px;
}
@media (width >= 1440px) {
  .money .money_items_boxes {
    margin-top: 72px;
  }
}
.money .money_items_boxes .money_cards {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 5px solid #FFE142;
  background-color: #FFFADD;
}
.money .money_items_boxes .money_cards h3 {
  padding: 16px 0;
  text-align: center;
  border-bottom: 5px solid #FFE142;
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards h3 {
    padding: 24px 0;
  }
}
@media (width >= 1440px) {
  .money .money_items_boxes .money_cards h3 {
    padding: 42px 0;
  }
}
.money .money_items_boxes .money_cards .money_items {
  padding: 42px 35px 32px;
}
@media (width >= 768px) {
  .money .money_items_boxes .money_cards .money_items {
    padding: 42px 170px 42px;
  }
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards .money_items {
    padding: 42px 240px 54px;
  }
}
@media (width >= 1440px) {
  .money .money_items_boxes .money_cards .money_items {
    padding: 42px 381px 64px;
  }
}
.money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes {
    gap: 24px;
  }
}
@media (width >= 1440px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes {
    gap: 42px;
  }
}
.money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list p {
    font-size: 18px;
  }
}
@media (width >= 1440px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list p {
    font-size: 32px;
  }
}
.money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list .special_money_title {
  width: 102px;
  height: 44px;
  background-color: #fff;
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list .special_money_title {
    width: 187px;
    height: 87px;
  }
}
@media (width >= 1024px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list p.money_text {
    font-size: 12px;
  }
}
@media (width >= 1440px) {
  .money .money_items_boxes .money_cards .money_items .special_money .money_flex_boxes .money_flex_list p.money_text {
    font-size: 16px;
  }
}
.money .money_items_boxes .money_cards .money_items .usually_money {
  margin-top: 32px;
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
}
@media (width >= 1024px) {
  h3 {
    font-size: 24px;
  }
}
@media (width >= 1440px) {
  h3 {
    font-size: 40px;
  }
}

.money_flex_list {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
.money_flex_list .special_money_title .money_text {
  font-size: 10px;
}

.usually_money {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
}
@media (width >= 1024px) {
  .usually_money {
    font-size: 16px;
  }
}
@media (width >= 1440px) {
  .usually_money {
    font-size: 20px;
  }
}

.map {
  padding-top: 72px;
}
@media (width >= 1440px) {
  .map {
    padding-top: 104px;
  }
}
@media (width >= 1440px) {
  .map .farm_title3 img {
    width: 420px;
    height: 109px;
  }
}
.map .map_cards {
  margin-top: 32px;
  width: 100%;
  height: 212px;
  border: 5px solid #665A48;
  border-radius: 20px;
  background: url(../img/farm_map.jpg) no-repeat center/contain;
  background-color: #fff;
}
@media (width >= 1024px) {
  .map .map_cards {
    height: 550px;
  }
}
@media (width >= 1440px) {
  .map .map_cards {
    height: 650px;
    margin-top: 72px;
  }
}

.access {
  padding-top: 72px;
}
@media (width >= 1440px) {
  .access {
    padding-top: 104px;
  }
}
@media (width >= 1440px) {
  .access .farm_title4 img {
    width: 317px;
    height: 109px;
  }
}
.access .access_cards {
  margin-top: 32px;
  width: 100%;
  height: 212px;
  border: 5px solid #665A48;
  border-radius: 20px;
  background: url(../img/access_map.jpg) no-repeat center/cover;
}
@media (width >= 1024px) {
  .access .access_cards {
    height: 550px;
  }
}
@media (width >= 1440px) {
  .access .access_cards {
    height: 650px;
    margin-top: 72px;
  }
}

.question {
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (width >= 1440px) {
  .question {
    padding-top: 104px;
    padding-bottom: 104px;
  }
}
@media (width >= 1440px) {
  .question .farm_title5 img {
    width: 500px;
    height: 109px;
  }
}
.question .q_acodion {
  margin-top: 32px;
  background-color: #fff;
}
@media (width >= 1440px) {
  .question .q_acodion {
    margin-top: 72px;
  }
}

.qa-1 {
  border: 1px solid #665a48;
  border-radius: 5px;
  margin-bottom: 14px;
}
@media (width >= 1024px) {
  .qa-1 {
    margin-bottom: 18px;
  }
}
@media (width >= 1440px) {
  .qa-1 {
    margin-bottom: 32px;
  }
}

.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3.5em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
}
@media (width >= 1024px) {
  .qa-1 summary {
    font-size: 18px;
  }
}
@media (width >= 1440px) {
  .qa-1 summary {
    font-size: 24px;
  }
}

summary::-webkit-details-marker {
  display: none;
}

.qa-1 summary::before,
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-1 summary::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/q_icon.svg) no-repeat center/cover;
}

.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}

.qa-1[open] summary::after {
  transform: rotate(225deg);
}

.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em 3.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
  font-size: 14px;
}
@media (width >= 1024px) {
  .qa-1 p {
    font-size: 18px;
  }
}
@media (width >= 1440px) {
  .qa-1 p {
    font-size: 24px;
  }
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
}

.q_btn {
  margin-left: auto;
  display: block;
  width: 128px;
  padding: 8px 0;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background-color: #665A48;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
}
@media (width >= 1024px) {
  .q_btn {
    width: 180px;
    padding: 8px 0;
    font-size: 16px;
  }
}
@media (width >= 1440px) {
  .q_btn {
    width: 230px;
    padding: 16px 0;
    font-size: 20px;
  }
}

.q_btn::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 8px;
  background: url(../img/right_arrow.svg) no-repeat center/cover;
}
@media (width >= 1440px) {
  .q_btn::after {
    margin-left: 16px;
  }
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 31px 0;
  background: url(../img/rabit.jpg) repeat center/cover;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}
@media (width >= 1440px) {
  .contact {
    padding: 48px 0;
  }
}
.contact .contact_inner p {
  position: relative;
}
.contact .contact_inner p::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 4px;
  background: url(../img/phone_icon.svg) no-repeat center/contain;
}

.contact h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 8px;
}
@media (width >= 768px) {
  .contact h2 {
    font-size: 12px;
  }
}
@media (width >= 1024px) {
  .contact h2 {
    font-size: 16px;
  }
}
.contact p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  margin-top: 8px;
}
@media (width >= 768px) {
  .contact p {
    font-size: 28px;
  }
}
@media (width >= 1024px) {
  .contact p {
    font-size: 40px;
  }
}

.footer {
  background-color: #A0D6E9;
  padding: 42px 94.5px;
}
@media (width >= 1024px) {
  .footer {
    padding: 89px 0;
  }
}
@media (width >= 1024px) {
  .footer .container {
    max-width: 832px;
  }
}
@media (width >= 1440px) {
  .footer .container {
    max-width: 1152px;
  }
}
@media (width >= 1024px) {
  .footer .footer_boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footer_boxes .info {
  width: 147px;
  margin: 0 auto;
  text-align: center;
}
@media (width >= 1024px) {
  .footer .footer_boxes .info {
    display: flex;
    gap: 42px;
    width: auto;
    text-align: left;
    margin: 0;
  }
}
@media (width >= 1024px) {
  .footer .footer_boxes .info .footer_logo img {
    width: 171px;
    height: auto;
  }
}
.footer .footer_boxes .info .info_address {
  margin-top: 16px;
}
@media (width >= 1024px) {
  .footer .footer_boxes .info .info_address {
    margin-top: 0;
  }
}
.footer .footer_boxes .info .info_address p:last-child {
  margin-top: 4px;
}
.footer .footer_boxes .nav_footer {
  margin-top: 32px;
}
@media (width >= 1024px) {
  .footer .footer_boxes .nav_footer {
    margin-top: 0;
    width: 274px;
    height: 62px;
  }
}
.footer .footer_boxes .nav_footer .nav_list {
  display: flex;
  gap: 32px 42px;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (width >= 425px) {
  .footer .footer_boxes .nav_footer .nav_list {
    gap: 32px 64px;
  }
}
@media (width >= 768px) {
  .footer .footer_boxes .nav_footer .nav_list {
    gap: 32px 42px;
  }
}
@media (width >= 1024px) {
  .footer .footer_boxes .nav_footer .nav_list {
    gap: 32px 24px;
  }
}

.footer {
  font-size: 11px;
}
@media (width >= 1024px) {
  .footer {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */