@charset "UTF-8";

:root{
    --color_white:#fff;
    --color_white2:#f2f2f2;
    --color_red:#fe8abf;
    --color_blue:#4aadfe;
    --color_blue2:#273746;
}

/*--------------------------------------------------------
animation
--------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.fast {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.delay100 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}
  
.delay250 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.delay400 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}

.delay500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay750 {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.delay800 {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
}

.delay1000 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay1200 {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
}

.delay1250 {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.delay1600 {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
}

.delay2000 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay3000 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay4000 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.delay5000 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@-webkit-keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pickup {
  display: block;
  -webkit-animation-name: pickup;
          animation-name: pickup;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loading {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.loading {
  line-height: 0;
}
.loading span {
  display: inline-block;
  background-color: #333;
  width: 0.5em;
  height: 0.5em;
  margin: 0 5px;
  border-radius: 50%;
  opacity: 0;
}
.loading_white span {
  background-color: #fff;
}
.loading.isActive span {
  -webkit-animation: loading 0.3s linear forwards;
          animation: loading 0.3s linear forwards;
}
.loading.isActive span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.loading.isActive span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

/***********
* slideInRight *
************/
@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
.slideInRight {
  visibility: hidden;
}

.slideInRight.go {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

/***********
* slideInLeft *
************/
@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
.slideInLeft {
  visibility: hidden;
}

.slideInLeft.go {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

/*************
* FadeInDown *
*************/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  opacity: 0;
  transform: translateY(-10%);
}

.fadeInDown.go {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***********
* flash *
************/
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash.go {
  -webkit-animation-name: flash;
          animation-name: flash;
}

/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeInUpShort {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}
.fadeInUpShort.go {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
}

/*--------------------------------------------------------
Reset
--------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  font-size: 1.6rem; /*16px*/
  color: #333;
  line-height: 1.5;
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeSpeed;
}

main{
    overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
}
a img {
  border-style: none;
}

/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
img {
  vertical-align: bottom; /* 一番上の画像だけ注意。隙間が空く可能性あり */
  line-height: 0 !important;
  /* display:block; */
}

button {
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0;
}
button:focus {
  outline: none;
}
button:hover {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------
定数（基本的に、全サイト共通に使えるもの）
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.block {
  display: block;
}

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

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

.pointer {
  cursor: pointer;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.margin_b100 {
  margin-bottom: 100px;
}

.margin_b90 {
  margin-bottom: 90px;
}

.margin_b80 {
  margin-bottom: 80px;
}

.margin_b70 {
  margin-bottom: 70px;
}

.margin_b60 {
  margin-bottom: 60px;
}

.margin_b50 {
  margin-bottom: 50px;
}

.margin_b40 {
  margin-bottom: 40px;
}

.margin_b30 {
  margin-bottom: 30px;
}

.margin_b20 {
  margin-bottom: 20px;
}

.margin_b10 {
  margin-bottom: 10px;
}

.paddingT100 {
  padding-top: 100px;
}

.paddingT90 {
  padding-top: 90px;
}

.paddingT80 {
  padding-top: 80px;
}

.paddingT70 {
  padding-top: 70px;
}

.paddingT60 {
  padding-top: 60px;
}

.paddingT50 {
  padding-top: 50px;
}

.paddingT40 {
  padding-top: 40px;
}

.paddingT30 {
  padding-top: 30px;
}

.paddingT20 {
  padding-top: 20px;
}

.paddingT10 {
  padding-top: 10px;
}

.padding_b100 {
  padding-bottom: 100px;
}

.padding_b90 {
  padding-bottom: 90px;
}

.padding_b80 {
  padding-bottom: 80px;
}

.padding_b70 {
  padding-bottom: 70px;
}

.padding_b60 {
  padding-bottom: 60px;
}

.padding_b50 {
  padding-bottom: 50px;
}

.padding_b40 {
  padding-bottom: 40px;
}

.padding_b30 {
  padding-bottom: 30px;
}

.padding_b20 {
  padding-bottom: 20px;
}

.padding_b10 {
  padding-bottom: 10px;
}

@media screen and (max-width: 900px) {
  .margin_b100 {
    margin-bottom: 11%;
  }
  .margin_b90 {
    margin-bottom: 10%;
  }
  .margin_b80 {
    margin-bottom: 9%;
  }
  .margin_b70 {
    margin-bottom: 8%;
  }
  .margin_b60 {
    margin-bottom: 7%;
  }
  .margin_b50 {
    margin-bottom: 6%;
  }
  .margin_b40 {
    margin-bottom: 5%;
  }
  .margin_b30 {
    margin-bottom: 4%;
  }
  .margin_b20 {
    margin-bottom: 3%;
  }
  .margin_b10 {
    margin-bottom: 2%;
  }
  .paddingT100 {
    padding-top: 11%;
  }
  .paddingT90 {
    padding-top: 10%;
  }
  .paddingT80 {
    padding-top: 9%;
  }
  .paddingT70 {
    padding-top: 8%;
  }
  .paddingT60 {
    padding-top: 7%;
  }
  .paddingT50 {
    padding-top: 6%;
  }
  .paddingT40 {
    padding-top: 5%;
  }
  .paddingT30 {
    padding-top: 4%;
  }
  .paddingT20 {
    padding-top: 3%;
  }
  .paddingT10 {
    padding-top: 2%;
  }
  .padding_b100 {
    padding-bottom: 11%;
  }
  .padding_b90 {
    padding-bottom: 10%;
  }
  .padding_b80 {
    padding-bottom: 9%;
  }
  .padding_b70 {
    padding-bottom: 8%;
  }
  .padding_b60 {
    padding-bottom: 7%;
  }
  .padding_b50 {
    padding-bottom: 6%;
  }
  .padding_b40 {
    padding-bottom: 5%;
  }
  .padding_b30 {
    padding-bottom: 4%;
  }
  .padding_b20 {
    padding-bottom: 3%;
  }
  .padding_b10 {
    padding-bottom: 2%;
  }
}
.visible1800, .visible1000, .visible900, .visible750, .visible630, .visible600, .visible500, .visible400, .visible360 {
  display: none;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*重なりの優先度*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*要素固定*/
.fixed {
  position: fixed;
  z-index: 999;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z7 {
  z-index: 7;
}

.z8 {
  z-index: 8;
}

.z9 {
  z-index: 9;
}

.z10 {
  z-index: 10;
}

/*横幅*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.disabled {
  pointer-events: none; /*リンクを無効にする*/
}

.selectdisabled {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.cp {
  font-family: Verdana, "Droid Sans", "メイリオ", sans-serif;
}

.vh100 {
  height: 100%;
  min-height: 100vh;
}

.hidden {
  overflow: hidden;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.fullscreen {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contents {
  width: 900px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.contents1000 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.img_center {
  margin-left: -450px;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.red {
  color: #FF0A32;
}

.gray {
  color: #555;
}

.pink {
  color: #F75A94;
}

.bold {
  font-weight: bold;
}

.bg_blue2{
    background-color: var(--color_blue2);
}

.bg_white2{
    background-color: var(--color_white2);
}

.cs_bg1{
    background-image: url(../img/cs_bg1.png);
    background-position: top center;
    background-repeat: repeat-y;
    background-size: contain;
}

.cs_bg2{
    background-image: url(../img/cs_bg2.png);
    background-position: top center;
    background-repeat: repeat-y;
    background-size: contain;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  z-index: 2;
  text-align: center;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}

.footer {
  position: absolute;
  bottom: 0;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 3%;
}

.copyright,
.copyright a {
  color: #fff;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.btn_top{
    bottom: 4%;
    left: 0;
    right: 0;
}

.cs_03{
    margin-top: -20%;
}

.reviewContainer.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 85%;
  margin: 0 auto;
}

.reviewItem {
  width: 50%;
  margin-bottom: 5%;
  padding: 0 2%;
  cursor: pointer;
}

.reviewImg {
  width: 100%;
}
.reviewImg img {
  width: 100%;
  border-radius: 20px;
}

.reviewTitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 95%;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: bold;
}

.reviewUserName {
  width: 95%;
  margin: 0 auto;
}

.goDetailBtn {
  text-align: right;
  font-weight: bold;
}

.comment {
  top: 52%;
  margin-left: 6%;
  font-size: 1.6rem;
}

.qaList {
  margin: 0 auto;
  padding-bottom: 10%;
  width: 85%;
}
.qaList dl:not(:first-child) {
  margin-top: 2%;
}
.qaList.isActive {
  display: block;
}

.question {
  background-color: #fff;
  box-shadow: 0px 5px 0px -1px var(--color_blue2);
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2.6rem;
  font-weight: bold;
  cursor: pointer;
}
.question::before {
  content: "Q";
  padding-right: 10px;
  font-size: 5rem;
  font-weight: bold;
  color: var(--color_blue);
}
.question::after {
  content: "＋";
  padding-left: 10px;
  font-size: 4rem;
  font-weight: bold;
  color: var(--color_blue2);
}
.question.active::after {
  content: "－";
  padding-left: 10px;
  font-size: 4rem;
  font-weight: bold;
  color: var(--color_blue2);
}
.question span{
    width: 100%;
}
  
.answer {
  padding: 20px 20px 50px;
  display: flex;
  align-items: flex-start;
  font-size: 2.6rem;
}
.answer::before {
  content: "A";
  padding-right: 10px;
  font-size: 5rem;
  font-weight: bold;
  color: var(--color_red);
}

.popupContainer {
  display: none;
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popupBackground {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.poopupBox {
  max-width: 500px;
  width: 90%;
  margin: 2% auto 0;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.poopupBoxInner {
  border-radius: 10px;
  padding: 40px 15px;
}
.poopupBoxInner div {
  overflow-y: auto;
  max-height: 70vh;
  --sb-track-color: #F1F1F1;
  --sb-thumb-color: #C1C1C1;
  --sb-size: 5px;
  scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}
.poopupBoxInner div::-webkit-scrollbar {
  width: var(--sb-size);
}
.poopupBoxInner div::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}
.poopupBoxInner div::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
}

.popupImg img{
    width: 100%;
}

.popupTitle {
  padding-bottom: 20px;
  font-size: 2.5rem;
  color: var(--color_blue2);
  cursor: pointer;
}

.pupupText {
  padding: 15px 0;
  color: var(--color_blue2);

}

.popupBoxCloseBtn {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color_blue2);
  cursor: pointer;
}

.modalWrap {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modalContainer {
  max-width: 760px;
  width: 95%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 50px;
}

.modalItem {
  position: relative;
}

.modalItemImg img {
  width: 100%;
}

.modalItemLinkBtn {
  position: absolute;
  top: 28%;
}

.modalItemCloseBtn {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 4rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.modalBackGronund {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: -50px;
  z-index: -1;
}

.slickBox img {
  margin: 0 auto;
}

/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --プラポリ-- */
.law_wrapper{
    overflow-y: scroll;
    width: 85%;
    height: 300px;
    margin: 0 auto;
    border: 2px solid var(--color_blue2);
    border-radius: 10px;
    padding: 20px;
    color: var(--color_blue2);
    font-size: 1.4rem;
    --sb-size: 5px;
}
.law_wrapper::-webkit-scrollbar {
    width: var(--sb-size);
  }
  .law_wrapper::-webkit-scrollbar-track {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .law_wrapper::-webkit-scrollbar-thumb {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    background: var(--color_blue2);
  }

.law_wrapper p{
    padding-bottom: 20px;
}

/* --プラポリ-end-- */
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
↓↓↓ フォーム部分 ↓↓↓
--------------------------------------------------------*/
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-moz-placeholder {
  color: #B5B5B5;
}

::placeholder {
  color: #B5B5B5;
}

.formField {
  font-size: 2rem;
  padding-bottom: 30px;
  width: 85%;
  margin: 0 auto;
  color: var(--color_blue2);
}
.formField input[type=text],
.formField input[type=email],
.formField input[type=password],
.formField input[type=tel],
.formField select,
.formField textarea {
  -webkit-appearance: none;
  width: 100%;
  padding: 1% 2% 1% 2%;
  border: 2px solid var(--color_blue2);
  border-radius: 10px;
}
.formField label,
.formField input[type=radio] {
  cursor: pointer;
}
.formField label:first-child {
  margin-right: 20px;
}
.formField input[type=radio] {
  position: relative;
  top: -2px;
  vertical-align: middle;
}
.formField .flex {
  display: flex;
}
.formField .checkboxBtn {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.formField .checkboxBtnInput {
  margin: 0;
  width: 0;
  opacity: 0;
}
.formField .checkboxBtnInput:checked + .checkboxBtnInputDummyparts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #F75A94;
}
.formField .checkboxBtnInput:checked + .checkboxBtnInputDummyparts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #F75A94;
}
.formField .checkboxBtnInputDummyparts {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: 5px;
  width: 32px;
  height: 32px;
  border: solid 2px #38C9E2;
  background: #FFFFFF;
  border-radius: 4px;
}
.formField .checkboxBtn-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.formField input[type=checkbox], .formField input[type=radio] {
  display: none;
}
.formField input[type=radio]:checked + .checkboxBtn::after {
  display: block;
}

.radio_wrap {
  display: flex;
  flex-direction: column;
}

.err_msg {
  color: #FF0A32;
  font-size: 0.8em;
}

.include_text_wrap {
  width: 80%;
  padding: 1% 1% 1% 2%;
  border: 2px solid #333;
  border-radius: 5px;
}

.include_text {
  height: 15rem;
  padding-right: 1%;
  overflow-y: scroll;
}

.scroll::-webkit-scrollbar {
  width: 15px;
  -webkit-appearance: none;
}
.scroll::-webkit-scrollbar-thumb {
  background: #FF0A32;
}

/*--------------------------------------------------------
↑↑↑ フォーム部分 ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
↓↓↓ 入会申込み部分 ↓↓↓
--------------------------------------------------------*/
/*--------------------------------------------------------
↑↑↑ 入会申込み部分 ↑↑↑
--------------------------------------------------------*/