@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
  display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
  position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
  content: attr(data-char);
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Expanded CSS Variables */
.splitting {
  /* The center word index */
  --word-center: calc((var(--word-total) - 1) / 2);
  /* The center character index */
  --char-center: calc((var(--char-total) - 1) / 2);
  /* The center character index */
  --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
  /* Pecent (0-1) of the word's position */
  --word-percent: calc(var(--word-index) / var(--word-total));
  /* Pecent (0-1) of the line's position */
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  /* Percent (0-1) of the char's position */
  --char-percent: calc(var(--char-index) / var(--char-total));
  /* Offset from center, positive & negative */
  --char-offset: calc(var(--char-index) - var(--char-center));
  /* Absolute distance from center, only positive */
  --distance: calc( (var(--char-offset) * var(--char-offset)) / var(--char-center) );
  /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  /* Distance from center where 1 is far left/far right, 0 is center */
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.center {
  text-align: center;
}

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

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inview.fadeInup {
  opacity: 0;
}

.inview.fadeInup.active {
  -webkit-animation: fadeInup .5s ease-out;
  animation: fadeInup .5s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.inview.fadeIn {
  opacity: 0;
}

.inview.fadeIn.active {
  -webkit-animation: show 1s ease-out;
  animation: show 1s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.inview.show {
  opacity: 0;
}

.inview.show.active {
  -webkit-animation: scroll_on2 1s ease-out;
  animation: scroll_on2 1s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.adelay01 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.adelay02 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.adelay03 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.adelay04 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.adelay05 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.adelay06 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.adelay07 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.adelay08 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.adelay09 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.adelay10 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.tdelay01 {
  transition-delay: 0.1s !important;
}

.tdelay02 {
  transition-delay: 0.2s !important;
}

.tdelay03 {
  transition-delay: 0.3s !important;
}

.tdelay04 {
  transition-delay: 0.4s !important;
}

.tdelay05 {
  transition-delay: 0.5s !important;
}

.tdelay06 {
  transition-delay: 0.6s !important;
}

.tdelay07 {
  transition-delay: 0.7s !important;
}

.tdelay08 {
  transition-delay: 0.8s !important;
}

.tdelay09 {
  transition-delay: 0.9s !important;
}

.tdelay10 {
  transition-delay: 1s !important;
}

@-webkit-keyframes scroll_on2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0) skew(0deg, 0deg);
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
}

@keyframes scroll_on2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0) skew(0deg, 0deg);
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
}
@-webkit-keyframes scroll_off2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0) skew(0deg, 0deg);
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
}
@keyframes scroll_off2 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translate(0, 0) skew(0deg, 0deg);
    transform: scale(1) translate(0, 0) skew(0deg, 0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
    transform: scale(1.1) translate(0, 100px) skew(0deg, -5deg);
  }
}
@-webkit-keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInup {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-bottom: 0px;
}

.ml0 {
  margin-left: 0px;
}

.mr0 {
  margin-right: 0px;
}

.pt0 {
  padding-top: 0px;
}

.pb0 {
  padding-bottom: 0px;
}

.pl0 {
  padding-left: 0px;
}

.pr0 {
  padding-right: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.parenthesis {
  position: relative;
}

.parenthesis::before,
.parenthesis::after {
  position: absolute;
  top: 0%;
  content: '';
  width: 10px;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.parenthesis::before {
  left: 0;
  border-left: 1px solid #fff;
}

.parenthesis::after {
  right: 0;
  border-right: 1px solid #fff;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
  width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.image100 img {
  width: 100%;
}

@-webkit-keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}

@keyframes masking {
  0% {
    -webkit-transform: translate(0, -101%);
    transform: translate(0, -101%);
  }
  42%, 58% {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  100% {
    -webkit-transform: translate(0, 101%);
    transform: translate(0, 101%);
  }
}
.the-arrow {
  height: 1px;
  width: 60px;
  background: #fff;
  content: "";
  position: relative;
  transition: all .3s ease;
}
.the-arrow:after {
  width: 20px;
  display: block;
  position: absolute;
  height: 1px;
  top: -6px;
  right: -4px;
  content: "";
  z-index: 999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
}

/* Global Button Styles */
a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
}

a.animated-button:link:after, a.animated-button:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  transition: all 0.75s ease 0s;
}

a.animated-button:link:hover, a.animated-button:visited:hover {
  color: #FFF;
  text-shadow: none;
}

a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
  height: 450%;
}

a.animated-button:link, a.animated-button:visited {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  color: #fff;
  font-size: 14px;
  border-radius: 0;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
}

/* Thar Buttons */
a.animated-button.thar-one {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-one:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: none;
}

a.animated-button.thar-one:hover:before {
  bottom: 0%;
  top: auto;
  height: 100%;
}

a.animated-button.thar-one:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-two {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-two:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: ntwo;
}

a.animated-button.thar-two:hover:before {
  top: 0%;
  bottom: auto;
  height: 100%;
}

a.animated-button.thar-two:before {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

a.animated-button.thar-three {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-three:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: nthree;
}

a.animated-button.thar-three:hover:before {
  left: 0%;
  right: auto;
  width: 100%;
}

a.animated-button.thar-three:before {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-four {
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  border: 2px solid #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-four:hover {
  color: #000 !important;
  background-color: transparent;
  text-shadow: nfour;
}

a.animated-button.thar-four:hover:before {
  right: 0%;
  left: auto;
  width: 100%;
}

a.animated-button.thar-four:before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: '';
  color: #000 !important;
  background: #F7CA18;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

section.project_visual {
  background: #333;
  position: relative;
}
section.project_visual .inner {
  max-width: 1200px;
  margin: auto;
  *zoom: 1;
  padding: 5rem 0;
}
section.project_visual .inner:after {
  content: "";
  display: table;
  clear: both;
}
section.project_visual .image {
  width: 300px;
  float: right;
  right: 10%;
  margin: 0 20% -10rem 0;
}
@media only screen and (max-width: 768px) {
  section.project_visual .image {
    float: none;
    width: 140px;
    margin: 0 auto 1rem auto;
    padding: 6rem 0 0 0;
  }
}
section.project_visual .txt {
  position: absolute;
  top: 50%;
  left: 14%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  section.project_visual .txt {
    position: static;
    -webkit-transform: none;
    transform: none;
    text-align: center;
  }
}
section.project_visual .txt p.en {
  font-size: 20px;
  font-size: 2rem;
  color: #ffd500;
}
@media only screen and (max-width: 768px) {
  section.project_visual .txt p.en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
section.project_visual .txt h2 {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  section.project_visual .txt h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

section.intro_box {
  background: #eee;
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  section.intro_box {
    padding: 5%;
    margin: 0 0 5rem 0;
  }
}
section.intro_box .inner {
  width: 800px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  section.intro_box .inner {
    width: 100%;
  }
}
section.intro_box .inner h2 {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  section.intro_box .inner h2 {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
  }
}

section.project_profile_box {
  width: 1000px;
  margin: auto;
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.project_profile_box {
    width: 100%;
    padding: 0;
  }
}
section.project_profile_box h2.en {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  section.project_profile_box h2.en {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
}
section.project_profile_box h2.en span {
  background: #333;
  color: #ffffff;
  padding: 0.5rem 1rem;
}
section.project_profile_box .prof_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  section.project_profile_box .prof_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 5%;
    margin: 0 0 2rem 0;
  }
}
section.project_profile_box .prof_flex .box {
  width: 24%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.project_profile_box .prof_flex .box {
    width: 48%;
    margin: 0 0 1rem 0;
  }
}
section.project_profile_box .prof_flex .box .image {
  margin: 0 0 1rem 0;
}
section.project_profile_box .prof_flex .box .job {
  margin: 0 0 1rem 0;
}
section.project_profile_box .prof_flex .box .job span {
  display: inline-block;
  background: #333;
  border-radius: 3px;
  color: #ffffff;
  padding: 0.2rem 0.8rem;
}
section.project_profile_box .prof_flex .box .job.p01 span {
  background: #4c35bf;
}
section.project_profile_box .prof_flex .box .job.p02 span {
  background: #3e9d7f;
}
section.project_profile_box .prof_flex .box .job.p03 span {
  background: #359fc2;
}
section.project_profile_box .prof_flex .box .job.p04 span {
  background: #c05ebf;
}
section.project_profile_box .prof_flex .box p.name {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  section.project_profile_box .prof_flex .box p.name {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

section.project_main .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
}
section.project_main .inner.mb30 {
  margin: 0 auto 5rem auto;
}
section.project_main .inner .project_main_txt {
  padding: 5rem 0;
}
section.project_main .inner .project_main_txt h3 {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_main_txt h3 {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
  }
}
section.project_main .inner .project_main_txt h3:after {
  content: '';
  display: block;
  margin: 2rem 0;
  text-align: center;
  width: 50px;
  height: 5px;
  background: #ffd500;
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_main_txt h3:after {
    margin: 1rem auto;
  }
}
section.project_main .inner .project_main_txt.single {
  width: 800px;
  margin: 0 auto -5rem auto;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 9;
  padding: 5%;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_main_txt.single {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
section.project_main .inner .project_main_txt.single h3 {
  text-align: center;
}
section.project_main .inner .project_main_txt.single h3:after {
  margin: 2rem auto;
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_main_txt.single h3:after {
    margin: 1rem auto;
  }
}
section.project_main .inner .project_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_flex {
    display: block;
  }
}
section.project_main .inner .project_flex.rv {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.project_main .inner .project_flex .project_main_txt {
  width: 50%;
  padding: 5%;
}
@media only screen and (max-width: 768px) {
  section.project_main .inner .project_flex .project_main_txt {
    width: 100%;
  }
}
section.project_main .inner .project_flex .project_main_txt h3 {
  text-align: left;
}
section.project_main .inner .project_flex .project_main_txt h3:after {
  margin: 1rem 0;
}
section.project_main .inner .project_flex .photo {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
section.project_main .mid_photo {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
}
@media only screen and (max-width: 768px) {
  section.project_main .mid_photo {
    margin: 0 0 2rem 0;
  }
}

section.cross_visual {
  position: relative;
}
section.cross_visual .image {
  position: relative;
}
section.cross_visual .image:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}
section.cross_visual .txt {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  section.cross_visual .txt {
    position: static;
    -webkit-transform: none;
    transform: none;
    color: #333;
    text-align: center;
    padding: 2rem 0 0 0;
  }
}
section.cross_visual .txt p.en {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  section.cross_visual .txt p.en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section.cross_visual .txt p.jp {
  font-size: 40px;
  font-size: 4rem;
}
@media only screen and (max-width: 768px) {
  section.cross_visual .txt p.jp {
    font-size: 20px;
    font-size: 2rem;
  }
}
section.cross_visual .txt p.lead {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  section.cross_visual .txt p.lead {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 0 5%;
    margin: 0 0 2rem 0;
  }
}

section.profile_box {
  padding: 5% 3%;
  background: #fafafa;
  margin: 0 0 5rem 0;
}
section.profile_box h2 {
  color: #4c9d90;
  font-size: 30px;
  font-size: 3rem;
  margin: 0 0 2rem 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  section.profile_box h2 {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
  }
}
section.profile_box .prof_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
section.profile_box .prof_flex .box {
  width: 32%;
  margin: 0 1.5%;
}
@media only screen and (max-width: 768px) {
  section.profile_box .prof_flex .box {
    width: 50%;
    margin: 0;
    padding: 0 3%;
  }
}
section.profile_box .prof_flex .image {
  width: 50%;
  margin: 0 auto 2rem auto;
}
section.profile_box .prof_flex p.prof {
  text-align: center;
  margin: -3rem auto 1rem auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 0;
  position: relative;
  z-index: 9;
  border-radius: 3px;
  width: 300px;
}
@media only screen and (max-width: 768px) {
  section.profile_box .prof_flex p.prof {
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
section.profile_box .prof_flex .job p.en {
  margin: 0 0 1rem 0;
  position: relative;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  section.profile_box .prof_flex .job p.en {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
section.profile_box .prof_flex .job p.en:after {
  content: '';
  display: block;
  margin: 1rem auto 1rem auto;
  text-align: center;
  width: 50px;
  height: 1px;
  background: #ffd500;
}
section.profile_box .prof_flex .job p.exp {
  width: 200px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  section.profile_box .prof_flex .job p.exp {
    width: 100%;
    padding: 0 3%;
  }
}

section.cross_main .inner {
  max-width: 1200px;
  margin: 0 auto 7rem auto;
  padding: 0 5%;
}
@media only screen and (max-width: 768px) {
  section.cross_main .inner {
    margin: 0 0 3rem 0;
  }
}
@media only screen and (max-width: 768px) {
  section.cross_main .last_photo {
    margin: 0 0 2rem 0;
  }
}
section.cross_main .crosstxt {
  width: 50%;
  padding: 0 5%;
}
@media only screen and (max-width: 768px) {
  section.cross_main .crosstxt {
    width: 100%;
    padding: 0;
  }
}
section.cross_main .crosstxt.wide {
  width: 100%;
  padding: 0 5%;
}
section.cross_main .crosstxt.wide.last {
  margin: -10rem auto 0 auto;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 3;
  padding: 3% 5%;
  width: 900px;
}
@media only screen and (max-width: 768px) {
  section.cross_main .crosstxt.wide.last {
    width: 100%;
    margin: 0;
  }
}
section.cross_main .crosstxt h2 {
  font-weight: bold;
  margin: 0 0 1rem 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  section.cross_main .crosstxt h2 {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
section.cross_main .crosstxt h2 span {
  background: #ffd500;
  padding: 0.5rem 1rem;
  margin: 0 0 1rem 0;
  display: inline-block;
}
section.cross_main .crosstxt h3 {
  font-weight: bold;
  position: relative;
  padding: 0 0 0 5rem;
  margin: 0 0 3rem 0;
}
section.cross_main .crosstxt h3:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  display: block;
  text-align: center;
  width: 40px;
  height: 1px;
  background: #000;
}
section.cross_main .crosstxt p {
  padding: 0 0 0 7rem;
  position: relative;
  margin: 0 0 1.5rem 0;
  min-height: 5em;
}
section.cross_main .crosstxt p span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
section.cross_main .crosstxt p.p01 {
  background: url("/recruit/img/crosstalk-assets/prof_thumb01.png") no-repeat 0 0;
  background-size: 54px;
}
section.cross_main .crosstxt p.p02 {
  background: url("/recruit/img/crosstalk-assets/prof_thumb02.png") no-repeat 0 0;
  background-size: 54px;
}
section.cross_main .cross_flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 1rem auto;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  section.cross_main .cross_flex {
    display: block;
  }
}
section.cross_main .cross_flex.rv {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
section.cross_main .cross_flex .photo {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  section.cross_main .cross_flex .photo {
    width: 100%;
  }
  section.cross_main .cross_flex .photo img {
    width: 100%;
  }
}
