@charset "UTF-8";
/* CSS Document */

/* 加盟店登録機能のスタイル */
.form_wrapper {
	display: block;
    max-width: 1100px;
    margin: 0 auto;
}

body {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/*	layout調整
------------------------------------------------- */
.mt20 {
    margin-top: 20px;
}

/*	PC版（769px以上）
------------------------------------------------- */
@media screen and (min-width: 769px) {
    .form_wrapper {
        max-width: 1100px;
        margin: 50px auto 100px;
    }
}


/*	SP版（768px以下）
------------------------------------------------- */
@media screen and (max-width: 768px) {
    .form_wrapper {
        width: calc(100% - 30px);
        margin: 50px auto 100px;
    }
}

/*input
---------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type='file'],
input[type='number'],
textarea,
select {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem;
    margin: 0;
    border-radius: 7px;
    outline: none;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 16px;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type='number']:focus,
textarea:focus,
select:focus {
    outline: none;
	border:2px solid #EA9A00;
	/* background:#FDEABE; */
    transition: 0.6s;
}

.disabled {
	    background: #b6b6b6 !important;
}


/* Radio button */
input[type="radio"] {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 0 0.6em;
    border: 1px solid #ccc;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background: #fff;
}

input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #EA9A00;
    content: '';
}

/* select */
.select_wrapper {
    position: relative;
}
.select_wrapper::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}

select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* file */
input[type='file'] {
    padding: 0;
    cursor: pointer;
  }

  ::file-selector-button,
  ::-webkit-file-upload-button {
    background-color: #ccc;
    border: none;
    cursor: pointer;
    border-right: 1px solid #ccc;
    padding: 0.8rem;
    margin-right: 1rem;
  }

.error_msg {
     color: red;
    font-weight: bold;
    margin-top: 5px;
}

/* table */
.detail_area table {
    width: 100%;
    box-sizing: border-box;
}
.detail_area table th {
    margin: 10px 0;
}

.tb_sns {
    width: 80%;
    display: flex;
    margin-bottom: 20px;
}
.tb_sns .tb_ttl {
    width: 20%;
}
.tb_sns dd {
    width: 60%;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    .tb_sns {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .tb_sns dt {
        margin-bottom: 10px;
    }
    .tb_sns dd {
        width: 100%;
        margin-left: 0;
    }
}

.tb_kit {
    width: 80%;
    display: flex;
    margin-bottom: 20px;
}
.tb_kit .tb_ttl {
    width: 20%;
}
@media screen and (max-width: 768px) {
    .tb_kit {
        width: 100%;
    }
    .tb_kit .tb_ttl {
        width: 50%;
    }
}
/* other */
.detail_ttl {
    font-weight: bold;
    margin-bottom: 1rem;
}
.detail_sub-ttl {
    margin-bottom: 1rem;
}
.detail_area table {
    width: 100%;
}
.detail_area dl {
    margin-left: 2%;
}
dl {
    margin-bottom: 40px;
}
#sp_modal dl {
    margin-bottom: 0 !important;
}
.consent_detail {
	text-align: left;
	display: inline-block;
}
.consent_detail_sub {
	margin-bottom: 5px;
}
/* heading */
.form_heading {
    display: block;

    /* vertical-align: middle; */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-indent: 0.6em;
    /* padding: 25px 0 0 0.7em; */
    line-height: 1.8;
    border-left: 15px solid#007739;
}
/* submit btn */
.submit_btn-area {
    margin: 50px 0;
    text-align: center;
}
.submit_btn {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    box-shadow: none;
}
.submit_btn {
    background: #007739;
    border: #007739;
    color: #ffffff;
    border-radius: 7px;
    font-size: 20px;
    padding: 16px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }

  .submit_btn:hover {
    background: #fff;
    color: #007739;
    border: 1px solid #007739;
    text-decoration: none;
    transition: 0.8s;
  }

.add_btn, .del_btn {
    border: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: #fff;
    border: 1px solid#007739;
    color: #007739;
    border-radius: 7px;
    padding: 0.8em;
    margin-left: auto;
}
.add_btn:hover, .del_btn:hover {
    background: #007739;
    border: #007739;
    color: #ffffff;
    transition: 1s;
    }
.material-symbols-outlined {
    margin: 0 0 2px 10px;
    font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 48;
}

.shop_info_box {
    background:#e7f1ec;
    margin: 10px;
    padding: 10px;
    border-radius: 7px;
}
.cancel_area {
    display: flex;
    margin: 10px;
    padding: 10px;
}
.kit_link {
    text-align: left;
}
.kit_link a {
    text-decoration: underline #036EB8;
    cursor: pointer;
}

.kit_link a:visited {
    color: #551a8b;
    text-decoration: underline #551a8b;
}
.merchant_link {
    text-decoration: underline #036EB8;
    cursor: pointer;
}

.merchant_link:visited {
    color: #551a8b;
    text-decoration: underline #551a8b;
}


/* 必須 */
.req {
    color: #fff;
    background: #e43855;
    padding: 0.4em;
    margin-left: 1rem;
    font-size: 14px;
    border-radius: 5px;
}

/* ローディング */
 #overlay{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide{
  display:none;
}