@charset "UTF-8";
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
/************************************************************************
 * FORM css
 *************************************************************************/
div#wrapper h1.form-header {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
div#wrapper h1.form-header.center {
  justify-content: center;
}
@media screen and (min-width: 744px) {
  div#wrapper h1.form-header.center-pc {
    justify-content: center;
  }
}
div#wrapper h1.form-header span.icon {
  position: absolute;
  right: 1rem;
  width: 120px;
}
@media screen and (min-width: 744px) {
  div#wrapper h1.form-header span.icon.large {
    width: 160px;
  }
}
div#wrapper h1.form-header span.icon img {
  width: 100%;
}
@media screen and (min-width: 744px) {
  div#wrapper h1.form-header span.icon.form-complete {
    right: 9.75rem;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper h1.form-header {
    font-size: 24px;
    line-height: 130%;
  }
  div#wrapper h1.form-header span.icon {
    right: 0;
    width: 80px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
div#wrapper .input.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
div#wrapper .input * {
  box-sizing: border-box;
}
div#wrapper .input span.confirm {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper .input span.confirm {
    font-size: 1.125rem;
  }
}
div#wrapper .input.error input, div#wrapper .input.error textarea, div#wrapper .input.error select {
  border: 1px solid #F6341E;
}
div#wrapper .input.error input::placeholder, div#wrapper .input.error textarea::placeholder {
  color: #F6341E;
  opacity: 0.7;
}
div#wrapper .input.error .select-box::after {
  background-color: #F6341E;
}
div#wrapper .input.frozen textarea {
  padding: 0;
  background-color: transparent;
  font-size: 1.5rem;
  outline: none;
}
div#wrapper input {
  margin-top: 0.5rem;
}
div#wrapper input[type=text], div#wrapper textarea {
  width: 100%;
  padding: 1.375rem 1.5rem;
  border: none;
  border-radius: 8px;
}
div#wrapper input[type=text]::placeholder, div#wrapper textarea::placeholder {
  color: #9D9DA0;
}
@media screen and (max-width: 743px) {
  div#wrapper input[type=text], div#wrapper textarea {
    padding: 1rem;
  }
}
div#wrapper textarea {
  resize: none;
  height: 11rem;
}
div#wrapper .select-box {
  position: relative;
  display: inline-block;
}
div#wrapper .select-box::after {
  content: "";
  background-image: url("../img/common/arrow_forward_ios.svg");
  background-size: 20px 12px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 20px;
  height: 12px;
  display: block;
  position: relative;
  background-image: none;
  position: absolute;
  right: 1rem;
  bottom: 50%;
  transform: translateY(50%);
  pointer-events: none;
  background-color: black;
  mask: url("../img/common/arrow_forward_ios.svg") no-repeat center/contain;
}
div#wrapper .select-box.frozen::after {
  display: none;
}
div#wrapper .select-box select {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  padding-right: 3rem;
  border: none;
  appearance: none; /* 標準 */
  -webkit-appearance: none; /* Chrome / Safari */
  -moz-appearance: none; /* Firefox */
  color: #2D3234 !important;
}
div#wrapper label {
  flex-shrink: 0;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper label {
    width: 100%;
  }
}
div#wrapper label input[type=checkbox], div#wrapper label input[type=radio] {
  display: none;
}
div#wrapper label span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 743px) {
  div#wrapper label span {
    align-items: flex-start;
  }
}
div#wrapper label span.vtop {
  align-items: flex-start;
}
div#wrapper label span.vtop::before {
  margin-top: 0.3rem;
}
div#wrapper label input[type=checkbox] + span::before {
  content: "";
  flex-shrink: 0;
  background-image: url("../img/common/check.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  display: block;
  margin-right: 0.6rem;
  vertical-align: bottom;
}
div#wrapper label input[type=checkbox]:checked + span::before {
  content: "";
  flex-shrink: 0;
  background-image: url("../img/common/check-checked.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  display: block;
  margin-right: 0.6rem;
  vertical-align: bottom;
}
div#wrapper label input[type=radio] + span::before {
  content: "";
  flex-shrink: 0;
  background-image: url("../img/common/radio.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  display: block;
  margin-right: 0.6rem;
  vertical-align: bottom;
}
div#wrapper label input[type=radio]:checked + span::before {
  content: "";
  flex-shrink: 0;
  background-image: url("../img/common/radio-checked.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  display: block;
  margin-right: 0.6rem;
  vertical-align: bottom;
}
div#wrapper section.form {
  margin-top: 3.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form {
    margin-top: 2rem;
  }
}
div#wrapper section.form .title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .title {
    text-align: left;
    font-size: 18px;
  }
}
div#wrapper section.form ul.error {
  padding-top: 24px;
  padding-bottom: 24px;
  line-height: 1.7rem;
}
div#wrapper section.form ul.error li {
  position: relative;
  color: #F6341E;
  padding-left: 1rem;
}
div#wrapper section.form ul.error li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form ul.error li {
    font-size: 0.875rem;
  }
}
div#wrapper section.form .message {
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .message {
    font-size: 0.875rem;
    text-align: left;
  }
}
div#wrapper section.form .message.error {
  color: #F6341E;
  text-align: left;
}
div#wrapper section.form .message.left {
  text-align: left;
}
div#wrapper section.form .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .row {
    display: block;
    margin-bottom: 1.5rem;
  }
}
div#wrapper section.form .row .col {
  width: 100%;
}
div#wrapper section.form .row .col:nth-child(2) {
  margin-left: 2rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .row .col:nth-child(2) {
    margin-left: 0;
    margin-top: 2.5rem;
  }
}
div#wrapper section.form .row .col .error {
  margin-top: 0.45rem;
}
div#wrapper section.form .row .col .error span.message {
  color: #F6341E;
  font-size: 0.875rem;
}
div#wrapper section.form .row .col .error span.message::before {
  content: "※";
}
div#wrapper section.form .row .col .zip-button {
  margin-top: 0.5rem;
}
div#wrapper section.form .row .col .zip-button a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
div#wrapper section.form .row .col .label {
  margin-bottom: 0.5rem;
}
div#wrapper section.form .row .col .label span {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .row .col .label span {
    font-size: 1rem;
  }
}
div#wrapper section.form .row .col .label.required span {
  display: flex;
  align-items: center;
}
div#wrapper section.form .row .col .label.required span::after {
  content: "必須";
  font-size: 0.875rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F6341E;
  padding: 0px 6px;
  margin-left: 8px;
  border-radius: 4px;
}
@media screen and (max-width: 743px) {
  div#wrapper section.form .row .col .label.required span::after {
    font-size: 0.75rem;
  }
}
div#wrapper section.notion {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion {
    border-radius: 4px;
    padding: 1rem;
  }
}
div#wrapper section.notion:nth-child(n+2) {
  margin-top: 1.5rem;
}
div#wrapper section.notion.no-margin {
  margin-top: 0;
}
div#wrapper section.notion h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion h3 {
    font-size: 1.25rem;
  }
}
div#wrapper section.notion label {
  display: block;
  margin-bottom: 0;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion label span {
    font-size: 0.875rem;
  }
}
div#wrapper section.notion .indented {
  padding-left: 2.2rem;
  margin-top: 0.5rem;
}
div#wrapper section.notion .indented li:nth-child(n+2) {
  margin-top: 0.1rem;
}
div#wrapper section.notion ul li:nth-child(n+2) {
  margin-top: 0.75rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion ul li:nth-child(n+2) {
    margin-top: 0.5rem;
  }
}
div#wrapper section.notion ul li {
  position: relative;
  padding-left: 1.5rem;
}
div#wrapper section.notion ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
div#wrapper section.notion ul li.attention::before {
  content: "※";
}
div#wrapper section.notion ul li a {
  color: #009AB6;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion ul li {
    font-size: 0.875rem;
    padding-left: 1rem;
  }
}
div#wrapper section.notion .agree-box {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.notion .agree-box {
    margin-top: 1.3rem;
  }
  div#wrapper section.notion .agree-box label {
    width: auto;
  }
}
div#wrapper section.notion .error {
  text-align: center;
  color: #F6341E;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
div#wrapper section.notion .error::before {
  content: "※";
}
div#wrapper section.submit-button-box {
  text-align: center;
}
div#wrapper section.submit-button-box .btn {
  width: 400px;
  margin-top: 3.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.submit-button-box .btn {
    width: 100%;
    margin-top: 2rem;
  }
}
div#wrapper section.submit-button-box .btn:nth-child(n+2) {
  margin-top: 2rem;
}
div#wrapper section.submit-button-box .btn a {
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 1rem;
}
div#wrapper section.submit-button-box .btn a::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 50%;
  transform: translateY(50%);
}
div#wrapper section.related-button-box {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 80px;
  border-top: 1px dotted #636b6e;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box {
    max-width: 91.4666vw;
    padding-top: 40px;
    padding-bottom: 64px;
    display: block;
  }
}
div#wrapper section.related-button-box .btn {
  border-radius: 1rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box .btn {
    width: 100%;
  }
}
div#wrapper section.related-button-box .btn:nth-child(2) {
  margin-left: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box .btn:nth-child(2) {
    margin-left: 0;
    margin-top: 1rem;
  }
}
div#wrapper section.related-button-box .btn a {
  position: relative;
  display: block;
  width: 368px;
  height: 109px;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box .btn a {
    width: 100%;
    height: 91px;
  }
}
div#wrapper section.related-button-box .btn a p.en {
  font-size: 0.625rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box .btn a p.en {
    font-size: 0.5rem;
  }
}
div#wrapper section.related-button-box .btn a p.jp {
  font-size: 1.25rem;
  margin-top: 8px;
}
@media screen and (max-width: 743px) {
  div#wrapper section.related-button-box .btn a p.jp {
    font-size: 1.125rem;
  }
}
div#wrapper section.related-button-box .btn a figure {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
}
div#wrapper section.download-list-box {
  margin-top: 3.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.download-list-box {
    margin-top: 2rem;
  }
}
div#wrapper section.download-list-box ul li:nth-child(n+2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.download-list-box ul li:nth-child(n+2) {
    margin-top: 1rem;
  }
}
div#wrapper section.download-list-box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  color: #009AB6;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}
div#wrapper section.download-list-box ul li a:hover {
  color: #0AAFD4;
}
@media screen and (max-width: 743px) {
  div#wrapper section.download-list-box ul li a {
    padding: 1rem;
  }
}
div#wrapper section.download-list-box ul li a p.ttl {
  padding-right: 2rem;
}
@media screen and (max-width: 743px) {
  div#wrapper section.download-list-box ul li a p.ttl {
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=form.css.map */
