@charset "utf-8";

/*修理関連*/

html {
  scroll-padding-top: 100px;
}

div#main_col {
  max-width: 1000px;
}

span.small {
  font-size: 75%;
}

.post_content p.note {
  font-size: 14px;
  padding-left: 2.6em;
  text-indent: -2.6em;
}

.post_content p.note2 {
  font-size: 14px;
  padding-left: 2em;
  text-indent: -2em;
}

.pc_hid {
  display: none;
}

.sp_hid {
  display: block;
}



/*フォームパーツ
-------------------------------------------------------*/

.toiawase table th {
  width: 12em;
}

.toiawase .required2 {
  background: #D32626;
  padding: 0 4px 1px 0;
  margin-left: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 80%;
}

.toiawase .submit2 {
  background: #f2e820;
  width: 67%;
  height: 3.6em;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0 30px 0;
  transition: all 0.7s ease-out;
  border: none;
  padding: 10px 10px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}

.toiawase .submit2:hover {
  background: #e0d504;
}

/* カレンダー
-------------------------------------------------------*/

.xo-event-calendar table.xo-month button span.nav-next {
  border-right: 2px solid #ddd;
  border-top: 2px solid #ddd;
}

.xo-event-calendar table.xo-month button span.nav-prev {
  border-bottom: 2px solid #999;
  border-left: 2px solid #999;
}

.xo-event-calendar table.xo-month .month-header {
  color: #ddd;
  font-size: 15px;
  line-height: 24px;
}


/*無線機の修理_新
-------------------------------------------------------*/
ul.repair_index {
  display: flex;
  list-style: none;
  justify-content: center;
  justify-content: space-evenly;
  margin: 16px 1% 46px;
  gap: 4%;
}

.repair_index li {
  flex: 1;
}

.repair_index li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  border: #067E8E solid 7px;
  padding: 16px 0 10px;
  color: #000;
  box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 25%);
  transition: all 0.3s ease-out;
}

.repair_index li a:hover {
  background: rgba(75, 157, 163, 0.2);
}

.repair_index li img {
  width: 24%;
  margin: 5px 0;
}

.repair_index li strong {
  font-size: 130%;
}

.repair_index li span {
  font-size: 14px;
}

.post_content .service_h2 {
  font-size: 160%;
  font-weight: 600;
  border-top: #f2e820 solid 8px;
  border-bottom: #f2e820 solid 3px;
  margin-bottom: 1.3em;
  padding: 1em 0;
}

.post_content .repair2 h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 60px;
  padding: 0;
  margin: 0;
}

.post_content .repair2 .note {
  margin-top: 20px;
  padding-left: 3em;
  text-indent: -2.5em;
}

.post_content .repair2 .note+ul {
  font-size: 85%;
  margin: 10px 0 0 4em;
  list-style: disc;
}

.post_content .repair2 .repair_flow {
  list-style: none;
  counter-reset: step -1;
  margin: 0 0 0 1.5em;
}

.repair_flow>li {
  position: relative;
  counter-increment: step;
  margin: 0;
  list-style: none;
}

.repair_flow>li:not(:first-child) {
  position: relative;
  counter-increment: step;
  margin: 0;
}

.repair2 .repair_flow>li:first-child {
  padding: 0 0 40px 46px;
}

.repair2 .repair_flow>li:not(:first-child) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 40px 46px;
}

.repair2 .repair_flow>li:last-child {
  padding: 0 0 40px 53px;
}

.repair_flow>li:not(:last-child) {
  /* border-left: #4b9da3 dashed 7px; */
  background-image: repeating-linear-gradient(to bottom,
      #4b9da3 0,
      #4b9da3 12px,
      transparent 12px,
      transparent 18px);

  background-repeat: repeat-y;
  background-size: 7px auto;
  background-position: left center;

}



.repair_flow>li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: -27px;
  background: #067e8e;
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50vh;
  text-align: center;
}

.repair_flow>li:last-child::before {
  left: -27px;
}

.repair_flow_wrap1 {
  display: flex;
  align-items: center;
}

.post_content .repair_link {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  border: #067E8E solid 3px;
  padding: 8px 26px 8px 12px;
  color: #000;
  margin: 0 0 10px 20px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 25%);
  transition: all 0.3s ease-out;
}

.post_content .repair_link img {
  margin-right: 8px;
}

.post_content .repair_link:hover {
  background: rgba(75, 157, 163, 0.2);
}


.post_content .btn-repair {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #f2e820;
  border-radius: 50vh;
  padding: 10px 48px 8px 28px;
  margin: 30px 0 60px 0;
  color: #067E8E;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 25%);
  transition: all 0.3s ease-out;
}

.post_content .btn-repair span {
  background: #fff;
  border-radius: 50vh;
  display: inline-flex;
  width: 65px;
  height: 65px;
  justify-content: center;
  align-items: center;
  margin-right: 26px;
}

.post_content .btn-repair:hover {
  background: #e0d504;
}

/*故障診断
-------------------------------------------------------*/

.troubleshooting {
  margin-bottom: 5em;
}

ul.troubleshooting_index {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 1em auto 2em;
}

.index-unit a {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  height: 210px;
  width: 210px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  border: 5.5px solid #067E8E;
  font-size: 130%;
  font-weight: 500;
  border-radius: 100vh;
  transition: all 0.5s ease-out;
}

.index-unit a:hover {
  background: rgba(75, 157, 163, 0.2);
  text-decoration: none;
}

.index-unit .open {
  background: rgba(75, 157, 163, 0.2);
}

.index-unit p {
  padding: 10px 0 0 0;
  width: 100%;
  text-align: center;
}

.index-unit img {
  width: 55%;
}

.troubleshooting_index h3 {
  font-size: 120%;
  display: block;
}

dt.accordion-index1 {
  display: none;
  cursor: pointer;
  position: relative;
  background-color: #4b9da3;
  font-size: 110%;
  color: #fff;
  font-weight: 600;
  padding: 12px 0 11px 24px;
}

.accordion-contents1 {
  display: none;
  font-size: 16px;
  padding: 10px 0 0 30px;
  text-align: left;
}

.accordion-contents1 li {
  list-style: none;
}

.accordion-contents2 {
  display: none;
  margin-bottom: 5em;
}

.accordion-wrap2 .accordion-index2 {
  color: #267477;
  font-weight: 600;
  font-size: 110%;
  padding: 16px 40px;
  margin: 15px 0 4px 0;
  cursor: pointer;
  position: relative;
  border: #ddd 1px solid;
  border-left: #4b9da3 9px solid;
}

.accordion-wrap3 .accordion-index3 {
  color: #267477;
  font-weight: 600;
  font-size: 100%;
  padding: 10px 0 10px 40px;
  margin-left: 30px;
  cursor: pointer;
  position: relative;
  border: #ddd 1px solid;
}

.accordion-index2::before,
.accordion-index3::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #4b9da3;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 10px;
}

.accordion-index2::after,
.accordion-index3::after {
  content: "";
  border-bottom: 6px solid #f2e820;
  border-left: 6px solid #f2e820;
  height: 10px;
  width: 18px;
  transform: rotate(-45deg);
  top: 25%;
  left: 12px;
  position: absolute;
  opacity: 0;
}

.accordion-index3::after {
  top: 20%;
}

.accordion-index2.open::after,
.accordion-index3.open::after {
  opacity: 1;
}

.accordion-contents3 {
  display: none;
  margin: 2em 0 2.4em 3.6em;
}

.accordion-contents3 p {
  line-height: 1.8em;
}

.accordion-contents3 h6 {
  margin-top: 1em;
  font-weight: 500;
}

.accordion-contents3 p.notes {
  font-size: 93%;
  line-height: 1.6em;
  text-indent: -1em;
  padding-left: 1em;
}

.popup_wrap {
  background-color: black;
  width: 200px;
}

img.popup {
  cursor: pointer;
  border: #ddd 1px solid;
  vertical-align: top;
  transition: all 0.5s ease-out;
}

img.popup:hover {
  opacity: .9;
}

.enlarge {
  color: #666;
  font-weight: 600;
}

p.reselect {
  text-align: right;
  margin: 1em 0;
}

.troubleshooting .caution {
  border-top: 9px solid #4b9da3;
  background: rgba(75, 157, 163, 0.1);
  padding: 18px 3%;
  margin: 0 0 1.5em 0;
}

.troubleshooting .caution a {
  color: #000;
}

.troubleshooting .caution a span.span1 {
  color: #267477;
  font-weight: 600;
}

.troubleshooting .caution2 {
  background: rgba(75, 157, 163, 0.1);
  padding: 20px 5%;
  margin: 8em 0 1.5em 0;
}

.support_end_caution {
  display: flex;
  justify-content: space-between;
  margin: 1em 1em 4.6em 1em;
}

.support_end_caution p {
  font-size: 90%;
  width: 60%;
  text-indent: -1em;
  padding-left: 1em;
}


.post_content .support_end_button2 {
  margin: 0 0 0 1em;
  border: #067e8e solid 1px;
  border-radius: 3px;
  padding: 6px 10px 5px 14px;
  font-weight: 700;
  transition: all 0.3s ease-out;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}

.support_end_button2 img {
  vertical-align: middle;
  margin-right: 8px;
}


.support_end_button2:hover {
  background: #DCEDEF;
}


.troubleshooting .button_wrap {
  display: flex;
  gap: 50px;
  margin: 5em auto 1em;
  justify-content: center;
}

.troubleshooting .button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  font-size: 150%;
  transition: all 0.5s ease-out;
  padding-top: 10px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  margin: 0 0.8em 0 0;
  border: 4px solid #067E8E;
  font-weight: 700;
  color: #067E8E;
  height: 75px;
  padding: 6px 40px;
}

.troubleshooting .button1:hover {
  background: rgba(75, 157, 163, 0.2);
}

.post_content .troubleshooting .btn-repair {
  margin: 0;
}

.triangle {
  padding-left: 8px;
  font-size: 65%;
  vertical-align: text-bottom;
}

.modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.modal-container>div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.modal-container>div>img {
  max-width: calc(100vw - 30px);
  max-height: calc(100vh - 30px);
}

.purchase-contact {
  background: #f9f9f9;
  padding: 1em 0;
  margin: 0 8%;
  text-align: center;
  border-top: #067E8E 6px solid;
  border-bottom: #067E8E 2px solid;
  transition: all 0.3s ease-out;
}

.purchase-contact:hover {
  background: rgba(6, 126, 142, 0.4);
}

.purchase-contact p:first-child {
  color: #067E8E;
  font-weight: 600;
  margin-bottom: 1.6em;
}

.purchase-contact p:nth-child(2) {
  color: #222;
  font-weight: 600;
  font-size: 120%;
}

.purchase-contact a {
  display: block;
}

.purchase-contact h3 {
  background: #067E8E;
  padding: 0 2em;
  border-radius: 50vh;
  color: #fff;
  font-size: 160%;
  font-weight: 600;
  display: inline-block;
  line-height: 3em;
  margin: 0.5em auto;
  box-shadow: 0px 2px 2px 0px #a9acad;
  transition: all 0.3s ease-out;
}

.purchase-contact h3:hover {
  transform: translateY(2px);
  background: #007180;
}

.purchase-contact h3 img {
  vertical-align: middle;
  padding: 0 0 5px 8px;
}


/* 修理お申込みフォーム
-------------------------------------------------------*/

.post_content h2.repair_form_h2 {
  font-size: 26px;
}

.repair_flow.repair_form_flow>li {
  padding: 0 0 40px 46px;
}

.repair_form_flow>li ul {
  display: inline-flex;
  gap: 58px;
  list-style: none;
  padding: 20px;
  border: #ddd solid 2px;
  margin: 0 auto 20px 0;
  width: 80%;
}

.repair_form_flow>li li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* .repair_form_flow img {
  margin-top: 8px;
} */

.repair_form_flow ul li:nth-child(2) img {
  margin-top: 8px;
}

.repair_form_flow .caution {
  color: #d32626;
  font-weight: 500;
}

.repair_form_flow strong {
  font-size: 22px;
  line-height: 60px;
}

.repair_form_flow h3 {
  font-size: 17px;
  background: #067E8E;
  color: #fff;
  font-weight: 700;
  padding: 1.3em 12px;
  margin: 0 16px 0 0;
}

.repair_form_flow .address_wrap {
  display: flex;
  align-items: center
}

.post_content .repair_form_flow address {
  font-style: normal;
  line-height: 1.5em;
  margin: 0;
}

.repair_form_flow .address_wrap .company_name {
  font-weight: 700;
  margin-bottom: 4px;
}

details.request_open {
  /* 一旦全て非表示 */
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


summary.repair_summary {
  cursor: pointer;
  list-style: none;
  color: #067E8E;
  border: 1px solid;
  margin-bottom: 5px;
  line-height: 2em;
  width: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-30px);
  transition: all 0.5s ease-out;
}

#details-multi-repair summary {
  /* 最初のsummaryだけ表示 */
  visibility: visible;
  height: auto;
  overflow: visible;
  width: 27em;
  line-height: 2.6em;
  transform: none;
}

summary.repair_summary::-webkit-details-marker {
  display: none;
}

summary.repair_summary:hover {
  background: #f0f7f6;
}

summary.repair_summary:after {
  content: "+";
  font-weight: 800;
  font-size: 200%;
  padding-bottom: 6px;
}

.repair_summary.summary1:after {
  content: "+";
  padding-left: 4px;
}

.repair-request details[open]>summary:after {
  content: "-";
  padding-bottom: 6px;
}

.wpcf7 {
  border: none;
  background: #fff;
  padding: 1em 0;
}

.wpcf7 p {
  font-size: 16px;
}

.wpcf7 .wpcf7-not-valid {
  background: rgb(255, 243, 245);
}

.form-group.company {
  margin-top: 40px;
}

.form-group p {
  display: flex;
  justify-content: flex-start;
}

.wpcf7 .span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #d32626;
  padding: 0 6px 0 5px;
  margin: 0 10px 0 0;
  line-height: 18px;
}

.form-group label {
  width: 23%;
  font-weight: 600;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  font-size: 16px;
}

.wpcf7 .wpcf7-not-valid {
  background: rgb(255, 243, 245);
}

.wpcf7 textarea {
  height: 6em;
}

.consent_wrap input[type=checkbox] {
  transform: scale(1.5);
  margin-right: 14px;
}

.consent_wrap .wpcf7-list-item-label {
  font-size: 15px;
}

.wpcf7 input.wpcf7-submit {
  width: 400px;
  font-size: 16px;
  background: #f2e820;
  color: #333;
  font-weight: 600;
  margin: 30px auto 0 0;
  box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 25%);
  transition: all 0.3s ease-out;
}

.wpcf7 input.wpcf7-submit:hover {
  background: #e0d504;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: auto;
  background: #ddd;
}

.wpcf7 .wpcf7-submit:disabled:hover {
  opacity: 0.6;
  cursor: auto;
  background: #ddd;
}

.form-bg {
  background-color: rgb(255, 243, 245);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  box-shadow: none;
  border: #555 solid 2.4px;
}

.form_hr {
  width: 80%;
  margin: 2em auto 1em;
  border-top: #ddd dotted 2px;
}

h3.repair_form {
  font-weight: 600;
  font-size: 150%;
  color: #067E8E;
  margin: 1em 0;
}

h3.repair_form.first {
  margin: 0 0 1em 0;
  padding-top: 10px;
}

.post_content p.support_end_caution2 {
  margin: -0.8em 1em 1em 23%;

}

.support_end_caution2 img {
  vertical-align: middle;
  margin-right: 8px;
}

.support_end_caution2 strong {
  color: #d32626;
  font-weight: 500;
}


.support_end_caution2 a {
  font-size: 110%;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}

.support_end_caution2 a:hover {
  text-decoration: none;
}

.support_end_button3 p:last-child {
  background: #067E8E;
  line-height: 3em;
  border-radius: 50vh;
  display: inline-block;
}

.support_end_button3 p img {
  padding-right: 8px;
}

.support_end_button3 a {
  display: flex;
  font-weight: 400;
  color: #fff;
  font-size: 90%;
  justify-content: center;
  align-items: center;
  padding: 2px 1.4em;
  transition: all 0.5s ease-out;
}

.support_end_button3 .triangle {
  padding-left: 3px;
  font-size: 80%;
}

.form_attention>p {
  color: #d32626;
  font-weight: 600;
  margin-bottom: 4px;
}

.form_attention h5 {
  background: #067E8E;
  color: #fff;
  font-weight: 600;
  font-size: 130%;
  padding: 7px 0 7px 1em;
}

.repair-regulations {
  border: #067E8E solid 3px;
  padding: 8px 1em;
  height: 20em;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 1.2em;
}

.repair-regulations h6 {
  font-size: 105%;
  font-weight: 600;
  margin: 0 0 3px 0;
}

.repair-regulations p {
  font-size: 15px;
  margin: 0 0 3px 6px;
}

.repair-regulations ul {
  margin: 0 0 1em 2.6em;
}

/* 修理お申込み送信完了
-------------------------------------------------------*/

.page-id-29675 #post_title {
  padding-top: 100px;
  position: relative;
  text-align: center;
  color: #067E8E;
  font-size: 24px;
}

.page-id-29675 #post_title::before {
  content: "";
  display: block;
  width: 60px;
  height: 90px;
  background-image: url("/wp-content/uploads/2024/01/thanks.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.text_wrap {
  text-align: center;
}

.repair_thanks {
  width: 45%;
  margin: 2em auto 4em auto;
  padding: 6px 2em 1em;
  border-top: #067E8E dotted 3px;
  border-bottom: #067E8E dotted 3px;
}

.post_content .repair_thanks h2 {
  color: #067E8E;
  font-weight: 600;
  font-size: 130%;
  padding-top: 20px;
}


.post_content a.thanks_back {
  border: #067E8E solid 2px;
  padding: 1.2em 2em;
  border-radius: 50vh;
  margin-right: 10%;
  display: block;
  width: fit-content;
  margin-left: auto;
}

/* 初期不良品お問い合わせフォーム
-------------------------------------------------------*/

.initialfailure-form h2.flow {
  background-color: #067E8E;
  font-size: 110%;
  color: #fff;
  font-weight: 600;
  padding: 12px 0 11px 24px;
  margin: 2.4em 0 1.4em 0;
}

.initialfailure-form .caution {
  border-top: 9px solid #067E8E;
  background: rgba(75, 157, 163, 0.1);
  padding: 22px 4%;
  margin: 1em 0 3.6em 0;
}

.initialfailure-form .caution ul {
  list-style: disc;
}

.initialfailure-form .caution h2 {
  font-weight: 600;
  font-size: 130%;
  margin-bottom: 1em;
}

.initialfailure-form ol {
  list-style-type: none;
  counter-reset: my-counter;
}

.initialfailure-form ol li {
  counter-increment: my-counter;
  position: relative;
  margin: 0 0 8px 30px;
  padding-left: 15px;
}

.initialfailure-form ol li::before {
  content: counter(my-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -40px;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #067E8E;
  color: #fff;
  border-radius: 50vh;
  font-weight: 700;
}

#wpcf7-f28906-p22822-o1 h2 {
  font-weight: 700;
}

.initialfailure-form .toiawase {
  margin-top: 3em;
}

/* .initialfailure-form th {
  width: 14em;
} */

.form-group .form_caution {
  margin: 1.6em 0 2em 23%;
  background: #d8eae7;
  padding: 1em 2em 0.1em 2em;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
}

.form-group .form_caution::before {
  content: '';
  position: absolute;
  background: #d8eae7;
  height: 20px;
  width: 20px;
  clip-path: polygon(50% 0%, 0% 100%, 50% 100%);
  top: -16px;
}

.wpcf7 input[type="file"] {
  border: none;
  padding: 0;
}


/*タブレット
-------------------------------------------------------*/

@media screen and (max-width: 1024px) {

  /* 修理お申込みフォーム
-------------------------------------------------------*/
  .repair-request .support_end_caution p:first-child {
    width: 48%;
  }
}


/*スマートフォン
-------------------------------------------------------*/

@media screen and (max-width:767px) {

  /* 共通 
--------------------------------------------------------------*/
  .post_content p.note {
    font-size: 12px;
    padding-left: 2em;
    text-indent: -2.5em;
  }

  .post_content p.note2 {
    font-size: 12px;
  }

  .pc_hid {
    display: block;
  }

  .sp_hid {
    display: none;
  }


  /*フォームパーツ
-------------------------------------------------------*/
  .toiawase table th {
    width: 100%;
  }

  .toiawase .submit2 {
    width: 100%;
  }


  /*無線機の修理_新
-------------------------------------------------------*/
  ul.repair_index {
    flex-direction: column;
  }

  .repair_index li a {
    position: relative;
    margin: 0 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 20px;
  }

  .repair_index li span {
    position: absolute;
    left: 20px;
    top: 60%;
    font-size: 12px;
  }

  .repair_index li strong {
    padding: 12px 0 0 0;
    font-size: 140%;
  }

  .repair_flow_wrap1 {
    display: block;
  }

  .post_content .repair2 h3 {
    line-height: 45px;
  }

  .post_content .repair2 .repair_flow {
    margin: 0 0 0 1em;
  }

  .repair_flow>li::before {
    font-size: 2em;
    width: 45px;
    height: 45px;
    line-height: 45px;
    left: -20px;
  }

  .repair2 .repair_flow>li:not(:last-child) {
    padding: 0 0 40px 33px;
  }

  .repair2 .repair_flow>li:last-child {
    padding: 0 0 40px 33px;
  }

  .repair2 .repair_flow>li:not(:first-child) {
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .repair_flow>li:last-child::before {
    left: -19px;
  }

  .post_content .repair2 .note {
    padding-left: 2em;
    text-indent: -2.5em;
  }

  .post_content .repair_link {
    margin: 10px 0 20px 0;
  }

  .post_content .btn-repair {
    font-size: 19px;
    padding: 8px 30px 6px 24px;
    margin: 30px auto 60px;
    width: 100%;
    box-sizing: border-box;
  }

  .post_content .btn-repair span {
    margin-right: 16px;
  }


  /*故障診断
-------------------------------------------------------*/
  .index-unit a {
    height: 140px;
    width: 140px;
    font-size: 110%;
    font-weight: 600;
  }

  .index-unit:first-child {
    margin-right: 1em;
  }

  .index-unit p {
    margin-bottom: 0;
  }

  .accordion-contents1 {
    padding-left: 0;
  }

  .accordion-contents1 ul {
    margin-left: 0;
  }

  .accordion-wrap2 .accordion-index2 {
    font-size: 100%;
    padding-right: 6px;
  }

  .accordion-wrap3 .accordion-index3 {
    margin-left: 0;
    padding-right: 6px;
  }

  .accordion-contents3 {
    margin-left: 0;
  }

  .accordion-index2::after,
  .accordion-index3::after {
    top: 30%;
  }

  p.reselect {
    margin: 0.5em 0;
  }

  .troubleshooting .caution {
    padding: 12px 3%;
  }

  .troubleshooting .caution p {
    font-size: 90%;
  }

  .troubleshooting .caution2 {
    margin-top: 3em;
  }

  .support_end_caution {
    display: block;
    margin: 1em 0;
  }

  .support_end_caution p:first-child {
    width: 100%;
  }



  .troubleshooting .button1 a,
  .troubleshooting .button2 a {
    height: 90px;
    justify-content: space-evenly;
    font-size: 130%;
  }

  .troubleshooting .button1 p,
  .troubleshooting .button2 p {
    margin: 0;
  }

  .post_content .support_end_button2 {
    padding: 14px 12px 14px 16px;
  }

  .troubleshooting .button1 {
    margin: 0 0 18px 0;
    padding: 0 40px;
  }

  .troubleshooting .button_wrap {
    display: block;
  }

  .troubleshooting .button1 a {
    margin: 0 0 1em 0;
  }

  .troubleshooting .button2 a {
    margin: 0;
  }

  .purchase-contact {
    margin: 0;
    padding: 0 1em;
  }

  .purchase-contact p:nth-child(2) {
    font-size: 100%;
  }

  .purchase-contact h3 {
    font-size: 120%;
    padding: 0;
    margin: 0 auto 1em;
  }

  .purchase-contact h3 img {
    width: 12%;
  }


  /* 修理お申込みフォーム
-------------------------------------------------------*/

  .post_content h2.repair_form_h2 {
    font-size: 22px;
  }

  .repair_form_flow {
    margin: 20px 0 0 0;
    list-style: none;
  }

  .repair_flow.repair_form_flow>li {
    padding: 0 0 40px 33px;
  }

  .repair_flow.repair_form_flow>li strong {
    font-size: 17px;
    line-height: 1.6em;
  }

  .repair_form_flow>li ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .repair_form_flow img {
    margin-top: 0;
  }

  .repair_form_flow .address_wrap {
    align-items: stretch;
  }

  .repair_form_flow h3 {
    padding: 10px;
    margin: 0 0 10px 0;
    font-size: 16px;
    text-align: center;
  }

  .repair_form_flow .address_wrap {
    flex-direction: column;
  }


  #details-multi-repair summary {
    width: 90%;
    line-height: 1.4em;
    justify-content: space-around;
  }

  .wpcf7 select {
    max-width: 91%;
    font-size: 14px;
  }

  .form-group p {
    flex-wrap: wrap;
  }

  .repair-request .form-group label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
  }

  .wpcf7 form {
    margin: 1.5em 0;
  }

  .wpcf7 input.wpcf7-submit {
    width: 300px;
  }

  #consent+span.wpcf7-list-item-label {
    font-size: 12px;
  }

  .suggestion {
    margin-left: 0;
    padding: 1.4em 5% 1em;
    width: 90%;
  }

  .suggestion .img_wrap {
    margin-right: 0.2em;
  }

  .suggestion .img_wrap img {
    max-width: 46px;
  }

  .wpcf7 input.wpcf7-submit {
    margin: 30px auto 0 auto;
  }

  .wpcf7 form {
    margin: 1.5em 0;
  }

  .wpcf7 input.wpcf7-submit {
    width: 300px;
  }

  #consent+span.wpcf7-list-item-label {
    font-size: 12px;
  }

  .support_end_caution2 {
    margin: 1em 0 0;
  }

  .repair_summary {
    line-height: 1em;
    padding: 6px 1em;
  }

  .post_content p.support_end_caution2 {
    margin: 0;
    font-size: 14px;
  }

  .support_end_caution2 img {
    width: 40px;
  }

  /* 修理お申込み送信完了
-------------------------------------------------------*/

  .repair_thanks {
    width: 100%;
    box-sizing: border-box;
  }

  .post_content a.thanks_back {
    margin-right: 0;
  }

  /* 初期不良品お問い合わせフォーム
-------------------------------------------------------*/
  .initialfailure-form ol {
    margin-left: 0;
  }

  .initialfailure-form ol li::before {
    left: -24px;
  }

  .form-group .form_caution {
    margin-left: 0;
    padding: 1em 1em 0.1em 1em;
  }

  .form-group label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
タブレット
--------------------------------------------------------------*/
@media all and (min-width: 768px) and (max-width: 1024px) {

  /*無線機の修理_新*/

  .repair2 .repair_flow>li:not(:first-child) img {
    width: 32%;
  }






}