/*スクロールバー非表示*/
body::-webkit-scrollbar {
  display:none;
}
/*aタグ*/
section a{
  color: #337ab7;
  text-decoration: none;
  transition: .3s all;
}
section a:hover{
  color: #cc3434;
  text-decoration: underline;
  transition: .3s all;
}
.title_a_css a{
  color: #4b4b4b;
  text-decoration: none;
  transition: .3s all;
}
.title_a_css a:hover{
  opacity: .7;
  transition: .3s all;
}
/*パンくず*/
.breadcrumb{
  display: flex;
  padding-top: 120px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 99;
  flex-wrap: wrap;
  line-height: 1.5;
}
.breadcrumb li{
  padding: 0 15px;
  position: relative;
  z-index: 100;
}
.breadcrumb li:first-child{
padding-left: 0;
}
.breadcrumb li::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}
.breadcrumb li:first-child::after{
  content: '';
  width:0;
  height: 0;
  border-top: solid 0px #333;
  border-right: solid 0px #333;
}
@media screen and (max-width:600px){
.breadcrumb{
  display: flex;
  padding-top: 90px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 99;
}
}
/*共通*/
/*header*/
header{
  /*fixedコード
  width: 100vw;
  position:fixed;
  z-index: 100;*/
  /*固定しない*/
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
}
.header_content_wrap,
.header_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_nav{
  gap: 1vw;
}
.header_content_wrap{
  padding: 20px 40px;
}
@media screen and (max-width:600px){
.header_content_wrap{
  padding: 10px 20px;
}
.header_nav{
  /*gap: 4vw;*/
}
}
/*header--end*/
/*footer*/
.footer_bottom{
    padding: 20px;
    text-align: center;
}
@media screen and (max-width:600px){
  .footer_bottom{
    font-size: 0.8rem;
}
}
/*footer--end*/
/*pagetopボタン*/
#page-bottom{
  line-height: 1.5;
}
#page-bottom a{
    display: flex;
    justify-content:center;
    align-items:center;
    /*background:#4b4b4b;*/
    background:#4b4b4b;
    color:#ffffff;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.6rem;
    transition:all 0.3s;
  }
  #page-bottom a:hover{
    background:#027996;
  }
  #page-bottom {
    position: fixed;
    right: 10px;
    bottom:100px;
    z-index: 2;
    opacity: 0;
    transform: translateX(100px);
  }
  #page-bottom.LeftMove{
    animation: LeftAnime 0.5s forwards;
  }
  @keyframes LeftAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  #page-bottom.RightMove{
    animation: RightAnime 0.5s forwards;
  }
  @keyframes RightAnime{
    from {
      opacity: 1;
    transform: translateX(0);
    }
    to {
      opacity: 1;
    transform: translateX(100px);
    }
  }
/*お問い合わせフォーム*/
.page_contact_wrap{
  padding-left: 40px;
  padding-right: 40px;
}
.page_contact_content_wrap{
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.wpcf7{
    margin-bottom: 150px;
}
.wpcf7 form{
    width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-top: 40px;
}
.contact-form-accept,
.contact-form{
  margin-top: 20px;
}
.page_contact_content_1{
  text-align: center;
  line-height: 1.6;
}
.contact-form-accept{
  text-align: center;
}
input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    display: block;
    padding: 10px 20px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border:solid 1px rgba(0,0,0, .5)
}
input.wpcf7-form-control.wpcf7-submit{
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
    /*background: #4b4b4b;*/
    background:#4b4b4b;
    font-weight: bold;
    color:#ffffff
}
input.wpcf7-form-control.wpcf7-submit:hover{
    opacity: .7;
    transition: .6s;
}
.man{
    background: #e83845;
    color:#ffffff;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: bold;
    margin-right: 8px;
}
form p{
    margin-top: 18px;
}
.contact-form-i_b{
  width: 100%;
  display: block;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 5px;
  background: #ffffff;
}
@media screen and (max-width:1025px){
}
@media screen and (max-width:600px){
    .wpcf7{
        margin-bottom: 50px;
    }
    .page_contact_wrap{
      padding-left: 20px;
      padding-right: 20px;
    }
}
/*=======================================
個別・カテゴリー・アーカイブ・タグページ・404共通
========================================*/
/*.page_wrap,*/
.archive_wrap,
.cat_wrap,
.tag_wrap,
.non_wrap{
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 100px;
  margin-top: 40px;
  max-width: 1200px;
  width: 100%;
}
.page h1,
.archive h1,
.category h1,
.tag h1,
.non h1,
.section_title_css h2{
  text-align: center;
}
.page h1,
.archive h1,
.category h1,
.tag h1,
.non h1,
.section_title_css h2{
  color:#4b4b4b;
  font-size: 3rem;
  /*font-family: "Rubik Mono One", monospace!important;*/
  font-weight: bold;
  font-style: normal;
}
.page_content_1,
.archive_centent_1,
.category_centent_1,
.tag_centent_1{
  margin-top: 70px;
}
@media screen and (max-width:1025px){
}
@media screen and (max-width:600px){
  /*.page_wrap,*/
  .archive_wrap,
  .cat_wrap,
  .tag_wrap,
  .non_wrap{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .page h1,
  .archive h1,
  .category h1,
  .tag h1,
  .non h1,
  .section_title_css h2{
      font-size: 1.7rem;
  }
  .page_content_1,
  .archive_centent_1,
  .category_centent_1,
  .tag_centent_1{
    margin-top: 30px;
  }
}
/*======================
個別ページ
======================*/
.page h2{
  font-size: 1.2rem;
  background: #4b4b4b;
  color: #ffffff;
  padding: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.page h3{
  font-size: 1.1rem;
  font-weight: bold;
  color: #4b4b4b;
  padding: 10px;
  padding-left: 0;
  margin-top: 20px;
}
.page p{
  font-size: 1rem;
  line-height: 1.5;
}
.page .wsp-pages-list,
.page .wsp-posts-list{
  line-height: 2;
}
@media screen and (max-width:600px){
  .page h2{
      font-size: 1.1rem;
      padding: 6px;
      margin-top: 20px;
      margin-bottom: 20px;
  }
  .page h3{
      font-size: 1rem;
      font-weight: bold;
      color: #4b4b4b;
      padding: 8px;
      padding-left: 0;
  }
  .page p{
      font-size: 1rem;
      line-height: 1.5;
  }
}
/*======================
Category・Archiveページ
======================*/
.cat_ul,
.archive_ul,
.tag_ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cat_ul li,
.archive_ul li,
.tag_ul li{
  width: 27%;
  margin: 0 auto;
  margin-top: 40px;
  border:solid 1px rgba(0,0,0,.3)
}
.cat_img_css,
.archive_img_css,
.tag_img_css{
  width: 100%;
}
.cat_title_wrap,
.archive_title_wrap,
.tag_title_wrap{
  text-align: center;
  margin-top: 10px;
}
.title_a_css a p,
.archive_a_css a p,
.tag_a_css a p{
  text-align: center;
  padding: 10px;
}
@media screen and (max-width:1025px){
  .cat_ul li,
  .archive_ul li,
  .tag_ul li{
    width: 47%;
  }
}
@media screen and (max-width:600px){
  .cat_ul,
  .archive_ul,
  .tag_ul{
    display: block;
  }
  .cat_ul li,
  .archive_ul li,
  .tag_ul li{
    width: 100%;
  }
}
/*======================
個別ページ
======================*/
/*===「page.php」以外の個別ページ見出し====*/
.other_page-section_title_css h2{
  font-size: 3rem!important;
  font-weight: bold!important;
  font-style: normal!important;
  background: none!important;
  text-align: center!important;
  color:#4b4b4b!important;
}
/*===料金表====*/
.page_content_1{
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 100px;
  margin-top: 40px;
  max-width: 1200px;
  width: 100%;
}
.page-table_above{
  text-align: center;
  margin:0 auto;
}
.table-under{
  text-align: center;
}
table {
  border-collapse:  collapse;
  width: 100%;
  font-size: 1.2rem!important;
  color:#4b4b4b!important;
}
tr:nth-child(odd) {
  background-color:  #dddddd;
}
th,td {
  padding: 15px 20px!important;
  font-weight: bold!important;
}
.table-under{
  margin-top: 80px;
}
@media screen and (max-width:1025px){
  table {
    font-size: 1rem!important;
  }
  .price_css h2{
    text-align: center!important;
    font-size: 1.5rem!important;
    background: none!important;
    font-weight: bold!important;
    color:#4b4b4b!important;
  }
  .table-under{
    margin-top: 40px;
    font-size: 0.8rem!important;
  }
  .page-table_above p,
  .table-under p{
    font-size: 0.8rem!important;
  }
  th,td {
    padding: 10px 15px!important;
    font-weight: bold!important;
  }
}
@media screen and (max-width:600px){
  table {
    font-size: .8rem!important;
  }
  th,td {
    padding: 8px 12px!important;
    font-weight: normal!important;
  }
  .table-under{
    margin-top: 20px;
  }
  .page-table_above p,
  .table-under p{
    font-size: 0.7rem!important;
  }
  .page_content_1{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  /*===「page.php」以外の個別ページ見出し====*/
  .other_page-section_title_css h2{
    text-align: center!important;
    font-size: 1.2rem!important;
    background: none!important;
    font-weight: bold!important;
    color:#4b4b4b!important;
  }
}
/*======================
web制作
======================*/
.page-webpage-content_2{
  background:#f8f8f8;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width:600px){
.page-webpage-content_2{
  padding-left: 20px;
  padding-right: 20px;
}
}
/*======================
デザイン
======================*/
/*======================
ライティング
======================*/
/*======================
その他
======================*/
/*======================
404ページ
======================*/
.non_wrap{
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.non_content_wrap{
  width:44%;
  margin: 0 auto;
}
.non_content_wrap img{
  width: 100%;
}
@media screen and (max-width:1025px){
  .non_content_wrap{
    width:30%;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px){
  .non_wrap{
    padding-bottom: 0px;
  }
  .non_content_wrap{
    width:90%;
    margin: 0 auto;
  }
}
/*======================
ページネーション
======================*/
.pagination {
    text-align: center;
    margin-top: 40px;
}
.nav-links .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-links a.page-numbers ,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #fff;
    color: #4b4b4b;
    border-radius: 50%;
    margin-right: 25px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #4b4b4b;
}
.nav-links a.page-numbers:hover {
    color: #FFF;
    background-color: #4b4b4b;
    border-color: #4b4b4b;
    border-radius: 50%;
}
.nav-links .current {
    background: #4b4b4b;
    color: #FFFFFF;
    padding: 0;
}
/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
    border: 1px solid #4b4b4b;
    color: #4b4b4b;
    position: relative;
}
.nav-links .next::before {
    left: -15px;
}
.nav-links .prev::after {
    right: -15px;
}
.nav-links .dots {
    background: transparent;
    border: none;
}
@media screen and (max-width:600px){
  .pagination {
      margin-top: 20px;
  }
}