@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* base
---------------------------------------------------------------------------- */
/* General Elements */
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  color: #121212;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: #f5a200;
  outline: none;
}

a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: break-all;
  box-sizing: border-box;
}

/* l-pageBody */
.l-pageBody {
  width: 100%;
  min-width: 1120px;
  background: #f2f2f2;
  overflow: hidden;
}

/* l-header */
.l-header {
  width: 100%;
  min-width: 1120px;
  height: 80px;
  padding: 22px 0;
  background: rgba(255, 255, 255, 1.0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  border-bottom: 1px solid #919191;
}

.l-header.page {
  position: static;
}

.l-header .container {
  max-width: 1200px;
  min-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-header .container .logo {
  float: left;
  padding-top: 4px;
}

.l-header .container .logo a {
  display: block;
  color: #121212;
  font-weight: 700;
}

.l-header .container .logo a img {
  display: inline-block;
  width: auto;
  height: 35px;
  vertical-align: middle;
}

.l-header .container .logo a p {
  display: inline-block;
  margin-top: -3px;
  margin-left: 10px;
  vertical-align: middle;
}

/* l-gNav */
.l-gNav {
  float: right;
  width: 552px;
}
.l-gNav .nav-text {
  display: block;
  float: left;
  text-align: right;
}
.l-gNav .nav-text li {
  display: inline-block;
  margin-left: 26px;
  position:relative;
}
.l-gNav .nav-text li:first-child {
  margin-left: 0;
}
.l-gNav .nav-text li a {
  display: block;
  color: #121212;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 36px;
  background: url(../../images/common/icn_arrow_navi3.png) no-repeat 0 11px;
  padding-left: 24px;
}
.l-gNav .nav-btn {
  text-align: right;
  float: right;
}
.l-gNav .nav-btn li {
  display: inline-block;
  width: 150px;
  margin-left: 12px;
  position:relative;
}
.l-gNav .nav-btn li.nav-dl {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 2rem;
}
.l-gNav .nav-btn li a {
  display: block;
  padding: 8px 5px 10px 5px;
  border: 2px solid #f3a127;
  background-color: #f3a127;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.l-gNav .nav-btn li.nav-dl a {
  border: 2px solid #053994;
  background-color: #053994;
  color: #fff;
}
/*プルダウン風メニュー*/
.nav-text-menu {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s opacity 0s linear,0.1s visible 0s linear;
  width: 196px;
  position: absolute;
  top: 91%;
  left: 0;
  z-index: 1;
}

.l-gNav .nav-text-menu li {
  margin-left: 0;
  display: block;
}

.l-gNav .nav-text-menu li a {
  padding: 16px 16px;
  font-size: 1.6rem;
  background: #EDF6FC;
  border-bottom: 1px solid #fff;
  text-align: left;
  line-height: 1.1;
}

.nav-text-menu a:where(:hover,:focus) {
  opacity: 0.9 !important;
}

.nav-text-menu li a::before {
  content: '';
  display: inline-block;
  margin-right: 2px;
  border: 6px solid transparent;
  border-left-color: #053994;
  border-width: 4px 5px;
  position: relative;
  top: -3px;
}

.nav-text > li:first-child:where(:hover,:focus) .nav-text-menu{
  visibility: visible;
  opacity: 1;
}
/*SP用なので非表示*/

.logo-text-sp {
  display: none !important;
}

.button-menu-wrap {
  display: none;
}
.l-header a:hover {
  transition: 0.2s opacity 0s linear;
}
.l-header a:hover {
  opacity: 0.7;
}

/* l-topicPath */
.l-topicPath {
  padding: 20px 0;
}

.l-topicPath .container {
  max-width: 1200px;
  min-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-topicPath ol li {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  display: inline-block;
}

.l-topicPath ol li a {
  color: #919191;
  text-decoration: underline;
}

.l-topicPath ol li a:hover, .l-topicPath ol li a:active, .l-topicPath ol li a:focus {
  text-decoration: none;
}

.l-topicPath-arrow {
  padding-left: 30px;
  position: relative;
}

.l-topicPath-arrow:before {
  content: "";
  display: block;
  width: 5px;
  height: 7px;
  background: url(/sales/assets/images/common/icn_arrow_breadcrumb.png) no-repeat top left;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
}

/* l-footer */
.l-footer {
  width: 100%;
  min-width: 1120px;
  height: 75px;
  padding: 17px 0;
  background: #121212;
}

.l-footer .list-copyright ul li {
  padding: 0 12px;
  border-left: 1px solid #fff;
}

.l-footer .list-copyright ul li:first-child {
  padding-left: 0;
  border-left: none;
}

.l-footer .list-copyright ul li:last-child {
  padding-right: 0;
}

.l-footer .list-copyright ul li a {
  display: block;
  color: #fff;
}

.l-footer .list-copyright p {
  margin-top: 10px;
  color: #7e7e7e;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
}

.l-footer .logo a {
  display: block;
}

.l-footer .logo img {
  margin: 2px auto;
  max-width: none;
  height: 35px;
  width: auto;
}

.l-footer .m-container.small {
  max-width: 1200px;
  min-width: 1120px;
  padding:0 20px;
}


/* hover */
.logo a,
.l-gNav .nav-btn a {
  transition: 0.2s opacity 0s linear;
  opacity: 1;
}
.logo a:hover,
.l-gNav .nav-btn a:hover {
  opacity: 0.7;
}

/* common
---------------------------------------------------------------------------- */
/* Webフォント
---------------------------------------------------------------------------- */
/*------------- Noto Sans Japanese -------------*/
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 100;
  src: url("/sales/assets/fonts/NotoSansJP-Thin.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Thin.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Thin.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url("/sales/assets/fonts/NotoSansJP-Light.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Light.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Light.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url("/sales/assets/fonts/NotoSansJP-DemiLight.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-DemiLight.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-DemiLight.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("/sales/assets/fonts/NotoSansJP-Regular.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Regular.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("/sales/assets/fonts/NotoSansJP-Medium.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Medium.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Medium.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("/sales/assets/fonts/NotoSansJP-Bold.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Bold.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 900;
  src: url("/sales/assets/fonts/NotoSansJP-Black.woff2") format("woff2"), url("/sales/assets/fonts/NotoSansJP-Black.woff") format("woff"), url("/sales/assets/fonts/NotoSansJP-Black.otf") format("opentype");
}

.m-notosans-thin {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 100 !important;
}

.m-notosans-light {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 200 !important;
}

.m-notosans-demi-light {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 300 !important;
}

.m-notosans-regular {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 400 !important;
}

.m-notosans-medium {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 500 !important;
}

.m-notosans-bold {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 700 !important;
}

.m-notosans-black {
  font-family: 'Noto Sans Japanese' !important;
  font-weight: 900 !important;
}

/* .m-container
---------------------------------------------------------------------------- */
.m-container {
  max-width: 1470px;
  min-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.m-container.small {
  max-width: 1120px;
}

/* タイトル系
---------------------------------------------------------------------------- */
.m-title01 {
  margin-bottom: 45px;
  color: #121212;
  text-align: center;
}

.m-title01 .title {
  font-weight: 700;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.25;
}

.m-title01 .sub-title {
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.88;
}

.m-title02 {
  margin-bottom: 30px;
  color: #121212;
  text-align: center;
}

.m-title02 .title {
  padding-bottom: 12px;
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.25;
  position: relative;
}

.m-title02 .title:before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #f5a200;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.m-title02 .sub-title {
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.43;
  text-align: left;
}

.m-title03 {
  padding-bottom: 10px;
  border-bottom: 2px solid #121212;
  font-family: 'Noto Sans Japanese';
  font-weight: 500;
  color: #121212;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.25;
}

.m-title04 {
  width: 99px;
  height: 38px;
  padding: 10px;
  background: #f5a200;
  font-weight: 700;
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
  position: relative;
  width: auto;
}

.m-title04:before {
  content: "";
  display: block;
  width: 11px;
  height: 38px;
  background: url(/sales/assets/images/common/bg_title04.png) no-repeat top left;
  position: absolute;
  top: 0;
  right: -11px;
}

.m-title05 {
  padding-left: 20px;
  font-weight: 500;
  color: #121212;
  font-size: 19px;
  font-size: 1.9rem;
  position: relative;
}

.m-title05:before {
  content: "";
  display: block;
  width: 14px;
  height: 4px;
  background: #f5a200;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.m-title06 {
  color: #fff;
  background: #777777;
  font-size: 36px;
  padding: 24px;
  text-align: center;
  position: relative;
}

.m-title06 .title {
  font-weight: 500;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.25;
}

.m-title06__bgGreen {
  background: #569c79;
}

.m-title06__bgBlue {
  background: #00a0e9;
}

/* ボタン系
---------------------------------------------------------------------------- */
.p-mv-button-container:after {
  content: "";
  display: block;
  width: 80%;
  height: 10px;
  position: relative;
  z-index: 1;
  margin: -10px auto 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 100% / 15px;
}

.m-button01 {
  width: 100%;
  display: block;
  padding: 17px 0;
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 15px, #121212;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans Japanese';
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.m-button01.big {
  padding: 30px 0;
  font-size: 22px;
  font-size: 2.2rem;
}

.m-button01.middle {
  padding: 20px 0;
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 30px, #121212;
  font-size: 22px;
  font-size: 2.2rem;
}

.m-button01.small {
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 25px/6px 10px, #121212;
  font-size: 15px;
  font-size: 1.5rem;
}

.m-button01.small.orange {
  padding-left: 18px;
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 10px/8px 14px, #f5a200;
  text-align: left;
}

.m-button01.orange {
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 25px, #f5a200;
}

.m-button01.darkgray {
  background-color: #383838;
}

.button-container .m-button01.navy {
  background-color: #053994;
}

.m-button01.noarrow {
  background: #121212;
}

.m-button01.noshadow:before {
  display: none;
}

.m-button01.mv {
  padding-left: 20px;
  background: url(/sales/assets/images/common/icn_button01_arrow.png) no-repeat center right 15px/8px 14px, #f5a200;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
}

.m-button02 {
  display: block;
  padding: 10px;
  background: url(/sales/assets/images/common/icn_button02_arrow.png) no-repeat center right 15px;
  border: 1px solid #636363;
  border-radius: 19px;
  font-weight: 500;
  color: #636363;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
}

.m-button03 {
  padding: 5px 20px;
  border: 1px solid #636363;
  border-radius: 30px;
  color: #636363;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

.m-button03 span {
  display: inline-block;
  padding-right: 23px;
  background: url(../../images/common/bg_button03.png) no-repeat center right;
}

/* .m-contact-box
---------------------------------------------------------------------------- */
.m-contact-box {
  width: 100%;
  min-width: 1120px;
  height: 165px;
  padding: 40px 0 35px 0;
  background: #f2f2f2;
}

.m-contact-box .tel,
.m-contact-box .form {
  width: 50%;
  text-align: center;
}

.m-contact-box .tel .top {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-contact-box .tel .middle {
  margin-top: 10px;
  font-weight: 700;
  font-size: 35px;
  font-size: 3.5rem;
}

.m-contact-box .tel .middle span {
  display: inline-block;
  padding-left: 5%;
  background: url(/sales/assets/images/common/icn_tel.png) no-repeat center left/10% auto;
}

.m-contact-box .tel .bottom {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-contact-box .form p {
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-contact-box .form .button-container {
  width: 350px;
  margin: 13px auto 0 auto;
}

.m-contact-box.white {
  background: #fff;
}

.m-contact-box.download {
  background: #fff;
}

.m-contact-box.download .document {
  width: 33%;
  padding: 0 4%;
  text-align: center;
}

.m-contact-box.download .document .button-container {
  width: 285px;
  margin: 27px auto 0 auto;
}

.m-contact-box.download .tel {
  width: 31%;
  padding: 0 4%;
}

.m-contact-box.download .tel .middle {
  font-size: 33px;
  font-size: 3.3rem;
}

.m-contact-box.download .tel .middle span {
  padding-left: 11%;
}

.m-contact-box.download .form {
  width: 33%;
  padding: 0 4%;
  text-align: center;
}

.m-contact-box.download .form .button-container {
  width: 285px;
  margin: 13px auto 0 auto;
}

.button-container-case {
  width: 282px;
  margin: 0 auto;
}

/* .m-mv-box
---------------------------------------------------------------------------- */
.m-mv-box {
  padding-top: 185px;
  height: 384px;
}

.m-mv-box .text {
  font-family: 'Noto Sans Japanese';
  font-weight: 500;
  color: #fff;
  font-size: 0;
}

.m-mv-box .text h1 {
  display: inline-block;
  font-size: 34px;
  font-size: 3.4rem;
}

.m-mv-box .text p {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
  font-size: 1.6rem;
}

.m-mv-box .text p.block {
  display: block;
  margin-top: 22px;
  margin-left: 0;
  line-height: 1.53;
}

.m-mv-box .button {
  margin-top: 35px;
}

/* .m-fv-box
---------------------------------------------------------------------------- */
.m-fv-box {
  background: #fff;
  padding-bottom: 95px;
}

.m-fv-box .box {
  margin-top: 25px;
}

.m-fv-box .box .text {
  width: 600px;
  color: #121212;
}

.m-fv-box .box.box-text659 .m-notosans-medium {
  width: 659px;
  position: relative;
}

.m-fv-box .box .text h2 {
  padding-bottom: 20px;
  margin-top: 45px;
  margin-bottom: 15px;
  border-bottom: 1px solid #919191;
  font-weight: 700;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.28;
}

.m-fv-box .box .text p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.m-fv-box .box .img {
  width: 461px;
  margin-left: 59px;
}

.m-fv-box .box .img img {
  width: 100%;
}

/* .m-tab-box
---------------------------------------------------------------------------- */
.m-tab-box ul.tab {
  padding: 40px 0 75px;
  background: #454545;
  font-size: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.m-tab-box ul.tab li {
  display: inline-block;
  width: 475px;
  margin: 0 42px;
  background: #353535;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: all .3s ease;
}

.m-tab-box ul.tab li span {
  display: inline-block;
  padding: 25px 0 25px 50px;
}

.m-tab-box ul.tab li:first-child span {
  background: url(/sales/assets/images/common/icn_tab_char.png) no-repeat center left;
}

.m-tab-box ul.tab li:last-child span {
  background: url(/sales/assets/images/common/icn_tab_example.png) no-repeat center left;
}

.m-tab-box ul.tab li.active, .m-tab-box ul.tab li:hover {
  background: #5e5e5e;
}

.m-tab-box ul.notab {
  padding: 40px 0 75px;
  background: #454545;
  font-size: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.m-tab-box ul.notab li {
  display: inline-block;
  width: 475px;
  margin: 0 42px;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

.m-tab-box ul.notab li span {
  display: inline-block;
  padding: 25px 0 25px 50px;
  background: url(/sales/assets/images/common/icn_tab_char.png) no-repeat center left;
}

.m-tab-box .box {
  position: relative;
  top: -45px;
  left: 0;
  z-index: 2;
}

.m-tab-box .box .m-container {
  padding: 45px 50px 60px 50px;
  background: #fff;
}

.m-tab-box .box .m-container:before {
  content: "";
  display: block;
  width: 26px;
  height: 15px;
  background: url(/sales/assets/images/common/icn_tab_arrow.png) no-repeat top left;
  position: absolute;
  top: -15px;
  z-index: 2;
}

.m-tab-box .box.notab .m-container:before {
  display: none;
}

.m-tab-box .box.char .m-container:before {
  left: 267px;
}

.m-tab-box .box.char .m-container .gray-area {
  padding: 35px 50px 40px 50px;
  background: #f2f2f2;
}

.m-tab-box .box.char .m-container .gray-area .column .left, .m-tab-box .box.char .m-container .gray-area .column .right {
  width: 48%;
}

.m-tab-box .box.char .m-container .gray-area .column .left {
  margin-right: 4%;
}

.m-tab-box .box.char .m-container .gray-area .img img {
  width: 100%;
}

.m-tab-box .box.char .m-container .gray-area ul {
  margin-top: 12px;
}

.m-tab-box .box.char .m-container .gray-area ul li {
  padding: 13px 13px 13px 25px;
  background: url(/sales/assets/images/common/icn_check.png) no-repeat top 18px left;
  border-bottom: 1px solid #c6c6c6;
  font-weight: 500;
  color: #121212;
  font-size: 17px;
  font-size: 1.7rem;
}

.m-tab-box .box.char .m-container .gray-area .long h4 {
  margin: 20px 0 0 10px;
  font-weight: 700;
  color: #121212;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.35;
}

.m-tab-box .box.char .m-container .gray-area .long ul li {
  border-bottom: none;
  padding-left: 50px;
  background: url(/sales/assets/images/common/icn_check.png) no-repeat top 18px left 18px;
}

.m-tab-box .box.char .m-container .gray-area .long ul li h5 {
  font-weight: 700;
}

.m-tab-box .box.char .m-container .gray-area .long ul li p {
  margin: 10px 0 0 17px;
  color: #121212;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
}

.m-tab-box .box.char .m-container .gray-area .white {
  padding: 30px;
  margin-top: 20px;
  background: #fff;
  text-align: center;
}

.m-tab-box .box.char .m-container .gray-area .white p, .m-tab-box .box.char .m-container .gray-area .white a {
  display: inline-block;
}

.m-tab-box .box.char .m-container .gray-area .white p {
  font-weight: 500;
  color: #121212;
  font-size: 21px;
  font-size: 2.1rem;
}

.m-tab-box .box.char .m-container .gray-area .white a {
  width: 240px;
  margin-left: 60px;
}

.m-tab-box .box.example .m-container:before {
  right: 267px;
}

.m-tab-box .box.example .m-container .gray-area {
  padding: 50px;
  background: #f2f2f2;
}

.m-tab-box .box.example .m-container .gray-area .img {
  width: 299px;
  margin-right: 46px;
}

.m-tab-box .box.example .m-container .gray-area .img img {
  width: 100%;
}

.m-tab-box .box.example .m-container .gray-area .text {
  width: 575px;
}

.m-tab-box .box.example .m-container .gray-area .text h3 {
  margin-top: 5px;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
}

.m-tab-box .box.example .m-container .gray-area .text h3 span {
  display: inline-block;
  margin-left: 3px;
  font-size: 20px;
  font-size: 2rem;
}

.m-tab-box .box.example .m-container .gray-area .text h4 {
  margin-top: 14px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}

.m-tab-box .box.example .m-container .gray-area .text p {
  margin-top: 22px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.m-tab-box .box .border-area {
  padding: 40px 50px 35px 50px;
  margin-top: 40px;
  border: 1px solid #c6c6c6;
  font-size: 0;
}

.m-tab-box .box .border-area h3 {
  margin-bottom: 27px;
}

.m-tab-box .box .border-area h4, .m-tab-box .box .border-area p {
  display: inline-block;
}

.m-tab-box .box .border-area p {
  margin-left: 24px;
  font-weight: 700;
  color: #121212;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
  top: 3px;
  left: 0;
}

.m-tab-box .box .border-area p.margin {
  margin-right: 48px;
}

.m-tab-box .box .border-area p span {
  margin-left: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}

.m-tab-box .box .border-area small {
  display: block;
  margin-top: 18px;
  color: #121212;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.43;
}

.m-tab-box .box .border-area small a {
  color: #6684a3;
  text-decoration: underline;
}

.m-tab-box .box .border-area small a:hover {
  text-decoration: none;
}

/*追従ポップアップ*/
.m-popup-box {
  position: fixed;
  bottom: -50%;
  right: 20px;
  z-index: 10;
}
@keyframes slide {
  0% {
      bottom: -50%;
  }
  100% {
      bottom: 24px;
  }
}

@keyframes slideout {
  0% {
      bottom: 24px;
  }
  100% {
      bottom: -50%;
  }
}

.anim-slide {
  animation-name: slide;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode:both;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-slideout {
  animation-name: slideout;
  animation-duration: 0.7s;
  animation-delay: 0s;
  animation-fill-mode:both;
  animation-timing-function: linear;
}
.popup-inner {
  width: 360px;
  padding: 18px 20px;
  background: #fff6e5;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
  position:relative;
}
  .m-popup-box .button-container a {
  margin-top: 20px;
  }
.m-popup-box .button-close {
  background: #bbbbbb;
  position: absolute;
  right: -12px;
  top: -12px;
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap; */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  appearance: none;
}
.m-popup-box .button-close img {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.m-popup-box .button-close:hover {
  cursor: pointer;
}
.m-popup-box .button-close:focus {
 outline: none;
}
.m-popup-box .text-box {
  width: 100%;
  padding: 4px 0 0 60px;
  font-size: 15px;
  background: url(/sales/assets/images/common/popup_marker.png) no-repeat left top;
  line-height: 1.3;
}
.m-popup-box .text-box a{
  padding-left: 1em;
  color: #121212;
  text-decoration: underline;
}
.m-popup-box .text-box a:hover{
  text-decoration: none;
}
.m-popup-box .text-box .emphasis {
  color: #cb3333;
  font-weight: 700;
}

/*追従フローティング*/
.m-floating-box {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: rgba(255,255,255,.9);
  width: 100%;
  height: auto;
  min-width: 1200px;
  margin: 0 auto;
  padding: 15px 0 10px;
  z-index: 9;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}

.m-floating-box.stop {
  position: absolute;
  left: 0;
  bottom: 75px;
  background-color: rgba(255,255,255,1);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0);
  padding: 35px 0 30px;
  opacity: 1;
}

.m-floating-box .button-close {
  background: #bbbbbb;
  position: absolute;
  right: 10px;
  top: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  appearance: none;
}

.m-floating-box.stop .button-close {
  display: none;
}

.m-floating-box .button-close:hover {
  cursor: pointer;
}

.m-floating-box .button-close:focus {
 outline: none;
}

.anim-slide-floating {
  animation-name: slideInFromBottom;
  animation-duration: 0.4s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.57,0,.58,.99);
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-slideout-floating {
  animation-name: slideOutToBottom;
  animation-duration: 0.4s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.57,0,.58,.99);
}

@keyframes slideOutToBottom {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100px);
  }
}

/*導入事例冒頭*/
.caseintro-wrap+ .caseintro-wrap {
  margin-top: 50px;
}
.m-tab-box .box.example .m-container .caseintro-wrap,
.caseintro-wrap {
  width: 100%;
  padding: 50px 8px 50px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.caseintro-wrap .img-box {
  width: 434px;
  margin-right: 0;
  border: 1px solid #bdc0bf;
}

.caseintro-wrap img {
  width: 100%;
}

.caseintro-wrap .text-box {
  width: calc(100% - 434px);
  padding: 0 8px;
}

/*導入事例 タイトルの横にラベルつき*/
.casestudy-wrap {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}
/**/

.casestudy-title {
  margin-top: 0;
  font-size: 30px;
  color:#121212;
  font-weight: bold;
  line-height: 1.1;
}

.casestudy-title span {
  display: inline-block;
  margin-left: 8px;
  font-size: 26px;
}

.casestudy-title .inline-block {
  display: inline-block;
}

.casestudy-title-caption {
  text-align: center;
  margin-bottom: 20px;
}

.casestudy-title-caption span {
  font-size: 24px;
  color:#242424;
  font-weight: bold;
  line-height: 1.3;
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, transparent 0,transparent 7px,#f5d500 7px, #f5d500 16px, transparent 16px);
}

/*導入事例のラベル*/

.casestudy-list .label,
.casestudy-wrap .label {
  min-width: 60px;
  min-height: 21px;
  padding: 4px 7px;
  line-height: 1.1;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  position:absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.casestudy-wrap .label{
  position: static;
  margin-right: 16px;
}
/*調剤薬局*/
.label.c-3285a4 {
  background: #3285a4;
}
/*金融*/
.label.c-ff9000 {
  background: #ff9000;
}
/*ソフトウェア開発*/
.label.c-3077d8{
  background: #3077d8;
}
/*メーカー*/
.label.c-32a485{
  background: #32a485;
}

/*追従ポップアップaside*/
.m-popup-box--aside {
  position: fixed;
  left: 50%;
  bottom: -50%;
  margin-left: -160px;
}
.m-popup-box--aside .popup-inner {
  width: 320px;
  height: 50px;
  padding: 0;
  background: #000;
}

.m-popup-box--aside.anim-slide {
  animation-name: slide-bnr;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-popup-box--aside.anim-slideout {
  animation-name: slideout-bnr;
  animation-duration: 0.7s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: linear;
}

@keyframes slide-bnr {
  0% {
    bottom: -50%;
  }
  100% {
    bottom: 0;
  }
}

@keyframes slideout-bnr {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -50%;
  }
}

.m-popup-box--aside.anim-slide + .totop {
  bottom: 80px;
  transition: 0.3s bottom 0s linear;
}

.m-popup-box--aside + .totop {
  bottom: 20px;
  transition: 0.3s bottom 0s linear;
}


@media screen and (min-width:769px),print {
  .m-popup-box--aside {
    position: fixed;
    left: auto;
    right: 20px;
    bottom: -50%;
    margin-left: 0;
    margin-bottom: 24px;
  }
  .m-popup-box--aside .popup-inner {
    width: 300px;
    height: 250px;
    background: #000;
  }
}

/* module
---------------------------------------------------------------------------- */
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs6 {
  font-size: 6px !important;
  font-size: 0.6rem !important;
}

.fs7 {
  font-size: 7px !important;
  font-size: 0.7rem !important;
}

.fs8 {
  font-size: 8px !important;
  font-size: 0.8rem !important;
}

.fs9 {
  font-size: 9px !important;
  font-size: 0.9rem !important;
}

.fs10 {
  font-size: 10px !important;
  font-size: 1rem !important;
}

.fs11 {
  font-size: 11px !important;
  font-size: 1.1rem !important;
}

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

.fs13 {
  font-size: 13px !important;
  font-size: 1.3rem !important;
}

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

.fs15 {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

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

.fs17 {
  font-size: 17px !important;
  font-size: 1.7rem !important;
}

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

.fs19 {
  font-size: 19px !important;
  font-size: 1.9rem !important;
}

.fs20 {
  font-size: 20px !important;
  font-size: 2rem !important;
}

.fs21 {
  font-size: 21px !important;
  font-size: 2.1rem !important;
}

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

.fs23 {
  font-size: 23px !important;
  font-size: 2.3rem !important;
}

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

.fs25 {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

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

.fs27 {
  font-size: 27px !important;
  font-size: 2.7rem !important;
}

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

.fs29 {
  font-size: 29px !important;
  font-size: 2.9rem !important;
}

.fs30 {
  font-size: 30px !important;
  font-size: 3rem !important;
}

.fs31 {
  font-size: 31px !important;
  font-size: 3.1rem !important;
}

.fs32 {
  font-size: 32px !important;
  font-size: 3.2rem !important;
}

.fs33 {
  font-size: 33px !important;
  font-size: 3.3rem !important;
}

.fs34 {
  font-size: 34px !important;
  font-size: 3.4rem !important;
}

.fs35 {
  font-size: 35px !important;
  font-size: 3.5rem !important;
}

.fs36 {
  font-size: 36px !important;
  font-size: 3.6rem !important;
}

.fs37 {
  font-size: 37px !important;
  font-size: 3.7rem !important;
}

.fs38 {
  font-size: 38px !important;
  font-size: 3.8rem !important;
}

.fs39 {
  font-size: 39px !important;
  font-size: 3.9rem !important;
}

.fs40 {
  font-size: 40px !important;
  font-size: 4rem !important;
}

.fs41 {
  font-size: 41px !important;
  font-size: 4.1rem !important;
}

.fs42 {
  font-size: 42px !important;
  font-size: 4.2rem !important;
}

.fs43 {
  font-size: 43px !important;
  font-size: 4.3rem !important;
}

.fs44 {
  font-size: 44px !important;
  font-size: 4.4rem !important;
}

.fs45 {
  font-size: 45px !important;
  font-size: 4.5rem !important;
}

.fs46 {
  font-size: 46px !important;
  font-size: 4.6rem !important;
}

.fs47 {
  font-size: 47px !important;
  font-size: 4.7rem !important;
}

.fs48 {
  font-size: 48px !important;
  font-size: 4.8rem !important;
}

.fs49 {
  font-size: 49px !important;
  font-size: 4.9rem !important;
}

.fs50 {
  font-size: 50px !important;
  font-size: 5rem !important;
}

/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキストアライン
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

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

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

/* テキストインデント
---------------------------------------------------------------------------- */
.indent-05 {
  text-indent: -0.5em;
}
.indent-10 {
  text-indent: -1.0em;
}
.indent05 {
  text-indent: 0.5em;
}
.indent10 {
  text-indent: 1.0em;
}

/* フロート
---------------------------------------------------------------------------- */
.flR {
  float: right !important;
}

.flL {
  float: left !important;
}

/* マージン
---------------------------------------------------------------------------- */
.m00 {
  margin: 0px !important;
}

.mauto {
  margin: 0 auto !important;
}

.mt0 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

/* パディング
---------------------------------------------------------------------------- */
.pd00 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pr100 {
  padding-right: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl75 {
  padding-left: 75px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pl100 {
  padding-left: 100px !important;
}

/* inline-block
---------------------------------------------------------------------------- */
.inline-block {
  display: inline-block;
}

/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media screen and (min-width: 1121px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1120px) {
  .pc {
    display: none !important;
  }
}

/* 画像調整
---------------------------------------------------------------------------- */
.pixelated {
  image-rendering: crisp-edges;
  -ms-interpolation-mode: bicubic;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-pixelated;
  image-rendering: -o-crisp-edges;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, .pixelated {
    image-rendering: auto;
  }
}

_::-webkit-full-page-media, _:future, :root .pixelated {
  image-rendering: auto;
}
