@charset "UTF-8";
/* ================================================
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
Changed from CSS to SCSS
================================================ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Add Reset Code */
*, *::before, *::after {
  box-sizing: border-box;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 769px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 769px) {
  .sp-only {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  color: #11242B;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
  background-color: #00285b;
  word-break: break-all;
}

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

header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 20px 20px;
  background-color: white;
}
header .menu {
  flex-basis: 30%;
  max-width: 30%;
}
header .menu .btn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin-top: 9px;
  margin-left: 15px;
}
header .menu .btn span {
  display: block;
  border-bottom: 2px solid #11242B;
  width: 30px;
  margin-bottom: 10px;
}
header .menu .slide-bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  cursor: pointer;
  transform: translate(-100vw, 0px);
  transition-duration: 0.5s;
}
@media screen and (min-width: 768px) {
  header .menu .slide-bg {
    max-width: 768px;
    left: calc(50vw - 384px);
  }
}
header .menu .slide-bg .slide {
  position: fixed;
  background-color: white;
  height: 100vh;
  width: 90%;
  top: 0;
  left: 0;
  padding: 20px;
  padding-bottom: 90px;
  overflow: auto;
  box-shadow: 0px 0px 21px black;
  transform: translate(-100vw, 0px);
  transition-duration: 0.5s;
}
header .menu .slide-bg .slide .btn-close {
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
  display: block;
  width: 30px;
  height: 30px;
}
header .menu .slide-bg .slide .btn-close span {
  display: block;
  border-bottom: 2px solid #11242B;
  width: 30px;
  margin-bottom: 10px;
  position: absolute;
  top: 15px;
}
header .menu .slide-bg .slide .btn-close span:nth-child(1) {
  transform: rotate(45deg);
}
header .menu .slide-bg .slide .btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}
header .menu .slide-bg .slide .user-state {
  margin-bottom: 30px;
}
header .menu .slide-bg .slide .user-state .btn-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  margin-bottom: 30px;
}
header .menu .slide-bg .slide .user-state .btn-area a {
  flex-basis: 49%;
  max-width: 49%;
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  background-color: #E3007F;
  border-radius: 100px;
  color: white;
  padding: 7px 0px;
}
header .menu .slide-bg .slide .user-state .btn-area a.logout {
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #292929;
  padding: 4px 0px;
}
header .menu .slide-bg .slide .user-state p {
  font-size: 1.4rem;
}
header .menu .slide-bg .slide h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}
header .menu .slide-bg .slide nav {
  margin-bottom: 30px;
}
header .menu .slide-bg .slide nav a {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
header .menu .slide-bg .slide nav a::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-black-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  top: calc(50% - 5px);
  right: 0;
}
header .menu .slide-bg.open {
  transform: translate(0px, 0px);
}
header .menu .slide-bg.open .slide {
  transform: translate(0px, 0px);
}
header .logo-box {
  flex-basis: 40%;
  max-width: 40%;
}
header .login-box {
  flex-basis: 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-left: 20px;
}
header .login-box .userName {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  color: inherit;
}
header .login-box .userName span {
  position: relative;
  padding-left: 19px;
  color: inherit;
}
header .login-box .userName span::before {
  position: absolute;
  content: "";
  background-image: url("../img/icon-user.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: 0;
}
header .login-box .loginBtn {
  color: #E3007F;
  letter-spacing: -0.5px;
  font-weight: bold;
  font-size: 1.2rem;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  background-color: white;
  padding-bottom: 50px;
  margin-top: -1px;
}
main .nav-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  margin-bottom: 50px;
}
main .nav-box nav {
  flex-basis: 50%;
  max-width: 50%;
  text-align: center;
  border-bottom: 3px solid #CCCCCC;
}
main .nav-box nav a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  padding-bottom: 10px;
  font-size: 1.6rem;
}
main .nav-box nav.active {
  border-bottom: 3px solid #E3007F;
}
main .nav-box nav.active a {
  color: #E3007F;
}
main .title-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  align-items: center;
  padding: 0px 20px;
  margin-bottom: 22px;
}
main .title-box:first-child {
  padding-top: 20px;
}
main .title-box h2 {
  font-weight: bold;
  font-size: 1.7rem;
}
main .title-box a {
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  padding-right: 20px;
  text-decoration: none;
  color: inherit;
}
main .title-box a::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-black-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  top: calc(50% - 5px);
  right: 0;
}
main .date-box {
  text-align: right;
  margin-bottom: 30px;
  color: gray;
  padding: 0px 20px;
  margin-top: -16px;
  font-size: 13px;
}
main .radio-box {
  margin: 0px 20px;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  padding: 6px 5px;
}
main .radio-box label {
  margin-right: 17px;
}
main .radio-box label span {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 320px) {
  main .radio-box label {
    margin-right: 10px;
  }
}
main .nft-list-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
}
main .nft-list-box.view {
  display: flex;
}
main .nft-list-box .item {
  flex-basis: 30%;
  max-width: 30%;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}
@media (width >= 768px) {
  main .nft-list-box .item {
    flex-basis: 23%;
    max-width: 23%;
  }
}
main .nft-list-box .item.dummy {
  margin-bottom: 0px;
}
main .nft-list-box .item .thumb {
  box-shadow: 0px 2px 10px 0px rgba(128, 128, 128, 0.3019607843);
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  margin-bottom: 10px;
}
main .nft-list-box .item .no {
  font-size: 1.1rem;
  color: #77918d;
  letter-spacing: 1px;
  font-weight: bold;
}
main .nft-list-box .item p {
  font-weight: bold;
  font-size: 1.2rem;
}
main .nft-list-box .item.new::before {
  position: absolute;
  content: "NEW";
  color: #E3007F;
  top: -11px;
  font-weight: 900;
  left: 0;
  z-index: 1;
}
main .nft-list-box .item.closed::before {
  position: absolute;
  content: "";
  background-image: url("../img/asset-closed.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  z-index: 1;
}
main .event-list-box {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 80px;
}
main .event-list-box a.item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  box-shadow: 0px 2px 10px 0px rgba(128, 128, 128, 0.3019607843);
  margin-bottom: 20px;
  background-image: url("../img/asset-btn.png");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 5px);
  background-position-y: calc(100% - 5px);
  background-size: 16px;
}
main .event-list-box a.item.closed::before {
  position: absolute;
  content: "";
  background-image: url("../img/asset-closed.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  z-index: 1;
}
main .event-list-box a.item .left {
  flex-basis: 20%;
  max-width: 20%;
}
main .event-list-box a.item .right {
  flex-basis: 80%;
  max-width: 80%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
main .event-list-box a.item .right .center .owner {
  font-size: 1.1rem;
  font-weight: bold;
}
main .event-list-box a.item .right .center h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
main .event-list-box a.item .right .center .date {
  font-size: 1.2rem;
  color: #77918D;
  margin-bottom: 10px;
}
main .event-list-box a.item .tag-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  justify-content: flex-start;
}
main .event-list-box a.item .tag-box .item {
  color: white;
  font-weight: bold;
  padding: 0px 6px 1px 8px;
  font-size: 1.1rem;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}
main .event-list-box a.item .tag-box .item.nft {
  background-color: #E3007F;
}
main .event-list-box a.item .tag-box .item.ar {
  background-color: #11242B;
}
main .event-list-box a.item .tag-box .item.quiz {
  background-color: #77918D;
}
@media screen and (max-width: 521px) {
  main .event-list-box a.item .left {
    flex-basis: 30%;
    max-width: 30%;
  }
  main .event-list-box a.item .right {
    flex-basis: 70%;
    max-width: 70%;
  }
}
main .visited-box {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 30px;
  display: none;
}
main .visited-box.view {
  display: block;
}
main .visited-box .event {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}
main .visited-box .event.closed::before {
  position: absolute;
  content: "";
  background-image: url("../img/asset-closed.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  z-index: 1;
}
main .visited-box .event .left {
  flex-basis: 20%;
  max-width: 20%;
}
main .visited-box .event .right {
  flex-basis: 80%;
  max-width: 80%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
main .visited-box .event .right .center .owner {
  font-size: 1.1rem;
  font-weight: bold;
}
main .visited-box .event .right .center h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
main .visited-box .event .right .center h3 a {
  color: inherit;
}
main .visited-box .event .right .center .date {
  font-size: 1.2rem;
  color: #77918D;
  margin-bottom: 10px;
}
main .visited-box .event .tag-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  justify-content: flex-start;
}
main .visited-box .event .tag-box .item {
  color: white;
  font-weight: bold;
  padding: 0px 6px 1px 8px;
  font-size: 1.1rem;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}
main .visited-box .event .tag-box .item.nft {
  background-color: #E3007F;
}
main .visited-box .event .tag-box .item.ar {
  background-color: #11242B;
}
main .visited-box .event .tag-box .item.quiz {
  background-color: #77918D;
}
@media screen and (max-width: 521px) {
  main .visited-box .event .left {
    flex-basis: 30%;
    max-width: 30%;
  }
  main .visited-box .event .right {
    flex-basis: 70%;
    max-width: 70%;
  }
}
main .visited-box .spot-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #ececec;
}
main .visited-box .spot-box .item {
  flex-basis: 30%;
  max-width: 30%;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}
@media (width >= 768px) {
  main .visited-box .spot-box .item {
    flex-basis: 23%;
    max-width: 23%;
  }
}
main .visited-box .spot-box .item.dummy {
  margin-bottom: 0px;
}
main .visited-box .spot-box .item .thumb {
  box-shadow: 0px 2px 4px 0px rgba(128, 128, 128, 0.3019607843);
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  margin-bottom: 10px;
}
main .visited-box .spot-box .item .date {
  font-size: 1.1rem;
  color: #77918d;
}
main .visited-box .spot-box .item p {
  font-weight: bold;
  font-size: 1.2rem;
}
main .visited-box .spot-box .item.new::before {
  position: absolute;
  content: "NEW";
  color: #E3007F;
  top: -11px;
  font-weight: 900;
  left: 0;
  z-index: 1;
}
main .visited-box .spot-box .item.closed::before {
  position: absolute;
  content: "";
  background-image: url("../img/asset-closed.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  z-index: 1;
}
main .account-box {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 30px;
}
main .account-box form {
  width: 84%;
  max-width: 440px;
  margin: 0 auto;
}
main .account-box form .item {
  margin-bottom: 20px;
}
main .account-box form .item label {
  display: block;
  font-weight: bold;
  margin-bottom: 7px;
}
main .account-box form .item input[name=password],
main .account-box form .item input[type=text],
main .account-box form .item input[type=email],
main .account-box form .item input[type=password] {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid gray;
  width: 100%;
}
main .account-box form .item input[name=password][disabled],
main .account-box form .item input[type=text][disabled],
main .account-box form .item input[type=email][disabled],
main .account-box form .item input[type=password][disabled] {
  background-color: #dbdbdb;
  border: none;
}
main .account-box form .option {
  border: 1px dotted #d7d7d7;
  padding: 10px 20px;
  margin: 6px;
  border-radius: 10px;
}
main .account-box form .option [type=checkbox] + span {
  font-size: 1.4rem;
}
main .account-box form .submit,
main .account-box form input[type=submit] {
  width: 80%;
  max-width: 270px;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #E3007F;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: inherit;
  border-radius: 100px;
  padding: 8px 0px;
  margin: 0 auto;
  margin-top: 36px;
}
main .account-box form .submit.disabled,
main .account-box form input[type=submit].disabled {
  background-color: #AAA;
}
main .account-box .center {
  display: block;
  text-align: center;
}
main .account-box h2 {
  font-weight: bold;
  margin-bottom: 10px;
}
main .account-box p {
  text-align: justify;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
main .account-box a {
  color: inherit;
  font-weight: bold;
}
main .account-box hr {
  border: none;
  border-top: 1px dotted #b5b5b5;
}
main .account-box span.strong {
  color: #E3007F;
  font-weight: bold;
}
main .account-box .googleBtn {
  width: 80%;
  max-width: 270px;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #4788F4;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: inherit;
  border-radius: 100px;
  padding: 8px 0px;
  margin: 0 auto;
}
main .account-box .googleBtn span {
  position: relative;
  padding-left: 5px;
  margin-left: 30px;
}
main .account-box .googleBtn span::before {
  content: "";
  background-image: url("../img/icon-google.png");
  width: 30px;
  height: 30px;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: calc(50% - 15px);
}
main .account-box .sub-note {
  background-color: #efefef;
  padding: 18px;
  font-weight: bold;
  color: #515151;
  font-size: 1.3rem;
  line-height: 1.7;
}
main .account-box .sub-note ul {
  list-style: disc;
  margin-left: 20px;
}
main .account-box .sub-note ul li {
  margin-bottom: 10px;
}
main .account-box .sub-note ul li:last-child {
  margin-bottom: 0px;
}
main .account-box .balloon {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 5px 0px;
  /* min-width: 80px; */
  max-width: 76px;
  /* color: #555; */
  /* font-size: 15px; */
  background: #E3007F;
  border-radius: 42px;
  text-align: center;
  animation: fuwafuwa 1.5s infinite;
}
main .account-box .balloon:before {
  content: "";
  position: absolute;
  top: 81%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 20px solid #E3007F;
}
main .account-box .balloon p {
  margin: 0;
  padding: 0;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 2px;
  padding-left: 2px;
  text-align: inherit;
}
main .account-box .btn {
  width: 80%;
  max-width: 270px;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #E3007F;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: inherit;
  border-radius: 100px;
  padding: 8px 0px;
  margin: 0 auto;
  margin-top: 36px;
}
main .account-box .btn span.main {
  display: block;
  font-size: 2rem;
  margin-bottom: 1px;
}
main .account-box .btn span.sub {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
main .account-box .note {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  margin-top: 6px;
}
main .account-box .disableBox {
  background-color: #dbdbdb;
  padding: 20px;
  border-radius: 12px;
}
main .account-box .disableBox h3 {
  font-weight: bold;
}
main .account-box .disableBox p {
  margin-bottom: 0px;
}
main .account-box .form-width {
  width: 84%;
  max-width: 440px;
  margin: 0 auto;
}
main .wysiwyg-box {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 30px;
}
main .wysiwyg-box h2 {
  border-left: 8px solid #E3007F;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 14px;
}
main .wysiwyg-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}
main .wysiwyg-box h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}
main .wysiwyg-box p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
main .wysiwyg-box a {
  word-wrap: break-word;
}
main .wysiwyg-box ol {
  list-style: decimal;
  margin-left: 1.2em;
  margin-bottom: 20px;
}
main .wysiwyg-box ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
main .wysiwyg-box ol li, main .wysiwyg-box ul li {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
main .wysiwyg-box img {
  margin-top: 10px;
  margin-bottom: 10px;
}
main .wysiwyg-box img.border-style {
  border: 1px solid #e1e1e1;
  padding: 10px;
}
main .wysiwyg-box span.strong {
  color: #E3007F;
  font-weight: bold;
}
main .wysiwyg-box p + h2 {
  margin-top: 40px;
}
main .wysiwyg-box p + h3,
main .wysiwyg-box p + h4 {
  margin-top: 30px;
}
main .detail-box {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 30px;
}
main .detail-box .cover {
  margin-bottom: 20px;
}
main .detail-box .cover.nft {
  background-color: #efefef;
  padding: 30px;
  margin-bottom: 10px;
}
main .detail-box .cover img {
  width: 100%;
}
main .detail-box .tag-box {
  margin-bottom: 30px;
}
main .detail-box .tag-box .tag {
  color: #E3007F;
  border: 1px solid #E3007F;
  padding: 1px 10px 2px 10px;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1.2rem;
  font-weight: bold;
}
main .detail-box dl {
  margin-bottom: 12px;
  padding-bottom: 14px;
}
main .detail-box dl dt {
  font-size: 1.2rem;
  font-weight: bold;
  color: #E3007F;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-align: justify;
}
main .detail-box dl dd {
  margin-left: 0.5em;
  font-size: 1.4rem;
  text-align: justify;
}
main .detail-box dl dd.title {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 0;
}
main .detail-box dl dd.title p, main .detail-box dl dd.title a {
  margin-left: 0px;
}
main .detail-box dl dd .link-area {
  padding: 34px 30px;
  background-color: #efefef;
  margin-top: 20px;
}
main .detail-box dl dd .link-area h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
main .detail-box dl dd .link-area p {
  font-weight: normal;
  font-size: 1.4rem;
}
main .detail-box dl dd .link-area a.linkBtn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  background-color: #E3007F;
  border-radius: 100px;
  color: white;
  padding: 7px 0px;
  margin-bottom: 20px;
}
main .detail-box dl dd .link-area a.linkBtn:last-child {
  margin-bottom: 0px;
}
main .detail-box dl dd .link-area .balloon {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 5px 0px;
  max-width: 76px;
  background: #E3007F;
  border-radius: 42px;
  text-align: center;
  animation: fuwafuwa 1.5s infinite;
  margin-top: -20px;
}
main .detail-box dl dd .link-area .balloon:before {
  content: "";
  position: absolute;
  top: 81%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 20px solid #E3007F;
}
main .detail-box dl dd .link-area .balloon p {
  margin: 0;
  padding: 0;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 2px;
  padding-left: 2px;
  text-align: inherit;
}
main .detail-box dl:has(.title) {
  margin-bottom: 27px;
  padding-bottom: 0px;
  border-bottom: none;
}
main .detail-box dl:has(.title) dt {
  margin-bottom: 6px;
  font-weight: bold;
}
main .detail-box dl.tokenId {
  margin-bottom: 2px;
  border-bottom: none;
  padding-bottom: 0px;
}
main .detail-box dl.tokenId dt, main .detail-box dl.tokenId dd {
  display: inline-block;
}
main .detail-box dl.tokenId dt {
  display: inline-block;
  font-size: 1.2rem;
  color: #adadad;
}
main .detail-box dl.tokenId dd {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 0px;
}
main .detail-box dl.tokenId dd .nolink {
  pointer-events: none;
  text-decoration-line: none;
  color: inherit !important;
}
main .detail-box dl.tokenId img.loading {
  width: 20px;
  margin-left: 7px;
}
main .detail-box h2 {
  font-weight: bold;
  color: #E3007F;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
main .detail-box h2.center {
  text-align: center;
}
main .detail-box h3 {
  margin-left: 0.5em;
  font-size: 1.4rem;
  text-align: justify;
  font-weight: bold;
  display: block;
}
main .detail-box span {
  margin-left: 0.5em;
  font-size: 1.4rem;
  text-align: justify;
  display: block;
}
main .detail-box p {
  margin-left: 0.5em;
  font-size: 1.4rem;
  text-align: justify;
  margin-bottom: 12px;
}
main .detail-box p.title {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 0;
  padding-left: 15px;
}
main .detail-box a {
  margin-left: 0.5em;
  font-size: 1.4rem;
  text-align: justify;
  margin-bottom: 12px;
  display: block;
}
main .detail-box a.inline {
  display: inline;
}
main .detail-box .strong {
  font-weight: bold;
}
main .detail-box p + h2,
main .detail-box a + h2 {
  margin-top: 26px;
}
main .detail-box .accordion {
  max-height: 134px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
main .detail-box .accordion::after {
  content: "続きを読む";
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  right: auto;
  text-align: center;
  background-color: #4d4d4d;
  border-radius: 100px;
  color: white;
  cursor: pointer;
}
main .detail-box .accordion::before {
  content: "";
  width: calc(100% + 30px);
  height: 90px;
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  box-shadow: -30px -77px 30px rgba(255, 255, 255, 0.9294117647) inset;
}
main .detail-box .accordion.show {
  max-height: inherit;
}
main .detail-box .accordion.show::before, main .detail-box .accordion.show::after {
  content: none;
}
main .detail-box .event {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 20px;
}
main .detail-box .event.closed::before {
  position: absolute;
  content: "";
  background-image: url("../img/asset-closed.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  z-index: 1;
}
main .detail-box .event .left {
  flex-basis: 20%;
  max-width: 20%;
}
main .detail-box .event .right {
  flex-basis: 80%;
  max-width: 80%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
main .detail-box .event .right .center .owner {
  font-size: 1.1rem;
  font-weight: bold;
}
main .detail-box .event .right .center h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
main .detail-box .event .right .center h3 a {
  color: inherit;
}
main .detail-box .event .right .center .date {
  font-size: 1.2rem;
  color: #77918D;
  margin-bottom: 10px;
}
main .detail-box .event .tag-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  justify-content: flex-start;
}
main .detail-box .event .tag-box .item {
  color: white;
  font-weight: bold;
  padding: 0px 6px 1px 8px;
  font-size: 1.1rem;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
}
main .detail-box .event .tag-box .item.nft {
  background-color: #E3007F;
}
main .detail-box .event .tag-box .item.ar {
  background-color: #11242B;
}
main .detail-box .event .tag-box .item.quiz {
  background-color: #77918D;
}
@media screen and (max-width: 521px) {
  main .detail-box .event .left {
    flex-basis: 30%;
    max-width: 30%;
  }
  main .detail-box .event .right {
    flex-basis: 70%;
    max-width: 70%;
  }
}
main .detail-box hr {
  border: none;
  border-top: 1px dotted #b5b5b5;
}
main .detail-box .sub-note {
  background-color: #efefef;
  padding: 18px;
  font-weight: bold;
  color: #515151;
  font-size: 1.3rem;
  line-height: 1.7;
}
main .detail-box .btn {
  width: 80%;
  max-width: 270px;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #E3007F;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: inherit;
  border-radius: 100px;
  padding: 8px 0px;
  margin: 0 auto;
  margin-top: 36px;
}
main .detail-box .btn.disable {
  background-color: gray;
}
main .detail-box .cancel-btn {
  display: block;
  text-align: center;
  color: inherit;
  font-weight: bold;
}
main .news-list-box {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 80px;
}
main .news-list-box .news-box {
  margin-bottom: 30px;
}
main .news-list-box .news-box a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  color: inherit;
  text-decoration: none;
  border-top: 1px dotted #ddd;
  padding: 13px 0px;
}
main .news-list-box .news-box a:last-child {
  border-bottom: 1px dotted #ddd;
}
main .news-list-box .news-box a .date {
  flex-basis: 120px;
  max-width: 120px;
  font-size: 13px;
}
main .news-list-box .news-box a h3 {
  flex-basis: calc(100% - 130px);
  max-width: calc(100% - 130px);
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  main .news-list-box .news-box a .date,
  main .news-list-box .news-box a h3 {
    flex-basis: 100%;
    max-width: 100%;
  }
  main .news-list-box .news-box a .date {
    margin-bottom: 2px;
  }
}
main .news-list-box .paging-box {
  text-align: center;
}
main .news-list-box .paging-box .item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #E3007F;
  padding: 5px 9px;
  margin: 0px 5px;
  color: #E3007F;
  border-radius: 4px;
}
main .news-list-box .paging-box .item.active {
  background-color: #E3007F;
  color: white;
}
main .news-list-box .paging-box .flex > span {
  vertical-align: top;
  text-decoration: none;
  color: inherit;
  border: 1px solid gray;
  color: gray;
  margin: 0px 5px;
  border-radius: 4px;
  padding: 2px 14px 5px 13px;
}
main .news-list-box .paging-box .flex p.text-sm {
  display: inline-block;
  margin: 18px 0px 10px 0px;
}
main .news-list-box .paging-box .flex p.text-sm span.font-medium {
  font-weight: bold;
}
main .news-list-box .paging-box .flex > a {
  text-decoration: none;
  color: inherit;
  background-color: #E3007F;
  padding: 2px 16px 5px 16px;
  margin: 0px 5px;
  color: white;
  border-radius: 4px;
  vertical-align: top;
}
main .news-list-box .paging-box a {
  text-decoration: none;
  color: inherit;
  background-color: #E3007F;
  padding: 3px 5px 5px 7px;
  margin: 0px 5px;
  color: white;
  border-radius: 4px;
  vertical-align: top;
}
main .news-list-box .paging-box a:has(svg) {
  padding: 6px 1px 2px 3px;
}
main .news-list-box .paging-box span[aria-current] {
  text-decoration: none;
  color: inherit;
  border: 1px solid gray;
  padding: 3px 5px 5px 7px;
  margin: 0px 5px;
  color: gray;
  border-radius: 4px;
  vertical-align: top;
}
main .news-list-box .paging-box span[aria-disabled] {
  vertical-align: top;
  text-decoration: none;
  color: inherit;
  border: 1px solid gray;
  color: gray;
  margin: 0px 6px;
  border-radius: 4px;
  padding: 6px 0px 2px 2px;
}
main .news-list-box .paging-box svg.w-5.h-5 {
  width: 20px;
}
main .contact-box {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  padding: 0 20px;
  margin-bottom: 80px;
}
main .contact-box .note {
  font-weight: bold;
  font-size: 1.3rem;
  text-align: justify;
  margin-bottom: 40px;
  line-height: 1.9;
}
main .contact-box .item {
  margin-bottom: 20px;
}
main .contact-box .item label {
  position: relative;
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1;
}
main .contact-box .item label::after {
  content: "任意";
  background-color: #8d7362;
  color: white;
  font-size: 1rem;
  padding: 3px 6px 4px 6px;
  border-radius: 3px;
  margin-left: 6px;
  margin-bottom: 0px;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: top;
}
main .contact-box .item label.required::after {
  content: "必須";
  background-color: #E3007F;
  color: white;
}
main .contact-box .item textarea,
main .contact-box .item select,
main .contact-box .item input {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid gray;
}
main .contact-box .item textarea {
  height: 15em;
  line-height: 1.5;
}
main .contact-box .item input[type=checkbox] {
  display: inline-block;
  width: inherit;
}
main .contact-box .item input[type=checkbox] + label {
  display: inline-block;
  width: inherit;
  font-size: 1.3rem;
}
main .contact-box .item input[type=submit] {
  width: 80%;
  max-width: 270px;
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #E3007F;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  border: inherit;
  border-radius: 100px;
  padding: 8px 0px;
  margin: 0 auto;
  margin-top: 54px;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0px);
  }
}
footer {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  position: relative;
  background-color: white;
  margin-bottom: 57px;
  margin-top: -1px;
}
footer img.asset {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
footer .bg-color {
  margin-top: -22px;
  background-color: #f7f0f6;
  text-align: center;
  padding-top: 55px;
}
footer .bg-color img.logo {
  display: inline-block;
  margin-bottom: 40px;
  width: 60%;
  max-width: 284px;
}
footer .bg-color nav {
  margin-bottom: 60px;
}
footer .bg-color nav a {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 1.5rem;
}
footer .bg-color .copyright {
  border-top: 1px solid #e5d1e3;
  padding: 5px 0px;
  color: #a38da3;
  font-weight: bold;
  font-size: 1.3rem;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  /*
  @include tablet {
  	// DEFAULT_MAX_WIDTHならばTablet時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 80%;
  	}
  }
  @include sp {
  	// DEFAULT_MAX_WIDTHならばSP時もデフォルトの横幅
  	@if $max-width == $DEFAULT_MAX_WIDTH {
  		max-width: 90%;		
  	}
  }
     */
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(204, 204, 204, 0.7490196078);
  background-color: white;
  padding: 5px 0px;
  box-shadow: 0px 0px 10px rgba(195, 195, 195, 0.4784313725);
}
.footer-nav a {
  flex-basis: 33%;
  max-width: 33%;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #77918d;
  border-right: 1px solid #CCCCCC;
}
.footer-nav a:last-child {
  border-right: none;
}
.footer-nav a img {
  margin: 0 auto;
  width: 28px;
}
.footer-nav a img.forNormal {
  display: block;
}
.footer-nav a img.forActive {
  display: none;
}
.footer-nav a.active {
  color: #E3007F;
}
.footer-nav a.active img.forNormal {
  display: none;
}
.footer-nav a.active img.forActive {
  display: block;
}/*# sourceMappingURL=theme.css.map */
