/* reset */
body,
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
}
fieldset,
img {
  border: 0 none;
}
dl,
ul,
ol,
menu,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
input,
select,
textarea,
button {
  vertical-align: middle;
}
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
a {
  text-decoration: none;
  color: #111;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #111;
}
address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
}
table {
  border-spacing: 0;
}
caption {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
/* global */
:focus {
  outline: none;
}
button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
  border: none;
}
input[type=checkbox],
input[type=radio],
button {
  border: none;
}
label,
button,
input[type=submit],
input[type=image],
input[type=button],
input[type=checkbox],
input[type=radio],
input[type=file] {
  cursor: pointer;
}
::-ms-expand {
  display: none;
}
::-ms-check {
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 5-7 */
  filter: alpha(opacity=0);
  /* Good browsers :) */
  opacity: 0;
}
.f_l {
  float: left;
}
.f_r {
  float: right;
}
.cl_b {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
}
.show {
  display: block;
}
.hide {
  display: none;
}
.tb_l {
  display: table;
  width: 100%;
}
.tb_c {
  display: table-cell;
  vertical-align: middle;
}
.inline {
  display: inline-block;
}
table._fixed {
  table-layout: fixed;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes bounce {
  0% {
    top: 0;
  }
  50% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.slide_01 {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}
@keyframes zoom_main {
  0% {
    width: 1576px;
    height: 712px;
  }
  100% {
    width: 100.1%;
    height: 100.1%;
  }
}
@keyframes border_main {
  0% {
    -webkit-border-radius: 120px;
    -moz-border-radius: 120px;
    border-radius: 120px;
  }
  100% {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}
@keyframes zoom_main_mobile {
  0% {
    width: calc(100% - 40px);
    height: calc(100% - 150px);
  }
  100% {
    width: 100.1%;
    height: 100.1%;
  }
}
@keyframes border_main_mobile {
  0% {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
  }
  100% {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.modal .wrap_modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 0;
  margin: auto;
  overflow: hidden;
  z-index: 110;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 90%;
  border: none;
  box-shadow: none;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .modal .wrap_modal {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }
}
.modal .modal_header {
  position: relative;
  height: 45px;
}
@media only screen and (max-width: 1023px) {
  .modal .modal_header {
    height: 50px;
  }
}
.modal .modal_inner {
  position: relative;
  overflow-y: auto;
  max-height: 618px;
  padding: 0px 80px 45px;
}
@media only screen and (min-width: 1024px) {
  .modal .modal_inner::-webkit-scrollbar {
    width: 12px;
  }
  .modal .modal_inner::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #c6c8cc;
    background-clip: padding-box;
    border: 3px solid transparent;
  }
  .modal .modal_inner::-webkit-scrollbar-track {
    background: transparent;
  }
}
@media only screen and (max-width: 1023px) {
  .modal .modal_inner {
    max-height: calc(100% - 50px) !important;
    padding: 0px 20px 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.modal .btn_close {
  z-index: 101;
  position: absolute;
  top: 0;
  right: 40px;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 1023px) {
  .modal .btn_close {
    top: 15px;
    right: 13px;
    width: 32px;
    height: 32px;
  }
}
.modal .btn_close i {
  display: block;
  width: 20px;
  height: 21px;
  margin: 0 auto;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -114px 0;
}
@media only screen and (max-width: 1023px) {
  .modal .btn_close i {
    width: 16px;
    height: 16px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -98px 0;
    background-size: 300px;
  }
}
.board_modal .wrap_modal {
  width: 944px;
  height: 768px;
}
.board_modal .tit_modal {
  position: relative;
  padding-bottom: 60px;
  font-size: 44px;
  font-weight: 800;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .board_modal .tit_modal {
    padding-bottom: 50px;
    font-size: 24px;
  }
}
.board_modal .tit_modal .office_admin {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal .tit_modal .office_admin {
    justify-content: space-between;
    bottom: 15px;
    width: 100%;
  }
}
.board_modal .tit_modal .office_admin li:not(:last-child) {
  margin-right: 15px;
}
.board_modal .tit_modal .office_admin button {
  width: 72px;
  height: 32px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #f3f4f8;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_modal .tit_modal .office_admin button {
    width: 52px;
    font-size: 14px;
  }
}
.board_modal .board_list {
  min-height: 403px;
  border-top: 2px solid #222;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_list {
    min-height: auto;
  }
}
.board_modal .board_list li:last-child {
  border-bottom: 1px solid #ddd;
}
.board_modal .board_list li.empty {
  padding: 236px 0;
  border-bottom: 0;
  font-size: 24px;
  color: #777;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_list li.empty {
    padding: 175px 0 0;
    font-size: 16px;
  }
}
.board_modal .board_view {
  border-top: 2px solid #222;
}
.board_modal .board_view .top_area {
  padding: 30px 25px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .top_area {
    padding: 30px 12px;
  }
}
.board_modal .board_view .top_area .tit_board {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .top_area .tit_board {
    line-height: 28px;
    font-size: 20px;
  }
}
.board_modal .board_view .top_area .date {
  font-size: 16px;
  color: #777;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .top_area .date {
    font-size: 14px;
  }
}
.board_modal .board_view .view_area {
  line-height: 39px;
  padding: 50px 25px;
  border-bottom: 1px solid #ddd;
  font-size: 20px;
  color: #333;
  white-space: pre-line;
}
.board_modal .board_view .view_area img {
  display: block;
  max-width: 100%;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .view_area {
    line-height: 25px;
    padding: 35px 12px;
    font-size: 14px;
  }
}
.board_modal .board_view .bottom_area {
  overflow: hidden;
  margin-top: 25px;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .bottom_area {
    margin-top: 20px;
  }
}
.board_modal .board_view .bottom_area .btn_list {
  float: right;
  width: 127px;
  height: 56px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #f3f4f8;
  color: #002fd9;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  .board_modal .board_view .bottom_area .btn_list {
    width: 113px;
    height: 52px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    font-size: 16px;
  }
}
.board_modal .pagination {
  display: flex;
  justify-content: center;
  margin-top: 55px;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination {
    margin-top: 30px;
  }
}
.board_modal .pagination li {
  margin: 0 6px;
}
.board_modal .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: #333;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.board_modal .pagination a.btn_prev i,
.board_modal .pagination a.btn_next i {
  display: block;
  width: 10px;
  height: 15px;
  margin: 0 auto;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a.btn_prev i,
  .board_modal .pagination a.btn_next i {
    width: 6px;
    height: 10px;
  }
}
.board_modal .pagination a.btn_prev i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -201px 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a.btn_prev i {
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -134px -14px;
    background-size: 300px;
  }
}
.board_modal .pagination a.btn_prev.off i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -164px 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a.btn_prev.off i {
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -133px 0;
    background-size: 300px;
  }
}
.board_modal .pagination a.btn_next i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -221px 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a.btn_next i {
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -144px -13px;
    background-size: 300px;
  }
}
.board_modal .pagination a.btn_next.off i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -183px 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal .pagination a.btn_next.off i {
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -144px 0;
    background-size: 300px;
  }
}
.board_modal .pagination a.now {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #f3f4f8;
  color: #002fd9;
  font-weight: 700;
}
.board_modal.event_modal .modal_inner {
  padding: 0 0 45px;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .modal_inner {
    padding: 0px 20px 50px;
  }
}
.board_modal.event_modal .tit_modal {
  width: 784px;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal {
    width: 100%;
  }
}
.board_modal.event_modal .tit_modal .office_admin {
  right: auto;
  left: 0;
}
.board_modal.event_modal .tit_modal .event_category {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal .event_category {
    font-size: 14px;
  }
}
.board_modal.event_modal .tit_modal .event_category .btn_category {
  width: 160px;
  padding: 25px 0 25px 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
  color: #333;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal .event_category .btn_category {
    width: 115px;
    padding: 25px 0 25px 20px;
  }
}
.board_modal.event_modal .tit_modal .event_category .btn_category i {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  width: 14px;
  height: 8px;
  margin-left: 10px;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -240px 0;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal .event_category .btn_category i {
    width: 9px;
    height: 6px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -119px 0;
    background-size: 300px;
  }
}
.board_modal.event_modal .tit_modal .event_category .btn_category.open i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -240px -18px;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal .event_category .btn_category.open i {
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -119px -10px;
    background-size: 300px;
  }
}
.board_modal.event_modal .tit_modal .event_category .select_list {
  display: none;
  position: absolute;
  top: 75px;
  right: -28px;
  width: 190px;
  height: 135px;
  padding: 15px 0;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .tit_modal .event_category .select_list {
    top: 62px;
    right: -20px;
    width: 138px;
    height: 111px;
    padding: 10px 0;
  }
}
.board_modal.event_modal .tit_modal .event_category .select_list li a {
  display: block;
  padding: 13px 0;
}
@media only screen and (min-width: 1024px) {
  .board_modal.event_modal .tit_modal .event_category .select_list li:hover a {
    font-weight: 600;
    color: #002fd9;
  }
}
.board_modal.event_modal .event_list {
  width: 784px;
  margin: 0 auto;
  border-top: 2px solid #222;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list {
    width: 100%;
  }
}
.board_modal.event_modal .event_list li {
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list li {
    padding: 25px 0;
  }
}
.board_modal.event_modal .event_list li.empty {
  padding: 236px 0;
  border-bottom: 0;
  font-size: 24px;
  color: #777;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list li.empty {
    padding: 175px 0 0;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .board_modal.event_modal .event_list li a {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1024px) {
  .board_modal.event_modal .event_list .thumb {
    width: 565px;
  }
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list .thumb {
    margin-bottom: 18px;
  }
}
.board_modal.event_modal .event_list .thumb img {
  display: block;
  max-width: 100%;
}
@media only screen and (min-width: 1024px) {
  .board_modal.event_modal .event_list .info {
    width: 220px;
    padding: 13px 12px 13px 28px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.board_modal.event_modal .event_list .info .tit_board {
  line-height: 32px;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (min-width: 1024px) {
  .board_modal.event_modal .event_list .info .tit_board {
    margin-bottom: 14px;
    word-wrap: break-word;
    word-break: break-all;
  }
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list .info .tit_board {
    line-height: 24px;
    font-size: 15px;
  }
}
.board_modal.event_modal .event_list .info .date {
  color: #555;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_modal .event_list .info .date {
    margin-top: 5px;
    font-size: 13px;
  }
}
.board_modal.event_view_modal .board_view .view_area {
  padding: 48px 17px;
  white-space: initial;
}
@media only screen and (max-width: 1023px) {
  .board_modal.event_view_modal .board_view .view_area {
    padding: 36px 0;
  }
}
.write_modal .wrap_modal {
  width: 944px;
  height: 760px;
}
.write_modal .tit_modal {
  position: relative;
  padding-bottom: 19px;
  border-bottom: 2px solid #222;
  font-size: 36px;
  font-weight: 800;
}
@media only screen and (max-width: 1023px) {
  .write_modal .tit_modal {
    position: sticky;
    z-index: 2;
    top: 0;
    padding-bottom: 20px;
    padding-top: 30px;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
  }
}
.write_modal .tit_modal .office_admin {
  display: flex;
  position: absolute;
  bottom: 17px;
  right: 0;
}
@media only screen and (max-width: 1023px) {
  .write_modal .tit_modal .office_admin {
    bottom: 17px;
  }
}
.write_modal .tit_modal .office_admin li:not(:last-child) {
  margin-right: 15px;
}
.write_modal .tit_modal .office_admin button {
  width: 72px;
  height: 32px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #f3f4f8;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .write_modal .tit_modal .office_admin button {
    width: 52px;
    font-size: 14px;
  }
}
.write_modal .tit_modal .office_admin button.btn_save {
  color: #002fd9;
  font-weight: 700;
}
@media only screen and (max-width: 1023px) {
  .write_modal .tit_modal .office_admin button.btn_save {
    font-weight: 600;
  }
}
.write_modal .write_area .write_board li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.write_modal .write_area .write_board li.two_col .input_area {
  width: auto;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li.two_col .input_area {
    width: 120px;
  }
}
.write_modal .write_area .write_board li .notice_checkbox {
  display: inline-block;
  vertical-align: middle;
}
.write_modal .write_area .write_board li .notice_checkbox input[type=checkbox] {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin: 20px;
}
.write_modal .write_area .write_board li .tit {
  position: relative;
  width: 90px;
  font-size: 20px;
  color: #333;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .tit {
    width: 60px;
    font-size: 15px;
  }
}
.write_modal .write_area .write_board li .tit:after {
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 18px;
  background: #ccc;
  content: '';
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .tit:after {
    height: 12px;
  }
}
.write_modal .write_area .write_board li .input_area {
  width: calc(100% - 90px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .input_area {
    width: calc(100% - 60px);
  }
}
.write_modal .write_area .write_board li .input_area input[type=text],
.write_modal .write_area .write_board li .input_area input[type=file] {
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
  font-size: 20px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.write_modal .write_area .write_board li .input_area input[type=text].full_input,
.write_modal .write_area .write_board li .input_area input[type=file].full_input {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .input_area input[type=text],
  .write_modal .write_area .write_board li .input_area input[type=file] {
    padding: 20px;
    font-size: 15px;
  }
}
.write_modal .write_area .write_board li .input_area input[type=file] {
  font-size: 15px;
}
.write_modal .write_area .write_board li .input_area #imguploadend {
  max-width: 100%;
}
.write_modal .write_area .write_board li .input_area .txt_size {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  font-size: 15px;
  color: #333;
}
.write_modal .write_area .write_board li .input_area.event_period {
  padding: 10px 29px;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .input_area.event_period {
    padding: 10px 20px;
  }
}
.write_modal .write_area .write_board li .input_area.event_period input[type=text] {
  width: 180px;
  padding: 10px;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .write_modal .write_area .write_board li .input_area.event_period input[type=text] {
    width: 93px;
    padding: 10px 0;
  }
}
.write_modal .write_area .write_board li .input_area.event_period span {
  display: inline-block;
  vertical-align: middle;
  padding: 0 4px;
}
.write_modal .write_area .write_board li .input_area.event_period .check_alltime {
  vertical-align: middle;
  margin-left: 20px;
}
@media only screen and (max-width: 641px) {
  .write_modal .write_area .write_board li .input_area.event_period .check_alltime {
    display: block;
    margin: 10px 0 0 0;
  }
}
.write_modal .write_area .write_board li .input_area.event_period .check_alltime input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
@media only screen and (max-width: 641px) {
  .write_modal .write_area .write_board li .input_area.event_period .check_alltime input[type=checkbox] {
    top: 0;
  }
}
.write_modal .write_area .write_board li .editor_area {
  width: 100%;
  min-height: 400px;
  overflow-y: auto;
}
.write_modal.write_event_modal .write_area .write_board li .tit {
  width: 185px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .write_modal.write_event_modal .write_area .write_board li .tit {
    width: 90px;
    padding-left: 10px;
    word-break: keep-all;
  }
}
.write_modal.write_event_modal .write_area .write_board li .input_area {
  width: calc(100% - 185px);
}
@media only screen and (max-width: 1023px) {
  .write_modal.write_event_modal .write_area .write_board li .input_area {
    width: calc(100% - 90px);
  }
}
.login_modal .wrap_modal {
  width: 944px;
  height: 760px;
}
.login_modal .modal_inner {
  max-height: 648px;
  padding: 30px 212px;
}
@media only screen and (max-width: 1023px) {
  .login_modal .modal_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 10px 20px;
  }
}
.login_modal .logo {
  width: 238px;
  height: 80px;
  margin-bottom: 45px;
  background: url(../img/logo.png);
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .login_modal .logo {
    width: 155px;
    height: 52px;
    margin-bottom: 35px;
    background-image: url(../img/mobile/logo.png);
    background-size: 155px;
  }
}
.login_modal .tit_modal {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 800;
}
@media only screen and (max-width: 1023px) {
  .login_modal .tit_modal {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.login_modal .login_box {
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box {
    overflow: initial;
  }
}
.login_modal .login_box .input_list li {
  position: relative;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box .input_list li {
    padding-bottom: 35px;
  }
}
.login_modal .login_box .input_list h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box .input_list h4 {
    margin-bottom: 5px;
    font-size: 15px;
  }
}
.login_modal .login_box .input_list input {
  width: 100%;
  height: 72px;
  padding: 30px 20px;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box .input_list input {
    height: 52px;
    padding: 20px 15px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
  }
}
.login_modal .login_box .input_list input.active {
  border: 2px solid #297de4;
}
.login_modal .login_box .input_list input.error {
  border: 2px solid #e42939;
}
.login_modal .login_box .input_list .alert {
  position: absolute;
  left: 0;
  bottom: 15px;
  color: #e42955;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box .input_list .alert {
    bottom: 12px;
    font-size: 14px;
  }
}
.login_modal .login_box .btn_login {
  float: right;
  width: 106px;
  height: 56px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #002fd9;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  .login_modal .login_box .btn_login {
    width: 113px;
    height: 52px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    font-size: 16px;
  }
}
.login_modal .bottom_desc {
  margin-top: 45px;
  font-size: 18px;
  color: #555;
}
@media only screen and (max-width: 1023px) {
  .login_modal .bottom_desc {
    margin-top: 30px;
    font-size: 14px;
  }
}
.login_modal .bottom_desc i {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -144px 0;
}
@media only screen and (max-width: 1023px) {
  .login_modal .bottom_desc i {
    width: 7px;
    height: 7px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -171px 0;
    background-size: 300px;
  }
}
.modal_privacy .privacy_list {
  padding: 32px 0 50px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #333;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 1023px) {
  .modal_privacy .privacy_list {
    font-size: 12px;
    line-height: 17px;
  }
}
.modal_privacy .privacy_list li:last-child {
  border-bottom: 0 none;
}
.modal_privacy .privacy_list h3:not(:last-child),
.modal_privacy .privacy_list p:not(:last-child),
.modal_privacy .privacy_list ul:not(:last-child),
.modal_privacy .privacy_list table:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 1023px) {
  .modal_privacy .privacy_list h3:not(:last-child),
  .modal_privacy .privacy_list p:not(:last-child),
  .modal_privacy .privacy_list ul:not(:last-child),
  .modal_privacy .privacy_list table:not(:last-child) {
    margin-bottom: 17px;
  }
}
.modal_privacy .privacy_list h3 {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 39px;
  font-weight: 600;
  color: #111;
}
@media only screen and (max-width: 1023px) {
  .modal_privacy .privacy_list h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 25px;
  }
}
.modal_privacy .privacy_list b {
  font-weight: 600;
}
.modal_privacy .privacy_list table {
  text-align: center;
}
.modal_privacy .privacy_list table th,
.modal_privacy .privacy_list table td {
  padding: 15px 12px;
  border-right: 1px solid #ddd;
}
.modal_privacy .privacy_list table th:last-child,
.modal_privacy .privacy_list table td:last-child {
  border-right: none;
}
@media only screen and (max-width: 1023px) {
  .modal_privacy .privacy_list table th,
  .modal_privacy .privacy_list table td {
    padding: 12px 10px;
  }
}
.modal_privacy .privacy_list table th {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #f9fafe;
  font-weight: 600;
}
.modal_privacy .privacy_list table td {
  border-bottom: 1px solid #ddd;
  font-weight: 400;
  word-break: keep-all;
}
:root {
  --animate-delay: 0.5s;
}
@media only screen and (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 12px;
  }
  ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #c6c8cc;
    background-clip: padding-box;
    border: 3px solid transparent;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
}
body,
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body,
input,
select,
textarea,
button {
  font-family: 'SUIT', sans-serif;
  letter-spacing: -0.016em;
}
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}
select {
  -o-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
.ui-widget {
  font-size: 14px;
}
.modalFix {
  position: fixed;
  width: 100%;
}
.winFix {
  overflow-y: scroll;
}
.animation_stop {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}
@media only screen and (max-width: 1023px) {
  .fp-section,
  .fp-tableCell {
    height: auto !important;
  }
}
@media only screen and (max-width: 1023px) {
  .only_web {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  body.zoom .header {
    background: transparent;
  }
  body.zoom .header.fixed.sidebar_open {
    background: #fff !important;
  }
  body.zoom .header.fixed.sidebar_open h1 {
    background-image: url(../img/mobile/logo.png) !important;
    background-size: 155px !important;
  }
}
body.zoom .header h1 {
  background: url(../img/logo_white.png);
}
@media only screen and (max-width: 1023px) {
  body.zoom .header h1 {
    background: url(../img/mobile/logo_white.png);
    background-size: 155px;
  }
}
body.zoom .header .nav li a {
  color: #fff;
}
.header {
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  transition: background 0.2s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .header.sidebar_open {
    background: #fff !important;
    -webkit-backdrop-filter: blur(0) !important;
    backdrop-filter: blur(0) !important;
  }
  .header.sidebar_open h1 {
    background-image: url(../img/mobile/logo.png) !important;
    background-size: 155px !important;
  }
  .header .sns_list {
    display: none;
  }
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1576px;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .header .header_inner {
    width: 100%;
    padding: 7px 20px;
  }
}
.header.fixed {
  background: rgba(255, 255, 255, 0.7) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
}
.header.fixed h1 {
  width: 238px;
  height: 80px;
  background: url(../img/logo.png) !important;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .header.fixed h1 {
    width: 155px;
    height: 52px;
    background-image: url(../img/mobile/logo.png) !important;
    background-size: 155px !important;
  }
}
.header.fixed .nav li a {
  color: #111 !important;
}
.header.fixed .nav li a:hover,
.header.fixed .nav li a.on {
  color: #002fd9 !important;
  font-weight: bold;
}
.header h1 {
  width: 238px;
  height: 80px;
  background: url(../img/logo.png);
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .header h1 {
    width: 155px;
    height: 52px;
    background-image: url(../img/mobile/logo.png);
    background-size: 155px;
  }
}
.header .nav {
  display: flex;
  justify-content: space-between;
  width: 790px;
}
.header .nav li a {
  font-weight: 500;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}
.header .nav li:hover a,
.header .nav li.on a {
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .header .nav {
    display: none;
  }
}
.btn_sidebar {
  display: none;
  width: 36px;
  height: 36px;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
.btn_sidebar i {
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
  background-position: 0 0;
  background-size: 300px;
}
.btn_sidebar.open i {
  background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
  background-position: 0 -41px;
  background-size: 300px;
}
@media only screen and (max-width: 1023px) {
  .btn_sidebar {
    display: block;
  }
}
.footer {
  width: 100%;
  overflow: hidden;
  padding-top: 406px;
  margin-top: -225px;
  background: #f9fafe;
}
@media only screen and (max-width: 1023px) {
  .footer {
    padding-top: 64px;
    margin-top: 0;
  }
}
.footer .footer_inner {
  position: relative;
  width: 1576px;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_inner {
    width: 100%;
  }
}
.footer .footer_info {
  padding: 40px 0 60px;
  background: #eef1fd;
}
@media only screen and (max-width: 1023px) {
  .footer .footer_info {
    padding: 25px 20px;
  }
}
.footer .floated_footer_msg {
  font-weight: 900;
  font-size: 180px;
  color: #e3e6f5;
  letter-spacing: normal;
}
.footer .floated_footer_msg .swiper-slide {
  width: auto !important;
  margin-right: 130px;
}
@media only screen and (max-width: 1023px) {
  .footer .floated_footer_msg .swiper-slide {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 1023px) {
  .footer .floated_footer_msg {
    margin-bottom: 20px;
    font-size: 36px;
  }
}
.footer .info_list {
  position: relative;
  font-size: 16px;
  color: #555;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list {
    flex-direction: column;
    font-size: 13px;
  }
}
.footer .info_list > li > a {
  color: #555;
}
.footer .info_list > li:not(:last-child) {
  margin-right: 25px;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list > li:not(:last-child) {
    margin: 0 0 10px;
  }
}
.footer .info_list._info {
  display: flex;
  flex-wrap: wrap;
  width: 830px;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list._info {
    width: 100%;
  }
}
.footer .info_list._info > li:nth-child(n+5) {
  margin-top: 8px;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list._info > li:nth-child(n+5) {
    margin-top: 0;
  }
}
.footer .info_list._Copyright {
  position: absolute;
  right: 0;
  bottom: -3px;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list._Copyright {
    position: relative;
    left: 0;
  }
}
.footer .info_list._privacy {
  position: absolute;
  top: 0;
  right: 0;
}
.footer .info_list._privacy > li > a {
  font-weight: bold;
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .footer .info_list._privacy {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }
}
.footer .sns_list {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .footer .sns_list {
    display: flex;
    margin: 15px 0;
  }
}
.sidebar {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  padding-bottom: 50px;
  background: #fff;
  text-align: center;
  transition: transform 0.4s ease-in-out;
}
.sidebar.open {
  display: block;
}
.sidebar:after {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 200px;
  height: 276px;
  background: url(../img/mobile/bg_sidebar.png);
  background-size: cover;
  content: '';
}
.sidebar .top_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px;
}
.sidebar .top_area h1 {
  width: 238px;
  height: 80px;
  background: url(../img/logo.png) !important;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .sidebar .top_area h1 {
    width: 155px;
    height: 52px;
    background-image: url(../img/mobile/logo.png) !important;
    background-size: 155px !important;
  }
}
.sidebar .nav {
  z-index: 11;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 55px;
}
.sidebar .nav li:not(:last-child) {
  margin-bottom: 40px;
}
.sidebar .nav li a {
  display: block;
  font-size: 28px;
  font-weight: 600;
}
.section_container .section {
  padding-top: 200px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section {
    padding-top: 0 !important;
  }
}
.section_container .section .inner_section {
  width: 1576px;
  margin: 0 auto;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .section_container .section .inner_section {
    width: auto !important;
    padding: 70px 20px 0;
  }
}
.section_container .section .tit_section {
  padding-bottom: 90px;
  font-size: 56px;
  font-weight: 800;
}
@media only screen and (max-width: 1023px) {
  .section_container .section .tit_section {
    padding-bottom: 20px;
    font-size: 24px;
  }
}
.section_container .section.section_01 {
  position: relative;
  padding: 0;
}
.section_container .section.section_01 .wrap_center {
  display: flex;
  height: 100vh;
  background: #fff;
  transition: all 1s ease;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .wrap_center {
    height: 100%;
    padding: 80px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.section_container .section.section_01.zoom .mask {
  animation-name: zoom_main, border_main;
  animation-duration: 0.6s, 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01.zoom .mask {
    animation-name: zoom_main_mobile, border_main_mobile;
    animation-duration: 0.4s, 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
}
@media only screen and (min-width: 1024px) {
  .section_container .section.section_01.zoom .mask .mask_inner {
    transform: scale(1.05);
  }
}
.section_container .section.section_01.zoom .btn_scrolldown {
  color: #fff;
}
.section_container .section.section_01.zoom .btn_scrolldown i {
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -30px 0;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01.zoom .wrap_center {
    padding: 0;
    height: 100%;
  }
}
.section_container .section.section_01 .mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  will-change: width, height, transform;
}
.section_container .section.section_01 .mask .mask_inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  background-image: url(../img/bg_main.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .mask .mask_inner {
    background-image: url(../img/mobile/bg_main.jpg);
  }
}
.section_container .section.section_01 .wrap_txt {
  position: absolute;
  left: 250px;
  bottom: 270px;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .wrap_txt {
    left: 25px;
    bottom: calc(50% - 100px);
  }
}
.section_container .section.section_01 .wrap_txt .sns_list {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .wrap_txt .sns_list {
    display: flex;
    margin-top: 25px;
  }
}
.section_container .section.section_01 .wrap_txt .txt_01 {
  margin-bottom: 20px;
  font-size: 28px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .wrap_txt .txt_01 {
    line-height: 26.5px;
    margin-bottom: 15px;
    font-size: 20px;
    white-space: pre-line;
  }
}
.section_container .section.section_01 .wrap_txt .txt_02 {
  line-height: 68px;
  font-weight: 300;
  font-size: 56px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .wrap_txt .txt_02 {
    line-height: 36px;
    font-size: 28px;
  }
  .section_container .section.section_01 .wrap_txt .txt_02 b {
    display: block;
  }
}
.section_container .section.section_01 .btn_scrolldown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 100px;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .btn_scrolldown {
    display: none;
  }
}
.section_container .section.section_01 .btn_scrolldown i {
  display: block;
  position: relative;
  width: 20px;
  height: 23px;
  margin: 0 auto 5px;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: 0 0;
  animation-name: bounce, fadeout;
  animation-delay: 0, 0.4s;
  animation-duration: 2s, 1s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-direction: alternate, alternate;
  animation-iteration-count: infinite, infinite;
}
.section_container .section.section_01 .notice_bar {
  opacity: 0;
  position: absolute;
  right: 172px;
  bottom: 28px;
  width: 452px;
  height: 60px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #002fd9;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .notice_bar {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    height: 39px;
    line-height: 39px;
  }
}
.section_container .section.section_01 .notice_bar .swiper-slide {
  width: auto !important;
}
.section_container .section.section_01 .notice_bar a {
  display: block;
  padding: 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .notice_bar a {
    font-size: 14px;
  }
}
.section_container .section.section_01 .notice_bar a .ico_notice {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 33px;
  height: 37px;
  margin-right: 10px;
  background-image: url(../img/ico_notice.png);
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_01 .notice_bar a .ico_notice {
    width: 23px;
    height: 25px;
    margin-right: 7px;
    background-image: url(../img/mobile/ico_notice.png);
  }
}
.section_container .section.section_02 {
  padding-top: 215px;
}
.section_container .section.section_02 .wrap_slider {
  position: relative;
}
.section_container .section.section_02 .wrap_slider .figure {
  position: absolute;
  top: -88px;
  left: 536px;
  width: 322px;
  height: 322px;
  background: url(../img/bg_section_02.png);
  background-size: cover;
  content: '';
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_slider .figure {
    left: auto;
    right: -20px;
    top: -60px;
    width: 113px;
    height: 181px;
    background: url(../img/mobile/bg_section_02.png);
    background-size: cover;
  }
}
@media only screen and (min-width: 1024px) {
  .section_container .section.section_02 .swiper-container-horizontal > .swiper-pagination-bullets,
  .section_container .section.section_02 .swiper-pagination-custom,
  .section_container .section.section_02 .swiper-pagination-fraction {
    left: 778px;
    right: auto;
    bottom: auto;
    top: 75px;
    width: 775px;
    text-align: left;
  }
  .section_container .section.section_02 .swiper-pagination-bullet {
    width: auto;
    height: auto;
    padding: 17px 25px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: transparent;
    opacity: 1;
    color: #777;
    font-size: 26px;
  }
  .section_container .section.section_02 .swiper-pagination-bullet-active {
    background: #002fd9;
    color: #fff;
    font-weight: bold;
  }
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .swiper-container {
    padding-top: 28px;
  }
  .section_container .section.section_02 .swiper-container-horizontal > .swiper-pagination-bullets,
  .section_container .section.section_02 .swiper-pagination-custom,
  .section_container .section.section_02 .swiper-pagination-fraction {
    bottom: auto;
    top: -7px;
    right: 0;
    left: auto;
    width: auto;
  }
  .section_container .section.section_02 .swiper-pagination-clickable .swiper-pagination-bullet {
    text-indent: -9999px;
    *text-indent: 0;
    *color: transparent !important;
  }
  .section_container .section.section_02 .swiper-pagination-bullet {
    opacity: 1;
    background: #dbdce0;
  }
  .section_container .section.section_02 .swiper-pagination-bullet-active {
    background: #002fd9;
  }
  .section_container .section.section_02 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
  }
  .section_container .section.section_02 .inner_section {
    padding-top: 74px;
  }
}
.section_container .section.section_02 .wrap_content {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_content {
    flex-direction: column;
  }
}
.section_container .section.section_02 .wrap_content .left_area {
  width: 680px;
  margin-right: 120px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_content .left_area {
    width: auto;
    padding-bottom: 30px;
    margin-right: 0;
    text-align: center;
  }
}
.section_container .section.section_02 .wrap_content .left_area img {
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.section_container .section.section_02 .wrap_content .right_area {
  width: 776px;
  padding: 205px 0 75px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_content .right_area {
    width: auto;
    padding: 0;
  }
}
.section_container .section.section_02 .wrap_content .right_area h4 {
  margin-bottom: 22px;
  font-size: 48px;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_content .right_area h4 {
    margin-bottom: 19px;
    font-size: 20px;
  }
}
.section_container .section.section_02 .wrap_content .right_area .info_desc {
  line-height: 39px;
  font-size: 20px;
  color: #333;
  white-space: pre-line;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_02 .wrap_content .right_area .info_desc {
    line-height: 25px;
    font-size: 15px;
    white-space: normal;
  }
}
.section_container .section.section_03 {
  padding-top: 211px;
}
.section_container .section.section_03 .tit_section {
  padding: 0 0 0 80px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .tit_section {
    padding: 0 0 15px;
  }
}
.section_container .section.section_03 .thumb_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-content: space-between;
  height: 730px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list {
    display: block;
    overflow: hidden;
    height: auto;
    margin: 0 -5px;
  }
}
.section_container .section.section_03 .thumb_list li {
  display: flex;
  flex: 1 1 0;
  position: relative;
}
.section_container .section.section_03 .thumb_list li.li_title {
  z-index: 4;
}
.section_container .section.section_03 .thumb_list li:nth-child(3n) .thumb {
  margin-right: 0;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li {
    display: block;
    float: left;
    width: 50%;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .section_container .section.section_03 .thumb_list li.li_title,
  .section_container .section.section_03 .thumb_list li.li_full_col {
    width: 100%;
  }
  .section_container .section.section_03 .thumb_list li.li_title {
    padding: 0 5px;
  }
  .section_container .section.section_03 .thumb_list li.thumb_txt {
    padding: 16% 5px;
  }
}
.section_container .section.section_03 .thumb_list li .thumb {
  display: flex;
  align-items: center;
  z-index: 3;
  position: relative;
  overflow: hidden;
  width: 510px;
  height: 354px;
  margin: 0 auto;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  border-radius: 80px;
  background-repeat: repeat;
  background-size: cover;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb {
    width: 100%;
    height: 0;
    padding-top: calc(384/324*100%);
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
  }
}
.section_container .section.section_03 .thumb_list li .thumb.thumb_01 {
  background-image: url(../img/product_01.png);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb.thumb_01 {
    background-image: url(../img/mobile/product_01.jpg);
  }
}
.section_container .section.section_03 .thumb_list li .thumb.thumb_02 {
  background-image: url(../img/product_02.png);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb.thumb_02 {
    background-image: url(../img/mobile/product_02.jpg);
  }
}
.section_container .section.section_03 .thumb_list li .thumb.thumb_03 {
  background-image: url(../img/product_03.png);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb.thumb_03 {
    background-image: url(../img/mobile/product_03.jpg);
  }
}
.section_container .section.section_03 .thumb_list li .thumb.thumb_04 {
  background-image: url(../img/product_04.png);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb.thumb_04 {
    padding-top: calc(384/670*100%);
    background-image: url(../img/mobile/product_04.jpg);
  }
}
.section_container .section.section_03 .thumb_list li .thumb.thumb_05 {
  background-image: url(../img/product_05.png);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb.thumb_05 {
    background-image: url(../img/mobile/product_05.jpg);
  }
}
.section_container .section.section_03 .thumb_list li .thumb:after {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  content: "";
}
.section_container .section.section_03 .thumb_list li .thumb .info {
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 39px;
  padding: 20px 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  transform: translateY(130px);
  transition: transform 0.6s;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb .info {
    bottom: 56px;
    height: 56px;
    line-height: 25px;
    padding: 0 20px;
    font-size: 15px;
    transform: translateY(56px);
  }
}
@media only screen and (max-width: 361px) {
  .section_container .section.section_03 .thumb_list li .thumb .info {
    font-size: 13px;
  }
}
.section_container .section.section_03 .thumb_list li .thumb .info h4 {
  font-size: 26px;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb .info h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    margin-bottom: 20px;
    font-size: 17px;
  }
}
.section_container .section.section_03 .thumb_list li .thumb .info p {
  display: none;
  word-break: keep-all;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb .info p {
    display: block;
  }
}
.section_container .section.section_03 .thumb_list li .thumb .info .btn_more {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb .info .btn_more {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -41px 0;
    background-size: 300px;
    text-indent: -9999px;
    *text-indent: 0;
    *color: transparent !important;
  }
}
.section_container .section.section_03 .thumb_list li .thumb:hover:after {
  transform: translateY(0%);
}
.section_container .section.section_03 .thumb_list li .thumb:hover .info {
  padding: 60px;
  transform: translateY(0%);
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb:hover .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    bottom: 0;
    height: auto;
    padding: 20px;
  }
  .section_container .section.section_03 .thumb_list li .thumb:hover .info .btn_more {
    display: none;
  }
}
.section_container .section.section_03 .thumb_list li .thumb:hover .info p {
  display: block;
}
.section_container .section.section_03 .thumb_list li .thumb:hover .info h4 {
  margin-bottom: 12px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .thumb:hover .info h4 {
    margin-bottom: 8px;
  }
}
.section_container .section.section_03 .thumb_list li.li_col_03 .thumb {
  margin-left: 0;
}
.section_container .section.section_03 .thumb_list li.li_col_03:after {
  position: absolute;
  top: -278px;
  left: 253px;
  width: 534px;
  height: 534px;
  background: url(../img/bg_section_03.png);
  background-size: cover;
  content: '';
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li.li_col_03:after {
    top: 31px;
    right: -100px;
    left: auto;
    width: 181px;
    height: 181px;
    background: url(../img/mobile/bg_section_03.png);
    background-size: cover;
  }
}
.section_container .section.section_03 .thumb_list li .center_txt {
  width: 360px;
  line-height: 50px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_03 .thumb_list li .center_txt {
    width: auto;
    line-height: 29px;
    font-size: 18px;
    white-space: pre-line;
  }
}
.section_container .section.section_04,
.section_container .section.section_05 {
  padding-top: 215px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04,
  .section_container .section.section_05,
  .section_container .section.section_06 {
    padding-top: 0;
  }
}
.section_container .section.section_04 .inner_section,
.section_container .section.section_05 .inner_section,
.section_container .section.section_06 .inner_section {
  width: 1400px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .inner_section,
  .section_container .section.section_05 .inner_section,
  .section_container .section.section_06 .inner_section {
    padding: 70px 20px 0;
  }
}
.section_container .section.section_04 .wrap_board {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board {
    display: block;
    margin-top: 15px;
  }
}
.section_container .section.section_04 .wrap_board .board {
  position: relative;
  width: 685px;
  max-width: 49%;
  clear: both;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board {
    width: 100%;
    max-width: 100%;
  }
  .section_container .section.section_04 .wrap_board .board.board_event {
    margin: 35px 0 2px;
  }
}
.section_container .section.section_04 .wrap_board .board h3 {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid #222;
  font-size: 28px;
  font-weight: bold;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board h3 {
    font-size: 20px;
  }
}
.section_container .section.section_04 .wrap_board .board h3 .btn_more {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 20px;
  color: #555;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board h3 .btn_more {
    font-size: 14px;
  }
}
.section_container .section.section_04 .wrap_board .board h3 .btn_more i {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -61px 0;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board h3 .btn_more i {
    top: -1px;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -82px 0;
    background-size: 300px;
  }
}
.section_container .section.section_04 .wrap_board .board .banner_list {
  height: 304px;
  padding-top: 35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.section_container .section.section_04 .wrap_board .board .banner_list img {
  max-width: 100%;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board .banner_list {
    height: auto !important;
    padding-top: 25px;
  }
  .section_container .section.section_04 .wrap_board .board .banner_list img {
    max-width: 100%;
  }
}
.section_container .section.section_04 .wrap_board .board .banner_list .empty {
  height: 252px;
  line-height: 252px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  font-size: 24px;
  color: #777;
  text-align: center;
  font-weight: 500;
  background: #f7f7f7;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board .banner_list .empty {
    height: 166px;
    line-height: 166px;
    font-size: 16px;
  }
}
.section_container .section.section_04 .wrap_board .board .btn_write {
  float: right;
  width: 72px;
  height: 32px;
  margin-top: 13px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: #f3f4f8;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_04 .wrap_board .board .btn_write {
    position: absolute;
    top: -3px;
    left: 85px;
    width: 56px;
    margin-top: 0;
    font-size: 14px;
  }
}
.section_container .section.section_05 .wrap_ci {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci {
    display: block;
  }
}
.section_container .section.section_05 .wrap_ci .left_area {
  margin-right: 80px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .left_area {
    margin-right: 0;
  }
}
.section_container .section.section_05 .wrap_ci .left_area .banner {
  width: 1012px;
  height: 342px;
  background-image: url(../img/bg_ci.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .left_area .banner {
    width: 355px;
    height: 171px;
    background-image: url(../img/mobile/bg_ci.png);
  }
}
.section_container .section.section_05 .wrap_ci .left_area .bottom_banner {
  display: flex;
  align-items: center;
  padding-left: 252px;
  margin-top: 85px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .left_area .bottom_banner {
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 25px;
  }
}
.section_container .section.section_05 .wrap_ci .left_area .bottom_banner .ci_desc {
  line-height: 39px;
  margin-right: 65px;
  color: #333;
  font-size: 20px;
  white-space: pre-line;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .left_area .bottom_banner .ci_desc {
    max-width: 190px;
    line-height: 25px;
    margin-right: 30px;
    font-size: 15px;
    white-space: normal;
    word-break: keep-all;
  }
}
.section_container .section.section_05 .wrap_ci .left_area .bottom_banner .btn_ci_download {
  width: 184px;
  height: 56px;
  line-height: 56px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: #f3f4f8;
  font-size: 20px;
  color: #002fd9;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .left_area .bottom_banner .btn_ci_download {
    width: 113px;
    height: 52px;
    line-height: 52px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area {
    padding: 0 20px;
    margin-top: 50px;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color {
    display: block;
    max-width: 335px;
    margin: 0 auto;
  }
  .section_container .section.section_05 .wrap_ci .right_area .ci_color:after {
    display: block;
    content: '';
    clear: both;
  }
  .section_container .section.section_05 .wrap_ci .right_area .ci_color li {
    width: 50%;
    float: left;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .figure {
  height: 402px;
  margin-bottom: 33px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .figure {
    height: 201px;
    margin-bottom: 13px;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .figure i {
  display: block;
  margin: 0 auto;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .bottom_area {
  padding-left: 100px;
  font-size: 20px;
  color: #333;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .bottom_area {
    padding: 0 10px 0 0;
    font-size: 15px;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .bottom_area h4 {
  margin-bottom: 7px;
  font-weight: 600;
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .bottom_area .desc {
  line-height: 39px;
  white-space: pre-line;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .bottom_area .desc {
    line-height: 25px;
    white-space: normal;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .yellow .figure i {
  position: relative;
  top: -30px;
  width: 402px;
  height: 402px;
  background-image: url(../img/ci_color_y.png);
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .yellow .figure i {
    top: -15px;
    width: 201px;
    height: 201px;
    background-image: url(../img/mobile/ci_color_y.png);
    background-size: cover;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .blue {
  position: relative;
  left: -88px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .blue {
    left: -3px;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .blue .figure i {
  width: 342px;
  height: 342px;
  background-image: url(../img/ci_color_b.png);
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .blue .figure i {
    top: 0;
    width: 171px;
    height: 171px;
    background-image: url(../img/mobile/ci_color_b.png);
    background-size: cover;
  }
}
.section_container .section.section_05 .wrap_ci .right_area .ci_color .blue .bottom_area {
  padding-left: 40px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_05 .wrap_ci .right_area .ci_color .blue .bottom_area {
    padding-left: 15px;
  }
}
.section_container .section.section_06 {
  padding-top: 215px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 {
    background: #f9fafe;
  }
}
.section_container .section.section_06 .wrap_map {
  height: 560px;
  background: #eeeeee;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .wrap_map {
    height: 320px;
  }
}
.section_container .section.section_06 .map_info_list {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 1576px;
  margin: -80px auto 0;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list {
    flex-direction: column;
    width: auto;
    padding: 0 20px;
    margin: -25px auto 0;
  }
}
.section_container .section.section_06 .map_info_list > li {
  width: 498px;
  height: 304px;
  padding: 50px 40px;
  border: 1px solid #e2e6f9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  background: #fff;
  color: #333;
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list > li {
    width: 100%;
    height: auto;
    padding: 20px 25px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    font-size: 15px;
  }
  .section_container .section.section_06 .map_info_list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.section_container .section.section_06 .map_info_list .info_row:not(:last-child) {
  margin-bottom: 25px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .info_row:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .info_row h4 {
    margin-bottom: 6px;
  }
  .section_container .section.section_06 .map_info_list .info_row .desc {
    line-height: normal;
  }
}
.section_container .section.section_06 .map_info_list .bus_row:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .bus_row:nth-of-type(2) .bus_list {
    flex-direction: column;
  }
  .section_container .section.section_06 .map_info_list .bus_row:nth-of-type(2) .bus_list li:not(:last-child) {
    margin-bottom: 5px;
  }
}
.section_container .section.section_06 .map_info_list h4 {
  margin-bottom: 15px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list h4 {
    margin-bottom: 10px;
  }
}
.section_container .section.section_06 .map_info_list .line {
  display: inline-block;
  line-height: normal;
  padding: 5px 10px;
  margin-right: 10px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  border-radius: 19px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .line {
    padding: 3px 7px;
    font-size: 15px;
  }
}
.section_container .section.section_06 .map_info_list .line.yellow_line {
  background: #eba900;
}
.section_container .section.section_06 .map_info_list .line.blue_line {
  background: #4671e0;
}
.section_container .section.section_06 .map_info_list .line.green_line {
  background: #43c144;
}
.section_container .section.section_06 .map_info_list .bus_list {
  display: flex;
  margin-bottom: 5px;
}
.section_container .section.section_06 .map_info_list .bus_list li .bus_num {
  font-size: 18px;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .bus_list li .bus_num {
    font-size: 15px;
  }
}
.section_container .section.section_06 .map_info_list .bus_list li:not(:last-child) {
  margin-right: 15px;
}
.section_container .section.section_06 .map_info_list .desc {
  line-height: 39px;
  white-space: pre-line;
}
@media only screen and (max-width: 1023px) {
  .section_container .section.section_06 .map_info_list .desc {
    line-height: 25px;
  }
}
.board_list {
  min-height: 304px;
}
@media only screen and (max-width: 1023px) {
  .board_list {
    min-height: auto;
  }
}
.board_list li a {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.board_list li:not(:last-child) a {
  border-bottom: 1px solid #ddd;
}
.board_list li.on a {
  color: #002fd9;
  cursor: pointer;
}
.board_list li.on a .date:after {
  right: -9px;
  width: 18px;
  height: 18px;
  background-image: url(../img/sp_web.png?v=1&CDN=1);
  background-position: -86px 0;
  background-color: transparent;
}
@media only screen and (max-width: 1023px) {
  .board_list li.on a .date:after {
    right: -6px;
    width: 12px;
    height: 12px;
    background-image: url(../img/mobile/sp_mobile.png?v=1&CDN=1);
    background-position: -155px 0;
    background-size: 300px;
  }
}
.board_list li.on a .title {
  font-weight: 600;
}
.board_list li .empty {
  height: 252px;
  line-height: 252px;
  margin-top: 35px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  font-size: 24px;
  color: #777;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_list li .empty {
    height: 166px;
    line-height: 166px;
    margin-top: 25px;
    font-size: 16px;
  }
}
.board_list .date {
  position: relative;
  width: 108px;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .board_list .date {
    width: 75px;
  }
}
.board_list .date:after {
  position: absolute;
  top: 22px;
  right: 0;
  width: 1px;
  height: 18px;
  background: #ccc;
  content: '';
}
@media only screen and (max-width: 1023px) {
  .board_list .date:after {
    top: 18px;
    height: 12px;
  }
}
.board_list .date .day {
  font-size: 38px;
  font-weight: 800;
}
@media only screen and (max-width: 1023px) {
  .board_list .date .day {
    font-size: 28px;
  }
}
.board_list .date .year_month {
  margin-top: -3px;
  font-size: 12px;
  font-weight: bold;
}
.board_list .title {
  display: block;
  width: calc(100% - 108px);
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  font-size: 500;
}
@media only screen and (min-width: 1024px) {
  .board_list .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 1023px) {
  .board_list .title {
    width: calc(100% - 75px);
    line-height: 23px;
    padding: 0 20px;
    font-size: 15px;
  }
}
.floated_event {
  z-index: 9;
  position: fixed;
  bottom: 79px;
  right: 8px;
  width: 152px;
  height: 215px;
  background: url(../img/floated_event_230926.png) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1023px) {
  .floated_event {
    display: none;
    bottom: 70px;
    right: 5px;
    width: 92px;
    height: 135px;
    background: url(../img/mobile/floated_event_230926.png) no-repeat;
    background-size: cover;
  }
}
.floated_event .btn_close {
  position: absolute;
  right: 28px;
  top: 0;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .floated_event .btn_close {
    right: 14px;
    width: 18px;
    height: 18px;
  }
}
.floated_event .btn_link {
  position: absolute;
  left: 17px;
  right: 0;
  bottom: 35px;
  width: 106px;
  height: 150px;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .floated_event .btn_link {
    left: 8px;
    bottom: 17px;
    width: 69px;
    height: 100px;
  }
}
.btn_top {
  z-index: 9;
  display: nofloated_eventne;
  position: fixed;
  right: 31px;
  bottom: 31px;
  width: 60px;
  height: 60px;
  background: url(../img/btn_top.png) no-repeat;
  background-size: cover;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
@media only screen and (max-width: 1023px) {
  .btn_top {
    display: none !important;
    right: 17px;
    bottom: 35px;
    width: 42px;
    height: 42px;
    background: url(../img/mobile/btn_top.png) no-repeat;
    background-size: cover;
  }
}
.sns_list {
  display: flex;
  justify-content: space-between;
  width: 306px;
}
@media only screen and (max-width: 1023px) {
  .sns_list {
    justify-content: start;
    width: auto;
  }
}
.sns_list li:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 1023px) {
  .sns_list li:not(:last-child) {
    margin-right: 15px;
  }
}
.sns_list li a {
  display: block;
  text-indent: -9999px;
  *text-indent: 0;
  *color: transparent !important;
}
.sns_list li a.btn_kk {
  width: 114px;
  height: 45px;
  background-image: url(../img/btn_kk.png);
}
@media only screen and (max-width: 1023px) {
  .sns_list li a.btn_kk {
    width: 110px;
    height: 44px;
    background-image: url(../img/mobile/btn_kk.png);
    background-size: 110px;
  }
}
.sns_list li .navertalk-friend-button button {
  line-height: 45px !important;
  font-size: 15px !important;
}
