@charset "UTF-8";

/* ================= */
/* 要素のリセット    */
/* ================= */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}


/* ================= */
/* Base             */
/* ================= */
* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

a:link {
  color: black;
  text-decoration: none;
  transition: color 0.5s;
}

a:visited {
  color: black;
}

a:hover {
  color: red;
}

a:active {
  color: red;
}

img {
  vertical-align: bottom;
}

/* ================= */
/* layout           */
/* ================= */
#layout-header,
#layout-footer,
#layout-title,
#layout-main {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background: white;
  color: black;
  line-height: 1.7;
}

#layout-title,
#layout-main {
  text-align: center;
}

/* ================= */
/* module           */
/* ================= */
/* 【共通】 */

/* ヘッダー＆フッター */
#layout-header p {
  background: black;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px;
}

#layout-header a:link,
#layout-footer a:link {
  color: white;
  text-decoration: none;
  transition: color 0.5s;
}

#layout-header a:visited,
#layout-footer a:visited {
  color: white;
}

#layout-header a:hover,
#layout-footer a:hover {
  color: red;
}




/* マージン */
.margin_b_1em {
  margin-bottom: 1em;
}

.margin_b_2em {
  margin-bottom: 2em;
}

.margin_t_1em {
  margin-top: 1em;
}

/* 画像 */
.image_100 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.image_960 img {
  width: 960px;
  max-width: 100%;
  height: auto;
}

.image_600 img {
  width: 600px;
  max-width: 100%;
  height: auto;
}

/* "pc"classの画像が表示 */
.img_pc {
  display: block;
}

.img_sp {
  display: none;
}

/* "sp"classの画像が表示 */
@media screen and (max-width: 740px) {
  .img_pc {
    display: none;
  }

  .img_sp {
    display: block;
  }
}

/* 文字 */
span.bold {
  font-weight: bold;
}

span.red {
  font-weight: bold;
  color: #c62f64;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

h1.tl_title {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 1.5rem;
}

h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}


/* スクロールミニメニュー */
.menu-area {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-bottom: 2em;
}

.menu-area li {
  font-size: 1.2rem;
  margin-right: 6px;
  padding-left: 6px;
}

.menu-area li+li {
  border-left: solid 1px black;
}

@media screen and (max-width: 600px) {
  .menu-area {
    flex-wrap: wrap;
  }

  .menu-area li {
    font-size: 1.1rem;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
  }
}

/* 黒ボタン */
a.saxx_btn1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: black;
  border: 1px solid black;
  padding: 0 25px 0 40px;
  color: white;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.saxx_btn1:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

a.saxx_btn1:hover {
  background: white;
  color: black;
}

a.saxx_btn1:hover:before {
  border-top: 2px solid black;
  border-right: 2px solid black;
}

/* 画面上に戻るボタン */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.8;
  margin: 0;
  background-image: url(https://www.sportsmario.net/s/saxx/images/scroll_image.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

/* 共通枠 */
section.section {
  width: 100%;
  padding: 3em 0.5em;
  text-align: center;
  font-size: 0.9rem;
}

section.section:last-child {
  padding: 3em 0.5em 5em 0.5em;
}

.wrap {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 880px) {
  section.section {
    padding: 2em 0.5em;
  }

  section.section:last-child {
    padding: 2em 0.5em 4em 0.5em;
  }
}



/* ******【fit guide】****** */
.tl_title2 {
  margin: 1.5em 0 !important;
  text-align: center;
  font-size: 1.5rem;
}

.seriesGuide,
.sizeGuide {
  width: 960px;
  max-width: 100%;
  padding: 3em 0.5em;
  margin: 1em auto 2em auto;
  text-align: center;
  font-size: 1rem;
}

.functionalityGraph,
.innovation {
  width: 100%;
  max-width: 100%;
  padding: 3em 0.5em;
  margin: 1em auto 2em auto;
  text-align: center;
  font-size: 1rem;
}

.innovation {
  margin: 0 auto;
}

/* 【共通】@media */
@media screen and (max-width: 880px) {

  .seriesGuide,
  .functionalityGraph,
  .sizeGuide {
    padding: 1em 0.5em;
  }
}

/* シリーズガイド色  */
.BORDcolor_a:after {
  border-color: #1e8284 transparent transparent transparent;
}

.BORDcolor_e:after {
  border-color: #2851a3 transparent transparent transparent;
}

.BORDcolor_s:after {
  border-color: #e80028 transparent transparent transparent;
}

.SGcolor_b {
  background: black;
}

.SGcolor_a {
  background: #1e8284;
}

.SGcolor_e {
  background: #2851a3;
}

.SGcolor_s {
  background: #e80028;
}

.textcolor_a {
  border-left: 5px solid #1e8284;
}

.textcolor_e {
  border-left: 5px solid #2851a3;
}

.textcolor_s {
  border-left: 5px solid #e80028;
}

.Bcolor_a {
  border: solid 2px #1e8284;
}

.Bcolor_e {
  border: solid 2px #2851a3;
}

.Bcolor_s {
  border: solid 2px #e80028;
}

.Acolor_a {
  background: #1e8284;
  border: 1px solid #1e8284;
}

.Acolor_a:hover {
  color: #1e8284;
}

.Acolor_a:hover:before {
  border-top: 2px solid #1e8284;
  border-right: 2px solid #1e8284;
}

.Acolor_e {
  background: #2851a3;
  border: 1px solid #2851a3;
}

.Acolor_e:hover {
  color: #2851a3;
}

.Acolor_e:hover:before {
  border-top: 2px solid #2851a3;
  border-right: 2px solid #2851a3;
}

.Acolor_s {
  background: #e80028;
  border: 1px solid #e80028;
}

.Acolor_s:hover {
  color: #e80028;
}

.Acolor_s:hover:before {
  border-top: 2px solid #e80028;
  border-right: 2px solid #e80028;
}

/** シリーズ一覧 **/
h2.tl_seriesGuide {
  padding: 0 0 0 20px;
  margin-bottom: 0.5em;
  font-size: 2.1rem;
}

h2.tl_seriesGuide span {
  padding: 11px 10px;
  background: white;
}

.wrap-seriesGuide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 1em;
  margin-bottom: 1em;
}

.w-guide_item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #e7e7e7;
  padding: 1em;
}

.div1 {
  grid-area: 1 / 1 / 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div1 img {
  width: 130px;
  height: auto;
}

.div2 {
  grid-area: 1 / 3 / 2 / 6;
}

h3.tl_seriesName {
  font-size: 1.2rem;
  color: white;
  padding: 6px;
}

h3.tl_seriesName span {
  font-size: 0.9rem;
}

.div3 {
  grid-area: 2 / 3 / 3 / 6;
  padding: 5px;
  margin: 5px 0;
  text-align: left;
  background: white;
  line-height: 20px;
  font-size: 0.8rem;
}

.div4-a,
.div4-e,
.div4-s {
  grid-area: 3 / 3 / 4 / 6;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.div4-a::before {
  content: 'おすすめ着用シーン';
  padding: 1px 3px;
  margin-right: 10px;
  background: white;
  color: #1e8284;
  font-family: sans-serif;
  font-weight: bold;
}

.div4-e::before {
  content: 'おすすめ着用シーン';
  padding: 1px 3px;
  margin-right: 10px;
  background: white;
  color: #2851a3;
  font-family: sans-serif;
  font-weight: bold;
}

.div4-s::before {
  content: 'おすすめ着用シーン';
  padding: 1px 3px;
  margin-right: 10px;
  background: white;
  color: #e80028;
  font-family: sans-serif;
  font-weight: bold;
}

.div5 {
  grid-area: 4 / 1 / 5 / 2;
}

.div6 {
  grid-area: 4 / 2 / 5 / 6;
}

.div7 {
  grid-area: 5 / 1 / 6 / 2;
}

.div8 {
  grid-area: 5 / 2 / 6 / 6;
}

.div9 {
  grid-area: 6 / 1 / 7 / 2;
}

.div10 {
  grid-area: 6 / 2 / 7 / 6;
}

.div11 {
  grid-area: 7 / 1 / 8 / 2;
}

.div12 {
  grid-area: 7 / 2 / 8 / 6;
}

.div5,
.div6,
.div7,
.div8,
.div9,
.div10,
.div11,
.div12 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.div6,
.div8,
.div10,
.div12 {
  text-align: left;
  padding: 3px 5px;
  line-height: 18px;
  background: white;
}

.div6,
.div8 {
  border-bottom: none;
}

.area-B .div10 {
  border-bottom: none;
}

.div11,
.div12 {
  margin-bottom: 10px;
}

h4.series_h4 {
  display: flex;
  align-items: center;
  height: 100%;
  color: white;
  font-weight: normal;
  font-size: 0.8rem;
}

.div13 {
  grid-area: 8 / 1 / 9 / 6;
  width: 100%;
  max-width: 100%;
  margin: auto auto 0 auto;
}


/** TOPS **/
.area-T .div11,
.area-T .div12 {
  display: none;
}

.area-T .div9,
.area-T .div10 {
  margin-bottom: 10px;
}

/** SOCKS **/
.area-SO .div8 {
  border-bottom: 2px solid #2851a3;
}

.area-SO .div13 {
  margin: 1em auto 0 auto;
}


a.GuideBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}

a.GuideBtn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}

a.GuideBtn:hover {
  background: #fff;
}



@media screen and (max-width: 880px) {
  .wrap-seriesGuide {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  h2.tl_seriesGuide {
    font-size: 1.6rem;
  }

  .div1 {
    grid-area: 1 / 1 / 3 / 7;
  }

  .div1 img {
    width: 150px;
    margin-bottom: 10px;
  }

  .div2 {
    grid-area: 3 / 1 / 4 / 7;
  }

  .div3 {
    grid-area: 4 / 1 / 6 / 7;
  }

  .div4-a,
  .div4-e,
  .div4-s {
    grid-area: 6 / 1 / 7 / 7;
  }

  .div5 {
    grid-area: 7 / 1 / 8 / 2;
  }

  .div6 {
    grid-area: 7 / 2 / 8 / 7;
  }

  .div7 {
    grid-area: 8 / 1 / 9 / 2;
  }

  .div8 {
    grid-area: 8 / 2 / 9 / 7;
  }

  .div9 {
    grid-area: 9 / 1 / 10 / 2;
  }

  .div10 {
    grid-area: 9 / 2 / 10 / 7;
  }

  .div11 {
    grid-area: 10 / 1 / 11 / 2;
  }

  .div12 {
    grid-area: 10 / 2 / 11 / 7;
  }

  .div13 {
    grid-area: 11 / 1 / 12 / 7;
  }

  .area-B .div10 {
    border-bottom: solid 2px;
  }

  .Bcolor_a {
    border: solid 2px #1e8284;
  }

  .Bcolor_e {
    border: solid 2px #2851a3;
  }

  .Bcolor_s {
    border: solid 2px #e80028;
  }

  .div8,
  .div9,
  .div10 {
    border-top: none;
    margin-bottom: 0;
  }

  .area3 .div9,
  .area3 .div10 {
    margin-bottom: 10px;
  }

  .div11,
  .div12 {
    border-top: none;
  }
}


/** 機能比較グラフ(PC)　*/
table.wrap-functionalityGraph {
  border-collapse: collapse;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

table tr:nth-child(odd) td {
  background: #e7e7e7;
}

.tr_function:nth-child(odd) th {
  background: #e7e7e7;
}

th,
td {
  padding: 10px;
  vertical-align: middle;
  font-size: 0.8rem;
}

.tr_heading {
  color: white;
}

.tr_seriesName a {
  text-decoration: underline;
}

.tr_function th {
  text-align: left;
  font-weight: normal;
}

.tr_function td {
  text-align: center;
}

.th_color_BLACK {
  background: black;
}

/** 機能比較グラフ(SP) **/
ul.wrap-menu {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

h1.tl_menuTile {
  font-size: 1.5rem;
  color: white;
  background: black;
  text-align: center;
  padding: 10px 0;
}

.wrap-menuFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 15px 0;
}

.menu_item_link {
  display: block;
  line-height: 60px;
  padding: 0.8em;
  position: relative;
  text-decoration: none;
  line-height: 3;
  font-size: 16px;
  cursor: default;
  text-align: left;
}

.menu_item_link:nth-of-type(odd) {
  background: #e7e7e7;
}

.menu_item_link::after {
  content: url(https://www.sportsmario.net/s/saxx/images/plus.svg);
  display: block;
  position: absolute;
  right: 0;
  top: 13px;
  width: 40px;
}

.menu_item_link.on:after {
  content: url(https://www.sportsmario.net/s/saxx/images/minus.svg);
}

.submenu {
  display: none;
}

.menu_every,
.menu_adve,
.menu_sport {
  display: flex;
  flex-wrap: wrap;
  border-left: 8px solid;
}

.submenu_item {
  color: black;
  padding: 1.5em 1em;
  list-style: none;
  font-size: 1rem;
}

.submenu_item a {
  text-decoration: underline;
}

.color_BLUE {
  color: #2851a3;
  font-size: 2rem;
}

.color_GREEN {
  color: #1e8284;
  font-size: 2rem;
}

.color_RED {
  color: #e80028;
  font-size: 2rem;
}

.background_BLUE {
  background: #eef1f8;
}

.background_GREEN {
  background: #edf5f5;
}

.background_RED {
  background: #fdebee;
}

.pc_menu {
  display: table;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 1080px) {
  .pc_menu {
    display: none;
  }

  .sp_menu {
    display: block;
  }
}


/** サイズガイド **/
.wrap-sizeGuide ul {
  display: flex;
  list-style: none;
}

.tab-btn {
  color: #000;
  background-color: #c3c1b8;
  border-bottom: 0.25rem solid #000;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  appearance: none;
  border-bottom: 0.25rem solid #000;
  margin-bottom: 0.3rem;
  padding: 0.5rem 0.5rem 0.25rem;
  transition: color .15s ease-in-out,
    background-color .15s ease-in-out,
    border .15s ease-in-out;
}

.tab-btn:not(:last-of-type) {
  margin-right: 5px;
}

.tab-btn.show {
  color: #fff;
  background: #000;
}

.tab-contents {
  display: none;
  margin-top: 1em;
}

.tab-contents.show {
  display: block;
  background: #eee;
}

.wrap-sizeGuide2 ul {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}

.wrap-sizeGuide2 img {
  width: 212px;
  max-width: 100%;
  height: auto;
}

.tab-btn2 {
  width: 100%;
  list-style: none;
  line-height: 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  background: black;
  color: white;
  padding: 1em;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  appearance: none;
  transition: color .15s ease-in-out,
    background-color .15s ease-in-out,
    border .15s ease-in-out;
}

.show2.tab-btn2 {
  background: #2a2a2a;
  border-bottom: 0.25rem solid #ff3600;
}

.p-2 p {
  padding: 1em 0.3em;
  font-size: 0.8rem;
  font-weight: bold;
  background: black;
  color: white;
}

.tab-btn2 img:hover {
  opacity: 0.7;
}

.tab-contents2 {
  display: none;
  margin-top: 1em;
}

.tab-contents2.show2 {
  display: block;
  background: #eee;
}

.int {
  display: flex;
  padding: 1em;
}

.int_img {
  width: 35%;
}

.int_img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.int_txt {
  width: 65%;
  padding: 0 1em;
  text-align: left;
  font-size: 1rem;
}

.int_txt table {
  text-align: center;
}

.int_txt th {
  background: lightgray;
}

h3.tl_intSize {
  font-size: 1.2rem;
  margin: 1em 0 5px 0;
}

.wrap-sizeGuide table {
  table-layout: fixed;
  width: 100%;
}


@media screen and (max-width: 800px) {
  .tab-contents.show {
    padding: 1em 0;
  }

  .wrap-sizeGuide2 ul {
    flex-direction: column;
    justify-content: center;
  }

  .wrap-sizeGuide2 img {
    width: 60px;
    height: 60px;
  }

  .tab-btn2 {
    display: flex;
    justify-content: center;
    padding: 5px;
  }

  .tab-btn2 p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .p-2 p {
    font-size: 1rem;
  }

  .tab-contents2 {
    margin-top: 1em;
  }

  .int {
    flex-direction: column;
  }

  .int_img {
    width: 100%;
  }

  .int_img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .int_txt {
    width: 100%;
    padding: 0;
  }

  .int_txt table {
    width: 100%;
  }

  .int_txt tr {
    display: block;
    float: left;
  }

  .int_txt tr td,
  .int_txt tr th {
    display: block;
  }

  .int_txt th {
    background: none;
  }

  .int_txt td:nth-child(even) {
    background: #fff;
  }

  .int_txt th:nth-child(even) {
    background: #fff;
  }

  .int_txt th:first-child {
    background: #c0c0c0;
  }

  .int_txt td:first-child {
    background: #c0c0c0;
  }

  .int_txt tbody {
    width: 100%;
  }

  .int_txt tbody tr {
    width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .wrap-sizeGuide ul {
    flex-direction: column;
  }

  .tab-btn:not(:last-of-type) {
    margin: 0 0 5px 0;
  }

  .tab-btn {
    color: black;
    background: white;
    border: solid 2px black;
  }

  .tab-btn.show {
    color: white;
  }
}

/* campaign */
.campaign img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* innovation */
.innovation {
  background: #e5e5e5;
}

.wrap-innovation {
  width: 960px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 1em auto 0 auto;
}

.wrap-innovation_item {
  width: 100%;
  padding: 0 1em;
}

.wrap-innovation_item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

h1.tl_info {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1em;
}

h2.innovation_h2 {
  font-size: 1.1rem;
  margin: 10px;
}

@media screen and (max-width: 880px) {
  .innovation {
    padding: 2em 0.5em;
  }
}

@media screen and (max-width: 600px) {
  .wrap-innovation {
    flex-direction: column;
  }

  .wrap-innovation_item {
    margin: 0 0 1.5em 0;
  }

  .wrap-innovation_item img {
    width: 70%;
  }
}

/* 【フッター】 */
#layout-header p,
footer {
  background: black;
  color: white;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px;
}

#layout-header a:link,
footer a:link {
  color: white;
  text-decoration: none;
  transition: color 0.5s;
}

#layout-header a:visited,
footer a:visited {
  color: white;
}

#layout-header a:hover,
footer a:hover {
  color: red;
}
