@charset 'utf-8';
/**
 * 1. 테두리를 기준으로 크기 설정 
 * 2.  iOS와 IE에서 텍스트 크기 자동 조절 안되도록 
 */
* {
  margin: 0;
  padding: 0;
  /*1*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*2*/
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  width: 100%;
  overflow: hidden;
  /*모바일브라우저의 높이값 계산*/
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
li,
dd {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
em,
var,
dfn,
cite {
  font-style: normal;
}
img {
  border: 0px;
}
fieldset {
  border: none;
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
/* Forms**/
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  border: none;
  background: none;
  cursor: pointer;
  *overflow: visible;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
legend,
caption {
  height: 1px;
  margin-top: -1px;
  opacity: 0;
  overflow: hidden;
}
label,
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a,
span,
li,
img,
div {
  -webkit-touch-callout: none !important;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
b,
strong {
  font-weight: bold;
}
b,
strong,
span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
::-webkit-scrollbar {
  -webkit-overflow-scrolling: touch;
  -webkit-appearance: none;
  width: 4px;
}
::-webkit-scrollbar-thumb {
  -webkit-overflow-scrolling: touch;
  background: #a9a9a9;
}
/* Variables */
/* 노토 산스 NotoSansKR-Hestia
http://theeluwin.github.io/NotoSansKR-Hestia/
IE8 (윈도우 XP) : 힌팅이 적용되지 않아 비추천,지원 않함.
출처: http://webdir.tistory.com/440 [WEBDIR]
Black(900)  /  Bold(700) / Medium(500)   / Regular(400)  /
DemiLight(350)  /  Light(300)  / Thin(100)
*/
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 100;
  src: local('Noto Sans Thin'), local('NotoSans-Thin'), url(../fonts/NotoSansKR-Thin-Hestia.eot), url(../fonts/NotoSansKR-Thin-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Thin-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Thin-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 300;
  src: local('Noto Sans Light'), local('NotoSans-Light'), url(../fonts/NotoSansKR-Light-Hestia.eot), url(../fonts/NotoSansKR-Light-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Light-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Light-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans Regular'), local('NotoSans-Regular'), url(../fonts/NotoSansKR-Regular-Hestia.eot), url(../fonts/NotoSansKR-Regular-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Regular-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Regular-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 500;
  src: local('Noto Sans Medium'), local('NotoSans-Medium'), url(../fonts/NotoSansKR-Medium-Hestia.eot), url(../fonts/NotoSansKR-Medium-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Medium-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Medium-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 700;
  src: local('Noto Sans Bold'), local('NotoSans-Bold'), url(../fonts/NotoSansKR-Bold-Hestia.eot), url(../fonts/NotoSansKR-Bold-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Bold-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Bold-Hestia.otf) format('opentype');
}
* {
  font-family: 'NotoSans', 'Apple SD Gothic Neo', arial, '나눔고딕', 'Nanum Gothic', '돋움', 'Dotum', Tahoma, 'Geneva', sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}
/* Layout */
#wrap {
  min-width: 320px;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  background-color: #fff;
  overflow: hidden;
  color: #333333;
  font-size: 13px;
}
#wrap #contents {
  width: 100%;
  height: calc(100vh - 140px);
  padding-bottom: 60px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
#wrap #main-call-ui {
  position: fixed;
  bottom: 0vh;
  left: 0;
  width: 100%;
}
#header {
  width: 100%;
  position: relative;
  background-color: #fff;
  height: 60px;
  border-top: 3px solid #07336d;
}
#header .logo {
  width: 100%;
  background: url('../images/logo.png') no-repeat 50% 50%;
  background-size: auto 26px;
  height: 100%;
}
#header .h-title {
  height: 58px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .btn-right,
#header .btn-left {
  position: absolute;
  top: 8px;
  width: 40px;
  height: 40px;
  display: inline-block;
}
#header .btn-right .icon,
#header .btn-left .icon {
  vertical-align: middle;
  color: inherit;
  margin: 5px auto;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat 0 0;
  background-size: auto 60px;
}
#header .btn-right .icon.icons-back,
#header .btn-left .icon.icons-back {
  background-position-x: -150px;
}
#header .btn-right .icon.icons-home,
#header .btn-left .icon.icons-home {
  background-position-x: -180px;
}
#header .btn-right:hover .icon,
#header .btn-left:hover .icon {
  background-position-y: -30px;
}
#header .btn-right {
  right: 15px;
}
#header .btn-left {
  left: 10px;
}
#main-call-ui .f-msg {
  font-size: 13px;
  text-align: center;
  line-height: 30px;
  font-weight: 200;
}
#main-call-ui .call-ui {
  display: flex;
}
#main-call-ui .call-ui button.btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  height: 50px;
  text-align: center;
  background-color: #0095da;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-call-ui .call-ui button.btn .text {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
#main-call-ui .call-ui button.btn .icon {
  width: 30px;
  height: 30px;
  margin-left: -4px;
  margin-right: 4px;
}
#main-call-ui .call-ui button.btn .icon.icons-support {
  background: url('../images/icon_ui.png') no-repeat -30px 0;
  background-size: auto 60px;
}
#main-call-ui .call-ui button.btn .icon.icons-end {
  background: url('../images/icon_ui.png') no-repeat -90px 0;
  background-size: auto 60px;
}
#main-call-ui .call-ui button.btn:hover {
  background-color: #14a9ee;
}
#main-call-ui .call-ui button.btn.call-ui-done {
  background-color: #07336d;
}
#main-call-ui .call-ui button.btn.call-ui-done:hover {
  background-color: #1b4781;
}
/**********************/
.menu-list-wrap {
  padding: 0;
}
.menu-list {
  width: 100%;
}
.menu-list .btn {
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
  border: 1px solid #e6e6e6;
  text-align: left;
  color: #404041;
  min-height: 56px;
  padding: 12px 0 12px 20px;
  display: flex;
  align-items: center;
}
.menu-list .btn .num {
  background-color: #0095da;
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
}
.menu-list .btn .text {
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #404041;
  padding-left: 18px;
  width: 100%;
}
.menu-list .btn:after {
  flex: 0 0 30px;
  margin-right: 4px;
  margin-left: auto;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -120px 0px;
  background-size: auto 60px;
  transform: rotate(-90deg);
}
.menu-list .btn:hover {
  border-color: #07336d;
}
.menu-list .btn:hover .text {
  color: #07336d;
}
.menu-list .btn:hover:after {
  background-position-y: -30px;
}
.smenu-list {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.smenu-list .btn {
  flex: 0 1 calc(50% - 10px);
  border: 1px solid #e6e6e6;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 5px;
  margin: 0 5px 10px;
}
.smenu-list .btn:hover {
  border-color: #07336d;
  color: #07336d;
}
#contents .s-msg {
  background-color: #f5f5f5;
  padding: 12px 10px;
  font-size: 13px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
#contents .s-msg.type-L {
  text-align: left;
}
#contents .s-msg.type-C {
  text-align: center;
}
#contents .s-msg.type-R {
  text-align: right;
}
#contents .inner {
  padding: 20px 20px 0;
}
#contents .inner h2 {
  font-size: 14px;
  color: #404041;
  margin-top: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
#contents .inner h2:first-child {
  margin-top: 10px;
}
#contents .inner p {
  font-size: 13px;
  font-weight: 500;
  color: #404041;
  line-height: 1.4;
}
#contents .inner p.att {
  padding: 10px 0 20px 0 !important;
}
p.att {
  font-size: 13px;
  color: #666666;
  padding: 10px 0 20px 20px;
}
.notice-box {
  background-color: #ebf0f7;
  padding: 20px 20px;
  margin: 0 0 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
.msg-box {
  text-align: center;
  padding: 26px 0 0;
}
.msg-box .msg-icon {
  margin: 10px auto 0;
}
.msg-box .msg-icon img {
  width: 210px;
  height: auto;
}
.msg-box h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #404041;
}
.msg-box p {
  color: #666666;
  font-size: 15px;
}
.toast-msg {
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  position: fixed;
  bottom: 80px;
  left: 15px;
  font-size: 14px;
  color: #fff;
  width: calc(100% - 30px);
}
.text-red {
  color: #e30b17 !important;
}
.text-blue {
  color: #0095da !important;
}
.text-navy {
  color: #07336d !important;
}
.text-green {
  color: #009943 !important;
}
.text-orange {
  color: #ff4600 !important;
}
/*****************
FORM 
******************/
.form-group {
  position: relative;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.form-group span {
  font-size: 19px;
  padding: 0 6px;
  line-height: 1;
  color: #666666;
}
.form-group .btn {
  flex: 1 0 100px;
  margin-left: 8px;
  height: 48px !important;
}
.form-group .div-dropdown {
  flex: 1 0 100px;
  height: 48px !important;
  margin-left: 8px;
}
.form-group .label {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}
.form-group .form-input.form-sm {
  flex: 0 0 32px !important;
  text-align: center;
}
.form-group .form-input + .form-input {
  margin-top: 8px;
}
.form-group + .form-group {
  margin-top: 8px;
}
.form-textarea {
  border: 1px solid #e6e6e6;
  padding: 10px 10px;
  font-size: 14px;
  color: #404041;
  font-weight: 500;
  margin: 8px 0 4px;
  width: 100%;
  outline: 0;
}
.form-textarea:-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-input {
  outline: 0;
  border: 1px solid #e6e6e6;
  padding: 0 10px;
  height: 48px;
  font-size: 15px;
  color: #404041;
  font-weight: 500;
  width: 100%;
}
.form-input:-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-input::-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.form-input:focus {
  border-color: #e9e9e9;
}
.form-input.error {
  border-color: #e30b17;
}
.form-input:disabled {
  border-color: #e1e1e1;
  color: #999999;
}
.btn-group {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.btn-group .btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}
.btn-group .btn + .btn {
  margin-left: 10px;
}
.btn-group + .btn-group {
  margin-top: 10px !important;
}
.btn {
  display: inline-block;
  outline: 0;
}
.btn.btn-normal {
  width: 100%;
  color: #fff;
  line-height: 1.1;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  background-color: #0095da;
  text-align: center;
  -webkit-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
}
.btn.btn-normal:hover {
  background-color: #14a9ee;
}
.btn.btn-primary {
  width: 100%;
  color: #fff;
  line-height: 1.1;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  background-color: #07336d;
  -webkit-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.btn.btn-primary:hover {
  background-color: #1b4781;
}
.btn.disabled {
  background-color: #e1e1e1;
  color: #aaa;
}
.btn.disabled:hover {
  background-color: #e1e1e1;
}
.div-dropdown {
  position: relative;
}
.div-dropdown .dropdown-toggle {
  z-index: 200;
  color: #333333;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  padding: 0 0 0 10px;
  width: 100%;
  min-height: 48px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}
.div-dropdown .dropdown-toggle:after {
  flex: 0 0 30px;
  margin-left: auto;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -120px 0px;
  background-size: auto 60px;
  transform: rotate(0deg);
}
.div-dropdown .dropdown-toggle.disabled {
  background-color: #f5f5f5;
}
.div-dropdown .dropdown-menu {
  z-index: 300;
  position: absolute;
  top: 47px;
  left: 0;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  min-width: 100%;
  width: auto;
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.div-dropdown .dropdown-menu:hover {
  display: block;
}
.div-dropdown .dropdown-menu a {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}
.div-dropdown .dropdown-menu a:last-child {
  border-bottom: 0 !important;
}
.div-dropdown .dropdown-menu .div-dropdown .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.div-dropdown:hover + .dropdown-menu {
  display: block;
}
.div-dropdown + .form-group {
  margin-top: 8px;
}
[type='checkbox']:checked,
[type='checkbox']:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 24px;
  height: 24px;
}
[type='checkbox']:checked + label,
[type='checkbox']:not(:checked) + label {
  position: relative;
  padding-left: 36px;
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
  height: 24px;
  font-size: 14px;
  color: #404041;
}
[type='checkbox']:checked + label:before,
[type='checkbox']:not(:checked) + label:before {
  content: '';
  position: absolute;
  background: url('../images/icon_ui.png') no-repeat -213px -3px;
  background-size: auto 60px;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
}
[type='checkbox']:checked + label:after,
[type='checkbox']:not(:checked) + label:after {
  content: '';
  background: url('../images/icon_ui.png') no-repeat -213px -33px;
  background-size: auto 60px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #0095da;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  left: 0px;
}
[type='checkbox']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type='checkbox']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
[type='checkbox']:disabled {
  cursor: not-allowed;
}
[type='checkbox']:disabled + label:before {
  border: 1px solid #e2e2e2 !important;
  background-color: #e2e2e2;
}
.agreecheck-box .agreeallchk-box {
  margin-bottom: 10px;
  margin-top: 30px;
}
.agreecheck-box .agreeallchk-box label {
  font-size: 15px !important;
  font-weight: 500 !important;
}
.agreecheck-box .agreeallchk-box .btn-explode {
  float: right;
  display: inline-block;
  margin-right: -4px;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -120px 0px;
  background-size: auto 60px;
  transform: rotate(0deg);
}
.agreecheck-box .agreeallchk-box.active .btn-explode {
  transform: rotate(180deg);
}
.agreecheck-box .agreeallchk-box.active + .in-wrap {
  display: block !important;
}
.agreecheck-box .in-wrap {
  padding: 4px 0;
  display: none;
  border-top: 1px solid #e6e6e6;
}
.agreecheck-box .in-wrap .in {
  padding: 2px 0;
}
.agreecheck-box .in-wrap .in label:after,
.agreecheck-box .in-wrap .in label:before {
  border: 0 !important;
}
.agreecheck-box .in-wrap .btn-text {
  float: right;
  text-decoration: underline;
}
.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  bottom: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  height: 100%;
}
.modal.is-visible {
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-wrapper {
  width: 100%;
  z-index: 9999;
  margin: 0 20px;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.3);
  overflow: hidden;
}
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(10%);
  opacity: 0;
}
.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal-header {
  background-color: #fff;
  position: relative;
}
.modal-header .btn-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 24px;
  right: 16px;
  overflow: hidden;
  background: url('../images/icon_ui.png') no-repeat 0 0;
  background-size: auto 60px;
  text-indent: -999px;
}
.modal-footer {
  display: flex;
  padding: 0;
}
.modal-footer .btn {
  flex: 1;
}
.modal-heading {
  color: #404041;
  font-size: 18px;
  margin: 0;
  text-align: center;
  padding: 20px 10px;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 700;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}
.modal-body .modal-content {
  max-height: 90vh;
  padding: 0;
  overflow-y: auto;
}
.modal-body .msg-text {
  padding: 30px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.34;
  color: #333333;
}
.modal.is-full .modal-wrapper {
  height: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
}
.modal.is-full .modal-wrapper .modal-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.ticker-msg {
  overflow: hidden;
  text-align: center;
}
.ticker-msg .in {
  display: inline-block;
  width: auto;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-size: 15px;
  line-height: 40px;
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}
/*start*/
.start-list {
  padding: 0 15px;
  display: flex;
}
.start-list .btn {
  flex: 1 1 calc(50% -5px);
  margin: 0 5px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  width: 100%;
  height: 280px;
  text-align: center;
  justify-content: space-between;
}
.start-list .btn .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: url('../images/icon_start.png') no-repeat 0 0;
  background-size: auto 100px;
}
.start-list .btn .icon.icons-01 {
  background-position-x: 0;
}
.start-list .btn .icon.icons-02 {
  background-position-x: -100px;
}
.start-list .btn .text {
  position: relative;
  text-align: center;
  font-size: 24px;
  color: #404041;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 10px;
  margin-bottom: 15px;
}
.start-list .btn .text small {
  font-size: 12px;
  font-weight: 200;
  display: block;
  margin-top: 6px;
  color: #404041;
}
.start-list .btn:hover {
  border: 1px solid #0095da;
}
.main-list-wrap {
  padding: 0 15px;
}
.main-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-list .btn {
  flex: 0 1 calc(50% - 10px);
  height: 70px;
  margin: 0 5px 10px;
  background-color: #fff;
  margin-bottom: 10px;
  border: 1px solid #e6e6e6;
  color: #404041;
  text-align: center;
  display: flex;
  align-items: center;
}
.main-list .btn .icon {
  width: 50px;
  height: 50px;
  margin: 0 6px;
  background: url('../images/icon_main.png') no-repeat 0 0;
  background-size: auto 50px;
}
.main-list .btn .icon.icons-01 {
  background-position-x: 0;
}
.main-list .btn .icon.icons-02 {
  background-position-x: -50px;
}
.main-list .btn .icon.icons-03 {
  background-position-x: -100px;
}
.main-list .btn .icon.icons-04 {
  background-position-x: -150px;
}
.main-list .btn .icon.icons-05 {
  background-position-x: -200px;
}
.main-list .btn .icon.icons-06 {
  background-position-x: -250px;
}
.main-list .btn .icon.icons-07 {
  background-position-x: -300px;
}
.main-list .btn .icon.icons-08 {
  background-position-x: -350px;
}
.main-list .btn .text {
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  text-align: left;
}
.main-list .btn:hover {
  border: 1px solid #07336d;
}
.main-list .btn:hover .text {
  color: #07336d;
}
#wrap.p-start #contents {
  height: calc(100vh - 140px);
  padding-bottom: 0;
}
.m-title {
  padding: 32px 20px 10px 24px;
  height: 120px;
  background: url('../images/m_bg.png') no-repeat 90% 100%;
  background-size: auto 116px;
  margin-bottom: 2px;
}
.m-title .text {
  font-size: 20px;
  line-height: 1.23;
  font-weight: 500;
}
.m-title .text small {
  font-weight: 200;
  font-size: 13px !important;
  display: block;
  margin-top: 6px;
}
.img-box {
  border: 1px solid #e6e6e6;
}
.img-box img {
  width: 100%;
  height: auto;
  margin-bottom: -4px;
}
#wrap.p-msg #contents {
  width: 100%;
  height: calc(100vh - 90px);
  padding-bottom: 0;
}
#wrap.p-msg #main-call-ui .f-msg {
  margin-bottom: 10px;
}
.floatR {
  float: right !important;
}
.floatL {
  float: left !important;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.m-0 {
  margin: 0 !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-t-8 {
  margin-top: 8px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-25 {
  margin-top: 25px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-35 {
  margin-top: 35px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.p-l-10 {
  padding-left: 10px;
}
.p-r-10 {
  padding-right: 10px;
}
.p-l-5 {
  padding-left: 5px;
}
.p-r-5 {
  padding-right: 5px;
}
