@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap");

*,
:after,
:before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: 0 0;
  vertical-align: baseline;
  font-size: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
  padding-top: 180.27px;
  padding-bottom: 86px;
  position: relative;

  font-family: "Noto Sans JP", "メイリオ", Meiryo, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "ＭＳ Ｐゴシック", sans-serif;

  z-index: 2;
}

@media (max-width: 1300px) {
  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 1080px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 93px;
  }
}

@media (max-width: 680px) {
  body {
    padding-top: 60px;
  }
}

@media (max-width: 450px) {
  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 350px) {
  body {
    padding-top: 175.91px;
    padding-bottom: 104px;
  }
}

a,
a:link,
a:visited {
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  border-style: none;

  vertical-align: middle;
}

.site_header {
  padding: 5px 0;
  background-color: #fff;
  position: fixed;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  transition: .3s;
  top: 0;
  z-index: 99999
}

.site_header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: unset;
}

.site_header .logo {
  max-width: 165px;
  position: relative
}

.site_header .logo img {
  max-width: 100%
}

.site_header .logo a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1
}

a.contact_icon {
  position: absolute;
  width: 70px;
  right: 135px;

  border: 2px solid #e9482d;
  border-radius: 50%;
}

@media (min-width: 1100px) {
  .site_header .logo a {
    transition: .3s
  }

  .site_header .logo a:hover {
    background-color: rgba(255, 255, 255, 0.3)
  }
}

.site_header .hamberger-navbtn {
  position: relative;
  width: 60px;
  height: 60px;
  top: 0;
  right: 10px;
  margin: 10px 0;

  cursor: pointer;
}

.site_header .hamberger-navbtn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 46%;
  left: 50%;
  transition: transform .2s;
  transform: translate(-50%, -50%);
  background-color: #DB472F
}

.site_header .hamberger-navbtn span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 8px))
}

.site_header .hamberger-navbtn span:nth-child(4) {
  transform: translate(-50%, calc(-50% + 8px))
}

.site_header .hamberger-navbtn.active span:nth-child(1),
.site_header .hamberger-navbtn.active span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.site_header .hamberger-navbtn.active span:nth-child(3),
.site_header .hamberger-navbtn.active span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(45deg)
}

.site_header .hamberger-nav {
  display: none;
  position: absolute;
  width: 350px;
  top: calc(100% + 5px);
  right: 40px;
  text-align: center;
  overflow: hidden;
  padding: 12px;
  padding-top: 0;
  font-weight: 600;
}

.site_header .hamberger-nav ul {
  background-color: #ebf8fd;
  color: #034067;
}

.site_header .hamberger-nav ul li a {
  display: block;
  padding: 10px 40px;

  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-align: start;
  transition: background-color .2s, color .2s;
}

.site_header .hamberger-nav ul li a::before {
  content: ">";
  display: inline-block;
  position: relative;
  top: -3.8px;
  padding-right: 15px;
  color: #db472f;
  font-size: 10px
}

.site_header .hamberger-nav ul li a:hover {
  background-color: #023E64;
  color: #fff;
  text-decoration-line: none;
  transition: color .2s
}

.site_header .hamberger-nav ul li a:hover::before {
  color: #fff
}

.site_header .hamberger-nav ul li:first-child a {
  padding-top: 15px
}

.site_header .hamberger-nav ul li:last-child a {
  padding-bottom: 15px
}

.site_header.fixed,
.site_header .hamberger-nav ul {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3)
}

@media (max-width: 767px) {
  .site_header .logo {
    max-width: 140px;
  }

  .site_header .hamberger-navbtn {
    height: 50px;
    right: -10px;
    margin: 0;
  }

  .site_header .hamberger-navbtn span {
    top: 50%;
  }

  .site_header .hamberger-nav {
    width: 100%;
    padding: 0 0 12px;
    right: 0;
  }

  .site_header .hamberger-nav ul li a,
  .site_header .hamberger-nav ul li:first-child a,
  .site_header .hamberger-nav ul li:last-child a {
    padding: 12px 40px;
    font-size: 14px;
  }

    a.contact_icon {
      width: 50px;
      right: 95px;
    }
}

@media (max-width: 350px) {
  .site_header {
    padding: 10px 0;
  }

  .site_header .logo {
    max-width: 100px;
  }
}

span.red {
  color: #EB5741;
}

span.nowrap {
  white-space: nowrap;
  display: inline-block;
}

a.dcw-btn {
  background: #023E64;
}

#breadcrumb.dcw-breadcrumb {
  background: transparent;
  padding-top: 0;
}

.hasbg {
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hasbg img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.inner {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 40px;
}

.inner.narrow {
  max-width: 1280px;
}

footer .inner {
  width: 100%;
  max-width: 1280px;
  padding: 0;
}

.dcw-wrapper {
  color: #222;
  font-size: 18px;
}

.dcw-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}

.dcw-ttl:before {
  content: "";
  display: block;
  background: url(../img/ttl-before.webp) 100% 100%/contain no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.dcw-ttl.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dcw-ttl.center:after {
  content: "";
  display: block;
  background: url(../img/ttl-after.webp) 100% 100%/contain no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 15px;
}

h2.dcw-ttl {
  color: #222;
}

.dcw-ttl br {
  display: none;
}


.dcw-text {
  line-height: 1.8;
  margin: 20px 0;
  text-align: center;
  font-size: 18px;
}

.dcw-text .small {
  font-size: 14px;
}

.dcw-btn {
  border: 1px solid #023E64;
  padding: 12px 30px;
  padding-right: 100px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: block;
  background: #023E64;
  text-align: center;
}

.dcw-btn svg {
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 8px;
}

.dcw-btn svg path {
  stroke: #fff;
}

.dcw-btn:hover {
  background: none;
  color: #023E64;
}

.dcw-btn:hover svg path {
  stroke: #333;
}

.dcw-btn.center {
  padding: 12px 40px;
  text-align: center;
  width: 240px;
}

.normalmove {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.normalmove.normalanimate {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}



.dcw-hero {
  position: relative;
}

.dcw-hero .animate-area:after,
.dcw-hero .animate-area:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -60px;
  width: 100%;
  height: 105%;
  z-index: -1;
}

.dcw-hero .animate-area:before {
  height: 110%;
  background: #023E64;
  -webkit-transform: rotate(-1deg) translateX(-2%);
  transform: rotate(-1deg) translateX(-2%);
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.dcw-hero .animate-area:after {
  background: #fff;
  -webkit-transform: rotate(5deg) translate(-7%, -30px);
  transform: rotate(5deg) translate(-7%, -30px);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.dcw-hero .hero-wrapper .pic {
  display: block;
  width: 85%;
  max-width: 1600px;
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.dcw-hero .hero-wrapper .pic:after {
  content: "";
  display: block;
  padding-top: 36%;
}

.dcw-hero .hero-wrapper .slogan {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 50px 0 100px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.dcw-hero .hero-wrapper .slogan .en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 5em;
  color: #023E64;
  opacity: 0.09;
  line-height: 1.2;
  -webkit-transform: translate(8%, -54%);
  transform: translate(8%, -54%);
  font-weight: bold;
  z-index: -1;
}

.dcw-hero .hero-wrapper .slogan h1 {
  color: unset;
  font-size: 100%;
}

.dcw-hero .hero-wrapper .slogan .name {
  font-size: 1.5em;
  line-height: 1.2;
}

.dcw-hero .hero-wrapper .slogan .ttl {
  font-size: 3em;
  line-height: 1.2;
  color: #023E64;
  margin: 10px 0 20px;
}

.dcw-hero.active .animate-area:before {
  opacity: 1;
  -webkit-transform: rotate(-3deg) translateX(-2%);
  transform: rotate(-3deg) translateX(-2%);
}

.dcw-hero.active .animate-area:after {
  -webkit-transform: rotate(3deg) translate(-7%, -30px);
  transform: rotate(3deg) translate(-7%, -30px);
  opacity: 1;
}

.dcw-hero.active .hero-wrapper .pic {
  opacity: 1;
}

.dcw-hero.active .hero-wrapper .slogan {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.dcw-trouble {
  position: relative;
  margin: -10px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
}

.dcw-trouble .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
}

.dcw-trouble .trouble-content {
  width: 55%;
  font-weight: bold;
  position: relative;
  margin-top: 20%;
}

.dcw-trouble .trouble-content:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 102%;
  height: 102%;
  background: #023E64;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.dcw-trouble .trouble-content .text {
  background: #fff;
  padding: 80px 120px 0;
  line-height: 1.4;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.dcw-trouble .trouble-content .ttl {
  font-size: 34px;
  margin-bottom: 40px;
}

.dcw-trouble .trouble-content .sub-ttl {
  color: #333333;
  font-size: 24px;
  padding-bottom: 25px;
  position: relative;
}

.dcw-trouble .trouble-content .sub-ttl:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 4px;
  background: #C44D3B;
}

.dcw-trouble .trouble-content .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.dcw-trouble .trouble-content ul {
  padding: 30px 0 90px;
  font-size: 16px;
}

.dcw-trouble .trouble-content ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 12px 0;
}

.dcw-trouble .trouble-content ul li:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: url(../img/li-before.webp) 100% 100%/contain no-repeat;
}

.dcw-trouble .trouble-content .icon {
  width: 180px;
  margin-left: 70px;
}

.dcw-trouble .trouble-content .icon img {
  width: 100%;
}

.dcw-trouble .trouble-content .normalmove {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.dcw-trouble .trouble-content.active:before {
  opacity: 1;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

.dcw-trouble .trouble-content.active .text {
  opacity: 1;
}

.dcw-dcareer {
  padding: 180px 0 0;
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.dcw-dcareer:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 60px;
  width: 80%;
  height: calc(100% - 60px);
  background: #023E64;
  opacity: 0.1;
  z-index: -1;
}

.dcw-dcareer .pic {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: calc(100% - 60px);
}

.dcw-dcareer .pic img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.dcw-dcareer .content {
  width: 50%;
  padding: 80px 100px;
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.dcw-dcareer .content:after {
  content: "";
  display: block;
  position: absolute;
  left: -14%;
  top: 0;
  width: 40%;
  height: 101%;
  background: #fff;
  -webkit-transform: skewX(25deg);
  transform: skewX(25deg);
  z-index: -1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

.dcw-dcareer .content div {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.dcw-dcareer.active .content:after {
  width: 120%;
  opacity: 1;
}

.dcw-dcareer.active .pic img {
  -webkit-filter: blur(0);
  filter: blur(0);
}

.dcw-recruit {
  margin: 100px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 50px 80px;
  z-index: 2;
}

.dcw-recruit .pic {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dcw-recruit .content {
  width: 60%;
  max-width: 850px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  font-size: 17px;
}

.dcw-recruit .content .sub-ttl {
  font-size: 1.2em;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}

.dcw-recruit .content .ttl {
  font-size: 1.8em;
  margin: 20px 0;
}

.dcw-recruit .content .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dcw-recruit .content .btns .dcw-btn {
  text-align: left;
  background: none;
  border-color: #fff;
}

.dcw-recruit .content .btns .dcw-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.dcw-recruit .content .btns .dcw-btn:hover svg path {
  stroke: #fff;
}

.dcw-recruit .content .btns .dcw-btn:nth-child(1) {
  margin-right: 25px;
}

.dcw-recruit.no-margin {
  margin: 0;
}

.dcw-point {
  padding-top: 100px;
}

.dcw-point .point-items {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dcw-point .point-items .item {
  width: calc(33.3333% - 30px);
  font-size: 16px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dcw-point .point-items .item:not(:nth-child(3n)) {
  margin-right: 45px;
}

.dcw-point .point-items .item .name {
  text-align: center;
  font-size: 19px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 48px;
  font-weight: 500;
}

.dcw-point .point-items .item .name span {
  font-size: 1.8em;
  display: block;
  padding-top: 8px;
}

.dcw-point .point-items .item .name:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background: #E84D39;
}

.dcw-point .point-items .item .ttl {
  margin: 30px 0;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
}

.dcw-point .point-items .item .btn {
  padding: 40px 20px 0;
}

.dcw-steps {
  padding: 80px;
  margin-top: 40px;
  position: relative;
}

.dcw-steps:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 40px;
  width: 80%;
  height: 600px;
  background: #023E64;
  -webkit-transform: rotate(0) translateX(-20px);
  transform: rotate(0) translateX(-20px);
  z-index: -1;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dcw-steps:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 50%;
  background: #023E64;
  opacity: 0.1;
  z-index: -1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

.dcw-steps .steps-content {
  padding: 60px 80px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.dcw-steps .steps-content .dcw-ttl {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.dcw-steps .steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 60px 0;
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.dcw-steps .steps-item .text {
  width: 43%;
}

.dcw-steps .steps-item .text .num {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.dcw-steps .steps-item .text .num .icon {
  color: #E84D39;
  font-size: 1.4em;
  padding: 0 3px;
}

.dcw-steps .steps-item .text .num .large {
  font-size: 1.6em;
  padding-left: 20px;
  position: relative;
}

.dcw-steps .steps-item .text .num .large:before {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  top: 58%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/colon.webp) left center/contain no-repeat;
}

.dcw-steps .steps-item .text .ttl {
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

.dcw-steps .steps-item .text .ttl .orange {
  font-style: normal;
  color: #E84D39;
}

.dcw-steps .steps-item .text .txt {
  margin: 20px 0 10px;
  font-size: 16px;
  line-height: 1.8;
}

.dcw-steps .steps-item .text .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1;
}

.dcw-steps .steps-item .text .tags span {
  margin-right: 10px;
  font-size: 14px;
  padding: 5px 5px;
  color: #023E64;
  border: 1px solid #023E64;
}

.dcw-steps .steps-item .text .ex {
  margin-top: 30px;
  font-size: 16px;
}

.dcw-steps .steps-item .text .ex .large {
  font-size: 1.2em;
  color: #023E64;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #023E64;
}

.dcw-steps .steps-item .pic {
  width: 52%;
  margin: 10px 0;
}

.dcw-steps .steps-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.dcw-steps.active:before {
  -webkit-transform: rotate(-2deg) translateX(-20px);
  transform: rotate(-2deg) translateX(-20px);
}

.dcw-steps.active:after {
  width: 86%;
}

.dcw-steps.active .steps-content {
  opacity: 1;
  background: #fff;
}

.dcw-steps.active .steps-content .dcw-ttl {
  opacity: 1;
}

.dcw-steps.active .steps-item.normalanimate {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.dcw-program {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.dcw-program .program-ttl {
  line-height: 1;
  color: #023E64;
  font-weight: bold;
  position: relative;
}

.dcw-program .program-ttl:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 120%;
  background: #fff;
  -webkit-transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
  transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
}

.dcw-program .program-ttl .jp {
  font-size: 32px;
  position: relative;
}

.dcw-program .program-ttl .jp:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background: #023E64;
  opacity: 0.4;
  z-index: -1;
}

.dcw-program .program-ttl .jp h2 {
  display: inline-block;
  background: #fff;
  padding-right: 20px;

  color: #023E64;
  font-size: 100%;
}

.dcw-program .program-ttl .en {
  margin-top: 5px;
  height: 84px;

  font-size: 70px;
  opacity: 0.09;
}

.dcw-program .program-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 40px 0 0;
  line-height: 1.8;
}

.dcw-program .program-content .inner {
  margin: 0;
}

.dcw-program .program-content .pic {
  position: relative;
  z-index: 2;
}

.dcw-program .program-content .pic:before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: -10%;
  background: #023E64;
  width: 100%;
  height: 94%;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  z-index: -1;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dcw-program .program-content .pic figure {
  width: 100%;
  overflow: hidden;
}

.dcw-program .program-content .pic img {
  opacity: 0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: opacity 0.7s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.7s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.7s;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.7s, -webkit-transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dcw-program .program-content .text {
  padding: 20px;
  padding-right: 80px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.dcw-program:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 40%;
  background: #023E64;
  opacity: 0.1;
  z-index: -1;
}

.dcw-program.active .program-ttl:after {
  width: 0;
}

.dcw-program.active .program-content .pic:before {
  opacity: 1;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.dcw-program.active .program-content .pic img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.dcw-program.active .program-content .text {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.dcw-example {
  position: relative;
  padding-bottom: 6%;
}

.dcw-example:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: #023E64;
  opacity: 0.1;
  z-index: -1;
}

.dcw-example .example-content {
  padding: 80px;
  background: #fff;
}

.dcw-example .example-content .example-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

.dcw-example .example-content .example-items .item {
  width: calc(33.3333% - 30px);
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
  overflow: hidden;
}

.dcw-example .example-content .example-items .item .ttl {
  font-weight: bold;
  position: relative;
  padding-bottom: 30px;
  font-size: 1.4em;
}

.dcw-example .example-content .example-items .item .ttl:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 3px;
  height: 20px;
  background: #E84D39;
}

.dcw-example .example-content .example-items .item .pic {
  margin: 20px 0;
  position: relative;
}

.dcw-example .example-content .example-items .item .pic:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.dcw-example .example-content .example-items .item .pic:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  background: #27316F;
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.dcw-example .example-content .example-items .item .pic img {
  opacity: 0;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.dcw-example .example-content .example-items .item:not(:nth-child(3n)) {
  margin-right: 45px;
}

.dcw-example .example-content .example-items .item:nth-child(2) .pic:before {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.dcw-example .example-content .example-items .item:nth-child(2) .pic:after {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.dcw-example .example-content .example-items .item:nth-child(2) .pic img {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.dcw-example .example-content .example-items .item:nth-child(3) .pic:before {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

.dcw-example .example-content .example-items .item:nth-child(3) .pic:after {
  -webkit-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

.dcw-example .example-content .example-items .item:nth-child(3) .pic img {
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
}

.dcw-example .example-content .example-items.active .item .pic:before {
  width: 0;
}

.dcw-example .example-content .example-items.active .item .pic:after {
  -webkit-transform: translateX(101%);
  transform: translateX(101%);
}

.dcw-example .example-content .example-items.active .item .pic img {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.dcw-office {
  padding: 80px 0;
}

.dcw-office .office-items .item {
  margin: 60px 0 0;
  font-weight: 500;
  line-height: 1.4;
}

.dcw-office .office-items .item .ttl {
  position: relative;
  font-size: 24px;
  color: #222;
  font-weight: bold;
}

.dcw-office .office-items .item .ttl:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #222;
  z-index: -1;
}

.dcw-office .office-items .item .ttl span {
  padding-right: 20px;
  display: inline-block;
  background: #fff;
}

.dcw-office .office-items .item .name {
  margin: 10px 0;
  font-size: 19px;
  padding-left: 15px;
  position: relative;
}

.dcw-office .office-items .item .name:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../img/colon.webp) left center/contain no-repeat;
}

.dcw-office .office-items .item .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dcw-office .office-items .item .infos .map {
  width: 42%;
  position: relative;
}

.dcw-office .office-items .item .infos .text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 40px 60px;
  font-size: 16px;
  line-height: 1.8;
}

.dcw-office .office-items .item .infos .text .tel {
  font-weight: bold;
  font-size: 1.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dcw-office .office-items .item .infos .text .tel:before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background: url(../img/office-tel.webp) top center/contain no-repeat;
  margin-right: 10px;
}

.dcw-office .office-items .item .infos .text .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 25px;
}

.dcw-office .office-items .item .infos .text .address:before {
  content: "";
  display: block;
  width: 24px;
  height: auto;
  background: url(../img/office-address.webp) top center/contain no-repeat;
  margin-right: 13px;
  margin-left: 3px;
}

.dcw-office .office-items .item .infos .text .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dcw-office .office-items .item .infos .text .btns .dcw-btn:nth-child(1) {
  margin-right: 15px;
}

.dcw-contact {
  background: rgba(2, 62, 100, 0.1);
  padding: 80px 0;
}

.dcw-contact .contact-form {
  padding: 20px 80px;
  font-size: 16px;
}

.dcw-contact .contact-form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  padding: 20px 0;
}

.dcw-contact .contact-form dl.dcw_content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dcw-contact .contact-form dt {
  width: 300px;
  padding: 5px 0;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dcw-contact .contact-form dt span {
  display: inline-block;
  margin-right: 10px;
  background: #84919E;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 10px;
  white-space: nowrap;
}

.dcw-contact .contact-form dt span.must {
  background: #E84D39;
}

.dcw-contact .contact-form dd {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  color: #666;
  font-size: 1em;
}

.dcw-contact .contact-form dd input,
.dcw-contact .contact-form dd textarea,
.dcw-contact .contact-form dd select {
  width: 100%;
  height: auto;
  padding: 12px 20px;
  background: #fff;
  margin: 0;

  font-family: inherit;
  font-size: 1.6rem;
  border: 1px solid #707070;
}

.dcw-contact .contact-form dd input[type='radio'] {
  width: auto;
  margin-right: 5px;
}

.dcw-contact .contact-form dd input[type='radio']:not(:first-child) {
  margin-left: 20px;
}

.dcw-contact .contact-form dd textarea {
  line-height: 2;
}

.dcw-contact .contact-form dd select {
  appearance: none;
  -webkit-appearance: none;
}

.dcw-contact .contact-form dd span.dcw_office {
  position: relative;
}

.dcw-contact .contact-form dd span.dcw_office:after {
  content: "";
  display: block;
  position: absolute;
  top: .65em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 0;
  height: 0;
  border-top: 7px solid #222;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  pointer-events: none;
  opacity: 0.8;
}

.dcw-contact .contact-form dd.choose label:not(:first-of-type) {
  margin: 0 0 0 1em;
}

.dcw-contact .contact-form .time {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.dcw-contact .contact-form .time dt {
  width: 100%;
}

.dcw-contact .contact-form .time dd {
  width: 100%;
}

.dcw-contact .contact-form .time dd div {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dcw-contact .contact-form .time dd div span {
  display: block;
  width: 300px;
  padding-right: 20px;
  text-align: right;
}

.dcw-contact .contact-form .time dd input {
  width: 280px;
  max-width: 280px;
}

.dcw-contact .contact-form .privacy {
  padding: 40px 0;
  text-align: center;
  line-height: 2;
}

.dcw-contact .contact-form .privacy a {
  color: #FF4B00;
  text-decoration: underline;
  padding: 0 3px;
}

.dcw-contact .contact-form .send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dcw-contact .contact-form .send input {
  display: block;

  width: 240px;
  height: 46px;
  padding: 10px 30px 12px;
  margin: 0 10px;

  font-family: inherit;
  text-align: center;
  color: #fff;
  background: #E9482D;
  border: 1px solid #E9482D;
  border-radius: 10px;

  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.dcw-contact .contact-form .send input:disabled {
  background: #ccc;
  border: #ccc;
}

.dcw-contact .contact-form .reset input {
  background: #fff;
  color: #E9482D;
}

.dcw-contact .contact-form .send input:disabled {
  background: #ccc;
  border: #ccc;
}

.dcw-contact .contact-form .send input:hover {
  opacity: 0.8;
}

.dcw-contact .contact-form .wpcf7-response-output {
  background: transparent;
}

.dcw-contact .contact-form .chose-office {
  display: none;
}

.dcw-text.confirm {
  display: none;
}

.custom-wpcf7c-confirmed .dcw-text {
  display: none;
}

.custom-wpcf7c-confirmed .dcw-text.confirm {
  display: block;
}

/* query */
@media (max-width: 1580px) {
  .dcw-wrapper {
    font-size: 17px;
  }

  .dcw-ttl {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .dcw-text {
    font-size: 17px;
  }

  .dcw-hero .hero-wrapper .slogan {
    padding: 40px 0 100px;
    font-size: 17px;
  }

  .dcw-hero .hero-wrapper .slogan .en {
    font-size: 4em;
    -webkit-transform: translate(20px, -50%);
    transform: translate(20px, -50%);
  }

  .dcw-trouble .trouble-content {
    width: 60%;
  }

  .dcw-trouble .trouble-content .text {
    padding: 60px 100px 0;
  }

  .dcw-trouble .trouble-content .ttl {
    font-size: 32px;
  }

  .dcw-trouble .trouble-content .sub-ttl {
    font-size: 22px;
  }

  .dcw-trouble .trouble-content ul {
    padding: 30px 0 60px;
    font-size: 15px;
  }

  .dcw-trouble .trouble-content ul li:before {
    width: 16px;
    height: 16px;
  }

  .dcw-trouble .trouble-content .icon {
    width: 160px;
  }

  .dcw-dcareer .pic {
    width: 62%;
    height: calc(100% - 80px);
  }

  .dcw-dcareer .content {
    padding: 80px 80px;
  }

  .dcw-recruit .content {
    font-size: 15px;
  }

  .dcw-point .point-items {
    padding: 40px 0;
  }

  .dcw-point .point-items .item {
    font-size: 15px;
  }

  .dcw-point .point-items .item .name {
    font-size: 16px;
  }

  .dcw-point .point-items .item .ttl {
    font-size: 20px;
  }

  .dcw-point .point-items .item .btn {
    padding: 25px 20px 0;
  }

  .dcw-steps .steps-content {
    padding: 60px;
  }

  .dcw-steps .steps-item .text .num {
    font-size: 16px;
  }

  .dcw-steps .steps-item .text .ttl {
    font-size: 20px;
  }

  .dcw-steps .steps-item .text .txt {
    font-size: 15px;
  }

  .dcw-steps .steps-item .text .tags span {
    font-size: 12px;
  }

  .dcw-steps .steps-item .text .ex {
    font-size: 15px;
  }

  .dcw-program .program-ttl .jp {
    font-size: 28px;
  }

  .dcw-program .program-ttl .en {
    height: 75px;
    font-size: 64px;
  }

  .dcw-program .program-content {
    padding: 39px 0 0;
  }

  .dcw-example .example-content {
    padding: 60px;
  }

  .dcw-example .example-content .example-items {
    margin-top: 40px;
  }

  .dcw-example .example-content .example-items .item {
    font-size: 15px;
  }

  .dcw-office .office-items .item {
    margin: 40px 0 0;
  }

  .dcw-office .office-items .item .ttl {
    font-size: 22px;
  }

  .dcw-office .office-items .item .name {
    font-size: 18px;
  }

  .dcw-office .office-items .item .infos .text {
    font-size: 15px;
    padding: 40px 40px;
  }

  .dcw-contact {
    padding: 60px 0;
  }

  .dcw-contact .contact-form {
    padding: 20px 60px;
  }

  .dcw-contact .contact-form dl {
    font-size: 15px;
  }
}

@media (max-width: 1280px) {
  .inner {
    padding: 0 20px;
  }

  .dcw-btn {
    padding: 12px 25px;
    padding-right: 80px;
  }

  .dcw-hero .hero-wrapper .slogan {
    font-size: 15px;
    padding: 40px 0 80px;
  }

  .dcw-dcareer .content {
    padding: 60px;
  }

  .dcw-recruit .content {
    font-size: 14px;
  }

  .dcw-point .point-items .item {
    font-size: 14px;
  }

  .dcw-point .point-items .item .name {
    font-size: 15px;
    padding-bottom: 35px;
  }

  .dcw-point .point-items .item .name:after {
    width: 2px;
    height: 22px;
  }

  .dcw-point .point-items .item .ttl {
    margin: 20px 0;
    font-size: 18px;
  }

  .dcw-point .point-items .item .btn {
    padding: 20px 0 0;
  }

  .dcw-steps {
    padding: 80px 40px;
  }

  .dcw-steps .steps-content {
    padding: 60px 45px;
  }

  .dcw-steps .steps-item .text .num {
    font-size: 15px;
  }

  .dcw-steps .steps-item .text .num .large:before {
    width: 10px;
    height: 10px;
  }

  .dcw-steps .steps-item .text .ttl {
    font-size: 18px;
  }

  .dcw-steps .steps-item .text .txt {
    font-size: 14px;
  }

  .dcw-steps .steps-item .text .ex {
    font-size: 14px;
  }

  .dcw-program {
    padding: 70px 0;
  }

  .dcw-program .program-content {
    padding: 25px 0 0;
  }

  .dcw-program .program-ttl .jp {
    font-size: 25px;
  }

  .dcw-program .program-ttl .en {
    height: 61px;
    font-size: 52px;
  }

  .dcw-example .example-content {
    padding: 40px;
  }

  .dcw-example .example-content .example-items .item {
    font-size: 14px;
  }

  .dcw-example .example-content .example-items .item .ttl {
    padding-bottom: 25px;
  }

  .dcw-example .example-content .example-items .item .pic {
    margin: 20px 0 15px;
  }

  .dcw-contact .contact-form {
    font-size: 15px;
    padding: 20px 40px;
  }

  .dcw-contact .contact-form dl {
    font-size: 14px;
  }

  .dcw-contact .contact-form dt {
    width: 240px;
  }

  .dcw-contact .contact-form .time dd div span {
    width: 240px;
  }
}

@media (max-width: 1080px) {
  #breadcrumb.dcw-breadcrumb {
    padding-top: 20px;
  }

  .dcw-wrapper {
    font-size: 15px;
  }

  .dcw-btn {
    padding: 10px 15px;
    padding-right: 45px;
    white-space: nowrap;
  }

  .dcw-btn svg {
    right: 10px;
    width: 32px;
    height: 7px;
  }

  .dcw-btn.center {
    padding: 12px 50px;
    width: auto;
  }

  .dcw-ttl {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .dcw-text {
    margin: 15px 0;
    font-size: 15px;
  }

  .dcw-hero .animate-area {
    display: none;
  }

  .dcw-hero .hero-wrapper .pic {
    width: 100%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .dcw-hero .hero-wrapper .slogan {
    font-size: 14px;
    padding: 20px 0 60px;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }

  .dcw-hero .hero-wrapper .slogan .ttl {
    margin: 8px 0 12px;
  }

  .dcw-trouble {
    margin: -10px 0 80px;
  }

  .dcw-trouble:after {
    padding-top: 70%;
  }

  .dcw-trouble .trouble-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    max-width: 85%;
  }

  .dcw-trouble .trouble-content .text {
    padding: 40px 80px 0;
  }

  .dcw-trouble .trouble-content .ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .dcw-trouble .trouble-content .sub-ttl {
    font-size: 20px;
    padding-bottom: 18px;
  }

  .dcw-trouble .trouble-content ul {
    padding: 20px 0 40px;
    font-size: 13px;
  }

  .dcw-trouble .trouble-content .icon {
    width: 120px;
    margin-left: 50px;
  }

  .dcw-dcareer {
    margin-bottom: 20px;
  }

  .dcw-dcareer .pic {
    width: 76%;
  }

  .dcw-dcareer .content {
    width: 76%;
    padding: 40px;
  }

  .dcw-recruit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0 60px;
  }

  .dcw-recruit .content {
    width: auto;
    font-size: 13px;
  }

  .dcw-point {
    padding-top: 70px;
  }

  .dcw-point .point-items {
    padding: 20px 0;
  }

  .dcw-point .point-items .item {
    font-size: 13px;
    width: calc(33.3333% - 10px);
  }

  .dcw-point .point-items .item:not(:nth-child(3n)) {
    margin-right: 15px;
  }

  .dcw-point .point-items .item .name {
    font-size: 12px;
    padding-bottom: 28px;
  }

  .dcw-point .point-items .item .name:after {
    height: 18px;
  }

  .dcw-point .point-items .item .ttl {
    font-size: 15px;
    margin: 15px 0;
  }

  .dcw-steps {
    margin-top: 15px;
    padding: 80px 25px;
  }

  .dcw-steps .steps-content {
    padding: 35px 10px;
  }

  .dcw-steps .steps-item {
    margin: 30px 0;
  }

  .dcw-steps .steps-item .pic {
    margin: 0;
    width: 45%;
  }

  .dcw-steps .steps-item .text {
    width: 52%;
  }

  .dcw-steps .steps-item .text .num {
    font-size: 13px;
  }

  .dcw-steps .steps-item .text .ttl {
    font-size: 16px;
  }

  .dcw-steps .steps-item .text .txt {
    font-size: 13px;
    margin: 12px 0 8px;
  }

  .dcw-steps .steps-item .text .ex {
    margin-top: 20px;
    font-size: 12px;
  }

  .dcw-program .program-content {
    padding: 27px 0 0;
  }

  .dcw-program .program-content .text {
    padding-right: 20px;
    font-size: 13px;
  }

  .dcw-program .program-ttl .jp {
    font-size: 24px;
  }

  .dcw-program .program-ttl .en {
    height: 52px;
    font-size: 44px;
  }

  .dcw-example .example-content {
    padding: 40px 25px 25px;
  }

  .dcw-example .example-content .example-items {
    margin-top: 30px;
  }

  .dcw-example .example-content .example-items .item {
    font-size: 13px;
    width: calc(33.3333% - 10px);
  }

  .dcw-example .example-content .example-items .item .ttl {
    padding-bottom: 22px;
  }

  .dcw-example .example-content .example-items .item .ttl:after {
    height: 18px;
  }

  .dcw-example .example-content .example-items .item .pic {
    margin: 20px 0 15px;
  }

  .dcw-example .example-content .example-items .item:not(:nth-child(3n)) {
    margin-right: 15px;
  }

  .dcw-office {
    padding: 70px 0;
  }

  .dcw-office .office-items .item {
    margin: 40px 0 0;
  }

  .dcw-office .office-items .item .ttl {
    font-size: 20px;
  }

  .dcw-office .office-items .item .name {
    font-size: 17px;
  }

  .dcw-office .office-items .item .name:before {
    width: 10px;
    height: 10px;
  }

  .dcw-office .office-items .item .infos .text {
    font-size: 13px;
    padding: 25px;
  }

  .dcw-contact .contact-form .send input {
    width: 200px;
  }


}

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

  #breadcrumb.dcw-breadcrumb {
    padding-top: 12px;
  }

  .dcw-wrapper {
    font-size: 14px;
  }

  .dcw-ttl {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .dcw-ttl:before {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }

  .dcw-ttl.center {
    text-align: center;
  }

  .dcw-ttl.center:before {
    margin: auto 0;
    margin-right: 10px;
  }

  .dcw-ttl.center:after {
    width: 14px;
    height: 14px;
    margin: auto 0;
    margin-left: 10px;
  }

  .dcw-ttl br {
    display: block;
  }

  .dcw-text {
    font-size: 14px;
  }

  .dcw-text .small {
    margin-top: 6px;
    font-size: 12px;
  }

  .dcw-btn svg {
    right: 8px;
    width: 25px;
    height: 6px;
  }

  .dcw-hero .hero-wrapper .pic:after {
    padding-top: 60%;
  }

  .dcw-hero .hero-wrapper .slogan {
    padding: 20px 0 35px;
    font-size: 12px;
  }

  .dcw-hero .hero-wrapper .slogan .en {
    font-size: 30px;
    white-space: nowrap;
    -webkit-transform: translate(12px, -50%);
    transform: translate(12px, -50%);
  }

  .dcw-hero .hero-wrapper .slogan .name {
    font-size: 1.6em;
  }

  .dcw-hero .hero-wrapper .slogan .ttl {
    font-size: 2.4em;
  }

  .dcw-trouble {
    margin: 0;
  }

  .dcw-trouble .trouble-content {
    width: 90%;
    max-width: 90%;
    text-shadow: 0 0 5px #fff;
    margin-top: 12%;
  }

  .dcw-trouble .trouble-content .text {
    padding: 25px 20px 0;
    width: 100%;
  }

  .dcw-trouble .trouble-content .ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .dcw-trouble .trouble-content .sub-ttl {
    font-size: 16px;
    padding-bottom: 12px;
  }

  .dcw-trouble .trouble-content .sub-ttl:after {
    width: 36px;
    height: 3px;
  }

  .dcw-trouble .trouble-content .infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .dcw-trouble .trouble-content ul {
    font-size: 12px;
  }

  .dcw-trouble .trouble-content ul li:before {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }

  .dcw-trouble .trouble-content .icon {
    margin-left: 0;
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 85px;
    z-index: -1;
  }

  .dcw-dcareer {
    padding: 60px 0 0;
  }

  .dcw-dcareer:after {
    display: none;
  }

  .dcw-dcareer .pic {
    width: 100%;
    position: relative;
    height: auto;
  }

  .dcw-dcareer .pic:after {
    content: "";
    display: block;
    padding-top: 65%;
  }

  .dcw-dcareer .content {
    width: 100%;
    padding: 25px 20px;
    overflow: hidden;
    left: 0;
  }

  .dcw-dcareer .content:after {
    width: 100%;
    background: #023E64;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
    -webkit-transition: 1s;
    transition: 1s;
  }

  .dcw-dcareer.active .content:after {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }

  .dcw-recruit {
    margin: 20px 0 40px;
    padding: 40px 20px;
  }

  .dcw-recruit .content {
    width: 100%;
  }

  .dcw-recruit .content .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dcw-recruit .content .btns .dcw-btn {
    width: 100%;
  }

  .dcw-recruit .content .btns .dcw-btn:nth-child(1) {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .dcw-recruit .content .ttl {
    font-size: 15px;
  }

  .dcw-recruit .content .sub-ttl {
    font-size: 1.6em;
  }

  .dcw-point .point-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .dcw-point .point-items .item {
    width: 100%;
  }

  .dcw-point .point-items .item:not(:nth-child(3n)) {
    margin-right: 0;
    padding-bottom: 40px;
  }

  .dcw-steps {
    padding: 40px 20px;
  }

  .dcw-steps:before {
    top: 15px;
  }

  .dcw-steps .steps-content {
    padding: 25px 0;
  }

  .dcw-steps .steps-item {
    margin: 25px 0 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .dcw-steps .steps-item .pic {
    margin: 0;
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
    position: relative;
  }

  .dcw-steps .steps-item .pic:after {
    content: "";
    display: block;
    padding-top: 65%;
  }

  .dcw-steps .steps-item .text {
    width: 100%;
  }

  .dcw-steps .steps-item .text .num {
    font-size: 12px;
  }

  .dcw-steps .steps-item .text .num .large {
    padding-left: 14px;
  }

  .dcw-steps .steps-item .text .num .large:before {
    left: 4px;
    width: 8px;
    height: 8px;
  }

  .dcw-steps .steps-item .text .ttl {
    font-size: 15px;
  }

  .dcw-steps .steps-item .text .txt {
    font-size: 12px;
  }

  .dcw-program {
    padding: 70px 0 20px;
  }

  .dcw-program .program-content {
    padding: 14px 0 0;
  }

  .dcw-program .program-content .pic:before {
    top: -18%;
  }

  .dcw-program .program-ttl .jp:after {
    display: none;
  }

  .dcw-program .program-ttl .jp div {
    padding: 0;
  }

  .dcw-program .program-ttl .en {
    height: 39px;
    font-size: 34px;
  }

  .dcw-program:after {
    height: 50%;
  }

  .dcw-example {
    padding-bottom: 12%;
  }

  .dcw-example .example-content {
    padding: 40px 20px 20px;
    padding-right: 0;
  }

  .dcw-example .example-content .example-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .dcw-example .example-content .example-items .item {
    font-size: 13px;
    width: 100%;
    margin-bottom: 30px;
  }

  .dcw-example .example-content .example-items .item .pic {
    margin: 15px 0 12px;
  }

  .dcw-example .example-content .example-items .item:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .dcw-office {
    padding: 70px 0 40px;
  }

  .dcw-office .office-items .item .ttl {
    font-size: 18px;
  }

  .dcw-office .office-items .item .name {
    font-size: 15px;
    padding-left: 12px;
  }

  .dcw-office .office-items .item .name:before {
    width: 8px;
    height: 8px;
  }

  .dcw-office .office-items .item .infos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dcw-office .office-items .item .infos .text {
    font-size: 12px;
    padding: 20px 0 0;
  }

  .dcw-office .office-items .item .infos .text .tel:before {
    width: 22px;
    height: 22px;
  }

  .dcw-office .office-items .item .infos .text .address:before {
    width: 20px;
    margin-left: 1px;
  }

  .dcw-office .office-items .item .infos .map {
    min-width: 100%;
    width: 100%;
  }

  .dcw-office .office-items .item .infos .btns .dcw-btn {
    width: calc(50% - 5px);
    padding: 12px 20px;
    text-align: left;
  }

  .dcw-office .office-items .item .infos .btns .dcw-btn:nth-child(1) {
    margin-right: 10px;
  }

  .dcw-contact {
    padding: 40px 0;
  }

  .dcw-contact .contact-form {
    font-size: 14px;
    padding: 0;
  }

  .dcw-contact .contact-form dl {
    font-size: 13px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
  }

  .dcw-contact .contact-form dt {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .dcw-contact .contact-form dd {
    width: 100%;
  }

  .dcw-contact .contact-form dt span {
    padding: 0 8px;
  }

  .dcw-contact .contact-form .time dd div {
    margin: 15px 0 0;
  }

  .dcw-contact .contact-form .time dd div span {
    white-space: nowrap;
    width: auto;
  }

  .dcw-contact .contact-form .time dd div input {
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .dcw-contact .contact-form .privacy {
    padding: 0;
    padding-bottom: 25px;
  }

  .dcw-contact .contact-form .send {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
  }

  .dcw-contact .contact-form .send input {
    margin: 8px 0;
  }

  .dcw-contact .contact-form .send .confirm,
  .custom-wpcf7c-confirmed .send .submit {
    order: -1;
  }

  div.wpcf7 .ajax-loader {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .dcw-contact .contact-form dd span.dcw_office:after {
    border-top-width: 6px;
    border-left-width: 6px;
    border-right-width: 6px;
    right: 12px;
  }



}

@media (max-width: 350px) {
  .dcw-ttl {
    font-size: 19px;
  }

  .dcw-contact .contact-form {
    font-size: 12px;
  }

  .dcw-hero .inner {
    padding: 0 15px;
  }

  .dcw-hero .hero-wrapper .slogan .en {
    font-size: 26px;
  }
}

.contact_thanks {
  padding: 100px 0;
  background-color: #e5e5e5;
}

.contact_thanks .page-inner {
  width: 100%;
  max-width: 790px;
  padding: 0 20px;
  margin: auto;
}

.contact_thanks .href-href {
  position: absolute;
  top: -60.27px;
}

.contact_thanks .title {
  text-align: center;
  font-weight: 900;
  font-style: normal;
  font-size: 2.8em;
  color: #023E64;
  position: relative;
  padding-bottom: 12px;
}

.contact_thanks .title::after {
  content: "";
  width: 100px;
  background-color: #89C2D9;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact_thanks .title br {
  display: none;
}

.contact_thanks .content {
  font-size: 1.6em;
}

.contact_thanks .back_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.contact_thanks .back_btn a {
  border-radius: 50px;
  background-color: #D93D04;
  background: linear-gradient(#eb5f2c 0%, #d93d04 69.47%, #d90404 100%);
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  color: #fff;
  position: relative;
  font-size: 1.5em;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
  padding: 0.5em 20px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: .3s;
  text-decoration: none;
}

@media (min-width: 1100px) {
  .contact_thanks .back_btn a:hover {
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .contact_thanks .title br {
    display: block;
  }
}

.site_footer .copy {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 767px) {
  .site_footer .copy {
    font-size: 12px;
  }
}

.foot_inner {
  padding: 50px 0;
  font-size: 14px;
}

.foot_inner .logo {
  max-width: 270px;
  margin: auto;
}

.foot_inner .logo img {
  max-width: 100%;
}

.foot_inner .list {
  display: flex;
  justify-content: center;
  margin: 30px 0 20px;
}

.foot_inner .list ul {
  display: flex;
}

.foot_inner .list li:not(:first-child) {
  border-left: 1px solid #333;
}

.foot_inner .list a {
  white-space: nowrap;
  padding: 5px 10px;
}

@media (max-width: 767px) {
  .foot_inner {
    padding: 0 0 20px;
  }

  .foot_inner .list {
    margin: 5px auto 15px;
  }
}

.footer_fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  transition: .3s;
  background-color: #E5E5E5;
  padding: 10px 0;
  z-index: 999;
  transform: translateY(101%);
  transition: 0.7s;
}

.footer_fixed .group {
  display: flex;
  justify-content: center;

  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: .9;
}

.footer_fixed .group>div {
  position: relative;
  width: 337px;
  transition: .3s;
}

.footer_fixed .group>div a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (min-width: 1100px) {
  .footer_fixed .group>div:hover {
    box-shadow: none;
    transform: translateY(1px);
  }
}

.footer_fixed .tel {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 10px 15px;
  margin-right: 50px;
  box-shadow: 0 3px 0 #6790a0;
  border-radius: 5px;
  font-size: 2.13em;
  white-space: nowrap;
  line-height: 1;
  background-color: #034067;
  background-image: linear-gradient(180deg, #6b819d 0, #034067 99%);
  color: #fff;
}

.footer_fixed .tel a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer_fixed .tel .tel_num {
  margin: auto 0;
}

.footer_fixed .tel .tel_num>p {
  display: inline-block;
}

.footer_fixed .tel svg {
  margin-top: 0.2em;
  margin-right: 0.2em;
}

.footer_fixed .tel .num {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.footer_fixed .tel .time {
  font-size: 0.27em;
  text-align: center;
  margin-top: 2px;
}

.footer_fixed .to_content {
  font-size: 2.2em;
  background-color: #ebdfda;
  color: #fff;
  background-image: linear-gradient(180deg, #ebdfda 0%, #d90404 99%);
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 3px 0 #AD0000;
  text-align: center;
}

.footer_fixed .to_content .small {
  font-size: 0.73em;
}

.footer_fixed .copy {
  display: none;
}

.footer_fixed.show {
  transform: translate(0);
}

@media (max-width: 767px) {
  .footer_fixed {
    padding: 10px 0 0;
  }

  .footer_fixed .inner {
    padding: 0;
  }

  .footer_fixed .tel {
    margin-right: 20px;
    font-size: 2.12em;
    padding: 6px 15px;
  }

  .footer_fixed .tel svg {
    margin-top: 0;
  }

  .footer_fixed .tel .tel_num>p {
    display: block;
  }

  .footer_fixed .to_content {
    font-size: 1.87em;
    padding: 10px 20px;
  }

  .footer_fixed .to_content .small {
    display: block;
  }

  .footer_fixed .copy {
    display: block;
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 450px) {
  .footer_fixed {
    padding: 5px 0 0;
  }

  .footer_fixed .tel {
    margin-right: 0;
    font-size: 1.92em;
    padding: 6px 10px;
  }

  .footer_fixed .to_content {
    font-size: 1.77em;
    padding: 8px 15px;
  }

  .footer_fixed .copy {
    padding: 5px;
  }
}

@media (max-width: 382px) {
  .footer_fixed .to_content .small {
    display: block;
  }

  .footer_fixed .tel svg {
    margin-top: 6px;
  }
}

@media (max-width: 350px) {
  .footer_fixed {
    padding: 0;
  }

  .footer_fixed .tel {
    justify-content: center;
  }
}

.pagetop {
  width: 75px;
  height: 75px;
  position: fixed;
  z-index: 90;
  right: 30px;
  bottom: 110px;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.2s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateX(100px);
}

.pagetop.active {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 1000px) {
  .pagetop:hover {
    opacity: 1;
  }
}

@media (max-width: 1400px) {
  .pagetop {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .pagetop {
    width: 35px;
    height: 35px;
    right: 20px;
  }
}

.cookie-container {
  bottom: 0;
  position: fixed;
  z-index: 100002;
  width: 100%;
  background: #dcdcdc;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
}

.cookie-container .cookie-container-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 13px;
  padding-bottom: 5px;
  padding-right: 20px;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cookie-container .cookie-container-inner p {
  float: left;
  width: calc(100% - 156px);
  padding-right: 15px;
  font-size: 14px;
}

.cookie-container .cookie-container-inner p a {
  font-weight: bold;
  text-decoration: underline;
}

.cookie-container .cookie-container-inner .cookie-btn {
  border: 1px solid #27316f;
  color: #27316f;
  background: #FFF;
  border-radius: 2px;
  padding: 7px 15px;
  transition: .5s;
  float: right;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
}

.cookie-container.close {
  display: none;
}

@media (max-width: 767px) {
  .cookie-container .cookie-container-inner {
    display: block;
    text-align: center;
  }

  .cookie-container .cookie-container-inner p {
    float: none;
    width: 100%;
    padding: 0px;
    font-size: 12px;
    text-align: left;
    margin-bottom: 15px;
    display: inline-block;
  }

  .cookie-container .cookie-container-inner .cookie-btn {
    float: none;
    width: 100%;
    display: inline-block;
  }
}