@charset "UTF-8";


:root {
  --base-color: #0c0c0c;
  --orange: #ff9b53;
  --brown: #804f21;
  --beige: #ffe6cd;
  --subbeige: #fff5ec;
  --white: #ffffff;
  --myradius: 10px;
}


/* common ====================================== */


body {
  position: relative;
  color: var(--base-color);
  font-family: "M PLUS Rounded 1c","MS Pゴシック","YuGothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","Arial","メイリオ","Meiryo",sans-serif !important;
  line-height: 1.8;
  animation: fadein 1s forwards;
}
@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}
body.fs {
  overflow: hidden;
}
.wrap {
  padding: 100px 0 150px;
  margin: auto;
  position: relative;
}
h3 {
  color: #804f21;
  font-weight: bold;
  font-size: 25px;
}
h4 {
  font-size: 18px;
}
.box .title {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.box .title h3 {
  text-align: center;
}
.waves {
  position: absolute;
  width: 100%;
  height: 15vh;
  min-height: 30px;
  max-height: 40px;
  bottom: -1px;
}
.card {
  gap: 0;
  align-items: center;
}
.card2 {
  width: 50%;
  flex-basis: auto;
  max-width: none;
  padding: 1rem;
}
.comingsoon {
  color: #888888;
}
a.disabled {
  pointer-events: none;
  position: relative;
}
a.disabled:after {
  content: 'coming soon';
  position: absolute;
  background: rgba(255,255,255,.5);
  color: #0c0c0c;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
dl.table dt {
  font-weight: bold;
}
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-10px, 0);
}
.sa--rl {
  transform: translate(10px, 0);
}
.sa--up {
  transform: translate(0, 10px);
}
.sa--down {
  transform: translate(0, -10px);
}
.sa--scaleUp {
  transform: scale(.5);
}
.sa--scaleDown {
  transform: scale(1.5);
}
.sa--rotateL {
  transform: rotate(180deg);
}
.sa--rotateR {
  transform: rotate(-180deg);
}
/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax.use01 > use {
  animation-delay: -2s;
  animation-duration: 8s;
}
.parallax.use02 > use {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax.use03 > use {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax.use04 > use {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .card2 {
    width: 100%;
  }
  dl.table {
    flex-direction: column;
  }
  dl.table dt, dl.table dd {
    width: 100%;
  }
}





/* header ====================================== */


header h1 a img {
  width: 50px;
  height: 50px;
}
header h1 a img.logo {
  display: block;
}
header h1 a img.logo-w {
  display: none;
}
header h1 a img.logo.fs {
  display: none;
}
header h1 a img.logo-w.fs {
  display: block;
}
header h1 {
  position: fixed;
  left: 50px;
  top: 50px;
  transform: translate3d(-50%, -50%, 0);
  z-index: 20;
}
header > div.fs:after {
  content: "";
  background: url(../images/ashiato.png) no-repeat;
  background-position: left;
  background-size: contain;
  position: fixed;
  top: 65%;
  right: 50px;
  width: 50%;
  height: 200px;
  z-index: 100;
  filter: brightness(100);
  transform: scale(-1);
  opacity: .5;
}
header .buy-btn {
  position: fixed;
  right: 170px;
  top: 50px;
  transform: translate3d(50%, -50%, 0);
  z-index: 20;
}
header .buy-btn a {
  background: var(--orange);
  height: 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
}
header .buy-btn a i {
  margin: 0 10px 0 0;
}
header .buy-btn a.fs {
  background: var(--white);
  color: var(--orange);
}
.filter {
  display: none;
}
.burger {
  display: flex;
  flex-direction: column;
  padding: 12px;
  align-items: center;
  cursor: pointer;
}
.rect {
  background: var(--white);
  display: inline-block;
  height: 2px;
  margin-top: 5px;
  transition: transform 500ms;
  width: 20px;
}
.rect:nth-child(2) {
  transition-delay: 100ms;
}
.rect:nth-child(3) {
  transition-delay: 100ms;
}
.burger.active .rect:nth-child(1) {
  transform: rotate(-45deg) translateX(-5px) translateY(5px);
}
.burger.active .rect:nth-child(2) {
  transform: rotate(45deg);
}
.burger.active .rect:nth-child(3) {
  transform: rotate(-45deg) translateX(5px) translateY(-5px);
}
.menu, .menu-burger, .menu-bg {
  position: fixed;
  z-index: 10;
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border-radius: 100%;
  right: 25px;
  top: 25px;
}
.menu-bg {
  background: var(--orange);
  pointer-events: none;
  transition: .3s;
  right: 50px;
  top: 50px;
  transform: translate3d(50%, -50%, 0);
  transform-origin: center center;
}
.menu-bg.fs {
  transform: scale(120);
}
.menu-items {
  position: fixed;
  z-index: 20;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 3px;
  color: var(--white);
  width: 70%;
  text-align: left;
  opacity: 0;
  transition: .4s;
  margin: 50px auto 0;
  transform: translateY(-200%);
  pointer-events: none;
  left: 0;
  right: 0;
}
.menu-items div {
  transition: 1s;
  opacity: 0;
  margin-top: 0px;
}
.menu-items div a {
  color: var(--white);
  position: relative;
}
.menu-items div > a {
  display: block;
  margin: 15px 0 0;
}
.menu-items div > a:before {
  content: '';
  background: url(../images/icon.png) no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-flex;
  margin: 0 10px 0 0;
  width: 20px;
  height: 20px;
}
.menu-items div ul {
  font-size: 14px;
  margin: 15px 0;
  padding: 0 0 0 15px;
}
.menu-items div ul li {
  position: relative;
}
.menu-items div ul li:before {
  content: '-';
  color: var(--white);
  margin: 0 5px 0 0;
  font-weight: bold;
}
.menu-items.fs {
  transform: translateY(50px);
  pointer-events: auto;
  opacity: 1;
}
.menu-items.fs div {
  opacity: 1;
}
/*.steps{
  width: 500px;
  height: 500px;
  background: url("../images/steps.png") no-repeat;
  animation: stepsline 1s steps(6) forwards;
}*/
@keyframes stepsline {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3000px 0;
  }
}

@media screen and (max-width: 768px) {
  .menu-items {
    scale: .9;
  }
  header > div.fs:after {
    right: 10px;
    bottom: 0;
    top: auto;
  }
}


/* footer ====================================== */


footer {
  background: var(--orange);
}
.footer.wrap {
  padding: 100px 0 50px;
}
.footer .box {
  max-width: 1000px;
  margin: auto;
}
.footer .box img.logo {
  width: 200px;
}
.footer .box .left {
  display: flex;
  flex-direction: column;
  flex-basis: calc(40% - 12.5px);
  max-width: calc(40% - 12.5px);
}
.footer .box .sns {
  display: flex;
  gap: 15px;
  margin: 20px 0 0;
}
.footer .box .sns a {
  color: var(--white);
  font-size: 20px;
}
.footer .box .privacy img {
  width: 50px;
  margin: 10px 0 0;
  border-radius: 5px;
}
.footer .box .right {
  flex-basis: calc(60% - 12.5px);
  max-width: calc(60% - 12.5px);
}
.footer .box .right a {
  color: var(--white);
  font-weight: bold;
}
.footer .box .right > a {
  display: block;
  font-size: 16px;
  margin: 10px 0 0;
}
.footer .box .right > a:first-child {
  margin: 0;
}
.footer .box .right > a:before {
  content: '';
  background: url(../images/icon.png) no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-flex;
  margin: 0 10px 0 0;
  width: 10px;
  height: 10px;
}
.footer .box .right ul,
.other ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.footer .box .right ul li:before,
.other ul li:before {
  content: '-';
  color: var(--white);
  margin: 0 5px 0 0;
  font-weight: bold;
}
.other {
  margin: 25px 0;
}
.other a {
  color: var(--white);
  font-size: 80%;
  font-weight: bold;
}
small.copyright {
  margin: 50px 0 0;
  display: block;
  color: var(--white);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .other {
    padding: 1rem;
  }
  .footer .box .left,
  .footer .box .right {
    flex-basis: auto;
    max-width: none;
    align-items: center;
  }
  small.copyright {
    margin: 50px 1rem 0;
    text-align: center;
  }
}

/* line-btn ====================================== */

#line-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
#line-support a {
    background: #07b53b;
    text-decoration: none;
    color: #fff;
    width: 120px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#line-support a:hover {
    text-decoration: none;
    background: #07b53b;
}


/* main ====================================== */


div#main-visual {
  height: 95vh;
  position: relative;
}
#main-visual > img {
  height: 95vh;
  object-fit: cover;
  object-position: bottom;
}
#main-visual > h2 {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#main-visual > h2 > img {
  max-width: 500px;
}
.scrolldown {
  position:absolute;
  left: 50%;
  bottom: 25px;
  height: 100px;
}
.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  #main-visual > h2 {
    width: 85%;
    text-align: center;
  }
  #main-visual > h2 > img {
    width: 100%;
  }
}


/* about ====================================== */


.stepsTrigger{
  opacity:0;
}
.about .steps {
  content: '';
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: -1;
  /* background: url(../images/ashiato.png) no-repeat; */
  background: url(../images/steps.png) no-repeat;
  animation: stepsline 1s steps(6) forwards;
  /* background-position: top; */
  /* background-size: contain; */
  opacity: .3;
  width: 500px;
  height: 500px;
  /* width: 50%; */
  /* height: 300px; */
  scale: .8;
  overflow: hidden;
}
.marker-stripe {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,230,205,.8),
    rgba(255,230,205,.8) 4px,
    transparent 4px,
    transparent 8px
  );
  background-position: center bottom;
  background-repeat: repeat-x;
  background-size: auto .75em;  
}
.about .box {
  width: 700px;
  margin: auto;
  font-weight: bold;
}
.about .box > span {
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 0 0 10px;
}
.about .box h2 {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.about .box h2 > span {
  position: relative;
  bottom: 2px;
}
.about .box h2 img {
  width: 500px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  .about .box {
    width: 100%;
    padding: 1rem;
  }
  .about .box h2 img {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .about .steps {
    scale: .6;
    bottom: -100px;
    right: -60px;
  }
}
@media screen and (max-width: 400px) {
  .about .box h2 > span{
    font-size: 20px;
  }
}


/* item ====================================== */


.item {
  background: var(--beige);
}
.item .box {
  max-width: 1000px;
  margin: auto;
  font-weight: bold;
}
.item .box .cont {
  background: var(--white);
  width: 350px;
  margin: 0 0 20px;
  border-radius: var(--myradius);
}
.item .box h4 {
  margin: 0 0 15px;
}
.item .box .cont:last-child {
  margin: 0;
}
.item .box .cont dl {
  /*display: flex;
  align-items: center;*/
  padding: 25px 25px 10px;
  line-height: 1.5;
}
.item .box .cont dl dt {
  /*width: 80px;
  text-align: center;*/
}
.item .box .cont dl dd {
/*  padding: 0 10px;*/
}
.item .box .cont dl dd span {
  font-size: .65rem;
}
.item .box .cont dl dd small {
/*  color: #888888;*/
}
.item .box .cont p {
  padding: 0 25px 25px;
  line-height: 1;
}
.item .box .buy-btn a {
  background: var(--orange);
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}
.item .box .buy-btn a {
  color: var(--white);
}
.item .box .buy-btn a i {
  margin: 0 10px 0 0;
}
.item .box .card .card2:nth-child(2) {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 400px) {
  .item .box .cont {
    width: 100%;
  }
  .item .box .buy-btn a {
    width: 100%;
  }
  .item .box .card .card2 .inner {
    width: 100%;
  }
}


/* feature ====================================== */


.feature .box{
  max-width: 1000px;
  margin: auto;
}
.ftitle {
  position: relative;
}
.ftitle h3.bubbles01:before {
  content: '';
  background: url(../images/speech-bubbles01.png) no-repeat center;
  background-size: contain;
  display: block;
  width: 180px;
  height: 150px;
  filter: drop-shadow(0 1px 5px rgba(128, 79, 33, .2));
  position: absolute;
  top: -65px;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ftitle h3.bubbles02:after {
  content: '';
  background: url(../images/speech-bubbles02.png) no-repeat center;
  background-size: contain;
  display: block;
  width: 180px;
  height: 150px;
  filter: drop-shadow(0 1px 5px rgba(128, 79, 33, .2));
  position: absolute;
  top: -65px;
  right: 30%;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
}
.ftitle h3.bubbles01 {
  text-align: center;
  margin: 80px 0 30px 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.ftitle h3.bubbles02 {
  text-align: center;
  margin: 180px 0 30px 0;
  position: relative;
  display: flex;
  justify-content: center;
}
.feature .inner {
  background: var(--subbeige);
  border-radius: var(--myradius);
  border: solid #c9c9c9;
  padding: 50px 25px 0;
  position: relative;
  margin: 25px 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  height: 100%;
/*  box-shadow: 0px 1px 10px rgba(12, 12, 12, 0.1);*/
}
.feature .inner.line01:before {
  content: '';
  background: url(../images/f01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 70px;
  height: 70px;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.feature .inner.line02:before {
  content: '';
  background: url(../images/f02.png) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 70px;
  height: 70px;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.feature .inner.system01:before {
  content: '';
  background: url(../images/s01.png) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 180px;
  height: 70px;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.feature .inner.system02:before {
  content: '';
  background: url(../images/s02.png) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 180px;
  height: 70px;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.feature .inner strong {
  color: var(--orange);
  font-size: 18px;
  display: block;
  text-align: center;
  margin: 0 0 25px;
}
.feature .inner p {
  font-weight: bold;
  margin: 0 0 25px;
}
.feature .inner img {
  width: 80%;
  display: block;
  margin: auto;
  max-width: 500px;
}
.feature .inner.system01,
.feature .inner.system02 {
  padding: 50px 25px 50px;
}
.feature .card-inner {
  width: 100%;
  padding: 1rem;
}


/* voice ====================================== */


.voice {
  background: var(--beige);
}
.voice .box {
  position: relative;
}
.blog-box {
  margin: 80px 0 0;
  padding: 0 0 0 70px;
}
.blog-slider {
  width: 100%;
  position: relative;
  max-width: 930px;
  margin: auto;
  background: #fff;
/*  box-shadow: 0px 1px 10px rgba(12, 12, 12, 0.1);*/
  padding: 25px;
  border-radius: var(--myradius);
  height: 400px;
  transition: all .3s;
}
.blog-slider:before {
  content: '';
  background: url(../images/v01.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 930px;
  height: 35px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 992px) {
  .blog-box {
    padding: 0 0 0 55px;
  }
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .blog-box {
    padding: 0 1rem;
  }
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto 0;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: .3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  border-radius: var(--myradius);
  transform: translateX(-80px);
  overflow: hidden;
}
/*.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  border-radius: var(--myradius);
  opacity: 0.8;
}*/
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: var(--myradius);
  transition: all .3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 9;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: var(--myradius);
  background: #062744;
  opacity: 0.2;
  transition: all .3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange);
  height: 30px;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}


/* product ====================================== */


.product .box {
  max-width: 1000px;
  margin: auto;
}
.product .box .title p {
  text-align: center;
  margin: 30px 0 30px;
  font-weight: bold;
}
.product .steps {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: -1;
  /* background: url(../images/ashiato.png) no-repeat; */
  background: url(../images/steps.png) no-repeat;
  animation: stepsline 1s steps(6) forwards;
  opacity: .3;
  width: 500px;
  height: 500px;
  transform: scale(-1 ,1);
  scale: .8;
}
.pmain {
  margin: 0 0 50px;
/*  filter: drop-shadow(0 0px 10px rgba(12, 12, 12, .1));*/
}
.cards {
  display: flex;
  flex-wrap: wrap;
}
.cards__item {
  display: flex;
  padding: 1rem;
}
@media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }
}
@media (min-width: 56rem) {
  .cards__item {
    width: 33.3333%;
  }
}
@media (max-width: 40rem) {
  .cards__item {
    display: block;
    width: 100%;
  }
}
.card__box {
  background-color: var(--subbeige);
  border-radius: var(--myradius);
/*  box-shadow: 0px 1px 10px rgba(12, 12, 12, 0.1);*/
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 25px;
  position: relative;
  border: solid #c9c9c9;
  border-width: 0 1px 1px 1px;
  border-radius: var(--myradius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card__step {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  margin: auto;
  display: inline-table;
  background: var(--orange);
  padding: 3px 15px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  border: solid #c9c9c9;
  border-width: 1px 1px 0px 1px;
  border-radius: var(--myradius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (min-width: 40rem) {
  .card__image::before {
    padding-top: 66.6%;
  }
}
.card__image--01 {
  background-image: url(../images/step01.png);
}
.card__image--02 {
  background-image: url(../images/step02.png);
}
.card__image--03 {
  background-image: url(../images/step03.png);
}
.card__title {
  text-align: center;
  font-weight: bold;
  margin: 15px 0 0;
}
.card__text {
  flex: 1 1 auto;
  margin: 15px 0 0;
}

@media screen and (max-width: 768px) {
  .pmain {
    margin: 0 1rem 50px;
  }
}
@media screen and (max-width: 500px) {
  .product .steps {
    scale: .6;
    bottom: -100px;
    left: -60px;
  }
}


/* details ====================================== */


.details .box {
  max-width: 1000px;
  margin: auto;
}
.dmain {
  background: var(--subbeige);
  padding: 50px;
  margin: 50px 0 0;
  border: 1px solid #c9c9c9;
  border-radius: var(--myradius);
}
.dmain dt {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 15px;
}
.dmain dt:first-child {
  margin: 0 0 15px;
}
.dmain dt:last-child {
  margin: 0;
}
.dmain dd.emphasize {
    text-decoration: underline dotted var(--orange);
}
.dmain dd.emphasize strong {
  color: var(--orange);
  font-size: 16px;
}
.dmain dd a {
  color: var(--white);
  font-weight: bold;
  background: var(--orange);
  border-radius: 50px;
  padding: 2px 10px;
  margin: 0 5px;
  word-break: keep-all;
}

@media screen and (max-width: 768px) {
  .dmain {
    padding: 25px;
    margin: 50px 1rem 0;
  }
}


/* news ====================================== */


.topnews {
  background: var(--beige);
}
.topnews .box {
  max-width: 1000px;
  margin: auto;
}
.nmain .accordion {
  margin: 50px 0 0;
  background: var(--white);
  border-radius: var(--myradius);
  padding: 50px 50px calc(50px - 25px) 50px;
}
.accordion .toggle {
  display: none;
}
.accordion {
  margin: 30px 0 0;
}
.accordion .option {
  position: relative;
  margin-bottom: 10px;
}
.accordion .title,
.accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion .title {
  border-top: solid 1px #efefef;
  padding: 15px 35px 15px 15px;
  display: block;
  font-weight: bold;
  cursor: pointer;
}
.accordion .title::after,
.accordion .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.5em;
  width: 2px;
  height: 0.75em;
  background-color: var(--orange);
  transition: all 0.3s;
}
.accordion .title::after {
  transform: rotate(90deg);
}
.accordion .title span {
  margin: 0 10px 0 0;
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
}
.accordion .content p {
  margin: 0;
  padding: 15px 35px 15px 15px;
  font-size: 12px;
}
.accordion .toggle:checked + .title + .content {
  max-height: 15000px;
  transition: all 1.5s;
}
.accordion .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
.accordion a.btn {
  background: var(--white);
  height: 50px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--orange);
  font-weight: bold;
  border: 1px solid #0c0c0c;
  margin: auto;
}
.accordion p a {
  color: var(--orange);
}
.charge .box {
  max-width: 1000px;
  margin: auto;
}
.charge .box a {
  color: var(--orange);
  font-weight: bold;
}
.separator {
  background-image: linear-gradient(to right, #804f21 8px, transparent 8px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  margin: 30px 0 0;
  padding: 20px 0;
}
a.news-btn {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 50px;
  margin: 10px 0 0;
  font-weight: bold;
}
#news .box {
  margin: 0 1rem;
}

@media screen and (max-width: 768px) {
  .news .box {
    padding: 1rem;
  }
  .nmain {
    margin: 0 1rem;
  }
  .nmain .accordion {
    padding: 25px 25px 25px 25px;
  }
}


/* vision ====================================== */


.vmain {
  width: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.vmain img {
  width: 200px;
}
.vmain h4 {
  font-size: 25px;
  font-weight: bold;
  margin: 30px 0;
}
.vmain a.btn {
  background: var(--orange);
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .vmain {
    width: 100%;
    padding: 0 1rem;
  }
  .vmain h4 br {
    display: none;
  }
}


/* faq ====================================== */


.submain {
  background: var(--subbeige);
}
.submain h2 {
  max-width: 1000px;
  margin: 50px auto 0;
  color: var(--brown);
  font-weight: bold;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  max-width: 1000px;
}
/*.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #325A8C;
  display: block;
  order: -1;
}*/
.tab-label {
  color: var(--white);
  background: var(--beige);
  font-weight: bold;
/*  white-space: nowrap;*/
  text-align: center;
  padding: 15px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: var(--myradius);
  flex: 1;
  line-height: 1.2;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-content h4 {
  font-weight: bold;
  margin: 30px 0;
  color: #804f21;
}
.tab-switch:checked+.tab-label {
  background: var(--orange);
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 25px;
  opacity: 1;
  transition: .5s opacity;
}
.tab-switch {
  display: none;
}
.tab-switch:checked+.tab-label:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: var(--orange);
  border-width: 14px;
  margin-left: -14px;
}
.tab-switch:checked+.tab-label {
  background: var(--orange);
  position: relative;
}

@media screen and (max-width: 768px) {
  .submain h2 {
    padding: 1rem;
  }
  .faq .box {
    padding: 1rem;
  }
}


/* accordion-flex*/

.accordion-flex {
  display: flex; 
}
.accordion-flex .accordion-flex-image {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  flex:1;
}
.accordion-flex .accordion-flex-right {
  margin: 0 0 0 20px;
  padding: 0;
  flex:6;
}
.accordion-flex .accordion-flex-title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 18px;
}
.accordion-flex .accordion-flex-text {
  margin: 10px 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .accordion-flex .accordion-flex-image {
    flex:1;
  }
  .accordion-flex .accordion-flex-right {

    flex:3;
  }
}

/* contact ====================================== */


.contact .box {
  max-width: 1000px;
  margin: auto;
}
.contact .box .btn {
  display: flex;
}
.contact table {
  width: 100%;
  margin: 0 auto 40px auto;
  border-top: 1px solid #efefef;
/*  border-left: 1px solid #efefef;*/
  text-align: left;
  border-collapse: collapse;
}
.contact table tr {
  border-collapse: collapse;
}
.contact table th {
/*  background-color: #F7F7F7;*/
  padding: 15px;
  border-bottom: solid 1px #efefef;
/*  border-right: 1px solid #efefef;*/
  width: 30%;
  vertical-align: baseline;
  text-align: left;
  font-weight: bold;
}
.contact table td {
  padding: 15px;
  border-bottom: 1px solid #efefef;
/*  border-right: 1px solid #efefef;*/
}
.contact .box .topbtn a {
  background: var(--subbeige);
  color: var(--base-color);
  border-radius: 50px;
  transition: all 0.3s;
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c9c9;
  margin: auto;
}
.contact .heading a {
  background: var(--beige);
  width: 250px;
  display: block;
  border-radius: var(--myradius);
  padding: 15px;
  color: var(--brown);
  font-weight: bold;
  position: relative;
  margin: auto auto 50px;
  transition: all 0.3s;
}
.contact .heading a:hover {
  background: var(--orange);
  color: var(--white);
}
.contact .heading a:after {
  content: '';
  background: url(../images/cat.png) no-repeat;
  background-size: contain;
  background-position: right;
  width: 100px;
  height: 65px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
input[type=text], input[type=password], input[type=tel], input[type=email], select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #CBCBCB;
  padding: 5px;
  width: 100%;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 45px;
  background-color: #fff !important;
  color: #00192a;
}
textarea {
  resize: vertical;
}
input[type=submit] {
  background: var(--orange);
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
  margin: auto;
}
input#mail_edit_button {
  background: #DEDEDE;
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
  margin: auto;
}
input.edit {
  display: block;
  padding: 15px 35px;
  position: relative;
  text-decoration: none;
  text-align: center;
  box-shadow: 1px 1px 2px rgba(0,0,0,.3);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s;
  cursor: pointer;
  width: 100%;
}
::placeholder {
  color: #ddd;
}
.str{
  text-align: center;
  color: #DF4669;
  font-size: 10px;
  border-radius: 3px;
  background: pink;
  width: 35px;
  font-weight: bold;
  border: 1px solid #DF4669;
  vertical-align: middle;
  margin: 0 0 0 5px;
  padding: 0 5px;
  word-break: keep-all;
}
.str.opt{
  color: #037171;
  background: rgba(3,113,113,0.2);
  border: 1px solid #037171;
}
p.note {
  font-size: 10px;
  color: #888888;
}
p.note a{
  text-decoration: underline;
  color: var(--orange);
}
.heading .text p{
  text-align: left;
  margin: 20px 0 10px;
}
input#Agree:disabled + label {
  opacity: .6;
}
.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 50px;
  border-radius: var(--myradius);
  vertical-align: middle;
  cursor: pointer;
}
.positionCheckBox {
  text-align: center;
}
.positionCheckBox .checkbox {
  background-color: #f6f7f8;
  padding: 10px 10px 10px 50px;
  margin: 0 0 25px;
  text-align: left;
}
.positionCheckBox .checkbox a {
  color: var(--orange);
  text-decoration: underline dotted;
  font-weight: bold;
  margin: 0 5px 0 0;
}
.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 22px;
  display: block;
  margin-top: -7px;
  width: 7px;
  height: 10px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -6px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50px;
  content: '';
  opacity: 0;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -11px;
  width: 20px;
  height: 20px;
  border: 2px solid #bbb;
  border-radius: 5px;
  content: '';
}
.radio:after {
  border-radius: 10px;
}
input#Agree, .contact input[type=checkbox],.contact input[type=radio] {
  display: none !important;
}
input[type=checkbox]:checked + .checkbox:before,
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
#js-selectFile .original_btn {
  border: 1px solid #e8e8e8;
  background: #F7F7F7;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
}
#js-selectFile .icon {
  font-size: 10px;
  margin: 0 10px;
  padding: 3px 20px;
  border-radius: 15px;
  background: #7f6d99;
  color: #fff;
  display: inline-block;
}
#js-selectFile .icon.select {
  background: linear-gradient(to right, #48C6EF, #6F86D6 50%);
  color: #fff;
}
#js-selectFile .filename {
  /*display: inline-block;*/
  font-size: 13px;
}
#js-selectFile .filename span {
  display: block;
}
.upload-label {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
  color: var(--base-color);
  font-size: 12px;
  border-radius: 3px;
}
.upload-label input {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact .box {
    padding: 1rem;
  }
  .contact table {
    border-top: none;
  }
  .contact table th, .contact table td {
    display: block;
    width: 100%;
  }
  .contact table td {
    border: none;
  }
  .contact .box .btn {
    flex-direction: column;
  }
  .contact .box .btn input {
    margin: 15px auto;
  }
}
@media screen and (max-width: 400px) {
  input[type=submit], input#mail_edit_button {
    width: 100%;
  }
  .contact .box .topbtn a {
    width: 100%;
  }
}


/* static ====================================== */


.static .box {
  max-width: 1000px;
  margin: auto;
}
.privacy dl dt {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 10px;
}
ul.decimal li {
  list-style: decimal;
  list-style-position: inside;
}
ul.disc li {
  list-style: disc;
  list-style-position: inside;
}

@media screen and (max-width: 768px){
  .static .box {
    padding: 1rem;
  }
}


/* top ====================================== */


.top .box {
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 0;
}
.top .box h4 {
  text-align: center;
  font-weight: bold;
  margin: 0 0 50px;
}
.top .box .card {
  gap: 15px;
}
.top .box .card3 {
  flex-basis: calc((100% - 30px) / 3);
  max-width: calc((100% - 30px) / 3);
}
.top .box .card img {
  filter: drop-shadow(0 0px 10px rgba(12, 12, 12, .1));
}

@media screen and (max-width: 768px){
  .top .box {
    margin: auto 1rem;
  }
  .top .box .card3 {
    flex-basis: calc((100% - 15px) / 2);
    max-width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 500px){
  .top .box .card3 {
    flex-basis: 100%;
    max-width: 100%;
  }
}  


/* contact_sub ====================================== */


body.contact_sub{
  font-family: "M PLUS Rounded 1c","MS Pゴシック","YuGothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","Arial","メイリオ","Meiryo",sans-serif !important;
  line-height: 1.8;
  color:#0c0c0c;
}
.contact_sub_hedder{
  background-color:#F8EACE;
  padding:50px 15px;
  text-align:center;
}
.contact_sub_logo{
  display:block;
  margin:0 0 0 0;
}
.contact_sub_logo img{
  width:200px;
  margin-top:-5px;
}
.contact_sub_title{
  display:block;
  margin:10px 0 0 0;
}
.contact_sub_title p{
  font-size:18px;
  font-weight:bold;
  color:#804F21;
}
.contact_sub_form .box{
  padding: 1rem; 
}
.tf-c-form__label__required {
  display: inline-block;
  margin-left: 0.25em;
  color: #ff0000;
}
.contact_sub_label{
  font-size:16px;
  font-weight:bold;
  margin-top:2em;
  margin-bottom:0.3em;
  display:block;
  line-height: 2;
  overflow-wrap: anywhere;
}
.contact_sub_control{
  border-color:rgb(217,218,218);
  appearance: none;
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0.75em 0.85em;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  outline: none;
  background-clip: border-box;
  background-color:#fff;
  color:#2e3231;
  font-size:16px;
  font-weight:400;
  line-height: 1.5;
}
.contact_sub_row{
  margin-top: 2em;
}
.contact_sub_row_btn{
  margin-top: 2em;
  text-align: center;
}
.contact_sub_btn{
  display:inline-block;
  min-width: 120px;
  margin:0 8px 10px 8px;
  padding:10px 20px;
  border:none;
  border-radius:200px;
  outline:none;
  background-color:#f4b028;
  color:#fff;
  font-size:14px;
  line-height: 1.7;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}
.sub_description{
  padding-top:10px;
  font-size:12px;
  line-height: 18px;
  overflow-wrap: anywhere;
  opacity: .6;
}
select, input, button, textarea, button {
  font: 99% arial,helvetica,clean,sans-serif;
}
@media (min-width: 400px){
  .contact_sub_logo{
    display:inline-block;
    margin:0 10px 0 0;
  }
  .contact_sub_title{
    display:inline-block;
    margin:0 0 0 10px;
  }
}
@media (min-width: 919px){
  .contact_sub_label{
    font-size:14px;
  }
  .contact_sub_btn{
    min-width: 190px;
    padding: 15px 30px;
    font-size: 16px;
  }
  .contact_sub_form .box {
    max-width: 1000px;
    margin: auto;
    padding:1rem 100px;
  }
}


/* contact_sub conf====================================== */


.contact_sub-messagebox{
  max-width: 420px;
  margin: 2em auto;
  padding: 0 1em;
  color: #2e3231;
}
.contact_sub-message{
  display: block;
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.contact_sub_formitem span{
  font-size:16px;
}
.contact_sub_cancelbtn{
  background-color: rgb(171, 173, 173);
  color:#fff;
  display:inline-block;
  min-width: 120px;
  margin:0 8px 10px 0;
  padding:10px 20px;
  border:none;
  border-radius:200px;
  outline:none;
  line-height:1.7;
  text-align:center;
  white-space:nomal;
  cursor:pointer;
}
.contact_sub_submitbtn{
  background-color:#f4b028;
  color:#fff;
  display:inline-block;
  min-width: 120px;
  margin:0 8px 10px 0;
  padding:10px 20px;
  border:none;
  border-radius:200px;
  outline:none;
  line-height:1.7;
  text-align:center;
  white-space:nomal;
  cursor:pointer;
}

@media (min-width: 919px){
  .contact_sub-messagebox{
    margin: 4em auto;
  }
  .contact_sub-message{
    font-size: 20px;
  }
  .contact_sub_cancelbtn{
    min-width: 190px;
    padding: 15px 30px;
    font-size: 16px;
  }
  .contact_sub_submitbtn{
    min-width: 190px;
    padding: 15px 30px;
    font-size: 16px;
  }
}


/* contact_sub comp====================================== */


.contact_sub-topbtn a{
  max-width:250px;
  width:100%;
  background: #f4b028;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
h3.sub_comp_txt{
  margin:50px 0;
}


/* error====================================== */


.emain {
  width: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.emain a.btn {
  background: var(--orange);
  height: 50px;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .vmain {
    width: 100%;
    padding: 0 1rem;
  }
  .vmain h4 br {
    display: none;
  }
}


/* support page ====================================== */

#support .box {
  max-width: 1000px;
  margin: auto;
  font-weight: bold;
}
