/************************************

reset

************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

li {
  list-style-type: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

address,
em {
  font-style: normal;
}

button {
  padding: 0;
  border: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000;
}

/************************************

base

************************************/
html {
  font-size: 625%;
}

@media screen and (max-width: 769px) {
  html {
    font-size: 480%;
  }
}

body {
  position: relative;
  font-family: sans-serif;
  font-size: 0.16rem;
  color: #221815;
  background: #F5F2E9;
}

@media screen and (max-width: 769px) {
  body {
    min-width: auto;
  }
}

a {
  color: #FDF900;
  text-decoration: none;
  transition: 0.2s all ease 0s;
}

a:hover {
  color: #FDF900;
  text-decoration: none;
}

p {
  line-height: 1.8;
  text-align: justify;
}

p a {
  text-decoration: underline;
}

sub {
  font-size: .7em;
  vertical-align: baseline;
}

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

.about {
  margin-top: .4rem;
  text-align: center;
}

.about__heading {
  color: #D70051;
  font-size: .28rem;
  font-weight: bold;
}

@media screen and (max-width: 769px) {
  .about__heading {
    font-size: .2rem;
  }
}

.about__img {
  margin-top: .2rem;
}

.about__caption {
  margin-top: .1rem;
  color: #D70051;
  text-align: center;
}

.about__btn {
  margin-top: .2rem;
}

.backnumber-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr .12rem 1fr .12rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .12rem;
  margin-top: .4rem;
}

@media screen and (max-width: 769px) {
  .backnumber-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

.backnumber__photo {
  margin: .4rem 0;
  background: #FFF;
  padding: .12rem;
  border-radius: 10px;
}

.backnumber__photo figure {
  width: 100%;
  text-align: center;
  background-color: #F5F2E9;
}

.backnumber__photo figcaption {
  color: #000;
  margin-top: .12rem;
  font-size: 0.14rem;
}

.btn-primary {
  display: inline-block;
  position: relative;
  padding: 1.5em 3.2em;
  color: #000;
  font-size: 0.2rem;
  text-align: center;
  background: #FDF900;
  border-radius: 40px;
}

.btn-primary.-small {
  min-width: 250px;
  font-size: .13rem;
}

.btn-primary::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: .25rem;
  width: .08rem;
  height: .08rem;
  margin: auto;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: 0.2s all ease 0s;
}

.btn-primary.-small::after {
  right: .18rem;
  width: .05rem;
  height: .05rem;
}

.btn-primary:hover {
  color: inherit;
  opacity: 0.7;
}

.btn-primary:hover::after {
  transform: translate(0.05rem, 0) rotate(45deg);
}

.container {
  display: flex;
  padding: .7rem 0;
}

.container.-program,
.container.-backnumber {
  background-color: #00A29A;
}

.container.-experience,
.container.-present {
  background-color: #BAA16E;
}

.container.-movie {
  background-color: #F85870;
}

.container__inner {
  display: flex;
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 0 .2rem;
}

.container__inner::after {
  content: "";
  display: block;
  flex-basis: 40%;
}

@media screen and (max-width: 769px) {
  .container__inner::after {
    display: none;
  }
}

.container__contents {
  flex: 1;
}

.experience {
  padding: .12rem;
  background: #FFF;
  border-radius: 20px;
  display: flex;
  gap: .2rem;
}

.experience+.experience {
  margin-top: .3rem;
}

@media screen and (max-width: 769px) {
  .experience {
    flex-direction: column;
  }
}

@media screen and (max-width: 769px) {
  .experience__photo img {
    max-width: none;
    width: 100%;
  }
}

.experience__contents {
  flex: 1;
}

.experience__header {
  display: flex;
  align-items: center;
  margin-bottom: .11rem;
  gap: .1rem;
}

.experience__heading {
  font-size: 0.18rem;
  line-height: 1.4;
  color: #BAA16E;
  flex: 1;
}

.experience__txt {
  font-size: 0.14rem;
}

.experience__btn {
  margin-top: .14rem;
}

@media screen and (max-width: 769px) {
  .experience__btn {
    text-align: center;
  }
}

.experience__btn-caption {
  margin-top: .05rem;
  font-size: .13rem;
}

@media screen and (max-width: 769px) {
  .experience__btn-caption {
    text-align: center;
  }
}

.footer {
  padding: .8rem 0;
  text-align: center;
}

@media screen and (max-width: 769px) {
  .footer {
    padding: .2rem 0 .8rem 0;
  }
}

.footer__copyright {
  color: #797979;
  font-size: 0.12rem;
}

.guest {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr .5rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .5rem;
}

@media screen and (max-width: 769px) {
  .guest {
    gap: .2rem;
  }
}

.guest__item {
  text-align: center;
}

.guest__item p {
  text-align: center;
}

.guest__name {
  margin-top: .2rem;
  font-size: 0.22rem;
}

.guest__notice {
  color: #9A9A9A;
  font-size: 0.16rem;
}

.heading {
  margin-bottom: .3rem;
  text-align: center;
}

.main {
  max-width: 1210px;
  margin: .6rem auto;
  padding: 0 .2rem;
}

@media screen and (max-width: 769px) {
  .main {
    padding: 0;
  }
}

.main__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: .26rem 0 .5rem 0;
  background-color: #4FB142;
  background-image: url(../images/bg_main-top.png), url(../images/bg_main-bottom.png), url(../images/bg_main-left.png), url(../images/bg_main-right.png);
  background-position: center top, center bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  border-radius: 20px;
}

@media screen and (max-width: 769px) {
  .main__inner {
    margin: .2rem;
    padding: .18rem .1rem;
  }
}

.main__title {
  padding: 0 .1rem 0 .42rem;
}

@media screen and (max-width: 769px) {
  .main__title {
    padding: 0;
  }
}

.main__container {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
  padding: 0 .2rem;
}

@media screen and (max-width: 769px) {
  .main__container {
    display: block;
    margin-top: .16rem;
    padding: 0 .15rem;
  }
}

.main__info {
  padding: 0 0 0 .35rem;
}

@media screen and (max-width: 769px) {
  .main__info {
    padding: 0;
  }
}

.main__spacer {
  position: relative;
  flex-basis: 40%;
  flex-shrink: 0;
  text-align: center;
  margin-top: -100px;
}

@media screen and (max-width: 769px) {
  .main__spacer {
    margin-top: 0;
    padding: .3rem .2rem;
  }
}

.main__chara.-absolute {
  position: absolute;
  top: 0;
  left: 25px;
  margin: 0;
}

.main__chara.-fixed-top {
  position: fixed;
  top: 368px;
  margin: 0 .5rem 0 .25rem;
}

@media screen and (max-width: 1210px) {
  .main__chara.-fixed-top {
    top: 33vw;
  }
}

.main__chara.-fixed-bottom {
  position: fixed;
  top: auto;
  bottom: 0;
  margin: 0 .5rem 0 .25rem;
}

@media screen and (max-width: 769px) {
  .main__chara {
    position: static;
    margin-top: 0;
  }

  .main__chara img {
    max-width: 100%;
  }

  .main__chara.-absolute,
  .main__chara.-fixed-top,
  .main__chara.-fixed-bottom {
    position: static;
    margin: 0;
  }
}

.movie {
  position: relative;
  padding-bottom: 52.6%;
}

.movie__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.movie__inner iframe {
  width: 100%;
  height: 100%;
}

.present-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr .5rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .5rem;
}

@media screen and (max-width: 769px) {
  .present-list {
    gap: .2rem;
  }
}

.present-list__item {
  text-align: center;
  color: #FFF;
}

.present-list__item p {
  text-align: center;
}

.present-list__item a {
  color: #FFF;
}

.present-list__item a:hover {
  display: inline-block;
  transform: translate(0, -15px);
}

.present-list__item a:hover .present-list__hover {
  opacity: 1;
}

.present-list__photo {
  position: relative;
  display: inline-block;
}

.present-list__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 161, 242, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.2rem;
  opacity: 0;
  transition: 0.2s all ease 0s;
}

.present-list__hover span::before {
  content: "\f099";
  font-family: "font awesome 5 brands";
  font-weight: 600;
  margin-right: .05rem;
}

.present-list__name {
  margin-top: .2rem;
  font-size: 0.22rem;
}

.present-list__summary {
  font-size: 0.16rem;
  margin-top: 0.2rem;
}

.program-list__item {
  background-color: #FFF;
  border-radius: 10px;
  padding: .15rem;
}

.program-list__item+.program-list__item {
  margin-top: .14rem;
}

.program-list__heading {
  font-size: 0.22rem;
  font-weight: bold;
  color: #00A29A;
  line-height: 1.4;
  margin-bottom: .1rem;
}

.program-list__txt {
  color: #00A29A;
}

.-program .txt,
.-movie .txt,
.-present .txt,
.-backnumber .txt {
  color: #FFF;
}

.txt+.txt {
  margin-top: .25rem;
}

.txt.-center {
  text-align: center;
}

.txt.-lead {
  font-size: .22rem;
}

.wrap {
  padding: .4rem 0;
  background-color: #00A29A;
}

/************************************

Display switch

************************************/
.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

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

  .sp-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none;
  }

  .sp-inline {
    display: inline;
  }
}

.mt1,
.contents.mt1 {
  margin-top: 0.01rem;
}

.mb1 {
  margin-bottom: 0.01rem;
}

.mt2,
.contents.mt2 {
  margin-top: 0.02rem;
}

.mb2 {
  margin-bottom: 0.02rem;
}

.mt3,
.contents.mt3 {
  margin-top: 0.03rem;
}

.mb3 {
  margin-bottom: 0.03rem;
}

.mt4,
.contents.mt4 {
  margin-top: 0.04rem;
}

.mb4 {
  margin-bottom: 0.04rem;
}

.mt5,
.contents.mt5 {
  margin-top: 0.05rem;
}

.mb5 {
  margin-bottom: 0.05rem;
}

.mt6,
.contents.mt6 {
  margin-top: 0.06rem;
}

.mb6 {
  margin-bottom: 0.06rem;
}

.mt7,
.contents.mt7 {
  margin-top: 0.07rem;
}

.mb7 {
  margin-bottom: 0.07rem;
}

.mt8,
.contents.mt8 {
  margin-top: 0.08rem;
}

.mb8 {
  margin-bottom: 0.08rem;
}

.mt9,
.contents.mt9 {
  margin-top: 0.09rem;
}

.mb9 {
  margin-bottom: 0.09rem;
}

.mt10,
.contents.mt10 {
  margin-top: 0.1rem;
}

.mb10 {
  margin-bottom: 0.1rem;
}

.mt11,
.contents.mt11 {
  margin-top: 0.11rem;
}

.mb11 {
  margin-bottom: 0.11rem;
}

.mt12,
.contents.mt12 {
  margin-top: 0.12rem;
}

.mb12 {
  margin-bottom: 0.12rem;
}

.mt13,
.contents.mt13 {
  margin-top: 0.13rem;
}

.mb13 {
  margin-bottom: 0.13rem;
}

.mt14,
.contents.mt14 {
  margin-top: 0.14rem;
}

.mb14 {
  margin-bottom: 0.14rem;
}

.mt15,
.contents.mt15 {
  margin-top: 0.15rem;
}

.mb15 {
  margin-bottom: 0.15rem;
}

.mt16,
.contents.mt16 {
  margin-top: 0.16rem;
}

.mb16 {
  margin-bottom: 0.16rem;
}

.mt17,
.contents.mt17 {
  margin-top: 0.17rem;
}

.mb17 {
  margin-bottom: 0.17rem;
}

.mt18,
.contents.mt18 {
  margin-top: 0.18rem;
}

.mb18 {
  margin-bottom: 0.18rem;
}

.mt19,
.contents.mt19 {
  margin-top: 0.19rem;
}

.mb19 {
  margin-bottom: 0.19rem;
}

.mt20,
.contents.mt20 {
  margin-top: 0.2rem;
}

.mb20 {
  margin-bottom: 0.2rem;
}

.mt21,
.contents.mt21 {
  margin-top: 0.21rem;
}

.mb21 {
  margin-bottom: 0.21rem;
}

.mt22,
.contents.mt22 {
  margin-top: 0.22rem;
}

.mb22 {
  margin-bottom: 0.22rem;
}

.mt23,
.contents.mt23 {
  margin-top: 0.23rem;
}

.mb23 {
  margin-bottom: 0.23rem;
}

.mt24,
.contents.mt24 {
  margin-top: 0.24rem;
}

.mb24 {
  margin-bottom: 0.24rem;
}

.mt25,
.contents.mt25 {
  margin-top: 0.25rem;
}

.mb25 {
  margin-bottom: 0.25rem;
}

.mt26,
.contents.mt26 {
  margin-top: 0.26rem;
}

.mb26 {
  margin-bottom: 0.26rem;
}

.mt27,
.contents.mt27 {
  margin-top: 0.27rem;
}

.mb27 {
  margin-bottom: 0.27rem;
}

.mt28,
.contents.mt28 {
  margin-top: 0.28rem;
}

.mb28 {
  margin-bottom: 0.28rem;
}

.mt29,
.contents.mt29 {
  margin-top: 0.29rem;
}

.mb29 {
  margin-bottom: 0.29rem;
}

.mt30,
.contents.mt30 {
  margin-top: 0.3rem;
}

.mb30 {
  margin-bottom: 0.3rem;
}

.mt31,
.contents.mt31 {
  margin-top: 0.31rem;
}

.mb31 {
  margin-bottom: 0.31rem;
}

.mt32,
.contents.mt32 {
  margin-top: 0.32rem;
}

.mb32 {
  margin-bottom: 0.32rem;
}

.mt33,
.contents.mt33 {
  margin-top: 0.33rem;
}

.mb33 {
  margin-bottom: 0.33rem;
}

.mt34,
.contents.mt34 {
  margin-top: 0.34rem;
}

.mb34 {
  margin-bottom: 0.34rem;
}

.mt35,
.contents.mt35 {
  margin-top: 0.35rem;
}

.mb35 {
  margin-bottom: 0.35rem;
}

.mt36,
.contents.mt36 {
  margin-top: 0.36rem;
}

.mb36 {
  margin-bottom: 0.36rem;
}

.mt37,
.contents.mt37 {
  margin-top: 0.37rem;
}

.mb37 {
  margin-bottom: 0.37rem;
}

.mt38,
.contents.mt38 {
  margin-top: 0.38rem;
}

.mb38 {
  margin-bottom: 0.38rem;
}

.mt39,
.contents.mt39 {
  margin-top: 0.39rem;
}

.mb39 {
  margin-bottom: 0.39rem;
}

.mt40,
.contents.mt40 {
  margin-top: 0.4rem;
}

.mb40 {
  margin-bottom: 0.4rem;
}

.mt41,
.contents.mt41 {
  margin-top: 0.41rem;
}

.mb41 {
  margin-bottom: 0.41rem;
}

.mt42,
.contents.mt42 {
  margin-top: 0.42rem;
}

.mb42 {
  margin-bottom: 0.42rem;
}

.mt43,
.contents.mt43 {
  margin-top: 0.43rem;
}

.mb43 {
  margin-bottom: 0.43rem;
}

.mt44,
.contents.mt44 {
  margin-top: 0.44rem;
}

.mb44 {
  margin-bottom: 0.44rem;
}

.mt45,
.contents.mt45 {
  margin-top: 0.45rem;
}

.mb45 {
  margin-bottom: 0.45rem;
}

.mt46,
.contents.mt46 {
  margin-top: 0.46rem;
}

.mb46 {
  margin-bottom: 0.46rem;
}

.mt47,
.contents.mt47 {
  margin-top: 0.47rem;
}

.mb47 {
  margin-bottom: 0.47rem;
}

.mt48,
.contents.mt48 {
  margin-top: 0.48rem;
}

.mb48 {
  margin-bottom: 0.48rem;
}

.mt49,
.contents.mt49 {
  margin-top: 0.49rem;
}

.mb49 {
  margin-bottom: 0.49rem;
}

.mt50,
.contents.mt50 {
  margin-top: 0.5rem;
}

.mb50 {
  margin-bottom: 0.5rem;
}

.mt51,
.contents.mt51 {
  margin-top: 0.51rem;
}

.mb51 {
  margin-bottom: 0.51rem;
}

.mt52,
.contents.mt52 {
  margin-top: 0.52rem;
}

.mb52 {
  margin-bottom: 0.52rem;
}

.mt53,
.contents.mt53 {
  margin-top: 0.53rem;
}

.mb53 {
  margin-bottom: 0.53rem;
}

.mt54,
.contents.mt54 {
  margin-top: 0.54rem;
}

.mb54 {
  margin-bottom: 0.54rem;
}

.mt55,
.contents.mt55 {
  margin-top: 0.55rem;
}

.mb55 {
  margin-bottom: 0.55rem;
}

.mt56,
.contents.mt56 {
  margin-top: 0.56rem;
}

.mb56 {
  margin-bottom: 0.56rem;
}

.mt57,
.contents.mt57 {
  margin-top: 0.57rem;
}

.mb57 {
  margin-bottom: 0.57rem;
}

.mt58,
.contents.mt58 {
  margin-top: 0.58rem;
}

.mb58 {
  margin-bottom: 0.58rem;
}

.mt59,
.contents.mt59 {
  margin-top: 0.59rem;
}

.mb59 {
  margin-bottom: 0.59rem;
}

.mt60,
.contents.mt60 {
  margin-top: 0.6rem;
}

.mb60 {
  margin-bottom: 0.6rem;
}

.mt61,
.contents.mt61 {
  margin-top: 0.61rem;
}

.mb61 {
  margin-bottom: 0.61rem;
}

.mt62,
.contents.mt62 {
  margin-top: 0.62rem;
}

.mb62 {
  margin-bottom: 0.62rem;
}

.mt63,
.contents.mt63 {
  margin-top: 0.63rem;
}

.mb63 {
  margin-bottom: 0.63rem;
}

.mt64,
.contents.mt64 {
  margin-top: 0.64rem;
}

.mb64 {
  margin-bottom: 0.64rem;
}

.mt65,
.contents.mt65 {
  margin-top: 0.65rem;
}

.mb65 {
  margin-bottom: 0.65rem;
}

.mt66,
.contents.mt66 {
  margin-top: 0.66rem;
}

.mb66 {
  margin-bottom: 0.66rem;
}

.mt67,
.contents.mt67 {
  margin-top: 0.67rem;
}

.mb67 {
  margin-bottom: 0.67rem;
}

.mt68,
.contents.mt68 {
  margin-top: 0.68rem;
}

.mb68 {
  margin-bottom: 0.68rem;
}

.mt69,
.contents.mt69 {
  margin-top: 0.69rem;
}

.mb69 {
  margin-bottom: 0.69rem;
}

.mt70,
.contents.mt70 {
  margin-top: 0.7rem;
}

.mb70 {
  margin-bottom: 0.7rem;
}

.mt71,
.contents.mt71 {
  margin-top: 0.71rem;
}

.mb71 {
  margin-bottom: 0.71rem;
}

.mt72,
.contents.mt72 {
  margin-top: 0.72rem;
}

.mb72 {
  margin-bottom: 0.72rem;
}

.mt73,
.contents.mt73 {
  margin-top: 0.73rem;
}

.mb73 {
  margin-bottom: 0.73rem;
}

.mt74,
.contents.mt74 {
  margin-top: 0.74rem;
}

.mb74 {
  margin-bottom: 0.74rem;
}

.mt75,
.contents.mt75 {
  margin-top: 0.75rem;
}

.mb75 {
  margin-bottom: 0.75rem;
}

.mt76,
.contents.mt76 {
  margin-top: 0.76rem;
}

.mb76 {
  margin-bottom: 0.76rem;
}

.mt77,
.contents.mt77 {
  margin-top: 0.77rem;
}

.mb77 {
  margin-bottom: 0.77rem;
}

.mt78,
.contents.mt78 {
  margin-top: 0.78rem;
}

.mb78 {
  margin-bottom: 0.78rem;
}

.mt79,
.contents.mt79 {
  margin-top: 0.79rem;
}

.mb79 {
  margin-bottom: 0.79rem;
}

.mt80,
.contents.mt80 {
  margin-top: 0.8rem;
}

.mb80 {
  margin-bottom: 0.8rem;
}

.mt81,
.contents.mt81 {
  margin-top: 0.81rem;
}

.mb81 {
  margin-bottom: 0.81rem;
}

.mt82,
.contents.mt82 {
  margin-top: 0.82rem;
}

.mb82 {
  margin-bottom: 0.82rem;
}

.mt83,
.contents.mt83 {
  margin-top: 0.83rem;
}

.mb83 {
  margin-bottom: 0.83rem;
}

.mt84,
.contents.mt84 {
  margin-top: 0.84rem;
}

.mb84 {
  margin-bottom: 0.84rem;
}

.mt85,
.contents.mt85 {
  margin-top: 0.85rem;
}

.mb85 {
  margin-bottom: 0.85rem;
}

.mt86,
.contents.mt86 {
  margin-top: 0.86rem;
}

.mb86 {
  margin-bottom: 0.86rem;
}

.mt87,
.contents.mt87 {
  margin-top: 0.87rem;
}

.mb87 {
  margin-bottom: 0.87rem;
}

.mt88,
.contents.mt88 {
  margin-top: 0.88rem;
}

.mb88 {
  margin-bottom: 0.88rem;
}

.mt89,
.contents.mt89 {
  margin-top: 0.89rem;
}

.mb89 {
  margin-bottom: 0.89rem;
}

.mt90,
.contents.mt90 {
  margin-top: 0.9rem;
}

.mb90 {
  margin-bottom: 0.9rem;
}

.mt91,
.contents.mt91 {
  margin-top: 0.91rem;
}

.mb91 {
  margin-bottom: 0.91rem;
}

.mt92,
.contents.mt92 {
  margin-top: 0.92rem;
}

.mb92 {
  margin-bottom: 0.92rem;
}

.mt93,
.contents.mt93 {
  margin-top: 0.93rem;
}

.mb93 {
  margin-bottom: 0.93rem;
}

.mt94,
.contents.mt94 {
  margin-top: 0.94rem;
}

.mb94 {
  margin-bottom: 0.94rem;
}

.mt95,
.contents.mt95 {
  margin-top: 0.95rem;
}

.mb95 {
  margin-bottom: 0.95rem;
}

.mt96,
.contents.mt96 {
  margin-top: 0.96rem;
}

.mb96 {
  margin-bottom: 0.96rem;
}

.mt97,
.contents.mt97 {
  margin-top: 0.97rem;
}

.mb97 {
  margin-bottom: 0.97rem;
}

.mt98,
.contents.mt98 {
  margin-top: 0.98rem;
}

.mb98 {
  margin-bottom: 0.98rem;
}

.mt99,
.contents.mt99 {
  margin-top: 0.99rem;
}

.mb99 {
  margin-bottom: 0.99rem;
}

.mt100,
.contents.mt100 {
  margin-top: 1rem;
}

.mb100 {
  margin-bottom: 1rem;
}