@charset 'utf-8';

.alignright {
  display: inline;
  margin: 0px 0px 15px 25px;
  float: right;
}

.alignleft {
  display: inline;
  margin: 0px 30px 15px 0px;
  float: left;
}


.alignright::after ,
.alignleft::after ,
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media(max-width:600px){
  .wp-block-image .alignright ,
  .wp-block-image .alignleft {
    float: none !important;
    }
    
}

/*フレックス*/
.flex {
  display: flex;
  justify-content: space-between;
}
.flex_center {
  justify-content: center
}
.flex_column{
    flex-direction: column;
  }

/*中央揃え*/
.t_center {
  text-align: center;
}

.m_auto {
  display: block;
  margin: auto;
}

.m_bottom {
  margin-bottom: 5rem;
}

.ff_serif {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.f500{
  font-weight: 500;
}

/*白文字*/
.fc_white {
  color: #fff;
}
.fc_gray {
  color: #9b9b9c;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover,
button:hover {
  opacity: 0.8;
  transition: 200ms;
}
