﻿@charset "UTF-8";
html {
    --color: #999;
    /*--checked-color: #ff5722;*/
    --checked-color: #27a9e1;
    --bg-color: #e8e8e8;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: Arial, "Noto Sans TC", sans-serif;
  color: #3a3a3a;
  font-size: 20px;
  line-height: 1.75;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%; /*強制瀏覽器不要縮放文字*/
  overflow-x: hidden;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }
}

/*控制文字選取時的顏色*/
::-moz-selection {
  background: #b3e27b;
  color: #000;
}
::selection {
  background: #b3e27b;
  color: #000;
}

a {
  text-decoration: none;
}

a.linkbutton {
  font-size: 18px;
  color: #0000FF;
	text-decoration:underline;
  border-bottom: solid 1px transparent;
}
a.linkbutton:hover {
	color: #FF0000;
	left:2px; position: relative;
	top:2px
}

.anchorlink {
	text-decoration:underline;
	font-family: "微軟正黑體", "Microsoft JhengHei";
	line-height: 20px;
	color: #0000FF;
}
.anchorlink:hover {
	text-decoration:underline;
	color: #FF0000;
	left:1px; position: relative;
	top:1px
}
.anchorlink:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

img {
  outline: none;
  border: none;
}

p {
  margin: 15px 0px;
}

ul,
ol {
  margin: 15px 0px;
  padding-left: 20px;
}
ul li,
ol li {
  padding-bottom: 3px;
}
ul li:last-of-type,
ol li:last-of-type {
  padding-bottom: 0px;
}
ul li ul,
ul li ol,
ol li ul,
ol li ol {
  margin: 3px 0px 0px;
}


input[type="radio"], [type="checkbox"],
label {
    cursor: pointer;
}

input:checked + span + label {
    color: var(--checked-color);
}

.checkbox-area,
.radio-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
}

.checkbox-radio-container {
	font-size: 20px;
	line-height: 1.1;
	display: inline-flex;
	grid-template-columns: 1em auto;
	gap: 0.5em;
}
/*
.checkbox-radio-container + .form-control {
	  margin-top: 1em;
}
*/
.checkbox-radio-container--disabled {
		cursor: not-allowed;
}

input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0.3em 0.3em 0.3em 0.5em;

    font: inherit;
    width: 1.1em;
    height: 1.1em;
    border: 0.2rem solid #fff;
    background-color: var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--color);
    transform: translateY(0.45em);

    display: inline-flex;
    place-content: center;
    font-size: 20px;
}

input[type="radio"]:checked {
    box-shadow: 0 0 0 1px var(--checked-color);
    background-color: var(--checked-color);
    border-width: 0.2rem;
}

input[type="radio"]:focus {
  outline-offset: max(2px, 0.15em);
}

input[type="radio"]:disabled {
  cursor: not-allowed;
}

input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0.3em;

    font: inherit;
    width: 1.1em;
    height: 1.1em;
    border: 0.2rem solid #fff;
    background-color: var(--bg-color);
    border-radius: 5px;
    box-shadow: 0 0 0 1px var(--color);
    transform: translateY(-0.1em);

    display: inline-flex;
    place-content: center;
    font-size: 20px;
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type="checkbox"]:checked {
    border: 0.1rem solid #fff;
    background-color: var(--checked-color);
    padding-top:0.2em;
}

input[type="checkbox"]:focus {
    outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
    cursor: not-allowed;
}


.checkbox,
.radio {
    margin-right: 15px;
    padding: 5px 0;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio],
.radio input[type=checkbox],
.radio input[type=radio] {
    display: none;
}
.checkbox input[type=checkbox]:checked + .fake i,
.checkbox input[type=radio]:checked + .fake i,
.radio input[type=checkbox]:checked + .fake i,
.radio input[type=radio]:checked + .fake i {
    color: #27a9e1;
    opacity: 1;
}
.checkbox label,
.radio label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
}
.checkbox .fake,
.radio .fake {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #d2d2d4;
    background: #f2f2f2;
    border-radius: 100%;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    position: relative;
    top: 4px;
}
.checkbox .fake i,
.radio .fake i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 13px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    opacity: 0;
}
.checkbox-text,
.radio-text {
    font-size: 17px;
    padding-left: 5px;
}


@media screen and (max-width: 767px) {
  .checkbox-text,
  .radio-text {
        font-size: 16px;
  }
}

.checkbox .fake {
    border-radius: 0;
}

.radio .fake i {
    width: 11px;
    height: 11px;
    background: #27a9e1;
    border-radius: 100%;
}

label {
    cursor: pointer;
}

button {
    border: none;
    color: #fff;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    border-radius: 5px;
    cursor: pointer;
}
button i {
    margin-left: 5px;
}

input,
button {
    outline: none;
    font-family: Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

input,
button,
select {
    outline: none;
    font-family: Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

/*
.inputStyle, input[type=text], input[type=password], input[type=tel], input[type=search], input[type=number], input[type=email] {
  border-radius: 5px;
  border: solid 1px silver;
  background: #fff;
  font-size: 19px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 10px;
  width: 100%;
}
.inputStyle:focus, input[type=text]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=number]:focus, input[type=email]:focus {
  border-color: #10b7ee;
  -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
          box-shadow: 0 0 0 1px #10b7ee inset;
}
*/

.label_center_display {
    border-width:1px;
    border-style:solid;
    border-color:silver;
    background-color:lightcyan;
    padding:7px 40px;
    border-radius: 5px;
}

.label_left_display {
    border-width:1px;
    border-style:solid;
    border-color:silver;
    background-color:lightcyan;
    padding:7px 7px 2px 40px;
    border-radius: 5px;
}

.number_input {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.number_input:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input:-moz-placeholder {
  color: #999999;
}
.number_input::-moz-placeholder {
  color: #999999;
}
.number_input:-ms-input-placeholder {
  color: #999999;
}
.number_input::-webkit-input-placeholder {
  color: #999999;
}
.number_input[disabled],
.number_input[readonly],
fieldset[disabled] .number_input {
  cursor: not-allowed;
  border: solid 1px #adadad;
}

.number_input_right {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:right;
}
.number_input_right:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input_right:-moz-placeholder {
    color: #999999;
}
.number_input_right::-moz-placeholder {
    color: #999999;
}
.number_input_right:-ms-input-placeholder {
    color: #999999;
}
.number_input_right::-webkit-input-placeholder {
    color: #999999;
}
.number_input_right[disabled],
.number_input_right[readonly],
fieldset[disabled] .number_input_right {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.number_input_left {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:left;
}
.number_input_left:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input_left:-moz-placeholder {
    color: #999999;
}
.number_input_left::-moz-placeholder {
    color: #999999;
}
.number_input_left:-ms-input-placeholder {
    color: #999999;
}
.number_input_left::-webkit-input-placeholder {
    color: #999999;
}
.number_input_left[disabled],
.number_input_left[readonly],
fieldset[disabled] .number_input_left {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.number_input_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.number_input_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input_need:-moz-placeholder {
    color: #999999;
}
.number_input_need::-moz-placeholder {
    color: #999999;
}
.number_input_need:-ms-input-placeholder {
    color: #999999;
}
.number_input_need::-webkit-input-placeholder {
    color: #999999;
}

.number_input_right_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:right;
}
.number_input_right_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input_right_need:-moz-placeholder {
    color: #999999;
}
.number_input_right_need::-moz-placeholder {
    color: #999999;
}
.number_input_right_need:-ms-input-placeholder {
    color: #999999;
}
.number_input_right_need::-webkit-input-placeholder {
    color: #999999;
}

.number_input_left_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:left;
}
.number_input_left_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.number_input_left_need:-moz-placeholder {
    color: #999999;
}
.number_input_left_need::-moz-placeholder {
    color: #999999;
}
.number_input_left_need:-ms-input-placeholder {
    color: #999999;
}
.number_input_left_need::-webkit-input-placeholder {
    color: #999999;
}

.date_input {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.date_input:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.date_input:-moz-placeholder {
  color: #999999;
}
.date_input::-moz-placeholder {
  color: #999999;
}
.date_input:-ms-input-placeholder {
  color: #999999;
}
.date_input::-webkit-input-placeholder {
  color: #999999;
}
.date_input[disabled],
.date_input[readonly],
fieldset[disabled] .date_input {
  cursor: not-allowed;
  border: solid 1px #adadad;
}

.date_input_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.date_input_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.date_input_need:-moz-placeholder {
    color: #999999;
}
.date_input_need::-moz-placeholder {
    color: #999999;
}
.date_input_need:-ms-input-placeholder {
    color: #999999;
}
.date_input_need::-webkit-input-placeholder {
    color: #999999;
}


.date_input_YM {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.date_input_YM:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.date_input_YM:-moz-placeholder {
  color: #999999;
}
.date_input_YM::-moz-placeholder {
  color: #999999;
}
.date_input_YM:-ms-input-placeholder {
  color: #999999;
}
.date_input_YM::-webkit-input-placeholder {
  color: #999999;
}
.date_input_YM[disabled],
.date_input_YM[readonly],
fieldset[disabled] .date_input_YM {
  cursor: not-allowed;
  border: solid 1px #adadad;
}


.date_input_YM_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.date_input_YM_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.date_input_YM_need:-moz-placeholder {
    color: #999999;
}
.date_input_YM_need::-moz-placeholder {
    color: #999999;
}
.date_input_YM_need:-ms-input-placeholder {
    color: #999999;
}
.date_input_YM_need::-webkit-input-placeholder {
    color: #999999;
}

.text_input {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
}
.text_input:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.text_input:-moz-placeholder {
    color: #999999;
}
.text_input::-moz-placeholder {
    color: #999999;
}
.text_input:-ms-input-placeholder {
    color: #999999;
}
.text_input::-webkit-input-placeholder {
    color: #999999;
}
.text_input[disabled],
.text_input[readonly],
fieldset[disabled] .text_input {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.text_input_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
}
.text_input_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.text_input_need:-moz-placeholder {
    color: #999999;
}
.text_input_need::-moz-placeholder {
    color: #999999;
}
.text_input_need:-ms-input-placeholder {
    color: #999999;
}
.text_input_need::-webkit-input-placeholder {
    color: #999999;
}

.text_input_center {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.text_input_center:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.text_input_center:-moz-placeholder {
    color: #999999;
}
.text_input_center::-moz-placeholder {
    color: #999999;
}
.text_input_center:-ms-input-placeholder {
    color: #999999;
}
.text_input_center::-webkit-input-placeholder {
    color: #999999;
}
.text_input_center[disabled],
.text_input_center[readonly],
fieldset[disabled] .text_input_center {
    cursor: not-allowed;
    border: solid 1px #adadad;
}


.text_input_center_need {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #ffffcc;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.text_input_center_need:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}
.text_input_center_need:-moz-placeholder {
    color: #999999;
}
.text_input_center_need::-moz-placeholder {
    color: #999999;
}
.text_input_center_need:-ms-input-placeholder {
    color: #999999;
}
.text_input_center_need::-webkit-input-placeholder {
    color: #999999;
}
.text_input_center_need[disabled],
.text_input_center[readonly],
fieldset[disabled] .text_input_center_need {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.number_input_noborder {
    border-radius: 5px;
    border: solid 0px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.number_input_noborder[disabled],
.number_input_noborder[readonly],
fieldset[disabled] .number_input_noborder {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.number_input_right_noborder {
    border-radius: 5px;
    border: solid 0px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:right;
}
.number_input_right_noborder[disabled],
.number_input_right_noborder[readonly],
fieldset[disabled] .number_input_right_noborder {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.text_input_noborder {
    border-radius: 5px;
    border: solid 0px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
}
.text_input_noborder[disabled],
.text_input_noborder[readonly],
fieldset[disabled] .text_input_noborder {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.text_center_input_noborder {
    border-radius: 5px;
    border: solid 1px #adadad;
    background: #fff;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.text_center_input_noborder[disabled],
.text_center_input_noborder[readonly],
fieldset[disabled] .text_center_input_noborder {
    cursor: not-allowed;
    border: solid 1px #adadad;
}


.number_input_display {
    border-radius: 5px;
    border: solid 1px #adadad;
    background-color: LightCyan;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.number_input_display[disabled],
.number_input_display[readonly],
fieldset[disabled] .number_input_display {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.number_input_right_display {
    border-radius: 5px;
    border: solid 1px #adadad;
    background-color: LightCyan;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:right;
}
.number_input_right_display[disabled],
.number_input_right_display[readonly],
fieldset[disabled] .number_input_right_display {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.text_input_display {
    border-radius: 5px;
    border: solid 1px #adadad;
    background-color: LightCyan;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
}
.text_input_display[disabled],
.text_input_display[readonly],
fieldset[disabled] .text_input_display {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

.text_input_center_display {
    border-radius: 5px;
    border: solid 1px #adadad;
    background-color: LightCyan;
    font-size: 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    text-align:center;
}
.text_input_center_display[disabled],
.text_input_center_display[readonly],
fieldset[disabled] .text_center_input_display {
    cursor: not-allowed;
    border: solid 1px #adadad;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 19px;
    line-height: 36px;
    padding: 5px 10px;
    background-size: 18px;
    border-radius: 5px;
    border: solid 1px #adadad;
}
select:focus {
    border-color: #10b7ee;
    -webkit-box-shadow: 0 0 0 1px #10b7ee inset;
    box-shadow: 0 0 0 1px #10b7ee inset;
}

.text-mark {
    font-size: 16px;
    color: #ea5904 !important;
}

.container {
    margin: 0 auto;
    padding: 0px;
    width: 1024px;
}
@media screen and (max-width: 1199px) {
  .container {
    margin: 0px 65px;
    width: auto;
  }
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.hide {
    display: none !important;
}

.mobileShow {
    display: none !important;
}

@media screen and (max-width: 991px) {
  .pcShow {
    display: none !important;
  }
  .mobileShow {
    display: initial !important;
  }
}
.fontAwesomeIcon, .slick-arrow {
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 900;
}

.animated {
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

.dividingLine {
    margin: 40px 0px;
    border-bottom: dashed 1px #bbb;
    clear: both;
}

.youtube {
    width: 100%;
    max-width: 600px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}
.youtube img {
    width: 100%;
    position: relative;
    display: block;
}
.youtube-content {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.youtube-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 991px) {
  .youtube {
    max-width: 600px;
  }
}

.slick-slider {
    padding-bottom: 25px;
}
.slick-slide {
    outline: none;
}
.slick-slide a {
    outline: none;
}
.slick-slide img {
    max-width: 100%;
}
.slick-dots {
    list-style: none;
    font-size: 0px;
    text-align: center;
    margin: 0px;
    padding-left: 0px;
    width: 100%;
    position: absolute;
    bottom: 0px;
}
.slick-dots li {
    padding: 0px 7px;
    display: inline-block;
    vertical-align: top;
}
.slick-dots li button {
    font-size: 0px;
    padding: 0px;
    border-radius: 50px;
    width: 13px;
    height: 13px;
    background: #a5a5a5;
}
.slick-dots li.slick-active button {
    background: #005598;
    width: 25px;
}
.slick-arrow {
    font-size: 0px;
    position: absolute;
    top: -3px;
    padding: 0px;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    text-align: center;
    color: #505050;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    z-index: 1;
    background: none;
}
.slick-arrow:before {
    font-size: 36px;
    line-height: 1;
}
.slick-arrow:hover {
    color: #007eff;
}
.slick-prev {
    left: -35px;
}
.slick-prev:before {
    content: "\f104";
}
.slick-next {
    right: -35px;
}
.slick-next:before {
    content: "\f105";
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    top: -48px;
  }
  .slick-arrow:before {
    font-size: 26px;
  }
  .slick-prev {
    left: -20px;
  }
  .slick-next {
    right: -20px;
  }
}

#content {
    overflow: hidden;
    /*overflow-y: auto;*/
    -webkit-transition: 1s ease-in-out opacity;
    transition: 1s ease-in-out opacity;
    -webkit-animation: contentAinmt ease-in-out 0.2s;
    animation: contentAinmt ease-in-out 0.2s;
    min-height: 100vh;
}
@media screen and (max-width: 992px) {
  #content {
    min-width: 992px;
    overflow-x: auto;
  }
}

[v-cloak] {
  opacity: 0;
}

@-webkit-keyframes contentAinmt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
}

@keyframes contentAinmt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
}
body {
  background: #85ced4;
}
body.fixedBody {
  overflow-y: hidden;
}
@media screen and (max-width: 992px) {
  body {
    overflow-x: auto;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .yourClassName {
    /*css*/
  }
}
@media screen and (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 10px;
  }
  ::-webkit-scrollbar-track {
    background-color: #ea5904;
    background-color: #ccc;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #539011;
    background-color: #ea5904;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-button {
    background-color: #000;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-corner {
    background-color: black;
  }
}
.menuBtn {
    display: none;
    position: fixed;
    width: 23px;
    top: 12px;
    right: 15px;
    cursor: pointer;
    display: none;
    z-index: 5;
    background: #114790;
    padding: 7px 12px;
    border-radius: 4px;
}
.menuBtn span {
    display: block;
    background: #fff;
    height: 2px;
    margin: 4px 0px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    border-radius: 3px;
}
.menuBtn span:nth-of-type(1), .menuBtn span:nth-of-type(2) {
    position: absolute;
    width: 23px;
    top: 13px;
}
.menuBtn.active span {
  opacity: 0;
}
.menuBtn.active span:nth-of-type(1), .menuBtn.active span:nth-of-type(2) {
    opacity: 1;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}
.menuBtn.active span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menuBtn.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 991px) {
  .menuBtn {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menuBtn {
    right: 10px;
    top: 7px;
  }
}
@media screen and (max-width: 359px) {
  .menuBtn {
    right: 5px;
  }
}

.topBtn {
    position: fixed;
    z-index: 1;
    bottom: 35px;
    right: 15px;
    -webkit-transition: 0.5s ease transform, 0.3s ease opacity;
    transition: 0.5s ease transform, 0.3s ease opacity;
    opacity: 0;
}
.topBtn a {
    display: block;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    color: #fff;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    position: relative;
    top: 0px;
    padding-top: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 0px 2px #fff;
    box-shadow: 0px 0px 0px 2px #fff;
}
.topBtn a span {
    position: relative;
}
.topBtn a i {
    display: block;
    margin: 0 auto;
}
.topBtn a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 1199px) {
  .topBtn {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .topBtn {
    bottom: 70px;
  }
  .topBtn a {
    width: 40px;
    height: 40px;
    font-size: 0px;
  }
  .topBtn a i {
    font-size: 20px;
  }
}

.item {
    padding: 70px 0px;
    position: relative;
}
.item .container {
    position: relative;
}
.item.lightBlueBg {
    background: #edf7ff;
}
.item.blue {
    color: #fff;
    background: #005598;
}
.item.blue .tit-type1 {
    color: #fcd2cc;
}
.item.blue .tit-type1-content {
    background: none;
    border-color: #fcd2cc;
}
.item.blue .linkText {
    color: #fcd2cc;
}
.item.lozenge {
    background: #e8e8e8 url(../images/bgTattoo.jpg) top left repeat;
}
.item.pinkBg {
    background: #f7efec;
}
.item.pinkBg2 {
    background: #ffe4e3;
}
@media screen and (max-width: 767px) {
  .item {
    padding: 40px 0px;
  }
  .item.gift {
    padding-bottom: 40px;
  }
}

.tit-type1 {
  margin: 15px 0;
  padding: 0.2em 1em;
  font-size: 36px;
  line-height: 1.3;
  color: #005598;
  text-align: center;
}
.tit-type1 .sTit {
  font-size: 22px;
  line-height: 1.6;
  color: #444;
  font-weight: normal;
}
.tit-type1 .content {
  display: inline-block;
  border-radius: 15px;
  color: #333;
  background: #f6c35a;
  padding: 3px 20px;
}
.tit-type1-content {
  background: #fff;
  display: inline-block;
  border: solid 2px #7f9abf;
  padding: 5px 30px;
}
.tit-type1 .hasTag {
  position: relative;
  margin-top: 42px;
  display: inline-block;
}
.tit-type1 .hasTag .tag {
  position: absolute;
  top: -42px;
  left: 0;
  color: #fff;
  background: #005598;
  border-radius: 5px;
  font-size: 21px;
  font-weight: bold;
  padding: 3px 11px;
}
.tit-type1 .hasTag .tag:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 13px;
  border-top: solid 5px #005598;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}
.tit-type2 {
  margin: 15px 0px;
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
  color: #000;
  position: relative;
}
.tit-type2-tag {
  display: inline-block;
  color: #fff;
  background: #005598;
  padding: 3px 10px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 15px 0px;
}
.tit-type2 .content {
  display: inline-block;
  border-radius: 15px;
  background: #7e5847;
  color: #fff;
  padding: 5px 15px;
}
.tit-type3 {
  margin: 15px 0px;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tit-type1 {
    font-size: 22px;
  }
  .tit-type1 .sTit {
    font-size: 17px;
  }
  .tit-type1 .hasTag {
    margin-top: 36px;
  }
  .tit-type1 .hasTag .tag {
    top: -35px;
    font-size: 18px;
  }
  .tit-type1-content {
    padding: 5px 10px;
  }
  .tit-type1 .content {
    padding: 3px 15px;
  }
  .tit-type2 {
    font-size: 18px;
  }
  .tit-type2-tag {
    font-size: 20px;
  }
}

.text {
  margin-bottom: 15px;
  font-size: 18px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-red {
  color: #f00 !important;
}
.text-blue {
  color: #005598;
}
.text-green {
  color: #519e2f;
}
.text-black {
  color: #333;
}
.text-orange {
  color: #ea5904 !important;
}
@media screen and (max-width: 991px) {
  .text {
    font-size: 16px;
  }
}

.remark {
  font-size: 14px;
}

.focus {
  border-bottom: solid 1px;
}

.linkText {
  color: #4d4d4d;
}
.linkText strong {
  font-weight: 700;
}
.linkText:hover {
  color: #10a5e6;
}

code {
  background: #f2f2f2;
  padding: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: monospace, "Noto Sans TC";
}

/*
.btn {
  display: inline-block;
  vertical-align: top;
}
.btnArea {
  text-align: center;
  font-size: 0px;
  margin: 20px 0px;
}
.btnArea.twoBtn .btn, .btnArea.threeBtn .btn {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 50%;
}
.btnArea.threeBtn .btn {
  max-width: 33.3333333333%;
}*/

.btnSmall a,
.btnSmall button {
    margin: 0px 5px;
    font-size: 16px;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 20px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 24px;
    background: #005598;
    overflow: hidden;
    position: relative;
  
    border:2px solid #007fb7;
    box-shadow:0 1px 3px #CCCCCC;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
    background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
    background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
}
.btnSmall a:hover,
.btnSmall button:hover {
    left:2px;
    color:#000;
    text-shadow:1px 1px 1px #FFFFFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
    background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
    background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}
.btnSmall a[disabled],
.btnSmall button[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    text-shadow:1px 1px 1px #FFFFFF;
}
.btnSmall_disabled a,
.btnSmall_disabled button {
    margin: 0px 5px;
    font-size: 16px;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 20px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 24px;
    background: #005598;
    overflow: hidden;
    position: relative;

    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    border: 2px solid #007fb7;
    text-shadow:1px 1px 1px #FFFFFF;
}

.btnMedium a,
.btnMedium button {
    margin: 0px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 42px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 100px;
	
	border:2px solid #007fb7;
	box-shadow:0 1px 3px #CCCCCC;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
    background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
    background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
}
.btnMedium a:hover,
.btnMedium button:hover {
    left:2px;
    color:#000;
    text-shadow:1px 1px 1px #FFFFFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
    background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
    background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}
.btnMedium a[disabled],
.btnMedium button[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    text-shadow:1px 1px 1px #FFFFFF;
}
.btnMedium_disabled a,
.btnMedium_disabled button {
    margin: 0px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 42px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 100px;

    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
	border: 2px solid #007fb7;
	text-shadow:1px 1px 1px #FFFFFF;
}

.btnLarge a,
.btnLarge button {
    margin: 8px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 161px;
	
    border:2px solid #007fb7;
    box-shadow:0 1px 3px #CCCCCC;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
    background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
    background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
}
.btnLarge a:hover,
.btnLarge button:hover {
    left:2px;
    color:#000;
    text-shadow:1px 1px 1px #FFFFFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
    background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
    background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}
.btnLarge a[disabled],
.btnLarge button[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    text-shadow:1px 1px 1px #FFFFFF;
}
.btnLarge_disabled a,
.btnLarge_disabled button {
    margin: 8px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 161px;

    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    border: 2px solid #007fb7;
    text-shadow:1px 1px 1px #FFFFFF;
}

.topMainbtnLarge_disabled a,
.topMainbtnLarge_disabled button {
    margin: 8px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 161px;

    pointer-events: none;
    cursor: not-allowed;
    color: #3d3d3d;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
    background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
    background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
    border: 2px solid #007fb7;
    text-shadow:1px 1px 1px #FFFFFF;
    margin-right:100px;
}

.topMainbtnLargeLeft a,
.topMainbtnLargeLeft button {
    margin: 8px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 161px;
	
    border:2px solid #007fb7;
    box-shadow:0 1px 3px #CCCCCC;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
    background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
    background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
    margin-right:100px;
}
.topMainbtnLargeLeft a:hover,
.topMainbtnLargeLeft button:hover {
    left:2px;
    color:#000;
    text-shadow:1px 1px 1px #FFFFFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
    background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
    background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}

.topMainbtnLargeRight a,
.topMainbtnLargeRight button {
    margin: 8px 5px;
    font-size: 20px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 50px;
    border-radius: 30px;
    -webkit-transition: 0.3s ease all;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 34px;
    background: #005598;
    overflow: hidden;
    position: relative;
    min-width: 161px;
	
    border:2px solid #007fb7;
    box-shadow:0 1px 3px #CCCCCC;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
    background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
    background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
    margin-left:100px;
}
.topMainbtnLargeRight a:hover,
.topMainbtnLargeRight button:hover {
    left:2px;
    color:#000;
    text-shadow:1px 1px 1px #FFFFFF;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
    background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
    background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}

.btn a,
.btn button {
  margin: 8px 5px;
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  line-height: 50px;
  border-radius: 30px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 34px;
  background: #005598;
  overflow: hidden;
  position: relative;
  min-width: 161px;
}
.btn.twoLines a,
.btn.twoLines button {
  line-height: 1.2;
  padding-top: 16px;
  padding-bottom: 16px;
}

.btn.type2 a,
.btn.type2 button {
  background: #002d64;
  -webkit-box-shadow: 0px 0px 0px 3px #10b7ee inset;
          box-shadow: 0px 0px 0px 3px #10b7ee inset;
}
.btn.type2 a:hover,
.btn.type2 button:hover {
  color: #10b7ee;
}
.btn.type3 a,
.btn.type3 button {
	border:2px solid #f2f2f2;
	box-shadow:0 1px 3px #CCCCCC;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
  background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
  background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
}
.btn.type3 a:hover,
.btn.type3 button:hover {
	left:2px;
	color:#000;
	text-shadow:1px 1px 1px #FFFFFF;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
  background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
  background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}

.btn-cp-idx {
  margin-top:0px;
  margin-left:60px;
  margin-bottom:-20px;
}
.btn.type3-cp a:hover,
.btn.type3-cp button:hover {
	left:2px;
	color:#000;
	text-shadow:1px 1px 1px #FFFFFF;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
  background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
  background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}

.btn.type4 a,
.btn.type4 button {
  color: #3d3d3d;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffc046+0,ffc046+50,dc9100+100 */
  background: #ffc046; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc046), color-stop(50%, #ffc046), to(#dc9100));
  background: linear-gradient(to bottom, #ffc046 0%, #ffc046 50%, #dc9100 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffc046", endColorstr="#dc9100",GradientType=0 ); /* IE6-9 */
}
.btn.type4 a:hover,
.btn.type4 button:hover {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#dc9100+0,ffc046+50,ffc046+100 */
  background: #dc9100; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#dc9100), color-stop(50%, #ffc046), to(#ffc046));
  background: linear-gradient(to bottom, #dc9100 0%, #ffc046 50%, #ffc046 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dc9100", endColorstr="#ffc046",GradientType=0 ); /* IE6-9 */
}
.btn.type5 a, .btn.type5 button {
  color: #3d3d3d;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
  background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
  background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
}
.btn.type5 a:hover, .btn.type5 button:hover {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007fb7+0,10a5e6+50,10a5e6+100 */
  background: #007fb7; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#007fb7), color-stop(50%, #10a5e6), to(#10a5e6));
  background: linear-gradient(to bottom, #007fb7 0%, #10a5e6 50%, #10a5e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#007fb7", endColorstr="#10a5e6",GradientType=0 ); /* IE6-9 */
}
.btn.red a,
.btn.red button {
  background: #ff0000;
  text-shadow: none !important;
}
.btn.yellow a,
.btn.yellow button {
  background: #ffff02;
  color: #000;
  text-shadow: none !important;
}
.btn.disable a,
.btn.disable button {
  background: #fff;
  color: rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
  cursor: auto;
}
.btn.disable a:hover,
.btn.disable button:hover {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
}
.btn.fixedWidth {
  width: 250px;
}
.btn-remark {
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}
.btn.white a,
.btn.white button {
  background: none;
  color: #fff;
  border: solid 1px;
}
.btn.purple a,
.btn.purple button {
  background: #560083;
}
.btn.brown a,
.btn.brown button {
  background: #945c24;
}
.btn.borderType a,
.btn.borderType button {
  color: #005598;
  border: solid 2px;
  background: none;
}
.btn.borderType a:hover,
.btn.borderType button:hover {
  text-shadow: none;
}
.btn.borderType.whiteStyle a,
.btn.borderType.whiteStyle button {
  color: #fff;
}
.btn.borderType.redStyle a,
.btn.borderType.redStyle button {
  color: #d10031;
}
.btn.textBtn a,
.btn.textBtn button {
  color: #005598;
  background: none;
}
.btn.textBtn a:before,
.btn.textBtn button:before {
  background: rgba(0, 0, 0, 0.05);
}
.btn.textBtn a:hover,
.btn.textBtn button:hover {
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn.textBtn.whiteStyle a,
.btn.textBtn.whiteStyle button {
  color: #fff;
}

.normal a,
.normal button {
  font-size: 24px;
  line-height: 55px;
  padding: 0px 25px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .normal a,
.normal button {
    font-size: 17px;
    line-height: 45px;
    padding: 0px 10px;
  }
}

.sBtn a,
.sBtn button {
  font-size: 18px;
  line-height: 38px;
  padding: 0px 25px;
}
@media screen and (max-width: 767px) {
  .sBtn a,
.sBtn button {
    font-size: 16px;
    line-height: 30px;
    padding: 0px 12px;
  }
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 700px;
  box-sizing: border-box;
}
.modal-container .closeBtn {
  z-index: 2;
}
.modal-container-infoArea {
  background: white;
  border-radius: 8px;
  padding: 15px 30px;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.54);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.54);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-container-text {
  font-size: 17px;
  line-height: 30px;
  padding-top: 20px;
  margin-bottom: 20px;
}
.modal-container-text .focusText {
  color: #ab3533;
  font-size: 20px;
}
.modal-container-btnArea {
  margin-top: 30px;
  text-align: center;
  font-size: 0px;
}
.modal-container-btn {
  display: inline-block;
  padding: 0px 24px;
}
.modal-container.fixedHeight {
  top: 10vh;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.modal-container.fixedHeight > div {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-youtube {
  position: relative;
  margin: 0 auto;
  padding-bottom: 56.25%;
}
.modal-youtube iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.modal.show {
  display: block;
}
.modal-enter-active, .modal-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.modal-enter, .modal-leave-to {
  opacity: 0;
}
.modal.md .modal-container {
  max-width: 450px;
}
@media screen and (max-width: 991px) {
  .modal-container {
    width: 90%;
  }
  .modal-container-infoArea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px 15px;
  }
  .modal-container .tit:before, .modal-container .tit:after {
    display: none;
  }
  .modal-container .tit > strong {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .modal-container-infoArea {
    border-width: 4px;
  }
  .modal-container-btn {
    margin-bottom: 15px;
  }
}

.openModal {
  cursor: pointer;
}

.closeBtn {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 100%;
  color: #fff;
  background: #005598;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 85, 152, 0.3);
          box-shadow: 0px 0px 0px 4px rgba(0, 85, 152, 0.3);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.closeBtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 0%;
  height: 0%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  border-radius: 100%;
}
.closeBtn i {
  position: relative;
}
.closeBtn:hover:before {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .closeBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.fixedRightBtn {
  margin-bottom: 6px;
}
.fixedRightBtn-area {
  position: fixed;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.fixedRightBtn a {
  display: block;
  text-align: center;
  width: 43px;
  color: #ffffff;
  background: #004790;
  padding: 10px 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  line-height: 20px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
  border-radius: 10px 0px 0px 10px;
}
.fixedRightBtn a:hover {
  background: #00a3e0;
}
.fixedRightBtn a i {
  font-size: 13px;
}
.fixedRightBtn.type2 a {
  background: #519e2f;
}
.fixedRightBtn.type2 a:hover {
  background: #00a3e0;
}
.fixedRightBtn.type3 a {
  background: #007eff;
}
.fixedRightBtn.type3 a:hover {
  background: #00a3e0;
}
@media screen and (max-width: 991px) {
  .fixedRightBtn a {
    width: 36px;
    padding: 15px 6px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fixedRightBtn {
    display: block;
    width: auto;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 0px;
  }
  .fixedRightBtn-area {
    top: auto;
    bottom: 15px;
    width: 100%;
    padding: 0px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 0px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn {
    display: inline-block;
    width: 50%;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn:nth-of-type(1) a {
    border-radius: 30px 0px 0px 30px;
  }
  .fixedRightBtn a {
    width: auto;
    padding: 11px 0px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1;
    border: solid 4px #fff;
  }
  .fixedRightBtn:nth-of-type(2) a {
    border-radius: 0px 30px 30px 0px;
    border-left: none;
  }
}

.chart {
  margin: 15px 0px;
}
.chart-area {
  font-size: 0px;
  text-align: center;
  margin: 15px -30px;
}
.chart-area .chart {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  padding: 0px 30px;
  margin: 0px;
}
.chart-area.threeChart .chart {
  width: 33.3333333333%;
}
.chart-tit {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0px;
}
.chart-tit.type2 {
  font-size: 24px;
}
.chart-tit.type2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: #005598;
  width: 8px;
  height: 26px;
  border-radius: 4px;
  position: relative;
  top: -3px;
}
.chart-tit-bg {
  background: #ececec;
  background: #005598;
  border-radius: 30px;
  display: inline-block;
  padding: 4px 18px;
  color: #fff;
}
.chart-tit-bg .focusText {
  color: #ffcc00;
}
.chart-img {
  max-width: 100%;
  display: block;
  margin: 15px auto;
}
.chart-table {
  margin: 10px 0px;
  overflow-x: auto;
}
.chart-table table {
  width: 100%;
  border-spacing: 1px;
  font-size: 17px;
  background: #d5e0e8;
}
.chart-table table thead tr {
  background: #0b84b7;
  background: #005598;
}
.chart-table table thead tr td {
  color: #fff;
  font-weight: bold;
}
.chart-table table tr {
  background: #fff;
}
.chart-table table tr td {
  text-align: center;
  color: #353535;
  padding: 12px 5px;
}
.chart-table table tr td.text-left {
  text-align: left;
}
.chart-table table tr:nth-of-type(2n+0) {
  background: #f2f2f2;
}
.chart-table table tr.focusTr {
  background: #fff8e8;
}
.chart-remark {
  font-size: 14px;
  margin: 10px 0px;
  color: #666;
}
.chart-remark b, .chart-remark strong {
  color: #333;
}
.chart-chartAndText {
  font-size: 0px;
}
.chart-chartAndText .chart,
.chart-chartAndText .chartText {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.chart-chartAndText .chart-img {
  margin-top: 0px;
}
.chart-chartAndText .chartText {
  padding-left: 12px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .chart-area {
    margin: 15px 0px;
  }
  .chart-area .chart {
    display: block;
    padding: 0px;
    width: auto;
    margin: 15px 0px;
  }
  .chart-area .chart + .chart {
    margin-top: 25px;
  }
  .chart-area.threeChart .chart {
    width: auto;
  }
  .chart-tit {
    font-size: 17px;
  }
  .chart-tit.type2 {
    font-size: 17px;
  }
  .chart-tit.type2:before {
    width: 6px;
    height: 17px;
    top: -1px;
  }
  .chart-table table {
    font-size: 14px;
  }
  .chart-remark {
    font-size: 12px;
  }
  .chart-chartAndText .chart,
.chart-chartAndText .chartText {
    display: block;
    width: auto;
  }
  .chart-chartAndText .chartText {
    padding-left: 0px;
    font-size: 16px;
  }
}

.row {
  margin: 5px -12px;
  font-size: 0px;
  text-align: center;
}

[class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  [class*=col-] {
    font-size: 16px;
  }
}

.col-1 {
  width: 4.1666666667%;
}
.col-2 {
  width: 8.3333333333%;
}
.col-3 {
  width: 12.5%;
}
.col-4 {
  width: 16.6666666667%;
}
.col-5 {
  width: 20.8333333333%;
}
.col-6 {
  width: 25%;
}
.col-7 {
  width: 29.1666666667%;
}
.col-8 {
  width: 33.3333333333%;
}
.col-9 {
  width: 37.5%;
}
.col-10 {
  width: 41.6666666667%;
}
.col-11 {
  width: 45.8333333333%;
}
.col-12 {
  width: 50%;
}
.col-13 {
  width: 54.1666666667%;
}
.col-14 {
  width: 58.3333333333%;
}
.col-15 {
  width: 62.5%;
}
.col-16 {
  width: 66.6666666667%;
}
.col-17 {
  width: 70.8333333333%;
}
.col-18 {
  width: 75%;
}
.col-19 {
  width: 79.1666666667%;
}
.col-20 {
  width: 83.3333333333%;
}
.col-21 {
  width: 87.5%;
}
.col-22 {
  width: 91.6666666667%;
}
.col-23 {
  width: 95.8333333333%;
}
.col-24 {
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .col-xl-1 {
    width: 4.1666666667%;
  }
  .col-xl-2 {
    width: 8.3333333333%;
  }
  .col-xl-3 {
    width: 12.5%;
  }
  .col-xl-4 {
    width: 16.6666666667%;
  }
  .col-xl-5 {
    width: 20.8333333333%;
  }
  .col-xl-6 {
    width: 25%;
  }
  .col-xl-7 {
    width: 29.1666666667%;
  }
  .col-xl-8 {
    width: 33.3333333333%;
  }
  .col-xl-9 {
    width: 37.5%;
  }
  .col-xl-10 {
    width: 41.6666666667%;
  }
  .col-xl-11 {
    width: 45.8333333333%;
  }
  .col-xl-12 {
    width: 50%;
  }
  .col-xl-13 {
    width: 54.1666666667%;
  }
  .col-xl-14 {
    width: 58.3333333333%;
  }
  .col-xl-15 {
    width: 62.5%;
  }
  .col-xl-16 {
    width: 66.6666666667%;
  }
  .col-xl-17 {
    width: 70.8333333333%;
  }
  .col-xl-18 {
    width: 75%;
  }
  .col-xl-19 {
    width: 79.1666666667%;
  }
  .col-xl-20 {
    width: 83.3333333333%;
  }
  .col-xl-21 {
    width: 87.5%;
  }
  .col-xl-22 {
    width: 91.6666666667%;
  }
  .col-xl-23 {
    width: 95.8333333333%;
  }
  .col-xl-24 {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .col-lg-1 {
    width: 4.1666666667%;
  }
  .col-lg-2 {
    width: 8.3333333333%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-4 {
    width: 16.6666666667%;
  }
  .col-lg-5 {
    width: 20.8333333333%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-7 {
    width: 29.1666666667%;
  }
  .col-lg-8 {
    width: 33.3333333333%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-10 {
    width: 41.6666666667%;
  }
  .col-lg-11 {
    width: 45.8333333333%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-13 {
    width: 54.1666666667%;
  }
  .col-lg-14 {
    width: 58.3333333333%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-16 {
    width: 66.6666666667%;
  }
  .col-lg-17 {
    width: 70.8333333333%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-19 {
    width: 79.1666666667%;
  }
  .col-lg-20 {
    width: 83.3333333333%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-22 {
    width: 91.6666666667%;
  }
  .col-lg-23 {
    width: 95.8333333333%;
  }
  .col-lg-24 {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .col-md-1 {
    width: 4.1666666667%;
  }
  .col-md-2 {
    width: 8.3333333333%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-4 {
    width: 16.6666666667%;
  }
  .col-md-5 {
    width: 20.8333333333%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-7 {
    width: 29.1666666667%;
  }
  .col-md-8 {
    width: 33.3333333333%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-10 {
    width: 41.6666666667%;
  }
  .col-md-11 {
    width: 45.8333333333%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-13 {
    width: 54.1666666667%;
  }
  .col-md-14 {
    width: 58.3333333333%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-16 {
    width: 66.6666666667%;
  }
  .col-md-17 {
    width: 70.8333333333%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-19 {
    width: 79.1666666667%;
  }
  .col-md-20 {
    width: 83.3333333333%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-22 {
    width: 91.6666666667%;
  }
  .col-md-23 {
    width: 95.8333333333%;
  }
  .col-md-24 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col-sm-1 {
    width: 4.1666666667%;
  }
  .col-sm-2 {
    width: 8.3333333333%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-4 {
    width: 16.6666666667%;
  }
  .col-sm-5 {
    width: 20.8333333333%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-7 {
    width: 29.1666666667%;
  }
  .col-sm-8 {
    width: 33.3333333333%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-10 {
    width: 41.6666666667%;
  }
  .col-sm-11 {
    width: 45.8333333333%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-13 {
    width: 54.1666666667%;
  }
  .col-sm-14 {
    width: 58.3333333333%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-16 {
    width: 66.6666666667%;
  }
  .col-sm-17 {
    width: 70.8333333333%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-19 {
    width: 79.1666666667%;
  }
  .col-sm-20 {
    width: 83.3333333333%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-22 {
    width: 91.6666666667%;
  }
  .col-sm-23 {
    width: 95.8333333333%;
  }
  .col-sm-24 {
    width: 100%;
  }
}
@media screen and (max-width: 359px) {
  .col-xs-1 {
    width: 4.1666666667%;
  }
  .col-xs-2 {
    width: 8.3333333333%;
  }
  .col-xs-3 {
    width: 12.5%;
  }
  .col-xs-4 {
    width: 16.6666666667%;
  }
  .col-xs-5 {
    width: 20.8333333333%;
  }
  .col-xs-6 {
    width: 25%;
  }
  .col-xs-7 {
    width: 29.1666666667%;
  }
  .col-xs-8 {
    width: 33.3333333333%;
  }
  .col-xs-9 {
    width: 37.5%;
  }
  .col-xs-10 {
    width: 41.6666666667%;
  }
  .col-xs-11 {
    width: 45.8333333333%;
  }
  .col-xs-12 {
    width: 50%;
  }
  .col-xs-13 {
    width: 54.1666666667%;
  }
  .col-xs-14 {
    width: 58.3333333333%;
  }
  .col-xs-15 {
    width: 62.5%;
  }
  .col-xs-16 {
    width: 66.6666666667%;
  }
  .col-xs-17 {
    width: 70.8333333333%;
  }
  .col-xs-18 {
    width: 75%;
  }
  .col-xs-19 {
    width: 79.1666666667%;
  }
  .col-xs-20 {
    width: 83.3333333333%;
  }
  .col-xs-21 {
    width: 87.5%;
  }
  .col-xs-22 {
    width: 91.6666666667%;
  }
  .col-xs-23 {
    width: 95.8333333333%;
  }
  .col-xs-24 {
    width: 100%;
  }
}

.margin-top-0 {
  margin-top: 0px;
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-25 {
  margin-top: 25px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-35 {
  margin-top: 35px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-top-45 {
  margin-top: 45px;
}
.margin-top-50 {
  margin-top: 50px;
}
@media screen and (max-width: 1599px) {
  .margin-top-xxl-0 {
    margin-top: 0px;
  }
  .margin-top-xxl-5 {
    margin-top: 5px;
  }
  .margin-top-xxl-10 {
    margin-top: 10px;
  }
  .margin-top-xxl-15 {
    margin-top: 15px;
  }
  .margin-top-xxl-20 {
    margin-top: 20px;
  }
  .margin-top-xxl-25 {
    margin-top: 25px;
  }
  .margin-top-xxl-30 {
    margin-top: 30px;
  }
  .margin-top-xxl-35 {
    margin-top: 35px;
  }
  .margin-top-xxl-40 {
    margin-top: 40px;
  }
  .margin-top-xxl-45 {
    margin-top: 45px;
  }
  .margin-top-xxl-50 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1399px) {
  .margin-top-xl-0 {
    margin-top: 0px;
  }
  .margin-top-xl-5 {
    margin-top: 5px;
  }
  .margin-top-xl-10 {
    margin-top: 10px;
  }
  .margin-top-xl-15 {
    margin-top: 15px;
  }
  .margin-top-xl-20 {
    margin-top: 20px;
  }
  .margin-top-xl-25 {
    margin-top: 25px;
  }
  .margin-top-xl-30 {
    margin-top: 30px;
  }
  .margin-top-xl-35 {
    margin-top: 35px;
  }
  .margin-top-xl-40 {
    margin-top: 40px;
  }
  .margin-top-xl-45 {
    margin-top: 45px;
  }
  .margin-top-xl-50 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .margin-top-lg-0 {
    margin-top: 0px;
  }
  .margin-top-lg-5 {
    margin-top: 5px;
  }
  .margin-top-lg-10 {
    margin-top: 10px;
  }
  .margin-top-lg-15 {
    margin-top: 15px;
  }
  .margin-top-lg-20 {
    margin-top: 20px;
  }
  .margin-top-lg-25 {
    margin-top: 25px;
  }
  .margin-top-lg-30 {
    margin-top: 30px;
  }
  .margin-top-lg-35 {
    margin-top: 35px;
  }
  .margin-top-lg-40 {
    margin-top: 40px;
  }
  .margin-top-lg-45 {
    margin-top: 45px;
  }
  .margin-top-lg-50 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .margin-top-md-0 {
    margin-top: 0px;
  }
  .margin-top-md-5 {
    margin-top: 5px;
  }
  .margin-top-md-10 {
    margin-top: 10px;
  }
  .margin-top-md-15 {
    margin-top: 15px;
  }
  .margin-top-md-20 {
    margin-top: 20px;
  }
  .margin-top-md-25 {
    margin-top: 25px;
  }
  .margin-top-md-30 {
    margin-top: 30px;
  }
  .margin-top-md-35 {
    margin-top: 35px;
  }
  .margin-top-md-40 {
    margin-top: 40px;
  }
  .margin-top-md-45 {
    margin-top: 45px;
  }
  .margin-top-md-50 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .margin-top-sm-0 {
    margin-top: 0px;
  }
  .margin-top-sm-5 {
    margin-top: 5px;
  }
  .margin-top-sm-10 {
    margin-top: 10px;
  }
  .margin-top-sm-15 {
    margin-top: 15px;
  }
  .margin-top-sm-20 {
    margin-top: 20px;
  }
  .margin-top-sm-25 {
    margin-top: 25px;
  }
  .margin-top-sm-30 {
    margin-top: 30px;
  }
  .margin-top-sm-35 {
    margin-top: 35px;
  }
  .margin-top-sm-40 {
    margin-top: 40px;
  }
  .margin-top-sm-45 {
    margin-top: 45px;
  }
  .margin-top-sm-50 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 359px) {
  .margin-top-xs-0 {
    margin-top: 0px;
  }
  .margin-top-xs-5 {
    margin-top: 5px;
  }
  .margin-top-xs-10 {
    margin-top: 10px;
  }
  .margin-top-xs-15 {
    margin-top: 15px;
  }
  .margin-top-xs-20 {
    margin-top: 20px;
  }
  .margin-top-xs-25 {
    margin-top: 25px;
  }
  .margin-top-xs-30 {
    margin-top: 30px;
  }
  .margin-top-xs-35 {
    margin-top: 35px;
  }
  .margin-top-xs-40 {
    margin-top: 40px;
  }
  .margin-top-xs-45 {
    margin-top: 45px;
  }
  .margin-top-xs-50 {
    margin-top: 50px;
  }
}
.margin-right-0 {
  margin-right: 0px;
}
.margin-right-5 {
  margin-right: 5px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-right-15 {
  margin-right: 15px;
}
.margin-right-20 {
  margin-right: 20px;
}
.margin-right-25 {
  margin-right: 25px;
}
.margin-right-30 {
  margin-right: 30px;
}
.margin-right-35 {
  margin-right: 35px;
}
.margin-right-40 {
  margin-right: 40px;
}
.margin-right-45 {
  margin-right: 45px;
}
.margin-right-50 {
  margin-right: 50px;
}
@media screen and (max-width: 1599px) {
  .margin-right-xxl-0 {
    margin-right: 0px;
  }
  .margin-right-xxl-5 {
    margin-right: 5px;
  }
  .margin-right-xxl-10 {
    margin-right: 10px;
  }
  .margin-right-xxl-15 {
    margin-right: 15px;
  }
  .margin-right-xxl-20 {
    margin-right: 20px;
  }
  .margin-right-xxl-25 {
    margin-right: 25px;
  }
  .margin-right-xxl-30 {
    margin-right: 30px;
  }
  .margin-right-xxl-35 {
    margin-right: 35px;
  }
  .margin-right-xxl-40 {
    margin-right: 40px;
  }
  .margin-right-xxl-45 {
    margin-right: 45px;
  }
  .margin-right-xxl-50 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1399px) {
  .margin-right-xl-0 {
    margin-right: 0px;
  }
  .margin-right-xl-5 {
    margin-right: 5px;
  }
  .margin-right-xl-10 {
    margin-right: 10px;
  }
  .margin-right-xl-15 {
    margin-right: 15px;
  }
  .margin-right-xl-20 {
    margin-right: 20px;
  }
  .margin-right-xl-25 {
    margin-right: 25px;
  }
  .margin-right-xl-30 {
    margin-right: 30px;
  }
  .margin-right-xl-35 {
    margin-right: 35px;
  }
  .margin-right-xl-40 {
    margin-right: 40px;
  }
  .margin-right-xl-45 {
    margin-right: 45px;
  }
  .margin-right-xl-50 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .margin-right-lg-0 {
    margin-right: 0px;
  }
  .margin-right-lg-5 {
    margin-right: 5px;
  }
  .margin-right-lg-10 {
    margin-right: 10px;
  }
  .margin-right-lg-15 {
    margin-right: 15px;
  }
  .margin-right-lg-20 {
    margin-right: 20px;
  }
  .margin-right-lg-25 {
    margin-right: 25px;
  }
  .margin-right-lg-30 {
    margin-right: 30px;
  }
  .margin-right-lg-35 {
    margin-right: 35px;
  }
  .margin-right-lg-40 {
    margin-right: 40px;
  }
  .margin-right-lg-45 {
    margin-right: 45px;
  }
  .margin-right-lg-50 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .margin-right-md-0 {
    margin-right: 0px;
  }
  .margin-right-md-5 {
    margin-right: 5px;
  }
  .margin-right-md-10 {
    margin-right: 10px;
  }
  .margin-right-md-15 {
    margin-right: 15px;
  }
  .margin-right-md-20 {
    margin-right: 20px;
  }
  .margin-right-md-25 {
    margin-right: 25px;
  }
  .margin-right-md-30 {
    margin-right: 30px;
  }
  .margin-right-md-35 {
    margin-right: 35px;
  }
  .margin-right-md-40 {
    margin-right: 40px;
  }
  .margin-right-md-45 {
    margin-right: 45px;
  }
  .margin-right-md-50 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .margin-right-sm-0 {
    margin-right: 0px;
  }
  .margin-right-sm-5 {
    margin-right: 5px;
  }
  .margin-right-sm-10 {
    margin-right: 10px;
  }
  .margin-right-sm-15 {
    margin-right: 15px;
  }
  .margin-right-sm-20 {
    margin-right: 20px;
  }
  .margin-right-sm-25 {
    margin-right: 25px;
  }
  .margin-right-sm-30 {
    margin-right: 30px;
  }
  .margin-right-sm-35 {
    margin-right: 35px;
  }
  .margin-right-sm-40 {
    margin-right: 40px;
  }
  .margin-right-sm-45 {
    margin-right: 45px;
  }
  .margin-right-sm-50 {
    margin-right: 50px;
  }
}
@media screen and (max-width: 359px) {
  .margin-right-xs-0 {
    margin-right: 0px;
  }
  .margin-right-xs-5 {
    margin-right: 5px;
  }
  .margin-right-xs-10 {
    margin-right: 10px;
  }
  .margin-right-xs-15 {
    margin-right: 15px;
  }
  .margin-right-xs-20 {
    margin-right: 20px;
  }
  .margin-right-xs-25 {
    margin-right: 25px;
  }
  .margin-right-xs-30 {
    margin-right: 30px;
  }
  .margin-right-xs-35 {
    margin-right: 35px;
  }
  .margin-right-xs-40 {
    margin-right: 40px;
  }
  .margin-right-xs-45 {
    margin-right: 45px;
  }
  .margin-right-xs-50 {
    margin-right: 50px;
  }
}
.margin-bottom-0 {
  margin-bottom: 0px;
}
.margin-bottom-5 {
  margin-bottom: 5px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-25 {
  margin-bottom: 25px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-35 {
  margin-bottom: 35px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-45 {
  margin-bottom: 45px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1599px) {
  .margin-bottom-xxl-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-xxl-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-xxl-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-xxl-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-xxl-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-xxl-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-xxl-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-xxl-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-xxl-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-xxl-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-xxl-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1399px) {
  .margin-bottom-xl-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-xl-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-xl-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-xl-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-xl-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-xl-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-xl-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-xl-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-xl-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-xl-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-lg-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-lg-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-lg-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-lg-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-lg-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-lg-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-lg-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-lg-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-lg-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .margin-bottom-md-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-md-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-md-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-md-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-md-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-md-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-md-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-md-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-md-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-md-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-sm-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-sm-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-sm-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-sm-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-sm-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-sm-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-sm-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-sm-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-sm-50 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 359px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0px;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5px;
  }
  .margin-bottom-xs-10 {
    margin-bottom: 10px;
  }
  .margin-bottom-xs-15 {
    margin-bottom: 15px;
  }
  .margin-bottom-xs-20 {
    margin-bottom: 20px;
  }
  .margin-bottom-xs-25 {
    margin-bottom: 25px;
  }
  .margin-bottom-xs-30 {
    margin-bottom: 30px;
  }
  .margin-bottom-xs-35 {
    margin-bottom: 35px;
  }
  .margin-bottom-xs-40 {
    margin-bottom: 40px;
  }
  .margin-bottom-xs-45 {
    margin-bottom: 45px;
  }
  .margin-bottom-xs-50 {
    margin-bottom: 50px;
  }
}
.margin-left-0 {
  margin-left: 0px;
}
.margin-left-5 {
  margin-left: 5px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-left-15 {
  margin-left: 15px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-left-25 {
  margin-left: 25px;
}
.margin-left-30 {
  margin-left: 30px;
}
.margin-left-35 {
  margin-left: 35px;
}
.margin-left-40 {
  margin-left: 40px;
}
.margin-left-45 {
  margin-left: 45px;
}
.margin-left-50 {
  margin-left: 50px;
}
@media screen and (max-width: 1599px) {
  .margin-left-xxl-0 {
    margin-left: 0px;
  }
  .margin-left-xxl-5 {
    margin-left: 5px;
  }
  .margin-left-xxl-10 {
    margin-left: 10px;
  }
  .margin-left-xxl-15 {
    margin-left: 15px;
  }
  .margin-left-xxl-20 {
    margin-left: 20px;
  }
  .margin-left-xxl-25 {
    margin-left: 25px;
  }
  .margin-left-xxl-30 {
    margin-left: 30px;
  }
  .margin-left-xxl-35 {
    margin-left: 35px;
  }
  .margin-left-xxl-40 {
    margin-left: 40px;
  }
  .margin-left-xxl-45 {
    margin-left: 45px;
  }
  .margin-left-xxl-50 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1399px) {
  .margin-left-xl-0 {
    margin-left: 0px;
  }
  .margin-left-xl-5 {
    margin-left: 5px;
  }
  .margin-left-xl-10 {
    margin-left: 10px;
  }
  .margin-left-xl-15 {
    margin-left: 15px;
  }
  .margin-left-xl-20 {
    margin-left: 20px;
  }
  .margin-left-xl-25 {
    margin-left: 25px;
  }
  .margin-left-xl-30 {
    margin-left: 30px;
  }
  .margin-left-xl-35 {
    margin-left: 35px;
  }
  .margin-left-xl-40 {
    margin-left: 40px;
  }
  .margin-left-xl-45 {
    margin-left: 45px;
  }
  .margin-left-xl-50 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .margin-left-lg-0 {
    margin-left: 0px;
  }
  .margin-left-lg-5 {
    margin-left: 5px;
  }
  .margin-left-lg-10 {
    margin-left: 10px;
  }
  .margin-left-lg-15 {
    margin-left: 15px;
  }
  .margin-left-lg-20 {
    margin-left: 20px;
  }
  .margin-left-lg-25 {
    margin-left: 25px;
  }
  .margin-left-lg-30 {
    margin-left: 30px;
  }
  .margin-left-lg-35 {
    margin-left: 35px;
  }
  .margin-left-lg-40 {
    margin-left: 40px;
  }
  .margin-left-lg-45 {
    margin-left: 45px;
  }
  .margin-left-lg-50 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 991px) {
  .margin-left-md-0 {
    margin-left: 0px;
  }
  .margin-left-md-5 {
    margin-left: 5px;
  }
  .margin-left-md-10 {
    margin-left: 10px;
  }
  .margin-left-md-15 {
    margin-left: 15px;
  }
  .margin-left-md-20 {
    margin-left: 20px;
  }
  .margin-left-md-25 {
    margin-left: 25px;
  }
  .margin-left-md-30 {
    margin-left: 30px;
  }
  .margin-left-md-35 {
    margin-left: 35px;
  }
  .margin-left-md-40 {
    margin-left: 40px;
  }
  .margin-left-md-45 {
    margin-left: 45px;
  }
  .margin-left-md-50 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .margin-left-sm-0 {
    margin-left: 0px;
  }
  .margin-left-sm-5 {
    margin-left: 5px;
  }
  .margin-left-sm-10 {
    margin-left: 10px;
  }
  .margin-left-sm-15 {
    margin-left: 15px;
  }
  .margin-left-sm-20 {
    margin-left: 20px;
  }
  .margin-left-sm-25 {
    margin-left: 25px;
  }
  .margin-left-sm-30 {
    margin-left: 30px;
  }
  .margin-left-sm-35 {
    margin-left: 35px;
  }
  .margin-left-sm-40 {
    margin-left: 40px;
  }
  .margin-left-sm-45 {
    margin-left: 45px;
  }
  .margin-left-sm-50 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 359px) {
  .margin-left-xs-0 {
    margin-left: 0px;
  }
  .margin-left-xs-5 {
    margin-left: 5px;
  }
  .margin-left-xs-10 {
    margin-left: 10px;
  }
  .margin-left-xs-15 {
    margin-left: 15px;
  }
  .margin-left-xs-20 {
    margin-left: 20px;
  }
  .margin-left-xs-25 {
    margin-left: 25px;
  }
  .margin-left-xs-30 {
    margin-left: 30px;
  }
  .margin-left-xs-35 {
    margin-left: 35px;
  }
  .margin-left-xs-40 {
    margin-left: 40px;
  }
  .margin-left-xs-45 {
    margin-left: 45px;
  }
  .margin-left-xs-50 {
    margin-left: 50px;
  }
}

.formArea {
  font-size: 0px;
  margin: 0px -10px;
}
.formArea-item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 10px;
  color: #4d3838;
  font-size: 18px;
}
.formArea-item-tit {
  padding-bottom: 5px;
  font-size: 24px;
}
.formArea-item.full {
  width: 100%;
}
.formArea-item.agree {
  position: relative;
  padding-left: 40px;
}
.formArea-item.agree .checkbox {
  position: absolute;
  left: 10px;
  top: 12px;
}
.formArea-item.agree a {
  color: #243e72;
}
.formArea-item.error {
  color: #f00;
}
.formArea-item.error .formArea-item-tit:after {
  content: "(請確認格式是否正確)";
  display: inline-block;
  padding-left: 5px;
  color: #000;
}
.formArea-item.error input,
.formArea-item.error select,
.formArea-item.error .checkbox span,
.formArea-item.error .checkbox span {
  -webkit-box-shadow: 0px 0px 0px 1px #f00 inset;
          box-shadow: 0px 0px 0px 1px #f00 inset;
}
.formArea .btnArea {
  margin-bottom: 0px;
  padding: 0px 10px;
}
@media screen and (max-width: 767px) {
  .formArea-item {
    width: 100%;
  }
  .formArea-item-tit {
    font-size: 16px;
  }
}

.fade-enter-active, .fade-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

.header-top {
  border-top: solid 10px #ea5904;
}
.header-top-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.header-top-link li {
  padding: 0;
  padding-right: 16px;
}
.header-top-link a {
  display: block;
  background: #ea5904;
  color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  font-size: 20px;
  padding: 6px 15px;
  border-radius: 0 0 5px 5px;
}
.header-top-link a:hover {
  color: #000;
}
.header-top-link2 {
  float: left;
  display: block;
  color: #fff;
  background: #003878;
  border-radius: 5px;
  padding: 2px 25px;
  margin-top: 10px;
}
.header-top-link2:hover {
  color: #f9e010;
}
.header-logo {
  float: left;
  font-size: 48px;
  font-weight: 900;
  margin-top: 55px;
  margin-bottom: 47px;
}
.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #002d64;
}
.header-logo a img {
  margin-right: 18px;
}

.indexMain {
  background: #ffc046;
}
.indexMain .container {
  position: relative;
}
.indexMain-img1 {
  position: absolute;
  top: -136px;
  left: 710px;
}
.indexMain-img2 {
  position: absolute;
  bottom: -18px;
  right: -190px;
}
.indexMain-cp-img2 {
  position: absolute;
  bottom: -18px;
  right: 90px;
}

.indexMain-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1px 0;
}
.indexMain-item:nth-of-type(1) {
  padding-right: 48px;
}
.indexMain-item:nth-of-type(2) {
  padding-left: 48px;
}
.indexMain-item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.indexMain-item-area:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: url(../images/dotLine.png) repeat-y;
}
.indexMain-item-tit {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin: 20px 0;
}
.indexMain-item-form {
  margin: 20px 0;
}
.indexMain-item-form-item {
  position: relative;
  padding-left: 110px;
  margin-bottom: 20px;
}
.indexMain-item-form-item-tit {
  color: #000;
  text-align: right;
  position: absolute;
  left: 0;
  top: 4px;
  width: 108px;
}
.indexMain-item-form-item-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 285px;
}
.indexMain-item-form-item-input input[type=text], .indexMain-item-form-item-input input[type=password] {
  border-color: transparent;
}
.indexMain-item-form-item-input input[type=text]:focus, .indexMain-item-form-item-input input[type=password]:focus {
  border-color: #10b7ee;
}
.indexMain-item-form-item-input img {
  margin-right: 15px;
}
.indexMain-item-form-item-input a {
  font-size: 18px;
  color: #0000FF;
	text-decoration:underline;
  border-bottom: solid 1px transparent;
}
.indexMain-item-form-item-input a:hover {
	color: #FF0000;
	left:2px; position: relative;
	top:2px
}

.indexMain-item-form-item-eye {
    position:absolute;
    top:1px;
    left:250px;
}

.eye-img {
    height: 30px;
}

.indexMain-item-cp-tit {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin: 20px 0;
  width:158px;
}
.indexMain-item-form-item-cp {
  position: relative;
  padding-left: 160px;
  margin-bottom: 15px;
}
.indexMain-item-form-item-cp-tit {
  color: #000;
  text-align: right;
  position: absolute;
  left: 0;
  top: 0px;
  width: 158px;
}
.indexMain-item-form-item-cp-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 485px;
}
.indexMain-item-form-item-cp-input input[type=text], .indexMain-item-form-item-cp-input input[type=password] {
  border-color: transparent;
}
.indexMain-item-form-item-cp-input input[type=text]:focus, .indexMain-item-form-item-cp-input input[type=password]:focus {
  border-color: #10b7ee;
}
.indexMain-item-form-item-cp-input img {
  margin-right: 15px;
}
.indexMain-item-form-item-cp-input a {
  font-size: 18px;
  color: #0000FF;
	text-decoration:underline;
  border-bottom: solid 1px transparent;
}
.indexMain-item-form-item-cp-input a:hover {
	color: #FF0000;
	left:2px; position: relative;
	top:2px
}

.indexMain-item-form-item-errorText {
  font-size: 14px;
}
.indexMain-item-form-item.errorType {
  color: #f00;
}
.indexMain-item-form-item.errorType input {
  -webkit-box-shadow: 0 0 0 1px #f00 inset;
          box-shadow: 0 0 0 1px #f00 inset;
  border-color: #f00 !important;
}
@media screen and (max-width: 992px) {
  .indexMain-img2 {
    display: none;
  }
}

.indexNewsList {
  font-size: 19px;
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  min-height: 200px;
}
.indexNewsList li {
  position: relative;
  padding-left: 90px;
  padding-bottom: 8px;
}
.indexNewsList li a {
  color: #002d64;
  border-bottom: solid 1px transparent;
}
.indexNewsList li a:hover {
  border-bottom-color: #002d64;
  color: #FF0000;
  position: relative;
  left:2px;
  top:2px
}
.indexNewsList-time {
  font-size: 16px;
  color: #fff;
  background: #4d4d4d;
  border-radius: 5px;
  position: absolute;
  top: 4px;
  left: 0;
  padding: 0 5px;
}

.indexFooter {
  background: url(../images/footerBg.png);
}
.indexFooter .container {
  position: relative;
  min-height: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.indexFooter-img {
  position: absolute;
  left: -166px;
  bottom: 0;
}
.indexFooter-info {
  margin: 0;
  list-style: none;
  padding-left: 0;
  padding-top: 64px;
  font-size: 16px;
  color: #000;
}
.indexFooter-info li {
  position: relative;
  padding-bottom: 10px;
  padding-left: 89px;
}
.indexFooter-info-tit {
  position: absolute;
  top: 0;
  left: 0;
  color: #002d64;
  background: #009fe9;
  border-radius: 10px;
  padding: 0 7px;
  width: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.msgList {
  font-size: 19px;
  padding-left: 0;
  margin: 20px 60px;
  list-style: none;
}
.msgList li {
  position: relative;
  width: 56vw;
  height: 4vh;
  padding: 8px 0px;
  border-bottom: #c4c4c4 1px dashed;
}
.msgList li:hover {
    background: #ffecc8;
}
.msgList li a {
  color: #002d64;
  border-bottom: solid 1px transparent;
}
.msgList li a:hover {
  border-bottom-color: #002d64;
  color: #FF0000;
  position: relative;
  left:2px;
  top:2px
}
.msgList-time {
  white-space: nowrap;
  color: #000;
  font-size: 18px;
  font-family:Arial;
  text-align: center;
  background: #c7d4cb;
  padding: 4px 40px;
  font-weight: bold;
  position: absolute;
}
.msgList-item {
  padding: 4px 0px;
  position: absolute;
  left: 170px;
}


.linkList {
  font-size: 19px;
  padding-left: 0;
  margin: 20px 60px;
  list-style: none;
}
.linkList li {
  position: relative;
  width: 56vw;
  height: 4vh;
  padding: 8px 0px;
  border-bottom: #c4c4c4 1px dashed;
}
.linkList li:hover {
    background: #ffecc8;
}
.linkList li a {
  color: #002d64;
  border-bottom: solid 1px transparent;
}
.linkList li a:hover {
  border-bottom-color: #002d64;
  color: #FF0000;
  position: relative;
  left:2px;
  top:2px
}
.linkList-id {
  white-space: nowrap;
  width: 1vw;
  color: #000;
  font-size: 18px;
  font-family:Arial;
  text-align: center;
  background: #c7d4cb;
  padding: 4px 40px;
  font-weight: bold;
  position: absolute;
}
.linkList-url {
  padding: 4px 0px;
  position: absolute;
  left: 120px;
}


.msgData {
  width: 56vw;
  font-size:19px;
  margin: auto;
  margin-top: 19px;
  margin-bottom:0px;
}
.msgData .titlediv {
  border-bottom: #c4c4c4 1px dashed;
  padding: 2px 0px;
}
.msgData .titlediv label {
  display: inline-block;
  width: 100%;
  padding:2px 0 2px 10px;
  background: #f9da2c; 
  font-size: 24px;
  font-weight:bold;
}
.msgData .time {
  text-align: right;
  font-size:18px;
  margin-top:5px;
}
.msgData .datadiv {
  width: 100%;
  min-height: 30vh;
  margin-top:10px;
}
.msgData table {
  width:100%;
  background-color: #f2f2f2;
}


@media screen and (max-width: 992px) {
  .indexFooter-img {
    left: -56px;
  }
}

.inBody {
  background-image: url(../images/footerBg.png);
  background-repeat: no-repeat;
  background-position-y: 10px;
}

.inHeaderFixedContainer {
	position: fixed;
	width:100vw;
	top:0;
	background-color: #85ced4;
  background-image: url(../images/footerBg.png);
  background-repeat: no-repeat;
  background-position-y: 10px;
  z-index: 1;
}

.inHeader {
  border-top: solid 10px #ea5904;
  position: relative;
  z-index: 1;
}
.inHeader-logo {
  padding-left: 44px;
  margin-top: 5px;
  margin-bottom: 5px;
  float: left;
}
.inHeader-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 52px;
  color: #002d64;
  font-weight: 900;
}
.inHeader-logo a img {
  margin-right: 18px;
}
.inHeader-img {
  position: absolute;
  left: 848px;
  bottom: -18px;
}
.inHeader-right {
  width: 572px;
  height: 151px;
  position: absolute;
  top: -10px;
  right: 0;
  background: #ffc046;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 30px;
  padding-right: 30px;
}
.inHeader-right:before {
  content: "";
  position: absolute;
  top: 0;
  left: -153px;
  border-left: solid 154px transparent;
  border-bottom: solid 151px #ffc046;
}
.inHeader-right-info {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 22px;
}
.inHeader-right-dotLine {
  height: 4px;
  background: url(../images/dotLine.png);
  position: relative;
  margin: 6px 0;
  margin-left: -123px;
  margin-right: -25px;
}
.inHeader-right-link {
  margin-top: 5px;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  font-size: 18px;
}
.inHeader-right-link li {
  padding-right: 20px;
  position: relative;
}
.inHeader-right-link li a {
  color: #464646;
  border-bottom: solid 1px transparent;
}
.inHeader-right-link li a:hover {
/* border-bottom-color: #464646;*/
	text-decoration:underline;
	color: #FF0000;
	left:2px; position: relative;
	top:2px
	
}
.inHeader-right-link li:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 7px;
  width: 1px;
  height: 20px;
  background: #464646;
}
.inHeader-right-link li:last-of-type {
  padding-right: 0;
}
.inHeader-right-link li:last-of-type:before {
  display: none;
}


.topBody {
  background-image: url(../images/footerBg.png);
  background-repeat: repeat-x repeat-y;
  background-position-y: 6px;
}

.topHeader {
  width: 100vw;
  height: 7.55vw;
  grid-template-columns: 15.6vw auto 18.2vw;
   border-top: solid 10px #ea5904;
display: grid;
}
.topHeader-logo {
  margin-top: 10px;
  margin-bottom: 10px;
  grid-column-start:2;
  grid-column-end:2;
  justify-self: center;
  z-index: 1;
}
.topHeader-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.71vw;
  color: #002d64;
  font-weight: 900;
}
.topHeader-logo a img {
    width: 6.46vw;
    margin-right: 0.94vw;
}
.topHeader-img-left {
    width:10.98vw;
    grid-column-start:1;
    grid-column-end:1;
    margin-top: 40px;
    justify-self: end;
    margin-right: -3.64vw;
    z-index: 1;
}
.topHeader-img-right {
    width:10.72vw;
    grid-column-start:3;
    grid-column-end:3;
    justify-self: start;
    margin-top: 22px;
    margin-left: -1.56vw;
    z-index: 1;
}

.topMain {
  width: 100vw;
  grid-template-columns: 14.6vw auto 15.6vw;
  display: grid;
}

.topMain-content {
	min-width: 72.65vw;
    height: 82vh;
    grid-column-start:2;
    grid-column-end:2;
    background-color: #f2f2f2;
    box-shadow: 0 0 15px #ffc046;
    border-radius: 10px;
    overflow-y: auto;
}

.topMain-border {
	width: 61.65vw;
    min-height: 75vh;
	font-size: 1.04vw;
	border:3px solid #ffc046;
	border-radius: 8px;
	margin: auto;
	margin-top: 30px;
    margin-bottom: 10px;
}

.topMain-Agree {
	width: 61.65vw;
	height: 45vh;
	font-size: 1.04vw;
	border:3px solid #ffc046;
	border-radius: 8px;
	margin:auto;
	margin-top: 30px;
    padding: 20px;
	overflow-y: auto;
}

.topMain-Memo {
	width: 61.65vw;
	margin:auto;
	color:#FF3366;
	font-size: 1.04vw;
	font-weight:bold;
	text-align: center;
	margin-top: 1.04vw;
}

.topMain-Btn {
	width: 61.65vw;
	margin:auto;
	font-weight:bold;
	text-align: center;
	margin-top: 0.32vw;;
	margin-bottom: 1.5vw;;
}

.topMainFooter-img {
    width:17.91vw;
    grid-column-start:1;
    grid-column-end:1;
    margin-left: 16px;
    align-self: end;
    z-index: 1;
}


@media screen and (max-width: 1800px) {
  .inHeader-img {
    display: none;
	  position: absolute;
	  left: 798px;
	  bottom: -18px;
  }
}
@media screen and (max-width: 1500px) {
	.topHeader {
	  height: 125px;
	}
  .topHeader-logo a img {
    width: 100px;
  }
	.topHeader-img-left {
		width:10.98vw;
	  margin-top: 70px;
	}
	.topHeader-img-right {
		width:10.72vw;
	  margin-top: 62px;
	}

	.topMainbtnLarge_disabled a,
	.topMainbtnLarge_disabled button {
	  margin: 8px 5px;
	}

	.topMainbtnLargeLeft a,
	.topMainbtnLargeLeft button {
	  margin: 8px 5px;
	}

	.topMainbtnLargeRight a,
	.topMainbtnLargeRight button {
	  margin: 8px 5px;
	}
  
  .inHeader-logo {
    padding-left: 20px;
    margin-top: 24px;
  }
  .inHeader-logo a {
    font-size: 39px;
  }
  .inHeader-logo a img {
    width: 100px;
  }
  .inHeader-img {
    display: block;
    left: 578px;
  }
  .inHeader-right {
    width: 400px;
    height: 162px;
    padding: 20px;
  }
  .inHeader-right:before {
    border-left-width: 70px;
    border-bottom-width: 162px;
    left: -70px;
  }
  .inHeader-right-info {
    font-size: 18px;
  }
  .inHeader-right-dotLine {
    margin: 12px 0;
    margin-left: -53px;
    margin-right: -18px;
  }
  .inHeader-right-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1255px) {
  .inHeader-logo a img {
    margin-right: 10px;
  }
  .inHeader-img {
    display: none;
  }
  .inHeader-right:before {
    border-left-width: 50px;
    left: -50px;
  }
  .inHeader-right-dotLine {
    margin-left: -46px;
  }
}

.inMain {
/*top:143px;*/
  padding-left: 300px;
  position: relative;
}
.inMain-aside {
	/*min-height:100vh;*/
    height: calc(100vh - 143px);
    /*min-height: calc(100vh - 143px);
    max-height: calc(100vh - 143px);*/
    overflow-y: auto;
}
.inMain-title {
    background-color: #fff;
    padding: 0px 27px 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.inMain-content {
	height:calc(100vh - 209px);
    background-color: #fff;
    padding: 0px 27px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
}
 
.inMain-aside {
  position: absolute;
  left: 0;
  width: 300px;
  background: url(../images/asideShadow.png) repeat-y;
  background-position-x: right;
}
.inMain-aside-tit {
  font-size: 30px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px #2c959f;
  background: rgba(0, 0, 0, 0.13);
  padding: 7px 20px 3px;
  padding-left: 95px;
  position: relative;
}
.inMain-aside-tit img {
  position: absolute;
  top: 7px;
  left: 20px;
}
.inMain-aside-menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.inMain-aside-menu > li {
  position: relative;
  padding-left: 20px;
  padding-right: 16px;
  padding-bottom: 0;
  border-bottom: solid 1px #33838a;
}
.inMain-aside-menu > li > a {
  font-weight: bold;
  font-size: 21px;
  line-height: 1.4;
  color: #09565d;
  display: block;
  margin-left: -20px;
  margin-right: -16px;
  padding: 12px 0;
  padding-left: 60px;
  padding-right: 16px;
}
.inMain-aside-menu > li > a > img {
  position: absolute;
  left: 20px;
}
.inMain-aside-menu > li.active > a, .inMain-aside-menu > li:hover > a {
  color: #0186c0;
}
.inMain-aside-menu > li > ul {
  list-style: none;
  margin: 0;
  padding-left: 9px;
  padding-bottom: 15px;
}
.inMain-aside-menu > li > ul li {
  position: relative;
  line-height: 1.4;
}
.inMain-aside-menu > li > ul li a {
  color: #3e3e3e;
  display: block;
  padding: 2px 0;
  padding-left: 36px;
  padding-right: 15px;
  border-radius: 14px;
}
.inMain-aside-menu > li > ul li a img {
  position: absolute;
  left: 11px;
  top: 3px;
  width: 15px;
}
.inMain-aside-menu > li > ul li a:hover {
  background: #fff;
}
.inMain-aside-menu > li > ul li a:hover img {
  opacity: 1;
}
.inMain-aside-menu > li > ul li.active a {
  color: #0186c0;
  background: #fff;
}
.inMain-aside-menu > li > ul li.active a img {
  opacity: 1;
}
@media screen and (max-width: 1500px) {
  .inMain-aside, .inMain-content {
    min-height: calc(100vh - 163px);
  }
}
@media screen and (max-width: 1399px) {
  .inMain {
    padding-left: 250px;
  }
  .inMain-aside {
    width: 250px;
  }
}

.crumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 28px;
    color: #444;
    margin: 0 0;
    margin-top:8px;
    margin-bottom: 6px;
}
.crumb-now {
    color: #10a5e6;
}

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 2px #f2f2f2;
  list-style: none;
  padding-left: 0;
  margin: 0px;
  margin-bottom:2px;
  font-size: 22px;
  color: #4d4d4d;
}
.tab li {
  cursor: pointer;
  border:1px solid #eee;
  padding: 5px 25px !important;
  margin-right: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2f2f2+0,dcdcdc+100 */
  background: #f2f2f2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#dcdcdc));
  background: linear-gradient(to bottom, #f2f2f2 0%, #dcdcdc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2f2f2", endColorstr="#dcdcdc",GradientType=0 ); /* IE6-9 */
}
.tab li.active, .tab li:hover {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#10a5e6+0,10a5e6+50,007fb7+100 */
  background: #10a5e6; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#10a5e6), color-stop(50%, #10a5e6), to(#007fb7));
  background: linear-gradient(to bottom, #10a5e6 0%, #10a5e6 50%, #007fb7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#10a5e6", endColorstr="#007fb7",GradientType=0 ); /* IE6-9 */
}
.tab li.active {
  font-weight: bold;
}


.formTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.formTable-item {
  width: 50%;
  border: solid 1px #e7e7e7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -1px;
  margin-left: -1px;
}
.formTable-item-tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #eee;
  text-align: center;
  border-right: solid 1px #e7e7e7;
  padding: 14px 10px;
}
.formTable-item-input {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  padding: 12px 26px;
}
.formTable-item-input .row:first-of-type {
  margin-top: 0;
}
.formTable-item-input .row:first-of-type [class^=col] {
  padding-top: 0;
}
.formTable-item-input .row:last-of-type {
  margin-bottom: 0;
}
.formTable-item-input .row:last-of-type [class^=col] {
  padding-bottom: 0;
}
.formTable-item-input .row + .formTable-item-errorText {
  margin-top: -10px;
}
.formTable-item-input.errorType {
  color: #f00;
}
.formTable-item-input.errorType input,
.formTable-item-input.errorType select {
  border-color: #f00;
  -webkit-box-shadow: 0 0 0 1px #f00 inset;
          box-shadow: 0 0 0 1px #f00 inset;
}
.formTable-item-errorText {
  color: #f00;
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .formTable-item {
    width: 100%;
  }
}



.data-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 20px;
    /*border-spacing: 2px;
    background: #fce1ae;*/
    border-radius: 8px;
    border:3px solid #fce1ae;
}
.data-table tr td {
    text-align: center;
    background: #fff;
    padding: 2px 4px;
    line-height:38px;
    border-bottom:1px solid #fce1ae;
    border-right:1px solid #fce1ae;
}
.data-table tr td[align=left] {
    text-align: left;
}
.data-table tr td[align=right] {
    text-align: right;
}
.data-table tr:nth-of-type(2n+1) td {
    background: #e8e8e8;
/*background: var(--bg-color);*/
}
.data-table tr:hover td {
    background: #ffecc8;
}
.data-table tr th {
    font-size: 20px;
    font-weight:bold;
    line-height:38px;
    text-align:center;
    text-shadow:1px 1px 1px #FFFFFF;
    border-bottom:1px solid #fce1ae;
    border-right:1px solid #fce1ae;
    background: #ffc046 !important;
}
/*第一欄第一列：左上*/
.data-table tr th:first-child {
    border-top-left-radius: 6px;
}
/*最後欄第一列：右上*/
.data-table tr th:last-child {
    border-top-right-radius: 6px;
}
/*第一欄最後列：左下*/
.data-table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}
/*最後欄第一列：右下*/
.data-table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}

.data-table-nohead {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 20px;
    border-radius: 8px;
    border:2px solid #fce1ae;
}
.data-table-nohead tr td {
    text-align: center;
    background: #fff;
    padding: 2px 4px;
    line-height:40px;
    border-bottom:1px solid #fce1ae;
    border-right:1px solid #fce1ae;
}
.data-table-nohead tr td[align=left] {
  text-align: left;
}
.data-table-nohead tr td[align=right] {
  text-align: right;
}
.data-table-nohead tr td:nth-of-type(2n+0) {
  background: #eeeeee;
}
.data-table-nohead tr:hover td {
  background: #ffecc8;
}

/*第一欄第一列：左上*/
.data-table-nohead tr:first-child td:first-child {
    border-top-left-radius: 6px;
}
/*最後欄第一列：右上*/
.data-table-nohead tr:first-child td:last-child {
    border-top-right-radius: 6px;
}
/*第一欄最後列：左下*/
.data-table-nohead tr:last-child td:first-child{
    border-bottom-left-radius: 6px;
}
/*最後欄第一列：右下*/
.data-table-nohead tr:last-child td:last-child{
    border-bottom-right-radius: 6px;
}

.listHd_c {
    font-size: 20px;
    font-weight:bold;
    line-height:38px;
    text-align:center;
    text-shadow:1px 1px 1px #FFFFFF;
    border-bottom:1px solid #fce1ae;
    border-right:1px solid #fce1ae;
    background: #ffc046 !important;
}

.inTable {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-right: 0px;
  margin-left: 0px;
  background: #fff;
  border:3px solid #ffc046;
  border-radius: 8px;
}

.inTable tr td {
    line-height:40px;
    background: #fff;
    padding: 2px 4px;
    border-bottom:1px solid #d0d0d0;
    border-right:1px solid #d0d0d0;
}
.inTable tr td[align=left] {
    text-align: left;
}
.inTable tr td[align=right] {
    text-align: right;
}
.inTable thead {
    font-size: 20px;
}
.inTable tr td.rowBg_c {
    color: #f00;
    text-align: center;
    background: #e7e7e7;
}
.inTable tr td.rowBg_l {
    text-align: center;
    background: #e7e7e7;
}

.inTable tr th {
    font-size: 20px;
    font-weight:bold;
    line-height:38px;
    text-align:center;
    text-shadow:1px 1px 1px #FFFFFF;
    border-bottom:1px solid #fce1ae;
    border-right:1px solid #fce1ae;
    background: #ffc046 !important;
}
/*第一欄第一列：左上*/
.inTable tr th:first-child {
    border-top-left-radius: 6px;
}

/*最後欄第一列：右上*/
.inTable tr th:last-child {
    border-top-right-radius: 6px;
}

/*第一欄第一列：左上*/
.inTable tr:first-child td:first-child {
  border-top-left-radius: 6px;
}
/*最後欄第一列：右上*/
.inTable tr:first-child td:last-child {
  border-top-right-radius: 6px;
}
/*第一欄最後列：左下*/
.inTable tr:last-child td:first-child{
  border-bottom-left-radius: 6px;
}
/*最後欄第一列：右下*/
.inTable tr:last-child td:last-child{
  border-bottom-right-radius: 6px;
}

.nbTable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    background: #fff;
    border: 0px;
}
.nbTable tr td {
    line-height:40px;
    background: #fff;
    padding: 2px 4px;
    border: 0px;
}
.nbTable tr td[align=left] {
    text-align: left;
}
.nbTable tr td[align=right] {
    text-align: right;
}


.nbTable tr td > .inTable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    background: #fff;
    border:3px solid #ffc046;
    border-radius: 8px;
}

.nbTable tr td > .inTable tr td {
    line-height:40px;
    background: #fff;
    padding: 2px 4px;
    border-bottom:1px solid #d0d0d0;
    border-right:1px solid #d0d0d0;
}

.nbTable tr td > .inTable tr td[align=left] {
    text-align: left;
}
.nbTable tr td > .inTable tr td[align=right] {
    text-align: right;
}
.nbTable tr td > .inTable thead {
    font-size: 20px;
}
.nbTable tr td > .inTable tr td.rowBg_c {
    color: #f00;
    text-align: center;
    background: #e7e7e7;
}
.nbTable tr td > .inTable tr td.rowBg_l {
    text-align: center;
    background: #e7e7e7;
}


.nbTableApp {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    background: #f2f2f2;
    border: 0px;
}
.nbTableApp tr td {
    line-height:40px;
    background: #f2f2f2;
    padding: 2px 4px;
    border: 0px;
}
.nbTableApp tr td[align=left] {
    text-align: left;
}
.nbTableApp tr td[align=right] {
    text-align: right;
}

.page {
    font-size: 18px;
    text-align: center;
    margin: 10px 0;
}
.page ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.page ul li {
    position: relative;
    padding: 0 14px;
}
.page ul li:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 18px;
    background: #43445a;
}
.page ul li:last-of-type:before {
    display: none;
}
.page ul li a {
    color: #10a5e6;
}
.page ul li a:hover {
    /*color: #4d4d4d;*/
    color: #FF0000;
    left:2px; position: relative;
    top:2px
}
.page ul li select {
    font-size: 18px;
    border: solid 1px #a0a0a0;
    border-radius: 5px;
    height: 30px;
    line-height: 25px;
    width: auto;
}

.calendarIcon {
    /*background: #47c9fd;
    border-radius: 100%;*/
    color: #fff;
    display: inline-block;
    width: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.calendarIcon:hover {
    color: #ffc046;
}

@media screen and (min-width: 1921px) {
  .indexBody {
    font-size: 0.95vw;
  }
  .container {
    width: 53.34vw;
  }
  .header-top {
    border-top-width: 0.5vw;
  }
  .header-top-link a {
    font-size: 1vw;
    padding: 0.3vw 0.8vw;
    border-radius: 0 0 0.2vw 0.2vw;
  }
  .header-top-link2 {
    border-radius: 0.2vw;
  }
  .header-logo {
    font-size: 2.5vw;
  }
  .header-logo a img {
    width: 6.459vw;
    margin-right: 1vw;
  }
  .indexMain-img1 {
    width: 10.7298vw;
    top: -7.1vw;
    left: 36.95vw;
  }
  .indexMain-img2 {
    width: 10.99vw;
    bottom: -0.9vw;
    right: -9.9vw;
  }
  .indexMain-cp-img2 {
    width: 10.99vw;
    bottom: -0.9vw;
    right: 4.69vw;
  }
  .indexMain-item-tit {
    font-size: 1.564vw;
    margin: 1vw 0;
  }
  .indexMain-item-form-item {
    padding-left: 4.45vw;
    margin-bottom: 0.77vw;
  }
  .indexMain-item-form-item-tit {
    width: 4.063vw;
    top: 0.3vw;
  }
  .indexMain-item-form-item-input {
    max-width: 16.41vw;
  }
  .indexMain-item-form-item-input .captchaImg {
    width: 3.646vw;
    margin-right: 0.8vw;
  }
  .indexMain-item-form-item-input a {
    font-size: 0.83vw;
  }
  
  .indexMain-item-form-item-eye {
      top: 0.1vw;
      left: 9.205vw;
  }

.eye-img {
    height: 1.129vw;
}

  .indexMain-item-cp-tit {
    font-size: 1.564vw;
    width: 10.944vw;
    margin: 1vw 0;
  }
  .indexMain-item-form-item-cp {
    padding-left: 10.073vw;
    margin-bottom: 0.5775vw;
  }
  .indexMain-item-form-item-cp-tit {
    width: 9.944vw;
    top: 0.1vw;
  }
  .indexMain-item-form-item-cp-input {
    max-width: 27.926vw;
  }
  .indexMain-item-form-item-cp-input a {
    font-size: 0.83vw;
  }
  .indexMain-item-form-item-errorText {
    font-size: 0.73vw;
  }
  .indexNewsList{
    min-height: 18.52vh;
  }
  .indexNewsList li {
    font-size: 1vw;
    padding-left: 3.65vw;
    padding-bottom: 0.47vw;
  }
  .indexNewsList-time {
    font-size: 0.6vw;
    padding: 0 0.261vw;
    top: 0.27vw;
  }
  .indexFooter {
    background-size: 100vw;
  }
  .indexFooter .container {
    min-height: 11.6vw;
  }
  .indexFooter-img {
    width: 17.917vw;
    left: -8.65vw;
  }
  .indexFooter-info {
    font-size: 0.73vw;
    padding-top: 3.3vw;
  }
  .indexFooter-info li {
    padding-left: 4.1vw;
    padding-bottom: 0.55vw;
  }
  .indexFooter-info-tit {
    width: 3.65vw;
    border-radius: 0.4vw;
    text-align: center;
  }
  .btnArea {
    margin: 0.8vw 0;
  }
  .btn a, .btn button {
    font-size: 1.04vw;
    line-height: 2.61vw;
    border-radius: 2vw;
    padding: 0 1.7vw;
    min-width: 8.4vw;
  }
 .btn-cp-idx {
    margin-top:0px;
    margin-left:6vw;
    margin-bottom:0.5vw;
  }
  .inputStyle, input[type=text], input[type=password], input[type=tel], input[type=search], input[type=number], input[type=email] {
    font-size: 0.88vw;
    padding: 0.42vw 0.6vw;
  }
}


.modalBackground {
	background-color:Gray;
	filter:alpha(opacity=70);
	opacity:0.7;
}

.modalPopup {
	background-color:#ffffdd;
	border-width:3px;
	border-style:solid;
	border-color:Gray;
	padding:3px;
}
