@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
/* =====================================================
 * Foundation
 * =====================================================
*/
/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre,
iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

img, embed, object, video {
  height: auto;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

audio {
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td, th {
  padding: 0;
  text-align: left;
}

header, footer, main, aside {
  display: block;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.75;
  color: #491702;
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic Pro", "HGMaruGothicMPRO", sans-serif;
}

@media (min-width: 768px) {
  body {
    min-width: 1280px;
  }
}

body a {
  color: inherit;
}

body img {
  vertical-align: bottom;
}

rt {
  text-align: inherit;
}

ruby {
  text-align: center;
  ruby-align: center;
}

/* =====================================================
 * Layout
 * =====================================================
*/
.l-wrapper {
  overflow: hidden;
}

.l-wrapper__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.l-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 96px 0;
  background-image: url("../img/bg_wrapper01.gif");
  background-position: top left;
}

@media (min-width: 768px) {
  .l-container {
    padding: 150px 0 136px;
  }
}

.l-main {
  padding: 0 20px 50px;
}

.l-main__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.l-footer {
  font-size: 0.625rem;
  text-align: center;
}

/* =====================================================
 * Object/Component
 * =====================================================
*/
.c-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn-wrap > *:not(:first-child) {
  margin-left: 20px;
}

@media (min-width: 768px) {
  .c-btn-wrap > *:not(:first-child) {
    margin-left: 50px;
  }
}

.c-btn-wrap.block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-btn-wrap.block > *:not(:first-child) {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .c-btn-wrap.alter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-btn-wrap.alter > :not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}

.c-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  height: 70px;
  margin: 0;
  padding: 10px 35px;
  border-radius: 35px;
  background: none;
  font: inherit;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: normal;
  text-decoration: none !important;
  overflow: hidden;
  -webkit-transition: background-color 300ms, color 300ms, opacity 300ms;
  transition: background-color 300ms, color 300ms, opacity 300ms;
  cursor: pointer;
}

.c-btn > span {
  position: relative;
  line-height: 1.375;
}

.c-btn.s0 {
  min-width: 250px;
}

@media (max-width: 767px) {
  .c-btn.s0 {
    width: 100%;
  }
}

.c-btn.s100 {
  width: 100%;
}

.c-btn.s1 {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 768px) {
  .c-btn.s1 {
    width: 250px;
  }
}

.c-btn.c1 {
  background-color: #FFDB00;
  color: inherit;
}

.c-btn.c1::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #FFA200;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}

@media (min-width: 768px) {
  .c-btn.c1:hover {
    color: #fff;
  }
  .c-btn.c1:hover::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .c-btn.c1:hover > span::after {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}

.c-btn[target="_blank"] > span::after {
  content: '別ウインドウで開く';
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background-image: url(/common/img/ico_blank01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition: -webkit-filter 300ms;
  transition: -webkit-filter 300ms;
  transition: filter 300ms;
  transition: filter 300ms, -webkit-filter 300ms;
}

/* =====================================================
 * Object/Project
 * =====================================================
*/
.p-top__mv {
  height: 100vh;
  background-color: #fff;
  background-image: url(../img/mv_bg_SP.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}

@media (min-width: 768px) {
  .p-top__mv {
    height: 800px;
    background-image: url(../img/mv_bg_PC.svg);
  }
}

.p-top__mv__inner {
  position: relative;
  height: 100%;
  padding-top: calc((36 / 812) * 100vh);
}

@media (min-width: 768px) {
  .p-top__mv__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
  }
}

.p-top__mv__logo {
  padding-left: calc((15 / 812) * 100vh);
  text-align: center;
}

@media (min-width: 768px) {
  .p-top__mv__logo {
    padding-left: 0;
  }
}

.p-top__mv__logo img {
  height: calc((101 / 812) * 100vh);
}

@media (min-width: 768px) {
  .p-top__mv__logo img {
    width: 494px;
    height: auto;
  }
}

.p-top__mv__gnav__item__ele a {
  display: inline-block;
  font-size: 0;
}

.p-top__mv__obj {
  opacity: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

#p-top__mv__kotsubu {
  display: block;
  position: absolute;
  left: calc(50% - ((21 / 812) * 100vh));
  bottom: calc((17 / 812) * 100vh);
  width: calc((67 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__kotsubu {
    left: 429px;
    bottom: 15px;
    width: 107px;
  }
}

#p-top__mv__runa {
  display: block;
  position: absolute;
  left: calc(50% + ((69 / 812) * 100vh));
  bottom: calc((189 / 812) * 100vh);
  width: calc((117 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__runa {
    left: auto;
    right: 244px;
    bottom: 88px;
    width: 196px;
  }
}

#p-top__mv__chara1 {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - ((201 / 812) * 100vh));
  bottom: calc((30 / 812) * 100vh);
  width: calc((295 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara1 {
    left: 98px;
    bottom: 15px;
    width: 460px;
  }
}

#p-top__mv__chara2 {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - ((194 / 812) * 100vh));
  bottom: calc((349 / 812) * 100vh);
  width: calc((282 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara2 {
    left: 334px;
    bottom: 277px;
    width: 460px;
  }
}

#p-top__mv__chara3 {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - ((77 / 812) * 100vh));
  bottom: calc((217 / 812) * 100vh);
  width: calc((282 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara3 {
    left: 521px;
    bottom: 4px;
    width: 460px;
  }
}

#p-top__mv__chara4 {
  display: block;
  position: absolute;
  left: calc(50% - ((253 / 812) * 100vh));
  bottom: calc((213 / 812) * 100vh);
  width: calc((276 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara4 {
    left: -90px;
    bottom: 226px;
    width: 460px;
  }
}

#p-top__mv__chara5 {
  display: block;
  position: absolute;
  z-index: 1;
  left: calc(50% - ((24 / 812) * 100vh));
  bottom: calc((-35 / 812) * 100vh);
  width: calc((269 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara5 {
    left: auto;
    right: -100px;
    bottom: -39px;
    width: 460px;
  }
}

#p-top__mv__chara6 {
  display: block;
  position: absolute;
  left: calc(50% - ((34 / 812) * 100vh));
  bottom: calc((374 / 812) * 100vh);
  width: calc((304 / 812) * 100vh);
}

@media (min-width: 768px) {
  #p-top__mv__chara6 {
    left: auto;
    right: 74px;
    bottom: 269px;
    width: 460px;
  }
}

.p-top__sec {
  position: relative;
}

.p-top__sec:not(:last-child) {
  margin-bottom: 130px;
}

@media (min-width: 768px) {
  .p-top__sec:not(:last-child) {
    margin-bottom: 150px;
  }
}

.p-top__sec p:not(:last-child) {
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .p-top__sec p:not(:last-child) {
    margin-bottom: 2em;
  }
}

.p-top__sec__ttl {
  position: relative;
  padding: 0 30px;
}

.p-top__sec__ttl span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #ccc;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .p-top__sec__ttl span {
    width: 400px;
    height: 70px;
    font-size: 1.75rem;
  }
}

.p-top__sec__inner {
  margin-top: -24px;
  padding: 56px 45px;
  border-radius: 20px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .p-top__sec__inner {
    padding: 100px 110px;
  }
}

.p-top__sec__decoPic {
  position: absolute;
}

.p-top__sec__lede {
  font-weight: 500;
  text-align: center;
}

.p-top__sec--1 .p-top__sec__ttl span {
  background-color: #FFA200;
}

.p-top__sec--1 .p-top__sec__inner {
  padding-bottom: 150px;
}

@media (min-width: 768px) {
  .p-top__sec--1 .p-top__sec__inner {
    padding-bottom: 100px;
  }
}

.p-top__sec--1 .p-top__sec__decoPic--1 {
  top: -64px;
  left: -17px;
}

@media (min-width: 768px) {
  .p-top__sec--1 .p-top__sec__decoPic--1 {
    top: -24px;
    left: -30px;
  }
  .p-top__sec--1 .p-top__sec__decoPic--1 img {
    width: 160px;
  }
}

.p-top__sec--1 .p-top__sec__decoPic--2 {
  bottom: -34px;
  left: 0;
}

@media (min-width: 768px) {
  .p-top__sec--1 .p-top__sec__decoPic--2 {
    bottom: 23px;
    left: -43px;
  }
}

.p-top__sec--1 .p-top__sec__decoPic--3 {
  bottom: -75px;
  right: -20px;
}

@media (min-width: 768px) {
  .p-top__sec--1 .p-top__sec__decoPic--3 {
    bottom: -58px;
    right: -54px;
  }
  .p-top__sec--1 .p-top__sec__decoPic--3 img {
    width: 185px;
  }
}

.p-top__sec--2 .p-top__sec__ttl span {
  background-color: #729505;
}

.p-top__sec--2 .p-top__sec__inner {
  padding-top: 128px;
  padding-bottom: 128px;
}

.p-top__sec--2 .p-top__sec__decoPic--1 {
  top: 24px;
  right: 0;
}

@media (min-width: 768px) {
  .p-top__sec--2 .p-top__sec__decoPic--1 {
    top: -33px;
    left: 50px;
    right: auto;
  }
  .p-top__sec--2 .p-top__sec__decoPic--1 img {
    width: 160px;
  }
}

.p-top__sec--2 .p-top__sec__decoPic--2 {
  bottom: 10px;
  left: 10px;
}

@media (min-width: 768px) {
  .p-top__sec--2 .p-top__sec__decoPic--2 {
    bottom: 26px;
    left: 32px;
  }
  .p-top__sec--2 .p-top__sec__decoPic--2 img {
    width: auto;
  }
}

.p-top__sec--2 .p-top__sec__decoPic--3 {
  bottom: -17px;
  right: 0;
}

@media (min-width: 768px) {
  .p-top__sec--2 .p-top__sec__decoPic--3 {
    bottom: -26px;
  }
  .p-top__sec--2 .p-top__sec__decoPic--3 img {
    width: 228px;
  }
}

.p-top__sec--3 .p-top__sec__ttl span {
  background-color: #194F64;
}

@media (min-width: 768px) {
  .p-top__sec--3 .p-top__sec__inner {
    padding-top: 128px;
  }
}

.p-top__sec--3 .p-top__sec__decoPic--1 {
  top: -55px;
  left: -15px;
}

@media (min-width: 768px) {
  .p-top__sec--3 .p-top__sec__decoPic--1 {
    top: -60px;
    right: 81px;
    left: auto;
  }
  .p-top__sec--3 .p-top__sec__decoPic--1 img {
    width: 194px;
  }
}

.p-top__sec--3 .p-top__sec__decoPic--2 {
  bottom: -70px;
  left: 10px;
}

@media (min-width: 768px) {
  .p-top__sec--3 .p-top__sec__decoPic--2 {
    bottom: -23px;
    left: 31px;
  }
  .p-top__sec--3 .p-top__sec__decoPic--2 img {
    width: 177px;
  }
}

.p-top__sec--3 .p-top__sec__decoPic--3 {
  bottom: -50px;
  right: 0;
}

@media (min-width: 768px) {
  .p-top__sec--3 .p-top__sec__decoPic--3 {
    bottom: 33px;
    right: 26px;
  }
  .p-top__sec--3 .p-top__sec__decoPic--3 img {
    width: 138px;
  }
}

.p-top__sec--4 .p-top__sec__ttl span {
  background-color: #D7083C;
}

@media (min-width: 768px) {
  .p-top__sec--4 .p-top__sec__inner {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .p-top__sec--4 .p-top__sec__decoPic--1 {
    display: none;
  }
}

@media (min-width: 768px) {
  .p-top__sec--4 .p-top__sec__decoPic--1 {
    top: -42px;
    left: 88px;
  }
  .p-top__sec--4 .p-top__sec__decoPic--1 img {
    width: 181px;
  }
}

@media (max-width: 767px) {
  .p-top__sec--4 .p-top__sec__decoPic--2 {
    position: static;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .p-top__sec--4 .p-top__sec__decoPic--2 {
    top: 74px;
    right: 39px;
  }
  .p-top__sec--4 .p-top__sec__decoPic--2 img {
    width: 153px;
  }
}

@media (max-width: 767px) {
  .p-top__sec--4 .p-top__sec__decoPic--3 {
    display: none;
  }
}

@media (min-width: 768px) {
  .p-top__sec--4 .p-top__sec__decoPic--3 {
    bottom: 113px;
    left: 214px;
  }
}

@media (max-width: 767px) {
  .p-top__sec--4 .p-top__sec__decoPic--4 {
    position: static;
    margin-top: -180px;
    margin-right: -30px;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .p-top__sec--4 .p-top__sec__decoPic--4 {
    bottom: 90px;
    right: 70px;
  }
  .p-top__sec--4 .p-top__sec__decoPic--4 img {
    width: 480px;
  }
}

.p-top__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .p-top__profile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-top__profile__pic {
  margin: 0 -12px 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .p-top__profile__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: -10px 30px 0 -10px;
  }
}

.p-top__profile__name {
  font-weight: 500;
}

.p-top__mailto {
  line-height: 2;
  color: #729505;
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}

.p-top__mailto a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.p-top__mailto a:hover {
  text-decoration: underline;
}

.p-top__imgTtl01 {
  margin-left: -24px;
  margin-right: -23px;
  text-align: center;
}

.p-top__vegeList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px -20px;
}

@media (min-width: 768px) {
  .p-top__vegeList {
    width: 675px;
    margin: 30px auto 100px;
  }
}

.p-top__vegeList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .p-top__vegeList__item {
    width: calc((100% - 15px) / 2);
  }
  .p-top__vegeList__item:nth-child(odd) {
    margin-right: 15px;
  }
  .p-top__vegeList__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .p-top__vegeList__item {
    width: calc((100% - 60px * 2) / 3);
  }
  .p-top__vegeList__item:not(:nth-child(3n)) {
    margin-right: 60px;
  }
  .p-top__vegeList__item:nth-child(n+4) {
    margin-top: 40px;
  }
}

.p-top__vegeList__item .__pic {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .p-top__vegeList__item .__pic {
    margin-bottom: 20px;
  }
}

.p-top__vegeList__item .__pic--1 img {
  width: calc(110/375 * 100vw);
}

@media (min-width: 768px) {
  .p-top__vegeList__item .__pic--1 img {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .p-top__vegeList__item .__pic--2 img {
    max-width: inherit;
    width: calc(140/375 * 100vw);
  }
}

.p-top__vegeList__item .__txt {
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}

.p-top__familyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -10px -20px 0;
}

@media (min-width: 768px) {
  .p-top__familyList {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding-left: 60px;
  }
}

.p-top__familyList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .p-top__familyList__item {
    width: calc((100% - 15px) / 2);
  }
  .p-top__familyList__item:nth-child(odd) {
    margin-right: 15px;
  }
  .p-top__familyList__item:nth-child(n+3) {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .p-top__familyList__item:nth-child(odd) {
    margin-right: 24px;
  }
}

.p-top__familyList__item .__pic {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .p-top__familyList__item .__pic--kotsubu img {
    position: relative;
    width: calc(103/375 * 100vw);
  }
}

@media (max-width: 767px) {
  .p-top__familyList__item .__pic--runa img {
    max-width: inherit;
    width: calc(180/375 * 100vw);
  }
}

.p-top__familyList__item .__txt {
  font-size: .9375rem;
  font-weight: 500;
  text-align: center;
}

/* =====================================================
 * Object/Utiliiy
 * =====================================================
*/
@media (max-width: 767px) {
  br.u-pcbr {
    display: none;
  }
}

br.u-spbr {
  display: none;
}

@media (max-width: 767px) {
  br.u-spbr {
    display: block;
  }
}

.u-alLpc {
  text-align: left;
}

.u-alCpc {
  text-align: center;
}

.u-alRpc {
  text-align: right;
}

@media (max-width: 767px) {
  .u-alLpc {
    text-align: inherit;
  }
  .u-alCpc {
    text-align: inherit;
  }
  .u-alRpc {
    text-align: inherit;
  }
  .u-alLsp {
    text-align: left;
  }
  .u-alCsp {
    text-align: center;
  }
  .u-alRsp {
    text-align: right;
  }
}

.u-taL {
  text-align: left;
}

.u-taR {
  text-align: right;
}

.u-taC {
  text-align: center;
}

/*# sourceMappingURL=maps/common.css.map */
