@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #333;
  font-family: serif;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: justify;
  box-sizing: border-box;
}

.main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.container {
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.sec_ttl {
  font-size: 24px;
  text-align: center;
  color: #ff7600;
  font-weight: bold;
}

/* ===============================================
# FV
=============================================== */
.fv {
  background: url(../img/fv-back.png) center center/cover no-repeat;
  position: relative;
  z-index: -5;
}

.fv_inner {
  padding: 30px 6px 20px;
}

.fv_ttl {
  font-size: 20px;
  display: inline-block;
  font-weight: bold;
}

.fv_ttl p {
  display: inline;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 12px;
  position: relative;
}

.fv_ttl p span {
  color: #ff7600;
}

.fv_ttl p::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff7600;
  top: 5px;
  right: -5px;
  bottom: -5px;
  left: 5px;
  border-radius: 5px;
  z-index: -1;
}

.fv_ttl p:nth-child(2) {
  display: block;
  margin-top: 22px;
}

.fv_emagency {
  font-size: 14px;
  margin-top: 12px;
  padding-left: 24px;
  position: relative;
}

.fv_emagency::before {
  position: absolute;
  content: "";
  background: url(../img/fv-ema.png) center center/cover no-repeat;
  width: 22px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fv_flex {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.fv_left {
  width: 55%;
  padding: 8px 8px 0;
  background-color: #fff;
  border-radius: 5px;
}

.fv_right {
  width: 45%;
  padding: 8px 8px 0;
  background-color: #fff;
  margin-left: 8px;
  border-radius: 5px;
}

.fv_cat {
  font-weight: 600;
  background-color: #81bd35;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 2px;
}

.fv_num {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 10px;
}

.fv_num span {
  font-size: 46px;
  color: #fc4141;
}

.fv_num .small {
  font-size: 32px;
}

.fv_flex_emagency {
  font-size: 14px;
  text-align: right;
  margin-top: 4px;
  color: #fff;
  font-weight: bold;
}

.fv_content {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  margin-top: 15px;
  padding: 10px 16px;
}

.fv_content ul li {
  margin-top: 10px;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-left: 22px;
  display: inline-block;
  background: linear-gradient(transparent 50%, #ffee9a);
  position: relative;
}

.fv_content ul li::before {
  position: absolute;
  content: "▶︎";
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

.fv_content ul li:first-child {
  margin-top: 0;
}

.fv_content ul li span {
  color: #ff7600;
}

/* ===============================================
# コメント共通
=============================================== */
.man_message_box {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.man_img img {
  width: 90px;
}

.man_text {
  width: calc(100% - 90px);
  margin-left: 28px;
  background-color: #efefef;
  padding: 10px 26px;
  border-radius: 10px;
  position: relative;
}

.man_text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 17px solid #efefef;
  border-left: 0;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.man_text p {
  font-weight: 500;
  line-height: 1.5;
}

.lady_message_box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 30px;
}

.lady_img img {
  width: 90px;
}

.lady_text {
  width: calc(100% - 90px);
  margin-right: 28px;
  background-color: #fffca7;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.lady_text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 17px solid #fffca7;
  border-right: 0;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
}

.lady_text p {
  line-height: 1.5;
  font-weight: 500;
}

.lady_text p .red {
  color: #fc4141;
  font-weight: 600;
}

.lady_text p .bold {
  font-weight: 700;
}

.staff_message_box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  border: 2px solid #ff7600;
  padding: 12px 10px;
}

.staff_text {
  width: calc(100% - 90px);
  margin-right: 2px;
}

.staff_text p {
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
}

.staff_text p .red {
  color: #fc4141;
}

.staff_text p .bold {
  font-weight: 800;
}

.staff_img img {
  width: 90px;
}

.under_arrow {
  animation: under_arrow 1s infinite;
}

.under_arrow img {
  display: block;
  width: 296px;
  margin: 30px auto 0;
}

@keyframes under_arrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===============================================
# sec1
=============================================== */
.sec1_ttl {
  font-size: 24px;
  padding: 22px 0;
  font-weight: bold;
  text-align: center;
  background-color: #b5dd82;
  text-shadow: 2px 2px 0px white;
}

.sec1_img_txt {
  text-align: center;
  position: relative;
}

.sec1_img_txt::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 13px solid transparent;
  border-top: 29px solid #82b146;
  border-bottom: 0;
  bottom: -24px;
  left: 30%;
  rotate: 18deg;
}

.sec1_img_txt p {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: #82b146;
  padding: 10px 15px;
  border-radius: 999px;
  letter-spacing: .1em;
  margin-top: 10px;
}

.sec1_img {
  width: 344px;
  margin: 30px auto 0;
}

.sec1_box {
  margin-top: -10px;
  background-color: #82b146;
  color: #fff;
  padding: 15px 0 25px;
  position: relative;
  z-index: 0;
}

.sec1_box::after {
  position: absolute;
  content: "";
  background: url(../img/sec1_box.png) center center/cover no-repeat;
  width: 139px;
  height: 163px;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: -1;
}

.sec1_box ul {
  margin-top: 10px;
}

.sec1_box ul li {
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px dotted #fff;
  padding-bottom: 4px;
}

.sec1_box ul li span {
  display: inline-block;
  font-size: 30px;
  margin-right: 5px;
}

.sec1_box_ttl {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

/* ===============================================
# sec2
=============================================== */
.sec2_flex {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec2_item {
  width: 48%;
  border: 3px solid #ff7600;
  border-radius: 5px;
  padding: 10px;
}

.sec2_item:nth-child(n + 3) {
  margin-top: 20px;
}

.sec2_item img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.sec2_item p {
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
  color: #ff7600;
}

/* ===============================================
	# 事例
	=============================================== */
.example {
  margin-top: 40px;
}

.example-ttl {
  font-size: 24px;
  text-align: center;
  color: #ff7600;
  font-weight: bold;
}

.example-ttl span {
  font-size: 36px;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .example-ttl span {
    font-size: 18px;
  }
}

.example-content {
  margin-top: 20px;
  position: relative;
}

.example-header {
  position: relative;
  padding: 15px 0;
  background-color: #ff7600;
  border-radius: 5px;
}

.example-header-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
}

.example-content-box {
  margin-top: 20px;
}

.example-content-ttl {
  text-align: center;
}

.example-content-ttl h2 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .example-content-ttl h2 {
    font-size: 18px;
    white-space: nowrap;
    text-align: center;
  }
}

.example-content-ttl h2 .red {
  border: 2px solid #fc4141;
  font-size: 18px !important;
  padding: 2px 15px;
  color: #fc4141;
  font-weight: bold;
  border-radius: 5px;
  vertical-align: text-top;
  margin-right: 20px;
}

.example-content-ttl h2 span {
  font-size: 42px;
  margin: 0 5px;
  font-weight: 600;
  margin-left: 18px;
}

@media screen and (max-width: 767px) {
  .example-content-ttl h2 span {
    font-size: 30px;
    margin: 0;
  }
}

.example-content-price {
  margin-top: 20px;
}

.example-content-price img {
  width: 100%;
  display: block;
  margin-top: 10px;
}

.example-content-damage {
  margin-top: 25px;
  text-align: center;
}

.example-content-damage h2 {
  font-size: 20px;
  font-weight: bold;
}

.example-content-damage-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.example-content-damage-photo {
  border: 2px solid #ff7600;
  border-radius: 5px;
  padding: 10px;
  width: 47%;
}

.example-content-damage-photo:nth-child(n + 3) {
  margin-top: 10px;
}

.example-content-damage-photo img {
  display: block;
  width: 100%;
  height: 84px !important;
  object-fit: cover;
}

.example-content-damage-photo-txt {
  font-size: 18px;
  padding: 10px 0 5px;
  font-weight: bold;
}

.example-content-voice {
  margin-top: 25px;
  text-align: center;
}

.example-content-voice h2 {
  font-size: 20px;
  font-weight: bold;
}

.example-content-voice-photo {
  width: 100%;
  margin: 10px auto 0;
}

@media screen and (max-width: 767px) {
  .example-content-voice-photo {
    width: 100%;
  }
}

.example-content-voice-photo img {
  width: 100%;
  display: block;
}

.slick-track {
  padding-bottom: 15px;
}

.slider-2 .slick-slide {
  height: auto;
  margin: 0 100px;
  padding: 15px 10px;
  position: relative;
  border-radius: 5px;
  border: 3px solid #ff7600;
  width: 360px;
}

.slider-2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots-2 .slick-dots {
  text-align: center;
}

.dots-2 .slick-dots li {
  display: inline-block;
}

.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots-2 .slick-dots .slick-active button {
  background: #ff7600;
}

/* ===============================================
# voice
=============================================== */
.voice {
  overflow: hidden;
  margin-top: 45px;
}

.voice_slider {
  position: relative;
  margin-bottom: 60px;
}

.slider-3 li {
  width: 360px;
  margin: 0 100px;
  border: 3px solid #ff7600;
  border-radius: 5px;
  padding: 7px 20px 20px;
}

.voice_img img {
  display: block;
  width: 130px;
  margin: 0 auto;
}

.voice_name {
  text-align: center;
}

.voice_name p {
  font-size: 20px;
  background-color: #ff7600;
  color: #fff;
  display: inline-block;
  padding: 10px 52px;
  border-radius: 5px;
  font-weight: bold;
}

.voice_txt {
  margin-top: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.dots-3 .slick-dots {
  text-align: center;
}

.dots-3 .slick-dots li {
  display: inline-block;
}

.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots-3 .slick-dots .slick-active button {
  background: #ff7600;
}

/* ===============================================
  # flow
=============================================== */
.flow {
  margin-top: 50px;
}

.flow_wrapper {
  margin-top: 20px;
}

.flow_item {
  border: 3px solid #ff7600;
  border-radius: 5px;
  padding: 13px 10px 20px;
}

.flow_item + .flow_item {
  margin-top: 70px;
  position: relative;
}

.flow_item + .flow_item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 54px solid transparent;
  border-left: 54px solid transparent;
  border-top: 40px solid #ff7600;
  border-bottom: 0;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_item img {
  display: block;
  width: 174px;
  margin: 20px auto 0;
}

.flow_item h4 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
}

.flow_item_ttl {
  text-align: center;
  background-color: #ff7600;
  border-radius: 5px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.flow_item_txt {
  margin-top: 25px;
  font-weight: 500;
  line-height: 1.5;
}

.flow_item_txt .bold {
  font-weight: 700;
}

.flow_item_txt .red {
  color: #fc4141;
}

.flow_table {
  margin-top: 20px;
  border-collapse: collapse;
}

.flow_table table {
  width: 100%;
  border: 2px solid #aaa;
  border-collapse: collapse;
  font-weight: bold;
}

.flow_table th,
.flow_table td {
  vertical-align: middle;
  text-align: center;
  border: 2px solid #aaa;
  font-size: 24px;
  padding: 12px 0;
  width: 25%;
}

.flow_table th .small,
.flow_table td .small {
  font-size: 14px;
}

.flow_table th:first-child,
.flow_table td:first-child {
  border-right: none;
  line-height: 1.5;
}

.flow_table thead th {
  background-color: #f0f0f0;
  font-size: 20px;
  line-height: 1.5;
  padding: 0;
}

.flow_table .highlight {
  background-color: #fff7f0;
  color: #e60000;
  border-right: 2px solid #e60000;
  border-left: 2px solid #e60000;
  font-weight: bold;
  border-top: 2px solid #e60000;
}

.flow_table .highlight .value {
  font-size: 24px;
  font-weight: bold;
}

.flow_table tbody td {
  font-size: 24px;
}

.flow_table thead th.highlight {
  background-color: #f0f0f0;
  border-right: 2px solid #e60000;
  border-left: 2px solid #e60000 !important;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.flow_table thead th.highlight span {
  display: inline-block;
  font-size: 12px;
  color: #e60000;
  position: relative;
}

.flow_table thead th.highlight span::before, .flow_table thead th.highlight span::after {
  position: absolute;
  content: "";
  background-color: #fc4141;
  width: 20px;
  height: 2px;
}

.flow_table thead th.highlight span::before {
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  rotate: 70deg;
}

.flow_table thead th.highlight span::after {
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  rotate: 110deg;
}

.flow_table tbody td:first-child {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  border-right: none;
}

/* ===============================================
# サポート体制
=============================================== */
.support {
  margin-top: 50px;
}

.support_wrap {
  margin-top: 15px;
}

.support_item {
  border: 3px solid #ff7600;
  border-radius: 5px;
  padding: 13px 10px 20px;
}

.support_item + .support_item {
  margin-top: 30px;
}

.support_item img {
  display: block;
  width: 80%;
  margin: 20px auto 0;
}

.support_item_ttl {
  text-align: center;
  background-color: #ff7600;
  border-radius: 5px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.support_item_txt p {
  font-weight: 500;
  line-height: 1.5;
}

.support_item_txt p .bold {
  font-weight: 700;
}

.support_item_txt p .red {
  color: #fc4141;
}

.support_name {
  background-color: #e2e2e2;
  padding: 5px 10px;
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
}

.banner_img {
  margin-top: 30px;
}

/* ===============================================
# コンタクトフォーム７
=============================================== */
.contact {
  position: relative;
  margin-top: 30px;
  padding-bottom: 50px;
}

.contact::after {
  position: absolute;
  content: "";
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.contact-box {
  color: #333;
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #fc4141;
}

.contact-contents__item--required {
  display: block;
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 22px;
}

.required {
  position: relative;
}

.required::after {
  position: absolute;
  content: "必須";
  font-size: 16px;
  color: #fff;
  top: 52%;
  transform: translateY(-50%);
  background: #fc4141;
  padding: 2px 7px 4px;
  line-height: 1;
  border-radius: 5px;
  margin-left: 10px;
}

.any {
  position: relative;
}

.any::after {
  position: absolute;
  content: "任意";
  font-size: 16px;
  color: #82b146;
  border: 1px solid #82b146;
  top: 52%;
  transform: translateY(-50%);
  padding: 2px 7px 4px;
  line-height: 1;
  border-radius: 5px;
  margin-left: 10px;
}

.contact-contents__items {
  margin-top: 25px;
}

.contact-contents__item-title {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
}

.contact-contents__item-title p {
  display: inline-block;
}

.contact-contents__item-input--text {
  width: 100%;
}

.contact-contents__item-textarea {
  width: 100%;
}

input[type='submit'] {
  -webkit-appearance: none;
  /*アイフォンでCSSが無効になるのを防ぐ*/
}

.contact-contents__submit {
  margin-top: 30px;
}

.contact-contents__btn {
  width: 100%;
  height: 60px;
  border: none;
  background: #ff7600;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
  border-bottom: solid 5px #6b2500;
  transition: 0.3s ease-in-out;
  justify-content: center;
}

.contact-contents__btn:hover {
  border-bottom: solid 2px #6b2500;
  transform: translateY(3px);
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  border-radius: 5px;
  height: 40px;
  background: whitesmoke;
  padding-left: 10px;
}

textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  border: none;
  border-radius: 5px;
  background: whitesmoke;
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
  margin-top: 12px;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid #333;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #ff7600;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-left: 20px;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form-control {
  display: flex;
  align-items: center;
}

.tel_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-part {
  width: 26%;
}

.phone-hyphen {
  font-size: 24px;
  font-weight: 500;
}

/* ===============================================
# footer
=============================================== */
.footer {
  background-color: #82b146;
  text-align: center;
  padding: 25px 0 10px;
}

.footer_link {
  position: relative;
}

.footer_link div {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
}

.footer_copy {
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  padding: 30px 10px;
  background-color: #fff;
  overflow-y: auto;
  height: 90vh;
}

.modalContents {
  text-align: justify;
  line-height: 1.3;
}

.modalContents h2 {
  font-weight: 600;
  text-align: center;
}

.modalContents h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

.modalContents h4 {
  font-weight: 500;
  font-size: 16px;
  margin-top: 15px;
}

.modalContents p {
  margin-top: 10px;
  font-size: 16px;
}

.modalContents a {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.closeModal {
  position: fixed;
  top: 50px;
  right: 1rem;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  color: #ff7600;
}

/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}

#openModal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* ===============================================
# サンクスページ
=============================================== */
.thanks {
  margin-top: 30px;
  padding-bottom: 50px;
}

.thanks_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #ff7600;
}

.thanks_txt {
  margin-top: 30px;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
}

.thanks_tel_content {
  margin-top: 30px;
  border: 1px solid #ff7600;
  border-radius: 5px;
  text-align: center;
  padding: 10px 0 15px;
  color: #ff7600;
}

.thanks_tel {
  font-size: 32px;
  font-weight: bold;
}

.thanks_time {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.thanks_btn {
  margin-top: 40px;
}

.thanks_btn a {
  display: block;
  text-align: center;
  background-color: #ff7600;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 15px 0;
  border-radius: 5px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ===============================================
# 
=============================================== */
/* 全体のスタイル */
#step-form {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  padding: 20px;
  border: 3px solid #82b146;
  border-radius: 5px;
}

.step-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background-color: #f5f5f5;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.step-header .step-num {
  background-color: #f5f5f5;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: #333;
  letter-spacing: 0.1em;
}

.step-header .step-num.active {
  background-color: #82b146;
  color: white;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step-buttons {
  margin: 20px 0;
}

.step-button {
  display: block;
  width: 80%;
  height: 50px;
  margin: 0 auto;
  padding: 14px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.step-button + .step-button {
  margin-top: 15px;
}

.step-button:hover {
  background-color: #0056b3;
}

.step-navigation {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 20px;
}

.step-button-prev {
  background-color: #cccccc;
  width: 50%;
  margin: 20px auto 0;
  border: none;
  border-radius: 5px;
}

.step p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.step p span {
  font-size: 16px;
  font-weight: normal;
  display: block;
  margin-top: 15px;
}

.step .wpcf7-form-control {
  width: 100%;
  height: 50px;
  background-color: #f6f6f6;
  color: #333;
  padding: 10px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
}

.step-1 .step-button {
  border-bottom: solid 5px #acacac;
  transition: 0.3s ease-in-out;
}

.step-1 .step-button:hover {
  color: #fff;
  background-color: #82b146;
  border-bottom: solid 2px #004808;
  transform: translateY(3px);
}

.step-2 .step-button {
  background: #ff7600;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  height: 60px;
  border-radius: 5px;
  border-bottom: solid 5px #6b2500;
  transition: 0.3s ease-in-out;
}

.step-2 .step-button:hover {
  color: #fff;
  border-bottom: solid 2px #6b2500;
  transform: translateY(3px);
}

.step-2 p {
  margin-bottom: 20px;
}

.step-3 .contact-contents__btn {
  background: #ff7600;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
  border-bottom: solid 5px #6b2500;
  margin-top: 0;
  height: 60px;
  transition: 0.3s ease-in-out;
}

.step-3 .contact-contents__btn:hover {
  color: #fff;
  border-bottom: solid 2px #6b2500;
  transform: translateY(3px);
}

.step-3 .contact-contents__submit {
  margin-top: 0;
}

.step .step-button-prev {
  border-bottom: 5px solid gray;
  color: #333;
  height: 50px;
  transition: 0.3s ease-in-out;
}

.step-button-prev:hover {
  border-bottom: solid 2px #9d9d9d;
  transform: translateY(3px);
}

.step-3 p {
  margin-bottom: 20px;
}
