@charset "UTF-8";

.p-confirm-head {
background-color: #eaeaea;
padding-top: 134px;
line-height: 1.75;
}

.p-confirm-head__inner {
max-width: 710px;
margin: 0 auto;
padding-inline: 20px;
box-sizing: content-box;
width: auto;
}

.p-confirm-head__box {
height: 46px;
border: 1px solid #000;
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
height: 58px;
background-color: #fff;
color: #123f6c;

}

@media screen and (max-width: 767px) {
.p-confirm-head__box {
  font-size: 18px;
}
}

.p-confirm__bubble01 {
  margin-top: 42px;
  background-color: #fff;
padding: 18px;
color: #000;
font-size: 18px;
max-width: 457px;
position: relative;
}

@media screen and (max-width: 767px) {
.p-confirm__bubble01 {
  font-size: 16px;
}
}



.p-confirm__bubble01::after {
  content: '';
  background: url(../img/bubble01.png) no-repeat center / contain;
  width: 32px;
  aspect-ratio: 32 / 37.5;
  position: absolute;
  bottom: -36.5px;
  left: 30px;
}

@media screen and (max-width: 767px) {
.p-confirm__bubble01::after {
  bottom: -16px;
  width: 16px;
  aspect-ratio: 16 / 18.75;
}
}

.p-confirm__bubble02 {
margin-top: 40px;
color: #00a0c6;
padding: 18px;
font-size: 18px;
width: fit-content;
background-color: #fff;
position: relative;
max-width: 457px;
margin-left: auto;
}

@media screen and (max-width: 767px) {
.p-confirm__bubble02 {
  font-size: 16px;
}
}

.p-confirm__bubble02::after {
  content: '';
  background: url(../img/bubble02.png) no-repeat center / contain;
  width: 32px;
  aspect-ratio: 32 / 37.5;
  position: absolute;
  bottom: -36.5px;
  left: 60%;
}

@media screen and (max-width: 767px) {
.p-confirm__bubble02::after {
  bottom: -16px;
  width: 16px;
  aspect-ratio: 16 / 18.75;
}
}

.p-confirm__image {
margin-top: 44px;
max-width: 221px;
width: 100%;
margin-inline: auto;
}

/*ここからお問い合わせフォーム */

/*フォーム系の初期化 */

.input-text3 {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
border: 1px solid #cfcfcf;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	padding: 0.4em 0.8em;
	width: 100%;
  height: 100%;
  border-radius: 8px;
}

.input-text3:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.input-text3::placeholder {
  color: #bfbfbf;
}

.input-select3 {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;

border: 1px solid #cfcfcf;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	padding: 0.4em 0.8em;
	width: 153px;
  border-radius: 8px;
}

.input-select3::-ms-expand {
	display: none;
}

.input-select3:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.input-textarea3 {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
border: 1px solid #cfcfcf;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	height: 100%;
	padding: 0.4em 0.8em;
	width: 100%;
  border-radius: 8px;
}

.input-textarea3:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.input-textarea3::placeholder {
  color: #bfbfbf;
}

.wpcf7-list-item.first {
  margin: 0;
}
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
/* デフォルトのボタン */
input[type="radio"] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #8010cd;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 20px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .5s; /* 色をじんわり変化させる */
  width: 20px;
}
/* チェック後のボタン */
input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: #8010cd; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 4px #fff; /* 中心の色のスタイル */
}

.input-checkbox {
	display: none;
}

.input-checkbox + span {
	cursor: pointer;
	display: inline-block;
	margin: 57px 0.2em 0;
	padding: 0 0 0 2em;
	position: relative;
}

.input-checkbox + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #666;
	border-radius: 2px;
	content: "";
	display: block;
	height: 18px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}

.input-checkbox + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #3f3f3f;
	border-left: 3px solid #3f3f3f;
	content: "";
	display: block;
	height: 0.6em;
	left: 2px;
	margin-top: -0.2em;
	opacity: 0;
	position: absolute;
	top: 55%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.input-checkbox:checked + span::after {
	opacity: 1;
}

.input-submit3 {
	-webkit-appearance: none;
background-color: #123f6c;
	background-image: none;
	border: none;
	border-radius: 100vmax;
	color: #fff;
  font-weight: bold;
	cursor: pointer;
	text-decoration: none;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.input-submit3:hover,
.input-submit3:focus {
	outline: none;
}

.input-submit3::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.p-confirm-form {
line-height: 1.75;
background-color: #eaeaea;
padding-top: 55px;
}

.p-confirm-form__box-wrap {
  padding-inline: 20px;
  padding-bottom: 107px;
}

.p-confirm-form__box {
border: 6px solid #123f6c;
border-radius: 26px;
padding-inline: 22px;
max-width: 710px;
width: 100%;
margin-inline: auto;
font-size: 14px;
padding-top: 38px;
padding-bottom:30px;
background-color: #fff;

}

.p-confirm-form__ttl {
font-size: 18px;
color: #123f6c;
font-weight: bold;
margin-bottom: 18px;
}

.p-confirm-form__ttl:nth-of-type(n + 2) {
  margin-top: 60px;
}

.p-confirm-form__wrap {
margin-top: 18px;
}

.p-confirm-form__wrap-top {
font-size: 14px;
color: #3f3f3f;
}

.p-confirm-form__wrap-top.back {
  margin-top: 19px;
}

.p-confirm-form__wrap-top span {
  color: #ff0000;
  margin-left: 4px;
}

.p-confirm-form__wrap-bottom {
height: 47px;
margin-top: 3px;
position: relative;
}

.p-confirm-form__wrap-bottom.radios {
  height: auto;
}

.p-confirm-form__wrap-bottom.select {
  width: fit-content;
}

.p-confirm-form__wrap-bottom.select::before {
  display: none;
}

.p-confirm-form__wrap-bottom.select::after {
      position: absolute;
    content: '';
    background: url(../img/select_arrow_bottom.png) no-repeat center / contain;
    width: 8px;
    height: 6px;
    top: 42%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 10;
}

.p-confirm-form__wrap-bottom.textarea {
  height: 190px;
}

.p-confirm-form__wrap-bottom-flex1 {
display: flex;
align-items: center;
width: 219px;
}
.p-confirm-form__wrap-bottom-flex2 {
display: flex;
align-items: center;
width: 437px;
}

.spacer {
  display: none;
}

@media screen and (max-width: 600px) {

.p-confirm-form__wrap-bottom-flex2 {
  width: auto;
display: flex;
flex-wrap: wrap;
}

.spacer {
  display: block;
  width: 100%;
}

}


.p-confirm-form__wrap-bottom-flex1 .p-confirm-form__wrap-bottom {
  width: 93px;
}

.plus {
margin-left: 6px;
}

.bottom-yen {
  position: relative;
}

.bottom-yen::before {
  content: '売上高';
  position: absolute;
  left: 0;
  top: -25px;
}

.bottom-yen::after {
  content: '*';
  position: absolute;
  left: 45px;
  top: -25px;
  color: #ff0000;
}

@media screen and (max-width: 600px) {
.bottom-yen + .plus {
  margin-top: 45px;
}
}

.p-confirm-form__wrap-bottom-flex1 .p-confirm-form__wrap-bottom2 {
  width: 68px;
  height: 47px;
  margin-left: 17px;
}

.p-confirm-form__wrap-bottom-flex2 .p-confirm-form__wrap-bottom.bottom-year {
  width: 93px;
}

.p-confirm-form__wrap-bottom-flex2 .p-confirm-form__wrap-bottom.bottom-month {
  width: 68px;
  margin-left: 17px;
  height: 47px;
}


.p-confirm-form__wrap-bottom-flex2 .p-confirm-form__wrap-bottom2.bottom-yen {
 width: 153px;
 height: 47px;
 margin-left: 44.5px;
}

@media screen and (max-width: 600px) {
.p-confirm-form__wrap-bottom-flex2 .p-confirm-form__wrap-bottom2.bottom-yen {
  margin-left: 0;
  margin-top: 45px;
}
}

.p-confirm-form__wrap-bottom {
height: 47px;
margin-top: 3px;
}

.form-wraps {

}

.p-confirm-form__wrap-top2 {
}

.p-confirm-form__wrap-radios {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #efebf7;
height: 42px;
border-radius: 4px;
padding-left: 10px;
padding-right: 25px;
}

@media screen and (max-width: 767px) {
.p-confirm-form__wrap-radios {
  display: block;
  padding-block: 4px;
  height: auto;
}
}

.p-confirm-form__wrap-radios:nth-of-type(n + 2) {
  margin-top: 5px;
}

.p-confirm-form__wrap-checks-left {

}

.p-confirm-form__wrap-checks-radio {
position: relative;
top: 2px;
}

.p-confirm-form__concent-box {
  border: 1px solid #cfcfcf;
  color: #666;
    padding-top: 19px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 19px;
    height: 161px;
    margin-left: auto;
    margin-right: auto;
    overflow-y: scroll;
    background-color: #fff;
  margin-top: 39px;
  line-height: 1.75;

}

.p-confirm-form__concent-box h2 {
  font-size: 14px;
}
.p-confirm-form__concent-box p {
  font-size: 12px;
}

.p-confirm-form__concent-check {

}

.p-confirm-form__send {
width: 346px;
margin-inline: auto;
margin-top: 35px;
}

@media screen and (max-width: 600px) {
.p-confirm-form__send {
  width: 270px;

}
}
@media screen and (max-width: 390px) {
.p-confirm-form__send {
  width: 230px;

}
}

/* .p-confirm-form__concent-check .wpcf7-list-item-label::before{
display: none;
} */

.p-confirm-form__concent-check .wpcf7-form-control-wrap {
  width: fit-content;
  margin-inline: auto;
  display: block;
}

.p-confirm-form__concent-check .wpcf7-list-item-label{
display: inline-block;
}

/* contact form 7　バリデーションメッセージ修正 */

.wpcf7-not-valid-tip {
  white-space: nowrap;
  position: relative;
  top: -5px;
}

.input-text3 + .wpcf7-not-valid-tip {
  top: -3px;
}

.input-select3 + .wpcf7-not-valid-tip {
  top: -2px;
}

.input-textarea3 + .wpcf7-not-valid-tip {
  top: -8px;
}

.p-confirm-form__wrap-checks-radio .wpcf7-not-valid-tip {
  display: inline-block;
  position: relative;
    left: 11px;
    top: -5px;
}