@charset 'UTF-8';

/* ------------------------------------------
  Reset
------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* {
  outline: none;
}

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

a img {
  border: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

/* ------------------------------------------
  Utility Class
------------------------------------------ */
/* clearfix */
.clearfix:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}

/* ------------------------------------------
  Common
------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  height: 100%;
}

body {
  background: #f7f8f9;
  color: #333;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
}

a,
a img {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, background .3s ease, opacity .3s ease;
}

a:hover {
  opacity: .75;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: inherit;
}

.only_pc {
  display: none !important;
}

.container {
  margin: 0 15px;
}

@media screen and (min-width: 768px) {
  body {
	min-width: 1000px;
  }

  .only_pc {
	display: block !important;
  }

  .only_sp {
	display: none !important;
  }

  .container {
	margin: 0 auto;
	width: 1000px;
  }
}

.form_content {
  position: relative;
}

/* ------------------------------------------
  譁ｰ繝輔か繝ｼ繝�逕ｨCSS
------------------------------------------ */
.step_num {
  display: table;
  margin: 0 auto;
  position: relative;
}

.step_num::before {
  background-color: #dcdcdc;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.step_num li {
  display: table-cell;
  padding: 0 10px;
}

.step_num li:first-child {
  padding-left: 0;
}

.step_num li:last-child {
  padding-right: 0;
}

.step_num li span {
  background-color: #fff;
  border: #dcdcdc 3px solid;
  border-radius: 5px;
  color: #dcdcdc;
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  height: 40px;
  line-height: 34px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 1;
}

.step_num li.current span {
  background-color: #e5f5fc;
  color: #009ce0;
}

.step_title {
  text-align: center;
  font-size: 20px;
}

.step_title li {
  display: none;
}

.step_title li.current {
  display: block;
}

.step_title span {
  color: #f29600;
  font-weight: bold;
}

.step_bar {
  position: relative;
}

.step_bar li {
  display: none;
  /* position: absolute; */
  /* right: 0;
  top: -45px; */
}

.step_bar li.current {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_bar li span {
  color: #f29600;
  font-size: 30px;
}

.step_bar li::before {
  content: "";
  width: 200px;
  height: 10px;
  background: #fff;
  border-radius: 100px;
  display: inline-block;
  margin-right: 10px;
}

.step_bar li:nth-of-type(1):before {
  background: linear-gradient(to right, #f29600 0%, #f29600 25%, #fff 25%, #fff 100%);
}

.step_bar li:nth-of-type(2):before {
  background: linear-gradient(to right, #f29600 0%, #f29600 50%, #fff 50%, #fff 100%);
}

.step_bar li:nth-of-type(3):before {
  background: linear-gradient(to right, #f29600 0%, #f29600 75%, #fff 45%, #fff 100%);
}

.step_bar li:nth-of-type(4):before {
  background: #f29600;
}

.form_title {
  background-color: #009ce0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, .07);
  margin: 30px 0;
  padding: 30px 15px;
}

.form * {
  line-height: 1;
}

.form input[type='radio'] {
  display: none;
}

.form ::placeholder {
  color: #ccc;
}

.form .lead_headline {
  color: #666;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.form .lead_comment {
  color: #666;
  line-height: 1.5;
  text-align: center;
}

.form .form_change_link {
  margin: 30px 0 41px;
  text-align: center;
}

.form .link_button {
  background-color: #f29600;
  border-radius: 5px;
  box-shadow: 0 6px 0 0 #cc7e00;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 18px 33px 18px 18px;
  position: relative;
}

.form .link_button::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.form .form_change_link .link_button {
  background: none;
  border: #ccc 1px solid;
  box-shadow: none;
  color: inherit;
  padding: 9px 33px 9px 9px;
}

.form .form_change_link .link_button::after {
  border-color: transparent transparent transparent #333;
}

.form table {
  width: 100%;
}

.form th {
  color: #666;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 30px 0 15px;
}

.form tr:first-child th {
  padding-top: 0;
}

.form th.require::after {
  background-color: #fa5f64;
  color: #fff;
  content: '必須';
  display: inline-block;
  font-size: 1.2rem;
  line-height: 20px;
  margin-left: 15px;
  text-align: center;
  width: 40px;
}

.form th.any::after {
  background-color: #666;
  color: #fff;
  content: '任意';
  display: inline-block;
  font-size: 1.2rem;
  line-height: 20px;
  margin-left: 15px;
  text-align: center;
  width: 40px;
}

.form td {
  white-space: nowrap;
}

.form .cols {
  display: flex;
}

.form .caption_top {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.form .caption_bottom {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
}

.form label {
  color: #666;
}

.form .radio label {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 50px;
  padding-left: 70px;
  position: relative;
}

.form .radio label::before {
  background-color: #f2f2f2;
  border-radius: 5px;
  content: '';
  display: block;
  height: 50px;
  left: 0;
  position: absolute;
  top: 0;
  width: 50px;
}

.form .radio.checked label::after {
  border-bottom: #009ce0 3px solid;
  border-left: #009ce0 3px solid;
  content: '';
  display: block;
  height: 10px;
  left: 14px;
  position: absolute;
  top: 14px;
  transform: rotate(-45deg);
  width: 20px;
}

.form .radio+.radio {
  margin-left: 30px;
}

.form .select {
  position: relative;
}

.form #s_undergraduate_select,.form #s_department_select {
  max-width: 100%;
  margin-top:10px;
}

.form .select select {
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  color: #666;
  font-size: 1.6rem;
  height: 50px;
  padding: 0 10px;
  width: 100%;
}

.form .select::before {
  border-color: transparent transparent #666 transparent;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-7px);
  width: 0;
}

.form .select::after {
  border-color: #666 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  bottom: 50%;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 10px;
  transform: translateY(7px);
  width: 0;
}

.form .input_text input[type='text'],
.form .input_text input[type='tel'],
.form .input_text input[type='email'] {
  background-color: #f2f2f2;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  height: 50px;
  padding: 0 10px;
  width: 100%;
}

.form .input_text input:nth-of-type(n+2) {
  margin-top: 15px;
  display: block;
}

.form .cols .input_text+.input_text {
  margin-left: 15px;
}

.form .next {
  margin-top: 30px;
  text-align: center;
}

.form .next .link_button {
  min-width: 175px;
}

.form .button_cols {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.form .button_cols .next {
  margin: 0;
}

.form .back+.next {
  margin-left: 15px;
}

.form .back .link_button {
  background-color: #666;
  box-shadow: 0 6px 0 0 #333;
  padding-left: 33px;
  padding-right: 18px;
}

.form .back .link_button::after {
  border-color: transparent #fff transparent transparent;
  border-width: 5px 7px 5px 0;
  left: 15px;
  right: auto;
}

.form .guide {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 30px;
  text-align: center;
}

.form .guide a {
  color: #009ce0;
  text-decoration: underline;
}

/* 笆ｼ繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ縺ｮCSS繧剃ｸ驛ｨ縺薙▲縺｡縺ｫ遘ｻ蜍補名 */
.form .caution01 {
  padding: 20px 10px;
  background: #f5f5f5;
  text-align: center;
  border-radius: 6px;
  line-height: 1;
}

.form .caution01 {
  background: none;
  padding: 0;
}

.form .caution01 a {
  color: #4990e2;
}

.form .caution01 input[type="checkbox"]#consent {
  display: none;
}

.form .caution01 input[type="checkbox"]#consent+label {
  position: relative;
  padding: 0 0 0 36px;
}

.form .caution01 input[type="checkbox"]#consent+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  background: #fff;
  border: #d5d5d5 2px solid;
}

/* 繝√ぉ繝�け繝懊ャ繧ｯ繧ｹ逶ｴ蠕後ｂ縲√�繧､繝ｳ繧ｿ繝ｼ螟画峩 */
.form .caution01 label {
  cursor: pointer;
}

.form .caution01 input[type="checkbox"]#consent:checked+label::after {
  content: "";
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 9px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #0098D8;
  border-bottom: 3px solid #0098D8;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 笆ｲ繝励Λ繧､繝舌す繝ｼ繝昴Μ繧ｷ繝ｼ縺ｮCSS繧剃ｸ驛ｨ縺薙▲縺｡縺ｫ遘ｻ蜍補夢 */
.form_footer {
  padding-bottom: 15px;
}

.form_footer .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.form_footer .mark {
  width: 40px;
}

.form_footer .copyright {
  font-size: 1rem;
}

.estimate_step_wrap {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.estimate {
  overflow: hidden;
}

.page {
  min-width: 100%;
  padding-bottom: 6px;
}

@media screen and (min-width: 768px) {
  .form_title {
	font-size: 2.1rem;
	line-height: 80px;
	margin-bottom: 40px;
  }

  .form {
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, .07);
	margin: 40px 0;
	padding: 40px;
  }

  .form_top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
  }

  .form .lead_headline {
	font-size: 1.8rem;
  }

  .form .lead_comment {
	font-size: 1.6rem;
	text-align: left;
  }

  .form .form_change_link {
	margin: 0;
  }

  .form tbody {
	display: flex;
	flex-wrap: wrap;
  }

  .form tr {
	align-items: center;
	display: flex;
  }

  .form tr:nth-child(odd) {
	border-bottom: #ccc 1px solid;
	padding: 0;
	width: 25%;
  }

  .form tr:nth-child(even) {
	border-bottom: #ccc 1px solid;
	padding: 15px 0;
	width: 75%;
  }

  .form th {
	padding-top: 15px;
  }

  .form tr:first-child th {
	padding-top: 15px;
  }

  .form td {
	width: 100%;
  }

  .form .caption_top {
	font-size: 1.4rem;
  }

  .form .select {
	max-width: 35%;
  }

  .form .input_text {
	max-width: 70%;
  }

  .form .input_text input[type='tel'],
  .form .input_text input[name='graduation'] {
	max-width: 50%;
  }

  .form .cols .input_text {
	width: auto;
  }

  .step_bar li {
	position: absolute;
	right: 0;
	top: -45px;
  }
}

div.error {
  color: #fa5f64;
  /* display: inline-block; */
  display: block;
  font-weight: bold;
  margin-top: 5px;
}

#form {
  display: none;
}

#modal {
  display: none;
}
#modal .wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f373ad6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
}
#modal .wrapper .loader {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  margin-bottom: 32px;
}
#modal .wrapper .text {
  color: white;
}
@-webkit-keyframes load5 {
  0%,
  100% {
	box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
	box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
	box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
