@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-size: 1rem;
}

body *:not(table *, i) {
  /* 
      font-weightは<b>タグが機能しなくなるので指定しない。
      line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
      font-weightも指定しない。
  */
  font-family: Noto Sans JP, sans-serif;
  color: rgb(70, 70, 70);
  margin: 0;
  letter-spacing: 0.05em;
}

i {
  line-height: 1;
}

img {
  vertical-align: bottom;
}

header#global_header {
  min-width: 0 !important;
  width: 100%;
}

#contents_wrap {
  min-width: 0 !important;
  width: 100%;
}

#contents {
  width: 100%;
}

#main {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-top: 5px;
  margin-bottom: 60px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
}
@media (max-width: 834.98px) {
  #main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200.98px) {
  #main {
    display: block;
  }
}

#main #col_main {
  float: none;
  flex: 1 0 0;
}
@media (max-width: 1200.98px) {
  #main #col_main {
    width: 100%;
  }
}

#main #col_side1 {
  flex: 0 0 19.53125%;
  margin-top: 40px;
  margin-right: 40px;
}
@media (max-width: 1200.98px) {
  #main #col_side1 {
    width: 100%;
    margin-right: 0;
  }
}

footer#global_footer {
  min-width: 0;
}

body a {
  text-decoration: none;
}
body button {
  padding: 0;
  border: none;
  background-color: transparent;
}
body img.imgL {
  max-width: 100%;
  margin-right: 0;
}
body b {
  color: inherit;
  font-size: inherit;
}
body span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

#contents_wrap {
  overflow-x: hidden;
}

.inner-full {
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
}

.inner-1200 {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 834.98px) {
  .inner-1200 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row-cols {
  --gutter-x: 0.01px;
  --gutter-y: 0.01px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(var(--gutter-y) * -1);
}
.row-cols > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--gutter-x);
  margin-bottom: var(--gutter-y);
}

@media (min-width: 0px) {
  .row-cols-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 0px) {
  .g-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 401px) {
  .row-cols-ssp-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-ssp-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-ssp-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-ssp-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-ssp-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-ssp-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-ssp-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-ssp-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-ssp-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-ssp-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-ssp-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-ssp-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-ssp-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-ssp-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-ssp-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-ssp-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-ssp-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-ssp-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-ssp-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-ssp-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-ssp-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-ssp-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-ssp-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-ssp-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-ssp-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-ssp-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 401px) {
  .g-ssp-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-ssp-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-ssp-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-ssp-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 641px) {
  .row-cols-sp-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-sp-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-sp-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-sp-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-sp-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-sp-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-sp-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-sp-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-sp-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-sp-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-sp-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-sp-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-sp-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-sp-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-sp-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-sp-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-sp-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-sp-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-sp-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-sp-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-sp-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-sp-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-sp-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-sp-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-sp-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 641px) {
  .g-sp-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-sp-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-sp-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-sp-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 835px) {
  .row-cols-tab-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-tab-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-tab-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-tab-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-tab-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-tab-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-tab-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-tab-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-tab-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-tab-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-tab-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-tab-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-tab-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-tab-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-tab-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-tab-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-tab-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-tab-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-tab-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-tab-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-tab-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-tab-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-tab-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-tab-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-tab-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .g-tab-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-tab-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-tab-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-tab-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1001px) {
  .row-cols-bp1000-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1000-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1000-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1000-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1000-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1000-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1000-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1000-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1000-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1000-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1000-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1000-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1000-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1000-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1000-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1000-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1000-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1000-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1000-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1000-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1000-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1000-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1000-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1000-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1000-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1001px) {
  .g-bp1000-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1000-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1000-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1000-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1201px) {
  .row-cols-bp1200-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1200-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1200-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1200-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1200-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1200-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1200-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1200-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1200-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1200-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1200-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1200-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1200-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1200-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1200-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1200-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1200-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1200-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1200-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1200-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1200-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1200-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1200-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1200-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1200-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .g-bp1200-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1200-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1200-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1200-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1401px) {
  .row-cols-bp1400-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1400-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1400-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1400-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1400-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1400-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1400-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1400-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1400-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1400-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1400-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1400-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1400-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1400-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1400-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1400-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1400-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1400-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1400-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1400-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1400-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1400-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1400-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1400-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1400-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1401px) {
  .g-bp1400-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1400-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1400-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1400-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1501px) {
  .row-cols-bp1500-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1500-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1500-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1500-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1500-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1500-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1500-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1500-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1500-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1500-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1500-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1500-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1500-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1500-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1500-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1500-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1500-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1500-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1500-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1500-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1500-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1500-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1500-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1500-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1500-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1500-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1501px) {
  .g-bp1500-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1500-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1500-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1500-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1601px) {
  .row-cols-bp1600-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1600-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1600-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1600-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1600-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1600-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1600-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1600-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1600-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1600-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1600-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1600-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1600-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1600-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1600-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1600-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1600-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1600-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1600-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1600-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1600-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1600-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1600-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1600-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1600-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1601px) {
  .g-bp1600-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1600-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1600-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1600-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1921px) {
  .row-cols-bp1920-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1920-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1920-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1920-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1920-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1920-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1920-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1920-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1920-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1920-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1920-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1920-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1920-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1920-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1920-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1920-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1920-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1920-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1920-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1920-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1920-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1920-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1920-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1920-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1920-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1921px) {
  .g-bp1920-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-bp1920-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-bp1920-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-bp1920-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 1201px) {
  .row-cols-drawer-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-drawer-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-drawer-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-drawer-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-drawer-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-drawer-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-drawer-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-drawer-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-drawer-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-drawer-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-drawer-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-drawer-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-drawer-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-drawer-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-drawer-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-drawer-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-drawer-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-drawer-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-drawer-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-drawer-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-drawer-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-drawer-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-drawer-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-drawer-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-drawer-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .g-drawer-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-drawer-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-drawer-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-drawer-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 835px) {
  .row-cols-flex-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-flex-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-flex-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-flex-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-flex-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-flex-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-flex-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-flex-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-flex-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-flex-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-flex-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-flex-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-flex-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-flex-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-flex-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-flex-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-flex-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-flex-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-flex-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-flex-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-flex-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-flex-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-flex-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-flex-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-flex-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .g-flex-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-flex-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-flex-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-flex-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 835px) {
  .row-cols-confTab-1 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-confTab-1 > *:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-confTab-1 > *:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-2 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-confTab-2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-confTab-2 > *:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-3 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-confTab-3 > *:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-confTab-3 > *:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-4 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-confTab-4 > *:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-confTab-4 > *:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-5 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-confTab-5 > *:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-confTab-5 > *:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-6 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-confTab-6 > *:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-confTab-6 > *:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-7 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-confTab-7 > *:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-confTab-7 > *:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-8 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-confTab-8 > *:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-confTab-8 > *:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-9 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-confTab-9 > *:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-confTab-9 > *:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-10 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-confTab-10 > *:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-confTab-10 > *:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-11 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-confTab-11 > *:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-confTab-11 > *:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-12 > * {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-confTab-12 > *:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-confTab-12 > *:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .g-confTab-1 {
    --gutter-x: 10px;
    --gutter-y: 10px;
  }
  .g-confTab-2 {
    --gutter-x: 20px;
    --gutter-y: 20px;
  }
  .g-confTab-3 {
    --gutter-x: 30px;
    --gutter-y: 30px;
  }
  .g-confTab-4 {
    --gutter-x: 40px;
    --gutter-y: 40px;
  }
}
@media (min-width: 0px) {
  .d-inline {
    display: inline !important;
  }
}
@media (min-width: 0px) {
  .d-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 0px) {
  .d-block {
    display: block !important;
  }
}
@media (min-width: 0px) {
  .d-grid {
    display: grid !important;
  }
}
@media (min-width: 0px) {
  .d-table {
    display: table !important;
  }
}
@media (min-width: 0px) {
  .d-table-row {
    display: table-row !important;
  }
}
@media (min-width: 0px) {
  .d-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 0px) {
  .d-flex {
    display: flex !important;
  }
}
@media (min-width: 0px) {
  .d-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 0px) {
  .d-none {
    display: none !important;
  }
}
@media (min-width: 0px) {
  .text-align-center * {
    text-align: center !important;
  }
  .text-align-center {
    text-align: center !important;
  }
}
@media (min-width: 0px) {
  .text-align-left * {
    text-align: left !important;
  }
  .text-align-left {
    text-align: left !important;
  }
}
@media (min-width: 0px) {
  .text-align-right * {
    text-align: right !important;
  }
  .text-align-right {
    text-align: right !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-inline {
    display: inline !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-block {
    display: block !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-grid {
    display: grid !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-table {
    display: table !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-table-row {
    display: table-row !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-flex {
    display: flex !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 401px) {
  .d-ssp-none {
    display: none !important;
  }
}
@media (min-width: 401px) {
  .text-align-ssp-center * {
    text-align: center !important;
  }
  .text-align-ssp-center {
    text-align: center !important;
  }
}
@media (min-width: 401px) {
  .text-align-ssp-left * {
    text-align: left !important;
  }
  .text-align-ssp-left {
    text-align: left !important;
  }
}
@media (min-width: 401px) {
  .text-align-ssp-right * {
    text-align: right !important;
  }
  .text-align-ssp-right {
    text-align: right !important;
  }
}
@media (min-width: 641px) {
  .d-sp-inline {
    display: inline !important;
  }
}
@media (min-width: 641px) {
  .d-sp-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 641px) {
  .d-sp-block {
    display: block !important;
  }
}
@media (min-width: 641px) {
  .d-sp-grid {
    display: grid !important;
  }
}
@media (min-width: 641px) {
  .d-sp-table {
    display: table !important;
  }
}
@media (min-width: 641px) {
  .d-sp-table-row {
    display: table-row !important;
  }
}
@media (min-width: 641px) {
  .d-sp-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 641px) {
  .d-sp-flex {
    display: flex !important;
  }
}
@media (min-width: 641px) {
  .d-sp-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 641px) {
  .d-sp-none {
    display: none !important;
  }
}
@media (min-width: 641px) {
  .text-align-sp-center * {
    text-align: center !important;
  }
  .text-align-sp-center {
    text-align: center !important;
  }
}
@media (min-width: 641px) {
  .text-align-sp-left * {
    text-align: left !important;
  }
  .text-align-sp-left {
    text-align: left !important;
  }
}
@media (min-width: 641px) {
  .text-align-sp-right * {
    text-align: right !important;
  }
  .text-align-sp-right {
    text-align: right !important;
  }
}
@media (min-width: 835px) {
  .d-tab-inline {
    display: inline !important;
  }
}
@media (min-width: 835px) {
  .d-tab-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 835px) {
  .d-tab-block {
    display: block !important;
  }
}
@media (min-width: 835px) {
  .d-tab-grid {
    display: grid !important;
  }
}
@media (min-width: 835px) {
  .d-tab-table {
    display: table !important;
  }
}
@media (min-width: 835px) {
  .d-tab-table-row {
    display: table-row !important;
  }
}
@media (min-width: 835px) {
  .d-tab-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 835px) {
  .d-tab-flex {
    display: flex !important;
  }
}
@media (min-width: 835px) {
  .d-tab-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 835px) {
  .d-tab-none {
    display: none !important;
  }
}
@media (min-width: 835px) {
  .text-align-tab-center * {
    text-align: center !important;
  }
  .text-align-tab-center {
    text-align: center !important;
  }
}
@media (min-width: 835px) {
  .text-align-tab-left * {
    text-align: left !important;
  }
  .text-align-tab-left {
    text-align: left !important;
  }
}
@media (min-width: 835px) {
  .text-align-tab-right * {
    text-align: right !important;
  }
  .text-align-tab-right {
    text-align: right !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-inline {
    display: inline !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-block {
    display: block !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-grid {
    display: grid !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-table {
    display: table !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-flex {
    display: flex !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1001px) {
  .d-bp1000-none {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .text-align-bp1000-center * {
    text-align: center !important;
  }
  .text-align-bp1000-center {
    text-align: center !important;
  }
}
@media (min-width: 1001px) {
  .text-align-bp1000-left * {
    text-align: left !important;
  }
  .text-align-bp1000-left {
    text-align: left !important;
  }
}
@media (min-width: 1001px) {
  .text-align-bp1000-right * {
    text-align: right !important;
  }
  .text-align-bp1000-right {
    text-align: right !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-inline {
    display: inline !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-block {
    display: block !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-grid {
    display: grid !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-table {
    display: table !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-flex {
    display: flex !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1201px) {
  .d-bp1200-none {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .text-align-bp1200-center * {
    text-align: center !important;
  }
  .text-align-bp1200-center {
    text-align: center !important;
  }
}
@media (min-width: 1201px) {
  .text-align-bp1200-left * {
    text-align: left !important;
  }
  .text-align-bp1200-left {
    text-align: left !important;
  }
}
@media (min-width: 1201px) {
  .text-align-bp1200-right * {
    text-align: right !important;
  }
  .text-align-bp1200-right {
    text-align: right !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-inline {
    display: inline !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-block {
    display: block !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-grid {
    display: grid !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-table {
    display: table !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-flex {
    display: flex !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1401px) {
  .d-bp1400-none {
    display: none !important;
  }
}
@media (min-width: 1401px) {
  .text-align-bp1400-center * {
    text-align: center !important;
  }
  .text-align-bp1400-center {
    text-align: center !important;
  }
}
@media (min-width: 1401px) {
  .text-align-bp1400-left * {
    text-align: left !important;
  }
  .text-align-bp1400-left {
    text-align: left !important;
  }
}
@media (min-width: 1401px) {
  .text-align-bp1400-right * {
    text-align: right !important;
  }
  .text-align-bp1400-right {
    text-align: right !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-inline {
    display: inline !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-block {
    display: block !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-grid {
    display: grid !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-table {
    display: table !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-flex {
    display: flex !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1501px) {
  .d-bp1500-none {
    display: none !important;
  }
}
@media (min-width: 1501px) {
  .text-align-bp1500-center * {
    text-align: center !important;
  }
  .text-align-bp1500-center {
    text-align: center !important;
  }
}
@media (min-width: 1501px) {
  .text-align-bp1500-left * {
    text-align: left !important;
  }
  .text-align-bp1500-left {
    text-align: left !important;
  }
}
@media (min-width: 1501px) {
  .text-align-bp1500-right * {
    text-align: right !important;
  }
  .text-align-bp1500-right {
    text-align: right !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-inline {
    display: inline !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-block {
    display: block !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-grid {
    display: grid !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-table {
    display: table !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-flex {
    display: flex !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1601px) {
  .d-bp1600-none {
    display: none !important;
  }
}
@media (min-width: 1601px) {
  .text-align-bp1600-center * {
    text-align: center !important;
  }
  .text-align-bp1600-center {
    text-align: center !important;
  }
}
@media (min-width: 1601px) {
  .text-align-bp1600-left * {
    text-align: left !important;
  }
  .text-align-bp1600-left {
    text-align: left !important;
  }
}
@media (min-width: 1601px) {
  .text-align-bp1600-right * {
    text-align: right !important;
  }
  .text-align-bp1600-right {
    text-align: right !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-inline {
    display: inline !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-block {
    display: block !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-grid {
    display: grid !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-table {
    display: table !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-flex {
    display: flex !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1921px) {
  .d-bp1920-none {
    display: none !important;
  }
}
@media (min-width: 1921px) {
  .text-align-bp1920-center * {
    text-align: center !important;
  }
  .text-align-bp1920-center {
    text-align: center !important;
  }
}
@media (min-width: 1921px) {
  .text-align-bp1920-left * {
    text-align: left !important;
  }
  .text-align-bp1920-left {
    text-align: left !important;
  }
}
@media (min-width: 1921px) {
  .text-align-bp1920-right * {
    text-align: right !important;
  }
  .text-align-bp1920-right {
    text-align: right !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-inline {
    display: inline !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-block {
    display: block !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-grid {
    display: grid !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-table {
    display: table !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-flex {
    display: flex !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1201px) {
  .d-drawer-none {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .text-align-drawer-center * {
    text-align: center !important;
  }
  .text-align-drawer-center {
    text-align: center !important;
  }
}
@media (min-width: 1201px) {
  .text-align-drawer-left * {
    text-align: left !important;
  }
  .text-align-drawer-left {
    text-align: left !important;
  }
}
@media (min-width: 1201px) {
  .text-align-drawer-right * {
    text-align: right !important;
  }
  .text-align-drawer-right {
    text-align: right !important;
  }
}
@media (min-width: 835px) {
  .d-flex-inline {
    display: inline !important;
  }
}
@media (min-width: 835px) {
  .d-flex-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 835px) {
  .d-flex-block {
    display: block !important;
  }
}
@media (min-width: 835px) {
  .d-flex-grid {
    display: grid !important;
  }
}
@media (min-width: 835px) {
  .d-flex-table {
    display: table !important;
  }
}
@media (min-width: 835px) {
  .d-flex-table-row {
    display: table-row !important;
  }
}
@media (min-width: 835px) {
  .d-flex-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 835px) {
  .d-flex-flex {
    display: flex !important;
  }
}
@media (min-width: 835px) {
  .d-flex-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 835px) {
  .d-flex-none {
    display: none !important;
  }
}
@media (min-width: 835px) {
  .text-align-flex-center * {
    text-align: center !important;
  }
  .text-align-flex-center {
    text-align: center !important;
  }
}
@media (min-width: 835px) {
  .text-align-flex-left * {
    text-align: left !important;
  }
  .text-align-flex-left {
    text-align: left !important;
  }
}
@media (min-width: 835px) {
  .text-align-flex-right * {
    text-align: right !important;
  }
  .text-align-flex-right {
    text-align: right !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-inline {
    display: inline !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-block {
    display: block !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-grid {
    display: grid !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-table {
    display: table !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-table-row {
    display: table-row !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-table-cell {
    display: table-cell !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-flex {
    display: flex !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 835px) {
  .d-confTab-none {
    display: none !important;
  }
}
@media (min-width: 835px) {
  .text-align-confTab-center * {
    text-align: center !important;
  }
  .text-align-confTab-center {
    text-align: center !important;
  }
}
@media (min-width: 835px) {
  .text-align-confTab-left * {
    text-align: left !important;
  }
  .text-align-confTab-left {
    text-align: left !important;
  }
}
@media (min-width: 835px) {
  .text-align-confTab-right * {
    text-align: right !important;
  }
  .text-align-confTab-right {
    text-align: right !important;
  }
}
.m-blog .blog_list {
  border: none;
}
.m-blog .blog_list__list {
  display: block;
  border-bottom: none;
}
.m-blog .blog_list .blog_photo {
  width: 100%;
  padding: 0;
}
.m-blog .blog_list .blog_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.m-blog .blog_list .blog_text > h3 {
  margin-bottom: 0;
  font-size: 1rem;
}
.m-blog .blog_list .detail {
  margin-top: 0;
}

.btn {
  display: inline-block;
  min-width: 220px;
  text-decoration: none;
  text-align: center;
  transition: 0.5s;
}
.btn * {
  font-size: 1rem;
}
.btn:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.btn--icon {
  color: #00A460;
  background-color: transparent;
}
.btn--icon:before {
  content: "\f0a4";
  margin-right: 5px;
  font: var(--fa-font-solid);
  line-height: 1;
}
.btn--icon:link, .btn--icon:visited {
  color: #00A460;
}
.btn--mail {
  display: inline-block;
  min-width: 200px;
  padding: 30px 50px;
  text-align: center;
  color: white;
  background-color: #00A460;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
}
@media (max-width: 640.98px) {
  .btn--mail {
    padding: 20px 30px;
    font-size: 1.125rem;
  }
}
.btn--mail:before {
  margin-right: 10px;
  content: "\f0e0";
  font: var(--fa-font-solid);
  line-height: 1;
  color: white;
}
.btn--mail:link, .btn--mail:visited {
  color: white;
}
.btn--style_01 {
  display: inline-block;
  min-width: 200px;
  padding: 10px 20px;
  text-align: center;
  color: white;
  background-color: #f39800;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 6px solid #ec6c00;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 640.98px) {
  .btn--style_01 {
    font-size: 1rem;
  }
}
.btn--style_01:before {
  content: "\f35a";
  font: var(--fa-font-solid);
  line-height: 1;
  position: relative;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.btn--style_01:link, .btn--style_01:visited {
  color: white;
}

.form_wrap.dl-company > dl:last-child > dt, .form_wrap.dl-news > dl:last-child > dt, .form_wrap.dl > dl:last-child > dt,
.form_wrap.dl-company > dl:last-child > dd,
.form_wrap.dl-news > dl:last-child > dd,
.form_wrap.dl > dl:last-child > dd {
  border-bottom: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt,
.form_wrap.dl-company > dl > dd,
.form_wrap.dl-news > dl > dd,
.form_wrap.dl > dl > dd {
  padding: 0;
  background-color: transparent;
  border: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt {
  justify-content: flex-start;
}

.dl-news {
  max-height: 300px;
  overflow-y: scroll;
}
.dl-news::-webkit-scrollbar {
  width: 5px;
}
.dl-news::-webkit-scrollbar-track {
  background-color: transparent;
}
.dl-news::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 5px;
}
@media (max-width: 834.98px) {
  .dl-news > dl {
    flex-direction: column;
  }
}
@media (max-width: 834.98px) {
  .dl-news > dl > dt,
  .dl-news > dl > dd {
    width: 100% !important;
  }
}

.dl-news > dl {
  display: block !important;
  margin-bottom: 32px;
  padding: 0 21px 32px;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 1000.98px) {
  .dl-news > dl {
    padding: 0 0 32px;
  }
}
.dl-news > dl:first-child {
  padding: 32px 21px;
}
@media (max-width: 1000.98px) {
  .dl-news > dl:first-child {
    padding: 32px 0;
  }
}
.dl-news > dl:last-child {
  margin-bottom: 0;
}
.dl-news > dl > dt {
  margin-bottom: 10px;
  font-size: 1rem;
}

@media (max-width: 640.98px) {
  .form_wrap.dl-company > dl {
    flex-direction: column;
  }
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company > dl > dt,
  .form_wrap.dl-company > dl > dd {
    width: 100% !important;
  }
}

.form_wrap.dl-company > dl {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(233, 233, 233);
}
.form_wrap.dl-company > dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.form_wrap.dl-company > dl > dt {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.form_wrap.dl-company > dl > dd > a {
  display: block;
}
.form_wrap.dl-company > dl > dd > a:after {
  content: "\f08e";
  font: var(--fa-font-solid);
  line-height: 1;
  margin-left: 10px;
}

.dpdn .dpdn__lists {
  list-style: none;
}
@media (max-width: 1200.98px) {
  .is_open .dpdn__lists {
    opacity: 1;
    visibility: visible;
  }
}

.dpdn .dpdn__link {
  color: inherit;
  text-decoration: none;
}

.dpdn {
  position: relative;
}
@media (min-width: 1201px) {
  .dpdn:hover .dpdn__lists {
    opacity: 1;
    visibility: visible;
  }
}
.dpdn__wrapper {
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
@media (max-width: 1200.98px) {
  .dpdn__wrapper {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
}
.dpdn__lists {
  width: 100%;
  min-width: 170px;
  padding-top: 5px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  z-index: 1;
}
@media (max-width: 1200.98px) {
  .dpdn__lists {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1E4B82;
    position: static;
    transition: all 0.3s ease;
  }
}
@media (max-width: 1200.98px) {
  .is_open .dpdn__lists {
    opacity: 1;
    visibility: visible;
  }
}

.dpdn__list {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(233, 233, 233);
}
@media (max-width: 1200.98px) {
  .dpdn__list {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.dpdn__list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.dpdn__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eyecatch {
  min-height: 250px;
  position: relative;
  z-index: 0;
}
.eyecatch article {
  min-width: 300px;
}

.flex--style_01 .box > img {
  margin-left: 20px;
  float: right;
}
@media (max-width: 640.98px) {
  .flex--style_01 .box > img {
    display: block;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    float: none;
  }
}
.flex--style_02 .box {
  text-align: center;
}
.flex--style_03 .box {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.flex--style_03 .box .js-frame {
  display: inline-block;
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 640.98px) {
  .flex--style_03 .box .js-frame {
    display: block;
    max-width: 400px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }
}
.flex--style_03 .box .js-frame:before {
  box-shadow: 0 10px 8px -12px rgba(0, 0, 0, 0.8);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}
.flex--style_03 .box .js-frame:after {
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.7);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}
.flex--style_03 .box .js-frame:before, .flex--style_03 .box .js-frame:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 97px;
  height: 50px;
  background: #fff;
  transform: rotate(-30deg);
}
.flex--style_03 .box .js-frame img {
  width: 100% !important;
}
@media (max-width: 640.98px) {
  .flex--style_03 .box {
    display: block;
  }
}
.flex--style_03 .box:last-child {
  margin-bottom: 0;
}
.flex--style_03 .box > div {
  flex: 1 0 0;
  margin-right: 20px;
}
@media (max-width: 640.98px) {
  .flex--style_03 .box > div {
    margin-right: 0;
  }
}
.flex--style_03 .box > div > h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #1E4B82;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: dashed 1px #ccc;
}
.flex--style_04 .box {
  width: 100%;
}
.flex--style_04 .box:first-child {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 4px solid #ccc;
  position: relative;
  overflow: visible !important;
  z-index: 0;
}
.flex--style_04 .box:first-child:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 1;
  width: 20%;
  height: 4px;
  background-color: #3498db;
}
.flex--style_04 .box:first-child > div > h2 > b {
  margin-right: 5px;
  color: #fb0d0d;
}
.flex--style_04 .box:last-child {
  padding: 15px;
  background-color: #eef5ff;
}
.flex--style_04 .box:last-child > article {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 640.98px) {
  .flex--style_04 .box:last-child > article {
    display: block;
  }
}
.flex--style_04 .box:last-child > article > h3 {
  display: none;
}
.flex--style_04 .box:last-child > article > a {
  width: 40% !important;
}
@media (max-width: 640.98px) {
  .flex--style_04 .box:last-child > article > a {
    display: block;
    width: 100% !important;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    max-width: 400px;
  }
}
.flex--style_04 .box:last-child > article > div {
  flex: 1 0 0;
  margin-right: 20px;
}
@media (max-width: 640.98px) {
  .flex--style_04 .box:last-child > article > div {
    margin-right: 0;
  }
}
.flex--style_04 .box:last-child > article > div > h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: 1px dashed #1e4b84;
}
.flex--style_04 .box:last-child > div > h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: 1px dashed #1e4b84;
}
.flex--style_05 .box {
  --gutter-y: 60px;
}
.flex--style_05 .box > img {
  margin-bottom: 20px;
}
.flex--style_05 .box > div > h3 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  text-align: center;
}
.flex--style_06 .box {
  margin-bottom: 40px;
}
.flex--style_06 .box:last-child {
  margin-bottom: 0;
}
.flex--style_06 .box > div > h3 {
  margin-bottom: 20px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.flex--style_06 .box > div > h3 > img {
  margin-right: 5px;
}

.flex-flow .box {
  width: 100%;
  margin-bottom: 40px;
}
.flex-flow .box:after {
  content: url(/images/utility/flow_yajirushi.gif);
  display: block;
  margin-top: 40px;
  text-align: center;
}
.flex-flow .box:last-child:after {
  content: none;
}
.flex-flow .box > article {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 640.98px) {
  .flex-flow .box > article {
    display: block;
  }
}
.flex-flow .box > article > h3 {
  display: none;
}
.flex-flow .box > article > img {
  margin-right: 10px;
}
@media (max-width: 640.98px) {
  .flex-flow .box > article > img {
    display: block;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
.flex-flow .box > article > div {
  margin-bottom: 5px;
}
.flex-flow .box > article > div > h3 {
  margin-bottom: 20px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}

.flex-faq {
  padding: 15px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 5px;
}
.flex-faq .box {
  width: 100%;
}
.flex-faq .box:first-child {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ccc;
}
.flex-faq .box:first-child div {
  display: flex;
  align-items: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.flex-faq .box:first-child div:before {
  content: "\f059";
  font: var(--fa-font-solid);
  line-height: 1;
  margin-right: 10px;
  color: #1E4B82;
}
.flex-faq .box > article {
  display: flex;
  align-items: flex-start;
}
.flex-faq .box > article > h3 {
  display: none;
}
.flex-faq .box > article > img {
  width: 50px !important;
  margin-right: 10px;
}
@media (max-width: 834.98px) {
  .flex-faq .box > article > img {
    width: 40px !important;
  }
}
.form.form_wrap > dl > dt {
  display: block !important;
  width: 30%;
  font-size: 0.9375rem;
  background-color: #e1e1e1;
}
.form.form_wrap > dl > dt > label {
  display: inline-block;
  margin-left: 5px;
  padding: 4px;
  color: white;
  background-color: #ff0000;
  font-size: 0.75rem;
  border-radius: 4px;
  line-height: 1;
}
.form.form_wrap > dl > dd {
  flex: 1 0 0;
}
.form.form_wrap > dl > dd > input, .form.form_wrap > dl > dd > div > input {
  width: 100% !important;
  border-radius: 0 !important;
}
.form.form_wrap .checkbox > label {
  display: block;
  margin-right: 0;
  margin-bottom: 5px;
  min-width: 0;
}
.form.form_wrap .checkbox > label:last-child {
  margin-bottom: 0;
}
.form.form_wrap .textarea > textarea {
  border-radius: 0 !important;
}

#TRANS_ANNOT {
  color: #f83f3f;
}

h2.mail.title {
  display: none;
}

section form p.annot {
  margin: 0;
  margin-bottom: 40px;
  color: #f83f3f;
}

.annot.business-guide-annot {
  margin-top: 20px;
  margin-bottom: 20px;
}

section div.form_wrap.error {
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f83f3f;
}
section div.form_wrap.error > p {
  padding: 0;
  color: white;
}

@media (max-width: 1200.98px) {
  .hamburger-wrapper {
    padding: 10px 20px;
    background-color: #1E4B82;
    text-align: right;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 1200.98px) {
  .hamburger {
    display: inline-block;
    position: relative;
    z-index: 1100;
  }
}

.hamburger {
  width: 30px;
  height: 20px;
  z-index: 1100;
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: white;
  transition: all 0.5s ease;
}
.hamburger .line1 {
  transform: translate(0, -7px);
}
.hamburger .line2 {
  transform: translate(0, 0px);
}
.hamburger .line3 {
  transform: translate(0, 7px);
}

.js-open__line {
  background-color: #1E4B82;
}
.js-open .line1 {
  transform: translateY(0px) rotate(-45deg);
}
.js-open .line2 {
  opacity: 0;
  visibility: hidden;
}
.js-open .line3 {
  transform: translateY(-4px) rotate(45deg);
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

.h1 > article > h1 {
  padding: 15px 20px;
  background-color: #e5ebf3;
  border-top: 3px solid #1e4b82;
  border-bottom: 1px solid #8ba2be;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 834.98px) {
  .h1 > article > h1 {
    font-size: 1.25rem;
  }
}

@media (max-width: 834.98px) {
  .h2 h2 {
    font-size: 1.125rem;
  }
}
.h2--style_01 > article > h2 {
  display: flex;
  align-items: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: 3px solid #a4005b;
}
.h2--style_01 > article > h2:before {
  content: url(/images/utility/illust_13.png);
}
.h2--style_02 > div {
  color: #1E4B82;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 834.98px) {
  .h2--style_02 > div {
    text-align: left !important;
  }
}

@media (max-width: 834.98px) {
  .h3 h3 {
    font-size: 1rem;
  }
}

.title--style_01 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 834.98px) {
  .title--style_01 > div {
    font-size: 1.125rem;
  }
}
.title--style_01 > div::before {
  content: url(/images/utility/illust_14.png);
  margin-right: 20px;
}
.title--style_01 > div::after {
  content: url(/images/utility/illust_15.png);
  margin-left: 20px;
}
.title--style_02 > article > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E4B82;
  font-size: 1.375rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 834.98px) {
  .title--style_02 > article > h2 {
    font-size: 1.125rem;
  }
}
.title--style_02 > article > h2::before {
  content: url(/images/utility/illust_14.png);
  margin-right: 20px;
}
.title--style_02 > article > h2::after {
  content: url(/images/utility/illust_15.png);
  margin-left: 20px;
}

.mv {
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200.98px) {
  .mv {
    display: none;
  }
}
.mv .slider__list:not(:first-child) {
  display: none;
}
.slick-initialized .slider__list:not(:first-child) {
  display: block;
}

.mv .slider__list img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .slider__picture {
  display: block;
  position: relative;
  z-index: 0;
}
.mv .slick-slide {
  height: auto;
  position: relative;
  z-index: 0;
}
.mv .slick-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mv .slick-current:before {
  content: none;
}
.mv .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
}
.mv .prev {
  left: 10%;
  transform: translate(-10%, -50%);
}
.mv .next {
  right: 10%;
  transform: translate(0, -50%);
}

@media (max-width: 1200.98px) {
  .nav {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    transition-property: opacity, background-color, visibility, transform;
    transition-duration: 0.5s;
    transition-timing-function: ease;
  }
}
.nav .nav__lists {
  list-style: none;
}
@media (max-width: 1200.98px) {
  .nav .nav__lists {
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
}
.nav .nav__link {
  color: inherit;
  text-decoration: none;
}
.is_open {
  overflow-y: hidden;
}
@media (max-width: 1200.98px) {
  .is_open .nav {
    visibility: visible;
    opacity: 1;
  }
}

.nav {
  background-color: #EEEEEE;
  border-top: 3px solid #BFBFBF;
  border-bottom: 3px solid #BFBFBF;
}
.nav__lists {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 834.98px) {
  .nav__lists {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.nav__list {
  flex: 1 0 0;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  border-right: 2px solid #BFBFBF;
  position: relative;
}
.nav__list:before {
  content: "";
  width: 2px;
  position: absolute;
  width: 2px;
  height: 11px;
  background-color: #00A460;
  top: 50%;
  right: -2px;
  transform: translate(0, -50%);
}
.nav__list:last-child {
  border-right: none;
}
.nav__list:last-child:before {
  content: none;
}
.nav__link {
  display: block;
  padding-top: 10px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 40px;
  color: #1E4B82;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1;
}

.nav.js-cloned {
  display: none;
}
@media (max-width: 1200.98px) {
  .nav.js-cloned {
    display: block;
  }
}

.js-drop-open {
  margin-top: 40px;
  margin-bottom: 10px;
}

@media (max-width: 1200.98px) {
  .nav {
    width: 100%;
    margin-right: 0;
    background-color: #EEEEEE;
    border-top: none;
    border-bottom: none;
  }
  .nav__lists {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
  .nav__list {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    color: #1E4B82;
    border-right: none;
    border-bottom: 1px solid #1E4B82;
  }
  .nav__list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .nav__list:before {
    content: none;
  }
  .nav__link {
    padding: 0;
    font-size: 1.125rem;
    text-align: left;
  }
}
.is_open .nav {
  background-color: white;
}

.breadcrumb {
  margin-bottom: 0.3125rem;
}

.breadcrumb {
  font-size: 0.875rem;
  text-align: end;
}
.breadcrumb > a {
  color: #2e821e;
  text-decoration: none;
}

.policy h2 {
  display: flex;
  align-items: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1rem;
  border-bottom: 3px solid #a4005b;
}
.policy h2:before {
  content: url(/images/utility/illust_13.png);
}
.policy p {
  margin-bottom: 60px;
}

.policy-box {
  padding: 15px;
  border: 2px dashed #ccc;
  background-color: #eee;
}

.sns-slick .sns_list, .sns .sns_list {
  border: none;
}
.sns-slick .sns_list__list, .sns .sns_list__list {
  display: block;
  border-bottom: none;
  border: none;
}
.sns-slick .sns_list .sns_photo, .sns .sns_list .sns_photo {
  width: 100%;
  padding: 0;
}
.sns-slick .sns_list .sns_photo a, .sns .sns_list .sns_photo a {
  display: block;
}
.sns-slick .sns_list .sns_text, .sns .sns_list .sns_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.sns-slick .sns_list .sns_text .caption, .sns .sns_list .sns_text .caption {
  word-break: break-all;
}
.sns-slick .sns_list .sns_text ul, .sns .sns_list .sns_text ul {
  display: none;
}

.sns-slick .slick-slider,
.sns-slick .slick-list {
  display: block !important;
}
.sns-slick .slick-slide {
  height: auto !important;
}

.m-shop {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.m-shop .items {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.m-shop .items > article {
  align-items: flex-start;
  width: auto;
  margin-bottom: 0;
  margin-left: 0;
}
@media (max-width: 640.98px) {
  .m-shop .items > article {
    margin-right: 0;
  }
}
.m-shop .items .photo {
  width: 100%;
  height: 100px;
}
.m-shop .items .name {
  padding-top: 0;
}
.m-shop .items .summary {
  padding-top: 0;
  text-align: left;
}
.m-shop .items .price {
  padding-top: 0;
}

.tbl_scroll table {
  table-layout: unset;
}

.ul li:last-child {
  margin-right: 0;
}

.banner {
  margin-bottom: 10px;
}
@media (max-width: 640.98px) {
  .banner {
    text-align: center;
  }
}
.banner:last-child {
  margin-bottom: 0;
}
@media (max-width: 640.98px) {
  .banner img {
    width: 100%;
    max-width: 350px;
  }
}

.sidebar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px 15px;
  color: white;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1000.98px) {
  .sidebar-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 1200.98px) {
  .sidebar-title {
    font-size: 1rem;
  }
}
.sidebar-title:before {
  content: "";
  margin-right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: white transparent transparent transparent;
  border-width: 15px 10px 0 10px;
}
.sidebar-title:after {
  content: "";
  border-bottom: 1px solid #FFFFFF;
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.sidebar-title--blue {
  background-color: #1E4B82;
}
.sidebar-title--green {
  background-color: #00A460;
}
.sidebar-title--red {
  background-color: #a0025a;
}

@media (max-width: 1200.98px) {
  .sidebar-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1200.98px) {
  .sidebar-wrapper .banner {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
}
@media (max-width: 640.98px) {
  .sidebar-wrapper .banner {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 1200.98px) {
  .sidebar-wrapper .banner:nth-child(3n) {
    margin-right: 0;
  }
}

.header .logo {
  width: 31%;
  min-width: 150px;
  margin-right: 20px;
}
@media (max-width: 1200.98px) {
  .header .logo {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    text-align: center;
  }
}
.header .logo__link, .header .logo__img {
  width: 100%;
}
.header__img-sp {
  display: none;
}
@media (max-width: 1200.98px) {
  .header__img-sp {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }
}
.header__inner {
  width: 100%;
  background-color: white;
  border-top: 10px solid #1E4B82;
}
@media (max-width: 1200.98px) {
  .header__inner {
    padding-bottom: 20px;
    border-top: none;
  }
}
.header__sub-inner {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 834.98px) {
  .header__sub-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200.98px) {
  .header__sub-inner {
    display: block;
    margin-bottom: 0;
  }
}
.header__wrapper {
  margin-left: auto;
}
.header__contact-text {
  margin-bottom: 10px;
  color: #1E4B82;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
  text-align: left;
}
@media (max-width: 1200.98px) {
  .header__contact-text {
    text-align: center;
  }
}
.header .contact {
  display: flex;
  align-items: center;
}
@media (max-width: 1200.98px) {
  .header .contact {
    flex-direction: column-reverse;
  }
}
.header .tel {
  margin-right: 10px;
}
@media (max-width: 1200.98px) {
  .header .tel {
    margin-right: 0;
  }
}
.header .tel img {
  margin-right: 5px;
}
.header .tel__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .tel__text-sp {
  display: none;
}
@media (max-width: 1200.98px) {
  .header .tel__text-sp {
    display: block;
    color: #1E4B82;
    font-size: 0.875rem;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 900;
  }
}
.header .tel__text {
  color: #110C58;
  font-size: 1.875rem;
  font-family: Roboto, sans-serif;
  font-weight: 700;
}
@media (max-width: 1200.98px) {
  .header .tel__text {
    line-height: 1;
    font-size: 2.125rem;
  }
}
.header .mail {
  display: inline-block;
  color: white;
  padding: 5px 10px;
  background-color: #00A460;
}
@media (max-width: 1200.98px) {
  .header .mail {
    margin-bottom: 20px;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  transition: 0.5s;
}
.pagetop.is_fadeout {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

#global_footer {
  margin-top: 60px;
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #EEEEEE;
  border-top: 3px solid #BFBFBF;
}
.footer__inner {
  display: flex;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 834.98px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 834.98px) {
  .footer__inner {
    display: block;
  }
}
.footer__wrapper {
  margin-right: 20px;
}
.footer .logo {
  margin-bottom: 5px;
  text-align: left;
}
@media (max-width: 834.98px) {
  .footer .logo {
    text-align: center;
  }
}
.footer__address {
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 834.98px) {
  .footer__address {
    text-align: center;
  }
}
.footer__contact-text {
  font-size: 1.25rem;
  text-align: left;
}
@media (max-width: 834.98px) {
  .footer__contact-text {
    display: none;
    text-align: center;
  }
}
.footer .tel {
  display: flex;
  align-items: center;
  color: #1E4B82;
  line-height: 1;
}
@media (max-width: 834.98px) {
  .footer .tel {
    display: none;
    margin-bottom: 40px;
    justify-content: center;
  }
}
.footer .tel img {
  margin-right: 5px;
}
.footer .tel__text {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
}
@media (max-width: 834.98px) {
  .footer .tel__text {
    font-size: 1.5rem;
  }
}

.f-nav {
  flex: auto 0 0;
  margin-right: 40px;
  margin-left: auto;
}
@media (max-width: 834.98px) {
  .f-nav {
    display: block;
    margin-bottom: 40px;
  }
}
.f-nav__list {
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 834.98px) {
  .f-nav__list {
    text-align: center;
  }
}
.f-nav__list:last-child {
  margin-right: 0;
}
.f-nav__link {
  font-size: 0.9375rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
}
.f-nav__link:link, .f-nav__link:visited {
  color: #333333;
}
.f-nav__link:hover {
  padding-bottom: 3px;
  border-bottom: #1E4B82 3px solid;
}

.f-map {
  width: 300px;
}
@media (max-width: 834.98px) {
  .f-map {
    width: 100%;
  }
}

.copyright {
  padding: 5px 20px;
  color: white;
  font-size: 0.75rem;
  background-color: #1E4B82;
}
.copyright > a:link, .copyright > a:visited {
  color: white;
  text-decoration: underline;
}

.sec-01 {
  margin-bottom: 90px;
}
.sec-01__h1 {
  margin-bottom: 40px;
}
.sec-01__h1 > article > h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 834.98px) {
  .sec-01__h1 > article > h1 {
    font-size: 1.25rem;
    text-align: left !important;
  }
}
.sec-01__h1 > article > h1:before {
  content: url(/images/utility/illust_01.png);
  margin-right: 10px;
}
.sec-01__h1 > article > h1:after {
  content: url(/images/utility/illust_02.png);
  margin-left: 10px;
}
@media (max-width: 834.98px) {
  .sec-01__h1 > article > h1:after {
    display: none;
  }
}
@media (max-width: 640.98px) {
  .sec-01__h1 > article > h1 > br {
    display: none;
  }
}
.sec-01__h2 {
  margin-bottom: 60px;
}
.sec-01__h2 > article > h2 {
  padding: 15px 20px;
  color: white;
  background-color: #821e39;
  text-align: center;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  position: relative;
}
.sec-01__h2 > article > h2:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #821e39 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
.sec-01__p {
  margin-bottom: 20px;
}
.sec-01__p > div {
  font-size: 1.3125rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-01__cont {
  margin-bottom: 60px;
}
.sec-01__cont .box > img {
  margin-left: 20px;
  float: right;
}
@media (max-width: 640.98px) {
  .sec-01__cont .box > img {
    display: block;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    width: 100%;
    max-width: 400px;
    float: none;
  }
}
.sec-01__wrapper {
  padding: 10px;
  background-color: #EEEEEE;
}
.sec-01__sub-h2 {
  margin-bottom: 10px;
}
.sec-01__sub-h2 > article > h2 {
  padding-left: 50px;
  color: #1E4B82;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  position: relative;
}
.sec-01__sub-h2 > article > h2::before {
  content: url(/images/utility/illust_03.png);
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  top: -20px;
  left: 0;
}
.sec-01__text {
  padding: 10px;
  background-color: white;
}

.sec-02 {
  margin-bottom: 90px;
}
.sec-02__h2 {
  margin-bottom: 60px;
}
.sec-02__h2 > article > h2 {
  padding: 15px 20px;
  color: white;
  background-color: #1E4B82;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  position: relative;
}
.sec-02__h2 > article > h2:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #1E4B82 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
.sec-02__cont .box {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 640.98px) {
  .sec-02__cont .box {
    display: block;
  }
}
.sec-02__cont .box > img {
  width: 40% !important;
}
@media (max-width: 640.98px) {
  .sec-02__cont .box > img {
    display: block;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    width: 100% !important;
    max-width: 400px;
  }
}
.sec-02__cont .box > div {
  flex: 1 0 0;
  margin-right: 20px;
}

.sec-03 {
  margin-bottom: 90px;
}
.sec-03__h2 {
  margin-bottom: 40px;
}
.sec-03__h2 > article > h2 {
  padding: 15px 20px;
  color: #1E4B82;
  background: repeating-linear-gradient(-45deg, #ffe8cc, #fff4cc 3px, #ffffe9 3px, #fffde9 7px);
  background-repeat: repeat;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-left: 7px solid #f7ce1f;
}
.sec-03__conts {
  margin-bottom: 30px;
}
.sec-03__conts .box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}
.sec-03__conts .box:last-child {
  margin-bottom: 0;
}
.sec-03__conts .box:before {
  content: url(/images/utility/illust_04.png);
  display: inline-block;
  margin-right: 10px;
}
.sec-03__conts .box > div > h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-03__conts .box > div > h3 > span {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(255, 250, 153) 60%);
}
.sec-03__text {
  margin-bottom: 40px;
}
.sec-03__ba {
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 640.98px) {
  .sec-03__ba {
    flex-direction: column !important;
  }
}
.sec-03__ba .box {
  flex: 1 0 0;
  position: relative;
}
@media (max-width: 640.98px) {
  .sec-03__ba .box {
    flex: unset;
  }
}
.sec-03__ba .box:nth-child(2n) {
  flex: 0 0 auto;
  margin-right: 40px;
  margin-left: 40px;
}
@media (max-width: 640.98px) {
  .sec-03__ba .box:nth-child(2n) {
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
    transform: rotate(90deg);
  }
}
.sec-03__ba .box:last-child > article > div > p {
  background-color: #1E4B82;
}
.sec-03__ba .box > article > img {
  width: 100% !important;
}
.sec-03__ba .box > article > h3 {
  display: none;
}
.sec-03__ba .box > article > div {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sec-03__ba .box > article > div > p {
  padding: 10px 15px;
  color: white;
  background-color: #6b6969;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-03__ba .box > article > div > p > b {
  margin-left: 10px;
  color: #06b5e1;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

.sec-04 {
  margin-bottom: 90px;
}
.sec-04__h2 {
  margin-bottom: 40px;
}
.sec-04__h2 > article > h2 {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
  color: white;
  background-color: #1E4B82;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: 7px solid #A3B4C9;
}
.sec-04__h2 > article > h2:before {
  content: url(/images/utility/illust_06.png);
  display: inline-block;
  margin-right: 10px;
}
.sec-04__conts .box {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
}
.sec-04__conts .box:last-child {
  margin-bottom: 0;
}
@media (max-width: 640.98px) {
  .sec-04__conts .box {
    display: block;
  }
}
.sec-04__conts .box > img {
  margin-right: 20px;
}
@media (max-width: 640.98px) {
  .sec-04__conts .box > img {
    display: block;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    width: 100%;
    max-width: 400px;
  }
}
.sec-04__conts .box > div > h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}

.sec-05 {
  margin-bottom: 90px;
  padding: 20px;
  background-color: #f4f9fe;
  border: 2px solid #1e4b82;
  border-radius: 5px;
}
.sec-05__h2 > article > h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  border-bottom: 2px dashed #a7bfdd;
}
.sec-05__conts .box {
  margin-bottom: 60px;
}
.sec-05__conts .box > div > h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-05__conts .box > div > h3:before {
  margin-right: 5px;
  color: #1E4B82;
  content: "\f4ad";
  font: var(--fa-font-solid);
  line-height: 1;
}
.sec-05__conts .box > div > p {
  text-align: right;
}

.sec-06 {
  margin-bottom: 90px;
  padding: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 5px;
}
.sec-06__h2 {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #ccc;
}
.sec-06__h2 > article > h2 {
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-06__h2 > article > h2:before {
  color: #1E4B82;
  margin-right: 5px;
  content: "\f1b3";
  font: var(--fa-font-solid);
  line-height: 1;
}

.sec-07__h2 {
  margin-bottom: 40px;
}
.sec-07__h2 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
}
.sec-07__h2 > div::before {
  content: url(/images/utility/illust_11.png);
  margin-right: 20px;
}
.sec-07__h2 > div::after {
  content: url(/images/utility/illust_12.png);
  margin-left: 20px;
}
.sec-07__text {
  margin-bottom: 40px;
}
.sec-07__arrow {
  margin-bottom: 40px;
}
.sec-07__form {
  margin-bottom: 40px;
}
.sec-07__caution div {
  color: #f83f3f;
}

header:nth-of-type(1) {
  background: transparent;
}

.blog .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background-color: transparent;
}
.blog #contents {
  width: auto;
  min-width: 0 !important;
  overflow: unset;
}
.blog #contents > article {
  padding: 0;
}
.blog #contents > article > h1 {
  padding-bottom: 0;
  line-height: 1.6;
  font-size: 16px;
  color: initial;
}
.blog #contents > article > ul {
  margin-bottom: 0;
}
.blog #contents > article > ul > li > a {
  margin-right: 0;
}
.blog #contents > article > div > article {
  padding: 0;
}
.blog #contents > dl {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt > div > .date {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a > .translate {
  font-size: 1rem;
}
.blog #contents .clearfix > li > a {
  margin-right: 0;
  line-height: 1.6;
}
.blog #contents .box article {
  padding: 0;
}
.blog #contents article h2 {
  padding-bottom: 0;
  font-size: 1rem;
  color: rgb(70, 70, 70);
  line-height: 1.6;
}
.blog #contents article img {
  margin: 0;
}
.blog aside {
  width: auto;
  min-width: 0;
  padding: 0;
  overflow: unset;
}
.blog aside > nav {
  padding: 0;
  text-align: left;
}
.blog aside > nav > div {
  color: rgb(70, 70, 70);
  font-size: 1rem;
  line-height: 1.6;
}
.blog aside > nav > div:nth-of-type(2) {
  margin-top: 0;
}
.blog aside > nav > a {
  padding-right: 0;
  margin-top: 0px;
}
.blog #calendar {
  margin: 0;
}
.blog #form_calendar {
  max-width: 100%;
  min-width: 0;
  box-shadow: none;
  margin: 0;
  background-color: transparent;
}
.blog #form_calendar > table {
  margin-bottom: 0;
}
.blog #form_calendar > table > thead > tr > th {
  font-size: 0.625rem;
}
.blog #form_calendar .open {
  margin-top: 10px;
}
.blog #search > form > button {
  top: 50%;
  right: 0.3125rem;
  transform: translate(0, -50%);
}
.blog .category > li {
  padding: 0;
  border-bottom: none;
}
.blog .category > li:first-child {
  border-top: 0;
}
.blog .pages > li {
  padding: 0;
  text-align: left;
  border-bottom: none;
}
.blog .pages > li:first-child {
  border-top: 0;
}
.blog span[id*=TRANS_] {
  padding-right: 0;
  overflow-wrap: break-word;
}

.blog {
  box-sizing: inherit;
  margin-top: 40px;
  margin-bottom: 100px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 834.98px) {
  .blog {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog #contents {
  flex: 1 0 0;
}
.blog #contents > article > h1 {
  margin-bottom: 80px;
}
.blog #contents > article > h1 > span {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (max-width: 834.98px) {
  .blog #contents > article > h1 > span {
    font-size: 1.25rem;
  }
}
.blog #contents h2 {
  font-size: 1.25rem;
}
@media (max-width: 834.98px) {
  .blog #contents h2 {
    font-size: 1.125rem;
  }
}
.blog #contents > article > .date {
  color: rgb(70, 70, 70);
  line-height: 1.6;
}
.blog #contents > article > ul {
  margin-bottom: 30px;
}
.blog #contents > article > ul > li {
  margin-right: 10px;
}
.blog #contents > article > ul > li:last-child {
  margin-right: 0;
}
.blog #contents > article > ul > li > a {
  font-size: 0.875rem;
}
.blog aside {
  flex: 0 0 30%;
  margin-right: 40px;
}
@media (max-width: 640.98px) {
  .blog aside {
    margin-right: 0;
  }
}
.blog aside nav > div {
  margin-bottom: 5px;
  font-size: 1.125rem;
}
.blog #calendar {
  margin-bottom: 20px;
}
.blog #calendar dl.open > dt > label,
.blog #calendar td.open {
  background-color: #f0f7ff;
}
.blog #calendar dl.close > dt > label,
.blog #calendar td.close {
  background-color: #fff1ee;
}
.blog #calendar table > tbody > tr > td:hover {
  background-color: white !important;
}
.blog #search {
  margin-bottom: 20px;
}
.blog .category {
  margin-bottom: 40px;
}
.blog .category li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a4a4a4;
}
.blog .category li:last-child {
  margin-bottom: 0;
}
.blog .pages li {
  margin-bottom: 20px;
}
.blog .pages li > a {
  font-size: 14px;
}
.blog .pages li > a > span {
  font-size: 16px;
}
.blog #contents > dl {
  margin-bottom: 60px;
}
.blog #contents > dl .date {
  margin-bottom: 10px;
}
.blog #contents > article[id*=page] {
  margin-bottom: 120px;
}
@media (max-width: 640.98px) {
  .blog .blog-flex .box img {
    display: block;
    max-width: 400px;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.blog .blog-flex .box > article > h3 {
  display: none;
}

#is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment, #is_shop .purchase .next,
#is_shop .purchase .add_deliver, #is_shop .purchase .addrs .deliver, #is_shop .shipment > button, #is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back {
  width: auto;
  height: auto;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  text-indent: 0;
  margin: 0;
  background: none;
}

#is_shop h2 {
  margin-top: 0 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #333333 !important;
  border-bottom: none !important;
}
#is_shop #keyword {
  display: block;
  width: auto;
  border-radius: 0;
  border: none;
  float: none;
}
#is_shop .search {
  display: block;
  margin-top: 0;
}
#is_shop .search .text {
  width: auto;
}
#is_shop .search .text input[type=text] {
  height: auto;
  padding: 0;
  border-left: 0;
  border-radius: 0;
}
#is_shop .search .text > button {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
#is_shop .search .select {
  width: auto;
  min-width: 0;
  border-radius: 0;
  float: none;
  position: relative;
}
#is_shop .search .select:after {
  content: none;
}
#is_shop .search .select > select {
  height: 100%;
  padding: 0;
  line-height: 1.6;
  border-radius: 0;
  background: none;
}
#is_shop .search .pager {
  display: flex;
  width: auto;
  margin-top: 0;
  float: none;
}
#is_shop .search .pager .off {
  width: auto;
  height: auto;
  margin-left: 0;
  color: transparent;
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: hidden;
  float: none;
  text-indent: 0;
  font-weight: normal;
  position: relative;
  z-index: 0;
}
#is_shop .search .pager .prev.off,
#is_shop .search .pager .next.off {
  background-image: none;
}
#is_shop .under {
  margin-top: 0;
  margin-left: 0;
}
#is_shop .under > ul > li {
  width: auto;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  float: none;
}
#is_shop .under > ul > li > a {
  padding: 0;
  height: auto;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
}
#is_shop .under > ul > li > a:hover {
  background-color: unset;
  color: initial;
}
#is_shop .order {
  margin-top: 0;
  font-size: 1rem;
  border-bottom: none;
}
#is_shop .order:after {
  content: none;
}
#is_shop .order > p {
  line-height: 1.6;
  float: none;
}
#is_shop .order > ul {
  justify-content: flex-start;
  float: none;
}
#is_shop .order > ul > li {
  margin: 0;
}
#is_shop .items {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1rem;
}
#is_shop .items > article {
  width: auto;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
#is_shop .items .photo {
  width: auto;
  height: auto;
}
#is_shop .items .name {
  padding-top: 0;
  text-decoration: none;
}
#is_shop .items .summary {
  padding-top: 0;
  text-align: left;
}
#is_shop .items .price {
  padding-top: 0;
}
#is_shop .crumb {
  margin-top: 0;
}
#is_shop .crumb > ul > li {
  margin-right: 0;
  line-height: 1.6;
  float: none;
}
#is_shop .crumb > ul > li:after {
  margin-left: 0;
  font-weight: normal;
}
#is_shop .item {
  margin-top: 0;
}
#is_shop .item .photo {
  display: block;
  margin-left: 0;
}
#is_shop .item .photo .large {
  margin-left: 0;
  margin-bottom: 0;
}
#is_shop .item .photo .small {
  min-width: 0;
  max-width: 100%;
}
#is_shop .item .photo .small > ul > li {
  margin-left: 0;
  margin-bottom: 0;
  flex-basis: auto;
}
#is_shop .item .item_view {
  margin-left: 0;
  min-width: 0;
  max-width: 100%;
}
#is_shop .item .item_view > h2 {
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .item .item_view > h2 > span {
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: right;
}
#is_shop .item .item_view > ul {
  margin-top: 0;
}
#is_shop .item .item_view > ul > li {
  margin-right: 0;
  float: none;
}
#is_shop .item .item_view > ul > li > a {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
#is_shop .struct {
  display: block;
  margin-top: 0;
}
#is_shop .sku {
  width: 100%;
}
#is_shop .sku .price {
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .sku .price > label {
  font-size: 0.75rem;
}
#is_shop .item_option {
  width: 100%;
}
#is_shop .item_option > form > dl {
  display: block;
  margin-bottom: 0;
  border: none;
}
#is_shop .item_option > form > dl > dt {
  display: block;
  padding: 0;
  min-height: 0;
  background-color: transparent;
}
#is_shop .item_option > form > dl > dd {
  padding: 0;
}
#is_shop .item_option .select:after {
  content: none;
  border: none;
  top: auto;
  right: auto;
}
#is_shop .item_option .select > select {
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .count {
  display: block;
  margin-bottom: 0;
  border: none;
}
#is_shop .count > dt {
  display: block;
  padding: 0;
  min-height: 0;
  background-color: transparent;
  font-size: 16px;
}
#is_shop .count > dd {
  padding: 0;
}
#is_shop .count > button {
  height: auto;
  border: none;
  border-radius: 0;
}
#is_shop .addcart .addcart {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  border: none;
  text-indent: 0;
  float: none;
}
#is_shop .addcart > a {
  margin-top: 0;
}
#is_shop .detail {
  margin-top: 0;
}
#is_shop .attr {
  margin-top: 0;
}
#is_shop .attr > h3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop .attr > dl {
  border: none;
  font-size: 1rem;
}
#is_shop .attr > dl > dt {
  min-width: 0;
  padding: 0;
  background-color: transparent;
  border-right: none;
}
#is_shop .attr > dl > dd {
  padding: 0;
}
#is_shop .detail2 {
  margin-top: 0;
}
#is_shop .bundle_set {
  margin-top: 0;
}
#is_shop .bundle_set > h3 {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .flip {
  overflow: unset;
}
#is_shop .flip > ul > li {
  width: auto;
  height: auto;
  margin-right: 0;
  margin-bottom: 0;
  float: none;
}
#is_shop .flip > ul > li:after {
  font-size: 1rem;
  font-weight: normal;
  top: auto;
  right: auto;
  left: auto;
}
#is_shop .flip .photo {
  height: 0;
  background-size: contain;
}
#is_shop .flip .name {
  padding-top: 0;
  text-align: left;
}
#is_shop .flip .price {
  padding-top: 0;
  text-align: right;
}
#is_shop .bar {
  background: transparent;
  height: auto;
}
#is_shop .bar > p {
  margin-left: 0;
  font-size: 1rem;
  line-height: 1.6;
  float: none;
}
#is_shop .bar > p > span {
  color: colo(text);
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .bar > p > span > label {
  font-size: 0.75rem;
}
#is_shop .bar .addcart {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  border: none;
  text-indent: 0;
  float: none;
}
#is_shop .relay {
  margin-top: 0;
}
#is_shop .relay > h3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop .relay .flip {
  width: 100%;
  overflow: unset;
}
#is_shop .relay .flip > ul {
  width: auto;
}
#is_shop .relay .page {
  width: auto;
  height: auto;
  line-height: 0;
  color: #333333;
  background-color: transparent;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  text-shadow: none;
}
#is_shop .form_wrap {
  margin-top: 0;
}
#is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
  padding: 0;
  background-color: transparent;
  border: none;
}
#is_shop #sumcart > h2 {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop #sumcart > ul {
  margin-top: 0;
  margin-bottom: 0;
}
#is_shop #sumcart > ul > li {
  padding: 0;
  border-bottom: none;
}
#is_shop #sumcart ul li a {
  padding: 0;
  line-height: 1.6;
  font-size: 1rem;
}
#is_shop #sumcart ul li p {
  padding: 0;
}
#is_shop #sumcart ul li input {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  text-align: left;
}
#is_shop #sumcart .photo {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
}
#is_shop #sumcart .photo .photo {
  width: auto;
  height: auto;
  background-size: contain;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop #sumcart .count {
  min-width: 0;
  max-width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
#is_shop #sumcart .count > input[type=text] {
  padding: 0;
}
#is_shop #sumcart .sum {
  display: block;
  padding: 0;
  background-color: transparent;
  font-size: 1rem;
}
#is_shop #sumcart .sum > div {
  align-items: stretch;
}
#is_shop #sumcart .sum .sum_count {
  width: auto;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
  text-indent: 0;
  line-height: 1.6;
  background: none;
}
#is_shop #sumcart .sum > div > div {
  min-width: 0;
  max-width: 100%;
}
#is_shop #sumcart .sum > div > div:nth-child(1) {
  width: auto;
}
#is_shop #sumcart .sum .sum_price > dt {
  min-width: 0;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop #sumcart .sum .sum_price > dd {
  color: #333333;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
}
#is_shop #sumcart .sum > p {
  text-align: left;
}
#is_shop .postage {
  margin-top: 0;
  padding: 0;
  background: none;
}
#is_shop .purchase > h2 {
  margin: 0;
  border-bottom: 0;
  line-height: 1.6;
}
#is_shop .form_wrap > dl {
  margin-top: 0;
}
#is_shop .form_wrap > dl > dt {
  min-width: 0;
  max-width: 100%;
}
#is_shop .form_wrap .birthday {
  display: flex;
}
#is_shop .form_wrap .birthday > div {
  float: 0;
}
#is_shop .form_wrap .next {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  text-indent: 0;
}
#is_shop .shipment > dl {
  margin-bottom: 0;
}
#is_shop .purchase .addrs > ul > li {
  margin: 0;
  width: 100%;
}
#is_shop .purchase .addrs > ul > li > dl {
  margin: 0;
}
#is_shop .purchase .addrs > ul > li > dl > dd {
  line-height: 1.6;
  font-weight: normal;
}
#is_shop .purchase .addrs .link {
  margin-top: 0px;
}
#is_shop .purchase.confirm .edit_payment:before {
  content: "お支払方法の変更";
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li {
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li:last-child {
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li > div:nth-child(n+3) {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .deliver_item .photo {
  width: auto;
  max-width: 100%;
  min-width: 0;
}
#is_shop .purchase.confirm .deliver_item .photo .photo {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  float: none;
  margin-right: 0;
}
#is_shop .purchase.confirm .deliver_item .item {
  width: auto;
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item .item .number {
  padding-bottom: 0;
  font-size: 1rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price,
  #is_shop .purchase.confirm .deliver_item .count,
  #is_shop .purchase.confirm .deliver_item .subtotal {
    padding-right: 0;
    background: none;
    line-height: 1.6;
  }
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price > p,
  #is_shop .purchase.confirm .deliver_item .count > p,
  #is_shop .purchase.confirm .deliver_item .subtotal > p {
    font-size: 16px;
  }
}
#is_shop .purchase.confirm .total > dd > div {
  width: auto;
}
#is_shop .purchase.confirm .total > dd > div:nth-child(n+2) {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .total.amount > dt {
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .purchase.confirm .total.amount > dd > div > p {
  color: #333333;
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div > p {
  font-size: 1rem;
  text-align: left;
}
#is_shop .purchase.confirm .sub_total .item {
  width: auto;
}
#is_shop .purchase.accept {
  margin-top: 0;
  padding: 0;
  background: transparent;
}
#is_shop .purchase.accept .accept {
  width: auto;
  height: auto;
  background: none;
  background-position: unset;
  background-size: unset;
  text-indent: 0;
}

#is_shop h2 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
  color: rgb(70, 70, 70) !important;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem !important;
}

#is_shop #sumcart .item .name, #is_shop .relay h3, #is_shop .bundle_set h3, #is_shop .attr > h3, #is_shop h3 {
  margin-bottom: 0.625rem !important;
  color: rgb(70, 70, 70) !important;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.125rem !important;
}

#is_shop .relay .flip .photo, #is_shop .bundle_set .flip .photo, #is_shop .items .photo {
  width: 100%;
  max-width: 100%;
  height: 250px;
  max-height: 100%;
  margin-right: auto;
  margin-bottom: 0.625rem;
  margin-left: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#is_shop .relay .flip .name, #is_shop .bundle_set .flip .name, #is_shop .items .name {
  margin-bottom: 0.3125rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: rgb(70, 70, 70) !important;
  text-decoration: underline;
}

#is_shop .relay .flip .price, #is_shop .bundle_set .flip .price, #is_shop .items .price {
  width: 100%;
  margin-top: auto;
  text-align: right;
}

#is_shop .item .item_option .select, #is_shop .search .select {
  position: relative;
}
#is_shop .item .item_option .select::before, #is_shop .search .select::before {
  content: "\f107";
  font: var(--fa-font-solid);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  z-index: 1;
}
#is_shop .item .item_option .select > select, #is_shop .search .select > select {
  padding: 0.5rem 2rem;
  background-color: rgb(233, 233, 233);
  border: 1px solid #a4a4a4;
}

#is_shop .purchase.accept .accept, #is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment, #is_shop .purchase .next, #is_shop .form_wrap .confirm, #is_shop .form_wrap .next, #is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back, .shop-btn, #is_shop .bar .addcart, #is_shop .item .addcart > button {
  display: block;
  width: auto;
  min-width: 100px;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 2rem;
  border-radius: 100vh;
  font-size: 1rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.5s ease;
}
#is_shop .purchase.accept .accept:hover, #is_shop .purchase.confirm .edit_customer:hover,
#is_shop .purchase.confirm .edit_deliver:hover,
#is_shop .purchase.confirm .edit_payment:hover,
#is_shop .purchase.confirm .edit_shipment:hover, #is_shop .purchase .next:hover, #is_shop .form_wrap .confirm:hover, #is_shop .form_wrap .next:hover, #is_shop #sumcart .sum .button .purchase:hover,
#is_shop #sumcart .sum .button .back:hover, .shop-btn:hover, #is_shop .bar .addcart:hover, #is_shop .item .addcart > button:hover {
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.shop-btn--color_theme, #is_shop .purchase.accept .accept, #is_shop .purchase .next, #is_shop .form_wrap .confirm, #is_shop .form_wrap .next, #is_shop #sumcart .sum .button .purchase, #is_shop .bar .addcart, #is_shop .item .addcart > button {
  color: white;
  background-color: #f0ae00;
}
.shop-btn--color_inactive, #is_shop #sumcart .sum .button .back {
  color: rgb(70, 70, 70);
  background-color: #a4a4a4;
}
.shop-btn--border, #is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment {
  color: rgb(70, 70, 70);
  background-color: white;
  border: 1px solid rgb(70, 70, 70);
}

#is_shop #keyword {
  display: flex;
  flex: 1 0 0;
}
@media (max-width: 834.98px) {
  #is_shop #keyword {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 640.98px) {
  #is_shop #keyword {
    display: block;
  }
}
#is_shop .search {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 834.98px) {
  #is_shop .search {
    display: block;
  }
}
#is_shop .search .text {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  height: auto;
  border: 1px solid #a4a4a4;
}
#is_shop .search .text > input {
  height: 100% !important;
  padding: 0.625rem !important;
}
#is_shop .search .select {
  margin-right: 1.25rem;
}
@media (max-width: 640.98px) {
  #is_shop .search .select {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
#is_shop .search .select > select {
  font-size: 1rem;
}
#is_shop .search .pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 2.5rem;
}
#is_shop .search .pager .select {
  margin-right: 1.25rem;
  margin-bottom: 0;
}
#is_shop .search .pager .off {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 1.5rem;
  border-radius: 30px;
  background-color: rgb(233, 233, 233);
}
#is_shop .search .pager .off::before {
  font: var(--fa-font-solid);
  display: inline-block;
  color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#is_shop .search .pager .prev.off {
  margin-right: 1.25rem;
}
#is_shop .search .pager .prev.off::before {
  content: "\f104";
}
#is_shop .search .pager .next.off::before {
  content: "\f105";
}
#is_shop .under {
  margin-bottom: 1.25rem;
}
#is_shop .under > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#is_shop .under > ul > li {
  display: inline-block;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  background-color: rgb(233, 233, 233);
}
#is_shop .under > ul > li a {
  display: inline-block;
  width: auto;
  padding: 1rem;
}
#is_shop .order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid black;
}
@media (max-width: 640.98px) {
  #is_shop .order {
    display: block;
  }
}
#is_shop .order > ul > li {
  margin-right: 0.625rem;
}
#is_shop .order > ul > li:last-child {
  margin-right: 0;
}
#is_shop .items {
  margin-bottom: -2.5rem;
}
#is_shop .items > article {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 3);
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
}
#is_shop .items > article:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  #is_shop .items > article {
    width: calc((100% - 2.5rem) / 2);
  }
  #is_shop .items > article:nth-child(3n) {
    margin-right: 2.5rem;
  }
  #is_shop .items > article:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640.98px) {
  #is_shop .items > article {
    width: 100%;
  }
}
#is_shop .items .summary {
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
}
#is_shop .crumb {
  margin-bottom: 3.75rem;
}
#is_shop .crumb > ul {
  display: flex;
  align-items: center;
}
#is_shop .crumb > ul > li {
  margin-right: 0.625rem;
}
#is_shop .crumb > ul > li:last-child {
  margin-right: 0;
}
#is_shop .crumb > ul > li:last-child:after {
  content: none;
}
#is_shop .crumb > ul > li:after {
  margin-left: 0.625rem;
  color: rgb(70, 70, 70);
}
#is_shop .item {
  margin-bottom: 3.75rem;
}
#is_shop .item .photo {
  flex: 0 0 calc(70% - 3.75rem);
  margin-right: 2.5rem;
}
@media (max-width: 834.98px) {
  #is_shop .item .photo {
    height: 100vh;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
#is_shop .item .photo .large {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
  position: relative;
  display: block;
}
#is_shop .item .photo .large:has(a) {
  display: block;
}
#is_shop .item .photo .large:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
#is_shop .item .photo .large > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 834.98px) {
  #is_shop .item .photo .large {
    height: 50vh;
  }
}
@media (max-width: 640.98px) {
  #is_shop .item .photo .large {
    height: auto;
  }
}
#is_shop .item .photo .small > ul {
  display: flex;
  align-items: center;
  margin-bottom: -1.25rem;
}
#is_shop .item .photo .small > ul > li {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 5);
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}
#is_shop .item .photo .small > ul > li:nth-child(5) {
  margin-right: 0;
}
#is_shop .item .item_view {
  flex: 1 0 0;
}
#is_shop .item .item_view > h2 > span {
  margin-top: 0.3125rem;
}
#is_shop .item .item_view > h2 > span:before {
  content: "ITEM.";
  display: inline-block;
  font-size: 0.75rem;
}
#is_shop .item .item_view > ul {
  margin-bottom: 0.625rem;
}
#is_shop .item .struct .sku {
  margin-bottom: 2.5rem;
}
#is_shop .item .struct .sku .price {
  font-size: 1.25rem;
}
#is_shop .item .item_option > form > dl {
  margin-bottom: 1.25rem;
}
#is_shop .item .item_option > form > dl > dt {
  margin-bottom: 0.3125rem;
  font-size: 1rem;
}
#is_shop .item .addcart .count {
  margin-bottom: 1.25rem;
}
#is_shop .item .addcart .count > dt {
  margin-bottom: 0.3125rem;
}
#is_shop .item .addcart > button {
  margin-bottom: 1.25rem;
}
#is_shop .item .addcart > a {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  text-align: right;
}
#is_shop .item .detail {
  padding: 1rem;
  background-color: white;
  border: 1px solid #a4a4a4;
}
#is_shop .attr {
  margin-bottom: 0.625rem;
}
#is_shop .attr > dl {
  margin-bottom: 0.625rem;
}
#is_shop .attr > dl:last-child {
  margin-bottom: 0;
}
#is_shop .attr > dl > dt, #is_shop .attr > dl > dd {
  padding: 1rem;
}
#is_shop .attr > dl > dt {
  flex: 0 0 20%;
  background-color: rgb(233, 233, 233);
}
#is_shop .attr > dl > dd {
  flex: 0 0 80%;
  background-color: white;
}
#is_shop .detail2 {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: white;
  border: 1px solid #a4a4a4;
}
#is_shop .bundle_set .flip {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #a4a4a4;
}
#is_shop .bundle_set .flip > ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -2.5rem;
}
#is_shop .bundle_set .flip > ul > li {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 3);
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
}
#is_shop .bundle_set .flip > ul > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  #is_shop .bundle_set .flip > ul > li {
    width: calc((100% - 2.5rem) / 2);
  }
  #is_shop .bundle_set .flip > ul > li:nth-child(3n) {
    margin-right: 2.5rem;
  }
  #is_shop .bundle_set .flip > ul > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640.98px) {
  #is_shop .bundle_set .flip > ul > li {
    width: 100%;
  }
}
#is_shop .bundle_set .flip > ul > li:after {
  content: none;
}
#is_shop .bar {
  margin-bottom: 3.75rem;
}
#is_shop .bar > p {
  margin-bottom: 1.25rem;
  text-align: center;
}
#is_shop .bar > p:before {
  content: "上記商品を";
  display: inline-block;
}
#is_shop .bar > p > span {
  font-size: 1.375rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  color: #f83f3f;
}
#is_shop .bar > p > label {
  font-size: 0.75rem;
}
#is_shop .relay .flip {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #a4a4a4;
  overflow: hidden;
}
#is_shop .relay .flip > ul {
  display: flex;
  width: 100% !important;
}
#is_shop .relay .flip > ul > li {
  flex: 1 1 0;
  margin-right: 2.5rem;
}
#is_shop .relay .flip > ul > li:last-child {
  margin-right: 0;
}
#is_shop .form_wrap {
  margin-top: 1.25rem;
  margin-bottom: 3.75rem;
}
#is_shop .form_wrap > dl {
  border: 1px solid #a4a4a4;
  border-bottom: none;
}
#is_shop .form_wrap > dl:last-child {
  border-bottom: 1px solid #a4a4a4;
}
@media (max-width: 640.98px) {
  #is_shop .form_wrap > dl {
    display: block;
  }
}
#is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
  padding: 1rem;
  border-bottom: none;
  border-right: none;
}
@media (max-width: 640.98px) {
  #is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
    width: 100%;
  }
}
#is_shop .form_wrap > dl > dt {
  background-color: rgb(233, 233, 233);
}
#is_shop .form_wrap > dl > dd {
  background-color: white;
}
#is_shop #sumcart > ul {
  margin-bottom: 3.75rem;
}
#is_shop #sumcart > ul > li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #a4a4a4;
}
#is_shop #sumcart > ul > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart > ul > li {
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}
#is_shop #sumcart .photo {
  flex: 0 0 10%;
  margin-right: 1.25rem;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .photo {
    flex: 1 0 0;
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop #sumcart .photo .photo {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .photo .photo {
    height: 100px;
  }
}
#is_shop #sumcart .item {
  flex: 0 0 60%;
  margin-right: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .item {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop #sumcart .item .name {
  display: inline-block;
  margin-bottom: 0.3125rem;
}
#is_shop #sumcart .item .number {
  margin-bottom: 0.3125rem;
}
#is_shop #sumcart .item .number:before {
  content: "ITEM.";
  display: inline-block;
}
#is_shop #sumcart .count {
  flex: 1 0 0;
  align-items: center;
}
#is_shop #sumcart .count > * {
  flex: 1 0 0;
}
#is_shop #sumcart .count > input[type=text] {
  display: inline-block;
  max-width: 80px;
  margin-right: 0.625rem;
  padding: 1rem;
  border: 1px solid #a4a4a4;
  background-color: rgb(233, 233, 233);
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .count > input[type=text] {
    max-width: 100%;
  }
}
#is_shop #sumcart .update,
#is_shop #sumcart .remove {
  font-size: 1rem;
  font-family: Noto Sans JP, sans-serif;
  text-align: center;
  text-decoration: underline;
}
#is_shop #sumcart .update {
  margin-right: 0.625rem;
}
#is_shop #sumcart .remove {
  color: #f83f3f;
}
#is_shop #sumcart .sum {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #a4a4a4;
}
#is_shop #sumcart .sum > div:not(.button) {
  margin-bottom: 1.25rem;
}
#is_shop #sumcart .sum > div > div:nth-child(2) {
  margin-left: auto;
}
#is_shop #sumcart .sum .sum_count:before {
  content: "購入点数:";
}
#is_shop #sumcart .sum .sum_price {
  align-items: center;
  justify-content: flex-end;
}
#is_shop #sumcart .sum .sum_price > dt {
  flex: 0 0 auto;
  margin-right: 0.625rem;
  font-size: 1rem;
}
#is_shop #sumcart .sum .sum_price > dd {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #f83f3f;
}
#is_shop #sumcart .sum .limit {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  text-align: right;
}
#is_shop #sumcart .sum > p:not(.limit) {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  text-align: right;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button {
    align-items: center;
  }
}
#is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back {
  max-width: 300px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button .purchase {
    margin-bottom: 1.25rem;
  }
}
#is_shop #sumcart .sum .button .back {
  margin-right: 3.75rem;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button .back {
    margin-right: 0;
  }
}
#is_shop .postage {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: rgb(233, 233, 233);
  border: 1px solid #a4a4a4;
}
#is_shop .form_wrap > dl:last-of-type {
  border-bottom: 1px solid #a4a4a4;
}
#is_shop .form_wrap > dl > dt {
  flex: 0 0 20%;
}
#is_shop .form_wrap > dl > dd {
  flex: 1 0 0;
}
#is_shop .form_wrap .next {
  margin-top: 3.75rem;
}
#is_shop .form_wrap .confirm {
  margin-top: 5rem;
}
#is_shop .shipment p {
  padding: 1rem;
  background-color: rgb(233, 233, 233);
  border: 1px solid #a4a4a4;
}
#is_shop .purchase .addrs > ul {
  margin-bottom: 3.75rem;
}
#is_shop .purchase .addrs > ul > li {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: rgb(233, 233, 233);
  border: 1px solid #a4a4a4;
}
#is_shop .purchase .addrs > ul > li:last-child {
  margin-bottom: 0;
}
#is_shop .purchase .addrs > ul > li > dl:first-child > dd {
  margin-bottom: 0.625rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
#is_shop .purchase .addrs .link {
  margin-top: 3.75rem;
}
#is_shop .purchase .addrs .deliver {
  text-decoration: underline;
}
#is_shop .purchase .addrs .edit {
  margin-right: 2.5rem;
}
#is_shop .purchase .addrs .remove {
  color: #f83f3f;
}
#is_shop .purchase .next {
  margin-bottom: 1.25rem;
}
#is_shop .purchase .add_deliver {
  display: block;
  width: 100%;
  margin-bottom: 3.75rem;
  text-align: center;
  text-decoration: underline;
}
#is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment {
  margin-top: 2.5rem;
}
#is_shop .purchase.confirm .sub_total {
  border-bottom: 1px solid #a4a4a4;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li {
  margin-bottom: 0.625rem;
  padding: 1rem;
  background-color: rgb(233, 233, 233);
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item > dd > ul > li {
    flex-direction: column;
  }
}
#is_shop .purchase.confirm .deliver_item .photo {
  flex: 0 0 20%;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .photo {
    width: 100%;
    flex: 1;
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop .purchase.confirm .deliver_item .photo .photo {
  flex: none;
  width: 100%;
  margin-right: 0;
}
#is_shop .purchase.confirm .deliver_item .item {
  flex: 0 0 auto;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .item {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop .purchase.confirm .deliver_item .item .number {
  font-size: 0.75rem;
}
#is_shop .purchase.confirm .deliver_item .item .number::before {
  content: "ITEM.";
}
#is_shop .purchase.confirm .deliver_item .price,
#is_shop .purchase.confirm .deliver_item .count,
#is_shop .purchase.confirm .deliver_item .subtotal {
  width: 100%;
  text-align: right;
}
#is_shop .purchase.confirm .deliver_item .price {
  margin-left: auto;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price {
    margin-left: 0;
    margin-right: 0;
  }
}
#is_shop .purchase.confirm .deliver_item .count {
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .count {
    margin-right: 0;
  }
}
#is_shop .purchase.confirm .deliver_item .count > p {
  font-size: 0.75rem;
}
#is_shop .purchase.confirm .total > dd {
  justify-content: flex-end;
}
#is_shop .purchase.confirm .total > dd > div:first-child {
  margin-right: 0.625rem;
}
#is_shop .purchase.confirm .total.amount > dd {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
}
#is_shop .purchase.confirm .total.amount > dd > div > p {
  color: #f83f3f;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
#is_shop .purchase.confirm .sub_total .item {
  margin-bottom: 0;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div:nth-child(4n) {
  margin-left: auto;
  margin-right: 0.625rem;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div:nth-child(n+3) {
  flex: 0 0 auto;
}
#is_shop .purchase.accept .accept {
  margin-top: 6.25rem;
  margin-bottom: 3.75rem;
}

.site-map .box {
  margin-bottom: 15px;
}
.site-map .box:last-child {
  margin-bottom: 0;
}
.site-map .box > div {
  padding-left: 10px;
  border-left: 5px solid #CCCCCC;
}
.site-map .box > div > a {
  font-size: 0.9375rem;
  text-decoration: underline;
}/*# sourceMappingURL=common_style.css.map */