@charset "UTF-8";
/* CSS Document */
:root {
  --fill_white: rgba(255,255,255,0.80);
  --fill_brown: #967e75;
  --color_brown: #967e75;
  --color_link: rgba(48,135,187,1.00);
  --color_green: rgba(18,222,34,1.00);
  --color_hover: rgba(231,237,238,1.00);
  --color_hover2: rgba(52,179,201,1.00);
  --color_cta: #12de22;
  --color_hover_blue: rgba(233,242,245,1.00);

}

body,form.form {
	font-family: "M PLUS 1p", sans-serif !important;
	font-weight: 400;
	font-style: normal;
	color: #222;
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    word-break: normal; /* 単語の分割はデフォルトに依存 */
	line-break: strict; /* 禁則処理を厳格に適用 */
}


* {
	box-sizing: border-box;
}

/* AEフォーム */

.ae_form_body body {
	margin: 0;
	padding: 0
}

#ae_form form {
	container-type: inline-size;
}

h2 {
	margin-top: 0;
	line-height: 1.2;
	margin-bottom: 24px;
}
#pardot-form {
	margin: 0;
	padding: 3px;
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
}
	
#pardot-form form.form p {
	clear: left;
	line-height: 1.4em;
	margin: 0px !important;
	padding: 0px !important;
}
#pardot-form .form p.form-field {
	margin-top: 36px!important;
}
/* 入力欄補足テキスト */
#pardot-form .description {
	margin-top: 8px;
	display: inline-block;
}


#pardot-form input[type="text"].text,
#pardot-form input[type="url"],
#pardot-form input[type="email"],
#pardot-form input[type="tel"],
#pardot-form input[type="number"],
#pardot-form input[type="date"],
#pardot-form textarea {
    min-width: 140px !important;
    padding: 11px 11px !important;
    font-size: 16px !important;
    border: solid #ebebeb 1px;
    border-radius: 3px;
    height:auto !important;
    box-shadow: #888 0 0px 1px inset;
    transition: 0.5s;
	width: 100%;
}
#pardot-form select {
    min-width: 150px !important;
    padding: 10px !important;
    font-size: 14px !important;
    border: solid #dfdfdf 1px;
    border-radius: 4px;
    height:auto !important;
    width: 100% !important;
    box-shadow: #888 0 1px 2px;
     -webkit-appearance: none;
      appearance: none;
}

#pardot-form .error input[type="text"].text,
#pardot-form .error input[type="url"],
#pardot-form .error input[type="email"],
#pardot-form .error input[type="tel"],
#pardot-form .error input[type="number"],
#pardot-form .error input[type="date"],
#pardot-form .error textarea,
#pardot-form .error select {
    background-color: #ffffe3;
}

#pardot-form .fieldset {
	padding: 50px 120px !important;
	border: none !important;
	background-color: #F1F1F1;
	border-radius: 7px;
	display: block;
}
#pardot-form .hr {
	padding-bottom: 16px;
}


form.form p.no-label {
	margin: .2em 0 0 0;
	padding: 0;
}
form.form p.submit {
	margin: 24px 0 0 !important;
	padding: 0;
	text-align: center;
}


#pardot-form div label {
	float: none;
	margin: 0 0 8px 0;
	padding: 0;
	text-align: left;
	width: auto;
	color: #000;
	font-weight: 500;
}
#pardot-form div.required label {
	background-image: none;
}

#pardot-form div label.field-label {
	display: block;
	font-size: 16px;
}
@media  (max-width: 639px) {
	#pardot-form div label.field-label {
		font-size: 14px;
	}
}
#pardot-form span.value {
	margin-left: 0;
}


#pardot-form div label.field-label::before {
	display: inline-block;
	content: '任意';
	margin-right: 8px;
	padding: 3px 4px;
	font-size: 12px;
	background-color: #43473C;
	border-radius: 3px;
	color: black;
	line-height: 1;
	border: solid 1px #ddd;
	background-color: rgb(241, 241, 241);
}
#pardot-form div.required label.field-label::before {
	background-color: #6ca318;
	content: '必須';
	color: white;
	border: none;
}
#pardot-form div.required.error label.field-label::before {
  animation-duration: 2s;
  animation-name: brink;
	animation-iteration-count: infinite;
	animation-duration: ease-in;
}
@keyframes brink {
  0% {
    background-color: #673532;
  }
  40% {
    background-color: #FB0004;
  }
  60% {
    background-color: #FB0004;
  }
  100% {
    background-color: #673532;
  }
}


/* ラジオボタン */
#pardot-form .ae_form_radio span.value span {
	font-size: 15px;
	font-weight: 500;
	margin: 8px 0 !important;
	line-height: 1.2;
}

/* 一覧 */
#pardot-form .CF_Interest_Field span.value,
#pardot-form .CF_Work span.value,
#pardot-form .CF_Issue span.value,
#pardot-form .CF_Checkbox01 span.value,
#pardot-form .CF_Checkbox02 span.value,
#pardot-form .CF_Checkbox03 span.value,
#pardot-form .CF_Checkbox04 span.value,
#pardot-form .CF_Checkbox05 span.value {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 8px 16px;
	max-height: 200px;
	overflow-y: auto;
	padding: 8px;
	border-radius: 8px;
	background-color: rgba(255,255,255,0.80);
}
#pardot-form .CF_Interest_Field span.value > span,
#pardot-form .CF_Work span.value > span,
#pardot-form .CF_Issue span.value > span,
#pardot-form .CF_Checkbox01 span.value > span,
#pardot-form .CF_Checkbox02 span.value > span,
#pardot-form .CF_Checkbox03 span.value > span,
#pardot-form .CF_Checkbox04 span.value > span,
#pardot-form .CF_Checkbox05 span.value > span,
.value_list_ul li label
{
	display: grid !important;
	grid-template-columns: 20px auto;
	column-gap: 6px;
	align-items: center;
}	 

@container (max-width: 480px){
	#pardot-form .CF_Issue span.value,
	#pardot-form .CF_Interest_Field span.value{ 
	max-height: 140px;
	}
}

#pardot-form .CF_Interest_Field span.value > span label,
#pardot-form .CF_Work span.value > span label,
#pardot-form .CF_Issue span.value > span label,
#pardot-form .CF_Checkbox01 span.value > span label,
#pardot-form .CF_Checkbox02 span.value > span label,
#pardot-form .CF_Checkbox03 span.value > span label,
#pardot-form .CF_Checkbox04 span.value > span label,
#pardot-form .CF_Checkbox05 span.value > span label {
	line-height: 1.1 !important;
	margin: 0;
	font-size: 14px;
}	 

/* リストのUL */
.value_list_ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.value_list_ul > li {
	margin: 0;
	padding: 0;
	line-height: 1.2;
}
/*span.value > span {
	margin: 3px 0;
}*/
.value_list_ul > li input[type=checkbox],
span.value > span input[type=checkbox]{
	display: inline-block;
	  -ms-transform: scale(1.3, 1.3);
	  -webkit-transform: scale(1.3, 1.3);
	  transform: scale(1.2, 1.2);	
}


.value_list_ul.value_list_ul_column{
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 4px 16px;
}


@media  (max-width: 639px) {
	#pardot-form .CF_Interest_Field span.value,
	#pardot-form .CF_Work span.value,
	#pardot-form .CF_Issue span.value {
		gap: 4px 12px;
	}
	#pardot-form .CF_Interest_Field span.value > span,
	#pardot-form .CF_Work span.value > span,
	#pardot-form .CF_Issue span.value > span {
		grid-template-columns: 18px auto;
		column-gap: 4px;
	}	
}


/* 日付 */
form.form input.date {
	padding: 12px 28px 12px !important;
	border: solid #ebebeb 2px;
	font-size: 16px;
	border-radius: 3px;
	box-shadow: #888 0 0px 1px inset;
	background-position: 6px center !important;
	transition: 0.5s;
}




/* 製品／サービスなどの名称 */
 #pardot-form .CF_Inquiry_Product textarea {
	height: 100px !important;
}



/* 送信ボタン */
#pardot-form p.submit {
	margin: 24px 0 0;
	text-align: center;
}

#pardot-form input[type="submit"] {
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
    font-size: 18px !important;
    padding: 18px 24px !important;
	background-color: var(--color_green);
	color: white;
	border-radius: 6px;
	min-width: 220px;
	line-height: 1;
	transition: 0.5s;
}
#pardot-form input[type="submit"]:hover {
	background-color: #9EE723;
}
#pardot-form input[type="submit"]:active {
	background-color: #47690E;
}
#pardot-form div.no-label {
margin: 4px 0 24px 0;
}






input::placeholder {
  color: #888;
}


/*  フォームハンドラー用CSS  */

.schedule_list_wrap {
	max-height: 350px;
	overflow: scroll;
}


.aeFormRow {
	margin-bottom: 24px
}

.aeForm fieldset legend {
	background-color: transparent !important;
}

.aeForm {
    width: 100% !important;
}

.aeForm input[type=text],
.aeForm input[type=url],
.aeForm input[type=email],
.aeForm input[type=tel],
.aeForm input[type=number],
.aeForm input[type=date],
.aeForm textarea {
	min-width: 150px !important;
	padding: 6px 6px !important;
	font-size: 15px !important;
	border: solid #ebebeb 2px;
	border-radius: 3px;
	height:auto !important;
	box-shadow: #888 0 0px 1px inset;
	width: 100% !important;
	transition: 0.5s;
}
.aeForm input[type=text]:focus,
.aeForm input[type=url]:focus,
.aeForm input[type=email]:focus,
.aeForm input[type=tel]:focus,
.aeForm input[type=number]:focus,
.aeForm input[type=date]:focus,
.aeForm textarea:focus {
	box-shadow: #888 0 1px 1px,  #AAA 0 1px 5px 2px;
	border: solid #ebebeb 2px;
}

.aeForm input[type=text],
.aeForm input[type=url],
.aeForm input[type=email],
.aeForm input[type=tel],
.aeForm input[type=number],
.aeForm input[type=date],
.aeForm textarea {
	min-width: 160px !important;
	border: solid #F7F7F7 2px;
}

.aeForm #postalcode,
.aeForm #state,
.aeForm #phone{
		max-width: 200px !important;
}

.aeForm select {
	min-width: 160px !important;
	padding: 6px !important;
	font-size: 14px !important;
	border: solid #BCBCBC 1px;
	border-radius: 4px;
	height:auto !important;
	width: 100% !important;
	box-shadow: #888 0 1px 2px;
	 -webkit-appearance: none;
	  appearance: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("https://www.too.com/common/images/select_arrow_down.svg");
    background-repeat: no-repeat;
    background-size: 16px auto; /* 画像のサイズ（幅 高さ）*/
    background-position: right 12px center; /* 画像の位置 */
}


 .aeForm label {
    font-weight: 500;
    font-size: 15px;
    color: #000;
	margin-bottom: 8px;
}

.aeForm input[type="radio"],
.aeForm input[type="checkbox"] {
    height: 18px;
}
.aeForm input[type="radio"] + label,
.aeForm input[type="checkbox"] + label,
.aeForm input[type="radio"] + .checkBox_label,
.aeForm input[type="checkbox"] + .checkBox_label {
    font-size: 15px;
}
.aeForm input[type="radio"] + .checkBox_label,
.aeForm input[type="checkbox"] + .checkBox_label {
    display: inline-block;
	font-weight: 600;
	margin-left: 8px;
}



/* 送信ボタン */
.aeForm input[type='submit'] {
    font-size: 17px;
    padding: 15px 60px;
	max-width: 280px;
	background-color: #7DA603;
	color: #FFF;
	border: none;
	border-radius: 60px;
	transition: 0.5s;
}
.aeForm input[type='submit']:hover{
	background-color: #A4E54F;
    box-shadow: rgba(0,0,0,0.4)0 1px 3px 1px,  rgba(0,0,0,0.3)0 2px 10px 2px;
}
.aeForm input[type='submit']:active{
    color: #DDD;
	background-color: #72A62E;
    box-shadow: rgba(0,0,0,0.4)0 1px 2px 0px,  rgba(0,0,0,0.3)0 2px 5px 1px;
    margin-top: 2px;
    margin-bottom: 0px;
}

/*　職位　*/
.aeForm #title {
    max-width: 200px;
}

/* 業種 */
.aeForm #industry {
    max-width: 300px;
}
/* 職位 */
.aeForm #NumberOfEmployees
 {
    max-width: 200px;
}
/* 参加人数 */
.aeForm #numberPersons
 {
    max-width: 200px;
}
/* 都道府県 */
.aeForm #prefecture
 {
    max-width: 200px;
}
/* 参加人数 */
.aeForm #apple_count
 {
    max-width: 200px;
}

	
	
/* 　入力エラー  */
.aeForm .err {
  color: red;
  font-size: 0.9em;
}
.aeForm .elmentLabel::before {
	content: "任意";
	color: #FFF;
	background-color: #5D5D5D;
	display: inline-block;
	padding: 3px 4px;
	border-radius: 5px;
	margin-right: 8px;
	line-height: 1;
	font-weight: 300;
	font-size: 13px;
}


.aeForm .elmentLabel.required::before {
	content: "必須";
	color: #FFF;
	background-color: #2B9516;
}


.block_wrap {
	display: grid;
	column-gap: 16px;
}
.block_wrap.block_2{
	grid-template-columns: repeat( 2, 1fr );
}
.block_wrap.block_3 {
	grid-template-columns: repeat( 3, 1fr );
}

@media  (max-width: 639px) {
	.block_wrap {
		column-gap: 6px;
	}
}



/* 職位 都道府県　・郵便番号 */
.zip,
.job_title,
.state,
.employees,
.industry,
.phone{
	width: 240px;
}




/*　プライバシー */



#pardot-form .CF_Privacy {
	margin-top: 56px !important;
}
@media  (mim-width: 640px) {
	#pardot-form .CF_Privacy {
		margin-top: 65px !important;
	}
}
#pardot-form .CF_Privacy span.value span {
	width: 100%;
	display: grid;
	grid-template-columns: 22px auto;
	font-size: 15px;
	align-items: center;
}
#pardot-form .CF_Privacy span.value span label{
	margin: 0;
}



.privacy_wrap {
	margin-top: 16px;
	margin-bottom: 24px;
	padding-left: 16px;
	border-left: solid 1px #AAA;
}
.privacy_wrap .title{
    font-size: 20px;
    font-weight: bold;
}
.privacy_wrap .p{
    font-size: 13px;
}
.privacy_wrap .ul li{
    font-size: 12px;
    display: block;
    margin: 3px 0;
    line-height: 115%;
}
.privacy_wrap,
.privacy_wrap p {
    font-size: 14px !important;
    line-height: 1.4 !important;
	margin-left: 0;
	margin-right: 0;
}
.privacy_wrap h4,
.privacy_wrap h5 {
    font-size: 120% !important;
    line-height: 1.3 !important;
    font-weight: bold;
	font-weight: 600;
    margin-left: 0 !important;
    margin-right: 0 !important;
	margin-bottom: 10px;
}
.privacy_wrap .goto_privacy_policy {
    font-size: 13px !important;
    line-height: 1;
    padding: 8px 15px !important;
    border: solid 1px #444;
    border-radius: 50px;
    display: inline-block;
    white-space: nowrap;
	color: #000;
	text-decoration: none;
    background-color: #FFF;
}
@media  (max-width: 639px) {
	.privacy_wrap .goto_privacy_policy {
		padding: 6px 12px !important;
	    border: solid 1px #888;
	}
}
.privacy_wrap .goto_privacy_policy a{
	color: #000 !important;
    text-decoration: none;
}
.privacy_wrap .privacy_list {
	margin-top: 10px;
	padding-left: 0 !important;
}
#pardot-form .privacy_wrap .privacy_list li {
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin-bottom: 3px !important;
	margin-left: 1.5em;
	text-indent: -1.5em;
	color: #444;
	display: block;
	padding-left: 0;
}
@media  (max-width: 639px) {
	.privacy_wrap .privacy_list li {
		margin-bottom: 0 !important;
		padding: 2px;
	}
}
.privacy_wrap .privacy_list li:before {
    content: '●';
    color: #AAA;
    margin-right: 5px;
}
.privacy_policy_text {
	color: #000;
}



input[type="submit"]:disabled {
	opacity: 0.5;
}



/* 標準CSSクリア */
form.form div.form-field {
	margin: 0 !important;
	margin-bottom: 36px !important;
	padding: 0 !important;
}
@media  (max-width: 639px) {
	form.form div.form-field {
		margin-bottom: 20px !important;
	}
}
form.form p.errors {
	padding: 8px !important;
	text-align: center;
	font-size: 16px;
	margin-top: 16px;
}
form.form p.no-label {
margin: 6px 0 0 0 !important;
	font-size: 14px;
}
