@charset "UTF-8";
/*--------------------------
Common Styles
---------------------------*/
.morebutton {
  display: inline-block;
  font-size: 1.8rem;
  background-color: #a8011b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 15px 80px;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.4);
  font-size: 1.6rem;
}

.morebutton::before {
  content: "\e807";
  font-family: 'fontello';
  font-size: 1.4rem;
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  z-index: 1000;
}

.morebutton::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 100%;
  background: #000000;
  transition: 0.3s;
  z-index: -1;
}

.morebutton:hover::after {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .morebutton {
    padding: 15px 60px;
    font-size: 1.4rem;
  }
}

/*--------------------------
Main Visual / it is necessary JScript
---------------------------*/
#main_visual {
  width: 100%;
  height: 370px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  #main_visual {
    height: 170px;
  }
}

#main_visual .backarea {
  width: 100vw;
  height: 320px;
  position: absolute;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea {
    height: 150px;
  }
}

#main_visual .backarea::before {
  content: "";
  display: block;
  width: 100vw;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(102, 0, 15, 0.5);
  z-index: 1000;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea::before {
    height: 150px;
  }
}

#main_visual .backarea .crop {
  width: 1070px;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clip: rect(0, 1070px, 1070px, 0);
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .crop {
    width: 90vw;
    height: 150px;
    clip: rect(0, 90vw, 90vw, 0);
  }
}

#main_visual .backarea .titlearea {
  width: 100vw;
  height: 320px;
  background-size: cover;
  background-position: center calc(30% - 50px);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50px;
  left: -20vw;
  z-index: 2000;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea {
    height: 150px;
    background-position: center calc(30% - 30px);
    top: 30px;
  }
}

#main_visual .backarea .titlearea h1 {
  font-size: 5.0rem;
  color: #ffffff;
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7), 0px 0px 6px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea h1 {
    font-size: 2.5rem;
  }
}

#main_visual .backarea .titlearea h1 span {
  display: block;
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  #main_visual .backarea .titlearea h1 span {
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 0;
  }
}

/*--------------------------
index / Common
---------------------------*/
.page_index.lower {
  padding-top: 0;
}

.page_index {
  /*--------------------------
Scrollfy Page
---------------------------*/
}

.page_index .sfpagenation {
  position: fixed;
  right: 2%;
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 75px));
  transform: translateY(calc(-50% + 75px));
  z-index: 9000;
}

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

.page_index .sfpagenation li {
  list-style: none;
  margin-bottom: 20px;
}

.page_index .sfpagenation li a {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #a4a4a4;
  cursor: pointer;
}

.page_index .sfpagenation li a.active, .page_index .sfpagenation li a:hover {
  background-color: #a8011b;
}

.page_index .nextsection {
  font-size: 4.8rem;
  color: #a8011b;
  position: absolute;
  left: calc(50% - 20px);
  bottom: 20px;
  z-index: 8000;
}

@media only screen and (max-width: 768px) {
  .page_index .nextsection {
    font-size: 3.0rem;
    bottom: 1vh;
    left: calc(50% - 15px);
  }
}

.page_index .prevsection {
  font-size: 4.8rem;
  color: #a8011b;
  position: absolute;
  left: calc(50% - 20px);
  top: 170px;
  z-index: 8000;
}

@media only screen and (max-width: 768px) {
  .page_index .prevsection {
    font-size: 3.0rem;
    top: 9vh;
    left: calc(50% - 15px);
  }
}

.page_index .iefix {
  display: flex;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.page_index section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.page_index section.fullsection {
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 768px) {
  .page_index section {
    overflow: initial;
  }
  .page_index section.fullsection {
    min-height: auto;
  }
}

.page_index #main_visual .backarea, .page_index #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-21.jpg");
}

.page_index .inner {
  width: 1070px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .page_index .inner {
    width: 100%;
    padding-top: 50vw;
  }
}

.page_index .content {
  width: 675px;
  padding: 40px 50px;
  position: relative;
  z-index: 2000;
}

@media only screen and (max-width: 768px) {
  .page_index .content {
    width: 90%;
    padding: 20px;
    text-align: center;
    margin: auto auto 8vh;
  }
}

.page_index .content h2 {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 4.0rem;
  letter-spacing: -1px;
  color: #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_index .content h2 {
    font-size: 2.0rem;
    text-align: left;
  }
}

.page_index .content h3 {
  font-size: 2.0rem;
  color: #4d4d4d;
  margin: 30px 0;
}

@media only screen and (max-width: 768px) {
  .page_index .content h3 {
    font-size: 1.4rem;
    margin: 10px 0;
    text-align: left;
  }
}

.page_index .content p {
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .page_index .content p {
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
  }
}

.page_index .content p + p {
  margin-top: 16px;
}

.page_index .content .morebutton {
  margin-top: 60px;
}

@media only screen and (max-width: 768px) {
  .page_index .content .morebutton {
    margin-top: 20px;
  }
}

.page_index .content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -500;
}

.page_index .content .photo {
  width: 720px;
  height: 440px;
  position: absolute;
  z-index: -1000;
  top: -30px;
}

@media only screen and (max-width: 768px) {
  .page_index .content .photo {
    width: 100%;
    height: auto;
  }
}

/*--------------------------
index / Section01
---------------------------*/
.page_index #section01 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 {
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.page_index #section01 .inner {
  justify-content: flex-end;
  text-align: right;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 .inner {
    margin-top: 0;
    align-content: flex-end;
    padding: 52vw 0 0;
  }
}

.page_index #section01 .inner p {
  text-align: left;
}

.page_index #section01 .inner .photo {
  left: -580px;
}

@media only screen and (max-width: 768px) {
  .page_index #section01 .inner .photo {
    left: -10%;
    top: -50vw;
  }
}

/*--------------------------
index / Section02
---------------------------*/
.page_index #section02 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .page_index #section02 {
    align-items: flex-end;
  }
}

.page_index #section02 .inner {
  padding-top: 150px;
  justify-content: flex-start;
}

@media only screen and (max-width: 768px) {
  .page_index #section02 .inner {
    justify-content: flex-end;
    padding: 64vw 0 0;
  }
}

.page_index #section02 .inner h2 {
  font-family: "Hiragino Sans GB","Hiragino Sans GB W3","STXihei","Microsoft YaHei", "微软雅黑",'SimSun', sans-serif;
  line-height: 1.2;
  margin-top: -58px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .page_index #section02 .inner h2 {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

.page_index #section02 .inner .photo {
  left: 535px;
}

@media only screen and (max-width: 768px) {
  .page_index #section02 .inner .photo {
    left: 10%;
    top: -50vw;
  }
}

/*--------------------------
R&D / Common
---------------------------*/
.page_r_d #main_visual .backarea, .page_r_d #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-22.jpg");
}

@media only screen and (max-width: 768px) {
  .page_r_d #main_visual .backarea, .page_r_d #main_visual .titlearea {
    background-size: 250%;
  }
}

.page_r_d #main_visual .titlearea h1 {
  font-family: "Hiragino Sans GB","Hiragino Sans GB W3","STXihei","Microsoft YaHei", "微软雅黑",'SimSun', sans-serif;
}

.page_r_d section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page_r_d .label {
  text-align: center;
}

.page_r_d .label h3 {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 4.2rem;
  font-weight: normal;
  letter-spacing: -1px;
  color: #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_r_d .label h3 {
    font-size: 2.8rem;
    line-height: 1.4;
    padding: 0 5%;
  }
}

.page_r_d .label p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .page_r_d .label p {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 10px;
    padding: 0 5%;
  }
}

/*--------------------------
R&D / Section01
---------------------------*/
.page_r_d #section01 {
  position: relative;
  padding: 50px 0 50px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01 {
    padding: 30px 5%;
  }
}

.page_r_d #section01 > p {
  width: 1070px;
  margin: 0 auto;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01 > p {
    width: 100%;
  }
}

.page_r_d #section01 > p + p {
  margin-top: 16px;
}

.page_r_d #section01 .moviewrap {
  width: 1070px;
  margin: 50px auto 0;
  padding: 50px;
  background-color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01 .moviewrap {
    width: 95%;
    padding: 15px;
    margin-top: 80px;
    position: relative;
  }
  .page_r_d #section01 .moviewrap::before {
    content: "";
    width: 150%;
    height: 20vh;
    display: block;
    background-color: #f2f2f2;
    position: absolute;
    top: -40px;
    left: -20%;
    z-index: -1;
  }
}

.page_r_d #section01 .moviewrap .youku {
  text-align: right;
  padding: 15px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01 .moviewrap .youku {
    font-size: 1.3rem;
    padding-right: 5px;
  }
}

.page_r_d #section01 .moviewrap .youku a {
  color: #333333;
}

.page_r_d #section01 .moviewrap .youku a:hover {
  text-decoration: underline;
}

.page_r_d #section01 .moviewrap .youku a i {
  margin-left: 5px;
  font-size: 1.3rem;
  vertical-align: 2px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01 .moviewrap {
    width: 100%;
  }
}

.page_r_d #section01::before {
  content: "";
  width: 100%;
  height: 330px;
  display: block;
  background-color: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section01::before {
    display: none;
  }
}

/*--------------------------
R&D / Section02
---------------------------*/
.page_r_d #section02 {
  padding: 80px 0 50px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 {
    padding: 40px 5%;
  }
}

.page_r_d #section02 h2 {
  font-size: 3.0rem;
  text-align: center;
  color: #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 h2 {
    font-size: 1.8rem;
  }
}

.page_r_d #section02 h3 {
  font-size: 2.0rem;
  line-height: 1.8;
  text-align: center;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 h3 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 20px;
  }
}

.page_r_d #section02 .introduction {
  text-align: center;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 .introduction {
    margin-top: 20px;
  }
}

.page_r_d #section02 .flowtitle {
  width: 828px;
  height: 183px;
  background-image: url("../png/section02-bg01_pc.png");
  margin: 50px auto;
  padding-top: 58px;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #666666;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 .flowtitle {
    width: 68%;
    height: 26vw;
    background-image: url("../png/section02-bg01_sp.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 25px;
    font-size: 1.6rem;
  }
}

.page_r_d #section02 > div {
  width: 1070px;
  position: relative;
  height: 340px;
  margin: 70px auto;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

.page_r_d #section02 > div .inner {
  width: 605px;
  height: 240px;
  padding: 90px 50px 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 1000;
  top: 50px;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div .inner {
    width: 100%;
    min-height: 45vw;
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: 65vw;
    padding: 20px;
  }
}

.page_r_d #section02 > div .inner .serial {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 120px;
  color: #a8011b;
  font-weight: bold;
  margin-top: -150px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div .inner .serial {
    font-size: 6.0rem;
    margin-top: -50px;
  }
}

.page_r_d #section02 > div .inner h4 {
  font-size: 2.4rem;
  margin: 30px 0 20px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div .inner h4 {
    font-size: 1.6rem;
    margin: 10px 0 15px;
  }
}

.page_r_d #section02 > div .inner .desc {
  line-height: 1.8;
}

.page_r_d #section02 > div .photo {
  width: 510px;
  height: 340px;
  position: absolute;
  z-index: 0;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div .photo {
    width: 95%;
    height: 50vw;
    top: 40vw;
    box-shadow: none;
  }
}

.page_r_d #section02 > div:nth-of-type(odd) .inner {
  margin-left: 50px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div:nth-of-type(odd) .inner {
    margin-left: 0;
  }
}

.page_r_d #section02 > div:nth-of-type(odd) .photo {
  margin-left: 50px;
  left: 560px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div:nth-of-type(odd) .photo {
    margin-left: 5%;
    left: 5%;
  }
}

.page_r_d #section02 > div:nth-of-type(even) .inner {
  left: 415px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div:nth-of-type(even) .inner {
    left: 5%;
  }
}

.page_r_d #section02 > div:nth-of-type(even) .photo {
  left: -50px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div:nth-of-type(even) .photo {
    left: 0;
  }
}

.page_r_d #section02 > div:nth-of-type(even) .serial {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section02 > div.insec04 .inner {
    margin-bottom: 50vw;
  }
}

/*--------------------------
R&D / Section03
---------------------------*/
.page_r_d #section03 {
  padding-top: 80px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 {
    padding-top: 50px;
  }
}

.page_r_d #section03 .wrapper {
  width: 100%;
  height: 550px;
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper {
    display: block;
    height: auto;
    margin-top: 40px;
    padding-top: 70vw;
  }
}

.page_r_d #section03 .wrapper .photo {
  width: 45%;
  height: 480px;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper .photo {
    width: 90vw;
    height: 80vw;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.page_r_d #section03 .wrapper .content {
  width: 55%;
  padding: 100px 0 0 60px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper .content {
    width: 95%;
    padding: 20px;
    background-color: rgba(242, 242, 242, 0.9);
    position: relative;
    margin-left: 5%;
    z-index: 1000;
  }
}

.page_r_d #section03 .wrapper .content h4 {
  color: #a8011b;
  font-size: 2.2rem;
  width: 100%;
  padding: 0 0 10px 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper .content h4 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.page_r_d #section03 .wrapper .content p {
  max-width: 500px;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper .content p {
    width: 100%;
  }
}

.page_r_d #section03 .wrapper::after {
  content: "";
  display: block;
  background-color: #f2f2f2;
  width: 65%;
  height: 500px;
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 35%;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section03 .wrapper::after {
    display: none;
  }
}

/*--------------------------
R&D / Section04
---------------------------*/
.page_r_d #section04 {
  padding: 80px 0;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 {
    padding: 50px 0 60px;
  }
}

.page_r_d #section04 .wrapper {
  width: 100%;
  height: 550px;
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 .wrapper {
    display: block;
    height: auto;
    margin-top: 40px;
    padding-top: 70vw;
  }
}

.page_r_d #section04 .wrapper .photo {
  width: 45%;
  height: 480px;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 .wrapper .photo {
    width: 90vw;
    height: 80vw;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.page_r_d #section04 .wrapper .content {
  width: 55%;
  padding: 100px 60px 0 0;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 .wrapper .content {
    width: 95%;
    padding: 20px;
    background-color: rgba(242, 242, 242, 0.9);
    position: relative;
    margin-right: 5%;
    z-index: 1000;
  }
}

.page_r_d #section04 .wrapper .content h4 {
  color: #a8011b;
  font-size: 2.2rem;
  width: 100%;
  padding: 0 5px 10px 0;
  text-align: right;
  margin-bottom: 30px;
  border-bottom: 1px solid #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 .wrapper .content h4 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
  }
}

.page_r_d #section04 .wrapper .content p {
  max-width: 500px;
  line-height: 1.8;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section04 .wrapper .content p {
    width: 100%;
  }
}

.page_r_d #section04 .wrapper::after {
  content: "";
  display: block;
  background-color: #f2f2f2;
  width: 65%;
  height: 500px;
  position: absolute;
  z-index: -1;
  top: 50px;
  left: 0;
}

/*--------------------------
R&D / Section05
---------------------------*/
.page_r_d #section05 {
  padding: 80px 0;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section05 {
    padding: 40px 0;
  }
}

.page_r_d #section05 .desc {
  text-align: center;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section05 .desc {
    margin-top: 20px;
    padding: 0 5%;
    line-height: 1.5;
  }
}

.page_r_d #section05 .layout {
  width: 1070px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section05 .layout {
    width: 100%;
    display: block;
  }
  .page_r_d #section05 .layout img {
    width: 90%;
    margin: 0 5% 5%;
  }
}

/*--------------------------
R&D / Section06
---------------------------*/
.page_r_d #section06 {
  padding: 80px 0 0;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 {
    padding: 60px 0 0;
  }
}

.page_r_d #section06 .wrapper {
  width: 100%;
  height: 500px;
  margin-top: 50px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper {
    height: 70vh;
    margin-top: 40px;
  }
}

.page_r_d #section06 .wrapper .information {
  width: 40%;
  height: 250px;
  padding: 50px;
  background-color: #a8011b;
  position: absolute;
  top: 100px;
  left: 0;
  color: #ffffff;
  z-index: 3000;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper .information {
    width: 85%;
    height: auto;
    padding: 20px;
    top: 50%;
    left: 5%;
  }
}

.page_r_d #section06 .wrapper .information dl {
  width: 400px;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper .information dl {
    width: 100%;
    font-size: 3.2vw;
    margin-top: 0;
  }
}

.page_r_d #section06 .wrapper .information dl dt {
  clear: both;
  float: left;
  width: 4.5em;
  text-align: right;
  margin-top: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper .information dl dt {
    width: 4.0em;
  }
  .page_r_d #section06 .wrapper .information dl dt:nth-of-type(1) {
    margin-top: 0;
  }
}

.page_r_d #section06 .wrapper .information dl dt::after {
  content: ":";
  margin: 0 5px;
}

.page_r_d #section06 .wrapper .information dl dd {
  line-height: 1.5;
  margin-top: 16px;
  float: left;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper .information dl dd:nth-of-type(1) {
    margin-top: 0;
  }
}

.page_r_d #section06 .wrapper .maparea {
  width: 70%;
  height: 100%;
  margin-left: 30%;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section06 .wrapper .maparea {
    width: 90%;
    height: 60%;
    margin-left: 10%;
  }
}

/*--------------------------
R&D / Section07
---------------------------*/
.page_r_d #section07 {
  padding: 80px 0 100px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section07 {
    padding: 0 0 50px;
  }
}

.page_r_d #section07 .morebutton {
  padding: 25px 80px;
}

@media only screen and (max-width: 768px) {
  .page_r_d #section07 .morebutton {
    padding: 15px 60px;
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

/*--------------------------
WEB@TSC / Common
---------------------------*/
.page_webtsc #main_visual .backarea, .page_webtsc #main_visual .titlearea {
  background-image: url("../jpg/keyvisual-23.jpg");
}

@media only screen and (max-width: 768px) {
  .page_webtsc #main_visual .backarea, .page_webtsc #main_visual .titlearea {
    background-size: 130%;
  }
}

.page_webtsc section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page_webtsc .label {
  text-align: center;
}

.page_webtsc .label h3 {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 4.2rem;
  font-weight: normal;
  letter-spacing: -1px;
  color: #a8011b;
}

.page_webtsc .label p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 16px;
}

.page_webtsc .extbutton {
  display: inline-block;
  font-size: 1.8rem;
  background-color: #a8011b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1.6rem;
  padding: 25px 80px;
}

.page_webtsc .extbutton::before {
  content: "\e802";
  font-family: 'fontello';
  font-size: 1.4rem;
  display: inline-block;
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc .extbutton::before {
    font-size: 1.2rem;
    top: calc(50% - 6px);
    right: 15px;
  }
}

.page_webtsc .extbutton::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 100%;
  background: #000000;
  transition: 0.3s;
  z-index: -1;
}

.page_webtsc .extbutton:hover::after {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .page_webtsc .extbutton {
    padding: 15px 50px;
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

/*--------------------------
WEB@TSC / Introduction
---------------------------*/
.page_webtsc #introduction {
  padding: 0 5% 40px;
}

.page_webtsc #introduction p {
  line-height: 1.7;
}

/*--------------------------
WEB@TSC / Section01
---------------------------*/
.page_webtsc #section01 {
  position: relative;
  padding: 60px 0 0;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 {
    padding: 40px 0 0;
  }
}

.page_webtsc #section01 .inner {
  width: 1070px;
  margin: 0 auto;
  background-color: #fbfbfb;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner {
    width: 90%;
    height: auto;
    padding-bottom: 20px;
  }
}

.page_webtsc #section01 .inner .content {
  width: 100%;
  padding: 50px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content {
    padding: 20px;
  }
}

.page_webtsc #section01 .inner .content .tsclogo {
  width: 416px;
  color: #0082a0;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content .tsclogo {
    width: 100%;
    text-align: center;
  }
  .page_webtsc #section01 .inner .content .tsclogo img {
    width: 80%;
  }
}

.page_webtsc #section01 .inner .content .tsclogo .en {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 1.9rem;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content .tsclogo .en {
    font-size: 1.6rem;
  }
}

.page_webtsc #section01 .inner .content .tsclogo .ja {
  font-size: 1.55rem;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content .tsclogo .ja {
    font-size: 1.6rem;
  }
}

.page_webtsc #section01 .inner .content h3 {
  font-size: 2.6rem;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content h3 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.page_webtsc #section01 .inner .content > p {
  line-height: 1.7;
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner .content > p {
    text-align: left;
  }
}

.page_webtsc #section01 .inner::after {
  content: "";
  display: block;
  background-image: url("../png/section01_img02_cn_pc-2.png");
  width: 234px;
  height: 220px;
  position: absolute;
  top: 20px;
  right: 40px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01 .inner::after {
    background-image: url("../png/section01_img02_cn_sp-2.png");
    background-size: cover;
    position: relative;
    top: 0;
    right: 0;
    width: 175px;
    height: 165px;
    margin: 0 auto;
  }
}

.page_webtsc #section01::before {
  content: "";
  display: block;
  background-color: #f2f2f2;
  width: 100%;
  height: 330px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section01::before {
    height: 40vh;
  }
}

/*--------------------------
WEB@TSC / Section02
---------------------------*/
.page_webtsc #section02 {
  width: 1070px;
  background-color: #f2f2f2;
  margin: 100px auto 0;
  padding: 60px 50px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 {
    width: 100%;
    margin: 50px 0 0;
    padding: 40px 5%;
  }
}

.page_webtsc #section02 h2 {
  font-size: 2.8rem;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 h2 {
    font-size: 2.0rem;
    line-height: 1.5;
  }
}

.page_webtsc #section02 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.page_webtsc #section02 ul li {
  width: 220px;
  height: 220px;
  margin-top: 30px;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  cursor: pointer;
}

.page_webtsc #section02 ul li a {
  color: #000000;
}

.page_webtsc #section02 ul li:nth-of-type(1) {
  background-image: url("../png/section02-bg01_pc-2.png");
}

.page_webtsc #section02 ul li:nth-of-type(2) {
  background-image: url("../png/section02-bg02_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(3) {
  background-image: url("../png/section02-bg03_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(4) {
  background-image: url("../png/section02-bg04_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(5) {
  background-image: url("../png/section02-bg05_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(6) {
  background-image: url("../png/section02-bg06_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(7) {
  background-image: url("../png/section02-bg07_pc.png");
}

.page_webtsc #section02 ul li:nth-of-type(8) {
  background-image: url("../png/section02-bg08_pc.png");
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 ul li {
    background-size: cover;
    background-position: center;
    width: 42vw;
    height: 42vw;
    padding: 20px;
    margin-top: 5vw;
  }
  .page_webtsc #section02 ul li:nth-of-type(1) {
    background-image: url("../png/section02-bg01_sp-2.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(2) {
    background-image: url("../png/section02-bg02_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(3) {
    background-image: url("../png/section02-bg03_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(4) {
    background-image: url("../png/section02-bg04_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(5) {
    background-image: url("../png/section02-bg05_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(6) {
    background-image: url("../png/section02-bg06_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(7) {
    background-image: url("../png/section02-bg07_sp.png");
  }
  .page_webtsc #section02 ul li:nth-of-type(8) {
    background-image: url("../png/section02-bg08_sp.png");
  }
}

.page_webtsc #section02 ul li p {
  font-size: 1.55rem;
  font-weight: bold;
  line-height: 1.7;
  transition-duration: 0.5s;
  padding-top: 10px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 ul li p {
    font-size: 3.5vw;
    line-height: 1.6;
  }
}

.page_webtsc #section02 ul li p:nth-of-type(2) {
  display: none;
}

.page_webtsc #section02 ul li:hover:nth-of-type(1) {
  background-image: url("../png/section02-bg09_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(2) {
  background-image: url("../png/section02-bg10_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(3) {
  background-image: url("../png/section02-bg11_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(4) {
  background-image: url("../png/section02-bg12_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(5) {
  background-image: url("../png/section02-bg13_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(6) {
  background-image: url("../png/section02-bg14_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(7) {
  background-image: url("../png/section02-bg15_pc.png");
}

.page_webtsc #section02 ul li:hover:nth-of-type(8) {
  background-image: url("../png/section02-bg16_pc.png");
}

.page_webtsc #section02 ul li:hover p:nth-of-type(1) {
  display: none;
}

.page_webtsc #section02 ul li:hover p:nth-of-type(2) {
  display: block;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 ul li:hover:nth-of-type(1) {
    background-image: url("../png/section02-bg09_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(2) {
    background-image: url("../png/section02-bg10_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(3) {
    background-image: url("../png/section02-bg11_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(4) {
    background-image: url("../png/section02-bg12_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(5) {
    background-image: url("../png/section02-bg13_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(6) {
    background-image: url("../png/section02-bg14_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(7) {
    background-image: url("../png/section02-bg15_sp.png");
  }
  .page_webtsc #section02 ul li:hover:nth-of-type(8) {
    background-image: url("../png/section02-bg16_sp.png");
  }
}

.page_webtsc #section02 ul + p {
  margin: 70px 0 30px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section02 ul + p {
    margin: 30px 0;
    line-height: 1.8;
  }
}

/*--------------------------
WEB@TSC / Section03
---------------------------*/
.page_webtsc #section03 {
  width: 1070px;
  margin: 0 auto;
  padding: 100px 0 0;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 {
    width: 100%;
    padding: 50px 0 0;
  }
}

.page_webtsc #section03 .label {
  text-align: center;
}

.page_webtsc #section03 .label h2 {
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 4.2rem;
  font-weight: normal;
  letter-spacing: -1px;
  color: #a8011b;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .label h2 {
    font-size: 2.8rem;
  }
}

.page_webtsc #section03 .label p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .label p {
    font-size: 1.5rem;
    margin-top: 12px;
  }
}

.page_webtsc #section03 .faqlist {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist {
    margin: 30px auto 0;
    width: 90%;
  }
}

.page_webtsc #section03 .faqlist dl dt {
  background-color: #4d4d4d;
  color: #ffffff;
  padding: 16px 50px 16px 70px;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist dl dt {
    padding: 15px 40px 15px 50px;
    line-height: 1.5;
  }
}

.page_webtsc #section03 .faqlist dl dt::before {
  content: "Q";
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 2.8rem;
  position: absolute;
  top: 10px;
  left: 20px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist dl dt::before {
    font-size: 2.6rem;
    top: 8px;
    left: 15px;
  }
}

.page_webtsc #section03 .faqlist dl dt::after {
  content: "\e80d";
  font-family: 'fontello';
  font-size: 2.0rem;
  position: absolute;
  top: 14px;
  right: 20px;
  vertical-align: 2px;
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist dl dt::after {
    font-size: 1.6rem;
    top: calc(50% - 12px);
    right: 15px;
  }
}

.page_webtsc #section03 .faqlist dl dd {
  position: relative;
  display: none;
  padding: 30px 30px 30px 70px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist dl dd {
    padding: 20px 20px 0 50px;
  }
}

.page_webtsc #section03 .faqlist dl dd::before {
  content: "A";
  font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 2.8rem;
  color: #a8011b;
  position: absolute;
  top: 30px;
  left: 20px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section03 .faqlist dl dd::before {
    font-size: 2.6rem;
    top: 20px;
    left: 15px;
  }
}

.page_webtsc #section03 .faqlist dl dd p {
  line-height: 1.8;
}

.page_webtsc #section03 .faqlist dl.active dt {
  background-color: #a8011b;
}

.page_webtsc #section03 .faqlist dl.active dt::after {
  content: "\e80e";
}

.page_webtsc #section03 .faqlist dl + dl {
  margin-top: 20px;
}

/*--------------------------
WEB@TSC / Section04
---------------------------*/
.page_webtsc #section04 {
  padding: 80px 0 100px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section04 {
    width: 100%;
    padding: 50px 5% 80px;
  }
}

/*--------------------------
WEB@TSC / Section05
---------------------------*/
.page_webtsc #section05 {
  padding: 100px 0 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section05 {
    width: 100%;
    padding: 50px 5% 0;
  }
}

.page_webtsc #section05 .inner {
  width: 1070px;
  margin: 0 auto;
  background-image: url("../jpg/section03-bg01_pc.jpg");
  background-size: cover;
  padding: 60px 0;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section05 .inner {
    background-image: url("../jpg/section03-bg01_sp.jpg");
    width: 100%;
    padding: 30px 5%;
  }
}

.page_webtsc #section05 .inner h2 {
  font-size: 3.4rem;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section05 .inner h2 {
    font-size: 1.8rem;
  }
}

.page_webtsc #section05 .inner p {
  font-size: 1.7rem;
  line-height: 2.0;
  font-weight: bold;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .page_webtsc #section05 .inner p {
    font-size: 1.3rem;
    font-weight: normal;
    margin-top: 20px;
  }
}
