@charset "UTF-8";
/*===================================

	2022/09 追記
	出荷案内配信 #s_notification

===================================*/
#s_notification .bg-wave .main-contents {
  padding-bottom: 40px;
}
#s_notification .btn_wrp {
  margin-top: 50px;
}
#s_notification h2.ttl_drop::after {
  background: url(../img/img-common/icon_truck.png) center bottom no-repeat;
  width: 38px;
}
#s_notification .form_lead .notice {
  color: #cc0000;
}
#s_notification .form_lead.font_small {
  font-size: 1.25rem;
  margin-top: 1rem;
} 
#s_notification .form_tbl {
  margin-bottom: 70px;
}
#s_notification .form_tbl_flexrow {
	display: flex;
    align-items: center;
}
#s_notification .form_tbl_flexrow .form_tbl_caution:first-of-type {
	padding: 0 5px 0 0;
}
#s_notification .form_tbl_flexrow .form_tbl_caution {
	padding: 0 5px 0 10px;
	width: 5em;
	text-align: center;
}
#s_notification input.error {
  width: 60%;
	margin: 0;
  color: #333;
  font-weight: normal;
}
#s_notification label.error {
  display: inline-block;
	margin-top: 10px;
}
#s_notification .btn_wrp {
  display: flex;
  justify-content: center;
  gap: 60px;
}
#s_notification .btn_wrp input {
  margin: 40px 0;
}
#s_notification button.btn_back {
  background: #aaa;
}
#s_notification input[type=button] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}
#s_notification .duplication_guide {
  margin: 30px 0;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 50px;
}
#s_notification .duplication_guide a {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  #s_notification .form_tbl {
    margin-bottom: 40px;
  }
  #s_notification .form_lead.font_small {
    font-size: 1rem;
    margin-top: 1rem;
  } 
  #s_notification .form_tbl_flexrow .form_tbl_caution {
    width: 10em;
  }
  #s_notification .form_tbl_flexrow .form_tbl_caution {
    margin: 0;
  }
  #s_notification .btn_wrp {
    gap: 0;
    flex-direction: column;
  }
  #s_notification .btn_wrp input {
    margin: 30px auto 0;
  }
  #s_notification .duplication_guide {
      justify-content: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
}
} 

/*===================================
  
  フォーム設定

===================================*/
form .form_tbl input,
form .form_tbl textarea{
	font-family: "Noto Sans JP","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
form .form_tbl input.required.err,
form .form_tbl textarea.required.err,
form .form_tbl select.required.err {
  background: #FFFFBF !important;
}
form .form_tbl input.required:not(.err),
form .form_tbl textarea.required:not(.err),
form .form_tbl select.required:not(.err) {
  background: #FFF !important;
}
form .form_tbl input:-webkit-autofill,
form .form_tbl select:-webkit-autofill,
form .form_tbl textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

/* tel */
.form_tel {
  display: flex;
  align-items: center;
  margin: 20px 0 0 30px;
}

.form_tel_no {
  display: flex;
  align-items: center;
  margin-right: 30px;
  font-size: 2rem;
  font-weight: bold;
}

.form_tel_no > img {
  display: block;
  height: 30px;
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .form_tel {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0 0 0;
  }
  .form_tel_no {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
  }
  .form_tel_no > img {
    display: block;
    height: 30px;
    margin-right: 15px;
  }
  .form_tel_time {
    margin-left: 30px;
  }
}

.form_block + .form_block {
  margin-top: 50px;
}

.form_block_thanks {
  display: table;
  margin: 0 auto 30px;
}

@media screen and (max-width: 991px) {
  .form_block + .form_block {
    margin-top: 25px;
  }
}

/* input設定 */
input, textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=submit], button {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.input_text {
  width: 60%;
  padding: 10px 15px;
  border: 1px solid #ccc;
}

/* input */
input.input_text {
  height: 40px;
  line-height: 40px;
}

/* textarea */
textarea.input_text {
  width: 100%;
  height: 200px;
}

/* select設定 */
.select {
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 40%;
  height: 40px;
  text-align: center;
}

.select > select {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 15px;
  text-align: left;
}

.select::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #01BFF2;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .input_text, .select {
    font-size: 16px;
    width: 100%;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #9f9f9f;
}

:-ms-input-placeholder {
  color: #9f9f9f;
}

::placeholder {
  color: #9f9f9f;
}

input:focus::placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus:-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

/* titile */
.form_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 50px 0 5px 0;
}

@media screen and (max-width: 991px) {
  .form_ttl {
    margin-top: 25px;
    font-size: 1.4rem;
  }
}

/* table設定 */
.form_tbl {
  padding: 0;
  width: 100%;
  margin-top: 70px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  table-layout: fixed;
  word-wrap: break-word;
}

.form_tbl th, .form_tbl td {
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 25px;
  line-height: 1.6;
}

.form_tbl th {
  width: 230px;
  background: #e9f7ff;
}

.form_tbl_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_tbl_item > span {
  font-weight: bold;
}

.form_tbl_item > span > b {
  font-weight: normal;
  display: block;
}

.form_tbl_hisu {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  background: #FF4D4D;
  display: inline-block;
  padding: 5px 8px;
}

.form_tbl_caution {
  font-size: 1.2rem;
  padding-left: 10px;
}

.form_tbl_zip {
  display: flex;
  align-items: center;
}

.form_tbl_zip > input {
  width: 30%;
}

.form_tbl_zip > button {
  font-size: 1.4rem;
  height: 40px;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 4px;
  border: 1px solid #999;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
  cursor: pointer;
}

.form_tbl_zip > button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.form_tbl_text {
  margin-top: 10px;
}

.form_tbl_question > p {
  margin-bottom: 10px;
}

.form_lead {
  font-size: 1.5rem;
  line-height: 2.4;
}

@media screen and (max-width: 991px) {
  .form_tbl {
    margin-top: 40px;
  }
  .form_tbl_caption {
    font-size: 1.1rem;
  }
  .form_tbl th, .form_tbl td {
    font-size: 1.4rem;
    display: block;
    padding: 20px;
  }
  .form_tbl th {
    width: 100%;
    border-bottom: none;
    padding: 15px 20px;
  }
  .form_tbl p {
    font-size: 1.2rem;
  }
  .form_tbl_item > span > b {
    font-size: 1.2rem;
    padding-left: 5px;
    display: inline-block;
  }
  .form_tbl_hisu {
    font-size: 1.2rem;
  }
  .form_tbl_zip {
    flex-wrap: wrap;
  }
  .form_tbl_zip > input {
    width: 50%;
  }
  .form_tbl_zip > button {
    font-size: 1.2rem;
    height: 40px;
    line-height: 1.3;
  }
  .form_tbl_caution {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
    font-size: 1.2rem;
  }
  .form_lead {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* checkbox01 */
.check_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.check_list01 label > input {
  position: absolute;
}

.check_list01 label > span {
  margin: 20px 20px 0 0;
  border: 1px solid #01BFF2;
  border-radius: 4px;
  padding: 13px 15px 13px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
}

.check_list01 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #01BFF2;
}

.check_list01 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.check_list01 label > input:checked + span {
  background: #EEFBFE;
}

.check_list01 label > input:checked + span::after {
  opacity: 1;
}

.check_list01 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* checkbox02 */
.check_list02 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.check_list02 label > input {
  position: absolute;
}

.check_list02 label > span {
  margin: 20px 20px 0 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.check_list02 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #01BFF2;
}

.check_list02 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #bf0005;
  border-bottom: 2px solid #bf0005;
}

.check_list02 label > input:checked + span::after {
  opacity: 1;
}

.check_list02 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* radio01 */
.radio_list01 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.radio_list01 label > input {
  position: absolute;
}

.radio_list01 label > span {
  margin: 20px 20px 0 0;
  border: 1px solid #01BFF2;
  border-radius: 4px;
  padding: 13px 15px 13px 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.05em;
}

.radio_list01 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #01BFF2;
}

.radio_list01 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio_list01 label > input:checked + span {
  background: #EEFBFE;
}

.radio_list01 label > input:checked + span::after {
  opacity: 1;
}

.radio_list01 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

/* radio02 */
.radio_list02 {
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin-top: -20px;
}

.radio_list02 label > input {
  position: absolute;
}

.radio_list02 label > span {
  margin: 20px 20px 0 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.radio_list02 label > span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #01BFF2;
}

.radio_list02 label > span::after {
  content: '';
  position: absolute;
  opacity: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 15px;
  background: #FF0000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio_list02 label > input:checked + span::after {
  opacity: 1;
}

.radio_list02 label > input:focus + span::before {
  outline: 0;
  box-shadow: 0 0 0 3px #ffe3e3;
}

@media screen and (max-width: 991px) {
  .check_list01,
  .check_list02,
  .radio_list01,
  .radio_list02 {
    margin-top: -15px;
  }
  .check_list01 label,
  .check_list02 label,
  .radio_list01 label,
  .radio_list02 label {
    width: 100%;
  }
  .check_list01 label > span,
  .check_list02 label > span,
  .radio_list01 label > span,
  .radio_list02 label > span {
    font-size: 1.1rem;
    margin: 15px 20px 0 0;
    display: block;
  }
}

/* 送信 */
.form_send {
  margin-top: 40px;
}
.form_send.nn {
  margin-top: 0px;
}

.form_send_text {
  text-align: center;
}

.form_send_btn {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: auto;
}

.form_send_btn > li {
  width: 48%;
}

.form_send_btn > li > input {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .form_send {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

/* btn */
.btn_confirm,
.btn_back,
.btn_top,
input[name^="submitBack"] {
  font-size: 1.6rem;
  display: block;
  font-weight: bold;
  color: #fff !important;
  margin: 40px auto 0;
  padding: 10px 0;
  border-radius: 5px;
  text-align: center;
  max-width: 200px;
  width: 80%;
  background: #FF8000;
}

.btn_back {
  background: #aaa;
}

@media screen and (max-width: 991px) {
  .btn_confirm,
  .btn_back,
  .btn_top {
    margin: 30px auto 0;
    font-size: 1.4rem;
  }
}

/* error */
.error {
  color: #cc0000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0 0;
}

.error2 {
  color: #fff;
  background: #f00;
  padding: 0.8% 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 20px auto 0;
  width: 100%;
}

.mw_wp_form .error {
  width: 100%;
  margin: 15px auto 0;
}
.mw_wp_form.mw_wp_form_confirm .input_box,
.mw_wp_form.mw_wp_form_confirm .form_tbl_item > span > b,
.mw_wp_form.mw_wp_form_confirm .form_tbl_text,
.mw_wp_form.mw_wp_form_confirm .form_tbl_hisu,
.mw_wp_form.mw_wp_form_confirm .zipcloud_search,
.mw_wp_form.mw_wp_form_confirm .select::after,
.mw_wp_form.mw_wp_form_confirm .form_tbl_caution {
  display: none !important;
}
.mw_wp_form.mw_wp_form_confirm .check_list01,
.mw_wp_form.mw_wp_form_confirm .check_list02,
.mw_wp_form.mw_wp_form_confirm .radio_list01,
.mw_wp_form.mw_wp_form_confirm .radio_list02 {
  margin-top: 0px;
}
.mw_wp_form.mw_wp_form_confirm .select {
  text-align: left;
  border: none;
  height: auto;
  width: auto;
}
input[name^="submitBack"] {
  background: #aaa;
}


.contact_thanks p {
  display: table;
  margin: 0 auto 50px;
  line-height: 2.2;
}

@media screen and (max-width: 991px) {
  .contact_thanks {
    padding-bottom: 20px;
  }
  .contact_thanks p {
    margin: 0 auto 30px;
    line-height: 2;
  }
}


.btn_wrp {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.btn_wrp input {
  margin: 40px 0;
}

@media screen and (max-width: 991px) {
.btn_wrp {
    gap: 0;
    flex-direction: column;
  }
.btn_wrp input {
    margin: 30px auto 0;
  }
}