﻿/*************************************
自動車共済見積機能 CSS
**************************************/


/*************************************
共通設定
**************************************/

body{-webkit-text-size-adjust:100%}

#TblMain * {
  margin-top: 0px;
  margin-bottom: 2px;
}

@media screen and (min-width: 751px) {
  .PC_HIDDEN {
    display:none;
  }
}
@media screen and (max-width: 750px) {
  .PC_HIDDEN {
    display:normal;
  }
}
@media screen and (min-width: 751px) {
  .MOBILE_HIDDEN {
    display:normal;
  }
}
@media screen and (max-width: 750px) {
  .MOBILE_HIDDEN {
    display:none;
  }
}
div.LEFT_SIDE {
  float: left;
}

div.RIGHT_SIDE {
  float: right;
}

/*フォントカラー*/
.BOLD {
  font-weight:bold !important;
}
.FONT_COLOR_RED {
  color :red!important;
}

.FONT_COLOR_GRAY {
  color: gray !important;
}

.FONT_COLOR_WHITE {
  color :white!important;
}

.FONT_COLOR_DODGERBLUE {
  color: dodgerblue!important;
}

.FONT_COLOR_INHERIT {
  color: inherit !important;
}

.ERROR_TEXT {
  color:red;
}

.FONT_COLOR_BLACK {
  color: black!important;
}

/*フォントサイズ*/
/*本来は変数を用いて内部に取り込むべきだが、
  IE10では変数を使用できないため独立させる。
*/
.FONTSIZE_XL {
  font-size: 37px;
}

.FONTSIZE_L {
  font-size: 20px;
}

.FONTSIZE_M {
  font-size: 20px;
}

.FONTSIZE_BAND_MINI {
  font-size: 20px;
}

.FONTSIZE_NOTICE {
  font-size: 15px;
}

.FONTSIZE_S {
  font-size: 15px;
}

.FONTSIZE_XS {
  font-size: 13px;
}

.FONTSIZE_RESULT {
  font-size: 15px;
}

.BLOCK_INDENT_RESULT {
  display: block;
  padding-left: 15px;
}

.FONTSIZE_RESULT_MENSEKI {
  font-size: 11.5px;
  letter-spacing: 0px;
  line-height: 0px;
}

@media screen and (min-width: 561px) and (max-width: 750px) {
  .FONTSIZE_RESULT {
    font-size: 11px;
  }
  .BLOCK_INDENT_RESULT {
    padding-left: 11px;
  }
  .FONTSIZE_RESULT_MENSEKI {
    font-size: 11px;
  }
}

@media screen and (max-width: 560px) {
  .FONTSIZE_RESULT {
    font-size: 10.5px;
  }
  .BLOCK_INDENT_RESULT {
    padding-left: 10.5px;
  }
  .FONTSIZE_RESULT_MENSEKI {
    font-size: 10.5px;
  }
}

.LINK_FONTSIZE {
  font-size:35px;
}  

.BUTTON_FONTSIZE_FILL {
  font-size: 28px;
}
.BUTTON_FONTSIZE_BORDER {
  font-size: 24px;
}
.BUTTON_FONTSIZE_BORDER_HP {
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  .LINK_FONTSIZE {
    font-size:30px;
  }  
}

@media screen and (max-width: 560px) {
  .FONTSIZE_XL {
    font-size: 18px;
  }
  .FONTSIZE_L {
    font-size: 16px;
  }
  .FONTSIZE_M {
    font-size: 12px;
  }
  .FONTSIZE_BAND_MINI {
    font-size: 14px;
  }
  .FONTSIZE_NOTICE {
    font-size: 12px;
  }
  .FONTSIZE_S {
    font-size: 12px;
  }
  .FONTSIZE_XS {
    font-size: 5px;
  }
  .LINK_FONTSIZE {
    font-size:20px;
  }  
  .BUTTON_FONTSIZE_FILL {
    font-size: 28px;
  }
  .BUTTON_FONTSIZE_BORDER {
    font-size: 14.2px;
  }
  .BUTTON_FONTSIZE_BORDER_HP {
    font-size: 14.2px;
  }
}

/*背景色*/
.BACKGROUND_BLUE_H {
  background-color: dodgerblue !important;
}
.BACKGROUND_BLUE_M {
  background-color: lightskyblue !important;
}
.BACKGROUND_BLUE_L {
  background-color: powderblue !important;
}
.BACKGROUND_WHITE {
  background-color: white !important;
}
.BACKGROUND_LEMONCHIFFON {
  background-color: lemonchiffon !important;
}
.BACKGROUND_GRAY {
  background-color: lightgray !important;
}
.BACKGROUND_LIGHT_RED {
  background-color: #ffc8c8 !important;
}

/*罫線色*/
.BORDER_BLUE_H {
  border-color: dodgerblue !important;
}

.BORDER_BLUE_M {
  border-color: lightskyblue !important;
}

.BORDER_BLUE_L {
  border-color: lightblue !important;
}

.BORDER_GRAY {
  border-color: lightgray !important;
}

.CONTENT_LABEL {
  font-weight: 500;
  line-height: 120%;
}

/*ボタン表示制御*/
.CAR_BUTTON_BASE, .CAR_BUTTON_BASE:active, .CAR_BUTTON_BASE:focus {
  min-width: 20px;
  height: 48px;
  margin: 0px 0px 10px !important;
  padding: 0;
  border-style: none;
  -webkit-appearance: button;
  -webkit-border-radius: 0;
  cursor: pointer;
  line-height: 1;
}

.CAR_BUTTON_FILL, .CAR_BUTTON_FILL:active, .CAR_BUTTON_FILL:focus {
  border-width: 0px;
  background-color: dodgerblue;
  font-weight: bold;
  color: white;
}

.CAR_BUTTON_BORDER, .CAR_BUTTON_BORDER:active, .CAR_BUTTON_BORDER:focus {
  border: 1px solid;
  border-color: dodgerblue;
  background-color: white;
  color: dodgerblue;
}

.CAR_BUTTON_HALF, .CAR_BUTTON_HALF:active, .CAR_BUTTON_HALF:focus {
  height: 32px;
}

.TITLE_DIV {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.TITLE_DIV > span {
  color: #0078c7;
  font-size: 23pt;
  font-family: メイリオ;
  text-align: left;
  line-height: 110%;
  vertical-align: top;
}

.TITLE_DIV_1 {
  text-align: left;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px !important;
}

.TITLE_DIV_1 > span {
  color: #0078c7;
  font-size: 23pt;
  font-family: メイリオ;
  text-align: left;
  line-height: 110%;
  vertical-align: top;
}

/*改行制御*/
.sp_modeInl {
  display: none;
}

.sp_not_modeInl {
  display: none;
}

.sp_modeInlRev {
  display: inline-block;
}

.spLarge_modeInl {
  display: none;
}

@media screen and (max-width: 750px) {
  .spLarge_modeInl {
    display: inline-block;
  }
}

@media screen and (min-width: 561px) {
  .sp_not_modeInl {
    display: contents;
  }
}

@media screen and (max-width: 560px) {
  .sp_modeInl {
    display: inline-block;
  }
}

/*行間制御*/
.LINE_HEIGHT_15PX {
  line-height: 15px;
}

.LINE_HEIGHT_20PX {
  line-height: 20px;
}

.LINE_HEIGHT_RESULT {
  line-height: 1.5;
}

.LINE_HEIGHT_FLOAT {
  line-height: 15px;
}

/*************************************
入力画面
**************************************/
.RDO_MARGIN {
  margin: 0px 30px 15px 0px !important;
}

.TARGET_AREA {
  padding: 5px 20px;
}

.TOKYU_TEXTBOX {
  border-radius: 3px;
  height: 30px;
  text-indent: 0em;
  width: 55px;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px !important;
}

.PADDING_ROW {
  height: 10px
}

.PADDING_30 {
  padding-left: 30px
}

.PADDING_BOTTOM_15 {
  padding-bottom: 15px;
}

.FIRSTREGYEARMON_CONTENT {
  padding-left: 20px;
  padding-right: 10px;
  padding-top: 10px;
  vertical-align: bottom;
  line-height: normal;
}

.FIRSTREGYEARMON_CONTENT > span {
  display: inline-block;
  font-size: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 560px) {
  .FIRSTREGYEARMON_CONTENT > span {
    font-size: 15px;
    margin-right: 0px;
  }
}

.FIRSTREGYEARMON_CONTENT > label {
  margin-bottom: 8px !important;
}

.FIRSTREGYEARMON_LIST {
  height: 30px !important;
  width: 130px !important;
}


.FIRSTREGYEARMON_LIST::before {
  right: calc( ( 20% - 13px ) / 2 ) !important;
}

.FIRSTREGYEARMON_LIST::after {
  width: 20% !important;
}

@media screen and (max-width: 560px) {
  .FIRSTREGYEARMON_LIST {
    height: 30px !important;
    width: 70px !important;
  }

  .FIRSTREGYEARMON_LIST::before {
    right: calc( ( 20% - 5px ) / 2 ) !important;
  }

  .FIRSTREGYEARMON_LIST::after {
    width: 30% !important;
  }
}

.TOKYU_CONTENT {
  padding-left: 20px;
  padding-right: 10px;
  padding-top: 10px;
  vertical-align: bottom;
  line-height: normal;
}

.TOKYU_CONTENT > span {
  display: inline-block;
  font-size: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 560px) {
  .TOKYU_CONTENT > span {
    font-size: 15px;
  }
}

.TOKYU_CONTENT > label {
  margin-bottom: 8px !important;
}

.TOKYU_LIST {
  height: 30px !important;
  width: 130px !important;
}

.TOKYU_LIST::before {
  right: calc( ( 20% - 13px ) / 2 ) !important;
}

.TOKYU_LIST::after {
  width: 20% !important;
}


@media screen and (max-width: 560px) {
  .TOKYU_LIST {
    height: 30px !important;
    width: 70px !important;
  }

  .TOKYU_LIST::before {
    right: calc( ( 20% - 5px ) / 2 ) !important;
  }

  .TOKYU_LIST::after {
    width: 30% !important;
  }
}

/*下部ボタンエリア*/
div.BOTTOM_BUTTON_AREA {
  margin-top:20px !important;
  width:100%;
}

@media screen and (max-width: 560px) {
  div.BOTTOM_BUTTON_AREA {
    margin-top:10px !important;
  }
}

div.BOTTOM_BUTTON_AREA > input {
  width:100%;
}

div.BOTTOM_BUTTON_AREA > div {
  width:100%;
  display:flex;
  flex-direction:row;
  justify-content:space-between;  
  flex-wrap:wrap;
}

div.BOTTOM_BUTTON_AREA > div > input {
  width:49%;
}

@media screen and (max-width: 750px) {
  div.BOTTOM_BUTTON_AREA > div > input {
    width:100%;
  }
}

.MITSUMORI_YMD_LABEL {
  width: 100%;
  height: 10px;
  text-align: left;
  position: relative;
  top: -25px;
}

.MITSUMORI_BEFORE_NEW_LABEL {
  width: 99%;
  height: 10px;
  text-align: left;
  position: relative;
  top: -25px;
}

.MARGIN_TOP_BOTTOM_5_IMPORTANT {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
  display : block;
}

.MARGIN_TOP_10_IMPORTANT {
  margin-top: 10px !important;
  display: block;
}

.MARGIN_TOP_15_IMPORTANT {
  margin-top: 15px !important;
  display: block;
}

.MARGIN_BOTTOM_MITSUMORI_YMD {
  margin-bottom: 25px !important;
  margin-top: 5px !important;
  display: block;
}

.MARGIN_TOP_MITSUMORI_BEFORE_NEW {
  margin-top: 10px !important;
  margin-bottom: 25px !important;
  display: block;
}

@media screen and (max-width: 750px) and (min-width: 561px) {
  .MARGIN_BOTTOM_MITSUMORI_YMD {
    margin-top: 5px !important;
  }

  .MARGIN_TOP_MITSUMORI_BEFORE_NEW {
    margin-top: 25px !important;
  }

  .MITSUMORI_BEFORE_NEW_LABEL {
    height: 0px;
    top: -30px;
  }
}

@media screen and (max-width: 560px)  {
  .MARGIN_BOTTOM_MITSUMORI_YMD {
    margin-top: 5px !important;
  }

  .MARGIN_TOP_MITSUMORI_BEFORE_NEW {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .MITSUMORI_BEFORE_NEW_LABEL {
    top: -20px;
  }
}

.TEXT_INDENT {
  padding-left: 15px;
  text-indent: -12px;
  display: block;
}

.TEXT_INDENT_LEFT10 {
  padding-left: 10px;
  text-indent: -12px;
  display: block;
}

.TEXT_INDENT_RESULT {
  padding-left: 15px;
  text-indent: -15px;
  display: block;
}

.TEXT_INDENT_PREMIUM {
  padding-left: 55px;
  text-indent: -15px;
  display: block;
}

.TEXT_INDENT_COVERAGE {
  padding-left: 20px;
  text-indent: -15px;
}

.TEXT_INDENT_FB {
  padding-left: 27px;
  text-indent: -13px;
  display: block;
}

@media screen and (max-width: 560px){
   .TEXT_INDENT {
    line-height: 22px;
   }
   .TEXT_INDENT_LEFT10 {
    line-height: 22px;
   }
  .TEXT_INDENT_RESULT {
    padding-left: 12px;
    text-indent: -12px;
    display: block;
  }
  .TEXT_INDENT_FB {
    padding-left: 23px;
    text-indent: -15px;
    display: block;
  }
  .TEXT_INDENT_PREMIUM {
    padding-left: 40px;
    text-indent: -12px;
    display: block;
  }
  .TEXT_INDENT_COVERAGE {
    padding-left: 20px;
    text-indent: -12px;
  }
}

/*ナビゲーションアイコン部*/
.ICON_AREA {
  margin-top: 20px;
  margin-bottom: 38px;
  padding-right: 10px;
  height: 55px;
}

.SMALL_ICON_AREA {
  display: none
}

.ICON_AREA_MOTOCYCLE {
  margin-top: 20px;
  margin-bottom: 38px;
  padding-right: 10px;
  height: 55px;
}

.SMALL_ICON_AREA_MOTOCYCLE {
  display: none
}

.ICON_AREA_MOPED {
  margin-top: 20px;
  margin-bottom: 38px;
  padding-right: 10px;
  height: 55px;
}

.SMALL_ICON_AREA_MOPED {
  display: none
}

@media screen and (max-width: 665px) {
  .ICON_AREA {
    display: none
  }

  .SMALL_ICON_AREA {
    margin-top: 13px;
    margin-bottom: 20px;
    padding-right: 10px;
    height: 25px;
    display: block
  }

  .ICON_AREA_MOTOCYCLE {
    display: none
  }

  .SMALL_ICON_AREA_MOTOCYCLE {
    margin-top: 13px;
    margin-bottom: 20px;
    padding-right: 10px;
    height: 25px;
    display: block
  }

  .ICON_AREA_MOPED {
    display: none
  }

  .SMALL_ICON_AREA_MOPED {
    margin-top: 13px;
    margin-bottom: 20px;
    padding-right: 10px;
    height: 25px;
    display: block
  }
}

.STEP_ICON_MINI {
  width: 15.5%;
  height: 25px;
}

@media screen and (max-width: 665px) {
  .STEP_ICON_MINI > div {
    padding-top: 15px !important;
  }
}

.STEP_ICON_CAR {
  display: inline-block;
  width: 16%;
  height: 55px;
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
}

.STEP_ICON_CAR > div {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  text-align: left;
  line-height: 1.2;
  z-index: 1;
  background-color: #CCECFF;
  padding: 15px 0px 0px 5px;
}

.STEP_ICON_CAR::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 5%;
  height: 100%;
  width: 55px;
  content: "";
  transform: rotate(45deg) skew(10deg, 10deg);
  border-radius: 0px;
  background-color: #CCECFF;
}

.STEP_ICON_CAR.DISABLE > div {
  background-color: #D1D2D4;
}

.STEP_ICON_CAR.DISABLE::after {
  background-color: #D1D2D4;
}

.STEP_ICON_CAR.CAR > div {
  position: relative;
  padding-top: 0px;
}

.STEP_ICON_CAR.CAR div.NUM {
  position: absolute;
  top: 35%;
  left: 5%;
  line-height: 1.2;
}

.STEP_ICON_CAR.CAR div.TEXT {
  position: absolute;
  line-height: 1.2;
  top: 22%;
  left: 20%;
}

.STEP_ICON_CAR.CAR div.TEXT_CENTER {
  position: absolute;
  line-height: 1.2;
  top: 35%;
  left: 20%;
}

.FONTSIZE_MENU {
  font-size: 14px !important;
}

@media screen and (max-width: 750px) {
  .STEP_ICON_CAR.CAR div.NUM {
    top: 40%;
  }

  .STEP_ICON_CAR.CAR div.TEXT {
    top: 25%;
  }

  .STEP_ICON_CAR.CAR div.TEXT_CENTER {
    top: 40%;
  }

  .FONTSIZE_MENU {
    font-size: 12px !important;
  }
}

/*手順表示アイコン（小）*/
.STEP_ICON_MINI {
  display: inline-block;
  height: 30px;
  overflow: hidden;
  position: relative;
}

.STEP_ICON_MINI > div {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  text-align: center;
  line-height: 0;
  z-index: 1;
  background-color: #CCECFF;
  padding: 15px 0px 0px 5px;
}

.STEP_ICON_MINI::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 2%;
  height: 100%;
  width: 30px;
  content: "";
  transform: rotate(45deg) skew(15deg, 15deg);
  border-radius: 0px;
  background-color: #CCECFF;
}

@media screen and (max-width: 560px) {
  .STEP_ICON_MINI::after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 8%;
    height: 100%;
    width: 30px;
    content: "";
    transform: rotate(45deg) skew(15deg, 15deg);
    border-radius: 0px;
    background-color: #CCECFF;
  }
}

/*手順表示アイコン_非活性*/
.STEP_ICON.DISABLE > div {
  background-color: #D1D2D4;
}

.STEP_ICON.DISABLE::after {
  background-color: #D1D2D4;
}

/*手順表示アイコン（半）_非活性*/
.STEP_ICON_HARF.DISABLE > div {
  background-color: #D1D2D4;
}

.STEP_ICON_HARF.DISABLE::after {
  background-color: #D1D2D4;
}

/*手順表示アイコン（小）_非活性*/
.STEP_ICON_MINI.DISABLE > div {
  background-color: #D1D2D4;
}

.STEP_ICON_MINI.DISABLE::after {
  background-color: #D1D2D4;
}

@media screen and (max-width: 560px) {
  .STEP_ICON_MINI {
    width: 15%;
  }

  .STEP_ICON_MINI > div {
    width: 60%;
  }
}
