@charset "utf-8";
/*=================================
style.css()
1: parts (title,list,table,etc)
2: layout
3: contents
=================================*/

/* 1: parts (title,list,table,etc)
================================== */
/* ------title classes------ */
.ttlDesign1 {
  font-size: 3.4rem;
  font-weight: bold;
}
@media all and (min-width: 768px) {
  .ttlDesign1 {
    font-size: 4.2rem;
    margin-bottom: 16px;
  }
}
.ttlDesign2 {
  font-weight:bold;
  font-size: 2.4rem;
  padding: 4px 8px;
  margin-bottom: 16px;
  color: #e60412;
  border-bottom: 2px solid #e60412;
}


/* ------list classes------ */
.listDesign_arw > li {
  background: url(../img/cmn/icn_arw.svg) left center no-repeat;
  background-size: 16px;
  margin-bottom: 8px;
  padding-left: 24px;
}
.listDesign_no {
  margin-bottom: 24px;
  padding-left: 24px;
}
.listDesign_no > li {/*算用数字*/
  list-style-type: decimal;
  margin-bottom: 8px;
}
.listDesign_dot/*大きい黒丸リスト*/ {
  margin-bottom: 24px;
}
.listDesign_dot:last-child,
.listDesign_no:last-child/*大きい黒丸リスト*/ {
  margin-bottom: 0;
}
.listDesign_dot > li {
  position: relative;
  width: 100%;
  padding-left: 24px;
}
.listDesign_dot > li:before {
  position: absolute;
  top: 9px;
  left: 7px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
}
.listDesign_dot > li:before {
  background: #000;
}

.date {
	clear:both;
	margin-left:1em;
}
.date dt {
	width:10em;
	float:left;
	clear:both;
}

.date dd {
	margin-left:10em;
}

/* ------text classes------ */
.red {/*赤文字*/
  color: #E6001D;
}
.fB {/*太文字*/
  font-weight: bold;
}
.fI {/*イタリック*/
  font-style: italic;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.tL {
  text-align: left;
}
.fR {
	float:right;
}
.tel,
.tel:hover {
  text-decoration: none;
  color: #383737;
}
.txtBtm1em p {
  margin-bottom: 1em;
}
.txtBtm1em p:last-child {
  margin-bottom: 0;
}
.txtIndent,
.txtIndent p {
  text-indent: 1em;
}
.txtIndent p.txtIndentNone {
  text-indent: 0;
}

/* ------box classes------ */
.boxDesign1 {
  padding: 16px;
  border: 1px solid #00254A;
}

/* ------table classes------ */
.tableDesign1 {
  width: 100%;
}
.tableDesign1 th,
.tableDesign1 td {
  padding: 8px 16px;
  font-size: 1.4rem;
  border: 1px solid #E1E6EE;
}
@media all and (min-width: 768px) {
  .tableDesign1 th,
  .tableDesign1 td {
    font-size: 1.5rem;
  }
}
.tableDesign1 th {
  font-weight: bold;
  background:#F2F2F2;
  vertical-align: middle;
}
.tableDesign1 td {
  word-break: break-all;
  text-align: left;
  background: #FFF;
}
.tableDesign2 {
 table-layout: fixed;
  width: 100%;
}
.tableDesign2 th,
.tableDesign2 td {
  padding: 8px 16px;
  font-size: 1.4rem;
  border: 1px solid #E1E6EE;
}
@media all and (min-width: 768px) {
  .tableDesign2 th,
  .tableDesign2 td {
    font-size: 1.5rem;
  }
}
.tableDesign2 th {
  font-weight: bold;
  background:#F2F2F2;
  vertical-align: middle;
}
.tableDesign2 td {
  word-break: break-all;
  text-align: left;
  background: #FFF;
}
.tableDesign3 {
  width: 100%;
}
.tableDesign3 th,
.tableDesign3 td {
  padding: 8px 16px;
  font-size: 1.4rem;
  border: 1px solid #E1E6EE;
}
@media all and (min-width: 768px) {
  .tableDesign3 th,
  .tableDesign3 td {
    font-size: 1.5rem;
  }
}
.tableDesign3 th {
  font-weight: bold;
  background:#F2F2F2;
  vertical-align: middle;
}
.tableDesign3 td {
  word-break: break-all;
  text-align: left;
  vertical-align: middle;
  background: #FFF;
}
.th_tL th {
  text-align: left;
}
.tableScroll {
  overflow: auto;
}
.tableScroll table {
  width: 600px;
}
@media all and (min-width: 768px) {
  .tableScroll table {
    width: 100%;
  }
}

/* ------button classes------ */


/* ------margin classes------ */
.mb8 {
  margin-bottom: 8px;
}
.mb16 {
  margin-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb1em,
.boxmb1em p {
  margin-bottom: 1em;
}
.mb1em:last-child,
.boxmb1em p:last-child {
  margin-bottom: 0;
}

/* 2: layout
================================== */
@media all and (min-width: 768px) {
  .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction:row-reverse;
    flex-direction:row-reverse;
    max-width: 1248px;
    min-width: 1000px;
    margin: 24px auto 0;
    padding: 0 24px;
  }
  
}
.mainContainer {
  	padding:10px;
  background: rgba(255,255,255,0.7);
}
@media all and (min-width: 768px) {
  .mainContainer {
    width: calc(100% - 272px);
  	background:rgba(255,255,255,0);
  }
}
.inr {
  padding: 32px 0;
}
@media all and (min-width: 768px) {
  .inr {
    padding: 40px 0;
  }
}
.side section {
  padding: 16px;
  background: #000;
}
.side > section:last-child {
  padding-top: 0;
}
@media all and (min-width: 768px) {
  .side section {
    margin-bottom: 16px;
  }
  .side > section:last-child {
    padding-top: 16px;
  }
}
.side h3 {
  margin-bottom: 8px;
  padding: 4px 8px;
  color: #e60412;
  background: #FFF;
  border-left: 5px solid #e60412;
}
@media all and (min-width: 768px) {
  .side h3 {
    margin-bottom: 16px;
  }
  .side {
    width: 232px;
  }
}

/* 3: contents
================================== */
/* ------共通------ */
/* パンくず */
.pankuzu {
  width: 100%;
  margin-top: 60px;
  font-size: 1.4rem;
  background: #000;
}
@media all and (min-width: 768px) {
  .pankuzu {
    margin-top: 0;
  }
}
.pankuzu ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;/* Safari */
  flex-wrap: wrap;
  padding: 8px 16px;
}
@media all and (min-width: 768px) {
  .pankuzu ul {
    width: 100%;
    max-width: 1248px;
    min-width: 1000px;
    margin: 0 auto;
    padding: 8px 24px;
  }
}
.pankuzu li {
  position: relative;
  margin-right: 8px;
  padding-right: 14px;
}
.pankuzu li:before {
  position: absolute;
  right: 0%;
  top: 30%;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pankuzu li:last-child:before {
  content: none;
  margin-right: 0;
  padding-right: 0;
}
.pankuzu li a {
  color: #FFF;
}
@media all and (min-width: 768px) {
  .pankuzu li a:hover {
    color: #ffff00;
  }
}
.pankuzu li:last-child a {
  pointer-events: none;
  text-decoration: none;
}
/* メアド@アイコン */
.mailat {
  display: inline-block;
  padding: 0 4px;
  vertical-align: middle;
}

/* サイドカラム */
.ttl_anchorlink {
  padding-left: 10px;
  background: #FFF;
  border-bottom: 2px solid #000;
  color: #e60412;
  font-size: 1.8rem;
}
.list_anchorlink {
  padding: 8px;
  background: #FFF;
}
.list_anchorlink > li {
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 5px solid #e60412;
}
.list_anchorlink > li:last-child {
  margin-bottom: 0;
}
.list_bnr {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list_bnr > li {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
}

.list_bnr > li a {
	color:white;
	display:block;
}
@media all and (min-width: 768px) {
  .list_bnr > li {
    width: 200px;
    margin-bottom: 5px;
    margin-right: 0;
  }
  .list_bnr > li:last-child {
    margin-bottom: 0;
  }
}
.list_bnr > li:nth-child(3n) {
  margin-right: 0;
}
.list_bnr img {
  width: 100%;
  height: auto;
}
@media all and (min-width: 768px) {
  .list_bnr img {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}


/* --------------------------------------------------
  トップページ
-------------------------------------------------- */
/* ------トップ新着情報------ */
.list_news > li {
  margin-bottom: 24px;
  padding: 16px;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.list_news > li:last-child {
  margin-bottom: 0;
}
.newshead {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 8px;
}
.tag {
  padding: 0 6px;
  font-size: 1.2rem;
  color: #E60412;
  border: 1px solid #E60412;
}
@media all and (min-width: 768px) {
  .tag {
    padding: 2px 16px;
  }
}
.img_leaflet {
  padding: 16px;
  text-align: center;
  background: #000;
}
@media all and (min-width: 768px) {
  .img_leaflet {
    margin-bottom: 16px;
  }
}
.img_leaflet a img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .img_leaflet a img {
    -webkit-transition: all .2s;
    transition: all .2s;
  }
}
.img_leaflet figcaption a {
  color: #FFF;
}


/* ------セカンドページ 共通------ */
/*セカンドページメインビジュアル・タイトル*/
.img {
  margin-bottom: 32px;
}
.img:last-child {
  margin-bottom: 0;
}
.img img {
  width: 100%;
  margin: 0 auto 8px;
}
.img figcaption {
  font-size: 1.4rem;
}
@media all and (min-width: 768px) {
  .img figcaption {
    text-align: center;
  }
}
.soon img {
  width: 100%;
  max-width: 513px;
  height: auto;
}

/* ------プログラム概要------ */
.img_outline a img {
  display: none;
}
@media all and (min-width: 768px) {
  .img_outline a img {
    display: block;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .img_outline p {
    display: none;
  }
}
