﻿@charset "utf-8";



/*****************************/
/********** Default **********/
/*****************************/

* {
  font-family: Arial, 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 500;
}

/*IE11 Hack*/
@media all and (-ms-high-contrast:none) {
  * {
    font-family: Arial, "メイリオ", Meiryo, sans-serif;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

::-moz-selection { background: #CCCCCC; color: #FFFFFF; text-shadow: none;}
::selection { background: #CCCCCC; color: #FFFFFF; text-shadow: none;}

p {
  margin: 20px 0;
}
html, body {
  height: 100%;
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
  line-height: 160%;
  color: #000000;
  background-color: #FFFFFF;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 100%;
  overflow-x: hidden;
}
ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-style: normal;
  clear: both;
}
a {
  color: #2D287F;
  background: none;
  text-decoration: underline;
  transition: background-color 0.3s, color 0.3s;
}
a:hover {
  color: #BE1E2E;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
a img {
  border: none;
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
address {
  font-style: normal;
}
img {
  vertical-align: middle;
}
strong, em {
  font-style: normal;
  font-weight: 800;
}
em i {
  font-style: italic;
  font-weight: 800;
}
i {
  font-style: italic;
}
sup {
  vertical-align: baseline;
  position: relative;
  top: -1ex;
  font-size: 1.0rem;
}
sub {
  vertical-align: baseline;
  position: relative;
  bottom: -1ex;
  font-size: 1.0rem;
}
hr {
  border: none;
  height: 1px;
  background-color: #CCCCCC;
  margin: 30px 0;
  clear: both;
}
figure {
  margin: 0 auto;
}
figcaption {
  margin: 10px auto;
}
input[type="submit"]:hover,
input[type="button"]:hover {
  cursor: pointer;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.alignleft {
  display: inline;
  float: left;
  margin: 0 20px 20px 0;
}
.alignright {
  display: inline;
  float: right;
  margin: 0 0 20px 20px;
}
.aligncenter {
  display: block;
  margin: 20px auto;
  text-align: center;
}
.bold {
  font-weight: 800;
}
.nowrap {
  white-space: nowrap;
}
.email:after {
  content: "@";
}
.no-click {
  pointer-events: none;
}



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
/*IE11 Hack*/
@media all and (-ms-high-contrast:none) {
  #container {
    display: block;
  }
}



/****************************/
/********** H Tag **********/
/****************************/

h2,
h2 a {
  clear: both;
  font-size: 2.6rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2rem;
  margin: 30px 0;
  padding: 0;
  line-height: 140%;
  color: #000000;
}
h3,
h3 a {
  clear: both;
  font-size: 2.0rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1rem;
  margin: 30px 0;
  padding: 10px 20px;
  line-height: 140%;
  background-color: #2D439C;
  color: #FFFFFF;
}
h4,
h4 a {
  clear: both;
  font-size: 1.8rem;
  font-weight: 500;
  font-style: normal;
  margin: 20px 0;
  padding: 0;
  line-height: 140%;
  color: #2D287F;
  border-bottom: 1px solid #2D439C;
}
h5,
h5 a {
  clear: both;
  font-size: 1.6rem;
  font-weight: 800;
  font-style: normal;
  margin: 20px 0;
  padding: 0;
  text-align: left;
  line-height: 140%;
  color: #000000;
}
h6,
h6 a {
  clear: both;
  font-size: 1.4rem;
  font-weight: 800;
  font-style: normal;
  margin: 20px 0;
  padding: 0;
  line-height: 140%;
  color: #000000;
}



/*******************************/
/********** File Icon **********/
/*******************************/

.pdf:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-pdf.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 5px;
}
.word:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-word.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 5px;
}
.excel:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-excel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 5px;
}
.html:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-html.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 5px;
}



/****************************/
/********** Column **********/
/****************************/

.column01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.column02 {
  display: flex;
  align-items: center;
}



/*******************************/
/********** Font Size **********/
/*******************************/

.f28 {
  font-size: 2.8rem;
}
.f26 {
  font-size: 2.6rem;
}
.f24 {
  font-size: 2.4rem;
}
.f22 {
  font-size: 2.2rem;
}
.f20 {
  font-size: 2.0rem;
}
.f19 {
  font-size: 1.9rem;
}
.f18 {
  font-size: 1.8rem;
}
.f17 {
  font-size: 1.7rem;
}
.f16 {
  font-size: 1.6rem;
}
.f15 {
  font-size: 1.5rem;
}
.f14 {
  font-size: 1.4rem;
}
.f13 {
  font-size: 1.3rem;
}
.f12 {
  font-size: 1.2rem;
}
.f11 {
  font-size: 1.1rem;
}
.f10 {
  font-size: 1.0rem;
}



/***************************/
/********** Width **********/
/***************************/

.w100 {
  width: 100%;
}
.w90 {
  width: 90%;
}
.w80 {
  width: 80%;
}
.w70 {
  width: 70%;
}
.w60 {
  width: 60%;
}
.w50 {
  width: 50%;
}
.w40 {
  width: 40%;
}
.w33 {
  width: 33%;
}
.w30 {
  width: 30%;
}
.w25 {
  width: 25%;
}
.w20 {
  width: 20%;
}
.w15 {
  width: 15%;
}
.w10 {
  width: 10%;
}



/**************************************/
/********** Padding & Margin **********/
/**************************************/

.pd50 {
  padding: 50px;
}
.pd40 {
  padding: 40px;
}
.pd30 {
  padding: 30px;
}
.pd20 {
  padding: 20px;
}
.pd10 {
  padding: 10px;
}
.pd5 {
  padding: 5px;
}
.mg50 {
  margin: 50px;
}
.mg40 {
  margin: 40px;
}
.mg30 {
  margin: 30px;
}
.mg20 {
  margin: 20px;
}
.mg10 {
  margin: 10px;
}
.mg5 {
  margin: 5px;
}



/***************************/
/********** Color **********/
/***************************/

.color01 {
  color: #000000;
}
.color02 {
  color: #CCCCCC;
}
.color03 {
  color: #EEEEEE;
}
.color04 {
  color: #FFFFFF;
}
.color05 {
  color: #2D287F;
}
.color06 {
  color: #BE1E2E;
}
.color07 {
  color: #FFCB06;
}
.color08 {
  color: #817EB2;
}



/**********************************/
/********** Border Color **********/
/**********************************/

.border01 {
  border: 1px solid #000000;
}
.border02 {
  border: 1px solid #CCCCCC;
}
.border03 {
  border: 1px solid #EEEEEE;
}
.border04 {
  border: 1px solid #FFFFFF;
}
.border05 {
  border: 1px solid #2D287F;
}
.border06 {
  border: 1px solid #BE1E2E;
}
.border07 {
  border: 1px solid #FFCB06;
}
.border08 {
  border: 1px solid #817EB2;
}



/**************************************/
/********** Background Color **********/
/**************************************/

.bgcolor01 {
  background-color: #000000;
}
.bgcolor02 {
  background-color: #CCCCCC;
}
.bgcolor03 {
  background-color: #EEEEEE;
}
.bgcolor04 {
  background-color: #FFFFFF;
}
.bgcolor05 {
  background-color: #2D287F;
}
.bgcolor06 {
  background-color: #BE1E2E;
}
.bgcolor07 {
  background-color: #FFCB06;
}
.bgcolor08 {
  background-color: #817EB2;
}



/***********************************/
/********** Border Radius **********/
/***********************************/

.radius02 {
  border-radius: 2px;
}
.radius03 {
  border-radius: 3px;
}
.radius04 {
  border-radius: 4px;
}
.radius06 {
  border-radius: 6px;
}
.radius08 {
  border-radius: 8px;
}
.radius10 {
  border-radius: 10px;
}



/*********************************/
/********** Img Outline **********/
/*********************************/

.outline01 {
  outline: 1px solid #FFFFFF;
  outline-offset: -1px;
}
.outline02 {
  outline: 2px solid #FFFFFF;
  outline-offset: -2px;
}
.outline03 {
  outline: 3px solid #FFFFFF;
  outline-offset: -3px;
}
.outline05 {
  outline: 5px solid #FFFFFF;
  outline-offset: -5px;
}
.outline10 {
  outline: 10px solid #FFFFFF;
  outline-offset: -10px;
}



/****************************/
/********** Button **********/
/****************************/

.button01 {
  margin: 30px 0;
}
.button01 a {
  text-align: center;
  background-color: #000031;
  color: #FFFFFF;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.3rem;
}
.button01 a:hover {
  background-color: #FF5B26;
  color: #FFFFFF;
}

.button02 {
  margin: 30px 0;
}
.button02 a {
  text-align: center;
  background-color: #2095B9;
  color: #FFFFFF;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: opacity 0.3s;
}
.button02 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}

.button03 {
  margin: 30px 0;
}
.button03 a {
  text-align: center;
  background-color: #FF5B26;
  color: #FFFFFF;
  padding: 15px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: opacity 0.3s;
}
.button03 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}



/********************************/
/********** Ul-Style01 **********/
/********************************/

.ul-style01 ul {
  margin: 0;
  padding: 0;
}
.ul-style01 ul li {
  margin: 10px;
  padding: 0;
  list-style-position: inside;
  list-style-type: disc;
}



/********************************/
/********** Ul-Style02 **********/
/********************************/

.ul-style02 ul {
  margin: 0;
  padding: 0;
}
.ul-style02 ul li {
  margin: 10px;
  padding: 0;
  list-style-position: inside;
  list-style-type: square;
}



/********************************/
/********** Ul-Style03 **********/
/********************************/

.ul-style03 ul {
  margin: 0;
  padding: 0;
}
.ul-style03 ul li {
  margin: 10px;
  padding: 0;
  list-style-position: inside;
  list-style-type: circle;
}



/********************************/
/********** Ul-Style04 **********/
/********************************/

.ul-style04 ul {
  margin: 0;
  padding: 0;
}
.ul-style04 ul li {
  margin: 10px;
  padding: 0;
  list-style: none;
}



/********************************/
/********** Ul-Style05 **********/
/********************************/

.ul-style05 ul {
  margin: 0;
  padding: 0;
}
.ul-style05 ul li {
  margin: 10px 0;
  padding: 5px 0;
  list-style: none;
  border-bottom: 1px dotted #999999;
}
.ul-style05 ul li a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon01.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}
.ul-style05 ul li a:hover:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}



/********************************/
/********** Ol-Style01 **********/
/********************************/

.ol-style01 {
  margin: 0;
  padding: 0;
}
.ol-style01 li {
  margin: 10px;
  padding: 0;
  list-style-type: decimal;
}



/********************************/
/********** Ol-Style02 **********/
/********************************/

.ol-style02 {
  margin: 0;
  padding: 0;
}
.ol-style02 li {
  margin: 10px;
  padding: 0;
  list-style-type: lower-alpha;
}



/********************************/
/********** Ol-Style03 **********/
/********************************/

.ol-style03 {
  margin: 0;
  padding: 0;
}
.ol-style03 li {
  margin: 10px;
  padding: 0;
  list-style-type: upper-latin;
}



/********************************/
/********** Ol-Style04 **********/
/********************************/

.ol-style04 ul {
  margin: 0;
  padding: 0;
}
.ol-style04 ul li {
  margin: 10px;
  padding: 0;
  list-style: none;
}



/********************************/
/********** Dl-Style01 **********/
/********************************/

.dl-style01 {
  margin: 20px 0;
  padding: 0;
}
.dl-style01 dl {
  background-color: #EEEEEE;
  width: 100%;
}
.dl-style01 dl dt {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  background-color: #EEEEEE;
  width: 100%;
}
.dl-style01 dl dd {
  margin: 0;
  padding: 20px 0;
  background-color: #FFFFFF;
  width: 100%;
}



/********************************/
/********** Dl-Style02 **********/
/********************************/

.dl-style02 {
  margin: 20px 0;
  padding: 0;
}
.dl-style02 dl {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #000000;
  background-color: #EEEEEE;
}
.dl-style02 dl dt {
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  background-color: #EEEEEE;
  width: 30%;
}
.dl-style02 dl dd {
  margin: 0;
  padding: 10px 20px;
  background-color: #FFFFFF;
  width: 70%;
}
@media screen and ( max-width: 768px ) {
  .dl-style02 dl {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: none;
  }
  .dl-style02 dl dt {
    margin: 0;
    padding: 10px 0;
    text-align: center;
    background-color: #EEEEEE;
    width: 100%;
  }
  .dl-style02 dl dd {
    margin: 0;
    padding: 20px 0;
    background-color: #FFFFFF;
    width: 100%;
  }
}



/********************************/
/********** Dl-Style03 **********/
/********************************/

.dl-style03 {
  margin: 20px 0;
  padding: 0;
}
.dl-style03 dl {
  width: 100%;
}
.dl-style03 dl dt {
  margin: 0;
  padding: 0;
  width: 100%;
}
.dl-style03 dl dd {
  margin: 0;
  padding: 0;
  width: 100%;
}



/********************************/
/********** Dl-Style04 **********/
/********************************/

.dl-style04 dl {
  display: flex;
  width: 100%;
  border-bottom: 1px dotted #999999;
  padding: 5px 0;
}
.dl-style04 dl dt {
  font-family: Verdana;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}
.dl-style04 dl dt:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon01.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
}
.dl-style04 dl dd {
  width: 100%;
}



/***********************************/
/********** Table Style01 **********/
/***********************************/

.table-style01 {
  margin: 30px 0;
  padding: 0;
}
.table-style01 table {
  width: 100%;
  border-collapse: collapse;
}
.table-style01 caption {
  color: #000000;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
.table-style01 tr:nth-child(even) {
  background-color: #FFFFFF;
}
.table-style01 tr:nth-child(odd) {
  background-color: #F6F6F6;
}
.table-style01 tr th {
  margin: 0;
  padding: 10px;
  text-align: center;
  background-color: #2D439C;
  color: #FFFFFF;
  font-weight: 500;
  border: 1px solid #CCCCCC;
}
.table-style01 tr td {
  margin: 0;
  padding: 10px;
  border: 1px solid #CCCCCC;
}



/***********************************/
/********** Table Style02 **********/
/***********************************/

.table-style02 {
  margin: 30px 0;
  padding: 0;
}
.table-style02 table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.table-style02 caption {
  color: #000000;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}
.table-style02 tr:nth-child(even) {
  background-color: #FFFFFF;
}
.table-style02 tr:nth-child(odd) {
  background-color: #F6F6F6;
}
.table-style02 tr th {
  margin: 0;
  padding: 10px;
  text-align: center;
  background-color: #2D439C;
  color: #FFFFFF;
  font-weight: 500;
  border-bottom: 1px dotted #CCCCCC;
}
.table-style02 tr td {
  margin: 0;
  padding: 10px;
  border-bottom: 1px dotted #CCCCCC;
}



/*********************************/
/********** Wp-Pagenavi **********/
/*********************************/

.wp-pagenavi {
  clear: both;
  margin: 40px 1px;
  padding: 0;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #2D287F;
  background-color: #EEEEEE;
  border: 1px solid #000000;
}
.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  color: #2D287F;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  margin: 1px;
  padding: 2px 10px;
}



/****************************************/
/********** Include Navigation **********/
/****************************************/

.included-nav {
  clear: both;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.included-nav li {
  margin: 4px;
  padding: 0;
}
.included-nav li a {
  text-align: center;
  padding: 4px 20px;
  text-decoration: none;
  font-size: 1.3rem;
  color: #2D287F;
  background-color: #EEEEEE;
  border: 1px solid #000000;
  border-radius: 3px;
}
.included-nav li a:hover {
  background-color: #CCCCCC;
}



/**********************************/
/********** Year Archive **********/
/**********************************/

.years {
  clear: both;
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.years li {
  margin: 4px 4px 4px 0;
  padding: 0;
}
.years li a {
  text-align: center;
  padding: 4px 20px;
  text-decoration: none;
  font-size: 1.3rem;
  color: #2D287F;
  background-color: #EEEEEE;
  border: 1px solid #000000;
  border-radius: 3px;
}
.years li.current-cat a,
.years li a:hover {
  background-color: #CCCCCC;
}



/******************************/
/********** Category **********/
/******************************/

.category {
  clear: both;
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.category li {
  margin: 4px 4px 4px 0;
  padding: 0;
}
.category li a {
  text-align: center;
  padding: 4px 20px;
  text-decoration: none;
  font-size: 1.3rem;
  color: #2D287F;
  background-color: #EEEEEE;
  border: 1px solid #000000;
  border-radius: 3px;
}
.category li.current-cat a,
.category li a:hover {
  background-color: #CCCCCC;
}



/**********************************/
/********** External Link**********/
/**********************************/

.external-link {
  clear: both;
  margin: 10px 0;
  padding: 0;
  font-size: 1.4rem;
}
.external-link a:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("images/icon13.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 3px 0;
}



/**********************************/
/********** Inner Link01 **********/
/**********************************/

.inner-link01 {
  clear: both;
  margin: 10px 0;
  padding: 0;
  font-size: 1.2rem;
}
.inner-link01 a {
  color: #2D287F;
  text-decoration: none;
}
.inner-link01 a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon01.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}
.inner-link01 a:hover:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}
.inner-link01 a:hover {
  color: #BE1E2E;
}



/**********************************/
/********** Inner Link02 **********/
/**********************************/

.inner-link02 {
  clear: both;
  margin: 10px 0;
  padding: 0;
  font-size: 1.2rem;
}
.inner-link02 a {
  color: #FFFFFF;
  text-decoration: none;
}
.inner-link02 a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon03.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}
.inner-link02 a:hover:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon02.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 4px 2px 0;
  transition: all 0.3s ease;
}
.inner-link02 a:hover {
  color: #BE1E2E;
}



/*******************************/
/********** Home Link **********/
/*******************************/

.home-link {
  clear: both;
  margin: 10px 0;
  padding: 0;
  font-size: 1.4rem;
}
.home-link a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background-image: url("../images/icon04.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 3px 0;
}



/*****************************/
/********** Archive **********/
/*****************************/

.archive #content #event {
  margin: 0 auto 30px auto;
  padding: 0;
  position: relative;
}
.archive #content #event h3 {
  line-height: 240%;
  border-bottom: 1px solid #000000;
  margin: 0;
}
.archive #content #event .status {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #EEEEEE;
  border: 1px solid #000000;
}
.archive #content #event .status ul {
  display: flex;
  flex-wrap: wrap;
}
.archive #content #event .status ul li {
  margin: 2px 30px 2px 0;
}
.archive #content #event .status ul li a {
  letter-spacing: 0.1rem;
  margin: 0 4px 0 0;
}
.archive #content #event .status ul li span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("images/icon05.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.archive #content #event .status ul li span:after {
  content: "：";
}
.archive #content #event #posts {
  border-top: 1px dotted #000000;
}
.archive #content #event #posts h4 {
  margin: 10px 0;
}
.archive #content #event #posts ul li {
  border-bottom: 1px dotted #000000;
  width: 100%;
  padding: 12px 0;
}
.archive #content #event #posts .event-excerpt {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.archive #content #event #posts .event-excerpt dl {
  margin: 8px 0;
  padding: 0;
  display: table;
}
.archive #content #event #posts .event-excerpt dl dt {
  margin: 0;
  padding: 0;
  display: table-cell;
}
.archive #content #event #posts .event-excerpt dl dt span {
  padding: 6px 14px;
  white-space: nowrap;
  background-color: #2D287F;
  color: #FFFFFF;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border-radius: 3px;
}
.archive #content #event #posts .event-excerpt dl:nth-child(1) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background-image: url("images/icon06.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.archive #content #event #posts .event-excerpt dl:nth-child(2) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background-image: url("images/icon08.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.archive #content #event #posts .event-excerpt dl:nth-child(3) dt span:before,
.archive #content #event #posts .event-excerpt dl:nth-child(4) dt span:before,
.archive #content #event #posts .event-excerpt dl:nth-child(5) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url("images/icon10.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.archive #content #event #posts .event-excerpt dl dd {
  margin: 0;
  padding: 0 18px;
  display: table-cell;
}



.archive #content #event #posts ul li .area {
  display: flex;
  margin: 10px 0;
}
.archive #content #event #posts ul li .area div {
  display: block;
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border-radius: 3px;
  margin: 0 6px 0 0;
}
.archive #content #event #posts ul li .area div a {
  display: block;
  padding: 1px 20px;
  background-color: #E74218;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 3px;
  transition: opacity 0.3s;
}
.archive #content #event #posts ul li .area div a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}



.archive #content #event #posts ul li .target {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #2D287F;
  font-weight: 800;
  line-height: 150%;
  font-size: 1.2rem;
  background-color: #DDDDDD;
  overflow: hidden;
}
.archive #content #event #posts ul li .target div a {
  color: #2D287F;
  text-decoration: none;
  font-weight: 800;
  transition: opacity 0.3s;
}
.archive #content #event #posts ul li .target div a:hover {
  text-decoration: underline;
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}



.archive #content #event .rss {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 1.4rem;
}
.archive #content #event .rss a {
  font-weight: 800;
  font-family: Verdana;
}
.archive #content #event .rss a:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("images/icon11.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 8px 0 0;
  position: relative;
  top: -2px;
}



/*********************************/
/********** Single Post **********/
/*********************************/

.single #content #event {
  margin: 0 auto 30px auto;
  padding: 0;
  position: relative;
}
.single #content #event h3 {
  line-height: 240%;
  border-bottom: 1px solid #000000;
  margin: 0;
}
.single #content #event .status {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: #EEEEEE;
  border: 1px solid #000000;
}
.single #content #event .status ul {
  display: flex;
  flex-wrap: wrap;
}
.single #content #event .status ul li {
  margin: 2px 30px 2px 0;
}
.single #content #event .status ul li a {
  letter-spacing: 0.1rem;
  margin: 0 4px 0 0;
}
.single #content #event .status ul li span:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("images/icon05.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.single #content #event .status ul li span:after {
  content: "：";
}
.single #content #event #posts {
}
.single #content #event #posts h4 {
  margin: 10px 0;
}
.single #content #event #posts .event-excerpt {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-top: 1px dotted #000000;
  border-bottom: 1px dotted #000000;
  padding: 20px 0;
}
.single #content #event #posts .event-excerpt dl {
  margin: 8px 0;
  padding: 0;
  display: table;
}
.single #content #event #posts .event-excerpt dl dt {
  margin: 0;
  padding: 0;
  display: table-cell;
}
.single #content #event #posts .event-excerpt dl dt span {
  padding: 6px 14px;
  white-space: nowrap;
  background-color: #000031;
  color: #FFFFFF;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border-radius: 3px;
}
.single #content #event #posts .event-excerpt dl:nth-child(1) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background-image: url("images/icon06.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.single #content #event #posts .event-excerpt dl:nth-child(2) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  background-image: url("images/icon08.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.single #content #event #posts .event-excerpt dl:nth-child(3) dt span:before,
.single #content #event #posts .event-excerpt dl:nth-child(4) dt span:before,
.single #content #event #posts .event-excerpt dl:nth-child(5) dt span:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url("images/icon10.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 6px 0 0;
  position: relative;
  top: -2px;
}
.single #content #event #posts .event-excerpt dl dd {
  margin: 0;
  padding: 0 18px;
  display: table-cell;
}



.single #content #event #posts ul li .area {
  display: flex;
  margin: 10px 0;
}
.single #content #event #posts ul li .area div {
  display: block;
  white-space: nowrap;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  border-radius: 3px;
  margin: 0 6px 0 0;
}
.single #content #event #posts ul li .area div a {
  display: block;
  padding: 1px 20px;
  background-color: #E74218;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 3px;
  transition: opacity 0.3s;
}
.single #content #event #posts ul li .area div a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}



.single #content #event #posts ul li .target {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #2D287F;
  font-weight: 800;
  line-height: 150%;
  font-size: 1.2rem;
  background-color: #DDDDDD;
  overflow: hidden;
}
.single #content #event #posts ul li .target div a,
.single #content #event #posts ul li .target div a:hover {
  color: #2D287F;
  text-decoration: none;
  font-weight: 800;
}



/********************************/
/********** WP Gallery **********/
/********************************/

.gallery {
  margin: 20px 0;
  padding: 0;
}
.gallery-item {
  float: left;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}
.gallery-icon {
  text-align: center;
}
.gallery-caption {
  font-size: 1.2rem;
  line-height: 140%;
  margin: 0;
  text-align: center;
}
.gallery-item img {
  width: 100%;
  padding: 0%;
  margin: 0%;
  margin-bottom: 4px;
  float: left;
  height: auto;
  border: 1px solid #CCCCCC;
}
.gallery-columns-1 .gallery-item {
  width: 100%;
  margin: 0%;
  box-sizing: border-box;
  float: left;
  height: auto;
}
.gallery-columns-2 .gallery-item {
  width: 48%;
  margin: 1%;
  float: left;
  height: auto;
}
.gallery-columns-3 .gallery-item {
  width: 32%;
  margin-left: 1%;
  float: left;
  height: auto;
}
.gallery-columns-4 .gallery-item {
  width: 23%;
  margin: 1%;
  float: left;
  height: auto;
}