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

body {
  font-size: 1rem;
}

body *:not(table *, i) {
  /* 
      font-weightは<b>タグが機能しなくなるので指定しない。
      line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
      font-weightも指定しない。
  */
  font-family: Noto Sans JP, sans-serif;
  color: #00020e;
  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 {
  width: 100%;
}

#main #col_main {
  float: none;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 834.98px) {
  #main #col_main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

img.imgL {
  max-width: 100%;
  margin-right: 0;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

#contents_wrap {
  overflow-x: hidden;
}

.inner-full {
  margin: 0 calc(50% - 50vw);
}

.row-cols {
  --gutter-x: 0.01px;
  --gutter-y: 0.01px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(var(--gutter-y) * -1);
}
.row-cols .box {
  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 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 641px) {
  .row-cols-sp-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-sp-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-sp-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-sp-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-sp-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-sp-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-sp-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-sp-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-sp-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-sp-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-sp-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-sp-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-sp-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-sp-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-sp-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-sp-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-sp-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-sp-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-sp-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-sp-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-sp-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-sp-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-sp-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-sp-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-sp-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-sp-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .row-cols-tab-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-tab-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-tab-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-tab-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-tab-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-tab-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-tab-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-tab-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-tab-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-tab-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-tab-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-tab-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-tab-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-tab-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-tab-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-tab-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-tab-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-tab-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-tab-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-tab-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-tab-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-tab-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-tab-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-tab-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-tab-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-tab-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1001px) {
  .row-cols-bp1000-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1000-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1000-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1000-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1000-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1000-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1000-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1000-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1000-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1000-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1000-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1000-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1000-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1000-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1000-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1000-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1000-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1000-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1000-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1000-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1000-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1000-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1000-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1000-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1000-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1000-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .row-cols-bp1200-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1200-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1200-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1200-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1200-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1200-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1200-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1200-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1200-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1200-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1200-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1200-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1200-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1200-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1200-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1200-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1200-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1200-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1200-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1200-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1200-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1200-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1200-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1200-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1200-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1200-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1401px) {
  .row-cols-bp1400-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1400-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1400-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1400-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1400-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1400-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1400-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1400-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1400-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1400-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1400-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1400-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1400-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1400-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1400-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1400-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1400-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1400-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1400-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1400-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1400-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1400-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1400-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1400-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1400-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1400-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1601px) {
  .row-cols-bp1600-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1600-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1600-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1600-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1600-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1600-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1600-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1600-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1600-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1600-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1600-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1600-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1600-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1600-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1600-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1600-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1600-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1600-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1600-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1600-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1600-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1600-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1600-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1600-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1600-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1600-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1921px) {
  .row-cols-bp1920-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-bp1920-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-bp1920-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-bp1920-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-bp1920-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-bp1920-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-bp1920-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-bp1920-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-bp1920-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-bp1920-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-bp1920-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-bp1920-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-bp1920-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-bp1920-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-bp1920-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-bp1920-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-bp1920-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-bp1920-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-bp1920-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-bp1920-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-bp1920-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-bp1920-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-bp1920-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-bp1920-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-bp1920-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-bp1920-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .row-cols-drawer-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-drawer-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-drawer-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-drawer-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-drawer-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-drawer-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-drawer-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-drawer-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-drawer-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-drawer-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-drawer-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-drawer-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-drawer-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-drawer-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-drawer-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-drawer-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-drawer-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-drawer-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-drawer-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-drawer-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-drawer-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-drawer-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-drawer-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-drawer-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-drawer-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-drawer-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 641px) {
  .row-cols-flex-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-flex-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-flex-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-flex-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-flex-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-flex-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-flex-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-flex-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-flex-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-flex-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-flex-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-flex-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-flex-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-flex-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-flex-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-flex-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-flex-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-flex-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-flex-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-flex-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-flex-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-flex-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-flex-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-flex-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-flex-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-flex-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .row-cols-confTab-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .row-cols-confTab-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .row-cols-confTab-1 .box:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .row-cols-confTab-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .row-cols-confTab-2 .box:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .row-cols-confTab-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .row-cols-confTab-3 .box:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .row-cols-confTab-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .row-cols-confTab-4 .box:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .row-cols-confTab-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .row-cols-confTab-5 .box:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .row-cols-confTab-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .row-cols-confTab-6 .box:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-7 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .row-cols-confTab-7 .box:nth-child(7n) {
    margin-right: 0;
  }
  .row-cols-confTab-7 .box:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-8 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .row-cols-confTab-8 .box:nth-child(8n) {
    margin-right: 0;
  }
  .row-cols-confTab-8 .box:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-9 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .row-cols-confTab-9 .box:nth-child(9n) {
    margin-right: 0;
  }
  .row-cols-confTab-9 .box:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-10 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .row-cols-confTab-10 .box:nth-child(10n) {
    margin-right: 0;
  }
  .row-cols-confTab-10 .box:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-11 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .row-cols-confTab-11 .box:nth-child(11n) {
    margin-right: 0;
  }
  .row-cols-confTab-11 .box:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .row-cols-confTab-12 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .row-cols-confTab-12 .box:nth-child(12n) {
    margin-right: 0;
  }
  .row-cols-confTab-12 .box:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
.blog-cols {
  --gutter-x: 0.01px;
  --gutter-y: 0.01px;
}
.blog-cols .blog_list {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  margin-bottom: calc(var(--gutter-y) * -1);
}
.blog-cols .blog_list__list {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--gutter-x);
  margin-bottom: var(--gutter-y);
}

@media (min-width: 0px) {
  .blog-cols-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 641px) {
  .blog-cols-sp-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-sp-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-sp-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-sp-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-sp-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-sp-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-sp-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-sp-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-sp-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-sp-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-sp-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-sp-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-sp-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-sp-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-sp-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-sp-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-sp-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-sp-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-sp-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-sp-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-sp-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-sp-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-sp-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-sp-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-sp-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-sp-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .blog-cols-tab-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-tab-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-tab-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-tab-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-tab-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-tab-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-tab-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-tab-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-tab-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-tab-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-tab-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-tab-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-tab-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-tab-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-tab-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-tab-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-tab-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-tab-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-tab-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-tab-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-tab-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-tab-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-tab-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-tab-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-tab-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-tab-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1001px) {
  .blog-cols-bp1000-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-bp1000-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-bp1000-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-bp1000-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-bp1000-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-bp1000-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-bp1000-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-bp1000-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-bp1000-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-bp1000-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-bp1000-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-bp1000-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1000-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-bp1000-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-bp1000-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .blog-cols-bp1200-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-bp1200-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-bp1200-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-bp1200-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-bp1200-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-bp1200-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-bp1200-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-bp1200-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-bp1200-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-bp1200-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-bp1200-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-bp1200-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1200-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-bp1200-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-bp1200-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1401px) {
  .blog-cols-bp1400-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-bp1400-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-bp1400-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-bp1400-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-bp1400-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-bp1400-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-bp1400-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-bp1400-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-bp1400-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-bp1400-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-bp1400-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-bp1400-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1400-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-bp1400-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-bp1400-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1601px) {
  .blog-cols-bp1600-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-bp1600-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-bp1600-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-bp1600-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-bp1600-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-bp1600-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-bp1600-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-bp1600-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-bp1600-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-bp1600-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-bp1600-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-bp1600-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1600-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-bp1600-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-bp1600-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1921px) {
  .blog-cols-bp1920-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-bp1920-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-bp1920-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-bp1920-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-bp1920-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-bp1920-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-bp1920-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-bp1920-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-bp1920-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-bp1920-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-bp1920-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-bp1920-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-bp1920-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-bp1920-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-bp1920-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 1201px) {
  .blog-cols-drawer-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-drawer-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-drawer-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-drawer-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-drawer-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-drawer-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-drawer-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-drawer-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-drawer-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-drawer-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-drawer-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-drawer-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-drawer-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-drawer-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-drawer-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-drawer-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-drawer-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-drawer-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-drawer-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-drawer-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-drawer-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-drawer-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-drawer-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-drawer-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-drawer-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-drawer-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 641px) {
  .blog-cols-flex-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-flex-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-flex-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-flex-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-flex-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-flex-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-flex-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-flex-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-flex-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-flex-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-flex-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-flex-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-flex-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-flex-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-flex-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-flex-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-flex-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-flex-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-flex-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-flex-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-flex-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-flex-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-flex-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-flex-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-flex-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-flex-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
@media (min-width: 835px) {
  .blog-cols-confTab-1 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 0) / 1);
  }
  .blog-cols-confTab-1 .blog_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .blog-cols-confTab-1 .blog_list__list:not(:nth-child(1n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-2 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 1) / 2);
  }
  .blog-cols-confTab-2 .blog_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .blog-cols-confTab-2 .blog_list__list:not(:nth-child(2n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-3 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 2) / 3);
  }
  .blog-cols-confTab-3 .blog_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .blog-cols-confTab-3 .blog_list__list:not(:nth-child(3n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-4 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 3) / 4);
  }
  .blog-cols-confTab-4 .blog_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .blog-cols-confTab-4 .blog_list__list:not(:nth-child(4n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-5 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 4) / 5);
  }
  .blog-cols-confTab-5 .blog_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .blog-cols-confTab-5 .blog_list__list:not(:nth-child(5n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-6 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 5) / 6);
  }
  .blog-cols-confTab-6 .blog_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .blog-cols-confTab-6 .blog_list__list:not(:nth-child(6n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-7 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 6) / 7);
  }
  .blog-cols-confTab-7 .blog_list__list:nth-child(7n) {
    margin-right: 0;
  }
  .blog-cols-confTab-7 .blog_list__list:not(:nth-child(7n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-8 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 7) / 8);
  }
  .blog-cols-confTab-8 .blog_list__list:nth-child(8n) {
    margin-right: 0;
  }
  .blog-cols-confTab-8 .blog_list__list:not(:nth-child(8n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-9 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 8) / 9);
  }
  .blog-cols-confTab-9 .blog_list__list:nth-child(9n) {
    margin-right: 0;
  }
  .blog-cols-confTab-9 .blog_list__list:not(:nth-child(9n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-10 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 9) / 10);
  }
  .blog-cols-confTab-10 .blog_list__list:nth-child(10n) {
    margin-right: 0;
  }
  .blog-cols-confTab-10 .blog_list__list:not(:nth-child(10n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-11 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 10) / 11);
  }
  .blog-cols-confTab-11 .blog_list__list:nth-child(11n) {
    margin-right: 0;
  }
  .blog-cols-confTab-11 .blog_list__list:not(:nth-child(11n)) {
    margin-right: var(--gutter-x);
  }
  .blog-cols-confTab-12 .blog_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--gutter-x) * 11) / 12);
  }
  .blog-cols-confTab-12 .blog_list__list:nth-child(12n) {
    margin-right: 0;
  }
  .blog-cols-confTab-12 .blog_list__list:not(:nth-child(12n)) {
    margin-right: var(--gutter-x);
  }
}
.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;
}

.m-blog--date_none .blog_date {
  display: none;
}
.m-blog--detail_none .detail {
  display: none;
}
.m-blog--photo_none .blog_photo {
  display: none;
}
.m-blog--style_01 {
  --gutter-x: 20px;
  --gutter-y: 20px;
}
.m-blog--style_01 .blog_list .blog_photo {
  margin-bottom: 10px;
}
.m-blog--style_01 .blog_list .blog_photo img {
  border-radius: 10px;
}
.m-blog--style_01 .blog_list .blog_text > h3 {
  margin-bottom: 10px;
}
.m-blog--style_01 .blog_list .blog_text > h3 > a > span {
  font-size: 1.3125rem;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  text-decoration: underline;
}
.m-blog--style_01 .blog_list .blog_date {
  margin-bottom: 10px;
  color: #ffa58c;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
}

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

.btn, .bt_confirm,
.bt_back,
.bt_send {
  padding: 15px;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
  border-radius: 100vh;
}
.btn i, .bt_confirm i,
.bt_back i,
.bt_send i {
  margin-right: 5px;
}
.btn--style_01, .bt_confirm,
.bt_back,
.bt_send {
  border: 2px solid #f2b305;
  background-color: white;
}
.btn--style_01:visited, .bt_confirm:visited,
.bt_back:visited,
.bt_send:visited, .btn--style_01:link, .bt_confirm:link,
.bt_back:link,
.bt_send:link {
  color: #f2b305;
}
.btn--style_02 {
  border: 2px solid transparent;
  background-color: #f2b305;
}
.btn--style_02:visited, .btn--style_02:link {
  color: white;
}
.btn--style_03 {
  border: 2px solid #f2b305;
  background-color: white;
  position: relative;
}
.btn--style_03:visited, .btn--style_03:link {
  color: #f2b305;
}
.btn--style_03:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 7px;
  border-color: transparent transparent transparent #f2b305;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.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--style_01 dl {
  display: block !important;
  margin-bottom: 1.25rem;
}
.dl--style_01 dl > dt {
  color: #ffa58c;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}

.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;
  }
}

@media (max-width: 640.98px) {
  .form_wrap.dl-company dl {
    margin-bottom: 10px;
  }
}
.form_wrap.dl-company dl:first-child > dt {
  border-top: 1px solid #ffa58c;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:first-child > dt {
    border-top: 0;
  }
}
.form_wrap.dl-company dl:first-child > dd {
  border-top: 1px solid #eeeeee;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:first-child > dd {
    border-top: 0;
  }
}
.form_wrap.dl-company dl:last-child > dt {
  border-bottom: 1px solid #ffa58c;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:last-child > dt {
    border-bottom: 0;
  }
}
.form_wrap.dl-company dl:last-child > dd {
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:last-child > dd {
    border-bottom: 0;
  }
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl:last-child > dt {
    border-bottom: 1px solid #ffa58c;
  }
}
.form_wrap.dl-company dl > dt,
.form_wrap.dl-company dl > dd {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 5px;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl > dt,
.form_wrap.dl-company dl > dd {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.form_wrap.dl-company dl > dt {
  border-bottom: 1px solid #ffa58c;
  font-size: 1rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl > dt {
    border-top: none;
  }
}
.form_wrap.dl-company dl > dd {
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 640.98px) {
  .form_wrap.dl-company dl > dd {
    border-bottom: none;
  }
}

.dpdn .dpdn__lists {
  list-style: none;
}
.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 {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
}
.dpdn__lists {
  width: 200px;
  padding-top: 20px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  left: -150%;
  z-index: 1;
}
@media (max-width: 1200.98px) {
  .dpdn__lists {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    position: static;
    transition: all 0.3s ease;
  }
}
.dpdn__list {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 1200.98px) {
  .dpdn__list {
    margin-left: 20px;
    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;
}
.dpdn__link:after {
  content: "\f30b";
  font-weight: 900;
  font-family: "Line Awesome Free";
  line-height: 1;
}

.eyecatch {
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.eyecatch > article > h1, .eyecatch > article > p {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .eyecatch > article > h1, .eyecatch > article > p {
    font-size: 2.25rem;
  }
}

.eyecatch {
  background-position: center right;
}
.eyecatch > article > h1, .eyecatch > article > p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: white;
}
.eyecatch--on-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.eyecatch--on-image > article {
  width: 100%;
  padding: 0 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eyecatch--subtext > article > div {
  color: white;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}

.flex--style_01 .box article > h3 {
  display: none;
}
.flex--style_01 .box .image-wrapper {
  float: left;
  width: 30%;
  margin-right: 20px;
  margin-bottom: 5px;
}
@media (max-width: 640.98px) {
  .flex--style_01 .box .image-wrapper {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.flex--style_01 .box .image-wrapper img {
  border-radius: 10px;
}
.flex--style_02 {
  --gutter-x: 20px;
  --gutter-y: 20px;
}
.flex--style_02 .image-wrapper {
  margin-bottom: 10px;
}
.flex--style_02 .image-wrapper img {
  border-radius: 10px;
}
.flex--style_02 .box article > h3 {
  display: none;
}
.flex--style_02 .box article > div > h3 {
  margin-bottom: 10px;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
}
.flex--style_02 .box article > div > b {
  display: block;
  margin-top: 10px;
  text-align: right;
}
.flex--style_03 {
  --gutter-x: 20px;
  --gutter-y: 20px;
}

.flexbox-faq {
  border: 2px solid #ffa58c;
  border-radius: 20px;
  overflow: hidden;
}
.flexbox-faq .box {
  display: flex;
  align-items: center;
  padding: 30px 20px;
}
.flexbox-faq .box > div {
  display: inline-block;
}
.flexbox-faq .box:first-child {
  width: 100%;
  background-color: #f0f8ff;
}
.flexbox-faq .box:first-child > div {
  font-size: 1.125rem;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 500;
}
.flexbox-faq .box:first-child::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  padding: 1.5rem;
  color: white;
  background-color: #ffa58c;
  border-radius: 100vh;
  font-size: 1.25rem;
  line-height: 1;
}
.flexbox-faq .box:last-child {
  width: 100%;
}

.form.form_wrap dl:last-of-type > dt, .form.form_wrap dl:last-of-type > dd {
  border: none;
}
.form.form_wrap dt,
.form.form_wrap dd {
  border: none;
  background-color: transparent;
}
.form.form_wrap dt {
  flex-direction: row;
  justify-content: flex-start;
  background-color: transparent;
}
.form.form_wrap dd input {
  padding: 10px 5px !important;
}

.form.form_wrap dl {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #eeeeee;
}
.form.form_wrap dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#TRANS_ANNOT {
  color: #fb0d0d;
}

h2.mail.title {
  display: none;
}

section div.form_wrap.error {
  background-color: #fb0d0d;
}
section div.form_wrap.error p {
  color: white;
}

.submit {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 640.98px) {
  .submit {
    flex-direction: column;
    align-items: center;
  }
}
.submit button {
  width: 100%;
  flex: 1 0 0;
  margin-top: 0;
}
.submit button:first-child {
  margin-right: 20px;
}
@media (max-width: 640.98px) {
  .submit button:first-child {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.bt_confirm,
.bt_back,
.bt_send {
  margin-top: 30px;
  margin-bottom: 60px;
  background: none;
  text-indent: 0;
}

.bt_confirm,
.bt_back,
.bt_send {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
}

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

.hamburger {
  width: 50px;
  height: 25px;
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
}
.hamburger__line {
  width: 100%;
  height: 0.8px;
  border-radius: 1px;
  background-color: white;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 2px rgb(226, 226, 226);
}
.hamburger .line1 {
  top: 0;
}
.hamburger .line2 {
  top: 12px;
}
.hamburger .line3 {
  bottom: 0;
}
.is_open .hamburger__line {
  background-color: #ffa58c;
}
.is_open .hamburger .line1 {
  transform: translateY(12px) rotate(-45deg);
}
.is_open .hamburger .line2 {
  opacity: 0;
  visibility: hidden;
}
.is_open .hamburger .line3 {
  transform: translateY(-12px) rotate(45deg);
}

h1 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: calc(1.25625rem + 0.075vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.3125rem;
  }
}

.h2, .blog #contents .h2 {
  padding-bottom: 8px;
  border-bottom: 2px solid #ffa58c;
}
.h2 article, .blog #contents .h2 article {
  display: flex;
  align-items: center;
}
.h2 article > img, .blog #contents .h2 article > img {
  margin-right: 15px;
}
.h2 article > h2, .blog #contents .h2 article > h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}

.h3 {
  padding: 16px;
  border: 2px solid #f2b305;
  border-radius: 10px;
}
.h3 article {
  display: flex;
  align-items: center;
}
.h3 article > img {
  margin-right: 15px;
}
.h3 article > h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}

.mv {
  margin-top: 121px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200.98px) {
  .mv {
    margin-top: 68px;
  }
}
.mv .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.mv .title__span {
  display: inline-block;
  width: max-content;
  font-size: calc(1.425rem + 2.1vw);
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 400;
  color: white;
}
@media (min-width: 1200px) {
  .mv .title__span {
    font-size: 3rem;
  }
}
@media (max-width: 640.98px) {
  .mv .title__span {
    font-size: 1.375rem;
  }
}
.mv .slider__list:not(:first-child) {
  display: none;
}
.slick-initialized .slider__list:not(:first-child) {
  display: block;
}

.mv .slider__list img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 640.98px) {
  .mv .slider__list img {
    max-height: 600px;
  }
}
.mv .slider__picture {
  display: block;
  position: relative;
  z-index: 0;
}
.mv .illust {
  width: 12.2916666667%;
  position: absolute;
  left: 68.3333333333%;
  bottom: 0;
}
@media (max-width: 640.98px) {
  .mv .illust {
    width: 130px;
    left: auto;
    right: 40px;
  }
}

@media (max-width: 1200.98px) {
  .nav {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transition-property: opacity, background-color, visibility, transform;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    z-index: 1000;
  }
}
.nav .nav__lists {
  list-style: none;
}
.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__lists {
  display: flex;
}
.nav__list {
  margin-right: 40px;
  text-align: center;
  color: white;
}
.nav__list:last-child {
  margin-right: 0;
}
.nav__link {
  display: block;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 1200.98px) {
  .nav {
    width: 100%;
    margin-right: 0;
    right: 0;
    transform: translate(0, 0);
  }
  .nav__lists {
    display: block;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .nav__list {
    margin-right: 0;
    margin-bottom: 40px;
    color: #ffa58c;
    text-align: center;
  }
  .nav__list:last-child {
    margin-bottom: 0;
  }
  .nav__link {
    font-size: 1.125rem;
  }
}
.is_open .nav {
  background-color: white;
  transform: translate(0, 0);
}
.breadcrumb {
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
}
.breadcrumb li {
  margin-right: 0.625rem;
}
.breadcrumb li:last-child {
  margin-right: 0;
}
.breadcrumb li, .breadcrumb a {
  font-size: 0.875rem;
  text-decoration: none;
}
.breadcrumb .pankuzu {
  display: flex;
}

.policy h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 500;
}
.policy p {
  margin-bottom: 48px;
}

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

.sns--image-only .sns_text {
  display: none;
}
.sns--image-only img {
  object-fit: cover !important;
}
.sns--style_01 .sns_photo img {
  object-fit: cover !important;
}
.sns--style_01 .slick-slide {
  margin: 0 0.625rem;
}
.sns--1_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--1_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--1_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.sns--1_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--1_1 .sns_photo > a img {
  object-fit: contain;
}
.sns--4_3 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--4_3 .sns_photo > a:has(a) {
  display: block;
}
.sns--4_3 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.sns--4_3 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--4_3 .sns_photo > a img {
  object-fit: contain;
}
.sns--3_2 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--3_2 .sns_photo > a:has(a) {
  display: block;
}
.sns--3_2 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.sns--3_2 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--3_2 .sns_photo > a img {
  object-fit: contain;
}
.sns--16_9 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--16_9 .sns_photo > a:has(a) {
  display: block;
}
.sns--16_9 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.sns--16_9 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--16_9 .sns_photo > a img {
  object-fit: contain;
}
.sns--2_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--2_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--2_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.sns--2_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--2_1 .sns_photo > a img {
  object-fit: contain;
}

.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;
}

.m-shop .items .photo {
  height: 300px;
  margin-bottom: 0.625rem;
}
.m-shop .items .name {
  margin-bottom: 0.625rem;
}
.m-shop .items .summary {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.m-shop .items .price {
  width: 100%;
  margin-top: auto;
  text-align: right;
}

@media (max-width: 640.98px) {
  .tbl--style_01 tbody {
    font-size: 0.625rem;
  }
}
.tbl--style_01 tr:first-child {
  background-color: #ffa58c;
}
.tbl--style_01 tr:first-child > td > div {
  color: white;
}

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

.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  background-color: #ffa58c;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
@media (max-width: 640.98px) {
  .header__inner {
    padding: 20px;
  }
}
.header__wrapper {
  margin-left: auto;
}
@media (max-width: 640.98px) {
  .header .logo__img {
    width: 180px;
  }
}
.header .details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 19px;
}
@media (max-width: 1200.98px) {
  .header .details {
    margin-bottom: 0;
  }
}
.header .contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #ffa58c;
}
@media (max-width: 1200.98px) {
  .header .contact {
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 800;
  }
}
@media (max-width: 1200.98px) {
  .header .contact > * {
    flex: 1 0 0;
  }
}
@media (max-width: 1200.98px) {
  .header .contact.is_fadeout {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}
.header .open {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 6px 19px;
  background-color: #ffa58c;
  border: 2px solid white;
  border-radius: 6px;
}
@media (max-width: 1200.98px) {
  .header .open {
    display: none;
  }
}
.header .open * {
  color: white;
}
.header .open__title {
  margin-right: 18px;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.header .open__wrapper {
  text-align: left;
  line-height: 1;
}
.header .open__timeline1, .header .open__timeline2, .header .open__timeline3 {
  font-size: 0.75rem;
  line-height: 1;
}
.header .open__timeline1 {
  margin-bottom: 2px;
}
.header .open__timeline2, .header .open__timeline3 {
  display: inline-block;
}
.header .clone-open {
  display: none;
}
@media (max-width: 1200.98px) {
  .is_open .clone-open {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    background-color: white;
  }
  .is_open .clone-open * {
    color: #ffa58c;
  }
}

.header .tel,
.header .mail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 10px;
  background-color: white;
  border-radius: 6px;
  line-height: 1;
}
@media (max-width: 1200.98px) {
  .header .tel,
.header .mail {
    min-width: 0;
  }
}
.header .tel *,
.header .mail * {
  color: #ffa58c;
}
.header .tel i,
.header .mail i {
  margin-right: 7px;
}
@media (max-width: 640.98px) {
  .header .tel i,
.header .mail i {
    margin-right: 0;
  }
}
.header .tel__text,
.header .mail__text {
  display: inline-block;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 640.98px) {
  .header .tel__text,
.header .mail__text {
    display: none;
  }
}
.header .tel {
  margin-right: 10px;
}

.footer {
  position: relative;
  background-image: url(/images/utility/bg_01.jpg);
}
.footer:before {
  content: "";
  width: 100%;
  height: 68px;
  background-image: url(/images/utility/frame_01.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
}
.footer__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-top: 110px;
}
@media (max-width: 834.98px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .info {
  display: flex;
  align-items: center;
  background-color: white;
  margin-bottom: 60px;
  padding: 60px 100px;
  border-top: 4px solid #ffa58c;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 1000.98px) {
  .footer .info {
    padding: 60px 40px;
  }
}
@media (max-width: 834.98px) {
  .footer .info {
    display: block;
    padding: 60px 20px;
  }
}
.footer .info__wrapper {
  flex: 0 0 40%;
  margin-right: 60px;
  text-align: left;
}
@media (max-width: 834.98px) {
  .footer .info__wrapper {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.footer .info .f-logo {
  margin-bottom: 33px;
}
.footer .info .conts {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}
.footer .info .conts:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.footer .info .conts__dt {
  flex: 0 0 25%;
  margin-right: 16px;
  padding: 10px;
  color: white;
  background-color: #ffa58c;
  border-radius: 2px;
  font-size: 0.9375rem;
  text-align: center;
}
.footer .info .conts__dd {
  flex: 1 0 0;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.footer .info .m-map {
  flex: 1 0 0;
}
.footer .info .m-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}
.footer .f-nav {
  margin-bottom: 50px;
}
.footer .f-nav__lists {
  display: flex;
  justify-content: center;
}
@media (max-width: 1000.98px) {
  .footer .f-nav__lists {
    display: block;
  }
}
.footer .f-nav__list {
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid #999999;
}
@media (max-width: 1000.98px) {
  .footer .f-nav__list {
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 0;
    border-right: 0;
  }
}
.footer .f-nav__list:first-child {
  padding-left: 24px;
  border-left: 1px solid #999999;
}
@media (max-width: 1000.98px) {
  .footer .f-nav__list:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.footer .f-nav__list:last-child {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  .footer .f-nav__list:last-child {
    margin-bottom: 0;
  }
}
.footer .f-nav__link {
  color: inherit;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  line-height: 1;
}
.footer .copyright {
  padding-bottom: 30px;
  font-size: 0.8125rem;
  text-align: center;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

.about {
  position: relative;
  z-index: 0;
}
.about__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about__head-illust {
  margin-bottom: 13px;
}
.about__head-illust article > img {
  margin-bottom: 30px;
}
.about__head-illust article > h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffa58c;
  font-size: 1.125rem;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.about__head-illust article > h3:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background-color: #ffa58c;
  border-radius: 1px;
}
.about__title {
  margin-bottom: 53px;
}
.about__title article > h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: calc(1.3125rem + 0.75vw);
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .about__title article > h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 640.98px) {
  .about__title article > h2 {
    text-align: left !important;
  }
}
.about__title article > h2 > span {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: calc(1.35rem + 1.2vw);
  color: #68b93e;
}
@media (min-width: 1200px) {
  .about__title article > h2 > span {
    font-size: 2.25rem;
  }
}
.about__text {
  margin-bottom: 60px;
}
.about__text div {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
}
@media (max-width: 640.98px) {
  .about__text div {
    text-align: left !important;
  }
}
@media (max-width: 834.98px) {
  .about__btns {
    margin-bottom: 60px;
  }
}
.about__btns div {
  display: flex;
  justify-content: center;
}
@media (max-width: 834.98px) {
  .about__btns div {
    display: block;
    text-align: center !important;
  }
}
.about__btns .btn:first-child {
  margin-right: 30px;
}
@media (max-width: 834.98px) {
  .about__btns .btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 834.98px) {
  .about__images {
    align-items: center;
  }
}
.about__images .box {
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200.98px) {
  .about__images .box:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
  }
}
@media (max-width: 834.98px) {
  .about__images .box {
    width: 100%;
    flex: 1 0 0;
    text-align: center;
    position: static;
  }
  .about__images .box::before {
    content: none;
  }
}
.about__images .box:nth-child(1) {
  width: 19.0625%;
  top: 11.8362831858%;
  left: 18.2291666667%;
}
.about__images .box:nth-child(2) {
  width: 28.4895833333%;
  top: 34.0707964602%;
  right: 2.0833333333%;
}
.about__images .box:nth-child(3) {
  width: 11.5625%;
  top: 34.0707964602%;
  right: 23.125%;
  transform: translate(0, 112.6582278481%);
}
@media (max-width: 834.98px) {
  .about__images .box:nth-child(3) {
    display: none;
    transform: none;
  }
}
.about__illust-01, .about__illust-02 {
  position: absolute;
  z-index: -1;
}
@media (max-width: 834.98px) {
  .about__illust-01, .about__illust-02 {
    min-width: 100px;
    top: 52% !important;
  }
}
.about__illust-01 img, .about__illust-02 img {
  height: auto !important;
}
.about__illust-01 {
  width: 11.6145833333%;
  top: 47.8982300885%;
  left: 4.4270833333%;
}
@media (max-width: 834.98px) {
  .about__illust-01 {
    left: 20px;
  }
}
.about__illust-02 {
  width: 11.6145833333%;
  top: 34.0707964602%;
  right: 9.21875%;
  transform: translate(0, -100%);
}
@media (max-width: 834.98px) {
  .about__illust-02 {
    transform: translate(0, 0);
    right: 20px;
  }
}

.check {
  display: flex;
  align-items: center;
  margin-bottom: 66px;
  position: relative;
  z-index: 0;
}
@media (max-width: 640.98px) {
  .check {
    display: block;
  }
}
.check__img {
  margin-right: 80px;
}
@media (max-width: 834.98px) {
  .check__img {
    margin-right: 20px;
  }
}
@media (max-width: 640.98px) {
  .check__img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.check__img img {
  border-radius: 0 20px 20px 0;
}
@media (max-width: 640.98px) {
  .check__img img {
    border-radius: 0;
  }
}
.check__wrapper {
  padding-right: 40px;
}
@media (max-width: 834.98px) {
  .check__wrapper {
    padding-right: 20px;
  }
}
@media (max-width: 640.98px) {
  .check__wrapper {
    padding-left: 20px;
  }
}
.check__head-illust {
  margin-bottom: 16px;
}
.check__head-illust article {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.check__head-illust article > img {
  display: inline-block;
  margin: unset;
}
.check__head-illust article > h3 {
  margin-right: 5px;
  color: #ffa58c;
  font-size: 1.125rem;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
}
.check__head-illust article > h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 5px;
  background-color: #ffa58c;
  border-radius: 1px;
}
.check__title {
  margin-bottom: 46px;
}
.check__title article > h2 {
  font-size: calc(1.3rem + 0.6vw);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .check__title article > h2 {
    font-size: 1.75rem;
  }
}
.check__text {
  margin-bottom: 44px;
}
.check__text div {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 400;
  line-height: 1.8;
}
.check__illust {
  position: absolute;
  bottom: 0;
  right: 3.5416666667%;
  z-index: -1;
}
@media (max-width: 1600.98px) {
  .check__illust {
    opacity: 0.4;
  }
}

.point {
  position: relative;
  z-index: 0;
}
.point__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .point__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.point__head-illust article > img {
  margin-bottom: 12px;
}
.point__head-illust article > h3 {
  margin-bottom: 28px;
  color: #ffa58c;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center !important;
}
.point__head-illust article > h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 5px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1px;
  background-color: #ffa58c;
}
.point__title {
  margin-bottom: 102px;
}
.point__title article > h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .point__title article > h2 {
    font-size: 1.75rem;
  }
}
.point__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.point__cont {
  flex: 0 0 calc((100% - 40px) / 3);
  justify-content: center;
  margin-right: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 0 0 10px 10px;
  position: relative;
}
@media (max-width: 1000.98px) {
  .point__cont {
    flex: 0 0 calc((100% - 20px) / 2);
    margin-bottom: 90px;
  }
}
@media (max-width: 834.98px) {
  .point__cont {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
@media (max-width: 1000.98px) {
  .point__cont.point-02 {
    margin-right: 0;
  }
}
.point__cont.point-03 {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  .point__cont.point-03 {
    margin-bottom: 0;
  }
}
.point__cont .box:nth-child(1) {
  width: 140px;
  height: 70px;
  padding-top: 10px;
  background-color: white;
  border-radius: 70px 70px 0 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70px);
}
.point__cont .box:nth-child(1) div > span {
  display: block;
  font-size: 1.25rem;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.point__cont .box:nth-child(1) div > span:first-child {
  margin-bottom: 7px;
}
.point__cont .box:nth-child(2) .image-wrapper {
  margin-bottom: 27px;
}
.point__cont .box:nth-child(2) .image-wrapper img {
  width: 100% !important;
  border-radius: 10px;
}
.point__cont .box:nth-child(2) article {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.point__cont .box:nth-child(2) article > h3 {
  display: none;
}
.point__cont .box:nth-child(2) article > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 0.9375rem;
}
.point__cont .box:nth-child(2) article > div > h3 {
  margin-bottom: 11px;
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
}
.point__cont .box:nth-child(2) article > div > h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 1px;
}
.point__cont .box:nth-child(2) .btn {
  margin-top: 18px;
  padding: 10px;
}
.point__cont.point-01 {
  border-top: 4px solid #ffa58c;
}
.point__cont.point-01 .box:nth-child(1) {
  border-top: 4px solid #ffa58c;
  border-right: 4px solid #ffa58c;
  border-left: 4px solid #ffa58c;
}
.point__cont.point-01 .box:nth-child(1) div > span {
  color: #ffa58c;
}
.point__cont.point-01 .box:nth-child(2) > article > div > h3:after {
  background-color: #ffa58c;
}
.point__cont.point-01 .box:nth-child(2) > article > div > .btn {
  color: #ffa58c;
  border: 2px solid #ffa58c;
}
.point__cont.point-01 .box:nth-child(2) > article > div > .btn:after {
  border-color: transparent transparent transparent #ffa58c;
}
.point__cont.point-02 {
  border-top: 4px solid #68b93e;
}
.point__cont.point-02 .box:nth-child(1) {
  border-top: 4px solid #68b93e;
  border-right: 4px solid #68b93e;
  border-left: 4px solid #68b93e;
}
.point__cont.point-02 .box:nth-child(1) div > span {
  color: #68b93e;
}
.point__cont.point-02 .box:nth-child(2) > article > div > h3:after {
  background-color: #68b93e;
}
.point__cont.point-02 .box:nth-child(2) > article > div > .btn {
  color: #68b93e;
  border: 2px solid #68b93e;
}
.point__cont.point-02 .box:nth-child(2) > article > div > .btn:after {
  border-color: transparent transparent transparent #68b93e;
}
.point__cont.point-03 {
  border-top: 4px solid #f2b305;
}
.point__cont.point-03 .box:nth-child(1) {
  border-top: 4px solid #f2b305;
  border-right: 4px solid #f2b305;
  border-left: 4px solid #f2b305;
}
.point__cont.point-03 .box:nth-child(1) div > span {
  color: #f2b305;
}
.point__cont.point-03 .box:nth-child(2) > article > div > h3:after {
  background-color: #f2b305;
}
.point__cont.point-03 .box:nth-child(2) > article > div > .btn {
  color: #f2b305;
  border: 2px solid #f2b305;
}
.point__cont.point-03 .box:nth-child(2) > article > div > .btn:after {
  border-color: transparent transparent transparent #f2b305;
}
.point__illusts .box {
  position: absolute;
  bottom: 60px;
  z-index: -1;
}
.point__illusts .box:nth-child(1) {
  left: 8.125%;
}
@media (max-width: 834.98px) {
  .point__illusts .box:nth-child(1) {
    left: 0;
  }
}
.point__illusts .box:nth-child(2) {
  right: 8.125%;
}
@media (max-width: 834.98px) {
  .point__illusts .box:nth-child(2) {
    display: none;
  }
}

.other__conts {
  justify-content: center;
}
@media (max-width: 834.98px) {
  .other__conts {
    display: block !important;
  }
}
.other__conts .box {
  flex: 1 0 0;
  max-width: 480px;
}
@media (max-width: 834.98px) {
  .other__conts .box {
    margin-right: auto;
    margin-left: auto;
  }
}
.other__conts .box:first-child {
  margin-right: 25px;
}
@media (max-width: 834.98px) {
  .other__conts .box:first-child {
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.other__conts .box > a {
  display: block;
  padding: 10px;
  background: url(/images/utility/bg_02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: 0.5s;
}
.other__conts .box > a:after {
  content: "\f105";
  font: var(--fa-font-solid);
  line-height: 1;
  color: #f2b305;
  font-size: 1.625rem;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.other__conts .box > a:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.other__conts .box article {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  background-color: #f7eaad;
}
.other__conts .box .image-wrapper {
  margin-right: 15px;
}
.other__conts .box article > h3 {
  display: none;
}
.other__conts .box article > div {
  font-size: calc(1.2875rem + 0.45vw);
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .other__conts .box article > div {
    font-size: 1.625rem;
  }
}
@media (max-width: 640.98px) {
  .other__conts .box article > div {
    font-size: 1.25rem;
  }
}

.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: #00020e;
  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: #00020e;
  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;
}
.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;
}

.blog {
  box-sizing: inherit;
  margin-top: 40px;
  margin-bottom: 100px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .blog {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog #contents {
  flex: 1 0 0;
}
.blog #contents > article > h1 {
  margin-bottom: 20px;
}
.blog #contents > article > h1 > span {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.blog #contents .h2 h2 {
  font-size: 1.3125rem;
}
.blog #contents > article > .date {
  color: #00020e;
  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.5rem;
}
.blog #calendar {
  margin-bottom: 20px;
}
.blog #calendar dl.open > dt > label,
.blog #calendar td.open {
  background-color: #daf5ff;
}
.blog #calendar dl.close > dt > label,
.blog #calendar td.close {
  background-color: #fcddff;
}
.blog #search {
  margin-bottom: 20px;
}
.blog .category {
  margin-bottom: 40px;
}
.blog .category li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.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;
}

#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: #00020e !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: #00020e !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: #00020e !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: #eeeeee;
  border: 1px solid #f0f0f0;
}

#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: #00020e;
  background-color: #f0f0f0;
}
.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: #00020e;
  background-color: white;
  border: 1px solid #00020e;
}

#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 #f0f0f0;
}
#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: #eeeeee;
}
#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: #eeeeee;
}
#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: #00020e;
}
#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;
}
#is_shop .item .photo .large img {
  object-fit: contain;
}
@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 #f0f0f0;
}
#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: #eeeeee;
}
#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 #f0f0f0;
}
#is_shop .bundle_set .flip {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
}
#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: #fb0d0d;
}
#is_shop .bar > p > label {
  font-size: 0.75rem;
}
#is_shop .relay .flip {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  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 #f0f0f0;
  border-bottom: none;
}
#is_shop .form_wrap > dl:last-child {
  border-bottom: 1px solid #f0f0f0;
}
@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: #eeeeee;
}
#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 #f0f0f0;
}
#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 #f0f0f0;
  background-color: #eeeeee;
}
@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: #fb0d0d;
}
#is_shop #sumcart .sum {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
}
#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: #fb0d0d;
}
#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: #eeeeee;
  border: 1px solid #f0f0f0;
}
#is_shop .form_wrap > dl:last-of-type {
  border-bottom: 1px solid #f0f0f0;
}
#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: #eeeeee;
  border: 1px solid #f0f0f0;
}
#is_shop .purchase .addrs > ul {
  margin-bottom: 3.75rem;
}
#is_shop .purchase .addrs > ul > li {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: #eeeeee;
  border: 1px solid #f0f0f0;
}
#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: #fb0d0d;
}
#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 #f0f0f0;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li {
  margin-bottom: 0.625rem;
  padding: 1rem;
  background-color: #eeeeee;
}
@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: #fb0d0d;
  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;
}

body {
  counter-reset: point 0;
}

.p-point {
  counter-increment: point 1;
}
.p-point article > h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  font-size: 1.3125rem;
}
.p-point article > h3:before {
  content: "POINT" counter(point);
  display: inline-block;
  margin-right: 10px;
  color: #f2b305;
  font-size: 2rem;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
}
.p-point article > div {
  padding: 10px;
  border: 2px solid #f2b305;
  border-radius: 10px;
}