@charset "UTF-8";
/*
pokeka-kaitori(2025.07)
*/
:root {
  --unit-size: 6px;
}

@media (min-width: 767px) {
  :root {
    --unit-size: 8px;
  }
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.7;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 500;
  line-height: 1.5;
}

h1 {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: calc(var(--unit-size) * 7);
  height: 40px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  h2 {
    height: 50px;
  }
}
@media (min-width: 992px) {
  h2 {
    margin-bottom: calc(var(--unit-size) * 12);
  }
}
h2 img {
  height: 100%;
  width: auto;
}
h2.h2kaiketu {
  height: 87px;
}
@media (min-width: 768px) {
  h2.h2kaiketu {
    height: 110px;
  }
}
h3 {
  font-size: 1.3rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4, h5 {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  h4, h5 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  h4, h5 {
    font-size: 1.5rem;
  }
}

/* コンテナ
============================*/
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 0 calc(var(--unit-size) * 2);
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 760px;
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* グリッドレイアウト
============================*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.row.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.row.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.row.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.row.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row .col {
  padding: 15px;
}

/* 表示非表示
============================*/
.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inlineblock {
  display: inline-block;
}

.d-block {
  display: block;
}

@media (max-width: 576px) {
  .d-xs-none {
    display: none;
  }

  .d-xs-inline {
    display: inline;
  }

  .d-xs-inlineblock {
    display: inline-block;
  }

  .d-xs-block {
    display: block;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }

  .d-sm-inline {
    display: inline;
  }

  .d-sm-inlineblock {
    display: inline-block;
  }

  .d-sm-block {
    display: block;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }

  .d-md-inline {
    display: inline;
  }

  .d-md-inlineblock {
    display: inline-block;
  }

  .d-md-block {
    display: block;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }

  .d-lg-inline {
    display: inline;
  }

  .d-lg-inlineblock {
    display: inline-block;
  }

  .d-lg-block {
    display: block;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none;
  }

  .d-xl-inline {
    display: inline;
  }

  .d-xl-inlineblock {
    display: inline-block;
  }

  .d-xl-block {
    display: block;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none;
  }

  .d-xxl-inline {
    display: inline;
  }

  .d-xxl-inlineblock {
    display: inline-block;
  }

  .d-xxl-block {
    display: block;
  }
}
/* サイトデザイン
============================*/
header {
  width: 100%;
  padding: 1rem;
}
header .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .logo {
  width: 60%;
  max-width: 250px;
}
header .head-btn {
  display: none;
}
@media (min-width: 768px) {
  header .head-btn {
    display: block;
    width: 100%;
    max-width: 300px;
  }
}

section {
  padding: calc(var(--unit-size) * 7) 0;
}
@media (min-width: 992px) {
  section {
    padding: calc(var(--unit-size) * 12) 0;
  }
}

a.btn-kaitori {
  display: block;
  width: 80%;
  margin: calc(var(--unit-size) * 8) auto 0;
}
@media (min-width: 576px) {
  a.btn-kaitori {
    width: 95%;
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  a.btn-kaitori {
    max-width: 40vw;
  }
}

.main {
  position: relative;
  padding: 0;
}
.main a.btn-kaitori {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: auto;
  bottom: 1%;
}
@media (min-width: 767px) {
  .main a.btn-kaitori {
    bottom: 2%;
  }
}
@media (min-width: 992px) {
  .main a.btn-kaitori {
    bottom: 3%;
  }
}
.ttl-span {
  height: 20px;
  text-align: center;
  margin-bottom: 5px;
}
.ttl-span img {
  height: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .ttl-span {
    margin-bottom: 10px;
    height: 25px;
  }
}

.onayami {
  position: relative;
}
.onayami h2 {
  color: #fff;
  text-shadow: 3px 3px rgba(51, 51, 51, 0.9);
}
.onayami ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 0;
}
.onayami ul li {
  position: relative;
  padding: 15px 10px 15px 70px;
  background: #fff;
  margin-bottom: 10px;
  font-size: 1.3rem;
  border: 3px solid #333;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .onayami ul li {
    font-size: 1.3rem;
    width: 80%;
  }
}
.onayami ul li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  content: url(../img/check.svg);
  display: block;
  width: 40px;
}
.onayami .img {
  margin: -50px auto 0;
  width: 50%;
  max-width: 300px;
  z-index: 0;
}
@media (min-width: 768px) {
  .onayami .img {
    width: 30%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.kaiketu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kaiketu > div {
  border: 3px solid #333;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: calc(var(--unit-size) * 3);
  color: #fff;
  width: 100%;
}
@media (min-width: 768px) {
  .kaiketu > div {
    width: 32%;
  }
}
.kaiketu > div:nth-child(1) {
  background: linear-gradient(174deg, #14a0ef 45%, #027fff 45%);
}
.kaiketu > div:nth-child(2) {
  background: linear-gradient(174deg, #f9bf3c 45%, #f9a43d 45%);
}
.kaiketu > div:nth-child(3) {
  background: linear-gradient(174deg, #e6326e 45%, #c4326e 45%);
}
.kaiketu > div h3 {
  text-align: justify;
  margin-bottom: calc(var(--unit-size) * 5);
  text-shadow: 1px 1px 2px rgba(16, 16, 16, 0.64);
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .kaiketu > div h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .kaiketu > div h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .flow {
    padding-left: calc(var(--unit-size) * 3);
  }
}
.flow > div {
  position: relative;
  border: 3px solid #333;
  border-radius: 20px;
  margin-bottom: calc(var(--unit-size) * 5);
  background: #fff;
  padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 5);
}
@media (min-width: 768px) {
  .flow > div {
    padding: calc(var(--unit-size) * 5) calc(var(--unit-size) * 8);
  }
}
.flow > div::before {
  position: absolute;
  top: calc(var(--unit-size) * -3);
  left: calc(var(--unit-size) * -4);
  content: '';
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #ffeb33;
  border-radius: 50%;
  font-size: 2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-box-shadow: 2px 2px rgba(116, 36, 0, 0.56);
          box-shadow: 2px 2px rgba(116, 36, 0, 0.56);
}
@media (min-width: 768px) {
  .flow > div::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.flow > div:nth-child(1)::before {
  content: "1";
}
.flow > div:nth-child(2)::before {
  content: "2";
}
.flow > div:nth-child(3)::before {
  content: "3";
}
.flow > div:nth-child(4)::before {
  content: "4";
}
.flow > div:nth-child(5)::before {
  content: "5";
}

.flow > div h3 {
  color: #ea186d;
}
.flow > div a {
  display: inline-block;
  text-decoration: none;
  padding: calc(var(--unit-size) * 1) calc(var(--unit-size) * 3);
  background: #26c632;
  border-radius: 15px;
  color: #fff;
}
.flow > div a::after {
  content: '▲';
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 10px;
}

#faq dl {
  position: relative;
  margin-left: calc(var(--unit-size) * 2);
  margin-bottom: calc(var(--unit-size) * 5);
  padding: calc(var(--unit-size) * 2) calc(var(--unit-size) * 4);
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  background: #fff;
  border: 3px solid #333;
  border-radius: 20px;
}
@media (min-width: 768px) {
  #faq dl {
    margin-left: 0;
    padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 5);
  }
}
#faq dl::before {
  position: absolute;
  top: calc(var(--unit-size) * -2);
  left: calc(var(--unit-size) * -2);
  content: 'Q';
  width: 35px;
  height: 35px;
  line-height: 34px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  background: #14a0ef;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  #faq dl::before {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.6rem;
  }
}
#faq dl::after {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  content: '＋';
  top: 16px;
  right: calc(var(--unit-size) * 1);
  font-size: 2rem;
  line-height: 2rem;
  color: #666;
  -webkit-transition: .3s;
  transition: .3s;
}
@media (min-width: 768px) {
  #faq dl::after {
    top: 27px;
  }
}
#faq dl dt {
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 1.2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) {
  #faq dl dt {
    font-size: 1.4rem;
  }
}
#faq dl dd {
  max-height: 0;
  opacity: 0;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
  pointer-events: none;
}
#faq dl dd::before {
  position: absolute;
  content: 'A';
  border-radius: 10px;
  color: #fff;
  text-align: center;
  top: calc(var(--unit-size) * 0);
  left: calc(var(--unit-size) * -6);
  background: #e6326e;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 1;
}
@media (min-width: 768px) {
  #faq dl dd::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
    left: calc(var(--unit-size) * -5);
  }
}
#faq .open::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
#faq .open dd {
  margin-top: calc(var(--unit-size) * 2);
  max-height: 500px;
  opacity: 1;
}

.step {
  padding: calc(var(--unit-size) * 8) calc(var(--unit-size) * 4);
}
.step h2 {
  margin-bottom: 0;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  color: #008d44;
  border-bottom: 3px dotted #717171;
}
.step > div {
  margin-bottom: calc(var(--unit-size) * 10);
}
.step .atesaki {
  background: #fcf3e5;
  display: inline-block;
  padding: 0 calc(var(--unit-size) * 3);
  border-radius: 10px;
}

@-webkit-keyframes open {
  100% {
    max-height: 200px;
    /* 開いたときの最大高さ。必要に応じて調整 */
    opacity: 1;
    padding: calc(var(--unit-size) * 2) calc(var(--unit-size) * 4) calc(var(--unit-size) * 2) calc(var(--unit-size) * 9);
  }
}

@keyframes open {
  100% {
    max-height: 200px;
    /* 開いたときの最大高さ。必要に応じて調整 */
    opacity: 1;
    padding: calc(var(--unit-size) * 2) calc(var(--unit-size) * 4) calc(var(--unit-size) * 2) calc(var(--unit-size) * 9);
  }
}
@-webkit-keyframes close {
  0% {
    max-height: 200px;
    opacity: 1;
    padding: calc(var(--unit-size) * 2) calc(var(--unit-size) * 4) calc(var(--unit-size) * 2) calc(var(--unit-size) * 9);
  }
  100% {
    max-height: 0;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
    opacity: 0;
    padding: 0 calc(var(--unit-size) * 4) 0 calc(var(--unit-size) * 9);
  }
}
@keyframes close {
  0% {
    max-height: 200px;
    opacity: 1;
    padding: calc(var(--unit-size) * 2) calc(var(--unit-size) * 4) calc(var(--unit-size) * 2) calc(var(--unit-size) * 9);
  }
  100% {
    max-height: 0;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
    opacity: 0;
    padding: 0 calc(var(--unit-size) * 4) 0 calc(var(--unit-size) * 9);
  }
}
footer {
  background: fff;
  padding: calc(var(--unit-size) * 8) 0;
}
footer .footlogo {
  width: 100%;
  max-width: 200px;
}
@media (min-width: 768px) {
  footer .footlogo {
    max-width: 300px;
  }
}
footer button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #333;
  cursor: pointer;
  text-decoration: underline;
  margin-right: 10px;
}

#popupOverlay {
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
}
#popupOverlay.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
}
#popupOverlay #popupWrap {
  position: relative;
  height: 85vh;
  margin: calc(var(--unit-size) * 10) 1rem;
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
}
#popupOverlay #popupWrap .popup-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eee;
  padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 2);
  padding-right: calc(var(--unit-size) * 5);
}
@media (min-width: 768px) {
  #popupOverlay #popupWrap .popup-header {
    padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 5);
  }
}
#popupOverlay #popupWrap .popup-header .tab-btn {
  display: inline-block;
  width: auto;
  white-space: nowrap;
  background: none;
  border: none;
  margin-right: 15px;
  cursor: pointer;
  font-weight: bold;
}
#popupOverlay #popupWrap .popup-header .tab-btn.active {
  color: #007bff;
  text-decoration: none;
}
#popupOverlay #popupWrap #popupClose {
  position: absolute;
  top: 50%;
  right: calc(var(--unit-size) * 1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  background: #c9c9c9;
  font-size: 1.3rem;
  border-radius: 0px;
  margin: 0;
}
#popupOverlay #popupWrap .popup-content {
  overflow: scroll;
  height: calc(100% - 92px);
  padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 2);
}
@media (min-width: 768px) {
  #popupOverlay #popupWrap .popup-content {
    padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 5);
    height: calc(100% - 70px);
  }
}
#popupOverlay #popupWrap .popup-content h2 {
  font-size: 1.3rem;
  color: #333;
  text-align: left;
  margin-bottom: calc(var(--unit-size) * 3);
  font-family: sans-serif;
}
#popupOverlay #popupWrap .popup-content h3 {
  font-size: 1.2rem;
  color: #333;
  text-align: left;
  margin: calc(var(--unit-size) * 4) 0 calc(var(--unit-size) * 1);
  font-family: sans-serif;
  font-weight: normal;
}
#popupOverlay #popupWrap .popup-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#popupOverlay #popupWrap .popup-content dl dt {
  width: 90px;
}
#popupOverlay #popupWrap .popup-content dl dd {
  margin-left: 0;
  width: calc(100% - 90px);
}
#popupOverlay #popupWrap .popup-content table {
  width: 100%;
  border-collapse: collapse;
}
#popupOverlay #popupWrap .popup-content table th, #popupOverlay #popupWrap .popup-content table td {
  padding: calc(var(--unit-size) * 2) 0;
  border-bottom: 0.5px solid #333;
}
#popupOverlay #popupWrap .popup-content table th {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  white-space: nowrap;
  padding-right: 30px;
}
@media (max-width: 767px) {
  #popupOverlay #popupWrap .popup-content table th, #popupOverlay #popupWrap .popup-content table td {
    display: block;
    width: 100%;
  }
  #popupOverlay #popupWrap .popup-content table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
#popupOverlay #popupWrap .popup-content .tab-content {
  display: none;
}
#popupOverlay #popupWrap .popup-content .tab-content.open {
  display: block;
}

#form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#form #formWrap {
  position: relative;
  height: 85vh;
  background: #fff;
  width: 90%;
  max-width: 500px;
  margin: 0 1rem;
  border-radius: 8px;
  overflow: scroll;
  background: #f7f8fa;
}
#form .form-close {
  position: relative;
  width: 90%;
  max-width: 500px;
  margin-bottom: 5px;
}
#form #formClose {
  position: absolute;
  z-index: 2;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  bottom: -35px;
  cursor: pointer;
  font-size: 25px;
}
#form fieldset {
  display: none;
}

.content h1 {
  font-size: 1.3rem;
  padding: 20px;
  color: #10407f;
  font-weight: bold;
}

table.form {
  width: 90%;
  margin: auto;
}
table.form * {
  font-size: 16px;
}
table.form th, table.form td {
  display: block;
  text-align: left;
}
table.form th {
  font-weight: normal;
  position: relative;
  color: #10407f;
  font-weight: bold;
}
table.form th span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 10px;
  background: #e64f4f;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  padding: 2px 5px;
}
table.form th span::before {
  content: '必須';
}
table.form td {
  margin-bottom: calc(var(--unit-size) * 2);
}

input, input[type="radio"] + span, input[type="checkbox"] + span, textarea, select {
  padding: 10px;
  width: 100%;
  border: 1px solid #e2e4e7;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
}

input[type="radio"], input[type="checkbox"] {
  cursor: pointer;
  display: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 13px 10px;
}

.wpcf7-radio, .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.wpcf7-radio label, .wpcf7-checkbox label {
  display: block;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}
.wpcf7-radio input[type="radio"] + span,
.wpcf7-checkbox input[type="checkbox"] + span {
  position: relative;
  display: block;
  padding: 5px 10px;
}
.wpcf7-radio.checkmark input[type="radio"] + span,
.wpcf7-checkbox input[type="checkbox"] + span {
  padding-left: 33px;
}
.wpcf7-radio.checkmark input[type="radio"] + span::before,
.wpcf7-checkbox input[type="checkbox"] + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #dedede;
}
.wpcf7-radio.checkmark input[type="radio"]:checked + span::after,
.wpcf7-checkbox input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  display: block;
  left: 14px;
  top: 34%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 10px;
  border: 1px solid #4d91e0;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.wpcf7-radio input[type="radio"]:checked + span,
.wpcf7-checkbox input[type="checkbox"]:checked + span {
  background: #4d91e0;
  color: #fff;
}

input[type="submit"] {
  border-radius: 20px;
  background: #006bba;
  color: #fff;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

input[type="submit"]:hover {
  background: #005798;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

#transfer table {
  width: 100%;
  background: #fff;
  padding: 15px;
}
#transfer table th, #transfer table td {
  display: inline-block;
  margin-bottom: 20px;
}
#transfer table th {
  text-align: left;
  width: 200px;
  color: #0c5e34;
}
#transfer table td {
  width: calc(100% - 200px);
}
#transfer table td input, #transfer table td select {
  max-width: 400px;
}
@media (max-width: 767px) {
  #transfer table th, #transfer table td {
    display: block;
    width: 100%;
  }
  #transfer table th {
    margin-bottom: 5px;
    font-weight: bold;
  }
}
#transfer input[type="submit"] {
  display: block;
  max-width: 200px;
  margin: 20px auto;
}

.thanks {
  margin: calc(var(--unit-size) * 5) auto 0;
  background: #fff;
  padding: calc(var(--unit-size) * 3) calc(var(--unit-size) * 4);
  text-align: left;
  width: 100%;
  max-width: 800px;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .thanks {
    text-align: center;
  }
}
