/* CSS Document */

body {
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  height: 100%;
}
#main_contents {
  flex: 1 0 auto;
}

.pc {
  display: initial !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width:768px){
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}

/*--------------------------------------------------
  画像透過度選択[image_opacity]
---------------------------------------------------*/
.image_opacity a:hover {
  filter:alpha(opacity = 90);
  -moz-opacity: 0.9;
  opacity:0.9;
}

/*--------------------------------------------------
  デフォルトリンクカラー[default_link_color]
---------------------------------------------------*/
.default_link_color a:link {text-decoration:none; color: #0066cb;}
.default_link_color a:visited {text-decoration:underline; color: #0066cb;}
.default_link_color a:hover {text-decoration:underline; color: #0066cb;}
.default_link_color a:active {text-decoration:underline; color: #0066cb;}


/*--------------------------------------
  ヘッダー
--------------------------------------*/
header {
  border-bottom: 1px solid #005599;
}


/*--------------------------------------
  フッター
--------------------------------------*/
footer {
  background-color: #002f7b;
  margin-top: 50px;
  padding-top: 0px;
  padding-bottom: 20px;
  color: #fff;
}



/*--------------------------------------
  共通部品
--------------------------------------*/
.detail_title_01 {
  color: #ffffff;
  background-color: #002f7b;
  text-align: center;
  font-weight: bold;
  font-size: 140%;
  line-height: 170%;
  padding: 15px 7px 12px 7px;
}
.detail_title_02 {
  color: #ffffff;
  background-color: #333333;
  text-align: center;
  font-weight: bold;
  font-size: 140%;
  line-height: 140%;
  padding: 15px 7px 12px 7px;
}
.detail_title_03 {
  color: #333333;
  border-left: 10px solid #333333;
  font-weight: bold;
  font-size: 120%;
  line-height: 140%;
  padding: 12px 7px 9px 15px;
}


/*--------------------------------------
  コモン的ボタン
--------------------------------------*/
.common_link_btn {
  margin-top: 1em;
  border: 1px solid #999999;
  background-color: #ffffff;
  display: block;
  line-height: 160%;
  position: relative;
  text-align: center;
  padding: 22px 10px 20px 10px;
  transition: 0.4s;
}
.common_link_btn::before {
  content: "";
  background:none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #666 transparent;
  transform: rotate(0deg);
  position:absolute;
  bottom: 8px;
  right: 8px;
  transition: 0.4s;
}
.common_link_btn:hover {
  border: 1px solid #dd0000;
  background-color: #fffdff;
}
.common_link_btn:hover::before {
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #0066cb transparent;
}


/*------------------
  コモン的ボタン（もっと見る）
------------------*/
.arrow_btn {
  cursor: pointer;
  transition: all .2s;
  padding: 17px 40px 16px 40px;
  border-radius: 10px;
  background: #555555;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
}
.arrow_btn:hover {
  background: #777777;
}
.arrow_btn > svg {
  width: 34px;
  margin-left: 20px;
  transition: transform .3s ease-in-out;
}
.arrow_btn:hover svg {
  transform: translateX(10px);
}
.arrow_btn:active {
  transform: scale(0.9);
}












/*--------------------------------------
bootstrap オリジナル CSS
--------------------------------------*/
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1-5 {
  width: 20%;
  float: left;
}
.col-xs-2-5 {
  width: 40%;
  float: left;
}

.col-xs-3-5 {
  width: 60%;
  float: left;
}

.col-xs-4-5 {
  width: 80%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-1-5 {
    width: 20%;
    float: left;
  }
  .col-sm-2-5 {
    width: 40%;
    float: left;
  }
  .col-sm-3-5 {
    width: 60%;
    float: left;
  }
  .col-sm-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-1-5 {
    width: 20%;
    float: left;
  }
  .col-md-2-5 {
    width: 40%;
    float: left;
  }
  .col-md-3-5 {
    width: 60%;
    float: left;
  }
  .col-md-4-5 {
    width: 80%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-5 {
    width: 20%;
    float: left;
  }
  .col-lg-2-5 {
    width: 40%;
    float: left;
  }
  .col-lg-3-5 {
    width: 60%;
    float: left;
  }
  .col-lg-4-5 {
    width: 80%;
    float: left;
  }
}

.col-xs-1-2, .col-sm-1-2, .col-md-1-2, .col-lg-1-2,{
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}   
.col-xs-1-2 {
  width: 50%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-1-2 {
    width: 50%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-1-2 {
    width: 50%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-1-2 {
    width: 50%;
    float: left;
  }
}


/*--------------------------------------
  トップリンク H.takahashi
---------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
}
 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 5px 0px 5px;
  border: 2px solid #ffffff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  background-color: #002f7b;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
 
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media print{
  #pageTop {
    position: fixed;
    bottom: 0px;
    right: 0px;
  }
  
  #pageTop a {
    padding: 0px 0px 0px 0px;
  }
}

