@charset "UTF-8";
.btn_effect, .form_btn .btn a, .info .postal_code .autofill a, .btn_list li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.btn_effect::before, .form_btn .btn a::before, .info .postal_code .autofill a::before, .btn_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  z-index: -1;
}
.btn_effect:hover, .form_btn .btn a:hover, .info .postal_code .autofill a:hover, .btn_list li a:hover {
  opacity: 1;
}
.btn_effect:hover::before, .form_btn .btn a:hover::before, .info .postal_code .autofill a:hover::before, .btn_list li a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* =============================================== 
  お問い合わせ
=============================================== */
.btn_list {
  /*display: grid;
  grid-template-columns: repeat(2, 1fr);*/
  gap: 20px 25px;
  max-width: 645px;
  width: 100%;
  margin: 0 auto 65px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .btn_list {
    gap: 16px;
    margin: 0 auto 35px;
    font-size: 16px;
  }
}
.btn_list li {
  border: 1px solid #2A68B0;
  color: #2A68B0;
  font-weight: 500;
  position: relative;
  width: calc(50% - 13px);
}
@media screen and (max-width: 768px) {
  .btn_list li {
    width: calc(50% - 8px);
  }
}
.btn_list li:last-child {
  width: 100%;
}
.btn_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 121px;
  padding: 0 20px;
  text-align: center;
}
.btn_list li a::after {
  content: "";
  background: url(../img/arrow_select.svg) no-repeat center/contain;
  height: 7px;
  width: 10px;
  position: absolute;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
          transform: translate(0, -50%) rotate(-90deg);
  top: 50%;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .btn_list li a::before {
    background: #2A68B0;
  }
  .btn_list li a:hover {
    color: #fff;
  }
  .btn_list li a:hover::after {
    background: url(../img/arrow_select_over.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 768px) {
  .btn_list li a {
    height: 80px;
  }
}

.lead {
  margin-bottom: 30px;
  line-height: 2;
}

.info {
  margin-bottom: 30px;
}
.info th,
.info td {
  background: none;
}
.info th {
  width: 250px;
  padding: 15px;
  text-align: left;
  font-weight: normal;
}
.info th.top {
  vertical-align: top;
  padding-top: 33px;
}
@media screen and (max-width: 768px) {
  .info {
    display: block;
  }
  .info tbody,
  .info tr,
  .info th,
  .info td {
    display: block;
    width: 100%;
  }
  .info th,
  .info th.top {
    border-bottom: 0;
    padding: 15px 0 0;
  }
}
.info .required {
  position: relative;
}
.info .required::after {
  content: "必須";
  border: 1px solid #EA0909;
  border-radius: 50px;
  width: 52px;
  color: #EA0909;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .info .required::after {
    display: inline-block;
    position: static;
    margin-left: 20px;
  }
}
.info td {
  padding: 15px 0;
}
.info td .error {
  display: inline-block;
  background: #EA0909;
  border-radius: 4px;
  padding: 5px 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.info td .error::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #ea0909 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 10px;
}
.info td .notes {
  margin-top: 10px;
  font-size: 14px;
}
.info td textarea,
.info td input[type=text] {
  background: #FAFAFA;
  border-color: #ccc;
}
.info td textarea {
  height: auto;
}
.info td input[type=text] {
  height: 55px;
  padding: 0 15px;
}
.info .postal_code input[type=text] {
  width: 249px;
  margin-right: 10px;
}
.info .postal_code .autofill {
  display: inline-block;
  border: 1px solid #2A68B0;
  border-radius: 40px;
  max-width: 176px;
  width: 100%;
  height: 50px;
  color: #2A68B0;
  vertical-align: middle;
  overflow: hidden;
}
.info .postal_code .autofill a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info .postal_code .autofill a::before {
    background: #2A68B0;
  }
  .info .postal_code .autofill a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .info .postal_code input[type=text] {
    width: 8em;
  }
  .info .postal_code .autofill {
    max-width: 150px;
    font-size: 14px;
  }
}
.info .addr .select_wrap {
  max-width: 230px;
  margin-bottom: 14px;
}
.info .addr .select_wrap select {
  padding: 0 35px;
}
.info .addr dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 0;
}
@media screen and (max-width: 768px) {
  .info .addr dl {
    grid-template-columns: 1fr;
  }
}
.info .addr dl dt {
  font-size: 14px;
}
.info .privacy {
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .info .privacy {
    padding: 15px 0;
  }
}
.info .check_area a {
  color: #2A68B0;
}
.info .check_area a:hover {
  text-decoration: underline !important;
  opacity: 1;
}

.form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -10px;
}
.form_btn .btn {
  max-width: 420px;
  width: 100%;
  margin: 10px 15px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form_btn .btn {
    max-width: 280px;
    font-size: 18px;
  }
}
.form_btn .btn.back a {
  border: 2px solid #999;
  background: #999;
}
.form_btn .btn.back a::after {
  position: absolute;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
  left: 30px;
  right: auto;
}
@media screen and (min-width: 768px) {
  .form_btn .btn.back a::before {
    background: #fff;
  }
  .form_btn .btn.back a:hover {
    color: #999;
  }
  .form_btn .btn.back a:hover::after {
    background: url(../img/arrow_btn_gry.svg) no-repeat center/contain;
  }
}
.form_btn .btn a {
  border: 2px solid #E57516;
  background: #E57516;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  text-align: center;
}
.form_btn .btn a::after {
  content: "";
  background: url(../img/arrow_btn.svg) no-repeat center/contain;
  height: 16px;
  width: 16px;
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  right: 30px;
}
@media screen and (min-width: 768px) {
  .form_btn .btn a::before {
    background: #fff;
  }
  .form_btn .btn a:hover {
    color: #E57516;
  }
  .form_btn .btn a:hover::after {
    background: url(../img/arrow_btn_org.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 768px) {
  .form_btn .btn a {
    height: 60px;
  }
}

/* =============================================== 
  デジタルカタログ送付フォーム
=============================================== */
#digi_catalog {
  margin-bottom: 50px;
}
#digi_catalog .ttl {
  margin-bottom: 28px;
  font-size: 36px;
  font-weight: 500;
}
#digi_catalog .row {
  display: grid;
  grid-template-columns: 1fr 40%;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
#digi_catalog .row .txt {
  margin-bottom: 40px;
  line-height: 2;
}
#digi_catalog .row .btn_more {
  max-width: 300px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #digi_catalog .ttl {
    margin-bottom: 20px;
    font-size: 26px;
  }
  #digi_catalog .row {
    display: inherit;
  }
  #digi_catalog .row .left_box {
    margin-bottom: 30px;
  }
  #digi_catalog .row .right_box {
    width: 85%;
    margin: 0 auto;
  }
  #digi_catalog .row .txt {
    margin-bottom: 20px;
  }
}