@charset "utf-8";

/*  =============================================================

　　共通モジュール設定

============================================================= */


/*  全体 設定
--------------------------------------------- */

/*  テキスト 設定
-------------------------- */

/* -- Text Size -- */

.txtSmall {
  font-size: .85em;
}

.txtLarge {
  font-size: 1.3em;
  line-height: 1em;
}

/* -- Text Color -- */

.txtRed {
  color: #df0000;
}

.txtBlue {
  color: #003376;
}

.txtGrey {
  color: #666;
}


/*  フォーム 設定
-------------------------- */
.boxForm input.field-w30 {
  width: 30%;
}

.boxForm input.field-w60 {
  width: 60%;
}

.boxForm input.field-w100 {
  width: 100%;
}

.boxForm input ~ span {
  margin-left: 10px;
  font-size: .85em;
}

.boxForm input[type="text"] + input[type="text"] {
  margin-top: 10px;
}

.boxForm input[type="checkbox"] + input[type="checkbox"] {
  margin-left: 8px;
}

/* Submit */
.boxForm .btnSubmit {
  text-align: center;
}

.boxForm .btnSubmit {
  text-align: center;
}

.boxForm .btnSubmit .btn {
  width: 270px;
  padding: 15px 20px;
  font-size: 1.15em;
  font-weight: bold;
}

.boxForm .btnSubmit .btn:hover {
  opacity: 0.7;
}

.boxForm.confirm .btnSubmit form {
  display: inline-block;
}

.boxForm .btnSubmit .btn.back {
  width: 150px;
  margin-right: 10px;
  background: #666;
  border-color: #666;
  color: #fff;
}


/* チェックボックス */
.boxForm .boxCheck label {
  display: inline-block;
  padding: 2px;
}

.boxForm .boxCheck.short label {
  width: 21%;
}

.boxForm .boxCheck.middle label {
  width: 32%;
}

.boxForm .boxCheck.long label {
  width: 49%;
}

.boxForm .boxCheck input {
  position: relative;
  top: 2px;
}



/*  背景 設定
-------------------------- */

.bgGrey {
  background-color: #f7f5f0;
}


/*  コンテンツ　設定
--------------------------------------------- */

/*  アイコン
-------------------------- */

/* -- 矢印アイコン -- */

.icn.arw {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  position: relative;
  padding-left: 12px;
}

/* 矢印 */
.icn.arw:before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 0;
  height: 0;
  border-width: 4px 6px 4px 6px;
  border-color: transparent transparent transparent #333;
  border-style: solid;
  content: "";
}

.icn.arw.white:before {
  border-left-color: #fff;
}

.icn.arw.red:before {
  border-left-color: #d2090c;
}

.icn.arw.small:before {
  top: 6px;
  border-width: 3px 5px 3px 5px;
}


/*  ボタン
-------------------------- */

.btn {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  transition: opacity .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out;
  padding: 10px 2px 10px 15px;
  border: 1px solid #bbb;
  background-color: #fff;
  font-size: .92em;
  font-weight: normal;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.4em;
  vertical-align: middle;
}

.btn,
a.btn {
  color: #333;
}

/* -- Icon -- */

.btn .btnIcn {
  margin-top: -1px;
  margin-right: 10px;
  margin-left: -5px;
  vertical-align: middle;
}

/* -- Round -- */

.btn.round {
  border-radius: 3px;
}

/* -- Arrow -- */

.btn.arw {
  position: relative;
  padding-right: 30px;
  padding-left: 25px;
}

.btn.arw:before,
.btn.arw:after {
  transition: border .2s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2px;
  width: 0;
  height: 0;
  margin-top: -8px;
  border-radius: 10px;
  border-width: 8px;
  border-color: transparent transparent transparent #bbb;
  border-style: solid;
  background: none !important;
  content: "";
}

.btn.arw:after {
  right: 4px;
  border-left-color: #fff;
}

/* -- Frame -- */

.btn.frame {
  background-color: transparent !important;
}

.btn.frame.arw:before {
  transform: rotate(45deg);
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 2px;
  border-width: 1px 1px 0 0;
  border-color: #bbb #bbb transparent transparent;
}

.btn.small.frame.arw:before {
  right: 5px;
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-width: 2px 2px 0 0;
}

.btn.frame.arw:after {
  display: none;
}

/* -- Small Size -- */

.btn.small {
  margin: 0 5px;
  padding: 0 10px;
  font-size: 10px;
}

.btn.small.arw {
  padding-right: 17px;
}

.btn.small.arw:before,
.btn.small.arw:after {
  right: 0;
  margin-top: -5px;
  border-width: 5px;
}

.btn.small.arw:after {
  right: 1px;
}

/* -- Middle Size -- */

.btn.middle {
  min-width: 150px;
  text-align: center;
}

/* -- Large Size -- */

.btn.large {
  margin: 40px 0;
  padding: 16px 30px;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: .01em;
  text-align: center;
}

/* -- BaseButton -- */

.btnBase {
  text-align: center;
}

.btnBase a {
  padding: 1em 3em;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-decoration: none !important;
  background-color: #d60000;
  transition:all 0.33s ease-out;
}

.btnBase a:hover {
  background-color: #000;
}


/* ---- Color Setting ---- */

/* -- White -- */

.btn.white {
  border-color: #fff;
  background-color: #fff !important;
  color: #222 !important;
}

.btn.arw.white:before {
  border-left-color: #222;
}

.btn.arw.white:after {
  border-left-color: #fff;
}

.btn.frame.white {
  background-color: transparent !important;
  color: #fff !important;
}

/* -- Black -- */

.btn.black {
  border-color: transparent;
  background-color: #000;
  color: #fff !important;
}

.btn.arw.black:before {
  border-left-color: #fff;
}

.btn.arw.black:after {
  border-left-color: #000;
}

.btn.frame.black {
  border-color: #000;
  background-color: transparent !important;
  color: #000 !important;
}

.btn.frame.arw.black:before {
  border-color: #000 #000 transparent transparent;
}

/* -- Grey -- */

.btn.grey {
  border-color: #666;
box-shadow:
    0px 1px 3px rgba(000,000,000,0.5),
    inset 0px 0px 2px rgba(163,124,163,1);
  color: #fff !important;
}

.btn.arw.grey:before {
  border-left-color: #fff;
}

.btn.arw.grey:after {
  border-left-color: #666;
}

a:hover .btn.grey,
a.btn.grey:hover {
  border-color: #333;
  background-color: #333 !important;
}

a:hover .btn.grey:after,
a.btn.grey:hover:after {
  border-left-color: #333;
}

.btn.frame.grey {
  background-color: transparent !important;
  color: #666 !important;
}

.btn.frame.arw.grey:before {
  border-color: #666 #666 transparent transparent;
}

a:hover .btn.frame.grey,
a.btn.frame.grey:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.grey:after,
a.btn.frame.grey:hover:after {
  border-left-color: transparent;
}

/* -- Grey02 -- */

.btn.grey02 {
  border-color: #ccc !important;
  background: -moz-linear-gradient(
    top,
    #fbfbfb 0%,
    #f1f1f1 50%,
    #e4e4e4 50%,
    #f1f1f1);
  background: -webkit-gradient(
    linear, left top, left bottom,
    from(#fbfbfb),
    color-stop(0.50, #f1f1f1),
    color-stop(0.50, #e4e4e4),
    to(#f1f1f1));
  color: #000 !important;
  text-shadow: 1px 1px 1px #fff;
}

.btn.arw.grey02:before {
  border-left-color: #222;
}

.btn.arw.grey02:after {
  border-left-color: #666;
}

a:hover .btn.grey02,
a.btn.grey02:hover {
  border-color: #333;
  background-color: #333 !important;
}

a:hover .btn.grey02:after,
a.btn.grey02:hover:after {
  border-left-color: #333;
}


/* -- Red -- */

.btn.red {
  border-color: #d60000;
  background-color: #d60000 !important;
  color: #fff !important;
}

.btn.arw.red:before {
  border-left-color: #fff;
}

.btn.arw.red:after {
  border-left-color: #d60000;
}

a:hover .btn.red,
a.btn.red:hover {
  border-color: #ba0000;
  background-color: #ba0000 !important;
}

a:hover .btn.red:after,
a.btn.red:hover:after {
  border-left-color: #ba0000;
}

.btn.frame.red {
  background-color: transparent !important;
  color: #d60000 !important;
}

.btn.frame.arw.red:before {
  border-color: #d60000 #d60000 transparent transparent;
}

a:hover .btn.frame.red,
a.btn.frame.red:hover {
  background-color: transparent !important;
}

a:hover .btn.frame.red:after,
a.btn.frame.red:hover:after {
  border-left-color: transparent;
}

/* ---- Button Icon Setting ---- */

.boxBtn {
  margin: 0 -1px;
  padding: 3px 0;
  letter-spacing: -.40em;
}

.boxBtn li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 50%;
  padding: 0 1px;
  letter-spacing: normal;
}

.boxBtn .btn {
  width: 100%;
  font-weight: bold;
  text-align: left;
}

.boxBtn .btn:hover {
  opacity: .7;
}

.btn.detail,
.btn.itunes {
  padding: 4px 4px 4px 38px;
}

.btn.detail {
  border-color: #ddd;
  background: url(../img/icn-detail-pc.png) no-repeat 10px center #ddd !important;
}

.btn.itunes {
  border-color: #888;
  background: url(../img/icn-itunes-pc.png) no-repeat 10px center #888 !important;
  color: #fff;
}

.center {text-align: center;}


/*  バナー
-------------------------- */

.bnr {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  transition: opacity .4s ease-in-out;
  border: 1px solid #ddd;
  background: #fff;
  vertical-align: middle;
  text-align: center;
}

.bnr:hover {
  opacity: .8;
}

.bnr.round {
  padding: 15px 20px;
  border-radius: 6px;
}

/* ---- Font Awesome Icon ---- */

/* ---- File Link Icon ---- */

.boxEntryBody .icn-link:before,
#content a[href$=".pdf"]:before,
#content a[href$=".xls"]:before,
#content a[href$=".xlsx"]:before,
#content a[href$=".doc"]:before,
#content a[href$=".zip"]:before,
#content a[href$=".pptx"]:before,
#content a[href$=".pptm"]:before,
#content a[href$=".ppt"]:before {
  display: inline-block;
  margin-right: .5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1;
  vertical-align: -1px;
}

.boxEntryBody .icn-link:before {
  content: "\f35d";
  font-size: 1.15em;
  font-weight: 900;
}

/* -- PDF -- */

#content a[href$=".pdf"]:before {
  content: "\f1c1" !important;
}

/* -- Excel -- */

#content a[href$=".xls"]:before,
#content a[href$=".xlsx"]:before {
  content: "\f1c3" !important;
}

/* -- Word -- */

#content a[href$=".doc"]:before,
#content a[href$=".docx"]:before {
  content: "\f1c2" !important;
}

/* -- PowerPoint -- */

#content a[href$=".pptx"]:before,
#content a[href$=".pptm"]:before,
#content a[href$=".ppt"]:before {
  content: "\f1c4" !important;
}

/* -- ZIP -- */

#content a[href$=".zip"]:before {
  content: "\f1c6" !important;
}

/*  タグ
-------------------------- */

.tag {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  margin-left: 8px;
  padding: 0 10px;
  background: #999;
  font-size: .8em;
  text-align: center;
  text-decoration: none !important;
  letter-spacing: -.04em;
  line-height: 1.5em;
}

.tag,
.tag a {
  color: #fff !important;
  text-decoration: none;
}

a.tag,
.tag a {
  transition: opacity .2s ease-in-out;
}

a.tag:hover,
.tag a:hover {
  opacity: .7;
}

.tag.round {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 20px;
}

.tag.red {
  background: #d2090c;
}

/*  タイトル
-------------------------- */

.ttl {
  font-weight: bold;
}

.ttl a:hover {
  text-decoration: underline;
}

/* -- Line -- */

.ttl.line {
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.ttl.line:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20%;
  max-width: 55px;
  height: 2px;
  margin: 0 auto;
  background: #6b2100;
  content: "";
}

.bTop {
	margin-top: 60px;
	border-top:  1px solid #ccc;
}


/* -- Arrow -- */

.ttl.arw {
  position: relative;
  padding-left: 20px;
}

.ttl.arw:before {
  transition: border .2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border-width: 5px 7px;
  border-color: transparent transparent transparent #d80000;
  border-style: solid;
  background: none !important;
  content: "";
}

.ttl.arw.down:before {
  left: 3px;
  margin-top: -4px;
  border-width: 8px 5px;
  border-color: #d80000 transparent  transparent  transparent;
}

/* -- Style -- */

.ttl.style01 {
  margin-bottom: 18px;
  font-size: 1.55em;
  letter-spacing: .02em;
  color: #000;
}

.ttl.style02 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.ttl.style03 {
  margin-bottom: 10px;
  font-size: 1.15em;
}

.ttl .txtEn {
  padding-left: 5px;
  color: #aaa;
  font-size: .35em;
  font-weight: normal;
  font-family: Helvetica,Verdana, sans-serif;
  vertical-align: .25em;
}

.ttl.style04{
	padding: 0 0 0 0.5em;
  margin: 40px 0 20px 0;
  font-size: 1.6em;
	color: #000;
	line-height: 1.5em;
	border-left: 8px solid #da0000;
}


/*  テーブル
-------------------------- */

table {
  width: 100%;
  margin: 40px 0;
  border-collapse: separate;
  border-spacing: 1px;
  background: #ccc;
  font-size: .95em;
  line-height: 1.5em;
}

table caption {
  padding: 0 3px 10px;
  font-weight: bold;
  font-size: 1.05em;
}

table tr {
  border-top: 1px solid #ccc;
}

table th,
table td {
  padding: 10px 15px;
  background: #fff;
  vertical-align: top;
}

table.txtC th,
table.txtC td {
  text-align: center;
}

table th {
  width: 230px;
  background: #faf7f2;
  font-weight: bold;
}

table td {
  padding-right: 10px;
  padding-left: 10px;
}

table td p {
  margin: 0;
  padding-top: 20px;
}

table td p:first-child {
  padding-top: 0;
}

table ul {
  padding: 5px 0;
}

table li {
  padding-top: 15px;
}

table li:first-child {
  padding-top: 0;
}

table a {
  text-decoration: underline;
}

table a:hover {
  text-decoration: none;
}


/*  パンくず
-------------------------- */

.boxBreadcrumb {
  position: relative;
  z-index: 10;
	margin-top: -4px;
  padding: 8px 0 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: .9em;
  letter-spacing: 0;
}

/* -- リンク -- */

.boxBreadcrumb a {
  margin-right: 2px;
  color: #fff;
}

/* -- リンク（ホバー・フォーカス時）-- */

.boxBreadcrumb a:hover,
.boxBreadcrumb a:focus {
  text-decoration: underline;
}


/*  カテゴリータイトル
-------------------------- */

.boxCategoryTitle {
  position: relative;
  z-index: 5;
  margin-top: -55px;
  padding-top: 55px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  background-size: cover;
  text-shadow: 1px 1px #444;
}

.boxCategoryTitleLarge {
	min-height: 374px;
}

.boxCategoryTitleLarge .boxTitle {
	margin-top: 65px;
}

.boxCategoryTitle,
.boxCategoryTitle a {
  color: #fff;
}

.boxCategoryTitle .boxInner {
  text-align: center;
}

.boxCategoryTitle.sub .boxInner {
  padding: 14px 0 54px;
}

.boxCategoryTitle h1 {
  padding: 20px 0;
  font-size: 2.4em;
  font-weight: bold;
  color: #fff;
}

.boxCategoryTitle h1 .txtJa {
  letter-spacing: .08em;
}

.boxCategoryTitle h1 .txtEn {
  display: block;
  font-size: .4em;
  line-height: .4em;
}

.boxCategoryTitle .boxCaption .txtDate {
  padding-bottom: 50px;
  line-height: 1.7em;
  font-size: 1.15em;
  font-weight: bold;
  letter-spacing: -.08em;
}

/*  セクション
-------------------------- */

.boxSection {
  padding-bottom: 40px;
}

.boxSectionHalf {
  width: 47%;
}

.boxSection .boxSectionMain,
.boxSection .boxSectionSide {
  float: left;
  width: 50%;
}

.boxSection .boxSectionMain.fltR,
.boxSection .boxSectionSide.fltR {
  width: 36.5%;
  padding-left: 50px;
}

.boxSection .boxSectionMain.fltL,
.boxSection .boxSectionSide.fltL {
  width: 63.5%;
}

.boxSection .boxSectionHead {
  margin-bottom: 20px;
}

.boxSection .boxSectionHead.bgGrey {
  padding: 10px 20px;
}

.boxSection .boxSectionHead .ttl {
  float: left;
  margin: 0;
}

.boxSection .boxSectionHead .btn {
  float: right;
  margin-top: 5px;
  margin-right: 0;
  font-family: Helvetica,Verdana, sans-serif;
  letter-spacing: .02em;
}

.boxSection > .boxInner {
  padding-top: 35px;
  padding-bottom: 35px;
}

.boxSection > p,
.boxSection .boxInner > p,
.boxSection .boxTxtArea > p {
  padding-top: 14px;
  line-height: 1.9em;
}

.boxSection > p:first-child,
.boxSection .boxInner > p:first-child,
.boxSection .boxTxtArea > p:first-child {
  padding-top: 0 !important;
}


/*  ページナビ
-------------------------- */

/* ---- ページャー ---- */

.boxPager {
  margin: 0 0 60px;
  text-align: center;
}

.boxPager div > * {
  transition: background .3s ease-in-out,color .3s ease-in-out;
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  min-width: 40px;
  height: 38px;
  margin: 0 0 12px;
  padding: 0 10px;
  font-size: 1.1em;
  vertical-align: middle;
  line-height: 37px;
}

.boxPager a {
  background: #ececec;
  text-decoration: none !important;
  margin-right: 4px;
}

.boxPager .current {
  margin-right: 4px;
}

.boxPager a:hover,
.boxPager .current {
  color: #fff;
  background: #d2090c;
}

.boxPager .arw span {
}

.boxPager .extend {
  min-width: 25px;
  padding: 0;
  border: none;
  letter-spacing: .1em;
  line-height: 2.5em;
}

.boxPager .boxPageLink a {
  padding: 10px 26px;
}


/*  アコーディオンエリア
-------------------------- */

/* ---- アコーディオン ---- */

.boxAcc {
  position: relative;
  margin: 20px 0;
}

/* ---- アコーディオン・ヘッダ ---- */

.boxAccHead {
  position: relative;
  padding: 20px 0;
  font-weight: bold;
  cursor: pointer;
}

.boxAccHead h2 {
  font-weight: bold;
}

/* ---- アコーディオン・内容 ---- */

.boxAccCont {
  display: none;
  padding: 0;
}

.boxAccContInner {
  padding: 0 0 20px;
}


/*  横並びリスト
-------------------------- */

/* ---- 共通設定 ---- */

.boxColumnList {
}

.boxColumnList > ul {
  letter-spacing: -.40em;
}

.boxColumnList > ul > li {
  overflow: hidden;
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  letter-spacing: normal;
  vertical-align: top;
}

.boxColumnList > ul > li.boxFull {
  width: 100% !important;
}

/* -- 画像 -- */

.boxColumnList .imgItem {
}

.boxColumnList .imgItem img {
  width: 100%;
}

/* -- タイトル -- */

.boxColumnList .ttlItem {
  padding-top: 30px;
}

.boxColumnList .ttlSub {
  margin-bottom: 0;
}

/* -- 内容 -- */

.boxColumnList .txtDate,
.boxColumnList .txtCont {
  font-size: .9em;
  line-height: 1.5em;
}

.boxColumnList .txtDate {
  display: block;
  padding-top: 8px;
}

.boxColumnList .txtCont {
  padding-top: 2px;
  padding-bottom: 15px;
  font-weight: bold;
}

/* ---- 2カラム設定 ---- */

.boxColumnList.column02 > ul {
  margin-top: -55px;
  margin-left: -50px;
}

.boxColumnList.column02 > ul > li {
  width: 50%;
  padding: 55px 0 0 50px;
}

.boxColumnList.column02 .txtCont {
  font-size: 1.1em;
  line-height: 1.9em;
  letter-spacing: -.04em;
}

/* ---- 3カラム設定 ---- */

.boxColumnList.column03 > ul {
  margin-top: -45px;
  margin-left: -25px;
}

.boxColumnList.column03 > ul > li {
  width: 33.333%;
  padding: 45px 0 0 25px;
}

.boxColumnList.column03 .txtCont {
  padding: 5px 0 0;
  font-size: .95em;
  line-height: 1.6em;
}

/* ---- 4カラム設定 ---- */

.boxColumnList.column04 > ul {
  margin-top: -25px;
  margin-left: -23px;
}

.boxColumnList.column04 > ul > li {
  width: 25%;
  padding: 25px 0 0 23px;
}

/* ---- 5カラム設定 ---- */

.boxColumnList.column05 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column05 > ul > li {
  width: 20%;
  padding: 20px 0 0 17px;
}

/* ---- 6カラム設定 ---- */

.boxColumnList.column06 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column06 > ul > li {
  width: 16.65%;
  padding: 20px 0 0 17px;
}

/* ---- 7カラム設定 ---- */

.boxColumnList.column07 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column07 > ul > li {
  width: 14.2%;
  padding: 20px 0 0 17px;
}

/* ---- 8カラム設定 ---- */

.boxColumnList.column08 > ul {
  margin-top: -20px;
  margin-left: -17px;
}

.boxColumnList.column08 > ul > li {
  width: 12.5%;
  padding: 20px 0 0 17px;
}

/* ---- ライン付きカラム設定 ---- */

.boxColumnList.columnLine {
  overflow: hidden;
  margin: 40px 0;
}

.boxColumnList.columnLine > ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  letter-spacing: -.40em;
  margin-top: -20px;
  margin-left: -1px;
}

.boxColumnList.columnLine > ul > li {
  border-left: 1px solid #ccc;
  margin-top: 20px;
  padding: 0;
}

.boxColumnList.columnLine .boxInfoArea {
  margin: 0;
}

.boxColumnList.columnLine .boxInfoArea > dl {
  padding: 10px 30px;
}

.boxColumnList.columnLine .boxInfoArea > dl > dt {
  font-size: 1.2em;
}

.boxColumnList.columnLine .boxInfoArea > dl > dd {
  font-size: .98em;
  line-height: 1.9em;
}

.boxColumnList.columnLine .boxInfoArea > dl > dd p {
  padding-top: 20px;
}

.boxColumnList.columnLine .boxInfoArea > dl > dd p:first-child {
  padding-top: 0;
}



/*  下線付きリスト
-------------------------- */

.boxLineList {
}

/* -- リスト -- */

.boxLineList > ul > li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted #bbb;
}

.boxLineList > ul > li:first-child {
  padding-top: 0;
}

/* -- リンク -- */

.boxLineList > ul > li > a,
.boxLineList > ul > li.active > * {
  display: block;
  position: relative;
  padding: 9px 18px;
}

/* -- リンク矢印 -- */

.boxLineList.icnArw > ul > li > a {
  padding-left: 22px;
}

/* 矢印アイコン */
.boxLineList.icnArw > ul > li > a:before,
.boxLineList.icnArw > ul > li.active > *:before {
  top: 15px;
  left: 10px;
}

/* firefox用 */
@-moz-document url-prefix() {
  .boxLineList.icnArw > ul > li > a:before,
  .boxLineList.icnArw > ul > li.active > *:before {
    top: 16px;
  }
}

/*  リスト
-------------------------- */

/* -- 箇条書きリスト -- */

.boxDotList {
  margin: 20px 0;
}

.boxDotList ul {
  padding-left: 1.5em;
}

.boxDotList ul li:before {
  margin-left: -1.5em;
  padding-right: 5px;
  content: "・";
}

.boxDotList ul li ul {
  padding-top: 2px;
  padding-left: 2.5em;
}

/* -- 箇条書きリスト（横並び） -- */

.boxDotList .floatList,
.boxNumList .floatList {
  margin: 0;
}

.boxDotList ul.floatList {
  padding-left: 1.5em;
}

.boxDotList .floatList li {
  float: left;
  margin-right: 30px;
}

/* -- 順序付きリスト -- */

.boxNumList {
  margin: 20px 0;
}

.boxNumList ol {
  padding-left: 1.5em;
}

.boxNumList ol li {
  list-style-type: decimal;
}

.boxNumList ol li ul li {
  list-style: none;
}

.boxNumList ol li ol {
  padding-top: 2px;
}

/* -- 矢印付きリスト -- */

.boxArwList {
  margin: 20px 0;
}

.boxArwList ul {
}

.boxArwList li {
  margin-top: 5px;
}

.boxArwList li:first-child {
  margin-top: 0;
}

.boxArwList a {
  padding: 1px 0 0 16px;
	text-decoration: underline;
  background: url(/common/img/icn-arw.png) no-repeat left center;
}

.boxArwList a:hover {
	text-decoration: none;
}

/* -- 定義リスト -- */

.boxDlList dl {
  margin: 20px 0;
}

.boxDlList dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxDlList dl .boxDotList,
.boxDlList dl .boxNumList {
  margin: 0;
}


/*  画像レイアウト
-------------------------- */

.boxImgLeft .boxImgArea {
  float: left;
  width: 38%;
}

.boxImgLeft .boxTxtArea {
  float: right;
  width: 56%;
}

.boxImgRight .boxImgArea {
  float: right;
  width: 38%;
}

.boxImgRight .boxTxtArea {
  float: left;
  width: 56%;
}

.boxImgLeft .boxImgArea img,
.boxImgRight .boxImgArea img,
.boxImgRow img {
  width: 100%;
}

.boxImgRow {
  margin-top: 40px;
  margin-bottom: 30px;
}

.boxImgRow ul {
  margin-left: -18px;
}

.boxImgRow li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 226px;
  margin-left: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
}

.boxImgRow li img {
  margin-bottom: 12px;
}

.boxImgRow a {
  color: #111;
}

.boxImgRow a:hover,
.boxImgRow a:focus {
  text-decoration: none;
}


/*  サムネイルリスト
-------------------------- */

.boxThumbnailList {
  margin: 20px 0 50px;
}

.boxThumbnailList h3 {
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: bold;
}

.boxThumbnailList h3 .tag {
  font-size: .8em;
}

.boxThumbnailList.boxLineList > ul > li {
  padding: 30px 20px;
}

.boxThumbnailList > ul > li:first-child {
  padding-top: 0;
}

.boxThumbnailList .boxImgLeft .boxImgArea,
.boxThumbnailList .boxImgRight .boxImgArea {
  width: 24%;
  font-size: .8em;
  text-align: center;
}

.boxThumbnailList .boxImgLeft .boxImgArea p,
.boxThumbnailList .boxImgRight .boxImgArea p {
  padding-top: 10px;
}

.boxThumbnailList .boxImgLeft .boxTxtArea,
.boxThumbnailList .boxImgRight .boxTxtArea {
  width: 73%;
  font-size: .95em;
}


/*  新着情報
-------------------------- */

.boxInfoList {
  overflow: hidden;
}

.boxInfoList a {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
}

.boxInfoList a:hover {
  text-decoration: underline;
}

.boxInfoList > ul {
  margin-bottom: -1px;
}

.boxInfoList > ul > li {
  padding: 5px 10px;
}

.boxInfoList > ul > li:first-child {
}

.boxInfoList > ul > li dt {
  float: left;
  width: 85px;
  color: #999;
}

.boxInfoList > ul > li dd {
  padding-left: 85px;
}


/*  サムネイル付きリスト
-------------------------- */
.boxEntryBody .boxThumbList > ul {
  padding: 0;
}

.boxEntryBody .boxThumbList > ul > li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  letter-spacing: -.4em;
  list-style-type: none;
  border-bottom: 1px solid #ccc;
}

.boxEntryBody .boxThumbList > ul > li:last-child {
  border: none;
}

.boxEntryBody .boxThumbList .boxThumb,
.boxEntryBody .boxThumbList .boxTxt {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

.boxEntryBody .boxThumbList .boxThumb {
  width: 31%;
}

.boxEntryBody .boxThumbList .boxThumb img {
  width: 100%;
  height: auto;
}

.boxEntryBody .boxThumbList .boxTxt {
  width: 69%;
  padding-left: 36px;
}

.boxEntryBody .boxThumbList .boxTxt .title {
  margin-top: 0;
  padding-top: 4px;
}

.boxEntryBody .boxThumbList .boxTxt .btn {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.15em;
  font-weight: bold;
}


/*  ページ詳細
-------------------------- */

.boxEntryBody {
  max-width: 1004px;
  margin: 0 auto;
  line-height: 1.8em;
}

/* ---- H1タイトル ---- */

.boxEntryBody h1,
.ttl.styleH1 {
  clear: both;
  margin-bottom: 12px;
  padding: 17px 2px;
  border-top: 4px solid #d60000;
  border-bottom: 1px solid #ccc;
  color: #333;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.52em;
}

.boxEntryBody h1 time {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1.5;
}

/* ---- H2タイトル ---- */

.boxEntryBody h2,
.ttl.styleH2 {
  clear: both;
  margin: 20px 0 10px;
  padding: 12px 2px;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.4em;
}

/* ---- H3タイトル ---- */

.boxEntryBody h3,
.ttl.styleH3 {
  clear: both;
  margin: 25px 0 15px;
  font-size: 1.15em;
  font-weight: bold;
  line-height: 1.4em;
}

/* ---- テキスト ---- */

.boxEntryBody p {
  margin-bottom: 20px;
  line-height: 2em;
  font-size: 1.05em;
}

.boxEntryBody strong {
  font-weight: bold;
}

/* ---- リンク ---- */

.boxEntryBody a {
  transition: all 0.3s 0s ease;
  text-decoration: underline;
}

.boxEntryBody a:hover,
.boxEntryBody a:focus {
  color: #d40000;
  text-decoration: none;
}

/* ---- リスト ---- */

.boxEntryBody ul,
.boxEntryBody ol {
  clear: both;
  margin: 30px 0;
  padding-left: 2.5em;
}

.boxEntryBody h2 + ul,
.boxEntryBody h3 + ul,
.boxEntryBody h4 + ul,
.boxEntryBody h2 + ol,
.boxEntryBody h3 + ol,
.boxEntryBody h4 + ol {
  margin-top: 0;
}

.boxEntryBody ul > li,
.boxEntryBody ol > li {
  margin-bottom: 2px;
}

.boxEntryBody li > ul,
.boxEntryBody li > ol {
  margin: 5px 0 10px;
  padding-top: 2px;
  padding-left: 2.5em;
}

/* -- 箇条書きリスト -- */

.boxEntryBody ul {
}

.boxEntryBody ul > li {
  list-style-type: disc;
}

/* -- 順序付きリスト -- */

.boxEntryBody ol {
}

.boxEntryBody ol > li {
  list-style-type: decimal;
}

/* ---- 定義リスト ---- */

.boxEntryBody dl {
  margin: 20px 0;
}

.boxEntryBody dl dt {
  margin-bottom: 5px;
  font-weight: bold;
}

.boxEntryBody dl .boxDotList,
.boxEntryBody dl .boxNumList {
  margin: 0;
}

/* ---- テーブル ---- */

.boxEntryBody table {
  width: auto;
  min-width: 500px;
  margin-top: 35px;
  margin-bottom: 35px;
  border-collapse: separate;
  border-spacing: 1px;
  background: #ccc;
  font-size: 1em;
  line-height: 1.9em;
}

.boxEntryBody table caption {
  padding: 0 3px 10px;
  font-weight: bold;
  font-size: 1.05em;
}

.boxEntryBody table tr {
  border-top: 1px solid #ccc;
}

.boxEntryBody table th,
.boxEntryBody table td {
  width: auto;
  padding: 10px 20px;
  background: #fff;
  vertical-align: top;
}

.boxEntryBody table th {
  font-weight: bold;
  text-align: center;
}

.boxEntryBody table thead th {
  background: #f0e4e4;
}

.boxEntryBody table td {
}

.boxEntryBody table td p {
  margin: 0;
  padding-top: 20px;
}

.boxEntryBody table td p:first-child {
  padding-top: 0;
}

.boxEntryBody table ul,
.boxEntryBody table ol {
  margin: 0;
}

.boxEntryBody table ul {
  padding-left: 1.5em;
}

.boxEntryBody table ul li {
  float: left;
  margin-right: 30px;
}

/* テーブルスタイル02 */
.boxEntryBody table.tblStyle02 {

}
.boxEntryBody table.tblStyle02 {
  width: 100%;
  line-height: 1.5;
}

.boxEntryBody table.tblStyle02 th,
.boxEntryBody table.tblStyle02 td {
  padding: 14px 20px;
}

.boxEntryBody table.tblStyle02 th {
  width: 225px;
  background: #f8f7f3;
  text-align: left;
}

.boxEntryBody table.tblStyle02 dl {
  margin: 0;
}

.boxEntryBody table.tblStyle02 dt,
.boxEntryBody table.tblStyle02 dd {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.boxEntryBody table.tblStyle02 dt {
  width: 7em;
  font-weight: normal;
}


/* ---- 画像レイアウト ---- */

.boxEntryBody .boxImgLeft,
.boxEntryBody .boxImgRight {
  margin-top: 35px;
  margin-bottom: 35px;
}

.boxEntryBody .boxImgLeft p,
.boxEntryBody .boxImgRight p {
  margin: 0;
}

.boxEntryBody .boxImgLeft .boxImgArea {
  float: left;
  width: 45%;
}

.boxEntryBody .boxImgLeft .boxTxtArea {
  float: right;
  width: 50%;
}

.boxEntryBody .boxImgRight .boxImgArea {
  float: right;
  width: 45%;
}

.boxEntryBody .boxImgRight .boxTxtArea {
  float: left;
  width: 50%;
}

.boxEntryBody .boxImgLeft .boxImgArea img,
.boxEntryBody .boxImgRight .boxImgArea img,
.boxEntryBody .boxImgRow img {
  width: 100%;
}

.boxEntryBody .boxImgRow {
  margin-top: 40px;
  margin-bottom: 30px;
}

.boxEntryBody .boxImgRow ul {
  margin-left: -18px;
}

.boxEntryBody .boxImgRow li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  width: 226px;
  margin-left: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
}

.boxEntryBody .boxImgRow li img {
  margin-bottom: 12px;
}

.boxEntryBody .boxImgRow a {
  color: #111;
}

.boxEntryBody .boxImgRow a:hover,
.boxEntryBody .boxImgRow a:focus {
  text-decoration: none;
}

/* 回り込み解除 */
.boxEntryBody .boxEntryContent p.clearfix {
  height: 0;
}

/* ---- SNS Button ---- */
.boxEntryBody .entry-sns ul {
  margin: 10px 0;
  padding-left: 0;
}

.boxEntryBody .entry-sns li {
  display: inline-block;
  margin-right: 5px;
  list-style-type: disc;
  line-height: 0;
  vertical-align: top;
}

.boxEntryBody .entry-sns p {
  margin-bottom: 0;
}

.boxEntryBody .boxSeminarTitle {
  position: relative;
}

/* .boxEntryBody .boxSeminarTitle .entry-sns {
  position: absolute;
  right: 0;
  bottom: 9px;
} */

/*  サムネイル
-------------------------- */

.boxThumb {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  position: relative;
}

.boxThumb a {
  display: block;
  text-decoration: none !important;
}

.boxThumb a:hover img {
  opacity: .7;
}

.boxThumb .btn {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 8px 15px;
  font-size: .98em;
  font-weight: bold;
  letter-spacing: -.05em;
  text-align: left;
}

.boxThumb .btn.black {
  border: none;
  background: rgba(0,0,0,.7);
}

.boxThumb .btn.black:before {
  transform: rotate(45deg);
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-radius: 2px;
  border: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.boxThumb .btn.black:after {
  display: none;
}


/*  バナースライダー
-------------------------- */

/* ---- Banner List ---- */

.boxBannerList {
  position: relative;
  border-bottom: 1px solid #ccc;
}

.boxBannerList:after {
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background: #fff;
  content: "";
}

.boxBannerList ul {
  margin-right: -20px;
}

.boxBannerList li {
  float: left;
  width: 344px;
  margin-bottom: 20px;
}

.boxBannerList img {
  width: 320px;
}

#contentMain > .boxInner > * .boxBannerList {
  margin-top: -10px;
}

/* ---- Slider Setting ---- */

.slick-slide img {
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

/* -- Arrow -- */

.slick-arrow {
  z-index: 10 !important;
  transition: background .3s ease-in-out;
  width: 26px;
  height: 26px;
  margin-top: -12px;
  border-radius: 100% !important;
  background: #d60000 !important;
}

.slick-arrow:hover {
  background-color: #AF0000 !important;
}

.slick-arrow:before {
  display: none;
}

.slick-arrow:after {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  content: "";
}

.slick-prev {
  left: -12px;
}

.slick-prev:after {
  transform: rotate(-45deg);
  border-right: none;
  border-bottom: none;
  margin-left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-next:after {
  transform: rotate(45deg);
  border-left: none;
  border-bottom: none;
  margin-left: 6px;
}

/*  タブ切り替え
-------------------------- */

/* -- Tab Select -- */

.boxTabSelect {
  margin-bottom: 20px;
  font-size: 1.2em;
}

.boxTabSelect ul {
  margin-bottom: 30px;
  margin-left: -10px;
  padding: 0;
  letter-spacing: -.40em;
}

.boxTabSelect li {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  padding-left: 10px;
  font-weight: bold;
  letter-spacing: normal;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
}

.boxTabSelect li .btn {
  display: block;
  position: relative;
  transition: background .2s linear,border .2s linear;
  padding: 8px 12px;
  border: 1px solid #333;
  background: transparent;
  color: #000;
  font-weight: bold;
  line-height: 1.7em;
}

.boxTabSelect li .btn:after {
  transition: all .2s linear;
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-style: solid;
  border-width: 9px 10px 0 10px;
  border-color: transparent;
  content: "";
}

.boxTabSelect li.current .btn {
  background: #000;
  color: #fff;
}

.boxTabSelect li.current .btn:after {
  border-top-color: #000;
}

.boxTabSelect.tab02 li {
  width: 50%;
}

.boxTabSelect .icn {
  display: inline-block;
  *display: inline; /* IE7用 */
  *zoom: 1; /* IE7用 */
  padding-left: 28px;
  background-repeat: no-repeat;
  background-position: left center;
}

/* -- Tab Content Wrap -- */

.boxTabContentWrap {
}

/* -- Tab Content -- */

.boxTabContent {
}

.boxTabContent.hidden {
  display: none;
}

.boxTabContentInner {
}

/*  リンクリスト
-------------------------- */

.boxLinkList {
}

.boxLinkList li {
  padding-top: 5px;
}

.boxLinkList li:first-child {
  padding-top: 0;
}

.boxLinkList a:hover {
  opacity: .7;
}

.boxLinkList .btn {
  display: block;
  padding-top: 16px;
  padding-bottom: 12px;
  border-color: #eee;
  background-color: #eee;
  font-weight: bold;
  text-align: left;
}

.boxLinkList .btn:before {
  top: 50%;
  right: auto;
  left: 10px;
  margin-top: -3px;
  border-radius: 0;
  border-width: 3px 5px;
  border-left-color: #d80000;
}

.boxLinkList .btn:after {
  display: none;
}

.boxLinkList .txtSmall {
  font-size: .75em;
  font-weight: 400;
  line-height: 0;
  letter-spacing: -.6px;
}

.boxLinkList .current .btn {
  border-color: #d40000;
  background-color: #d40000;
  color: #fff;
}

.boxLinkList a.arw:hover {
  border-color: #d40000;
  background-color: #d40000;
  color: #fff;
	opacity: 1;
}


.boxLinkList .current .btn:before {
  border-left-color: #fff;
}

.boxLinkList .btn.top {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.boxLinkList .btn.top:before {
  border-left-color: #fff;
}


/*  バナーリスト
-------------------------- */

.boxBnrList {
}

.boxBnrList li {
  padding-top: 15px;
}

.boxBnrList li:first-child {
  padding-top: 0;
}

.boxBnrList a {
  transition: opacity .4s ease-in-out;
}

.boxBnrList a:hover {
  opacity: .7;
}

/*  サイド
-------------------------- */

#side .boxSection {
  margin-bottom: 14px;
  padding-bottom: 0;
}

#side .boxSideFrame {
  position: relative;
  padding: 15px;
  border: 1px solid #ddd;
}

#side .boxSideFrame:before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  border-top: 4px solid #d2090c;
  content: "";
}

#side .boxSideFrame .btn.arw {
	padding-right: 5px;
	padding-left: 18px;
}

#side .boxSideFrame .btn.arw:before {
    top: 50%;
    right: auto;
    left: 8px;
    margin-top: -3px;
    border-radius: 0;
    border-width: 3px 5px;
    border-left-color: #d80000;
}

#side .boxSideFrame .boxSideFrameHead {
  padding-top: 2px;
  padding-bottom: 12px;
  color: #333;
  font-size: 1.02em;
  font-weight: bold;
}


#side .boxSideList * {
  transition: background .3s ease-in-out,color .3s ease-in-out;
}

#side .boxSideList h2,
#side .boxSideList h3 {
  display: block;
  margin-bottom: 6px;
  padding: 14px;
  text-align: left;
  background: #d2090c;
  color: #fff;
  font-weight: bold;
}

#side .boxSideList ul {
  padding: 4px 0;
}

#side .boxSideList li a {
  display: block;
  padding: 5px 0 5px 26px;
  text-decoration: none;
}

#side .boxSideList li a:hover {
  background: #ececec;
}

#side .boxSideList li a:before {
  top: 14px;
  left: 12px;
}

#side .bnrSideContact {
	margin-top: 15px;
}

#side .bnrSideContact li a {
	position: relative;
	display: block;
	padding: 22px 15px 20px 15px;
	font-size:  16px;
	font-weight: bold;
	line-height: 1.2em;
	border: 1px solid #e6e6e6;
	background-color: #f4f4f4;
}

#side .bnrSideContact li a:hover {
	text-decoration: none;
	border: 1px solid #d40000;
}

#side .bnrSideContact li a:before {
     position: absolute;
     content: '';
     width: 8px;
     height: 8px;
     border-top: solid 1px #697b91;
     border-right: solid 1px #697b91;
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
     top: 50%;
     right: 14px;
     margin-top: -3px;
}

#side .bnrSideContact li span {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #da0000;
}

/*  準備中
-------------------------- */

.comingsoon {
	padding: 100px 0 300px 0;
	text-align: center;
}

.comingsoon h2 {
	margin-bottom: 0.25em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 28px;
	letter-spacing: 0.1em;
}

/*  お知らせ内のボタン設置
-------------------------- */

p.btnLink {
	padding-top: 25px;
	text-align: center;
}

p.btnLink a {
	display: inline-block;
	width: 430px;
	margin-top: -20px;
	margin-bottom: 80px;
	padding: 18px 0;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #d70000;
	transition: all  0.3s ease;
}

p.btnLink a:hover {
	text-decoration: none;
	background-color: #000;
}

/*  開催予定セミナー
-------------------------- */

.boxUpcomingSeminar {
  width: 990px;
  margin-bottom: 4em;
  padding: 38px 0;
  border-top: 3px solid #DA0000;
}

.boxUpcomingSeminar h3 {
  margin-bottom: 0.5em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

.boxUpcomingSeminar .txtUpcoming {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
}

.boxUpcomingSeminar .txtUpcoming span {
  color: #DA0000;
}

.boxUpcomingSeminar .boxUpcoming {
  padding: 42px 0;
  border-bottom: 1px solid #999;
}

.boxUpcomingSeminar .boxUpcomingImg {
  float: left;
  width: 176px;
  height: 176px;
  margin-right: 40px;
}

.boxUpcomingSeminar .boxUpcomingDetail {
  float: right;
  width: 760px;
}

.boxUpcomingSeminar .boxUpcomingDetail .tagTarget {
  display: inline-block;
  padding: 0 1.5em;
  font-size: 0.85em;
  font-weight: bold;
  color: #fff;
  background-color: #DA0000;
}

.boxUpcomingSeminar .boxUpcomingDetail h4 {
  margin: 0.5em 0;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.6em;
}

.btnUpcoming {
  margin-top: 4em;
  text-align: center;
}

.btnUpcoming a {
  display: inline-block;
  padding: 1em 4em;
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  transition: all 0.3s 0s ease;
}

.btnUpcoming a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #DA0000;
}