@charset "UTF-8";
/* Reset
------------------------------------ */
html, body, div, span,
p, blockquote,
del, dfn, em, img, small, strong, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

input[type=submit], input[stype=text], input[type=button] {
  border-radius: 0;
  -webkit-appearance: none;
}

* {
  box-sizing: border-box;
}

/* baseStyle
------------------------------- */
html, body {
  width: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: #fff;
  color: #363636;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4em;
  line-height: 1.5;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #4286c7;
  text-decoration: none;
}

/* layout
------------------------------ */
.l-wrap {
  padding-top: 60px;
  width: 100%;
  background: #fff;
}

.l-content {
  padding: 15px;
  width: 100%;
  background: #f4f4f4;
}

@media screen and (min-width: 768px) {
  .l-content {
    padding: 20px 22px;
  }
}

@media print, screen and (min-width: 960px) {
  .l-wrap {
    padding-top: 90px;
  }
  .l-content {
    padding: 30px 0;
  }
}

/* header
------------------------------ */
.l-glb-header,
.glb-header-inner {
  width: 100%;
  min-width: 320px;
  background: #fff;
}

.l-glb-header {
  position: fixed;
  top: 0;
  z-index: 10;
}

.glb-header-logo img {
  height: 20px;
}

.glb-header-logo img.anniversary {
  height: 34px;
  width: auto;
  margin-left: -5px;
}

.l-mobile-header {
  width: 100%;
  position: relative;
}

.nav-wrap .nav-col.is-current a {
  color: #4286c7;
}

.nav-wrap .nav-col a:hover {
  color: #4286c7;
}

@media print, screen and (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .glb-header-inner {
    max-width: 1280px;
    height: 90px;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
  }
  .l-mobile-header {
    width: 180px;
    position: absolute;
    top: 22px;
    left: 20px;
  }
  .l-nav {
    padding-top: 35px;
    height: 100%;
  }
  .l-nav .btn-wrap {
    width: 120px;
    position: absolute;
    top: 30px;
    right: 20px;
  }
  .nav-wrap {
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .nav-wrap .nav-col {
    padding: 0 15px;
    height: 100%;
  }
  .nav-wrap .nav-col:first-child {
    padding-left: 0;
  }
  .nav-wrap .nav-col.is-current.has-subnav {
    background: url(/img/icon_glbnav_arrow.png) no-repeat bottom center;
  }
  .nav-wrap a {
    display: inline;
    color: #363636;
  }
  .nav-btn {
    font-size: 1.2rem;
  }
}


@media screen and (max-width: 959px) {
  .is-open-menu {
    position: fixed;
    top: 0;
  }
  .nav-toggle {
    width: 20px;
    height: 16px;
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
    z-index: 101;
  }
  .nav-toggle > div {
    position: relative;
  }
  .nav-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    background: #4286c7;
    transition: .35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 0;
  }
  .nav-toggle span:nth-child(2) {
    top: 7px;
  }
  .nav-toggle span:nth-child(3) {
    top: 14px;
  }
  .l-mobile-header {
    height: 60px;
    background: #fff;
    z-index: 1;
    position: relative;
  }
  .glb-header-logo {
    padding: 10px 15px 15px;
  }
  .l-nav {
    padding-bottom: 10px;
    width: 100%;
    display: none;
    position: absolute;
    top: -500px;
    background: #fff;
    text-align: center;
    transition: .5s ease-in-out;
  }
  .nav-wrap {
    display: flex;
    flex-flow: column wrap;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .nav-wrap .nav-col {
    width: 100%;
  }
  .nav-wrap .nav-col a {
    padding: 10px;
    color: #363636;
  }
  .is-open .nav-toggle span:nth-child(1) {
    top: 7px;
    transform: rotate(315deg);
  }
  .is-open .nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .is-open .nav-toggle span:nth-child(3) {
    top: 7px;
    transform: rotate(-315deg);
  }
  .is-open .l-nav {
    display: block;
    position: fixed;
    top: 60px;
    height: calc(100vh - 60px);
  }
  .is-open .l-nav .btn-wrap {
    justify-content: center;
  }
}

/* globalFooter
------------------------------ */
.l-glb-footer {
  width: 100%;
  background: #4286c7;
  font-size: 1.2rem;
}

.l-glb-footer a {
  color: #363636;
}

.glb-footer-line {
  padding: 0 15px;
  width: 100%;
  height: 40px;
  color: #fff;
  text-align: right;
  line-height: 40px;
}

.pagetop img {
  margin-right: 5px;
  width: 15px;
  display: inline-block;
  vertical-align: middle;
}

.pagetop:link, .pagetop:visited {
  color: #fff;
}

.glb-footer-map {
  width: 100%;
  height: 135px;
}

.copy-mark {
    font-family: Verdana, Roboto , "Droid Sans" ,sans-serif;
}

@media print, screen and (min-width: 600px) {
  .copy-mark {
      font-family: inherit;
  }
}

@media print, screen and (min-width: 768px) {
  .glb-footer-map {
    height: 350px;
  }
}

.glb-footer-aside {
  padding: 5px 0 25px;
  background: #f4f4f4;
  text-align: center;
}

.glb-footer-aside li {
  padding: 20px 15px 0;
  display: inline-block;
}

.footer-aside-sns span,
.nav-list-sns span {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.footer-aside-sns img,
.nav-list-sns img {
  margin-right: 6px;
  vertical-align: bottom;
}

.glb-footer-copy {
  padding: 20px 0;
  display: block;
  background: #fff;
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
}

.glb-footer-copy img {
  margin-bottom: 20px;
}

.glb-footer-nav {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .footer-aside-sns,
  .glb-footer-copy img {
    display: none;
  }
  .glb-footer-aside,
  .glb-footer-copy {
    padding: 0;
    background: none;
    color: #fff;
  }
  .glb-footer-aside a,
  .glb-footer-copy a {
    color: #fff;
  }
  .glb-footer-copy {
  padding-top: 20px;
    padding-bottom: 20px;
  }
  .glb-footer-nav {
    padding: 25px 15px;
    display: block;
    background: #f4f4f4;
  }
  .footer-nav-list {
    padding-top: 60px;
    display: flex;
    background: url(/img/logo_main_mapion.png) no-repeat center top;
    background-size: 102px auto;
  }
  .footer-nav-list ul {
    width: 20%;
  }
  .footer-nav-list ul li {
    line-height: 1;
  }
  .footer-nav-list li + li {
    margin-top: 12px;
  }
  .footer-nav-list .nav-list-parent-wrap + li {
    margin-top: 15px;
  }
  .nav-list-sns {
    font-weight: bold;
  }
  .nav-list-sns .nav-list {
    padding: 0;
    background: none;
  }
  .nav-list-sns img {
    vertical-align: middle;
  }
  .nav-list,
  .nav-list-parent {
    padding-left: 15px;
  }
  .nav-list {
    background: url(/img/icon_footer-nav_arrow02.png) no-repeat 5px 4px;
  }
  .nav-list-parent {
    padding-left: 15px;
    background: url(/img/icon_footer-nav_arrow.png) no-repeat left center;
    font-weight: bold;
  }
}

@media print, screen and (min-width: 960px) {
  .glb-footer-line {
    margin: auto;
    padding: 0;
    width: 940px;
  }
  .footer-aside-list a:hover {
    color: #d6d6d6;
  }
  .footer-nav-list {
    margin: 0 auto;
    padding-top: 0;
    padding-left: 170px;
    width: 940px;
    background: url(/img/logo_main_mapion.png) no-repeat left top;
    background-size: 102px auto;
  }
  .footer-nav-list ul:nth-of-type(odd) {
    width: 180px;
  }
  .footer-nav-list ul:nth-of-type(even) {
    width: 130px;
  }
  .footer-nav-list ul a:hover {
    color: #4286c7;
  }
}

/* parts
------------------------------ */
.link {
  width: 100%;
  height: 100%;
  display: block;
}

.link-arrow {
  padding-right: 10px;
  display: inline-block;
  background: url(/release/img/icon_link_arrow.png) no-repeat 100% 50%;
  line-height: 1;
}

.link-arrow:hover {
  text-decoration: none;
}

@media print, screen and (min-width: 960px) {
  .link-arrow:hover {
    text-decoration: underline;
  }
}

.inlineblock {
  display: inline-block;
}

.l-content-header {
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-content-header {
    padding-bottom: 40px;
  }
}

@media print, screen and (min-width: 960px) {
  .l-content-header {
    padding-bottom: 45px;
  }
}

.l-glb-header.is-open + .l-wrap .content-header-nav {
  z-index: 1;
}

.content-header-nav {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  background: #838383;
  text-align: left;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 10;
}

.content-header-nav li {
  width: 50%;
  height: 45px;
  border-bottom: 1px solid #646464;
  line-height: 45px;
}

.content-header-nav li.header-nav-col01 {
  width: 100%;
  text-align: center;
}

.content-header-nav li.header-nav-col02 {
  width: 50%;
  text-align: center;
}

.content-header-nav li.header-nav-col03 {
  width: 33%;
  text-align: center;
}

.content-header-nav a {
  padding-left: 20px;
  height: 100%;
  color: #fff;
}

.content-header-nav span {
  padding-left: 10px;
  height: 100%;
  display: inline-block;
}

.content-header-nav .is-current {
  background: url(/img/icon_content-nav_arrow.png) no-repeat left center;
  background-size: 4px auto;
}

@media print, screen and (min-width: 768px) {
  .content-header-nav {
    height: 36px;
    justify-content: center;
    top: 60px;
    left: 0;
    background: rgba(54, 54, 54, 0.7);
  }
  .content-header-nav li {
    padding: 0 20px;
    width: auto;
    height: 100%;
    font-size: 1.3rem;
    line-height: 38px;
  }
  .content-header-nav li.header-nav-col01, .content-header-nav li.header-nav-col02, .content-header-nav li.header-nav-col03 {
    width: auto;
  }
  .content-header-nav li.is-border {
    border-bottom: none;
  }
  .content-header-nav a {
    padding: 0;
  }
}

@media print, screen and (min-width: 960px) {
  .content-header-nav {
    top: 90px;
  }
}

.content-header-ttl {
  padding-top: 25px;
  font-weight: normal;
  font-size: 2.1rem;
  line-height: 1;
}

@media screen and (min-width: 544px) and (max-width: 767px) {
  .content-header-ttl {
    font-size: 4.375vw;
  }
}

@media print, screen and (min-width: 768px) {
  .content-header-ttl {
    font-size: 4.2rem;
  }
}

.content-header-copy {
  margin-top: 20px;
  display: block;
}

.content-header-lead {
  margin-top: 15px;
  padding: 0 15px;
  font-size: 1.2rem;
}

@media screen and (max-width: 543px) {
  .content-header-lead {
    text-align: left;
  }
}

.content-header-image {
  height: 90px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 90px;
  line-height: 0;
}

.content-header-image.biz {
  background-image: url(/img/bg_content-header_biz.jpg);
}

.content-header-image.consumer {
  background-image: url(/img/bg_content-header_consumer.jpg);
}

.content-header-image.company {
  position: relative;
  top: 90px;
  background-image: url(/img/bg_content-header_company.jpg);
}

@media screen and (max-width: 543px) {
  .content-header-image.company {
    background-position: -253px center;
  }
}

.content-header-image.company + .content-header-ttl {
  position: relative;
  top: 90px;
  margin-bottom: 90px;
}

.content-header-image.privacy {
  background-image: url(/img/bg_content-header_company.jpg);
}

@media screen and (max-width: 543px) {
  .content-header-image.privacy {
    background-position: -253px center;
  }
}

.content-header-image.recruit {
  background-image: url(/img/bg_content-header_recruit.jpg);
}

.content-header-image.news {
  position: relative;
  top: 90px;
  background-image: url(/img/bg_content-header_news.jpg);
}

.content-header-image.news + .content-header-ttl {
  position: relative;
  top: 90px;
  margin-bottom: 90px;
}

@media print, screen and (min-width: 768px) {
  .content-header-ttl {
    padding-top: 30px;
  }
  .content-header-copy {
    margin-top: 30px;
    font-size: 2.0rem;
  }
  .content-header-lead {
    margin-top: 20px;
    padding: 0;
    font-size: 1.6rem;
  }
  .content-header-image {
    height: 160px;
    background-size: auto 160px;
  }
  .content-header-image.company {
    position: static;
    top: auto;
    background-position: -502px center;
  }
  .content-header-image.company + .content-header-ttl {
    position: static;
    top: auto;
    margin-bottom: auto;
  }
  .content-header-image.news {
    position: static;
    top: auto;
  }
  .content-header-image.news + .content-header-ttl {
    position: static;
    top: auto;
    margin-bottom: auto;
  }
}

@media print, screen and (min-width: 960px) {
  .content-header-ttl {
    padding-top: 40px;
  }
  .content-header-image {
    height: 180px;
    background-size: auto 180px;
  }
  .content-header-image.company {
    background-position: center center;
  }
}

.is-onlypc {
  display: none;
}

.is-break {
  display: block;
}

@media print, screen and (min-width: 960px) {
  .is-onlypc-lg {
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .is-onlypc {
    display: block;
  }
  .is-break {
    display: inline;
  }
}

.box {
  padding-bottom: 30px;
  background: #fff;
}

.box ~ .box {
  margin-top: 15px;
}

.box-ttl {
  margin: 0 auto;
  padding: 8px 1.0rem;
  width: auto;
  min-width: 200px;
  display: table;
  background: #646464;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
}

.box-inner {
  padding: 30px 10px 0;
}

.box-inner.site-policy {
  padding-top: 40px;
}

@media screen and (max-width: 959px) {
  .box-inner.site-policy {
    padding-top: 25px;
  }
}

.box-ttl-sub {
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .box {
    padding-bottom: 40px;
  }
  .box-ttl {
    padding: 10px 1.0rem;
    min-width: 300px;
    font-size: 2.0rem;
  }
  .box-inner {
    padding: 30px 15px 0;
  }
}

@media print, screen and (min-width: 960px) {
  .box {
    margin: 0 auto;
    padding-bottom: 60px;
    width: 940px;
  }
  .box ~ .box {
    margin-top: 30px;
  }
  .box-inner {
    padding: 60px 70px 0;
  }
}

.row {
  display: flex;
  flex-flow: column wrap;
}

.row-col {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .row {
    flex-flow: row wrap;
  }
  .row-col {
    width: auto;
  }
}

.btn {
  padding: 0 15px;
  height: 30px;
  border-width: 2px;
  border-style: solid;
  border-radius: 14px;
  text-align: center;
  line-height: 26px;
}

.btn.def {
  width: 180px;
  border-color: #4286c7;
  background: #fff;
  color: #4286c7;
}

.btn.staff {
  width: 100%;
  border-color: #7a95af;
  color: #7a95af;
  font-size: 1.2rem;
}

.btn.twi span, .btn.fb span {
  display: inline-block;
  background-position: left center;
  background-repeat: no-repeat;
}

.btn.twi {
  background: #1da1f2;
  color: #fff;
  border-color: #1da1f2;
}

.btn.twi span {
  padding-left: 23px;
  background-image: url(/img/icon_btn_twitter.png);
  background-size: 18px auto;
}

@media print, screen and (min-width: 768px) {
  .btn.twi span {
    padding-left: 30px;
    background-size: 20px auto;
  }
}

.btn.fb {
  padding: 0;
  background: #3664a2;
  color: #fff;
  border-color: #3664a2;
}

.btn.fb span {
  padding-left: 18px;
  background-image: url(/img/icon_btn_fb.png);
  background-size: 13px auto;
}

@media print, screen and (min-width: 768px) {
  .btn.fb span {
    padding-left: 25px;
    background-size: 16px auto;
  }
}

@media print, screen and (min-width: 960px) {
  .btn.def:hover {
    background: #4286c7;
    color: #fff;
  }
  .btn.staff {
    border-color: #fff;
    color: #fff;
  }
}

.btn-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.btn-wrap.center {
  justify-content: center;
}

.btn-wrap.right {
  justify-content: flex-end;
}

/* Top
------------------------------ */
.box-top {
  padding-bottom: 30px;
}

.box-top.odd {
  background: #f4f4f4;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .box-top.odd {
    padding-bottom: 15px;
  }
}

.box-top-ttl {
  padding: 30px 0 10px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 2.0rem;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 544px) and (max-width: 959px) {
  .box-top-ttl {
    font-size: 3.54167vw;
  }
}

@media print, screen and (min-width: 960px) {
  .box-top-ttl {
    margin: 0 auto;
    width: 960px;
    font-size: 3.4rem;
  }
}

@media print, screen and (min-width: 960px) {
  .box-top-inner {
    margin: 0 auto;
    width: 940px;
  }
}

.slider-wrap {
  padding-bottom: 25px;
  overflow: hidden;
}

.slider-wrap .slick-prev, .slider-wrap .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
  margin-top: -20px;
}

.slider-wrap .slick-slider {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}

.slider-wrap .slick-slider.slick-initialized {
  opacity: 1;
}

.slider-wrap .slick-prev {
  left: 50%;
  transform: translateX(-480px);
}

@media screen and (max-width: 959px) {
  .slider-wrap .slick-prev {
    left: 0;
    transform: none;
  }
}

.slider-wrap .slick-next {
  right: 50%;
  transform: translateX(480px);
}

@media screen and (max-width: 959px) {
  .slider-wrap .slick-next {
    right: 0;
    transform: none;
  }
}

.slider-wrap .slick-prev:before, .slider-wrap .slick-next:before {
  font-size: 40px;
}

.slider-wrap .slick-list {
  margin: 0 auto;
}

@media screen and (max-width: 543px) {
  .slider-wrap .slick-list {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrap .slick-list {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .slider-wrap .slick-list {
    width: 100%;
    overflow: visible;
  }
}

@media print, screen and (min-width: 1010px) {
  .slider-wrap .slick-list {
    width: 1010px;
    overflow: visible;
  }
}

.slick-slide {
  /*タブレットとpc画像指定*/
}

.slick-slide span {
  display: none;
}

@media screen and (max-width: 767px) {
  .slick-slide {
    width: 100%;
    min-width: 320px;
  }
  .slick-slide div, .slick-slide a {
    width: 100%;
    height: 0;
    padding-top: 65%;
    display: block;
  }
  .slick-slide.mainimage-01 a {
    background: url(/img/slide_01.jpg) no-repeat center center;
    background-size: 100% auto;
  }
  .slick-slide.mainimage-02 a {
    background: url(/img/slide_02.jpg) no-repeat center center;
    background-size: 100% auto;
  }
  .slick-slide.mainimage-03 a {
    background: url(/img/slide_03.jpg) no-repeat center center;
    background-size: 100% auto;
  }
  .slick-slide.mainimage-04 a {
    background: url(/img/slide_04.jpg) no-repeat center center;
    background-size: 100% auto;
  }
  .slick-slide.mainimage-05 a {
    background: url(/img/slide_05.jpg) no-repeat center center;
    background-size: 100% auto;
  }
}

@media screen and (min-width: 768px) {
  .slick-slide {
    width: 100%;
    height: 400px;
  }
  .slick-slide div, .slick-slide a {
    width: 100%;
    height: 100%;
    display: block;
  }
}

@media screen and (min-width: 960px) and (max-width: 1009px) {
  .slick-slide {
    width: auto;
    height: 400px;
  }
  .slick-slide div, .slick-slide a {
    width: 960px;
    margin: 0 auto;
    display: block;
  }
}

@media print, screen and (min-width: 1010px) {
  .slick-slide {
    width: auto;
    height: 400px;
  }
  .slick-slide div, .slick-slide a {
    width: 960px;
    height: 100%;
    margin: 0 25px;
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .slick-slide.mainimage-01 a {
    background: url(/img/slide_01_pc.jpg) no-repeat center center;
  }
  .slick-slide.mainimage-02 a {
    background: url(/img/slide_02_pc.jpg) no-repeat center center;
  }
  .slick-slide.mainimage-03 a {
    background: url(/img/slide_03_pc.jpg) no-repeat center center;
  }
  .slick-slide.mainimage-04 a {
    background: url(/img/slide_04_pc.jpg) no-repeat center center;
  }
  .slick-slide.mainimage-05 a {
    background: url(/img/slide_05_pc.jpg) no-repeat center center;
  }
}

.slick-dots {
  bottom: -17px;
}

.slick-dots li {
  width: 60px;
  height: 6px;
  margin: 0 8px;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 3px;
  background: #d6d6d6;
}

.slick-dots li button::before {
  content: none;
}

.slick-dots li.slick-active button {
  background: #4286c7;
}

@media screen and (max-width: 543px) {
  .slick-dots li {
    width: 15%;
    height: 6px;
    margin: 0 1.5%;
  }
}

.company-smry {
  width: auto;
  max-width: 960px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: stretch;
  margin: 0 auto;
  padding-top: 30px;
}

@media screen and (max-width: 959px) {
  .company-smry {
    margin: 0 15px;
    padding-top: 15px;
  }
}

@media screen and (max-width: 543px) {
  .company-smry {
    flex-flow: column wrap;
    padding-top: 30px;
  }
}

.company-smry li {
  background: #fff;
}

.company-smry li a figcaption p {
  color: #363636;
}

.company-smry li .company-smry-fig img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .company-smry li {
    width: calc((100% - (15px * 2)) / 3);
    overflow: hidden;
  }
}

@media screen and (max-width: 543px) {
  .company-smry li {
    width: 100%;
    margin-bottom: 15px;
  }
  .company-smry li a {
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
  }
  .company-smry li:last-child {
    margin-bottom: 0;
  }
  .company-smry li.company-smry-business .company-smry-ttl span, .company-smry li.company-smry-consumer .company-smry-ttl span {
    width: 3em;
  }
  .company-smry li.company-smry-company .company-smry-ttl span {
    width: 2em;
  }
  .company-smry li .company-smry-fig {
    width: 65%;
    padding: 1rem;
  }
  .company-smry li .company-smry-fig figcaption {
    height: calc((6em * 1.5));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
  }
  .company-smry li .company-smry-fig img {
    display: none;
  }
  .company-smry li .btn-wrap.center {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(/img/icon_arrow.png) no-repeat center center;
    background-size: 11px auto;
  }
  .company-smry li .btn-wrap.center .btn.def {
    display: none;
  }
}

@media print, screen and (min-width: 544px) {
  .company-smry li {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .company-smry li a {
    position: relative;
    padding-bottom: 5rem;
    display: block;
  }
  .company-smry li .company-smry-fig figcaption {
    padding: 1.5rem 1rem;
  }
  .company-smry li .btn-wrap.center {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
    width: 90%;
  }
}

@media print, screen and (min-width: 960px) {
  .company-smry li {
    width: 32.2%;
  }
  .company-smry li a:hover .def {
    background: #4286c7;
    color: #fff;
  }
}

.company-smry li .company-smry-ttl {
  background: #4286c7;
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 543px) {
  .company-smry li .company-smry-ttl {
    width: 25%;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 544px) {
  .company-smry li .company-smry-ttl {
    padding: 10px 0;
    text-align: center;
  }
}

.headline-wrap .btn-wrap {
  padding-top: 5px;
}

.headline {
  margin-top: 0px;
}

.headline li {
  position: relative;
}

.headline li a.headline-link {
  padding: 0 15px 10px;
  position: relative;
}

.headline li + li {
  border-top: 1px dotted #d9d9d9;
}

.headline li + li a.headline-link {
  padding-top: 10px;
}

.headline-link + .headline-link {
  margin-top: 10px;
}

.headline-link {
  overflow: hidden;
}

.headline-thumb-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  border: 1px solid #c6c6c6;
  overflow: hidden;
  background: #fff;
}

.headline-thumb {
  width: 100%;
  height: auto;
  max-width: 100%;
/*  visibility: hidden;*/
}

.headline-detail {
  padding: 0 0 0 10px;
  width: calc(100% - 80px);
  float: left;
  font-size: 1.2rem;
  overflow: hidden;
}

.headline-detail .link-arrow {
  width: 70px;
  margin: 10px 0 0 auto;
  display: block;
}

.headline-label, .headline-date {
  font-size: 1.1rem;
}

a.headline-label {
  color: #fff;
}

.headline-label {
  width: 120px;
  height: 22px;
  display: block;
  border-radius: 2px;
  background: #4286c7;
  color: #fff;
  text-align: center;
  line-height: 22px;
}

@media screen and (max-width: 543px) {
  .headline-label {
    width: 140px;
  }
}

.headline-date {
  margin-top: 10px;
  display: block;
  color: #969696;
  line-height: 1;
}

.headline-text {
  margin-top: -4px;
  padding-top: 10px;
  color: #363636;
}

@media print, screen and (min-width: 768px) {
  .headline li a.headline-link {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .headline li + li a.headline-link {
    padding-top: 20px;
  }
  .headline-thumb-wrap {
    width: 120px;
    height: 120px;
  }
  .headline-detail {
    padding: 0 0 0 20px;
    width: calc(100% - 120px);
    font-size: 1.4rem;
  }
  .headline-detail .link-arrow {
    width: 80px;
    margin: 10px auto 0 0;
    display: block;
  }
  .headline-label, .headline-date {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 960px) {
  .headline li {
    padding-right: 0;
    padding-left: 0;
  }
  .headline li a.headline-link:hover {
    background: #f4fafe;
  }
  .headline li a.headline-link:hover .link-arrow {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .headline {
    margin-top: 0;
  }
  .headline li:first-child a {
    padding-top: 20px;
  }
}

.service-smry-wrap {
  margin: 15px 15px 0;
  padding-bottom: 30px;
  background: #fff;
}

.service-smry {
  padding: 20px 15px 30px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: baseline;
}

.service-smry-unit {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .service-smry-unit {
    width: 50%;
  }
  .service-smry-unit:nth-of-type(n+3) {
    margin-top: 25px;
  }
  .smry-unit-image {
    padding-top: 88px;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .smry-unit-image.biz03, .smry-unit-image.biz04 {
    padding-top: 80px;
  }
  .smry-unit-image.biz01 {
    background-image: url(/img/img_top_biz01.png);
    background-size: 81px auto;
  }
  .smry-unit-image.biz02 {
    background-image: url(/img/img_top_biz02.png);
    background-size: 78px auto;
  }
  .smry-unit-image.biz03 {
    background-image: url(/img/img_top_biz03.png);
    background-size: 77px auto;
  }
  .smry-unit-image.biz04 {
    background-image: url(/img/img_top_biz04.png);
    background-size: 54px auto;
  }
  .smry-unit-image.consumer01 {
    background-image: url(/img/img_top_consumer01.png);
    background-size: 120px auto;
  }
  .smry-unit-image.consumer02 {
    background-image: url(/img/img_top_consumer02.png);
    background-position: center 30px;
    background-size: 120px auto;
  }
  .smry-unit-image.consumer03 {
    background-image: url(/img/img_top_consumer03.png);
    background-position: center 20px;
    background-size: 120px auto;
  }
  .smry-unit-image.consumer04 {
    background-image: url(/img/img_top_consumer04.png);
    background-size: 72px auto;
  }
  .smry-unit-image img {
    display: none;
  }
  .tbl-info-body .here-access {
    margin-left: 0 !important;
  }
}

.smry-unit-fig strong {
  display: block;
  color: #4286c7;
  font-size: 1.3rem;
}

.smry-unit-fig p {
  font-size: 1.2rem;
  color: #363636;
}

@media screen and (max-width: 767px) {
  .smry-unit-fig p {
    margin-top: 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .service-smry-wrap {
    margin-top: 30px;
  }
  .service-smry-unit {
    width: 25%;
  }
  .smry-unit-image {
    padding: 0 10px;
  }
  .smry-unit-image.biz02, .smry-unit-image.biz04 {
    padding-top: 5px;
  }
  .smry-unit-image.biz03 {
    padding-top: 10px;
  }
  .smry-unit-image.consumer01 img {
    width: 100%;
    max-width: 165px;
  }
  .smry-unit-image.consumer02 img, .smry-unit-image.consumer03 img {
    width: 100%;
    max-width: 176px;
  }
  .smry-unit-image img {
    display: inline-block;
  }
  .smry-unit-fig strong {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 960px) {
  .service-smry-wrap {
    margin-right: auto;
    margin-left: auto;
  }
}

.about-wrap {
  padding: 15px 15px 0;
  font-size: 1.2rem;
}

.about-image {
  width: 100%;
  height: 120px;
  background: url(/img/img_top_about.jpg) no-repeat center center;
  background-size: cover;
}

.about-image img {
  display: none;
}

.about-text {
  line-height: 1.9;
}

.about-twitter {
  display: none;
}

.about-btn {
  padding-top: 10px;
  justify-content: space-between;
  font-size: 0;
}

.about-btn .btn {
  margin-top: 10px;
  width: 48%;
  font-weight: bold;
  font-size: 1.2rem;
}

@media print, screen and (min-width: 768px) {
  .about-image {
    width: 100%;
    height: 240px;
    background: none;
  }
  .about-image img {
    width: 100%;
    display: block;
  }
  .about-text {
    padding-top: 35px;
    font-size: 1.8rem;
    text-align: center;
  }
  .about-btn {
    padding-top: 30px;
    justify-content: center;
  }
  .about-btn .btn {
    margin-top: 15px;
    width: 180px;
  }
  .about-btn .btn + .btn {
    margin-left: 5px;
  }
  .about-btn .btn + .fb {
    margin-left: 5px;
  }
}

@media print, screen and (min-width: 960px) {
  .about-wrap {
    margin: 0 auto;
    padding: 30px 0 0;
    width: 900px;
  }
  .about-text {
    margin-top: -10px;
    padding-top: 50px;
    float: left;
    text-align: left;
    line-height: 2.5;
  }
  .about-twitter {
    margin-top: 50px;
    width: 250px;
    display: block;
    border: 1px solid #ececec;
    border-radius: 5px;
    float: right;
  }
  .about-btn {
    padding-top: 40px;
    clear: both;
  }
  .about-btn .btn {
    margin-top: 15px;
  }
  .about-btn .btn + .btn {
    margin-left: 25px;
  }
  .about-btn .btn + .fb {
    margin-left: 25px;
  }
}


/* news(blog.mapion)
------------------------------ */
.news .headline li:first-child a.headline-link {
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .news .headline li:first-child a.headline-link {
    padding-top: 10px;
  }
}

@media screen and (max-width: 543px) {
  .news .headline li a.headline-link {
    padding-left: 0;
    padding-right: 0;
  }
}

.news .selectbox {
  text-align: right;
  vertical-align: middle;
  padding-bottom: 20px;
}

@media screen and (max-width: 543px) {
  .news .selectbox {
    text-align: left;
    border-bottom: none;
    font-size: 0;
    padding-bottom: 15px;
  }
}

.news .selectbox .select-ttl {
  line-height: 22px;
  display: inline-block;
  padding-right: 15px;
  font-size: 1.2rem;
  vertical-align: middle;
}

@media screen and (max-width: 543px) {
  .news .selectbox .select-ttl {
    width: 30%;
    border-bottom: none;
    line-height: 28px;
  }
}

.news .selectbox select {
  width: 110px;
  height: 22px;
  box-sizing: border-box;
  padding-left: 5px;
  background: #fff;
}

@media screen and (max-width: 543px) {
  .news .selectbox select {
    width: 70%;
    height: 30px;
    border: 1px solid #666;
    outline: none;
    background: #fff url(/img/down_arrow.png) no-repeat center right 5px;
    background-size: 15px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

.news .selectbox select option {
  font-size: 1.2rem;
  line-height: 1;
  height: 18px;
}

@media screen and (max-width: 543px) {
  .news .selectbox select option {
    height: 30px;
  }
}

@-moz-document url-prefix() {
  .news .selectbox select {
    border: 1px solid #666;
    border-radius: 6px;
  }
}

@media screen and (max-width: 543px) {
  .news .headline {
    margin-top: 0;
  }
}

@media screen and (max-width: 543px) {
  .news .headline li {
    padding: 10px 0;
  }
}

.news .headline li {
  border-top: 1px solid #d9d9d9;
}

.news .headline li:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.pager {
  text-align: center;
  margin: 30px auto 0;
  font-size: 1.4rem;
}

.pager li {
  display: inline-block;
  vertical-align: middle;
}

.pager li + li {
  margin-left: 20px;
}

@media screen and (max-width: 543px) {
  .pager li + li {
    margin-left: 7px;
  }
}

.pager li > a, .pager li > span {
  width: 36px;
  line-height: 34px;
  text-align: center;
  vertical-align: top;
  display: block;
  color: #4286c7;
  border-radius: 6px;
  border: 1px solid #4286c7;
  background: #fff;
}

@media screen and (max-width: 543px) {
  .pager li > a, .pager li > span {
    width: 30px;
    line-height: 35px;
    font-size: 1.2rem;
  }
}

.pager li .current_page {
  position: relative;
  color: #fff;
  background: #4286c7;
}

.pager li [class*="link_next"], .pager li [class*="link_before"] {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.pager li .link_next {
  background: url(/release/img/pager_arrow_n.png) no-repeat center center;
  background-size: 7px auto;
}

.pager li .link_before {
  background: url(/release/img/pager_arrow_p.png) no-repeat center center;
  background-size: 7px auto;
}

.pager li [class*="link_"].stop {
  border: 1px solid #d9d9d9;
}

.pager li [class*="link_next"].stop {
  background: url(/release/img/pager_arrow_n_stop.png) no-repeat center center;
  background-size: 7px auto;
}

.pager li [class*="link_before"].stop {
  background: url(/release/img/pager_arrow_p_stop.png) no-repeat center center;
  background-size: 7px auto;
}

.news .detail-title .date {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d9d9d9;
}

.news .detail-title .release-title {
  color: #4286c7;
  font-size: 2rem;
  padding: 30px 0;
}

@media screen and (max-width: 767px) {
  .news .detail-title .release-title {
    padding: 5% 0;
  }
}

.news .sns-box {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row nowrap;
}

@media print, screen and (min-width: 768px) {
  .news .sns-box.is-onlypc {
    display: flex;
  }
  .news .sns-box.is-onlypc div:first-child {
    padding-right: 5px;
  }
  .news .sns-box.is-onlysp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .news .sns-box.is-onlypc {
    display: none;
  }
  .news .sns-box.is-onlysp {
    display: flex;
    justify-content: center;
    margin-bottom: 7%;
  }
}

.news .sns-box .sns-col {
  display: inline-block;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .news .sns-box .sns-col {
    font-size: 0;
    width: 34.4%;
    box-sizing: content-box;
    padding-right: 3.4%;
  }
  .news .sns-box .sns-col .sp_btn_facebook, .news .sns-box .sns-col .sp_btn_twitter {
    width: 100%;
    height: auto;
  }
}

.news .sns-box div:last-child {
  padding-right: 0;
}

.news .box-inner div:last-child.sns-box.is-onlypc {
  margin-bottom: 0;
}

.news .box-inner div:nth-last-child(2).sns-box.is-onlysp {
  margin-bottom: 0;
}

.news .detail-body {
  margin-bottom: 30px;
  word-break: break-all;
  line-height: 1.85;
}

.news .detail-body p a {
  word-break: break-all;
}

@media print, screen and (min-width: 960px) {
  .news .detail-body p a:hover {
    text-decoration: underline;
  }
}

.news .detail-body strong {
  font-size: 1.6rem;
  color: #646464;
  line-height: 1.625;
}

.news .detail-body img {
  max-width: 100%;
  height: auto;
}

.news .detail-body .area-bg {
  padding: 10px;
  background-color: #F3EED5;
  margin-bottom: 1.5em;
}

.news .detail-body .area-dashed-line {
  padding: 10px;
  border: 1px dashed #646464;
  margin-bottom: 1.5em;
}

@media print, screen and (min-width: 960px) {
  .news .detail-body a img {
    transition-property: opacity;
    transition-duration: 0.5s;
  }
  .news .detail-body a:hover img {
    opacity: 0.5;
  }
}

.news.topics .headline li:first-child {
  border-top: none;
}
  
.btn.btn-to-news {
    width: auto;
    font-size: 1.4rem;
}
  
 @media print, screen and (min-width: 600px) {
   .btn.btn-to-news {
   width: 190px;
  }
 }

.box.info-text {
  padding-bottom: 0;
}

.info-text-inner {
  padding: 1.6rem;
  border: solid 1px #4286c7;
  background: #f2f9ff;
  color: #4286c7;
}
.info-text-inner p span {
  display: inline-block;
}
.info-text p {
  margin-bottom: 1.6rem;
}

@media print, screen and (min-width: 960px) {
.info-text p {
  text-align: center;
}
}
  
  

/* Utility
------------------------------ */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt05 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr05 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb05 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml05 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt05 {
  padding-top: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pr05 {
  padding-right: 5px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb05 {
  padding-bottom: 5px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl05 {
  padding-left: 5px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-fs10 {
  font-size: 1.0rem !important;
}

.u-fs12 {
  font-size: 1.2rem !important;
}

.u-fs14 {
  font-size: 1.4rem !important;
}

.u-fs16 {
  font-size: 1.6rem !important;
}

.u-fs18 {
  font-size: 1.8rem !important;
}

.u-fs20 {
  font-size: 2.0rem !important;
}

.u-fs20 {
  font-size: 2.0rem !important;
}

.u-fs22 {
  font-size: 2.2rem !important;
}

.u-fs24 {
  font-size: 2.4rem !important;
}

.u-fs26 {
  font-size: 2.6rem !important;
}

.u-fs28 {
  font-size: 2.8rem !important;
}

.u-fs30 {
  font-size: 3.0rem !important;
}

.u-center {
  text-align: center !important;
}

.u-right {
  text-align: right !important;
}

.u-left {
  text-align: left !important;
}

.u-middle {
  vertical-align: middle !important;
}

.u-float-l {
  float: left !important;
}

.u-float-r {
  float: right !important;
}

.u-float-n {
  float: none !important;
}

.u-none-bdr {
  border: none !important;
}

.u-none-bt {
  border-top: none !important;
}

.u-none-br {
  border-right: none !important;
}

.u-none-bb {
  border-bottom: none !important;
}

.u-none-bl {
  border-left: none !important;
}

/* 印刷
------------------------------ */
@media print {
  .l-glb-header {
    position: relative;
  }
  .l-wrap {
    padding-top: 0;
  }
  .content-header-nav {
    position: absolute;
    top: 0;
  }
}
