@charset "utf-8";
/* CSS Document */
/*--------------------------------セクション*/
[id^="sec_"] {
  margin: 0 auto;
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
[id^="sec_"] p {
  font-size: 16px;
  text-align: left;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  [id^="sec_"] p {
    font-size: 18px;
  }
}
[id^="sec_"] div.row {
  justify-content: center;
  align-content: center;
  align-items: center;
}
#sec_01 p, #sec_06 p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  #sec_01 p, #sec_06 p {
    text-align: center;
  }
}
/*--------------------------------セクション背景*/
.bg_lit_bul {
  background: #dbefff;
}
/*--------------------------------スライド*/
#photo {
  width: 100%;
  height: 420px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
#photo img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  max-width: 200px;
  position: absolute;
}
@media screen and (max-width:768px) {
  #photo img {
    width: 90%;
    margin: 0 auto;
    max-width: 200px;
    position: absolute;
    right: 0;
    left: 0;
  }
}
/*----------------------------------------------------テーブル*/
.news_basic {
  width: 100%;
  border-collapse: collapse;
}
.news_basic tr th, .news_basic tr td {
  border: 1px dotted #3c80a2;
  padding: 10px;
  text-align: center;
}
.news_basic tr th {
  background: #daf3ff;
  color: #3c80a2;
}
/*----------------------------------------------------アプリDL　リンクボタン*/
a.link_btn {
  display: block;
  background: linear-gradient(to right, #065fe3 0, #003da3 100%);
  border: 1px solid #003da3;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 10px;
  margin: 30px auto;
  text-align: center;
  max-width: 640px;
  transition: 0.3s;
}
a.link_btn_ore {
  display: block;
  background: linear-gradient(to right, #ff9800 1%, #ff5d00 100%);
  border: 1px solid #ff5d00;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 10px;
  margin: 30px auto;
  text-align: center;
  max-width: 640px;
  transition: 0.3s;
}
a.link_btn:hover {
  background: #FFF;
  color: #003da3;
  transition: 0.3s;
}
a.link_btn_ore:hover {
  background: #FFF;
  color: #ff5d00;
  transition: 0.3s;
}
@media print, screen and (min-width:768px) {
  a.link_btn, a.link_btn_ore {
    font-size: 20px;
  }
}