@charset "UTF-8";

/* -------------------------------------------------- */
/* WP Classes
/* -------------------------------------------------- */

/*
.aligncenter {
  display: block;
  margin: 0 auto; }

.alignright {
  float: right;
  clear: both; }

.alignleft {
  float: left;
  clear: both; }
*/

/*
img[class*="wp-image-"],
img[class*="attachment-"] {
  max-width: 100%;
  height: auto; }
*/

/* -------------------------------------------------- */
/* Public Classes
/* -------------------------------------------------- */

.btn:hover {
  cursor: pointer; }

.txt-left {
  text-align: left !important; }

.txt-right {
  text-align: right !important; }

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

.txt-justify {
  text-align: justify !important; }

.txt-lower {
  text-transform: lowercase; }

.txt-upper {
  text-transform: uppercase; }

.txt-capitalize {
  text-transform: capitalize; }

.txt-nowrap {
  white-space: nowrap; }

.txt-emphasis {
  font-weight: bold; }

.txt-annotation {
  color: #da4453; }

.valign-top {
  vertical-align: top; }

.valign-middle {
  vertical-align: middle; }

.valign-bottom {
  vertical-align: bottom; }

.valign-baseline {
  vertical-align: baseline; }

.hide-pc {
  display: none !important; }

.hide-sp {
  display: block !important; }

.pcbr {
  display: block; }

.spbr {
  display: inline; }

.placeholder {
  border: 1px solid #ddd; }

.is-invisible {
  visibility: hidden; }

.is-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: 0; }

.is-replacement {
  width: auto;
  height: auto;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
  background: inherit; }

.is-affix {
  position: fixed; }

.container {
  width: auto;
  margin: 0 auto; }

@media only screen and (max-width: 768px) {

  .img-fluid {
    display: block;
    max-width: 100%;
    height: auto; }

  .img-full {
    display: block;
    width: 100%;
    height: auto; }

  .m-x-auto {
    margin-right: auto !important;
    margin-left: auto !important; }

  .hide-pc {
    display: block !important; }

  .hide-sp {
    display: none !important; }

  .pcbr {
    display: inline; }

  .spbr {
    display: block; }

}

/* -------------------------------------------------- */
/* Table
/* -------------------------------------------------- */

table th {
  font-weight: 700;
  white-space: nowrap; }

.table td ul,
.table td ol,
.table td dl {
  margin: 0; }

.table-matrix th,
.table-matrix td {
  text-align: center; }

@media only screen and (max-width: 768px) {

  .table-overflow {
    padding-bottom: 10px;
    overflow-x: scroll; }

  .table-overflow table {
    margin: 0 !important; }

  .table-overflow::-webkit-scrollbar {
    height: 6px;
    border-radius: 3px; }

  .table-overflow::-webkit-scrollbar-track {
    border-radius: 3px;
    background: #eaeaea; }

  .table-overflow::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background: #c4af90; }

  .table-overflow table {
    width: 640px; }

}

/* -------------------------------------------------- */
/* Flexbox
/* -------------------------------------------------- */

.flex {
  display: -webkit-box;
  display:    -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex; }

.flex-inline {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display:         inline-flex; }

.flex-row-reverse {
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.flex-column {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }

.flex-column-reverse {
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.flex-jc-center {
  -webkit-justify-content: center;
          justify-content: center; }

.flex-ai-center {
  -webkit-align-items: center;
          align-items: center; }

@media only screen and (max-width: 768px) {

  .flex-row-sp {
    display: block; }

  .flex-row-reverse-sp {
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }

  .flex-column-sp {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }

  .flex-column-reverse-sp {
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }

  .flex-jc-center-sp {
    -webkit-justify-content: center;
            justify-content: center; }

  .flex-ai-center-sp {
    -webkit-align-items: center;
            align-items: center; }

}

