.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }

  .only-sp {
    display: block;
  }
}

#dm-site {
  /* ------------------------------------------------------------- */
  /* layout / parts                                                */
  /* ------------------------------------------------------------- */
  /*-----------------BG--------------------*/
  /*-----------------font--------------------*/
  /*-----------------image--------------------*/
  /*-----------------flex--------------------*/
  /*-----------------Link--------------------*/
  /*----------------btn---------------------*/
  /*----------------text---------------------*/
  /*----------------section-tittle---------------------*/
  /* ------------------------------------------------------------- */
  /* breadcrumb                                                    */
  /* ------------------------------------------------------------- */
  /* ------------------------------------------------------------- */
  /* header                                                        */
  /* ------------------------------------------------------------- */
  /* ------------------------------------------------------------- */
  /* footer                                                        */
  /* ------------------------------------------------------------- */
  /* ------------------------------------------------------------- */
  /* KV                                                            */
  /* ------------------------------------------------------------- */
  /* ------------------------------------------------------------- */
  /* link-list                                                     */
  /* ------------------------------------------------------------- */
  /* objective                                                  */
  /* ------------------------------------------------------------- */
  /* message                                                       */
  /* ------------------------------------------------------------- */
  /*#gl_header * {
  	font-family: Arial, sans-serif !important;
  }*/
}

#dm-site * {
  box-sizing: border-box;
}

#dm-site .pc {
  display: block !important;
}

#dm-site .sp {
  display: none !important;
}

#dm-site .pc-l {
  display: block !important;
}

#dm-site .sp-l {
  display: none !important;
}

#dm-site .pc-m {
  display: block !important;
}

#dm-site .sp-m {
  display: none !important;
}

#dm-site section {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 2;
  letter-spacing: 0;
  line-height: 1.2;
  overflow: hidden;
}

#dm-site a:link {
  color: #000;
}

#dm-site section a {
  color: #000;
}

#dm-site section a:visited {
  color: #000;
}

#dm-site input,
#dm-site txtarea {
  font-size: 16px;
}

#dm-site article {
  overflow-x: hidden;
}

#dm-site .outer {
  width: 100%;
}

#dm-site .inner {
  margin: 0 auto;
  padding: 0 8px;
}

#dm-site .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

#dm-site .padding-50 {
  padding: 50px 0;
}

#dm-site .padding-90 {
  padding: 90px 0;
}

#dm-site .m-center {
  display: block;
  margin: 0 auto;
}

#dm-site .bold {
  font-weight: bold;
}

#dm-site .border-b {
  position: relative;
  border-bottom: solid 2px #CCCCCC;
  padding-bottom: 10px;
}

#dm-site .border-b.w-r:after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #D31D3E;
  position: absolute;
  bottom: -2px;
  right: 0;
}

#dm-site .reverse {
  flex-direction: row-reverse;
}

#dm-site .bg-grey {
  background-color: #EBEDF2;
  background-image: url(../image2/about-bg.png);
  background-repeat: repeat-y;
  background-position: center;
}

#dm-site .bg-red {
  background-color: #D31D3E;
}

#dm-site .bg-dgrey {
  background-color: #999999;
}

#dm-site .noto {
  font-family: 'Noto sans JP';
}

#dm-site .notice {
  font-size: 12px;
  margin-top: 10px;
}

#dm-site img.fit-cover {
  object-fit: cover;
}

#dm-site img.fit-contain {
  object-fit: contain;
}

#dm-site figure img {
  width: 100%;
}

#dm-site img {
  vertical-align: top;
}

#dm-site .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#dm-site .flex.nowrap {
  flex-wrap: nowrap;
}

#dm-site .flex.right {
  justify-content: flex-end;
}

#dm-site .flex.center {
  justify-content: center;
}

#dm-site .flex.left {
  justify-content: flex-start;
  background: none !important;
}

#dm-site .flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

#dm-site .flex.al-center {
  align-items: center;
}

#dm-site .flex.al-top {
  align-items: flex-start;
}

#dm-site .flex.al-bottom {
  align-items: flex-end;
}

#dm-site .v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dm-site a {
  text-decoration: none;
  transition: all .3s ease;
}

#dm-site section li>a {
  display: block;
}

#dm-site a {
  color: inherit;
}

#dm-site a:hover {
  opacity: 0.7;
}

#dm-site .btn-w,
#dm-site input.btn-w {
  position: relative;
  display: block;
  width: 300px;
  color: #fff !important;
  text-align: center;
  font-size: 18px;
  line-height: 3;
  margin: 0 auto;
  z-index: 0;
  border: solid 1px #fff;
  appearance: none;
  -webkit-appearance: none;
  background-color: none;
  transition: background-color 0.3s ease-in-out;
}

#dm-site .btn-w::after,
#dm-site input.btn-w::after,
#dm-site .btn-black::after,
#dm-site input.btn-black::after {
  position: absolute;
  top: 50%;
  right: 4%;
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  background-image: url(../image2/btn-arw.png);
  transition: right 0.3s ease-in-out;
}

#dm-site .btn-w:hover,
#dm-site input.btn-w:hover {
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

#dm-site .btn-black:hover,
#dm-site input.btn-black:hover {
  background-color: #525252;
}

#dm-site .btn-w:hover::after,
#dm-site input.btn-w:hover::after,
#dm-site .btn-black:hover::after,
#dm-site input.btn-black:hover::after {
  right: 3%;
}

#dm-site .btn-black,
#dm-site input.btn-black {
  position: relative;
  display: block;
  width: 300px;
  color: #fff !important;
  background-color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 3;
  margin: 0 auto;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: none;
  transition: background-color 0.3s ease-in-out;
}

#dm-site .txt-c {
  text-align: center;
}

#dm-site .txt-l {
  text-align: left;
}

#dm-site .txt-r {
  text-align: right;
}

#dm-site h1 {
  font-size: 30px;
  padding: 10px 0;
}

#dm-site h2 {
  font-size: 39px;
  font-weight: bold;
}

#dm-site h2.ttl {
  font-weight: bold;
  margin-bottom: 35px;
}

#dm-site h2.ttl span {
  font-size: 39px;
}

#dm-site h2.ttl small {
  display: block;
  color: #D31D3E;
  font-size: 15px;
  margin-bottom: 15px;
}

#dm-site .hd-txt {
  width: 800px;
  font-size: 18px;
  line-height: 1.7;
}

#dm-site .breadcrumb {
  padding: 20px 0;
}

#dm-site .breadcrumb a::after {
  content: ">";
  margin-left: 8px;
}

#dm-site .breadcrumb li {
  font-size: 14px;
  margin-right: 7px;
  line-height: 1.3;
}

#dm-site #gl_header #gl_nv .gl_nv_lst li a.gl_nv_lst_mn {
  height: 40px;
}

@media (max-width: 768px) {
  #gl_header {
    border-bottom: none !important;
  }
}

@media (max-width: 1380px) {
  #dm-site header {
    width: 1368px;
  }
}

@media (min-width: 769px) {
  #dm-site {
    /* ------------------------------------------------------------- */
    /* layout / parts                                                */
    /* ------------------------------------------------------------- */
  }

  #dm-site .inner {
    max-width: 1024px;
    width: 100%;
  }

  #dm-site .inner.large_inner {
    max-width: 1194px;
    width: 100%;
  }
}

@media (max-width: 1194px) {
  #dm-site .pc-l {
    display: none !important;
  }

  #dm-site .sp-l {
    display: block !important;
  }
}

@media (max-width: 1024px) {
  #dm-site .pc-m {
    display: none !important;
  }

  #dm-site .sp-m {
    display: block !important;
  }
}

@media (max-width: 768px) {
  #dm-site {
    /* ------------------------------------------------------------- */
    /* layout / parts                                                */
    /* ------------------------------------------------------------- */
    /* --------------------------header ---------------------------- */
    /* header, .header-left a {height: 50px;} */
    /* ----- SP Menu ----- */
    /* --------------------------footer ---------------------------- */
  }

  #dm-site .pc {
    display: none !important;
  }

  #dm-site .sp {
    display: block !important;
  }

  #dm-site .inner {
    width: 90%;
  }

  #dm-site .inner.large_inner {
    width: 90%;
  }

  #dm-site .main {
    width: 100%;
  }

  #dm-site .contents {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  #dm-site aside {
    width: 100%;
    padding: 0 5vw;
  }

  #dm-site section {
    overflow: hidden;
  }

  #dm-site p {
    font-size: 16px;
  }

  #dm-site h2 {
    font-size: 27px;
  }

  #dm-site a:hover {
    opacity: 1;
  }

  #dm-site .btn-b,
  #dm-site input.btn-b {
    width: 90%;
  }

  #dm-site .reverse {
    flex-wrap: wrap;
  }

  #dm-site h2.ttl span {
    font-size: 30px;
  }

  #dm-site h1 {
    font-size: 23px;
  }

  #dm-site .hd-txt,
  #dm-site header {
    width: 100%;
  }

  #dm-site .sub_menu,
  #dm-site .link_btn {
    display: none;
  }

  #dm-site header .fit-contain {
    width: 64%;
  }

  #dm-site .header_70 {
    height: 53px;
    padding: 0 16px;
  }

  #dm-site .contact_button.flex,
  #dm-site .seach_area {
    display: none;
  }

  #dm-site header .header-right {
    display: none;
  }

  #dm-site header .hd-ttl {
    font-size: 10px;
  }

  #dm-site header .hd-logo {
    height: 25px;
    margin-top: 2px;
  }

  #dm-site header .hd-btn {
    height: 70px;
    border-radius: 35px;
  }

  #dm-site .btn-menu {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    top: 0;
    transition: .3s;
    z-index: 11;
  }

  #dm-site .btn-black,
  #dm-site input.btn-black {
    width: 100%;
  }

  #dm-site .menu-trigger {
    display: inline-block;
    transition: all .4s;
  }

  #dm-site .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 23%;
    width: 55%;
    height: 3px;
    background-color: #fff;
  }

  #dm-site .menu-trigger span:nth-of-type(1) {
    top: 13px;
  }

  #dm-site .menu-trigger span:nth-of-type(2) {
    top: 23px;
  }

  #dm-site .menu-trigger span:nth-of-type(3) {
    bottom: 13px;
  }

  #dm-site .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }

  #dm-site .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #dm-site .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(315deg);
  }

  #dm-site .sp-nav-wrap nav {
    transition: all .3s ease;
    transform: translateX(100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #dm-site .sp-nav-wrap nav.active {
    transform: translateX(0);
  }

  #dm-site .sp-nav-wrap .sp-nav {
    width: 100%;
    margin: 0 auto;
  }

  #dm-site .sp-nav-wrap nav .sp-nav a {
    display: block;
    font-weight: bold;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    padding: 19px 0;
    position: relative;
  }

  #dm-site .sp-nav-wrap nav li {
    border-bottom: 1px solid #7fb6ff;
  }

  #dm-site .sp-nav-wrap nav .hd-btn {
    margin-top: 40px;
    margin-bottom: 0;
    background-image: none;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #dm-site .bg-w {
    background-color: #fff;
  }

  #dm-site .sp-nav-wrap .btn {
    color: #fff;
  }

  #dm-site .sp-nav-wrap .btn_bg_red {
    width: 100%;
  }

  #dm-site .search_container {
    width: 80%;
    margin: auto;
    height: 4.2em;
    border-radius: 31px;
    background-position: left 17px top 21px;
    margin: 22px auto;
  }

  #dm-site .search_container input[type="text"] {
    height: 4.2em;
  }

  #dm-site .search_container input[type="submit"] {
    height: 4.2em;
    top: 4px;
  }

  #dm-site .bg-grad .btn {
    padding: 8px 0 0px;
  }

  #dm-site footer li:not(:last-child) {
    border-right: none;
  }

  #dm-site footer p {
    font-size: 12px;
  }

  #dm-site footer img {
    width: 100%;
  }

  #dm-site footer .sp-m {
    margin-top: 20px;
  }
}

#dm-site .kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 243px);
}

#dm-site .kv.h250 {
  height: 250px;
}

#dm-site .kv.h450 {
  height: 450px;
}

#dm-site .slide {
  height: calc(100vh - 243px);
}

#dm-site .kv-txt-wrap {
  color: #fff;
  position: absolute;
  /*width: 792px;*/
  top: 50%;
  left: calc((100% - 1008px) / 2);
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

#dm-site .kv-txt-wrap p {
  font-size: 22px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #dm-site .kv-txt-wrap {
    left: 8px;
  }
}

#dm-site .kv.h250 .kv-txt-wrap,
#dm-site .kv.h450 .kv-txt-wrap {
  width: 100%;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#dm-site .kv-txt-wrap h1,
#dm-site .kv-txt-wrap h2 {
  font-size: 2.75rem;
  margin: 24px 0 35px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

#dm-site .kv.h250 .kv-txt-wrap h2,
#dm-site .kv.h450 .kv-txt-wrap h2 {
  margin: 0;
}

#dm-site .kv-txt-wrap h1 span,
#dm-site .kv-txt-wrap h2 span {
  display: block;
  font-size: 32px;
  margin-bottom: 20px;
}

#dm-site .kv-subtxt {
  font-size: 29px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

#dm-site .kv-link {
  position: relative;
  display: block;
  font-size: 20px;
  width: 328px;
  padding: 25px 30px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: solid 3px #fff;
}

#dm-site .kv-link:after {
  position: absolute;
  content: url(../image2/kv-arw.png);
  top: 34%;
  right: 6%;
}

@media (max-width: 768px) {

  #dm-site .kv,
  #dm-site .slide {
    height: 600px;
  }

  #dm-site .kv-txt-wrap {
    left: auto;
    width: 88%;
    top: 60%;
  }

  #dm-site .kv-txt-wrap h1,
  #dm-site .kv-txt-wrap h2 {
    font-size: 31px;
  }

  #dm-site .kv-subtxt {
    font-size: 17px;
  }

  #dm-site .kv-link-img {
    font-size: 18px;
    width: 200px;
  }

  #dm-site .kv.lower-kv {
    height: 430px;
  }

  #dm-site .kv.lower-kv .bg-kv {
    height: 430px;
  }

  #dm-site .kv.lower-kv.big {
    height: 600px;
  }

  #dm-site .kv.lower-kv.big .bg-kv {
    height: 600px;
  }

  #dm-site .kv.lower-kv.big h2 {
    font-size: 26px;
  }

  #dm-site .kv.lower-kv.big .kv-txt-wrap {
    width: 88%;
  }

  #dm-site .kv.lower-kv.big .kv-txt-wrap p {
    width: 100%;
  }

  #dm-site .kv.lower-kv.big .kv-txt-wrap .flex.left .btn-b {
    margin: 0;
    margin-right: 0;
    margin-top: 10px;
  }

  #dm-site .kv.lower-kv.big .kv-txt-wrap .btns {
    margin-top: 30px;
  }

  #dm-site .kv-link {
    font-size: 20px;
    width: 100%;
  }
}

#dm-site .link-list {
  margin-top: 30px;
  margin-bottom: 80px;
}

#dm-site .link-list .link {
  position: relative;
  display: block;
  width: 50%;
  height: 200px;
  padding: 50px 40px;
  color: #fff;
  font-size: 18px;
  background-size: 116%;
  background-position: 50% 50%;
  background-size: cover;
}

#dm-site .link-list .link:after {
  content: url(../image2/link-list-arw.png);
  position: absolute;
  top: 17%;
  right: 10%;
}

#dm-site .link-list h2 {
  font-size: 40px;
  margin-bottom: 7px;
  text-align: left;
}

#dm-site .link-list .link.link01 {
  background-image: url(../image2/link-listimg01.png);
}

#dm-site .link-list .link.link02 {
  background-image: url(../image2/link-listimg02.png);
}

@media (max-width: 768px) {
  #dm-site .link-list {
    margin-bottom: 50px;
  }

  #dm-site .link-list .link {
    padding: 28px 28px;
    width: 100%;
    height: 300px;
  }

  #dm-site .link-list .link:after {
    top: inherit;
    bottom: 20px;
    right: 6%;
  }
}

#dm-site .slick-slide img {
  width: 100%;
}

#dm-site .comming a {
  pointer-events: none;
}

#dm-site .cp-BreadcrumbsHeader {
  border-bottom: none !important;
}

#dm-site .objective {
  background-color: #F5F6F8;
}

#dm-site .objective .txt-area p {
  line-height: 1.6;
  margin-top: 2em;
}

#dm-site .objective h3 {
  font-size: 28px;
  margin-top: 50px;
}

#dm-site .objective ul {
  margin-top: 27px;
}

#dm-site .objective li {
  width: 318px;
  padding: 35px 30px;
  border: solid 2px #D31D3E;
}

#dm-site .objective h4 {
  color: #D31D3E;
  font-size: 26px;
}

#dm-site .objective li img {
  margin: 20px auto 30px;
}

@media (max-width: 768px) {
  #dm-site .objective li {
    width: 100%;
  }

  #dm-site .objective li:not(:last-child) {
    margin-bottom: 30px;
  }
}

#dm-site .kv-txt-wrap .sub_title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 4px;
}

#dm-site .message__mv {
  position: relative;
  margin-bottom: 35px;
}

#dm-site .message__mv .message__title {
  text-align: left;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

#dm-site .message__mv .message__title h2 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

#dm-site .message__mv .message__title p span {
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 768px) {
  #dm-site .message__mv .message__title {
    position: static;
    transform: none;
    padding: 10px;
  }

  #dm-site .message__mv img {
    width: 100%;
  }

  #dm-site .message__mv .message__title h2 {
    font-size: 22px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }

  #dm-site .message__mv .message__title p span {
    font-weight: bold;
    font-size: 18px;
    display: block;
  }
}

#dm-site #readMoreToggle.close {
  background-image: none !important;
}

#dm-site .buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/* ------------------------------------------------------------- */
/* navi                                                          */
/* ------------------------------------------------------------- */
.navi {
  border-top: solid 1px #ECECEE;
  border-bottom: solid 1px #ECECEE;
  background-color: #fff;
  font-weight: bold;
}

.navi * {
  box-sizing: border-box;
}

.navi .nav_ttl {
  display: none;
}

.navi ul {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0;
  list-style: none;
  justify-content: space-between;
}

.navi li {
  list-style: none;
  text-align: center;
}

.navi li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.navi .nav-btn {
  padding: 12px 5px 14px;
  font-size: 14px;
  border-top: solid 5px #fff;
  text-align: center;
}

.navi .contact-link {
  background-color: #000;
  color: #fff;
  font-size: 15px;
  padding: 25px 16px;
}

.navi .on {
  border-bottom: solid 5px #D31D3E;
}

@media (max-width: 768px) {

  /*.navi{
  	overflow-x: scroll;
  	-webkit-overflow-scrolling: touch;
  }
  .navi::-webkit-scrollbar{
    width: 15px;
  }
  .navi::-webkit-scrollbar-thumb{
  	background: #c1c1c1;
  }
  .navi::-webkit-scrollbar-track-piece:start{
  	background: #f1f1f1;
  }
  .navi::-webkit-scrollbar-track-piece:end{
  	background: #f1f1f1;
  }*/
  .navi.only-sp {
    border: none;
    margin: 15px 0;
    z-index: 10;
    position: relative;
    height: 43px;
  }

  .navi.only-sp .nav-wrapper {
    margin: 0 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    height: auto;

  }

  .navi.only-sp .nav_ttl {
    display: block;
    padding: 10px;
    font-weight: bold;
    position: relative;
    background: url("../image2/icon_nav_arrow_open.png") no-repeat;
    background-position: right 15px center;
  }

  .navi.only-sp .nav_ttl.ttl_close {
    background: url("../image2/icon_nav_arrow_close.png") no-repeat;
    background-position: right 15px center;
  }

  .navi.only-sp ul {
    width: 100%;
    display: none;
    background: #fff;
  }

  .navi.only-sp ul li {
    width: 100%;
    list-style: none;
    margin-top: 0;
    border-top: 1px dotted #ccc;
  }

  .navi.only-sp ul li br {
    display: none;
  }

  .navi.only-sp ul li a.contact-link {
    padding: 10px;
    text-align: left;
    text-decoration: none !important;
    border: none;
    background-color: #fff;
    color: #000;
  }

  .navi.only-sp ul li a.nav-btn {
    padding: 10px;
    text-align: left;
    text-decoration: none !important;
    border: none;
    font-size: 16px;
  }

  .navi.only-sp ul li a.nav-btn.on {
    border: none;
    color: #D31D3E;
    background: #FFF;
  }
}

@media all and (min-width: 768px) {
  .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }
}

.cp-BreadcrumbsHeader {
  min-height: auto;
  padding-bottom: 7px;
}

.cp-BreadcrumbsHeader ul {
  margin-top: 0;
  padding: 4px 0 6px;
}

/*211115*/


#dm-site .kv-txt-wrap .kv_h1 {
  font-size: 2.75rem;
  margin: 0;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .3);
  font-weight: bold;
}

#dm-site .kv-txt-wrap .kv_h1 span {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: normal;
  display: block;
}

@media (max-width: 768px) {
  #dm-site .kv-txt-wrap .kv_h1 {
    font-size: 31px;
  }
}

#dm-site h1.h1_copy {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: bold;
}

#dm-site h1.h1_copy span.sub__title {
  font-size: 22px;
  display: block;
}

@media (max-width: 768px) {
  #dm-site .case-detail h2 {
    font-size: 27px;
  }
}

#dm-site .strength {
  background-image: url(../image2/strength_bg.png);
  background-position: top;
  margin-bottom: 130px;
  background-repeat: no-repeat;
  padding-top: 10em;
}

#dm-site .strength h2 {
  line-height: 1;
}

#dm-site .strength .txt-box {
  width: 57.32%;
  background-color: #fff;
  padding: 60px 75px;
  line-height: 1.5;
}

#dm-site .strength img {
  width: 42.68%;
}

#dm-site .strength h3 {
  width: 312px;
  font-size: 24px;
  margin-bottom: 30px;
}

#dm-site .strength .txt-box p {
  line-height: 1.9;
}

#dm-site .strength .btn-black {
  margin: 30px 0 0;
  text-align: left;
  padding-left: 40px;
}

#dm-site .text-link a {
  color: #0000cc !important;
  position: relative;
  padding-left: 24px;
  background-position: 0 -0.15em;
  background-image: url(/-/Media/Ricoh/Common/cmn_v1/img/icon_s_right_01.png);
  background-repeat: no-repeat;
  display: inline-block;
}

#dm-site .text-link a:hover {
  text-decoration: underline;
  opacity: 1;
}

#dm-site .txt-area.flex_item.top_txt_pd {
  padding: 0 46px 0 0;
}

#dm-site a.btn-black.m-left {
  margin: 20px 0 0;
}

@media (max-width: 768px) {
  #dm-site .strength .fit-contain {
    width: 90%;
    height: 336px;
  }

  #dm-site .strength .txt-box {
    width: 98%;
    padding: 30px 15px;
  }

  #dm-site .strength h2 {
    text-align: center;
  }

  #dm-site .strength h3 {
    width: 100%;
  }

  #dm-site h1.h1_copy {
    font-size: 27px;
  }

  #dm-site .txt-area.flex_item.top_txt_pd {
    padding: 20px 0;
  }

}

#dm-site .kv-txt-wrap .kv_h1 {
  font-size: 2.75rem;
  margin: 0 auto;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .3);
  font-weight: bold;
}

#dm-site .kv-txt-wrap .kv_h1 span {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: normal;
  display: block;
}

@media (max-width: 768px) {
  #dm-site .kv-txt-wrap .kv_h1 {
    font-size: 31px;
  }
}



#home .section-home-visual .carousel-visual .slick-slide .carousel-visual__image.paused {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}


/* 230125_floating-cta */
.nav-floating {
  position: fixed;
  right: 4px;
  width: 220px;
  top: 324px;
  box-shadow: 0 0 20px rgb(0 0 0 / 30%);
  z-index: 50;
  transition: 0.7s;
}

.fnav {
  background: #fff;
}

.fnav li {
  padding: 10px;
}

.fnav li+li {
  border-top: 1px dotted #ccc;
}

.fnav li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000;
}

.fnav li a:hover {
  text-decoration: none;
  color: #194cc8;
}

.fnav li a span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.0;
}

.fnav li a span+span {
  padding-left: 10px;
}

.pnclose {
  right: -150px;
}

#fmenu:hover {
  right: 4px;
}
