/***** Width *****/
.baseW {
  width: 1920px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .baseW {
    width: 100%;
    min-width: auto;
    padding: 0;
  }
}

.baseW02 {
  width: 1150px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .baseW02 {
    width: 90%;
  }
}

.baseW03 {
  width: 1772px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .baseW03 {
    width: 100%;
  }
}

.baseW04 {
  width: 1080px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .baseW04 {
    width: 90%;
  }
}

@media all and (max-width: 767px) {
  .baseSpW {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.dPc {
  display: block !important;
}

.dPcInline {
  display: inline !important;
}

.dPcInB {
  display: inline-block !important;
}

.dPcTb {
  display: table !important;
}

.dPcLi {
  display: list-item !important;
}

.dTb,
.dSp,
.dTbInline,
.dSpInline,
.dTbInB,
.dSpInB,
.dTbTb,
.dSpTb,
.dTbLi,
.dSpLi {
  display: none !important;
}

@media screen and (max-width: 768px) {
  /* Sp ***************************************************/
  .dPc,
  .dTb,
  .dPcInline,
  .dTbInline,
  .dPcInB,
  .dTbInB,
  .dPcTb,
  .dTbTb,
  .dPcLi,
  .dTbLi {
    display: none !important;
  }
  .dSp {
    display: block !important;
  }
  .dSpInline {
    display: inline !important;
  }
  .dSpInB {
    display: inline-block !important;
  }
  .dSpTb {
    display: table !important;
  }
  .dSpLi {
    display: list-item !important;
  }
}

/* /SP */
/***** btn *****/
.el_btn {
  display: inline-block;
  width: 523px;
  max-width: 100%;
  padding: 10px 10px;
  background-color: #fff;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #011b6a;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .25s;
  transition: .25s;
}

@media screen and (max-width: 767px) {
  .el_btn {
    width: 94%;
    font-size: 0.857rem;
    letter-spacing: 0.08rem;
  }
}

.el_btn.el_btn__arrow {
  position: relative;
}

.el_btn.el_btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 17px;
  background: url(../images/common/icn-arrow-bottom.png) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .el_btn.el_btn__arrow::after {
    right: 2rem;
  }
}

.el_btn:focus,
.el_btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #011b6a;
}

/***** title *****/
.el_ttl {
  text-align: center;
  font-size: 2.857rem;
  font-weight: 600;
  color: #011b6a;
  letter-spacing: .3em;
}

@media screen and (max-width: 767px) {
  .el_ttl {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.el_subTtl {
  margin-top: 1.3em;
  text-align: center;
  font-size: 1.643rem;
  font-weight: 600;
  color: #011b6a;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .el_subTtl {
    margin-top: 0.9em;
    font-size: 1.1rem;
  }
}

/***** emphasis *****/
.emphasis {
  color: #1aa93a;
}

.emphasis2 {
  color: #ff8003;
  font-size: 3.5rem;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  .emphasis2 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}

/***** ToTop *****/
#page-top {
  position: fixed;
  right: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

/***** Breadcrumb *****/
.boxBreadcrumb {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 0px #ccc solid;
}

@media screen and (max-width: 767px) {
  .boxBreadcrumb {
    display: none;
  }
}

.breadcrumb {
  margin: 0 auto;
  text-align: left;
  line-height: 1.9;
}

.breadcrumb div {
  display: inline-block;
  text-align: left;
}

.breadcrumb a {
  border-bottom: 1px #ccc solid;
}

.breadcrumb .sepaBreadcrumb {
  padding: 0 12px;
}

/*##### Post Body #####*/
.boxPostBody {
  overflow: hidden;
  line-height: 1.45;
  font-size: 1.17rem;
  /*1.25rem;*/
}

@media screen and (max-width: 767px) {
  .boxPostBody {
    line-height: 1.5;
    font-size: 0.95rem;
  }
}

.boxPostBody h2 {
  margin-top: 1.95em;
  margin-bottom: 0.85em;
  padding: 0.1em 0;
  letter-spacing: 0.1em;
  font-size: 2.143rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .boxPostBody h2 {
    font-size: 1.334rem;
  }
}

.boxPostBody h3 {
  margin-top: 2.3em;
  margin-bottom: 1.2em;
  padding: 0.1em 0;
  font-size: 1.71rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .boxPostBody h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .boxPostBody .boxPostBody h2 + h3 {
    margin-top: 1.8em;
  }
}

.boxPostBody h4 {
  margin-top: 2.7em;
  margin-bottom: 1.8em;
  padding: 0.1em 0;
  font-size: 1.29rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .boxPostBody h4 {
    margin-top: 2.0em;
    margin-bottom: 0.8em;
    font-size: 1.12rem;
  }
}

.boxPostBody h3 + h4 {
  margin-top: 1.3em;
}

@media screen and (max-width: 767px) {
  .boxPostBody table {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .boxPostBody table th,
  .boxPostBody table td {
    width: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .boxPostBody table td {
    vertical-align: top;
  }
}

.boxPostBody a {
  text-decoration: underline;
  color: #057000;
}

.boxPostBody p {
  margin: 0;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 0.107em;
  font-size: 1.0rem;
}

@media screen and (max-width: 767px) {
  .boxPostBody p {
    font-size: 0.9rem;
  }
}

.boxPostBody p + p {
  margin-top: 1.7em;
}

.boxPostBody strong {
  font-weight: 700;
}

.boxPostBody em {
  font-style: italic;
}

.boxPostBody ul {
  padding-left: 20px;
  list-style: disc;
}

@media screen and (max-width: 767px) {
  .boxPostBody ul {
    padding-left: 6vw;
  }
}

.boxPostBody ol {
  padding-left: 20px;
  list-style: decimal;
}

@media screen and (max-width: 767px) {
  .boxPostBody ol {
    padding-left: 8%;
  }
}

.boxPostBody li {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .boxPostBody li {
    margin-bottom: 3%;
  }
}

.boxPostBody .alignleft {
  float: left;
  margin: 7px 28px 28px 0;
}

@media screen and (max-width: 767px) {
  .boxPostBody .alignleft {
    float: none;
    display: block;
    width: 100%;
    height: auto;
    margin: 5% 0 5% 0;
  }
}

.boxPostBody .alignright {
  float: right;
  margin: 7px 0 28px 28px;
}

@media screen and (max-width: 767px) {
  .boxPostBody .alignright {
    float: none;
    display: block;
    width: 100%;
    height: auto;
    margin: 5% 0 5% 0;
  }
}

.boxPostBody .aligncenter {
  clear: both;
  margin: 7px auto;
}

@media screen and (max-width: 767px) {
  .boxPostBody .aligncenter {
    clear: both;
    margin: 5% auto;
  }
}

/*##### Single Navi #####*/
.bl_singleNavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5em;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .bl_singleNavi {
    padding: 0;
  }
}

.bl_singleNavi a[rel="prev"],
.bl_singleNavi a[rel="next"] {
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: auto auto;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .bl_singleNavi a[rel="prev"],
  .bl_singleNavi a[rel="next"] {
    border: 0;
    background-size: 2.0vw auto;
    font-size: 0.9rem;
  }
}

.bl_singleNavi a[rel="prev"] {
  padding-left: 1.8em;
  background-image: url("./../images/common/arrow-left.png");
  background-position: left center;
}

@media screen and (max-width: 767px) {
  .bl_singleNavi a[rel="prev"] {
    padding-left: 1.5em;
  }
}

.bl_singleNavi a[rel="next"] {
  padding-right: 1.8em;
  background-image: url("./../images/common/arrow-right02.png");
  background-position: right center;
}

@media screen and (max-width: 767px) {
  .bl_singleNavi a[rel="next"] {
    padding-right: 1.5em;
  }
}

/*===========================================================
# pagenation
============================================================*/
.ly_pagenation {
  margin-top: 2em;
  text-align: center;
}

.ly_pagenation a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.ly_pagenation a:hover {
  background: #0c7519;
  color: #fff;
}

.ly_pagenation a.next,
.ly_pagenation a.prev {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .ly_pagenation a.next,
  .ly_pagenation a.prev {
    font-size: 1rem;
  }
}

.page-numbers {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #000;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .page-numbers {
    font-size: 1rem;
    height: 30px;
    min-width: 30px;
    line-height: 32px;
    margin-right: 0.85rem;
  }
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #0c7519;
  border: 1px solid #0c7519;
  color: #fff;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.bl_pagenation a.next,
.bl_pagenation a.prev {
  background: transparent;
  color: #fff;
}

.page-numbers.dots {
  background: transparent;
  color: #0c7519;
}
