@charset "UTF-8";
/* CSS Document */
/* 共通スタイル */
:root {
--usu_beige-color: #F7F7F2;
--orange-color: #AB3B13;
--red-color: #771D1D;
--brown-color: #B2AB84;
--white-color: #FFFFFF;
--navy-color: #282836;
}
.bg-image{
  background-image: url(../images/common/background.jpg);
  background-size: cover;
}
.mincyo{
    font-family: ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;
}
.headline_h2 {
    font-family: ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;
  color: var(--navy-color);
  font-size: 2vw;
  letter-spacing: .7rem;
}
.headline_h2 span{
  font-size: 1vw;
  display: block;
  letter-spacing: 0;
}
.markup{
  font-size: 2rem;
  display: inline-block;
  position: relative;
}
.markup::after {
  content: '';
  background-image: url(../images/common/markup.svg);
  position: absolute;
  width: 100%;
  height: 9px;
  left: 0;
  bottom: -5px;
}
.markup02{
  background-color: var(--usu_beige-color);
}
.btn01 {
  color: var(--navy-color);
  font-weight: bold;
  background: transparent;
  width: 400px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border: 1px solid var(--navy-color);
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
  margin: 0 auto;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
.btn01::before {
  content: "";
  width: 120%;
  height: 250%;
  position: absolute;
  top: -70%;
  right: 0;
  z-index: -1;
  background: var(--navy-color);
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .3s;
} 
.btn01:hover {
  color: #fff;
}
.btn01:hover::before {
  transform: translateX(10%);
}


.btn02 {
  color: var(--white-color);
  font-weight: bold;
  background: transparent;
  width: 400px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border: 1px solid var(--white-color);
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
  margin: 0 auto;
  font-size: 1.4rem;
  letter-spacing: .1rem;
}
.btn02::before {
  content: "";
  width: 120%;
  height: 250%;
  position: absolute;
  top: -70%;
  right: 0;
  z-index: -1;
  background: var(--white-color);
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .3s;
} 
.btn02:hover {
  color: var(--navy-color);
}
.btn02:hover::before {
  transform: translateX(10%);
}

.a-blog-area .C .top_blogR {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  border-bottom: solid 1px #fff;
}
.a-blog-area .C .top_blogR p{
  margin-right: 1rem;
}
#sub_event a{
  display: block;
  word-break: break-all;
  overflow-wrap: break-word;
  width: 100%;
}
.event-post a{
  display: block;
  word-break: break-all;
  overflow-wrap: break-word;
  width: 100%;
}






@media screen and (max-width: 767px){
  .btn01{
    width: 100%;
  }
	.headline_h2 {
    font-family: serif;
    color: var(--navy-color);
    font-size: 2rem;
    letter-spacing: 0;
}
} 