/*
==================================================
    CSS File Name - layout.scss
    Last-updated: 2021-06-15

	+1: Common
	+2: Header
	+3: Footer
	+4: Navigation
    +5: Breadcrumb
    +6: Pagination
	+7: Links
	+8: Panel
	+9: Banner

==================================================
*/
/*--------------------------------------------------
    +1: Common
==================================================*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  padding-top: 56px;
}
@media (min-width: 768px) {
  .wrapper {
    min-width: 1240px;
    padding-top: 0;
  }
}

.row {
  margin: 0 -10px;
}
.row .container {
  padding: 0 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
  background-color: #fff;
  line-height: 1;
}
.dropdown dt {
  position: relative;
  padding: 10px 40px 10px 15px;
  font-size: 15px;
  cursor: pointer;
}
.dropdown dt span {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dropdown dt:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 11px;
  height: 6px;
  margin-top: -3px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAGCAYAAAAVMmT4AAAAKUlEQVQYlWMwNjb+z0AEgKsjpAFDHpcGnAahSxB0IkwBsX7BrpCBgQEA5nMRiY/a7lwAAAAASUVORK5CYII=") no-repeat 0 0;
}
.dropdown dd {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2000;
  min-width: 100%;
  max-width: 140%;
  max-height: 216px;
  background-color: #fff;
  display: none;
  overflow: auto;
}
.dropdown li {
  padding: 11px 15px;
  font-size: 14px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dropdown li a {
  display: block;
  margin: -11px -15px;
  padding: 11px 15px;
}
.dropdown li:hover {
  background-color: #f1f1f1;
}
.dropdown.active dd {
  display: block;
}

/*--------------------------------------------------
    +2: Header
==================================================*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 56px;
  background-color: #F5F5F5;
}
@media (min-width: 768px) {
  .header {
    position: static;
    height: 120px;
  }
}
.header .logo {
  width: 250px;
  padding: 14px;
}
@media (min-width: 768px) {
  .header .logo {
    float: left;
    width: auto;
    padding-top: 32px;
  }
}
.header .logo img {
  max-width: 100%;
}
.header .search {
  display: none;
}
@media (min-width: 768px) {
  .header .search {
    display: block;
    float: right;
    padding-top: 45px;
  }
}
.header .search label {
  float: left;
  display: block;
  width: 250px;
  margin-right: 10px;
  padding-left: 32px;
  background: #fff url("../img/icn-search.png") no-repeat 10px center;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
}
.header .search label input {
  display: block;
  width: 100%;
  height: 32px;
  padding: 7px 0;
  border: none;
  box-sizing: border-box;
}
.header .search button {
  padding: 11px 14px;
  background-color: #E69245;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border: none;
}
.navi {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .navi {
    display: none;
  }
}
.navi i {
  position: relative;
  display: block;
  width: 19px;
  height: 3px;
  background: #000;
  transition: transform 0.2s ease;
}
.navi i:before, .navi i:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: #000;
  transition: all 0.2s ease;
}
.navi i:before {
  bottom: 100%;
  margin-bottom: 4px;
}
.navi i:after {
  top: 100%;
  margin-top: 4px;
}
.navi.active i {
  background: transparent;
  transform: rotate(-45deg);
}
.navi.active i:before, .navi.active i:after {
  top: 0;
  background: #fff;
  transform-origin: 50% 50%;
  margin: 0;
}
.navi.active i:after {
  transform: rotate(90deg);
}

/*--------------------------------------------------
	+3: Footer
==================================================*/
.footer {
  background-color: #F5F5F5;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    text-align: left;
  }
}
.footer .container {
  position: relative;
  padding-top: 46px;
  padding-bottom: 46px;
}
.footer h2 {
  margin-bottom: 15px;
}
.footer p {
  font-size: 14px;
  line-height: 1.85;
}
.footer p span {
  display: block;
}
@media (min-width: 768px) {
  .footer p span {
    display: inline;
  }
}
@media (min-width: 768px) {
  .footer ul {
    position: absolute;
    top: 40px;
    right: 0;
  }
}
.footer ul li {
  display: inline-block;
  margin: 0 10px;
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer ul li {
    float: left;
    width: 92px;
    margin-left: 30px;
    padding-top: 0;
  }
}
.footer ul li span {
  display: block;
  width: 100%;
  margin-top: 2px;
  font-size: 14px;
}

/*--------------------------------------------------
    +4: Navigation
==================================================*/
.navigation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  background-color: #e60012;
  overflow: auto;
  display: none;
}
@media (min-width: 768px) {
  .navigation {
    position: static;
    display: block !important;
    overflow: inherit;
  }
}
.navigation .navigation-list {
  padding: 70px 0;
}
@media (min-width: 768px) {
  .navigation .navigation-list {
    padding: 0;
  }
}
.navigation .navigation-list > li {
  position: relative;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .navigation .navigation-list > li {
    float: left;
    width: 11.1%;
    border-bottom: none;
  }
}
.navigation .navigation-list > li > a {
  position: relative;
  display: block;
  padding: 22px;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  background-color: transparent;
}
.navigation .navigation-list > li > a:after {
  content: "";
  position: absolute;
  top: 54px;
  left: 22px;
  width: 6em;
  height: 0;
}
@media (min-width: 768px) {
  .navigation .navigation-list > li > a {
    padding: 22px 0;
    text-align: center;
  }
  .navigation .navigation-list > li > a:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: #F07A82;
  }
  .navigation .navigation-list > li > a:after {
    left: 50%;
    margin-left: -3em;
  }
}
.navigation .navigation-list > li > ul {
  min-width: 100%;
  background: #e60012;
}
@media (min-width: 768px) {
  .navigation .navigation-list > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 500;
    display: none;
  }
}
.navigation .navigation-list > li > ul a {
  display: block;
  padding: 15px 40px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.5s;
}
@media (min-width: 768px) {
  .navigation .navigation-list > li > ul a {
    padding: 15px 10px;
    text-align: center;
  }
}
.navigation .navigation-list > li > ul a:hover {
  background-color: #C00008;
}
.navigation .navigation-list > li:first-child a:before {
  display: none;
}
.navigation .navigation-list > li:hover, .navigation .navigation-list > li.active {
  background-color: #C00008;
  transition: all 0.2s ease-in;
}
.navigation .navigation-list > li:hover a:before, .navigation .navigation-list > li.active a:before {
  display: none;
}
.navigation .navigation-list > li:hover a:after, .navigation .navigation-list > li.active a:after {
  top: 47px;
  width: 4em;
  height: 2px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .navigation .navigation-list > li:hover a:after, .navigation .navigation-list > li.active a:after {
    margin-left: -2em;
  }
}
.navigation .navigation-list > li:hover + li a:before, .navigation .navigation-list > li.active + li a:before {
  display: none;
}
.navigation .navigation-list > li:hover > ul {
  display: block;
}

/*--------------------------------------------------
    +5: Breadcrumb
==================================================*/
.breadcrumb {
  margin-bottom: 10px;
  background-color: #fbfbfb;
  border-bottom: 1px solid #dddddd;
  line-height: 1;
  padding: 14px 0;
}
@media (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 29px;
  }
}
.breadcrumb dl {
  overflow: hidden;
  padding-left: 16px;
  border-left: 5px solid #e60012;
  font-size: 14px;
  color: #020202;
}
.breadcrumb dl dt, .breadcrumb dl dd {
  display: inline-block;
}
.breadcrumb dl dd {
  margin-right: 4px;
}
.breadcrumb dl a {
  color: #020202;
}
.breadcrumb dl a:after {
  content: ">";
  margin-left: 9px;
}
.breadcrumb dl span {
  color: #e60012;
}

/*--------------------------------------------------
    +6: Pagination
==================================================*/
.pagination {
  margin-bottom: 50px;
  padding: 30px 0;
  line-height: 1;
  font-size: 16px;
}
.pagination .total {
  float: left;
  padding: 9px 0;
  color: #999999;
  display: none;
}
@media (min-width: 768px) {
  .pagination .total {
    display: block;
  }
}
.pagination .total span {
  color: #e60012;
}
.pagination .choose {
  float: right;
  display: none;
}
@media (min-width: 768px) {
  .pagination .choose {
    display: block;
  }
}
.pagination .choose .dropdown {
  min-width: 76px;
  margin: 0 5px;
  border: 1px solid #dddddd;
}
.pagination .choose .dropdown dd {
  border: 1px solid #dddddd;
}
.pagination .choose .dropdown dd a {
  color: #020202;
}
.pagination .pager {
  margin: 0 auto;
  text-align: center;
}
.pagination .pager .btn {
  display: inline-block;
  width: 96px;
  padding: 9px 0;
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  cursor: pointer;
  color: #020202;
}
.pagination .pager .btn:hover {
  background-color: #fff9f9;
  border-color: #e60012;
  color: #e60012;
}
.pagination .pager .btn-prev,
.pagination .pager .btn-next {
  position: relative;
}
.pagination .pager .btn-prev:after,
.pagination .pager .btn-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  width: 1px;
  height: 16px;
  background-color: #dddddd;
}
.pagination .pager .btn-prev {
  margin-left: 26px;
}
.pagination .pager .btn-prev:after {
  right: 100%;
  margin-right: 15px;
}
.pagination .pager .btn-next {
  margin-right: 26px;
}
.pagination .pager .btn-next:after {
  left: 100%;
  margin-left: 15px;
}
.pagination .pager .current {
  display: inline-block;
  padding: 9px 21px;
  font-weight: bold;
  color: #999999;
}
.pagination .pager .current span {
  color: #e60012;
}
.pagination .pager .btn-first,
.pagination .pager .btn-last {
  display: none;
}
@media (min-width: 768px) {
  .pagination .pager .btn-first,
.pagination .pager .btn-last {
    display: inline-block;
  }
}
.pagination:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

/*--------------------------------------------------
	+7: Links
==================================================*/
.links {
  display: none;
  background: #e60012;
}
@media (min-width: 768px) {
  .links {
    display: block;
  }
}
.links .link {
  padding: 12px 0;
}
.links .link strong {
  float: left;
  display: block;
  margin: 7px 0 8px;
  padding-left: 20px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAWCAYAAAAILVbQAAAAYElEQVQYlYWP0Q0AIQhDi6f7z+CkGIg1qFxs4s+jlCqq2nGoAmgTKUd1PpNwGJ1LdMoJU2eLR2wrHqI0g3hCa2DZK5PgqrTBLztE+Pt3j3iuXz29X8ykk4MU+mrZfgRgAHzqE0JX3cAbAAAAAElFTkSuQmCC") no-repeat 0 50%;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  /*&:before {
      content: '';
      float: left;
      display: block;
      width: 5px;
      height: 22px;
      margin-right: 15px;
      background-image: -moz-linear-gradient( 90deg, rgb(254,243,244) 0%, rgb(246,161,168) 100%);
      background-image: -webkit-linear-gradient( 90deg, rgb(254,243,244) 0%, rgb(246,161,168) 100%);
      background-image: -ms-linear-gradient( 90deg, rgb(254,243,244) 0%, rgb(246,161,168) 100%);
  }*/
}
.links .link label {
  display: block;
}
.links .link .dropdown {
  float: left;
  margin-left: 20px;
}
.links .link.link-01 {
  float: left;
}
.links .link.link-01 .dropdown {
  width: 295px;
}
.links .link.link-02 {
  float: right;
}
.links .link.link-02 .dropdown {
  width: 240px;
}

/*--------------------------------------------------
	+8: panel
==================================================*/
.panel {
  width: 100%;
}
.panel .panel-head {
  background-color: #fbfbfb;
  height: 42px;
}
.panel .panel-head .panel-title {
  float: left;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: #020202;
}
.panel .panel-head .panel-slot-head {
  float: right;
}
.panel .panel-head .panel-more {
  display: inline-block;
  margin: 13px 13px 0 0;
  padding-left: 17px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAIklEQVQImWNABmlpaf+R+UwosmgAryQjulE4AZXsZGBgAAA2lgadou8mhQAAAABJRU5ErkJggg==") no-repeat 0 3px;
  font-size: 14px;
  line-height: 1;
  color: #666666;
}
.panel .panel-head .panel-more:hover {
  background: url("data:image/gif;base64,R0lGODlhBwAHAPAAAOYAEgAAACH5BAEAAAEALAAAAAAHAAcAAAIMjGEZqJsAI3NtvlQAADs=") no-repeat 0 3px;
  color: #e60012;
}
.panel .panel-head.panel-head-01 {
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 2px solid #e60012;
}
.panel .panel-head.panel-head-01 .panel-title {
  position: relative;
  margin-top: -1px;
  padding: 11px 0 11px 16px;
  background: #e60012;
  color: #fff;
}
.panel .panel-head.panel-head-01 .panel-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 45px;
  height: 42px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAAqCAMAAAAQwSIQAAAAZlBMVEUAAADmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABLmABK6SYdiAAAAIXRSTlMA/cMQQDL038ykVEcXB/jt5uDRvWNYPAGsqZqQiHZOLQypg9RzAAAAmElEQVQ4y5XKtwHCMAAAQSQ5B3A2GX7/JSlYwH/1ncKljPUr60+H8FfU2X58A1VrNlw7sxk2szmvZhMWswlvsylysymT2dzUZlX7kszmrnbIzWZWm1btSm1ataPaZGrParOpHXezadQue7N5qh1ys5l6s3moHRqzKT5mM3ZmMyWziV+ziclsqs5sxtxszovZUCezGRqzIWY/JjeJqAsgJcUAAAAASUVORK5CYII=") no-repeat 0 0;
}
.panel .panel-head.panel-head-02 {
  border: 1px solid #dddddd;
  border-top: 2px solid #e60012;
}
.panel .panel-head.panel-head-02 .panel-title {
  padding: 10px 4px 10px 13px;
}
.panel .panel-head.panel-head-02 .panel-title span {
  color: #e60012;
}
.panel .panel-head.panel-head-03 {
  border: 1px solid #dddddd;
  padding: 10px 4px 10px 0;
}
.panel .panel-head.panel-head-03 .panel-title span {
  display: inline-block;
  padding-left: 11px;
  border-left: 5px solid #e60012;
}

.panel-list li {
  padding: 12px 0;
  border-bottom: 1px dashed #dddddd;
  overflow: hidden;
  line-height: 1;
  /*background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAS0lEQVQImW3NsQ1AYABE4Y8FiAnEDnZRMCC7MINK/7cquU7Ele8u76pLBw1m3NhQUgQeGLLAibHG8oJJjynFb6JqsX9V7/Moc76iPHAWDwh64oYpAAAAAElFTkSuQmCC") no-repeat 0 50%;*/
}
@media (min-width: 768px) {
  .panel-list li {
    padding: 24px 0;
  }
}
@media (min-width: 768px) {
  .panel-list li:before {
    content: "";
    position: relative;
    bottom: 3px;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 10px;
    background-color: #e60012;
    border-radius: 50%;
  }
}
.panel-list li a {
  font-size: 16px;
  color: #020202;
}
@media (min-width: 768px) {
  .panel-list li a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
.panel-list li a:hover {
  color: #e60012;
}
.panel-list li span {
  display: block;
  padding-top: 10px;
  font-size: 14px;
  color: #666666;
}
@media (min-width: 768px) {
  .panel-list li span {
    float: right;
    padding-top: 0;
  }
}

/*--------------------------------------------------
	+9: Banner
==================================================*/
.banner {
  position: relative;
  width: 100%;
  height: 90px;
  background: #f5f5f5 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAAA/CAMAAABq3U6/AAAAbFBMVEUAAADd3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3bzoEHAAAAI3RSTlMA9eefhIDWjHpADd2ak29sRSolHhf86sO4ta6liV5aVzoxCCoQamwAAADwSURBVFjD7dfHDoMwEEVR00vokN7z/v8fwwIFGEMkxl6k+C5ZHCHZHtkCWjLMtzGCmWF+hAltANtIjcmBLhXGQR+fcTGMzWAck1kRpuYxIPkspgCNxaR6GE8P0+hhBEgOjwkIo2f7HTmM7Ag2E/eIpTRvdt3ns+r0i7w0r4RUnV0eqkO06U6tp8Ts8UqBwbA7l1ljVMVjApB4DKQ4DOTs5YyHicrFDCaTGY6CZJY5oM1345HiYiaJoatqlb0SYS53ksGwTdEpJ8wnbJkBzXfCLMG7QmfMxK3CyaJ/o+d6fdXB2DfoYKzPenoYxjB/zzwBUph7DPKcWekAAAAASUVORK5CYII=") no-repeat 50% 50%;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banner {
    height: 240px;
  }
}
.banner .bd {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  overflow: hidden;
}
.banner .bd ul {
  width: 100% !important;
}
.banner .bd li {
  position: relative;
  width: 100% !important;
  height: 90px;
  overflow: hidden;
  background: no-repeat 50% 50%;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .banner .bd li {
    height: 240px;
  }
}
.banner .bd li a {
  display: block;
  height: 240px;
}

.content-empty {
  margin: 70px 0;
  padding-top: 70px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEUAAAA6CAMAAADRJ2QPAAAAYFBMVEUAAADd3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d0HdZbOAAAAH3RSTlMA+eMcwjvJJxDyv7NtZ2It3Ip0ZVBFBOnQtqKYkVQlxRthUQAAARFJREFUSMft1MtugzAQQFGbAKE8St599/7/X9bqoqM4rpMZK+2Gu7OEj4aIjLvaGnCK7qmsoNLeGW5SjrssUsEtChwyyCOh64o8lW4klFEEybYDfF4RJP9SPlI2SiS0jx6bz46nPCJNhM5maX8OTYTkX6p36TrFhzy07tce3NL/BV4V6aWgLjWKvlUScYqSF2bgoN7qHxnZPMwemJXKCXjPuMZhXoHOWZi2ZBT5xAoRuSgH2/JpgXUkFg1zBCqj8gJMpaPI5S3Qm5U3YBCtbJgN0Dh7HeC/rdpflvjBa/xlPSGn2GQk+xNljJDGpBCPYlHi/1ZtVKidtMWqIKvriQKF57H5bKYa7Iq0KIuyKHdXvgBOWcofV5rqSgAAAABJRU5ErkJggg==") no-repeat 50% 0;
  text-align: center;
  font-size: 16px;
  color: #999999;
}

/*# sourceMappingURL=layout.css.map */
