@charset "utf-8";

:root {
  --aurora-white: #fff;
  --aurora-transparent: transparent;
  --aurora-blue-300: #7dd3fc;
  --aurora-blue-400: #38bdf8;
  --aurora-blue-500: #0ea5e9;
  --aurora-indigo-300: #a5b4fc;
  --aurora-violet-200: #c7d2fe;
  --spacing: .25rem;
}

/*-------------- 背景 --------------*/
@keyframes aurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}
.aurora-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-effect {
  --white-gradient: repeating-linear-gradient(
    100deg,
    var(--aurora-white) 0%,
    var(--aurora-white) 7%,
    var(--aurora-transparent) 10%,
    var(--aurora-transparent) 12%,
    var(--aurora-white) 16%
  );

  --aurora-gradient: repeating-linear-gradient(
    100deg,
    var(--aurora-blue-500) 10%,
    var(--aurora-indigo-300) 15%,
    var(--aurora-blue-300) 20%,
    var(--aurora-violet-200) 25%,
    var(--aurora-blue-400) 30%
  );

  position: absolute;
  inset: -10px;
  background-image: var(--white-gradient), var(--aurora-gradient);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;
  filter: blur(10px) invert(1);
  opacity: 0.6;
  will-change: transform;
  -webkit-mask-image: radial-gradient(
    ellipse at 100% 0%,
    black 10%,
    transparent 70%
  );
  mask-image: radial-gradient(
    ellipse at 100% 0%,
    black 10%,
    transparent 70%
  );
}

.aurora-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--white-gradient), var(--aurora-gradient);
  background-size: 200%, 100%;
  background-attachment: fixed;
  animation: aurora 60s linear infinite;
  mix-blend-mode: difference;
  -webkit-mask-image: inherit;
  mask-image: inherit;
}

/*-------------- header --------------*/
header{
  position: fixed;
  width:250px;
  height:100vh;
  border-right: 1px solid #eeeeee;
  z-index:5;
  background: #fff;
}
header .inner{
  padding-top: 30px;
}
header .inner .logo{
  padding:0 50px 50px;
}
header .inner .logo a{
  display:block;
}
header .inner .logo a img.pc{
  display:block;
  width:100%;
  max-width:138px;
  margin:0 auto;
}
header .inner .logo a img.sp{
  display:none;
  width:100%;
  max-width:900px;
  margin:0 auto;
}
header #gn ul li{
  border-bottom: 1px solid #eeeeee;
}
header #gn ul li:first-of-type{
  border-top: 1px solid #eeeeee;
}
header #gn ul li a{
  display:block;
  border-left: 4px solid #fff;
  padding:25px 25px;
  color:#000;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
header #gn ul li.current a{
  border-color: #00b0f0;
  color: #00b0f0;
}
header #gn ul li a:hover{
  color: #00b0f0;
}
header .bm{
  display:none;
}
@media screen and (max-width: 1200px){
  header{
    position: relative;
    width:100%;
    height:100px;
    border-right: none;
    border-bottom: 1px solid #eeeeee;
  }
  header .inner{
    padding-top: 0px;
    display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	width:100%;
    align-items: center;
  }
  header .inner .logo{
    width:300px;
    padding:0 15px 0px 50px;
  }
  header .inner .logo a img.pc{
    display:none;
  }
  header .inner .logo a img.sp{
    display:block;
  }
  header #gn{
    display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
    width:calc(100% - 300px);
    height:100px;
    justify-content: flex-end;
  }
  header #gn ul{
    display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  }
  header #gn ul li{
    border-bottom: none;
  }
  header #gn ul li:first-of-type{
    border-top: none;
  }
  header #gn ul li a{
    display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
    align-items: center;
    justify-content: center;
    border-left: none;
    padding:0px 25px;
    height:100px;
    font-size: 16px;
  }
  header #gn ul li.current a{
    border-color: none;
    color: #000;
  }
  header #gn ul li a:hover{
    color: #00b0f0;
  }
  header #gn ul li.sp_ol a{
    color: #fff;
    background: #00b0f0;
  }

}
@media screen and (max-width: 1080px){
  header #gn ul li a{
    padding:0px 15px;
    height:100px;
    font-size: 16px;
  }
}
@media screen and (max-width: 860px){
  header{
    height:80px;
  }
  header .inner{
    height:80px;
  }
  header .bm{
		position: fixed;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		align-content: center;
		justify-content: center;
    top:10px;
		right:10px;
    z-index: 20;
	}
  header .bm span{
  		display: flex;
  		flex-wrap: wrap;
  		align-items: center;
  		align-content: center;
  		justify-content: center;
  		width: 50px;
  		height: 50px;
  		padding: 0px;
  		cursor: pointer;
  		box-sizing: border-box;
      z-index: 20;
  	}
  header .bm span:before,
  header .bm span:after{
  		content: "";
  		display: block;
  		width: 30px;
  		height: 2px;
  		background: #000;
  		margin: auto;
  		transition: 0.3s;
  }
  header .bm i{
  		display: block;
  		width: 30px;
  		margin: 5px auto;
  		height: 2px;
  		background: #000;
  		transition: 0.3s;
  }
  .bmopen	header .bm span:before{
  		transform: rotate(225deg) translate(-5px, -5px);
  }
  .bmopen	header .bm span:after{
  		transform: rotate(-225deg) translate(-5px, 5px);
  }
  .bmopen	header .bm i{
  		opacity: 0;
  }

  header #gn{
  	background: #fff;
  	width:0px;
  	height:100vh;
  	position: fixed;
  	top:0;
  	right:0;
  	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	justify-content: center;
  	z-index: 10;
    pointer-events: none;
  }
  header #gn .gn_inner{
  	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	width:100%;
  	flex-direction: row;
  	justify-content: center;
  	align-items: center;
  	padding:0 10px;
  	transition: 0.3s ease-in-out;
  	-moz-box-sizing:border-box; -webkit-box-sizing:border-box; -o-box-sizing:border-box; -ms-box-sizing:border-box; box-sizing:border-box;
  }

  .bmopen header #gn{
  	width:100%;
  	background: rgba(0,0,0,0.7);
    pointer-events: none;
  }
  header #gn .gn_inner{
  	width: 500px;
  	height: 100%;
  	background: #fff;
  	margin-left: auto;
  	margin-right: -500px;
  	transition: 0.3s ease-in-out;
  	pointer-events: auto;
  	box-shadow: 0 0 5px rgba(0,0,0,0.3);
  	display: flex;
  	padding:150px 20px 0;
  	justify-content: flex-start;
  	align-items: stretch;
    overflow-y: scroll;
    pointer-events: auto;
  }
  .bmopen header #gn .gn_inner{
  	margin-right: 0;
  }

  header #gn .gn_inner ul{
  	width:100%;
  	text-align: center;
    flex-direction: column;
  	margin: 0 auto;
  }
  header #gn .gn_inner ul li{
  	position: relative;
  	border-bottom: 1px solid #ccc;
  }
  header #gn .gn_inner ul li::after{
  	display:none;
  }
  header #gn .gn_inner ul li a{
  	display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	align-items: center;
  	width:100%;
  	padding:0px 25px;
    height:80px;
  }
}
@media screen and (max-width: 760px){
  header .inner .logo{
    width:300px;
    padding:0 15px 0px 25px;
  }
}
@media screen and (max-width: 490px){
  header .inner .logo{
    width:250px;
    padding:0 15px 0px 15px;
  }
  header #gn .gn_inner{
  	width: 300px;
  	margin-right: -300px;
  	padding:150px 20px 0;
  }
}
@media screen and (max-width: 320px){
  header .inner .logo{
    width:220px;
    padding:0 15px 0px 15px;
  }
  header #gn .gn_inner{
  	width: 300px;
  	margin-right: -300px;
  	padding:100px 20px 0;
  }
}
/*-------------- main --------------*/
main{
  padding-top: 30px;
  padding-left:250px;
  position: relative;
}

@media screen and (max-width: 1200px){
  main{
    padding-top: 30px;
    padding-left:0px;
  }
}
/*-------------- content --------------*/
.content {
  position: relative;
  z-index: 1;
}

.w{
  width:100%;
  max-width:1400px;
  padding:0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 760px){
  .w{
    padding:0 25px;
  }
}
@media screen and (max-width: 490px){
  .w{
    padding:0 15px;
  }
}

/*-------------- btn --------------*/
.btn{
  width:100%;
}
.btn a{
  display: block;
  width:100%;
  max-width:490px;
  background-image: linear-gradient(to right, #3a7bd5 0%, #00d2ff 51%, #3a7bd5 100%);
  transition: 0.5s;
  background-size: 200% auto;
  border-radius: 100px;
  margin:0 auto;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  padding:38px 15px;
  box-shadow: rgba(16, 141, 220, 0.4) 0px 7px 29px 0px;
}
.btn a:hover {
  background-position: right center;
}
@media screen and (max-width: 490px){
  .btn a{
    font-size: 20px;
    padding:28px 5px;
  }
}
/*-------------- hadding --------------*/
.hadding{
  text-align: center;
  position: relative;
  font-size: 36px;
  padding-top: 30px;
  margin-bottom: 30px;
}
.hadding::before{
  position: absolute;
  content:"";
  width:80px;
  height:5px;
  background:#00b5f6;
  top:-2px;
  left:calc(50% - 40px);
}
.hp{
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

@media screen and (max-width: 760px){
  .hp{
    text-align: left;
    font-size: 18px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 680px){
  .hadding{
    font-size: 30px;
    padding-top: 25px;
    margin-bottom: 30px;
  }
  .hp{
    font-size: 16px;
    margin-bottom: 40px;
  }
}
/*-------------- form_wrap --------------*/
.form_wrap {
  display:block;
  width:100%;
  max-width:1050px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.form_wrap .cath{
  text-align: center;
  font-size: 22px;
  padding:30px 15px;
  background:#00b5f6;
  color:#fff;
  font-weight: bold;
}
.form_wrap .inner{
  padding: 50px;
}
.elmarea{
  margin-bottom: 50px;
}
.elmarea dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  align-items: center;
  padding:15px 0;
  border-bottom: 1px solid #e3e3e3;
}
.elmarea dl dt{
  position: relative;
  width:250px;
  padding-left:15px;
}
.elmarea dl dd{
  width:calc(100% - 250px);
  padding-right: 15px;
  padding-left: 50px;
}
.elmarea dl dt .dt_q{
  font-weight: 600;
}
.elmarea dl dt .dt_cap{
  font-size: 12px;
}
.elmarea dl dd .dd_cap{
  font-size: 14px;
  padding-top: 8px;
  color:#6a6a6a;
}
.elmarea dl dt.required::after{
  position: absolute;
  content:"必須";
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  justify-content: center;
  align-items: center;
  width:35px;
  height:20px;
  border-radius: 3px;
  color:#fff;
  font-size: 12px;
  background: #fd4763;
  top:7px;
  right:0;
  text-align: center;
  line-height: 0;
}
/* エラーボックス */
.error_box {
  background: #ffe6e6;
  border: 1px solid #ffcccc;
  border-radius: 4px;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.error_box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.error_box li {
    color: #c62828;
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.6;
}

.error_box li:last-child {
    margin-bottom: 0;
}


button, input, select, textarea {
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
form input, form textarea, form select {
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
#nform form input,
#nform form textarea {
  display: inline-block;
  width: 100%;
  border: 1px solid #e3e3e3;
  transition: 0.2s ease-in-out;
  padding: 17px 15px;
  font-size: 16px;
  background: #fbfbfb;
  border-radius: 3px;
}
#nform form textarea{
  width: 100%!important;
  height:auto!important;
}
#nform form input:focus,
#nform form textarea:focus,
#nform form select:focus{
	background: #fff;
	border: 1px solid #00b5f6;
}
#nform form select{
  padding: 15px;
}
#nform form .length1 input{
  width: 100%;
  max-width:200px;
}
#nform form .length2 input{
  width: 100%;
  max-width:80px;
}
#nform form .length3 input{
  width: 100%;
  max-width:100px;
}
#nform form input.error,
#nform form textarea.error{
  border-color: #e53935;
}

/* セレクトボックス */
#nform form span.select{
  width:100%;
  max-width:320px;
  position: relative;
  display: inline-block;
}
#nform form span.select:after {
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  pointer-events: none;
}
#nform form span.select select {
  padding-right: 0px;
}
#nform form select option {
    outline: 0;
    background: #fff;
}
#nform form select {
    padding: 17px 15px;
    border: 1px solid #e3e3e3;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    transition: 0.2s ease-in-out;
    text-align: left;
    cursor: pointer;
    text-overflow: ellipsis;
    background-image: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
    border-radius: 3px;
}
#nform form .select.error select{
  border-color: #e53935;
}
.elmarea .timearea{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  justify-content: flex-start;
}
#nform form .elmarea .timearea span.select.middle{
  width: 270px;
  flex-shrink: 0;
}
#nform form .elmarea .timearea span.select.small{
  width: 120px;
  margin-left: 15px;
  flex-shrink: 0;
}

/* チェックボックス・ラジオボタン */
#nform form .ul_checkbox,
#nform form .ul_checkbox2{
  overflow: hidden;
}
#nform form .ul_checkbox li,
#nform form .ul_checkbox2 li{
  float: left;
  padding: 10px 60px 10px 0;
}
#nform form .ul_checkbox2 li{
  padding: 10px 40px 10px 0;
}

label.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin: 0!important;
  cursor: pointer;
  font-size: 16px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 1px solid #e3e3e3;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #eef7f7;
}
.control input:checked ~ .control__indicator {
  background: #00b5f6;
  border: 1px solid #00b5f6;
}

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 7px;
  top: 3px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 6px;
  top: 6px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.control input:disabled::after{
  content: "";
  position: absolute;
  display: none;
}
.control input:checked{
  display: block;
}

.control.error .control__indicator{
  border-color: #e53935;
}

/* 応募規約同意セクション */
.terms_section {
    margin-top: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}
.terms_section .lsjt{
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}
.terms_section .lsj {
    border: 1px solid #cccccc;
    overflow-y: scroll;
    height: 350px;
    padding: 20px 30px;
    color: #000;
    font-size: 13px;
    margin-top: 10px;
    text-align: left;
    margin-bottom: 15px;
    background: #fff;
}
.terms_section .lsj .h{
  font-weight: bold;
  display:block;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #cccccc;
}
.terms_section .lsj ul{
  margin-bottom: 20px;
}
.terms_section .lsj ul li{
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 16px;
}
.terms_section .lsj ul li:last-of-type{
  margin-bottom: 0px;
}
.terms_section .lsj ul li::before{
  position: absolute;
  content:"";
  width:6px;
  height:6px;
  background: #000;
  border-radius: 50px;
  top:14px;
  left:0;
}
.terms_section .lsj b{
  font-weight: bold;
  display:block;
}
.terms_section .lsj p{
  margin-bottom: 15px;
}
.terms_section .lsj2{
  text-align: left;
  font-size: 14px;
  margin-bottom: 20px;
}
.terms_label {
    display: -webkit-box;
  	display: -webkit-flex;
  	display: -ms-flexbox;
  	display: flex;
  	width:100%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

#nform form .terms_label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #00b5f6;
    cursor: pointer;
    border:1px solid #00b5f6;
}

.terms_label span a {
    color: #00b5f6;
    text-decoration: underline;
}

.terms_label span a:hover {
    text-decoration: none;
}

/* 送信ボタン */
.form_buttons {
    margin-top: 20px;
    text-align: center;
}

.form_buttons button {
    display: block;
    font-size: 18px;
    width:100%;
    max-width:490px;
    background-image: linear-gradient(to right, #3a7bd5 0%, #00d2ff 51%, #3a7bd5 100%);
    transition: 0.5s;
    background-size: 200% auto;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    margin:0 auto;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding:38px 15px;
    box-shadow: rgba(16, 141, 220, 0.4) 0px 7px 29px 0px;
}

.form_buttons button:hover:not(:disabled) {
    background-position: right center;
    box-shadow: rgba(16, 141, 220, 0.2) 0px 7px 15px 0px;
}

.form_buttons button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow:none;
}

.form_buttons button:disabled:hover {
    transform: none;
    box-shadow: none;
}
@media screen and (max-width: 960px){
  #nform form input,
  #nform form textarea {
    padding: 22px 15px;
  }
  #nform form select {
    padding: 22px 15px;
  }
  .elmarea dl{
    padding:0px 0;
    border-bottom: none;
  }
  .elmarea dl dt{
    width:100%;
    padding: 15px;
    background: #f1f1f1;
    border-bottom: 1px solid #e3e3e3;
  }
  .elmarea dl dd{
    width:100%;
    padding: 15px 15px 25px 15px;
  }
  .elmarea dl dt::after{
    width:35px;
    height:20px;
    top:50%;
    transform: translateY(-50%);
    right:15px;
  }
  .elmarea .timearea{
    justify-content: space-between;
  }
  #nform form .elmarea .timearea span.select.middle{
    width: 68%;
    max-width:720px;
    flex-shrink: 0;
  }
  #nform form .elmarea .timearea span.select.small{
    width: 30%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 760px){
  .form_wrap .inner{
    padding: 30px 15px 50px;
  }
}
@media screen and (max-width: 680px){
  .terms_section {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 490px){
  .form_wrap .cath{
    text-align: left;
    font-size: 18px;
    padding:20px 10px;
  }
  .elmarea .timearea{
    flex-wrap: wrap;
  }
  .elmarea dl dd{
    padding: 15px 0px 25px 0px;
  }
  #nform form .elmarea .timearea span.select.middle{
    width: 100%;
    max-width:720px;
    margin-bottom: 8px;
  }
  #nform form .elmarea .timearea span.select.small{
    width: 50%;
  }
}
/*-------------- copy --------------*/
.copy{
  text-align: center;
  font-size: 12px;
  padding:25px 5px;
}

/*-------------- other --------------*/
.other .header{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  align-items: center;
  justify-content: center;
  height:80px;
  border-bottom: 1px solid #eeeeee;
}
.other .header a{
  display:block;
  width:100%;
  max-width:300px;
  margin:0 auto;
}
.other .header a img{
  display:block;
  width:100%;
  max-width:300px;
  margin:0 auto;
}
.other .elmarea dl dd{
  font-size: 18px;
}
.other .thanks_message p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}
.other .btn{
  padding-top: 25px;
}
/* 確認画面ボタン */
.confirm_buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.confirm_buttons > div{
  width:47%;
}
.confirm_buttons a.btn_back{
    display: block;
    font-size: 18px;
    width:100%;
    max-width:490px;
    background: #666;
    transition: 0.5s;
    background-size: 200% auto;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    margin:0 auto;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding:32px 15px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 7px 29px 0px;
}

.confirm_buttons a.btn_back:hover {
    background: #555;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 7px 15px 0px;
}


@media screen and (max-width: 490px){
  .other .header a{
    max-width:200px;
  }
  .confirm_buttons {
    justify-content: center;
  }
  .confirm_buttons > div{
    width:100%;
  }
  .confirm_buttons .btn_back {
    margin-bottom: 25px;
  }
  .other .elmarea dl dd{
    font-size: 16px;
    padding: 15px 15px 25px 15px;
  }
  .other .thanks_message p {
    text-align: left;
    font-size: 16px;
  }
  .other .thanks_message p br{
    display:none;
  }
}
/*-------------- mb --------------*/
.mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
}
.mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
}
.mb-20 {
    margin-bottom: calc(var(--spacing) * 20);
}
