@charset "Shift_JIS"; 

/**
 * filename: main.css
 * @overview Voting right
 * @version 1.0.0 2018-4-20
 */


html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    background: #fff;
    color: #444;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
}



/*********
Basic parts
*********/
* {
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

a {
    text-decoration: none;
}

a:link {
    color: #333;
}

a:visited {
    color: #333;
}

a:hover {
    text-decoration: none;
}

a:active {
    color: #333;
}

a:focus {
}

ul {
}

li {
}

strong {
    display: inline-block;
    font-weight: bold;
    color: #197f4a;
    margin: 0 8px;
}

/* icon */
.icon {
    display: inline-block;
    vertical-align: top;
}

.icon.help {
    display: inline-block;
    background: #ff9d00;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.icon.help::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: transparent url(../../img2025/sp/icon_help.svg) no-repeat 0 0;
    background-size: 10px;
    width: 10px;
    height: 16px;
    top: calc(50% - 8px);
    left: calc(50% - 5px);
}

.icon.medical {
	background: transparent url(../../img2025/sp/icon_medical.svg) no-repeat center center;
}

.icon.donation {
	background: transparent url(../../img2025/sp/icon_donation.svg) no-repeat center center;
}

.icon.note {
	background: transparent url('../svg/icon_note.svg') no-repeat 0 0;
    background-size: 18px;
    width: 18px;
    height: 22px;
}

.icon.plus {
    position: relative;
    display: inline-block;
    background: #ff9d00;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-top: -2px;
    margin-right: 8px;
}

.icon.plus::before,
.icon.plus::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: #fff;
}

.icon.plus::before {
    width: 80%;
    height: 2px;
    top: 9px;
    left: 10%;
}

.icon.plus::after {
    width: 2px;
    height: 80%;
    top: 10%;
    left: 9px;
}



/* form */
input,
select,
button,
textarea {
    color: #444;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: 1.8rem;
}

/* textbox */
input.textbox {
    border: 1px solid #d3ccc2;
    border-radius: 2px;
    box-shadow: none;
    padding: 16px 8px;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    /* ios */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(left, #fff, #fff);
}

input.textbox:focus {
    border: #197f4a 2px solid;
    box-shadow: none;
    padding: 15px 7px;
    outline: none;
}

input.textbox.error {
    border: 2px solid #dd2246;
    background: #ffeef4;
    padding: 15px 7px;
    /* ios */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffeef4), to(#ffeef4));
    background-image: -webkit-linear-gradient(left, #ffeef4, #ffeef4);
}

body.iphone input.textbox {
    padding-top: 14px;
    padding-bottom: 10px;
}

body.iphone input.textbox:focus {
    padding-top: 13px;
    padding-bottom: 9px;
}

input.textbox::-webkit-input-placeholder {
    padding-top: 4px;
}

input.textbox[disabled] {
    border: 1px solid #ccc;
    background: #eee;
    opacity: 1;
    /* ios */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#eee));
    background-image: -webkit-linear-gradient(left, #eee, #eee);
}

input.textbox[type="password"] {
    padding-right: 40px;
}

/* textarea */
textarea {
    resize: none;
    width: 100%;
    box-sizing: border-box;
    height: 160px;
    padding: 10px 8px;
    line-height: 1.4;
    border: 1px solid #d3ccc2;
    border-radius: 2px;
    margin-bottom: 10px;
    /* ios */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(left, #fff, #fff);
}

textarea:focus {
    border: #197f4a 2px solid;
    box-shadow: none;
    padding: 9px 7px;
    outline: none;
}

textarea.error {
    border: 2px solid #dd2246;
    background: #ffeef4;
    padding: 9px 7px;
    /* ios */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffeef4), to(#ffeef4));
    background-image: -webkit-linear-gradient(left, #ffeef4, #ffeef4);
}

textarea[disabled] {
        border: 1px solid #ccc;
        background: #eee;
        /* ios */
        background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#eee));
        background-image: -webkit-linear-gradient(left, #eee, #eee);
}

/* selectbox */
.select-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    padding: 0;
    vertical-align: middle;
    background: #fff;
    margin-bottom: 10px;
}

.form-element.date {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.form-element.date .select-container {
    margin-right: 10px;
}

.form-element.date .select-container:last-of-type {
    margin-right: 0;
}

.form-element.password {
    position: relative;
}

.select-container.age {
    width: 23%;
}

.select-container.year {
    width: 25%;
}

.select-container.month {
    width: 21%;
}

.select-container.day {
    width: 21%;
}

.select-container::before {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    content: '';
    margin: auto;
    width: 0;
    height: 0;
    border-top: 6px solid #333;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    z-index: 2;
}

.select {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 16px 24px 16px 8px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #d3ccc2;
    border-radius: 2px;
}

.select::-ms-expand {
    display: none;
}

.select:focus {
    border: #197f4a 2px solid;
    box-shadow: none;
    padding: 15px 23px 15px 7px;
    outline: none;
}

.select.error {
    border: 2px solid #dd2246;
    background: #ffeef4;
    padding: 15px 23px 15px 7px;
}

option {
    color: #444;
}

.select[disabled] {
    background: #eee;
    z-index: 3;
}

/* radio */
ul.radio-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 10px 0;
}

ul.radio-list li {
    position: relative;
    margin-bottom: 16px;
}

ul.radio-list li:last-child {
    margin-bottom: 0;
}

.radio-item[type="radio"] {
	display: inline-block;
    position: absolute;
    top: 6px;
    left: 3px;
}

.radio-item[type="radio"]:focus {
    box-shadow: none;
}

.radio-item[type="radio"] + label {
	display: inline-block;
	position: relative;
    margin: 0;
	padding: 0 0 0 28px;
	font-size: 1.8rem;
	text-align: left;
	line-height: 1.6;
    font-weight: normal;
    width: calc(100% - 30px);
}

.radio-item[type="radio"] + label:before {
	position: absolute;
	content: "";
	top: 4px;
	left: 0;
	width: 20px;
	height: 20px;
	background: #FFF;
    border: 1px solid #d3ccc2;
	border-radius: 50%;
    box-sizing: border-box;
}

.radio-item[type="radio"][disabled] + label:before {
    background: #eee;
}

.radio-item[type="radio"]:checked + label:after {
	position: absolute;
	content: "";
	top: 9px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #197f4a;
}

.radio-item[type="radio"]:checked + label:before {
    border: 2px solid #197f4a;
    background: #fff;
}

.radio-item[type="radio"][disabled]:checked + label:after {
	background: #ccc;
}

.radio-item[type="radio"][disabled]:checked + label:before {
    border: 2px solid #ccc;
}

/* toggle */
ul.radio-list.toggle {
    display: flex;
}

ul.radio-list.toggle li {
    min-width: 120px;
    margin: 0;
}

.toggle .radio-item[type="radio"] + label {
    width: 140px;
    padding: 16px 0;
    text-align: center;
    line-height: 1;
    background: #fff;
    border: 1px solid #d3ccc2;
}

.toggle li:first-child .radio-item[type="radio"] + label {
    border-radius: 2px 0 0 2px;
    border-right: none;
}

.toggle li:last-child .radio-item[type="radio"] + label {
    border-radius: 0 2px 2px 0;
}

.toggle .radio-item[type="radio"][disabled] + label {
    background: #eee;
    color: #bbb;
    border: 1px solid #ccc;
}

.toggle .radio-item[type="radio"] + label:before {
    display: none;
}

.toggle .radio-item[type="radio"]:checked + label:after {
    display: none;
}

.toggle .radio-item[type="radio"]:checked + label {
    background: #197f4a;
    border-color: #197f4a;
    color: #fff;
}

.toggle li:last-child .radio-item[type="radio"]:checked + label {
    border-left-color: #d3ccc2;
}

.toggle .radio-item[type="radio"][disabled]:checked + label {
    background: #ccc;
    border-color: #ccc;
}

/* checkbox */
ul.checkbox-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 10px 0;
}

ul.checkbox-list li {
    position: relative;
    margin-bottom: 16px;
}

ul.checkbox-list li:last-child {
    margin-bottom: 0;
}

.checkbox-item[type="checkbox"] {
	display: inline-block;
    position: absolute;
    top: 6px;
    left: 3px;
}

.checkbox-item[type="checkbox"]:focus {
    box-shadow: none;
}

.checkbox-item[type="checkbox"] + label {
	display: inline-block;
	position: relative;
    margin: 0;
	padding: 0 0 0 28px;
	font-size: 1.8rem;
	text-align: left;
	line-height: 1.6;
    font-weight: normal;
    width: calc(100% - 30px);
}

.checkbox-item[type="checkbox"] + label:before {
	position: absolute;
	content: "";
	top: 4px;
	left: 0;
	width: 20px;
	height: 20px;
	background: #FFF;
    border: 1px solid #d3ccc2;
	border-radius: 2px;
    box-sizing: border-box;
}

.checkbox-item[type="checkbox"][disabled] + label:before {
    background: #eee;
    border: 1px solid #ccc;
}

.checkbox-item[type="checkbox"]:checked + label:after {
	position: absolute;
	content: "";
    box-sizing: border-box;
    display: block;
    left: 4px;
    top: 8px;
    width: 12px;
    height: 8px;
    border-left: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox-item[type="checkbox"]:checked + label:before {
    border: 1px solid #197f4a;
    background: #197f4a;
}

.checkbox-item[type="checkbox"][disabled]:checked + label:after {
	background: #ccc;
}

.checkbox-item[type="checkbox"][disabled]:checked + label:before {
    border: 1px solid #ccc;
    background: #ccc;
}

/* tel */
.form-element.tel {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-element.tel .select-container {
    width: 23%;
    margin-right: 10px;
}

.form-element.tel input[type="tel"] {
    width: 22%;
    margin-right: 10px;
}

.form-element.tel input[type="tel"]:last-of-type {
    margin-right: 0;
}

/* financial-institution */
.form-element.financial-institution {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-element.financial-institution input.textbox {
    width: calc(60% - 10px);
}

.form-element.financial-institution .select-container {
    width: 40%;
    margin-left: 10px;
}

/* postal-code */
.form-element.postal-code {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-element.postal-code input {
    width: calc(100% - 150px);
    margin-right: 10px;
}

/* palceholder */
:placeholder-shown {
    color: #bbb;
}

::-webkit-input-placeholder {
    color: #bbb;
}

/* width */
.w80 {
    width: 80%!important;
}

.w60 {
    width: 60%!important;
}

.w40 {
    width: 40%!important;
}

.w20 {
    width: 20%!important;
}

/* required */
.required {
    background: #dd2246;
    color: #fff;
    font-size: 1.2rem;
    padding: 3px 8px 2px 8px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

/* button */
button {
    background: #555;
    color: #fff;
    border: none;
    padding: 17px 8px;
    min-width: 140px;
    border-radius: 2px;
    margin: 0 10px 0 0;
    font-weight: normal;
}

button:focus {
    outline: none;
}

button:last-of-type {
    margin-right: 0;
}

button[disabled] {
    background: #ccc;
}

button.edit {
	font-size: 1.6rem;
    padding: 14px 8px;
    min-width: 0;
    width: 80px;
}

button.delete {
	min-width: 0;
	width: 24px;
	height: 24px;
	padding: 0;
    border-radius: 50%;
	background-color: transparent;
	border: 1px solid #d3ccc2;
    position: relative;
}

button.delete::before,
button.delete::after {
	position: absolute;
	content: "";
	width: 16px;
	height: 1px;
	background: #444;
    top: 10px;
}

button.delete::before {
    right: 3px;
    transform: rotate(45deg);
}

button.delete::after {
	left: 3px;
    transform: rotate(-45deg);
}

button.password-display {
    position: absolute;
    vertical-align: top;
    right: 0;
    bottom: 12px;
    width: 36px;
    height: 54px;
    padding: 0;
    margin: 0!important;
    min-width: 0;
    background: none;
}

button.password-display svg {
    width: 22px;
    vertical-align: middle;
    margin-top: 2px;
    fill: #999;
}

input.textbox:focus + button.password-display svg {
    fill: #197f4a;
}

button.password-display svg.close-eye {
    display: none;
}

button.password-display.is-showed svg.open-eye {
    display: none;
}

button.password-display.is-showed svg.close-eye {
    display: inline-block;
}

.sub-command button {
    width: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    background: #fff;
    border: 2px solid #197f4a;
    border-radius: 4px;
    color: #197f4a;
    padding: 13px 8px;
    margin-bottom: 20px;
}

.sub-command button:last-of-type {
    margin-bottom: 0;
}

.main-command button {
    border-radius: 54px;
    width: 100%;
    font-size: 2.2rem;
    padding: 14px 20px 13px 20px;
    border: 1px solid #d3ccc2;
    background: #fff;
    color: #444;
    margin: 0 auto 20px auto;
    display: block;
}

.main-command button:last-of-type {
    margin-bottom: 40px;
}

.main-command button.positive {
    background: #197f4a;
    border: 1px solid #197f4a;
    color: #fff;
}

.dialog-command button {
    width: 100%;
    color: #444;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 60px;
    margin-bottom: 20px;
}

.dialog-command button.positive {
    color: #fff;
    background: #197f4a;
    border: 1px solid #197f4a;
}

.warning .dialog-command button.positive {
    color: #444;
    background: #ffbc00;
    border: 1px solid #ffbc00;
}

button.add-handle_v2 {
    background: #ff9d00;
    width: 100%;
    margin: 20px 0;
    border-radius: 100px;
}

button[disabled],
.dialog-command button[disabled].positive,
.main-command button[disabled].positive {
    background: #ccc;
    border-color: #ccc;
    color: #fff;
}



/**********
Content parts
**********/

/* common */
header,
main,
footer {
    padding: 0 16px;
}

/* header */
header {
    background: #197f4a;
    color: #fff;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

header .header-title {
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
	margin: 4px;
}

header .system-name {
    margin: 16px 0;
    padding: 0;
    width: 100%;
}

header .system-namefont {
  font-size: 1.3rem;
}

header .header-title .system-name {
	margin: 6px 0;
}

header .menu-handle {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: -8px;
}

header .menu-bar {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    box-sizing: border-box;
    transition: all .4s;
    right: 15px;
}

header .menu-bar:nth-of-type(1) {
    top: 12px;
}

header .menu-bar:nth-of-type(2) {
    top: 18px;
}

header .menu-bar:nth-of-type(3) {
    bottom: 24px;
}

header .menu-handle.open-menu .menu-bar:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
}

header .menu-handle.open-menu .menu-bar:nth-of-type(2) {
    opacity: 0;
}

header .menu-handle.open-menu .menu-bar:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}

header .menu-label {
    position: absolute;
    font-size: 1.1rem;
    right: 0;
    bottom: 6px;
    text-align: center;
    width: 50px;
}

/* main */
main {
    background: #f2efe4;
    padding-bottom: 2px;
}

#title {
    background: #fff;
    width: 100%;
    margin-left: -15px;
    padding: 2px 15px;
    border-bottom: 1px solid #e0dfde;
    display: flex;
    justify-content: space-between;
}

#title h1 {
    font-size: 2rem;
    margin: 13px 0 8px 0;
    padding: 0;
    line-height: 1.6;
    font-weight: normal;
}

#title .icon.help {
    flex-shrink: 0;
    margin: 12px 0 0 16px;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.08);
}

/* progress-bar */

#step-chart {
    background: #fff;
    width: 100%;
    margin-left: -15px;
    padding: 0px 20px 0px 10px;
/*    border-bottom: 1px solid #e0dfde;*/
}

ol.progress-bar {
	list-style-type: none;
	counter-reset: number;
}

li.number::before {
	content: counter(number);
	color: white;
	counter-increment: number;
}

li.number::after {
	content: counter(number);
	background-color: #444444;
	color: white;
	position: absolute;
	display: block;
	top: 15%;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	text-align: center;
	line-height: 130%;
}

li.number2::before {
	content: counter(number);
	color: white;
	counter-increment: number;
}

li.number2::after {
	content: counter(number);
	background-color: #DADADA;
	color: white;
	position: absolute;
	display: block;
	top: 15%;
	left: 0;
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	text-align: center;
	line-height: 130%;
}

hr{
	border: 0 none;
	background-color: #197F4A;
	border-width: 0;
	height: 1px;
	margin: 0px 0px 0px 8px;
}

.progress-bar {
	list-style-type: none;
	display: flex;
	padding: 0px;
	overflow: hidden;
	margin: 12px 5px 7px 0px;
}

.progress-bar li {
	position: relative;
	padding: 7px 2.5px 5px 11px; 
	color: #444444;
	text-align: center;
	vertical-align: middle;
}
.progress-bar span.status {
    font-size: 16px;
    font-weight: bold;
}

.progress-bar span.before {
    font-size: 20px;
}

.progress-bar span.after {
	color: #DADADA;
    font-size: 20px;
}

.arrow2 {
	position: absolute;
	padding: 5px;
	left: -2px;
	top: 6px; /*→の縦位置*/
	display: inline-block;
}

.arrow2::before {
	content: '';
	width: 4px; /*>の縦位置*/
	height: 4px; /*>の縦位置*/
	border-top: solid 2px #D9D9D9;
	border-right: solid 2px #D9D9D9;
	transform: rotate(45deg);
	position: absolute;
}
.arrow2::after {
	content: '';
	width: 8px;
	height: 2px;
	border: 0px;
	background-color: #D9D9D9;
	position: absolute;
	left: 2px;
	top: 7px; /*棒の縦位置*/
}
/* progress-bar */


#contents {
    padding-top: 2px;
}

/* h guidance */
#contents h2 {
    text-align: center;
    line-height: 1.6;
    font-size: 2.4rem;
    color: #197f4a;
    border-bottom: 2px solid #197f4a;
    margin: 30px 0 20px 0;
}

#contents h3 {
    color: #197f4a;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 20px 0 20px 0;
}

#contents .img-flame {
    margin: 20px 0 30px;
}

#contents .img-flame img {
    width: 100%;
}

#contents .guidance,
#contents .oc-help,
#contents ul.list,
#contents ol.list {
    line-height: 1.8;
}

#contents .guidance {
    margin: 20px 0 30px;
}

#contents h2 + .guidance {
    margin-top: -10px;
}

#contents .guidance.note {
	font-size: 1.2rem;
}

#contents .total-area + .guidance.note {
    margin-top: -20px;
}

#contents .high-note {
    border: 1px solid #999;
    padding: 8px;
}

#contents ul.list,
#contents ol.list {
    margin: 20px 0 30px;
}

#contents ul.list + ul.list.link {
    margin-top: -22px;
}

#contents ul.list.link + ul.list {
    margin-top: -16px;
}

#contents ul.list + ol.list {
    margin-top: -10px;
}

#contents ol.list + ul.list {
    margin-top: -20px;
}

#contents .guidance + ul.list,
#contents .guidance + ol.list {
    margin-top: -12px;
}

#contents ul.list {
    padding: 0;
    list-style: none;
}

#contents ol.list {
    padding-left: 20px;
}

#contents ul.list li,
#contents ol.list li {
    margin-bottom: 20px;
    position: relative;
}

#contents ul.list li {
    padding: 0 0 0 20px;
}

#contents ul.list li::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: #555;
    vertical-align: top;
    left: 4px;
    top: 10px;
    border-radius: 50%;
}

#contents ul.list li:last-child {
    margin-bottom: 0;
}

#contents ul.list li .arrow-text {
    display: block;
    position: relative;
    padding-left: 16px;
    margin-top: 8px;
    color: #197f4a;
    font-weight: bold;
}

#contents ul.list li .arrow-text::before,
#contents ul.list li .arrow-text::after {
    position: absolute;
    content: "";
    vertical-align: center;
}

#contents ul.list li .arrow-text::before {
    top: .8em;
    left: 0;
    width: 8px;
    height: 1px;
    background: #444;
}

#contents ul.list li .arrow-text::after {
    top: .6em;
    left: 2px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



#contents ul.link li {
    margin: 0;
}

#contents ul.link li::before {
    width: 0;
}

#contents ul.link li:first-child {
    margin-top: -10px;
}

#contents ul.link li a {
    display: inline-block;
    color: #444;
    text-decoration: underline;
    position: relative;
    padding: 10px 0;
}

#contents ul.link li a::before {
    position: absolute;
    content: "";
    vertical-align: top;
    top: 19px;
    left: -20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #555;
    border-right: 2px solid #555;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* max-number */
#contents .max-number {
    font-size: 1.4rem;
    text-align: left;
}

/* open-close handle */
#contents .oc-help {
    margin: 20px 0 30px 0;
}

#contents .oc-handle {
    display: block;
    padding-bottom: 2px;
    border-bottom: 1px solid #c4bcb3;
    margin: 0;
    position: relative;
}

#contents .oc-handle::after {
    position: absolute;
    content: "";
    top: calc(50% - 3px);
    right: 0;
    vertical-align: top;
    box-sizing: border-box;
    border: 5px solid transparent;
    border-top: 5px solid #444;
    transform-origin: 50% 25%;
    transition: all .4s;
}

#contents .oc-handle.is-opened::after {
    transform: rotate(180deg);
}

#contents .oc-content {
    margin: 0;
    display: none;
    padding-top: 10px;
    padding-bottom: 2px;
}

#contents .oc-content > * {
    margin-top: 0;
}

/* area-add */
#contents .area-add {
}

#contents .group-title {
    color: #197f4a;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 20px 0;
}

/* add-handle */
#contents .add-handle-container {
    background: #efe3bd;
    margin: 20px -16px 40px -16px;
    padding: 2px 16px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contents .total-amount {
    background: #efe3bd;
    margin: 20px -16px 40px -16px;
    padding: 16px;
}

#contents .add-handle-container + .total-amount {
    margin-top: -40px;
}

#contents .total-amount + .total-amount {
    margin-top: -40px;
}

#contents .total-amount span {
    display: block;
}

#contents .total-amount .lable {
}

#contents .total-amount .price,
#contents .total-amount .unit {
	display: inline-block;
	font-size: 2.4rem;
    margin-top: 8px;
}

#contents .total-amount .price {
    word-break: break-all;
}

#contents .add-handle {
    position: relative;
    display: inline-block;
    background: #ff9d00;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.08);
}

#contents .add-handle::before,
#contents .add-handle::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: #fff;
}

#contents .add-handle::before {
    width: 24px;
    height: 2px;
    top: 23px;
    left: 12px;
}

#contents .add-handle::after {
    width: 2px;
    height: 24px;
    top: 12px;
    left: 23px;
}

#contents h2 + .add-handle-container {
    margin-top: -20px;
}

/* form-group */
#contents .form-group {
    margin: 20px 0;
    padding-bottom: 2px;
}

#contents .form-label {
    display: block;
    margin-bottom: 10px;
}

#contents .form-group .icon.help {
    width: 20px;
    height: 20px;
    margin-left: 16px;
    margin-top: -1px;
    border-radius: 4px;
    background: #555;
    position: relative;
}

#contents .form-group .form-element.sub .icon.help {
    margin-top: 3px;
}

#contents .form-group .icon.help::after {
    background-size: 8px;
    top: calc(50% - 6px);
    left: calc(50% - 4px);
}

#contents .form-note {
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    padding-left: 16px;
    margin-top: 10px;
}

#contents .kome-mark {
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    padding-left: 16px;
    margin-top: 10px;
}

#contents .form-note.large {
    font-size: 1.6rem;
    padding-left: 20px;
}

#contents .form-note::before {
    position: absolute;
    content: "※";
    left: 0;
    top: 0;
}

#contents .form-element .form-note {
    margin-bottom: 10px;
}

#contents .form-element {
    padding: 2px 0;
}

#contents .form-element .error-guidance {
    color: #d11c47;
    display: block;
    width: 100%;
    margin: 6px 0 12px 0;
}

#contents .form-element .data {
    display: block;
    font-size: 2.0rem;
    margin-bottom: 10px;
}

#contents .form-element .data + .data {
    margin-top: -2px;
}

#contents .form-element.sub {
    background: #efe3bd;
    margin: 0 -16px;
    margin-bottom: 10px;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
}

#contents .form-element .structure input {
    width: calc(50% - 5px);
    margin-right: 10px;
}

#contents .form-element .structure input:last-of-type {
    margin-right: 0;
}

#contents .form-group button {
    margin-bottom: 10px;
}

/* sub-command */
#contents .sub-command {
    margin: 20px 0;
}

#contents ol .sub-command button {
    width: calc(100% - -20px);
    margin-left: -20px;
}

/* main-command */
#contents .main-command {
    margin: 40px 0;
}

/* total-area */
#contents .total-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #c4bcb3;
    margin: 20px 0 30px;
    padding-bottom: 8px;
}

#contents .total-area .total-detail {
	margin-right: 16px;
}

#contents .total-area .total-detail .label {
	display: block;
}

#contents .total-area .total-detail .price,
#contents .total-area .total-detail .unit {
	display: inline-block;
	font-size: 2.4rem;
	margin-top: 8px;
}

#contents .total-area .total-detail .price {
	word-break: break-all;
}

/* deducation-menu */
#contents a.deducation-menu-link {
	position: relative;
	display: block;
	margin: -20px 0 30px 0;
}

#contents a.deducation-menu-link::before,
#contents a.deducation-menu-link-style-change::before {
	position: absolute;
	content: "";
	display: block;
	top: calc(50% - 6px);
	right: 16px;
	width: 10px;
	height: 10px;
    border-top: 1px solid #197F4A;
    border-right: 1px solid #197F4A;
    transform: rotate(45deg);
}

#contents .deducation-menu {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	border: 2px solid #197F4A;
    border-radius: 4px;
	padding: 2px 30px 2px 10px;
}

#contents .deducation-menu .icon {
    background-size: 60px 60px;
	width: 60px;
	height: 60px;
	margin-right: 12px;
}

#contents .deducation-menu-detail {
    width: calc(100% - 72px);
}

#contents .deducation-menu-detail .label {
	display: block;
    line-height: 1.4;
    margin-top: 8px;
}

#contents .deducation-menu-detail .price,
#contents .deducation-menu-detail .unit {
	display: inline-block;
	font-size: 2.4rem;
	margin-top: 8px;
    margin-bottom: 8px;
}

#contents .deducation-menu-detail .price {
	word-break: break-all;
}

/* plate*/
#contents .plate {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: 20px;
	background: #fff;
	border: 1px solid #d3ccc2;
    border-radius: 2px;
	box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.08);
    min-height: 108px;
}

#contents .plate-number {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: #fff;
	background: #197f4a;
	margin: -1px 0 -1px -1px;
	min-width: 25px;
	border-bottom-left-radius: 2px;
	border-top-left-radius: 2px;
}

#contents .plate-detail {
	padding: 2px 90px 2px 12px;
}

#contents .plate-detail span {
	display: block;
}

#contents .plate-detail .date,
#contents .plate-detail .label {
	font-size: 1.4rem;
    margin-top: 14px;
}

#contents .plate-detail .price,
#contents .plate-detail .unit {
	display: inline-block;
	font-size: 2.4rem;
}

#contents .plate-detail .price {
	margin-top: 16px;
    margin-bottom: 14px;
	word-break: break-all;
}

#contents .plate button {
    position: absolute;
}

#contents .plate button.delete {
    right: 12px;
    top: 8px;
}

#contents .plate button.edit {
    right: 0;
    bottom: 12px;
}

/* message */
#contents .message {
    margin: 30px 0;
    padding: 10px 10px 10px 44px;
    position: relative;
    line-height: 1.8;
}

#contents .message.error {
    background: #ffeef4;
    border: 2px solid #dd2246;
    color: #d11c47;
}

#contents .message.warning {
    background: #fff2bb;
    border: 2px solid #ffbc00;
    color: #555;
}

#contents .message.information {
    background: #d7f1ff;
    border: 2px solid #008bea;
    color: #555;
}

#contents .message .icon {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: 12px;
    left: 10px;
}

#contents .message.error .icon {
    background: #dd2246;
}

#contents .message.information .icon {
    background: #008bea;
}

#contents .message .icon::before,
#contents .message .icon::after {
    content: "";
    position: absolute;
    display: inline-block;
}

#contents .message.error .icon::before,
#contents .message.error .icon::after {
    background: #fff;
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

#contents .message.error .icon::before {
    transform: rotate(-45deg);
}

#contents .message.error .icon::after {
    transform: rotate(45deg);
}

#contents .message.warning .icon {
    border-radius: 0;
    background: transparent url(../../img2025/sp/icon_warning.svg) no-repeat 0 0;
    background-size: 24px;
}

#contents .message.information .icon::before {
    background: #fff;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

#contents .message.information .icon::after {
    background: #fff;
    width: 3px;
    height: 9px;
    border-radius: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/* pagetop */
#pagetop {
    border-top: 1px solid #c4bcb3;
    font-size: 1.2rem;
    text-align: center;
    margin: 40px 0 0 0;
}

#pagetop2 {
	font-size: 1.2rem;
	text-align: center;
}

#pagetop a {
    display: inline-block;
    width: 100%;
    padding: 14px 0 13px;
}

#pagetop2 a {
	display: inline-block;
	width: 100%;
	padding: 14px 0 13px;
}

#pagetop a .icon {
    position: relative;
    width: 18px;
}

#pagetop2 a .icon,
.screen-id-pagetop a .icon {
	position: relative;
	width: 1.125rem;
}

#pagetop a .icon::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    vertical-align: top;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(-45deg);
}

#pagetop2 a .icon::before,
.screen-id-pagetop a .icon::before {
	position: absolute;
	content: "";
	top: .375rem;
	left: 0;
	vertical-align: top;
	width: .5rem;
	height: .5rem;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(-45deg);
}

/* footer */
footer {
    border-top: 1px solid #e8e4dd;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    margin-top: 8px;
    flex-wrap: wrap;
}

footer nav ul li {
    width: 50%;
    text-align: center;
}

footer nav ul li a {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}

footer nav ul li.pc-display {
    width: 100%;
    margin: 8px 0;
}

footer nav ul li.pc-display a {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 0 8px 0;
    width: 140px;
}

footer .copyright {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
    margin: 20px 0;
}



/* menu */
.header-nav {
    display: none;
    background: #175632;
    margin: 0;
    padding: 16px 15px;
}

.header-nav ul {
    margin: 0;
    padding: 0;
    color: #fff;
    list-style: none;
}

.header-nav ul li {
}

.header-nav ul li a {
    color: #fff;
    display: block;
    padding: 16px 0;
}


/* 消す？inline */
.summary-plate {
    height: 320px;
    overflow: auto;
}


/* sampel-image button */
.sample-image {
    position: fixed;
    background: rgba(85,85,85,0.8);
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 4px;
    padding: 0;
    min-width: 0;
    z-index: 1000;
}

.sample-image .note {
    margin-top: -10px;
}

.sample-image .text {
    position: absolute;
    width: 100%;
    font-size: 1.3rem;
    bottom: 4px;
    left: 0;
}



/* dialog */
.dialog {
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    width: calc(100vw - 10%);
    z-index: 9999;
}

.dialog::before {
  position: fixed;
  content: "";
  background: rgba(0,0,0,0.7);
  width: 200vw;
  height: 200vh;
  top: -100vh;
  left: -100vw;
  z-index: -10;
}

.dialog-header {
    background-color: #197f4a;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    padding: 14px 36px 12px 36px;
    position: relative;
    border-radius: 4px 4px 0 0;
}

.warning .dialog-header {
    background-color: #ffbc00;
    color: #333;
}

.dialog-header p {
    margin: 0;
    line-height: 1.4;
}

.dialog-header .dialog_close {
    position: absolute;
    top: calc(50% - 15px);
    right: 8px;
    width: 28px;
    height: 28px;
}

.dialog-header .dialog_close .icon.dclose {
    position: relative;
    width: 28px;
    height: 28px;
}

.dialog-header .dialog_close .icon.dclose::before,
.dialog-header .dialog_close .icon.dclose::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 2px;
    background: #fff;
    vertical-align: top;
    top: 14px;
}

.warning .dialog-header .dialog_close .icon.dclose::before,
.warning .dialog-header .dialog_close .icon.dclose::after {
    background: #333;
}

.dialog-header .dialog_close .icon.dclose::before {
    right: 2px;
    transform: rotate(45deg);
}

.dialog-header .dialog_close .icon.dclose::after {
    left: 2px;
    transform: rotate(-45deg);
}

.dialog-main {
    padding: 2px 16px;
    min-height: 40vh;
    max-height: 60vh;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 0 0 4px 4px;
}

.scrollfixed {
  position: fixed;
  width: 100%;
  height: 100%;
}


.indent_msg1-7{
	text-indent: -1.0em;
	padding-left: 1.0em;
}

ul.list_msg li {
	padding-left: -1.0em;
}

ul.list_msg {
	padding-left: 1.25em;
	margin: 14px 0 10px 0;
}

/** loading **/
.loader {
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
}

.loader::before {
    position: fixed;
    content: "";
    background: rgba(0,0,0,0.7);
    width: 200vw;
    height: 200vh;
    top: -100vh;
    left: -100vw;
    z-index: -10;
}

.loading-dott {
    position: absolute;
    font-size: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: calc(50vh - 24px);
    left: calc(50% - 5px);
    -webkit-animation: loading 1.1s infinite ease;
    animation: loading 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader p {
    position: absolute;
    top: -50px;
    left: calc(-50vw + 5px);
    width: 100vw;
    text-align: center;
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
}

.warning_guidance {
    margin: 20px 0 30px;
    line-height: 1.8;
}

#contents .form-setumei {
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    padding-left: 16px;
    margin-top: 10px;
}

p.year {
	font-size: 12px;
	margin: 2px;
}

.header-era-number {
	font-size: 14.2px;
	padding: 0 .55rem;
	font-weight: bold;
}

.header-era {
	font-size: 12px;
	font-weight: normal;
}

footer>.w100-full{
	max-width: none;
	width:calc(100% + 32px);
	margin-left: -16px;
	margin-right: -16px;
}

/* screen-id */
.screen-id-cotnainer {
	display: flex;
	width: 100%;
	border-top: solid 1px #c4bcb3;
	border-bottom: solid 1px #c4bcb3;
}

.screen-id-cotnainer > * {
	width: 50%;
}

.screen-id-cotnainer .screen-id-pagetop,
.screen-id-cotnainer .screen-id {
	font-size: 1.25rem;
	text-align: center;
	background: #FFF;
	color: #333;
	position: relative;
}

.screen-id-cotnainer .screen-id-pagetop {
	border-left: solid 1px #c4bcb3;
}

.screen-id-cotnainer .screen-id-pagetop > a,
.screen-id-cotnainer .screen-id {
	padding: 1.75rem 0;
}

.screen-id-cotnainer .screen-id-pagetop > a {
	display: block;
}

.screen-id-text,
.screen-id-pagetop-text {
	display: block;
	max-width: calc((768px - 18px) / 2);
}

.screen-id-cotnainer .screen-id-pagetop{
	text-decoration: none;
	cursor: pointer;
}

.screen-id-cotnainer .screen-id-pagetop :hover,
.screen-id-cotnainer .screen-id-pagetop :focus,
.screen-id-cotnainer .screen-id-pagetop :active{
	text-decoration: underline;
}

.screen-id-text {
	margin-left: auto;
}

.screen-id-pagetop-text {
	margin-right: auto;
}

button.filechoose {
    background: #efe3bd;
    color: #444;
    text-align: left;
    width: calc(100% - 51px);
    font-size: 1.6rem;
    margin-right: auto;
    padding: 17px 0px;
}

span.modal-small {
	font-size: 1.4rem;
}

@-webkit-keyframes loading {
    0%,
    100% {
        box-shadow: 0 -24px 0 0 #fff, 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.5), -17px -17px 0 0 rgba(255, 255, 255, 0.7);
    }
    12.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.7), 17px -17px 0 0 #fff, 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.5);
    }
    25% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.5), 17px -17px 0 0 rgba(255, 255, 255, 0.7), 24px 0 0 0 #fff, 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    37.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.5), 24px 0 0 0 rgba(255, 255, 255, 0.7), 17px 17px 0 0 #fff, 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.5), 17px 17px 0 0 rgba(255, 255, 255, 0.7), 0 24px 0 0 #fff, -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    62.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.5), 0 24px 0 0 rgba(255, 255, 255, 0.7), -17px 17px 0 0 #fff, -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    75% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.5), -17px 17px 0 0 rgba(255, 255, 255, 0.7), -24px 0 0 0 #fff, -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    87.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.5), -24px 0 0 0 rgba(255, 255, 255, 0.7), -17px -17px 0 0 #fff;
    }
}

@keyframes loading {
    0%,
    100% {
        box-shadow: 0 -24px 0 0 #fff, 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.5), -17px -17px 0 0 rgba(255, 255, 255, 0.7);
    }
    12.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.7), 17px -17px 0 0 #fff, 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.5);
    }
    25% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.5), 17px -17px 0 0 rgba(255, 255, 255, 0.7), 24px 0 0 0 #fff, 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    37.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.5), 24px 0 0 0 rgba(255, 255, 255, 0.7), 17px 17px 0 0 #fff, 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.5), 17px 17px 0 0 rgba(255, 255, 255, 0.7), 0 24px 0 0 #fff, -17px 17px 0 0 rgba(255, 255, 255, 0.2), -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    62.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.5), 0 24px 0 0 rgba(255, 255, 255, 0.7), -17px 17px 0 0 #fff, -24px 0 0 0 rgba(255, 255, 255, 0.2), -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    75% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.5), -17px 17px 0 0 rgba(255, 255, 255, 0.7), -24px 0 0 0 #fff, -17px -17px 0 0 rgba(255, 255, 255, 0.2);
    }
    87.5% {
        box-shadow: 0 -24px 0 0 rgba(255, 255, 255, 0.2), 17px -17px 0 0 rgba(255, 255, 255, 0.2), 24px 0 0 0 rgba(255, 255, 255, 0.2), 17px 17px 0 0 rgba(255, 255, 255, 0.2), 0 24px 0 0 rgba(255, 255, 255, 0.2), -17px 17px 0 0 rgba(255, 255, 255, 0.5), -24px 0 0 0 rgba(255, 255, 255, 0.7), -17px -17px 0 0 #fff;
    }
}


/**/
