@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
@import 'base.css';
@import 'header.css';
@import 'main.css';
@import 'button.css';
@import 'drawer.css';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #555;
}

img {
  vertical-align: middle;
}

@-webkit-keyframes switchtext {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
@-moz-keyframes switchtext {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
@keyframes switchtext {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=date],
input[type=search],
input[type=url],
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  outline: 0;
  border-radius: 2px;
  background: white;
  width: 100%;
  padding: 8px 10px;
  border: solid 1px #ddd;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=tel]:hover,
input[type=date]:hover,
input[type=search]:hover,
input[type=url]:hover,
textarea:hover {
  background-color: #eaf7f9;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=search]:focus,
input[type=url]:focus,
textarea:focus {
  background-color: #eaf7f9;
}

input[type=radio], input[type=checkbox] {
  display: none !important;
}

.l-checkbox {
  font-size: 14px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  position: relative;
  display: inline-block;
  padding: 7px 10px 5px 36px;
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  margin: 2px 10px;
}
.l-checkbox:hover {
  background-color: #eaf7f9;
}
.l-checkbox:hover:after {
  border-color: #4ea2af;
}
.l-checkbox:after {
  -webkit-transition: border-color 0.1s linear;
  transition: border-color 0.1s linear;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 4px;
  content: "";
}
.l-checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 17px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #455560;
  border-bottom: 2px solid #455560;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .l-checkbox:before {
  opacity: 1;
}

.l-radio {
  width: 100%;
}

.m-radio {
  width: 50%;
}

.l-radio, .m-radio {
  box-sizing: border-box;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  position: relative;
  display: inline-block;
  padding: 7px 10px 5px 36px;
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  margin: 2px 0;
}
.l-radio:hover, .m-radio:hover {
  background-color: #eaf7f9;
}
.l-radio:hover:after, .m-radio:hover:after {
  border-color: #4ea2af;
}
.l-radio:before, .m-radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4ea2af;
  content: "";
  opacity: 0;
}
input[type=radio]:checked + .l-radio:before, input[type=radio]:checked + .m-radio:before {
  opacity: 1;
}
.l-radio:after, .m-radio:after {
  -webkit-transition: border-color 0.1s linear;
  transition: border-color 0.1s linear;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 100px;
  content: "";
}

.l-length select {
  width: 100%;
  height: 33px;
  margin: 0 0 10px 0;
  border-radius: 2px;
  border: none;
  background: white;
}
.l-length select:hover {
  background: #eaf7f9;
}

.s-length select {
  display: inline-block;
  height: 33px;
  margin: 0 0 10px 0;
  border-radius: 2px;
  border: solid 1px #ddd;
  background: #eee;
}
.s-length select:hover {
  background: #eaf7f9;
}
.s-length span {
  margin: 5px 10px;
}
.s-length input, .s-length select {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}
.s-length input:last-child, .s-length select:last-child {
  margin-bottom: 0;
}

.field_with_errors input[type=text],
.field_with_errors input[type=email],
.field_with_errors input[type=password],
.field_with_errors input[type=date],
.field_with_errors input[type=search],
.field_with_errors input[type=url],
.field_with_errors textarea {
  background: #455560;
}

.l-form {
  width: 100%;
  text-align: left;
  margin: 20px auto;
}
.l-form .error {
  font-size: 13px;
  color: red;
  display: block;
}
.l-form dl {
  width: 100%;
  display: table;
  vertical-align: middle;
  font-size: 14px;
  margin-bottom: 20px;
}
.l-form dd .hint {
  font-size: 13px;
  margin: 5px;
}
.l-form dd span {
  display: inline-block;
  margin: 5px;
}
.l-form dd .inner_label {
  margin: 0 10px 0 0 !important;
}
.l-form dt {
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.l-form dt.required:after {
  content: "必須";
  position: absolute;
  right: 20px;
  top: 50%;
  line-height: 24px;
  width: 40px;
  text-align: center;
  font-size: 10px;
  background: #f6a549;
  display: inline-block;
  margin-top: -12px;
  color: white;
  border-radius: 2px;
}
.l-form dt.required {
  padding-right: 65px;
}
.l-form dt abbr[title] {
  border-bottom: none;
}

th, td, li, a {
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
}

@media screen and (max-width: 768px) {
  .l-select, .l-checkbox, .l-radio {
    font-size: 12px;
  }

  .l-form {
    margin: 10px auto;
  }
  .l-form dl {
    display: block;
    font-size: 12px;
  }
  .l-form dt, .l-form dd {
    display: block;
    padding: 10px;
  }
  .l-form dd {
    width: 100%;
  }
  .l-form dd .hint {
    font-size: 12px;
  }
  .l-form dd .error {
    font-size: 12px;
  }
  .l-form dd.s-length #hoge {
    margin: 0 10px 0 0;
  }
  .l-form dt {
    width: 100%;
    font-size: 12px;
  }
  .l-form dt span {
    line-height: 20px;
    right: auto;
    margin-left: 10px;
    margin-top: -9px;
  }
}
.p-country-name {
  display: none !important;
}

.actions {
  text-align: center;
}
.actions button + button {
  margin-left: 20px;
}
