/*フォーム関連*/

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font: 16px sans-serif;
  padding: 0.5rem 5rem;
  background-color: #1EB39C;
  color: #fff;
  margin-bottom: 1rem;
}
input[type="submit"]:disabled {
  background-color: #eee;
  color: #757575;
  pointer-events: none;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="text"],
input[type="number"],
textarea {
  border: none;
  border-bottom: solid 1px #bdbdbd;
  resize: none;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  font-size: 1rem;
  width: 100%;
  margin: 20px auto;
}

textarea {
  height: 5rem;
  margin: 10px 0;
}

textarea.support {
  height: 15rem;
}

.caption.left {
  text-align: left;
  display: inline-block;
}

input[type="text"]:focus,
textarea:focus {
  outline: 0;
  border-bottom: 2px solid #1EB39C;
}

::-webkit-input-placeholder {
  color: #bdbdbd;
}

::-moz-placeholder {
  color: #bdbdbd;
}

:-ms-input-placeholder {
  color: #bdbdbd;
}

.formitem {
  margin: 30px 0;
}
.formitem.center {
  text-align: center;
}

.formitem label {
  display: block;
  color: #757575;
  text-align: left;
  line-height: 1.4rem;
}

.radiolabel {
  padding: 7px 20px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 0.9rem;
}

input[type="radio"] {
  display: none;
}

.radiolabel::before,
.radiolabel::after {
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 100%;
}

.radiolabel::before {
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 2px solid #ddd;
}

.radiolabel::after {
  opacity: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #1EB39C;
  -webkit-transform: scale(2);
  transform: scale(2);
}

input[type="radio"]:checked + .radiolabel::before {
  border: 1px solid #1EB39C;
}

input[type="radio"]:checked + .radiolabel::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radioitem {
  margin-left: 20px;
}

.error {
  font-size: 0.65rem;
  color: #f44336;
}

.formcontent {
  padding: 20px;
  font-size: 0.9rem;
}

input[type="checkbox"] {
  display: none;
}
.settingcheck {
  cursor: pointer;
  padding: 6px 0;
  width: 100%;
}
.settingcheck.center {
  text-align: center;
  color: #212121;
}
.settingcheck a {
  padding: 2px 0;
  margin-left: 6px;
}
.dummycheck {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: text-bottom;
  margin-bottom: 1px;
}

.dummycheck::before,
.dummycheck::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  transition: all 0.2s linear;
}

.dummycheck::before {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 3px;
}

.dummycheck::after {
  background: url(../../image/common/check.png) center center / contain
    no-repeat;
  left: 1px;
}

input[type="checkbox"]:checked + .dummycheck::before {
  background-color: #00bcd4;
  border: 1px solid #00bcd4;
}

.siryowrap {
  margin: 0 auto;
  padding: 2rem;
  max-width: 600px;
}
.siryoimg {
  max-width: 200px;
  object-fit: contain;
}

.formbase {
  width: 100%;
  max-width: 1100px;
  height: auto;
  background-color: #fff;
  margin: 0 auto;
  padding: 2rem;
}

.formbox {
  box-shadow: 0px 0px 3px 3px rgba(217, 217, 217, 0.2);
  border: 1px solid #eee;
  border-top: none;
}

/*タブ*/
.tablist {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 6px;
  padding: 20px 20px 0;
}
.tabbtn {
  color: #fff;
  background-color: #bdbdbd;
  cursor: pointer;
  border: 1px solid #bdbdbd;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 2px 2px 0 0;
  border: none;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
    box-shadow: inset 0px -10px 10px -6px rgba(0,0,0, 0.1);
}
.tabbtn:hover {
  opacity: 1;
  color: #fff;
  background-color: #1EB39C;
}
.tabbtn.current {
  color: #000;
  cursor: default;
  background-color: #fff;
  box-shadow: 0px -5px 3px -4px rgba(171, 171, 171, 0.35);
}
.tabcont {
  display: none;
}
.tabcont.show {
  display: block;
}

@media screen and (max-width: 740px) {
.formbase{
  padding: 20px 0;
}
.formbox{
  margin-bottom: 20px;
}
}