/*.transition, pdw, uldw lidw idw:before, uldw lidw idw:after {
  transition: all 0.25s ease-in-out;
}

.flipIn, h1dw, uldw lidw {
  animation: flipdown 0.5s ease both;
}

.no-select, h2dw {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


#detailwork {
  background-color: #fefffa;
  padding: 30px;
}


h1dw, h2dw {
  color: #ff6873;
}

h1dw {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
  font-weight: 100;
}

h2dw {
  font-size: 26px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  background-color: #fefffa;
  margin: 0;
  cursor: pointer;
}

pdw {
  color: rgba(48, 69, 92, 0.8);
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}

uldw {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
uldw lidw {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
}
uldw lidw:nth-of-type(1) {
  animation-delay: 0.5s;
}
uldw lidw:nth-of-type(2) {
  animation-delay: 0.75s;
}
uldw lidw:nth-of-type(3) {
  animation-delay: 1s;
}
uldw lidw:last-of-type {
  padding-bottom: 0;
}
uldw lidw idw {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
uldw lidw idw:before, uldw lidw idw:after {
  content: "";
  position: absolute;
  background-color: #ff6873;
  width: 3px;
  height: 9px;
}
uldw lidw idw:before {
  transform: translate(-2px, 0) rotate(45deg);
}
uldw lidw idw:after {
  transform: translate(2px, 0) rotate(-45deg);
}
uldw lidw input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
uldw lidw input[type=checkbox]:checked ~ pdw {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
uldw lidw input[type=checkbox]:checked ~ idw:before {
  transform: translate(2px, 0) rotate(45deg);
}
uldw lidw input[type=checkbox]:checked ~ idw:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: topdw center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: topdw center;
    transform: rotateX(0deg);
  }
}
*/









h2 {
    margin: 0 0 20px 0;
    text-transform: none;
    color: rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}

.acc {
  position: relative;
  background-color: #fff;
}
.acc dl {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.acc dl:after {
  content: "";
  display: block;
  height: 1em;
  width: 100%;
  background-color: #FF5956;
}
.acc dt > a {
  text-align: center;
  padding: 2em;
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-transition: background-color 0.5s ease-in-out;

  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.2em;
}
.acc dd {
  background-color: #fff;
  font-size: 1em;
  line-height: 1.5em;
  background-image: linear-gradient(to bottom, #444 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*.acc dd > p {
  padding: 1em 1em 1em 1em;
}*/

.acc dd ul li {
  font-size: 1.2em;
  line-height: 1.5em;
}

.content-detail-work {
  padding: 1em 1em 1em 1em;
}


.acc_title {
  background-color: #FF5956;
  border-bottom: 1px solid #FF5956;
}
.acc_title:before {
  content: "+";
  font-size: 1.5em;
  line-height: 0.5em;
  float: left;
  transition: transform 0.3s ease-in-out;
}
.acc_title:hover {
  background-color: #FF3B3A;
}

.acc_title_active {
  background-color: #FF4456;
}
.acc_title_active:before {
  transform: rotate(-225deg);
}

.acc_panel {
  height: auto;
  overflow: hidden;
}

@media all {
  .acc_panel {
    max-height: 550em;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .acc_panel {
    max-height: 515em;
    transition: max-height 0.5s;
  }
}
.acc_panel_col {
  max-height: 0;
}

.anim_in {
  animation-name: acc_in;
  animation-duration: 0.65s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

.anim_out {
  animation-name: acc_out;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  animation-delay: 0s;
}

@keyframes acc_in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes acc_out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}