@charset "UTF-8";


/*===================
スペース
===================*/
.space3 {
    color: #000;
    margin-top: 3em;
}
.space5 {
    color: #000;
    margin-top: 5em;
}

/*===================
表
===================*/

.table {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 100%;
 }

.table dt {
  margin-top: 1em;
  padding: 0.2em 2em;
  color: #242424;
  background-color: #f2f2f2;
}
.table dd {
  padding: 0.2em 2em;
  margin-left: 0;
  font-size: 1rem;
  border-width: 0 1px 1px;
  border-style: none solid solid;
  border-color: #f2f2f2;
}

.table span {
   display: inline-block;
}


/*====================
 囲み
====================*/
.well {
    color: #000;
    background-color: #F2F2F2;
    border-radius: 10px;
    padding: 1rem;
}

.well2 {
    color: #000;
    border: solid 2px #000;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

/*====================
 サイドナビ　非表示
====================*/
aside.widget-blog-categories-archives.widget-blog-categories-archives-1.blogWidget {
    display: none;
}
aside.widget.widget-blog-authors.widget-blog-authors-1.blogWidget {
    display: none;
}
.metaArea {
    display: none;
}

/*====================
about
====================*/

.rowBox__2elem,
.rowBox__3elem {
    margin: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.rowBox__2elem .boxInner {
    margin: 20px 0;
    width: calc(50% - 20px);
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6rem;
}

.rowBox__3elem .boxInner {
    margin: 20px 0;
    width: calc(33.333% - 30px);
}


@media only screen and (max-width: 499px){
.rowBox__2elem {
    margin: 0;
    display: block;
}
.rowBox__3elem {
    margin: 0;
    display: block;
}

.rowBox__2elem .boxInner,
.rowBox__3elem .boxInner {
    margin: 20px 0;
    width: 100%;
}
}


/*====================
ボタンcss
====================*/
.gray_but a {
    background: #eee;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1rem auto;
    max-width: 900px;
    padding: 25px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
}
.gray_but a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.gray_but a:hover {
  background: #700000;
  color: #fff;
}
.gray_but a:hover:after {
  right: 1.4rem;
}
