@charset "UTF-8";

#jr-workruck {
  color: #6D5E56;
  font-family: "Noto Sans JP", sans-serif;
}

/* animation */
@keyframes BottomIn {
  0%   { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: translateY(0);}
}
@keyframes LeftIn {
  0%   { opacity: 0; transform: translateX(-80px);}
  100% { opacity: 1; transform: translateX(0);}
}
@keyframes RightIn {
  0%   { opacity: 0; transform: translateX(80px);}
  100% { opacity: 1; transform: translateX(0);}
}
@keyframes FadeIn {
	0%   { opacity: 0;}
	100% { opacity: 100%;}
}
@keyframes FromBlur {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
#jr-workruck .bottomIn {
  opacity: 0;
  transform: translateY(40px);
}
#jr-workruck .animation-start.bottomIn {
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
#jr-workruck .leftIn {
  opacity: 0;
  transform: translateX(-80px);
}
#jr-workruck .animation-start.leftIn {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: LeftIn;
}
#jr-workruck .rightIn {
  opacity: 0;
  transform: translateX(80px);
}
#jr-workruck .animation-start.rightIn {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: RightIn;
}
#jr-workruck .fadeIn {
  opacity: 0;
}
#jr-workruck .animation-start.fadeIn {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FadeIn;
}

/* ==========================
   PC
========================== */
html[data-browse-mode="P"] .pane-left-menu {
  display: none;
}
html[data-browse-mode="P"] .pane-contents .container {
  width: 100%;
}
html[data-browse-mode="P"] .pane-main {
  margin-top: 0;
}
html[data-browse-mode="P"] #jr-workruck .sp {
  display: none;
}
html[data-browse-mode="P"] #jr-workruck .mv {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
  filter: blur(15px);
  opacity: 0;
  position: relative;
  margin: 0;
}
html[data-browse-mode="P"] #jr-workruck .mv-hdg {
  animation-delay: 1.5s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
  filter: blur(15px);
  opacity: 0;
  margin: 0;
  position: absolute;
  bottom: calc(116 / 1920 * 100vw);
  left: calc(140 / 1920 * 100vw);
}
html[data-browse-mode="P"] #jr-workruck .mv-hdg img {
  height: calc(390 / 1920 * 100vw);
  width: calc(690 / 1920 * 100vw);
}
html[data-browse-mode="P"] #jr-workruck .mv-img {
  width: 100%;
}
html[data-browse-mode="P"] #jr-workruck .item {
  padding-block: 80px 130px;
  background: #EFE6E7;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(even) {
  background: #F6F1F1;
}
html[data-browse-mode="P"] #jr-workruck .item .inner {
  display: flex;
  column-gap: 80px;
  padding-top: 70px;
  margin: 0 auto;
  width: 1200px;
  position: relative;
  z-index: 0;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(odd) .inner {
  padding-left: 40px;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(even) .inner {
  flex-direction: row-reverse;
  padding-right: 40px;
}
html[data-browse-mode="P"] #jr-workruck .item .inner::before {
  content: '';
  height: 560px;
  width: 750px;
  position: absolute;
  top: 0;
  z-index: -1;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(odd) .inner::before {
  background-color: #D6C3C5;
  left: 150px;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(even) .inner::before {
  background-color: #D6CBC3;
  right: 150px;
}
html[data-browse-mode="P"] #jr-workruck .item .img {
  position: relative;
  width: 520px;
}
html[data-browse-mode="P"] #jr-workruck .item .num {
  color: #EAD8DA;
  display: flex;
  column-gap: 6px;
  align-items: start;
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1;
}
html[data-browse-mode="P"] #jr-workruck .item .num-head {
  font-family: "Lato", sans-serif;
  font-size: 34px;
  margin-top: 12px;
}
html[data-browse-mode="P"] #jr-workruck .item .num-body {
  font-family: "Abril Fatface", serif;
  font-size: 92px;
}
html[data-browse-mode="P"] #jr-workruck .item .detail {
  padding-top: 26px;
  width: 560px;
}
html[data-browse-mode="P"] #jr-workruck .item-header {
  margin: 0;
}
html[data-browse-mode="P"] #jr-workruck .item-header-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
html[data-browse-mode="P"] #jr-workruck .item:nth-child(even) .item-header-link {
  align-items: end;
}
html[data-browse-mode="P"] #jr-workruck .item-header-link:hover {
  color: inherit!important;
}
html[data-browse-mode="P"] #jr-workruck .item-code {
  font-family: "Lato", sans-serif;
  font-size: 23px;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 0 10px;
}
html[data-browse-mode="P"] #jr-workruck .item-name-en {
  font-family: "Abril Fatface", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 16px;
}
html[data-browse-mode="P"] #jr-workruck .item-name-jp {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .05em;
}
html[data-browse-mode="P"] #jr-workruck .item-image {
  text-align: center;
  margin-top: 30px;
}
html[data-browse-mode="P"] #jr-workruck .item-comment {
  margin-top: 30px;
}
html[data-browse-mode="P"] #jr-workruck .item-lead {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .075em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 13px;
}
html[data-browse-mode="P"] #jr-workruck .item-txt {
  font-size: 16px;
  letter-spacing: .05em;
  line-height: calc(28 / 16);
  text-align: center;
}
html[data-browse-mode="P"] #jr-workruck a:hover {
  opacity: .8;
}

/* .item アニメーション */
html[data-browse-mode="P"] #jr-workruck .item.will-animate .inner::before {
  opacity: 0;
}
html[data-browse-mode="P"] #jr-workruck .item.will-animate .img {
  filter: blur(15px);
  opacity: 0;
}
html[data-browse-mode="P"] #jr-workruck .item.will-animate .num {
  opacity: 0;
}
html[data-browse-mode="P"] #jr-workruck .item.will-animate .item-header {
  opacity: 0;
}
html[data-browse-mode="P"] #jr-workruck .item.will-animate .item-image {
  opacity: 0;
}
html[data-browse-mode="P"] #jr-workruck .item.will-animate .item-comment {
  opacity: 0;
}

html[data-browse-mode="P"] #jr-workruck .item.animation-start .inner::before {
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="P"] #jr-workruck .item.animation-start .img {
  animation-delay: .8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
}
html[data-browse-mode="P"] #jr-workruck .item.animation-start .num {
  animation-delay: 1.3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
}
html[data-browse-mode="P"] #jr-workruck .item.animation-start .item-header {
  animation-delay: 1.8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="P"] #jr-workruck .item.animation-start .item-image {
  animation-delay: 2.3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="P"] #jr-workruck .item.animation-start .item-comment {
  animation-delay: 2.8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}

/* ==========================
   SP
========================== */
html[data-browse-mode="S"] #jr-workruck .pc {
  display: none;
}
html[data-browse-mode="S"] #jr-workruck .mv {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
  filter: blur(15px);
  opacity: 0;
  position: relative;
  margin: 0;
}
html[data-browse-mode="S"] #jr-workruck .mv-hdg {
  animation-delay: 1.5s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
  filter: blur(15px);
  opacity: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: calc(8 / 390 * 100vw);
  left: calc(10 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .mv-hdg img {
  height: calc(134 / 390 * 100vw);
  width: calc(240 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .mv-img {
  width: 100%;
}
html[data-browse-mode="S"] #jr-workruck .item {
  background: #EFE6E7;
  padding-block: calc(60 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item:nth-child(even) {
  background: #F6F1F1;
}
html[data-browse-mode="S"] #jr-workruck .item .inner {
  position: relative;
  z-index: 0;
}
html[data-browse-mode="S"] #jr-workruck .item .inner::before {
  content: '';
  height: calc(617 / 390 * 100vw);
  width: calc(300 / 390 * 100vw);
  position: absolute;
  top: calc(40 / 390 * 100vw);
  z-index: -1;
}
html[data-browse-mode="S"] #jr-workruck .item:nth-child(odd) .inner::before {
  background-color: #D6C3C5;
  left: 0;
}
html[data-browse-mode="S"] #jr-workruck .item:nth-child(even) .inner::before {
  background-color: #D6CBC3;
  right: 0;
}
html[data-browse-mode="S"] #jr-workruck .item .img {
  padding-inline: calc(45 / 390 * 100vw);
  position: relative;
}
html[data-browse-mode="S"] #jr-workruck .fade-slide {
  pointer-events: none;
}
html[data-browse-mode="S"] #jr-workruck .item .num {
  color: #EAD8DA;
  display: flex;
  column-gap: calc(2 / 390 * 100vw);
  align-items: start;
  line-height: 1;
  position: absolute;
  top: calc(7 / 390 * 100vw);
  right: calc(54 / 390 * 100vw);
  z-index: 1;
}
html[data-browse-mode="S"] #jr-workruck .item .num-head {
  font-family: "Lato", sans-serif;
  font-size: calc(20 / 390 * 100vw);
  margin-top: calc(8 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item .num-body {
  font-family: "Abril Fatface", serif;
  font-size: calc(54 / 390 * 100vw);
  letter-spacing: .025em;
}
html[data-browse-mode="S"] #jr-workruck .item .detail {
  padding-top: calc(23 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-header {
  padding-block: 0;
  padding-inline: calc(35 / 390 * 100vw);
  margin: 0;
}
html[data-browse-mode="S"] #jr-workruck .item-header-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
html[data-browse-mode="S"] #jr-workruck .item:nth-child(even) .item-header-link {
  align-items: end;
}
html[data-browse-mode="S"] #jr-workruck .item-header-link:hover {
  color: inherit!important;
}
html[data-browse-mode="S"] #jr-workruck .item-code {
  font-family: "Lato", sans-serif;
  font-size: calc(15 / 390 * 100vw);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 0 calc(5 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-name-en {
  font-family: "Abril Fatface", serif;
  font-size: calc(34 / 390 * 100vw);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 calc(11 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-name-jp {
  font-size: calc(13 / 390 * 100vw);
  font-weight: 400;
  letter-spacing: .05em;
}
html[data-browse-mode="S"] #jr-workruck .item-image {
  text-align: center;
  padding-inline: calc(20 / 390 * 100vw);
  margin-top: calc(25 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-image img {
  height: calc(270 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-comment {
  padding-inline: calc(15 / 390 * 100vw);
  margin-top: calc(30 / 390 * 100vw);
}
html[data-browse-mode="S"] #jr-workruck .item-lead {
  font-size: calc(16 / 390 * 100vw);
  font-weight: bold;
  letter-spacing: .075em;
  line-height: calc(23 / 16);
  text-align: center;
  margin-bottom: 13px;
}
html[data-browse-mode="S"] #jr-workruck .item-txt {
  font-size: calc(13 / 390 * 100vw);
  letter-spacing: .05em;
  line-height: calc(24 / 13);
  text-align: center;
}

/* .item アニメーション */
html[data-browse-mode="S"] #jr-workruck .item.will-animate .inner::before {
  opacity: 0;
}
html[data-browse-mode="S"] #jr-workruck .item.will-animate .img {
  filter: blur(15px);
  opacity: 0;
}
html[data-browse-mode="S"] #jr-workruck .item.will-animate .num {
  opacity: 0;
}
html[data-browse-mode="S"] #jr-workruck .item.will-animate .item-header {
  opacity: 0;
}
html[data-browse-mode="S"] #jr-workruck .item.will-animate .item-image {
  opacity: 0;
}
html[data-browse-mode="S"] #jr-workruck .item.will-animate .item-comment {
  opacity: 0;
}

html[data-browse-mode="S"] #jr-workruck .item.animation-start .inner::before {
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="S"] #jr-workruck .item.animation-start .img {
  animation-delay: .8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
}
html[data-browse-mode="S"] #jr-workruck .item.animation-start .num {
  animation-delay: 1.3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: FromBlur;
}
html[data-browse-mode="S"] #jr-workruck .item.animation-start .item-header {
  animation-delay: 1.8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="S"] #jr-workruck .item.animation-start .item-image {
  animation-delay: 2.3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}
html[data-browse-mode="S"] #jr-workruck .item.animation-start .item-comment {
  animation-delay: 2.8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: BottomIn;
}