@font-face {
  font-family: "nureru";
  src: url("../fonts/nureru.eot?9khdp6");
  src: url("../fonts/nureru.eot?9khdp6#iefix") format("embedded-opentype"), url("../fonts/nureru.ttf?9khdp6") format("truetype"), url("../fonts/nureru.woff?9khdp6") format("woff"), url("../fonts/nureru.svg?9khdp6#nureru") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=nicon-], [class*=" nicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "nureru" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nicon-beginner:before {
  content: "\e900";
}

.nicon-drop-blank:before {
  content: "\e901";
}

.nicon-drop:before {
  content: "\e902";
}

.nicon-women:before {
  content: "\e903";
}

.nicon-men:before {
  content: "\e904";
}

.nicon-couple-w:before {
  content: "\e905";
}

.nicon-couple-m:before {
  content: "\e906";
}

.nicon-couple:before {
  content: "\e907";
}

.nicon-newtab:before {
  content: "\e908";
}

.nicon-cart:before {
  content: "\e909";
}

.nicon-close:before {
  content: "\e90a";
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.bizud {
  font-family: "BIZ UDGothic", sans-serif;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.notoserif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-b {
  font-weight: 700;
}

.f-bk {
  font-weight: 900;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
  position: relative;
  overflow-y: scroll;
  min-width: 320px;
}
body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  height: 100%;
}

a {
  color: #000;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a.opt-none:hover {
  opacity: 1;
}

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

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

input {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
}
input:focus-visible {
  outline: #ddd solid 1px;
}
input:focus-visible::-moz-placeholder {
  color: transparent;
}
input:focus-visible::placeholder {
  color: transparent;
}

select {
  padding: 10px 10px 10px 10px;
  color: #000;
  cursor: pointer;
  background: #fff url(../images/select.svg) no-repeat right 6px center/1.6rem auto;
  background-color: #fff;
  border: 1px solid #ccc;
}
select::-ms-expand {
  display: none;
}

textarea {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
}

.wrapper {
  padding-top: 50px;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  display: none;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding-top: 80px;
  }
}
.loaded .wrapper {
  animation: fade-in 0.6s linear 0s forwards;
  display: block;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.container {
  margin: 0 auto;
  padding: 0 2%;
  width: 90%;
  max-width: 1000px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100%;
  height: 50px;
  background-color: #fff;
  z-index: 9995;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 20px;
    height: 80px;
  }
}

.site-title {
  margin: 0 auto;
  height: 30px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .site-title {
    height: 40px;
  }
}
.site-title a {
  display: inline-block;
}

.site-logo {
  width: auto;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .site-logo {
    height: 40px;
  }
}

.menu-button {
  width: 100%;
  height: 100%;
}
.menu-button-wrap {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  opacity: 0;
  display: none;
  transition: opacity 0.4s ease;
  z-index: 9997;
}
@media screen and (min-width: 768px) {
  .menu-button-wrap {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }
}
.loaded .menu-button-wrap {
  animation: fade-in 0.6s linear 0s forwards;
  display: block;
}
.menu-button-icon {
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .menu-button-icon {
    width: 40px;
    height: 2px;
  }
}
.menu-button-icon::before, .menu-button-icon::after {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  right: 0;
  display: block;
  background-color: #000;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .menu-button-icon::before, .menu-button-icon::after {
    width: 40px;
    height: 2px;
  }
}
.menu-button-icon::before {
  top: -12px;
}
.menu-button-icon::after {
  bottom: -12px;
}
.is-open .menu-button-icon {
  background-color: transparent;
}
.is-open .menu-button-icon::before {
  transform: rotate(45deg);
  top: inherit;
  background-color: #000;
}
.is-open .menu-button-icon::after {
  transform: rotate(-45deg);
  bottom: inherit;
  background-color: #000;
}

.openmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  background-color: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 9996;
}
.openmenu::-webkit-scrollbar {
  display: none;
}
.is-open .openmenu {
  opacity: 1;
  visibility: visible;
}
.openmenu-container {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
@media screen and (min-width: 768px) {
  .openmenu-main {
    flex: 1;
  }
}
.openmenu-sub {
  position: relative;
  background: url(../images/openmenu-bg.png) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .openmenu-sub {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .openmenu-sub-sec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.openmenu-inner {
  margin: 0 auto;
  padding: 4rem 2%;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .openmenu-inner {
    padding: 4rem 8rem;
    width: 100%;
  }
}
.openmenu-logo {
  margin-bottom: 4rem;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .openmenu-logo {
    margin-bottom: 6rem;
    width: 240px;
  }
}
.openmenu-title {
  margin-bottom: 4rem;
  font-size: 2.4rem;
}
.openmenu-sec {
  margin-bottom: 6rem;
}
.openmenu-list {
  margin-bottom: 2rem;
}
.openmenu-list-li {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .openmenu-list-li {
    margin-right: 2%;
    width: 49%;
  }
  .openmenu-list-li:nth-child(even) {
    margin-right: 0;
  }
}
.openmenu-list-li a {
  padding-left: 3rem;
  line-height: 1.2;
  display: block;
  position: relative;
  color: #666;
}
.openmenu-list-li a::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.openmenu-footernav {
  margin-top: 2rem;
}
.openmenu-footernav-list-li {
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .openmenu-footernav-list-li {
    margin-right: 1rem;
  }
}

.shop-list-li {
  margin-bottom: 2rem;
  border: 1px solid #000;
}
.shop-list-li a {
  padding: 10px;
  display: block;
  text-align: center;
  background-color: #fff;
}
.shop-list-figure {
  width: 180px;
  display: inline-block;
}
.shop-list-txt {
  display: inline-block;
}

.cartbtn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 999;
}
.is-s .cartbtn {
  opacity: 1;
  visibility: visible;
}
.is-e .cartbtn {
  opacity: 0;
}
.cartbtn-link {
  padding: 2rem 4rem;
  display: inline-block;
  background-color: rgba(16, 167, 193, 0.6);
  color: #fff;
}

.os {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9998;
}
.osopen .os {
  opacity: 1;
  visibility: visible;
}
.os-content {
  padding: 4rem;
  width: 90%;
  max-width: 560px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  text-align: center;
  z-index: 9999;
}
.os-title {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.os-close {
  text-align: center;
}
.os-closebtn {
  margin: 0 auto;
  font-size: 2rem;
  transition: opacity 0.4s ease;
}
.os-closebtn i {
  margin-right: 1rem;
}
.os-closebtn span {
  font-weight: 700;
}
.os-overlay {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
}

.main-content-header {
  padding: 4rem 0;
  background-color: #eee;
}
.main-content-header h1 {
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: 2.4rem;
  text-align: center;
}
.main-content-header h2 {
  line-height: 1.4;
  font-size: 1.8rem;
  text-align: center;
}

.footer {
  padding: 80px 0 30px;
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #a1a6ac;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  opacity: 0.8;
}
.footer-logo {
  margin-bottom: 80px;
  text-align: center;
}
.footer-logo-figure {
  width: 300px;
  display: inline-block;
}
.footer-nav {
  margin-bottom: 30px;
}
.footer-nav-list-li {
  margin: 0 10px;
}

/*//////////////////////////////
 main
/////////////////////////////*/
.np {
  padding: 6rem 0;
  background-color: #f7d7b0;
}
@media screen and (min-width: 768px) {
  .np {
    padding: 8rem 0;
  }
}
.np-title {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.np-subtitle {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.np-container {
  margin: 0 auto;
  padding: 0 2%;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .np-container {
    padding: 0 2%;
  }
}
.np-sec {
  margin-bottom: 4rem;
  padding: 4rem;
  background-color: #f53d7a;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .np-sec {
    padding: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .np-sec {
    padding: 4rem;
  }
}
.np-sec-content {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .np-sec-content {
    margin-bottom: 0;
    text-align: left;
    flex: 1;
  }
}
.np-sec-title {
  margin-bottom: 4rem;
  color: #f8f414;
}
@media screen and (min-width: 768px) {
  .np-sec-title {
    margin-bottom: 4%;
  }
}
.np-sec-title h4 {
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .np-sec-title h4 {
    width: 84%;
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1024px) {
  .np-sec-title h4 {
    font-size: 2.2rem;
  }
}
.np-sec-num {
  margin: 0 auto 2rem;
  width: 8rem;
  height: 8rem;
  border: 0.3rem solid #f8f414;
  border-radius: 50%;
  text-align: center;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .np-sec-num {
    margin: 0 2% 0 0;
    padding-top: 14%;
    width: 14%;
    height: 0;
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1024px) {
  .np-sec-num {
    font-size: 1.8rem;
  }
}
.np-sec-num-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.np-sec-num span {
  display: block;
}
.np-sec-num .txt {
  margin-bottom: 0.2rem;
}
.np-sec-pic {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .np-sec-pic {
    width: 30%;
  }
}
.np-sec-txt {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .np-sec-txt {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 1024px) {
  .np-sec-txt {
    font-size: 1.4rem;
  }
}

/*//////////////////////////////
 aside
/////////////////////////////*/
.reguler {
  background-color: #f3f3f3;
}
.reguler-pic {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reguler-pic {
    width: 50%;
  }
}
.reguler-figure {
  width: 100%;
}
.reguler-figure img {
  width: 100%;
  height: auto;
}
.reguler-content {
  padding: 40px 20px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reguler-content {
    padding: 40px;
    width: 50%;
  }
}
.reguler-logo-figure img {
  width: 60%;
  height: auto;
}
.reguler-txt {
  margin-top: 30px;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reguler-txt {
    font-size: 2.4rem;
  }
}
.reguler-txt-l {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .reguler-txt-l {
    font-size: 3.2rem;
  }
}
.reguler-links {
  margin-top: 50px;
}
.reguler-linkbox {
  margin: 0 1rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .reguler-linkbox {
    font-size: 2.4rem;
  }
}
.reguler-linkbox a {
  padding: 20px 40px;
  display: inline-block;
  border: 2px solid #000;
}

.jsiv {
  animation-fill-mode: backwards;
}
.jsiv.s-i-l {
  animation: slideLeft 0.4s linear 0s;
}
.jsiv.s-i-r {
  animation: slideRight 0.4s linear 0s;
}
.jsiv.f-i-u {
  animation: feedinUp 0.8s linear 0s;
}
.jsiv.f-i-r-l {
  animation: feedinRotateLeft 0.8s linear 0s;
}
.jsiv.f-i-r-r {
  animation: feedinRotateRight 0.8s linear 0s;
}

@keyframes slideLeft {
  0% {
    transform: translate(-100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    transform: translate(100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes feedinUp {
  0% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes feedinRotateLeft {
  0% {
    transform: translate(0, 20px) rotate(20deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(10deg);
    opacity: 1;
  }
}
@keyframes feedinRotateRight {
  0% {
    transform: translate(0, 20px) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(-10deg);
    opacity: 1;
  }
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.red {
  color: #f00;
}

.white {
  color: #fff;
}

.blue {
  color: blue;
}

.c-red {
  color: #f53d7a;
}

.c-blue {
  color: #1877f3;
}

.mb-s {
  margin-bottom: 10px;
}

.mb-m {
  margin-bottom: 30px;
}

.mb-l {
  margin-bottom: 50px;
}

.mb-none {
  margin-bottom: 0;
}

.mr-s {
  margin-right: 10px;
}

.ml-s {
  margin-left: 10px;
}

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

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

.txt-rt {
  text-align: right;
}

.fw-b {
  font-weight: 700;
}

.ts-a {
  transition: all 0.3s ease;
}

.ts-bg {
  transition: background 0.3s ease;
}

.ts-cl {
  transition: color 0.3s ease;
}

.dis-b {
  display: block;
}

.dis-ib {
  display: inline-block;
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: inherit;
  }
}

.br-sp {
  display: inherit;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.marker.marker-yellow {
  background-color: rgba(255, 250, 125, 0.86);
  background: linear-gradient(transparent 64%, rgba(255, 250, 125, 0.86) 0%);
}

.of-h {
  overflow: hidden;
}

.zi {
  z-index: 1;
}

.lh-m {
  line-height: 2;
}

.ds {
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.4);
}

.br-p {
  display: none;
}
@media screen and (min-width: 1024px) {
  .br-p {
    display: inherit;
  }
}

@media screen and (min-width: 1024px) {
  .br-s {
    display: none;
  }
}

/* img */
.img-w-m {
  width: 100%;
  height: auto;
}

.img-h-m {
  width: auto;
  height: 100%;
}

.img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center;";
}
.img-fit.lt-ct {
  -o-object-position: left center;
     object-position: left center;
}
.img-fit-b {
  -o-object-position: bottom;
     object-position: bottom;
  font-family: "object-fit: cover; object-position: bottom;";
}

/*border*/
.b-b-bk {
  border-bottom: 1px solid #000;
}
a:hover .b-b-bk, .b-b-bk:hover {
  border-bottom: 1px solid #999;
}

.border {
  border-bottom: 1px solid #ccc;
}

/*txt*/
.txt-a-a {
  padding: 6px 20px 6px 0;
  display: inline-block;
  position: relative;
}
.txt-a-a::after {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1px;
}

/* title */
.title-a-b {
  display: flex;
  align-items: center;
}
.title-a-b::after {
  content: "";
  display: block;
  margin-left: 20px;
  height: 2px;
  flex-grow: 1;
  background-color: #000;
}

.title-a-w {
  display: flex;
  align-items: center;
}
.title-a-w::after {
  content: "";
  display: block;
  margin-left: 20px;
  height: 2px;
  flex-grow: 1;
  background-color: #fff;
}

/*ul list*/
.list-disc {
  margin-left: 30px;
  list-style-type: disc;
}
.list-disc li {
  margin-bottom: 10px;
}
.list-disc li:last-child {
  margin-bottom: 0;
}

/*list*/
.list-w {
  width: 100%;
  position: relative;
}
.list-w-li {
  margin-bottom: 10px;
  width: 100%;
  height: 60px;
}
.list-w-li a {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #fff;
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  border: 2px solid #000;
}
.list-w-li a:hover {
  color: #999;
  border: 2px solid #999;
}
.list-w-li-txt {
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.list-b {
  width: 100%;
  position: relative;
}
.list-b-li {
  margin-bottom: 10px;
  width: 100%;
  height: 60px;
}
.list-b-li a {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}
.list-b-li a:hover {
  background-color: #999;
  color: #fff;
}
.list-b-li-txt {
  padding: 10px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/*link*/
.a-br {
  padding: 10px 40px;
  display: inline-block;
  background-color: #000;
  font-size: 20px;
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
}
.a-br:hover {
  background-color: #999;
  color: #fff;
}

/*link,button*/
.b-bg-move {
  padding: 14px 20px;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  background-color: transparent;
  border: 1px solid #111111;
  transition: all 0.6s ease;
  position: relative;
}
.b-bg-move:hover {
  color: #111;
}
.b-bg-move:hover::before {
  width: 0;
}
.b-bg-move::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
  transition: all 0.6s ease;
}
.b-bg-move span {
  position: relative;
  z-index: 2;
}

/* flex */
.flex, .flex-c, .flex-b, .flex-e, .flex-s {
  display: flex;
}
.flex-s {
  justify-content: flex-start;
}
.flex-e {
  justify-content: flex-end;
}
.flex-b {
  justify-content: space-between;
}
.flex-c {
  justify-content: center;
}
.flex-w {
  flex-wrap: wrap;
}
.flex-rr {
  flex-flow: row-reverse;
}
.flex-rw {
  flex-flow: row-reverse wrap;
}
.flex-ac {
  align-items: center;
}
.flex-ae {
  -ms-align-items: flex-end;
  align-items: flex-end;
}
@media screen and (min-width: 576px) {
  .flex-sm, .flex-sm-c, .flex-sm-b, .flex-sm-e, .flex-sm-s {
    display: flex;
  }
  .flex-sm-s {
    justify-content: flex-start;
  }
  .flex-sm-e {
    justify-content: flex-end;
  }
  .flex-sm-b {
    justify-content: space-between;
  }
  .flex-sm-c {
    justify-content: center;
  }
  .flex-sm-w {
    flex-wrap: wrap;
  }
  .flex-sm-rr {
    flex-flow: row-reverse;
  }
  .flex-sm-rw {
    flex-flow: row-reverse wrap;
  }
  .flex-sm-ac {
    align-items: center;
  }
  .flex-sm-ae {
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .flex-pt, .flex-pt-c, .flex-pt-b, .flex-pt-e, .flex-pt-s {
    display: flex;
  }
  .flex-pt-s {
    justify-content: flex-start;
  }
  .flex-pt-e {
    justify-content: flex-end;
  }
  .flex-pt-b {
    justify-content: space-between;
  }
  .flex-pt-c {
    justify-content: center;
  }
  .flex-pt-w {
    flex-wrap: wrap;
  }
  .flex-pt-rr {
    flex-flow: row-reverse;
  }
  .flex-pt-rw {
    flex-flow: row-reverse wrap;
  }
  .flex-pt-ac {
    align-items: center;
  }
  .flex-pt-ae {
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .flex-p, .flex-p-c, .flex-p-b, .flex-p-e, .flex-p-s {
    display: flex;
  }
  .flex-p-s {
    justify-content: flex-start;
  }
  .flex-p-e {
    justify-content: flex-end;
  }
  .flex-p-b {
    justify-content: space-between;
  }
  .flex-p-c {
    justify-content: center;
  }
  .flex-p-w {
    flex-wrap: wrap;
  }
  .flex-p-rr {
    flex-flow: row-reverse;
  }
  .flex-p-rw {
    flex-flow: row-reverse wrap;
  }
  .flex-p-ac {
    align-items: center;
  }
  .flex-p-ae {
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
}

.div-table {
  border: 1px solid #ccc;
}
.div-table-tr {
  border-bottom: 1px solid #ccc;
}
.div-table-tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .div-table-tr {
    display: flex;
    justify-content: flex-start;
  }
}
.div-table-th {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  background-color: #ededed;
}
@media screen and (min-width: 1024px) {
  .div-table-th {
    width: 30%;
    border-bottom: none;
    border-right: 1px solid #ccc;
  }
}
.div-table-td {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .div-table-td {
    width: 70%;
  }
}/*# sourceMappingURL=base.css.map */