@charset "UTF-8";

/* contact
---------------------------------------------------------------------------*/
#contactContents {
  text-align: center;
}

/* .sec-lead
------------------------------------*/
#contactContents .sec-lead {
  display: inline-block;
  border: 1px solid #979797;
  border-radius: 12px;
  margin: 10px auto 40px;
  padding: 0 55px 30px 55px;
}

#contactContents .sec-lead h2 {
  margin: -10px 0 28px;
}

#contactContents .sec-lead h2 strong {
  display: inline-block;
  background: #ffffff;
  padding: 0 18px;
  letter-spacing: 0.08em;
}

#contactContents .sec-lead p {
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

#contactContents .sec-lead p:last-of-type {
  margin-bottom: 0;
}

#contactContents .sec-lead p a {
  text-decoration: underline;
}

/* .sec-contact
------------------------------------*/
.sec-contact {
  width: 940px;
  margin: 0 auto;
  padding-top: 40px;
}

/* .tab-nav
------------------------------------*/
.tab-nav li {
  position: relative;
  float: left;
  /* TODO: 工場見学復活で、再修正 312px */
  width: 468px;
  height: 73px;
  margin-right: 2px;
}

.tab-nav li:last-of-type {
  margin-right: 0;
}

.tab-nav li a {
  display: block;
  position: relative;
  box-sizing: border-box;
  background: #f0f0f0;
  width: 100%;
  height: 70px;
  padding-top: 25px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  z-index: 2;
  transition: 0.1s linear;
}

.tab-nav li:hover a,
.tab-nav li.active a {
  opacity: 1;
  background: #ffffff;
}

.tab-nav li:hover a:before,
.tab-nav li.active a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f1f35b;
  width: 100%;
  height: 4px;
}

.tab-nav li:hover a:after,
.tab-nav li.active a:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 5px;
}

.tab-nav li:first-of-type:hover a:after,
.tab-nav li:first-of-type.active a:after {
  left: 1px;
}
.tab-nav li:last-of-type:hover a:after,
.tab-nav li:last-of-type.active a:after {
  left: -1px;
}

.tab-nav li:first-of-type:hover:before,
.tab-nav li.active:first-of-type:before,
.tab-nav li:last-of-type:hover:after,
.tab-nav li.active:last-of-type:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  background: #f1f35b;
  width: 1px;
  height: 73px;
  z-index: 3;
}

.tab-nav li:first-of-type:hover:before,
.tab-nav li.active:first-of-type:before {
  left: 0;
}

.tab-nav li:last-of-type:hover:after,
.tab-nav li.active:last-of-type:after {
  right: 0;
}

/* .tab-area
------------------------------------*/
.tab-area {
  position: relative;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #f1f35b;
  width: 940px;
  padding: 65px 65px 50px;
}

.form-lead {
  margin-bottom: 70px;
  text-align: center;
}

.form-lead p {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.form-lead p.attention {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.form-lead p a {
  text-decoration: underline;
}

.form-lead .contact-area {
  box-sizing: border-box;
  border: 1px solid #979797;
  border-radius: 8px;
  width: 670px;
  margin: 32px auto 0;
  padding: 20px 0 18px;
}

.form-lead .contact-area h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.form-lead .contact-area address {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.sub_annotation {
  margin: 16px 0 0 0;
}

.sub_annotation p {
  display: inline-block;
  font-size: 14px;
}

.sub_annotation a {
  display: inline-block;
  font-size: 13px;
  position: relative;
  margin-left: -3px;
}

.sub_annotation a:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: rgb(241, 243, 91);
}

.odm_checkbox input[type="checkbox"] {
  display: none;
}

.odm_checkbox_label {
  display: inline-flex !important;
  cursor: pointer !important;
  gap: 4px !important;
  align-items: center !important;
  position: relative;
}
.odm_checkbox_label::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: solid 1px #666;
}
.odm_checkbox_label::after {
  border-right: 2px solid #1d4898;
  border-bottom: 2px solid #1d4898;
  content: "";
  display: block;
  height: 8px;
  left: 4px;
  margin-top: 0;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(45deg);
  width: 4px;
}
input[type="checkbox"]:checked + .odm_checkbox_label::before {
  border-color: #666;
}
input[type="checkbox"]:checked + .odm_checkbox_label::after {
  opacity: 1;
}
