@charset "utf-8";

/* CSS Document */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  font-family:
  /*-apple-system, BlinkMacSystemFont, 'Helvetica Neue', */
  'Hiragino Sans', 'Hiragino Kaku Gothic ProN', meiryo, sans-serif;
  line-height: 100%;
  background-color: #FFF;
  color: #2f2725;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

img {
  outline: none;
  border-style: none;
}

a {
  color: #2f2725;
  border: none;
}

a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

p {
  line-height: 180%;
  text-align: left;
}

/*-- Text --*/
.RP-Tx_Caption {
  font-size: 22px;
  font-size: 1.571rem;
  line-height: 150%;
  color: #00518c;
  font-weight: bold;
  margin: 60px 10px 0 10px;
}

.RP-Tx_Caption--S {
  font-size: 18px;
  font-size: 1.29rem;
}

.RP-Tx_SubCaption {
  font-size: 18px;
  font-size: 1.29rem;
  line-height: 160%;
  font-weight: bold;
  margin: 15px 10px 0;
}

.RP-Tx_Em {
  font-weight: bold;
  color: #00518c;
  font-size: 120%;
}

@media (min-width: 601px) {

  /*??601px?????K?p*/
  .RP-Tx_Caption {
    font-size: 32px;
    font-size: 2.28rem;
    margin: 70px 10px 0 10px;
  }

  .RP-Tx_Caption--S {
    font-size: 24px;
    font-size: 1.714rem;
  }

  .RP-Tx_SubCaption {
    font-size: 20px;
    font-size: 1.43rem;
    margin: 20px 10px 0;
  }
}

/*-- Section Common --*/
.RP-Section_Inner {
  max-width: 1200px;
  margin: 0 auto;
}


/* Section Header
-------------------------------------------------------*/
#GbHeader {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 98;
  width: 100%;
  height: 60px;
  text-align: left;
  background-color: #FFF;
  clear: both;
  border-bottom: 1px solid #9fa0a0;
}

#GbHeader-Logo {
  display: inline-block;
  margin-top: 15px;
  width: 116px;
}

.GbHeader-Check {
  display: none;
}

.GbHeader-Nav_Menu {
  background: #FFF;
  display: block;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 99;
  visibility: hidden;
  padding-bottom: 15px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.GbHeader-Nav_Menu li {
  font-size: 16px;
  font-size: 1.14rem;
  text-align: center;
  line-height: 150%;
  margin: 10px 20px 0 20px;
}

.GbHeader-Nav_Menu li a {
  display: block;
}

.GbHeader-Check:checked~.GbHeader-Nav_Menu {
  visibility: visible;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all .5s .1s cubic-bezier(0, 0, .2, 0);
  -moz-transition: all .5s .1s cubic-bezier(0, 0, .2, 0);
  transition: all .5s .1s cubic-bezier(0, 0, .2, 0);
}

.GbHeader-Check~.GbHeader-Modal {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  opacity: .1;
  position: fixed;
  top: 60px;
  z-index: 97;
  visibility: hidden;
  webkit-transition: visibility 0 linear .4s, opacity .4s;
  -moz-transition: visibility 0 linear .4s, opacity .4s;
  transition: visibility 0 linear .4s, opacity .4s;
  webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.GbHeader-Check:checked~.GbHeader-Modal {
  opacity: 1;
  webkit-transition-delay: 0;
  -moz-transition-delay: 0;
  transition-delay: 0;
  visibility: visible;
}

.GbHeader-IconHm {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 10px;
  text-align: center;
  z-index: 99;
}

.GbHeader-IconHm span {
  width: 40px;
  height: 3px;
  display: block;
  background: #595757;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.GbHeader-IconHm .top {
  -webkit-transform: translateY(-13px);
  -ms-transform: translateY(-13px);
  transform: translateY(-13px);
}

.GbHeader-IconHm .bottom {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  transform: translateY(13px);
}

.GbHeader-Check:checked+.GbHeader-Btn .middle {
  background: rgba(51, 51, 51, 0) !important;
}

.GbHeader-Check:checked+.GbHeader-Btn .top {
  -webkit-transform: rotate(-45deg) translateY(0px);
  -ms-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}

.GbHeader-Check:checked+.GbHeader-Btn .bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
  -ms-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg) translateY(0px);
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  .CO-Section_Inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width:601px) {
  /*??601px?????K?p*/
}

@media (min-width:961px) {

  /*??961px?????K?p*/
  #GbHeader-Logo {
    float: left;
  }

  .GbHeader-Nav {
    position: relative;
    text-align: right;
    float: right;
  }

  .GbHeader-Btn {
    display: none;
  }

  .GbHeader-Nav_Menu {
    background-color: inherit;
    width: auto;
    position: static;
    overflow: visible;
    padding-bottom: 0;
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  .GbHeader-Nav_Menu li {
    display: inline-block;
    margin: 25px 0 0 10px;
    font-size: 14px;
    font-size: 1rem;
    font-size: 12px;
    font-size: 0.85rem;
  }

  .GbHeader-Nav_Menu li.GbHeader-Nav_MenuBtn {
    margin: 0 10px 0 10px;
  }

  .GbHeader-Nav_Menu li.GbHeader-Nav_MenuBtn a {
    background-color: #00518c;
    text-decoration: none;
    color: #FFF;
    -moz-box-shadow: 0px 0px 5px #767676;
    -webkit-box-shadow: 0px 0px 5px #767676;
    box-shadow: 0px 0px 5px #767676;
    font-weight: normal;
    height: 32px;
    line-height: 32px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 16px;
    font-size: 1.142rem;
    padding: 0 25px;
  }
}

@media (min-width:1200px) {

  /*??1200px?????K?p*/
  .GbHeader-Nav_Menu li {
    margin: 25px 0 0 15px;
    font-size: 16px;
    font-size: 1.14rem;
    font-size:14px;
    font-size:1rem;
  }
}

@media (max-width:1257px) {

  /*??1257px?????K?p*/
  #GbHeader-Logo {
    margin-left: 20px;
  }
}


/* Section Top
-------------------------------------------------------*/
#RP-SectTop {
  width: 100%;
  min-height: 380px;
  margin: 60px auto 0 auto;
  background-color: #000;
  background-image: url(../img/RP-MainImg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFF;
}

#RP-SectTop h1 {
  font-size: 20px;
  font-size: 1.428rem;
  line-height: 140%;
  font-weight: bold;
  padding: 20px 5px 0 5px;
  text-shadow: 0px 0px 5px #000;
}

#RP-SectTop h2 {
  font-size: 24px;
  font-size: 1.714rem;
  line-height: 140%;
  font-weight: bold;
  padding: 15px 10px 0 10px;
  text-shadow: 0px 0px 5px #000;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #RP-SectTop {
    min-height: 500px;
  }

  #RP-SectTop h1 {
    font-size: 26px;
    font-size: 1.857rem;
    padding: 30px 10px 0 10px;
  }

  #RP-SectTop h2 {
    font-size: 30px;
    font-size: 2.142rem;
    padding: 20px 10px 0 10px;
  }
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #RP-SectTop {
    min-height: 620px;
  }

  #RP-SectTop h1 {
    font-size: 36px;
    font-size: 2.571rem;
    line-height: 150%;
    padding: 50px 10px 0 10px;
  }

  #RP-SectTop h2 {
    font-size: 42px;
    font-size: 3rem;
    line-height: 150%;
    font-weight: bold;
    padding: 30px 10px 0 10px;
  }
}


/* Section Top (control center,exposition)
-------------------------------------------------------*/
#CC-SectTop,
#EX-SectTop {
  width: 100%;
  min-height: 115px;
  margin: 60px auto 0 auto;
  background-color: #00518c;
  background-image: url(../img/CC-header.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  color: #FFF;
  text-align: left;
}

#EX-SectTop {
  background-image: url(../img/EX-header.png);
}

.CC-Section_Inner,
.EX-Section_Inner {
  max-width: 1100px;
  margin: 0 auto;
}

#CC-SectTop h1,
#EX-SectTop h1 {
  font-size: 20px;
  font-size: 1.428rem;
  line-height: 140%;
  font-weight: bold;
  padding: 30px 5px 0 5px;
  text-shadow: 0px 0px 5px #000;
}

@media (min-width:601px) {

  /*??481px?????K?p*/
  #CC-SectTop,
  #EX-SectTop {
    min-height: 205px;
  }

  #CC-SectTop h1,
  #EX-SectTop h1 {
    font-size: 26px;
    font-size: 1.857rem;
    padding: 60px 10px 0 10px;
  }
}

@media (min-width:1024px) {
  #CC-SectTop,
  #EX-SectTop {
    min-height: 300px;
    background-position: center center;
    background-size: 1400px 300px;
  }

  #CC-SectTop h1,
  #EX-SectTop h1 {
    font-size: 36px;
    font-size: 2.571rem;
    line-height: 150%;
    padding: 50px 10px 0 10px;
  }
}


/* Section Overview
-------------------------------------------------------*/
#RP-SectOverview {
  text-align: center;
}

#RP-SectOverview p {
  font-size: 14px;
  font-size: 1rem;
  text-align: left;
  line-height: 150%;
  margin: 15px 10px 0 10px;
}

#RP-SectOverview p br {
  display: none;
}

#RP-SectOverview ul {
  margin-top: 15px;
}

#RP-SectOverview ul.RP-SectOverview_col_list li {
  display: block;
  background-color: #f9c158;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 140%;
  margin: 5px 10px 0 10px;
  padding: 7px 5px;
}

#RP-SectOverview_Movie {
  margin: 25px 10px 0 10px;
  max-width: 620px;
}

#RP-SectOverview_Movie img {
  width: 100%;
  -moz-box-shadow: 0px 0px 9px #767676;
  -webkit-box-shadow: 0px 0px 9px #767676;
  box-shadow: 0px 0px 9px #767676;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.RP-SectOverview_col {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: top;
  -webkit-align-items: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.RP-SectOverview_col_Movie {
  width: 100%;
  max-width: 620px;
}

.RP-SectOverview_col_Movie img {
  width: 100%;
}

.RP-SectOverview_col_lead {
  width: 100%;
  max-width: 450px;
  margin-left: 0;
}

.RP-SectOverview_col_lead p {
  text-align: left !important;
}

.RP-SectOverview_col_lead ul {
  font-size: 14px;
  font-size: 1rem;
  text-align: left;
  line-height: 150%;
  list-style-type: disc;
  padding-left: 20px;
  margin: 0 10px;
}

.RP-SectOverview_col_list {
  display: block;
  background: 0;
  padding: 0;
  list-style: disc !important;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #RP-SectOverview p {
    font-size: 16px;
    font-size: 1.14rem;
    margin: 25px 10px 0 10px;
    ;
  }

  #RP-SectOverview ul {
    margin-top: 20px;
  }

  #RP-SectOverview ul.RP-SectOverview_col_list li {
    line-height: 150%;
    margin: 5px 10px;
    padding: 10px 15px;
  }

  #RP-SectOverview_Movie {
    margin: 50px auto 0 auto;
  }

  .RP-SectOverview_col_lead ul {
    font-size: 16px;
    font-size: 1.14rem;
  }
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #RP-SectOverview p {
    text-align: center;
    line-height: 170%;
    margin: 40px auto 0;
    padding: 0 10px;
    max-width: 820px;
  }

  #CC #RP-SectOverview p {
    text-align: left;
  }

  #RP-SectOverview p br {
    display: block;
  }

  #RP-SectOverview ul {
    margin-top: 40px;
  }

  #RP-SectOverview ul.RP-SectOverview_col_list li {
    display: inline-block;
  }

  #RP-SectOverview_Movie {
    margin: 50px auto 0 auto;
  }
}

@media (min-width:1024px) {
  .RP-SectOverview_col_lead {
    margin-left: 20px;
  }
}


/* Section Technology
-------------------------------------------------------*/
#RP-SectTechnology {
  text-align: center;
  background-color: #e9eaea;
  margin-top: 30px;
  padding-top: 5px;
  padding-bottom: 40px;
}

#RP-SectTechnology_Point {
  margin-top: 10px;
}

#RP-SectTechnology_Point li {
  display: block;
  background-color: #FFF;
  background-repeat: no-repeat;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 15px;
  padding: 15px 15px 5px 15px;
}

#RP-SectTechnology_Point span {
  display: inline-block;
  font-size: 16px;
  font-size: 1.142rem;
  line-height: 150%;
  font-weight: bold;
  color: #00518c;
  padding-bottom: 100px;
}

#RP-SectTechnology_PointInterface {
  background-image: url(../img/Icon_Interface.svg);
  background-size: 60px 66px;
  background-position: center 50px;
}

#RP-SectTechnology_PointTransmission {
  background-image: url(../img/Icon_Transmission.svg);
  background-size: 56px 68px;
  background-position: center 55px;
}

#RP-SectTechnology_PointSafety {
  background-image: url(../img/Icon_Safety.svg);
  background-size: 84px 62px;
  background-position: center 58px;
}

#RP-SectTechnology_PointSecurity {
  background-image: url(../img/Icon_Security.svg);
  background-size: 64px 70px;
  background-position: center 50px;
}

#RP-SectTechnology_Point dl {
  border-top: 1px solid #666464;
  padding-top: 10px;
  padding-bottom: 10px;
}

#RP-SectTechnology_Point dl br {
  display: none;
}

#RP-SectTechnology_Point dl dt {
  display: inline-block;
  text-align: left;
  line-height: 150%;
  font-weight: bold;
  padding-right: 10px;
}

#RP-SectTechnology_Point dl dd {
  display: inline-block;
  text-align: left;
  line-height: 150%;
}

#RP-Img_Structure {
  max-width: 740px;
  margin: 25px 0 0 0;
}

#RP-Img_Structure img {
  width: 100%;
}

.RP-SectTechnology_col {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: top;
  -webkit-align-items: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 15px 10px 40px 10px;
}

.RP-SectTechnology_col_Img {
  width: 100%;
  max-width: 400px;
  margin-top: 40px;
}

.RP-SectTechnology_col_Img img {
  width: 100%;
}

.RP-SectTechnology_col_lead {
  width: 100%;
  max-width: 450px;
}

.RP-SectTechnology_col_lead p {
  font-size: 16px;
  font-size: 1.14rem;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #RP-SectTechnology {
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #RP-SectTechnology_Point {
    margin-top: 50px;
  }

  #RP-SectTechnology_Point li {
    display: inline-block;
    width: 220px;
    margin: 10px;
    padding: 15px 15px 5px 15px;
  }

  #RP-SectTechnology_PointInterface span {
    font-size: 14px;
    font-size: 1rem;
  }

  #RP-SectTechnology_Point dl br {
    display: block;
  }

  #RP-Img_Structure {
    margin: 25px auto 0 auto;
  }

  .RP-SectTechnology_col {
    margin: 50px 60px;
  }

  .RP-SectTechnology_col_lead {
    margin-right: 40px;
  }
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #RP-SectTechnology {
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 100px;
  }

  #RP-Img_Structure {
    margin: 50px auto 0 auto;
  }

  #RP-Img_Structure img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}

@media (min-width:1024px) {
  .RP-SectTechnology_col_Img {
    margin-top: 0;
  }
}


/* Section Technology (control center)
-------------------------------------------------------*/
#CC-SectTechnology_Point {
  margin-top: 10px;
}

#CC-SectTechnology_PointInterface {
  display: block;
  background-color: #FFF;
  background-repeat: no-repeat;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 15px;
  padding: 15px 15px 5px 15px;
}

#CC-SectTechnology_PointInterface span {
  display: inline-block;
  line-height: 150%;
  font-weight: bold;
  color: #00518c;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #666464;
  margin-bottom: 15px;
}

#CC-SectTechnology_PointInterface_Img {
  display: block;
  vertical-align: middle;
  width: 105px;
  height: 90px;
  margin: 0 auto 5px;
}

#CC-SectTechnology_PointInterface_Img img {
  width: auto;
}

#CC-SectTechnology_PointInterface_Text {
  display: inline-block;
  vertical-align: middle;
  width: 290px;
  margin-left: 15px;
}

#CC-SectTechnology_PointInterface_Text ul {
  line-height: 180%;
  list-style: disc;
  text-align: left;
  padding-left: 20px;
  margin: 5px 0 20px;
}

#CC-Img_System {
  max-width: 940px;
  margin: 25px 0 0 0;
}

#CC-Img_System img {
  width: 100%;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #CC-Img_System {
    margin: 25px auto 0 auto;
  }

  #CC-SectTechnology_Point {
    margin-top: 50px;
  }

  #CC-SectTechnology_PointInterface {
    display: inline-block;
    width: 460px;
    margin: 10px;
    padding: 15px 20px 5px 20px;
  }

  #CC-SectTechnology_PointInterface span {
    font-size: 18px;
    font-size: 1.286rem;
    width: 100%;
  }

  #CC-SectTechnology_PointInterface_Img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto 20px;
  }
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #CC-Img_System {
    margin: 50px auto 0 auto;
  }

  #CC-Img_System img {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
}


/* Control Center Cockpit
-------------------------------------------------------*/
#CC-Cockpit {
  text-align: center;
  background-color: #e9eaea;
  margin-top: 30px;
  padding-top: 5px;
  padding-bottom: 40px;
}

#CC-Cockpit_List {
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: top;
  -webkit-align-items: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 0;
}

#CC-Cockpit_List_Items {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-right: 0;
  margin-bottom: 30px;
  background: #fff;
}

#CC-Cockpit_List_Items:first-child {
  width: 100%;
  max-width: 340px;
}

#CC-Cockpit_List_Items:last-child {
  margin-right: 0;
}

#CC-Cockpit_List_Items img {
  width: 100%;
}

#CC-Cockpit_List_Items span {
  font-size: 16px;
  font-size: 1.14rem;
  text-align: center;
  font-weight: bold;
  display: block;
  width: 100%;
  padding: 18px 20px;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #CC-Cockpit {
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #CC-Cockpit_List_Items {
    margin-right: 20px;
  }
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #CC-Cockpit {
    margin-top: 70px;
    padding-top: 20px;
    padding-bottom: 100px;
  }
}


/* Section Detail (View,Protocol,Shortdelay)
-------------------------------------------------------*/
#RP-SectDetail_View,
#RP-SectDetail_Protocol,
#RP-SectDetail_Shortdelay {
  width: 100%;
  margin: 0px;
  padding: 0px;
  /*background-color: #000;*/
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

#RP-SectDetail_View {
  background-image: url(../img/RP-BgImg_View.jpg);
}

#RP-SectDetail_Protocol {
  background-image: url(../img/RP-BgImg_Protocol.jpg);
}

#RP-SectDetail_Shortdelay {
  background-image: url(../img/RP-BgImg_Shortdelay.jpg);
  padding-bottom:50px;
}

#RP-SectDetail_View .RP-Section_Inner,
#RP-SectDetail_Protocol .RP-Section_Inner,
#RP-SectDetail_Shortdelay .RP-Section_Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
}

.RP-SectDetail_Caption {
  background-color: rgba(16, 79, 134, 0.75);
  color: #FFF;
  text-align: left;
  margin: 0px;
  padding: 10px 15px;
}

.RP-SectDetail_Caption h1 {
  font-size: 18px;
  font-size: 1.285rem;
  font-weight: bold;
  line-height: 150%;
}

.RP-SectDetail_Caption h2 {
  font-size: 14px;
  font-size: 1rem;
  line-height: 150%;
  margin-top: 3px;
}

.RP-SectDetai_Img {
  max-width: 585px;
}

.RP-SectDetai_Img img {
  width: 100%;
}

.RP-SectDetai_Shortdelay_Doclink {
  color:#FFF;
  font-weight:bold;
  text-align:center;
  font-size:1.5rem;
  padding:0 15px 45px;
}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #RP-SectDetail_View,
  #RP-SectDetail_Protocol,
  #RP-SectDetail_Shortdelay {
    background-position: center center;
    background-size: cover;
  }

  #RP-SectDetail_View .RP-Section_Inner,
  #RP-SectDetail_Protocol .RP-Section_Inner,
  #RP-SectDetail_Shortdelay .RP-Section_Inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0;
  }

  #RP-SectDetail_Shortdelay .RP-Section_Inner--PaddingTop {
    padding-top: 0px;
    margin-top: -10px;
  }

  #RP-SectDetail_Protocol .RP-Section_Inner {
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .RP-SectDetail_Caption {
    width: 500px;
    height: 160px;
    padding: 25px;
  }

  .RP-SectDetail_Caption h1 {
    font-size: 22px;
    font-size: 1.571rem;
  }

  .RP-SectDetail_Caption h2 {
    margin-top: 8px;
  }

  .RP-SectDetai_Img img {
    -moz-box-shadow: 0px 0px 9px #767676;
    -webkit-box-shadow: 0px 0px 9px #767676;
    box-shadow: 0px 0px 9px #767676;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
  }
}

@media (min-width:961px) {

  /*??961px?????K?p*/
  .RP-SectDetail_Caption h1 {
    font-size: 24px;
    font-size: 1.714rem;
  }

  .RP-SectDetail_Caption h2 {
    font-size: 16px;
    font-size: 1.142rem;
    margin-top: 10px;
  }
}

/* Section Exposition
-------------------------------------------------------*/
#RP-SectExposition {
  text-align: center;
}

#RP-SectExposition p,
#RP-SectExposition ul,
#RP-SectExposition h2,
#RP-SectExposition h3 {
    text-align: left;
    line-height: 170%;
    margin: 40px auto 0;
    padding: 0 10px;
    max-width: 820px;
}

#RP-SectExposition h2 {
  font-size:1.5rem;
  font-weight:bold;
}

#RP-SectExposition h3 {
  font-size:1.2rem;
  font-weight:bold;
}

#RP-SectExposition ul li {
  margin-top:5px;
}

.RP-SectExposition_Img {
  margin:25px auto 0 auto;
  border:1px solid #bbb;
  max-width:750px;
}

.RP-SectExposition_Img img {
  width:100%;
}

#RP-SectExposition .RP-SectExposition_TextR {
  text-align:right;
}

.RP-SectExposition_UnderLine {
  text-decoration: underline;
}

.RP-SectExposition_TextS {
  font-size: 85%;
}


/* Section Inq
-------------------------------------------------------*/
#RP-SectInq {
  background-color: #FFF;
  padding: 35px 0;
  text-align: center;
}

#RP-SectInq_Btn {
  display: block;
  width: 95%;
  max-width: 600px;
  height: 60px;
  line-height: 60px;
  background-color: #104f86;
  margin: 0 auto 0 auto;
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.143rem;
  -moz-box-shadow: 0px 0px 9px #767676;
  -webkit-box-shadow: 0px 0px 9px #767676;
  box-shadow: 0px 0px 9px #767676;
  vertical-align: middle;
}

#RP-SectInq_Btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_Arrow.svg) no-repeat;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}

#RP-SectInq_Btn+#RP-SectInq_Btn {
  margin-top: 30px;
}

.RP-SectInq_Btn--cc {
  background-image: url(../img/btn-cc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.RP-SectInq_Btn--rp {
  background-image: url(../img/btn-rp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.RP-SectInq_Btn--inquiry {
  background-image: url(../img/btn-inquiry.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.RP-SectInq_Btn--exposition {
  background-image: url(../img/btn-exposition.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#RP-SectInq_Btn.RP-SectInq_Btn--exposition span {
  display:inline-block;
}

#RP-SectInq_Btn.RP-SectInq_Btn--exposition {
  line-height:100%;
}

.RP-SectInq_Btn--exposition span {
  line-height:130%;
  padding-top:10px;
}

#RP-SectInq_Btn.RP-SectInq_Btn--exposition::after {
  position:relative;
  top:-10px;
}

@media (min-width:481px) {

  /*??481px?????K?p*/
  #RP-SectInq {
    padding: 50px 10px;
  }

  #RP-SectInq_Btn {
    font-size: 20px;
    font-size: 1.428rem;
  }

  #RP-SectInq_Btn::after {
    width: 24px;
    height: 24px;
    margin-left: 25px;
  }

  #RP-SectInq_Btn+#RP-SectInq_Btn {
    margin-top: 50px;
  }

  .RP-SectInq_Btn--exposition span {
    line-height:120%;
    padding-top:5px;
  }

  #RP-SectInq_Btn.RP-SectInq_Btn--exposition::after {
    top:-15px;
  }

}

@media (min-width:601px) {

  /*??601px?????K?p*/
  #RP-SectInq_Btn {
    max-width: 600px;
    height: 72px;
    line-height: 72px;
    font-size: 22px;
    font-size: 1.571rem;
  }

  .RP-SectInq_Btn--exposition span {
    line-height:140%;
    padding-top:5px;
  }

}

@media (min-width:961px) {

  /*??961px?????K?p*/
  #RP-SectInq {
    padding: 75px 10px;
    text-align: center;
  }

  #RP-SectInq_Btn {
    height: 100px;
    line-height: 100px;
    font-size: 24px;
    font-size: 1.714rem;
  }

  .RP-SectInq_Btn--exposition span {
    line-height:150%;
    padding-top:15px;
  }

}


/* Section Footer
-------------------------------------------------------*/
#RP-SectFooter {
  line-height: 130%;
  background-color: #dcdddd;
  padding: 30px 10px;
  font-size: 10px;
  font-size: 0.71rem;
}

@media (min-width: 601px) {

  /*??601px?????K?p???????X?^?C??*/
  #RP-SectFooter {
    padding: 50px 15px;
    font-size: 14px;
    font-size: 1rem;
  }
}

@media (min-width:961px) {
  /*??961px?????K?p*/
}
