.contact {
    max-width: 1000px;
    margin: 0 auto;
}
.contact-text {
    max-width: 650px;
    margin: 0 auto;
}
/* お問合せフォーム入力欄 */
.contact-table {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 100px 0;
}
.contact-table dt {
    width: 25%;
}
.contact-table dd {
    width: 75%;

}
.contact-table dt, .contact-table dd {
    margin: 0;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    box-sizing: border-box;
}
/* ラジオボタン */
/* .wpcf7-radio .wpcf7-list-item {
    margin: 0 1em 0 0;
} */
.radio-box input[type="radio"] {
    display: none;
}
.radio-box .wpcf7-list-item-label {
    position: relative;
    height: 20px;
    line-height: 20px;
    padding: 10px 10px 10px 25px;
    display: inline-block;
    border: 1.5px solid #999;
    border-radius: 50px;
}
.radio-box .wpcf7-list-item-label::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1.5px solid #999;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 7px;
    top: calc(50% - 7px);
    box-sizing: border-box;
}
/* ラジオボタンチェック時 */
.radio-box input[type="radio"]:checked + .wpcf7-list-item-label::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: calc(50% - 7px);
    border: 2px solid #fcfcfc;
    background-color: #F77888;
    box-sizing: border-box;
}
.radio-box input[type="radio"]:checked + .wpcf7-list-item-label {
    background-color: #F5C2C2;
    border: 1.5px solid #F5C2C2;
    transition: .2s;
}
/* チェックボタン */
.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 1em 10px 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
input[type="checkbox"] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1.5px solid #999;
  content: "";
  display: inline-block;
  height: 13px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 13px;
  border-radius: 5px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url(../img/check-btn.png) no-repeat center;
  background-size: contain;
  content: "";
  height: 10px;
  left: 3px;
  position: absolute;
  top: 8px;
  width: 10px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #F77888;
  border: 1.5px solid #F77888;
}
/* チェック並び */
.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}
/* CF7 */
.wpcf7-form-control-wrap, .wpcf7-form-control-wrap > input, .wpcf7-form-control-wrap > textarea {
    width: 100%;
    /* height: 45px; */
    font-size: 1em;
}
.wpcf7-form-control-wrap > input {
    height: 45px;
}
.wpcf7-form-control-wrap > textarea {
    min-height: 200px;
}
.contact-table p {
    margin: 0;
}
/* 入力箇所カスタム */
select {
	padding: 10px;
}
select,
.wpcf7 input,
.wpcf7 textarea {
    border: 1.5px solid #999;
    border-radius: 10px;
}
select:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus{
    border: 1.5px solid #F5C2C2;
    outline: 0;
    /* font-size: 18px; */
}
.wpcf7-form-control.wpcf7-file {
	border: none;
	border-radius: 0px;
}
/* 必須 */
.CF7_req, .CF7_free {
    font-size: 10px;
    background-color: #F77888;
    border-radius: 5px;
    padding: 2px 5px;
    color: #fcfcfc;
    margin-left: 5px;
}
.CF7_free {
	background-color: #70C1BC;
}
.small {
	font-size: 10px;
	color: #666;
}
/* 送信ボタン */
input[type="submit"] {
	font-family: "M PLUS Rounded 1c", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 230px;
	font-size: 20px;
  padding: .9em 2em;
  border-radius: 50px;
  background-color: #F77888;
  border: none;
  color: #fcfcfc;
  cursor: pointer;
  font-weight: bold;
}
span.wpcf7-spinner {
  display: none;
}
/* 送信ボタン */
.submit-btn {
  display: inline-block; /*インラインブロック要素にする*/
  position: relative;
}
.submit-wrapper {
  text-align: center;
}
.submit-btn::before,
.submit-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 12.5px);
  right: 30px;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #fcfcfc;
  transform-origin: calc(100% - 1.5px) 50%;
}

.submit-btn::before {
  transform: rotate(45deg);
}

.submit-btn::after {
  transform: rotate(-45deg);
}

.submit-btn .wpcf7-submit:focus {
  border: none;
}
.submit-btn:hover::after,
.submit-btn:hover::before {
  right: 25px;
  transition: .2s;
}
/* おもちゃ問い合わせ */
.faq-box .accordion_one {
	width: 100%;
    border-radius: 30px;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
    border: 3px solid #F8CDD2;
    overflow: hidden;
}
/* ac_header */
.faq-box .ac_header {
	background: #F8CDD2;
    padding: 10px 40px;
	position:relative;
}
/* ac_inner */
.faq-box .ac_inner {
    padding: 10px 40px;
	background-color: #fcfcfc;
}

/* オープン時 */
.ac_header.open .i_box:after {
  height: 0;
}
.open {
    display: block;
}

.question p, .answer p {
    margin: 10px 20px 10px 0;
}
/* アコーディオン */
.i_box {
  position: absolute;
  top: calc( 50% - 10.5px);
  right: 2rem;
  width: 21px;
  height: 21px;
}
.i_box:before, .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.i_box:before {
  border-top: 3px solid #fcfcfc;
  border-radius: 10px;
  width: 21px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.i_box:after {
  border-left: 3px solid #fcfcfc;
  border-radius: 10px;
  width: 0;
  height: 21px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.toy_contact_box {
	margin-top: 150px;
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
	.toy_contact_box {
		margin-top: 80px;
	}
	.contact-table {
		margin: 80px 0;
	}
  .contact-table dt, .contact-table dd {
      width: 100%;
      padding: 0.5em 0;
      margin: 0;
  }
	/* 	faq */
	.ac_header, .ac_inner {
		padding: 10px 5px;
	}
	.i_box {
	  position: absolute;
	  top: calc( 50% - 7.5px);
	  right: 1rem;
	  width: 15px;
	  height: 15px;
	}
	.i_box:before {
	  width: 15px;
		right: 3px;
	}
	.i_box:after {
	  height: 15px;
	  right: 9px;
	}
	.submit-btn p {
		margin: 0;
	}

}