@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

html {
  font-size: 100%;
  overflow-x: hidden;
  letter-spacing: 0.8px;
}

html,
body {
  font-family: Montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

a {

  opacity: 1;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover {
  opacity: 0.8;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

img {
  max-width: 100%;
}

.pt0 {
  padding-top: 0 !important;
}

.half {
  display: flex;
}

.lg {
  display: block;
}

.md {
  display: none;
}


.lum-lightbox {
  z-index: 999;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.wrapper .container {
  width: 1080px;
  max-width: 100%;
  margin: auto;
}

ul.menu {
  margin: 0;
  padding: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  width: 264px;
  max-width: 100%;
  height: 100%;
}

.sidebar .logo {
  padding: 75px 0;
}

.sidebar .logo img {
  display: block;
  margin: auto;
}

.sidebar .side-nav {
  position: relative;
}

.sidebar .side-nav li a {
  position: relative;
  display: block;
  padding: 25px 0;
  color: #666;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar .side-nav li a::before {
  content: '';
  position: absolute;
  left: 100%;
  opacity: 0;
  margin-top: 3px;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar .side-nav li a:hover,
.sidebar .side-nav li.current-menu-item>a {
  opacity: 1;
  margin-left: 40px;
  color: #fff;
  background-color: #1f1f1f;
}

.sidebar .side-nav li a:hover:before,
.sidebar .side-nav li.current-menu-item>a:before {
  opacity: 1;
  left: 0;
}

.sidebar .side-nav li {
  position: relative;
  list-style-type: none;
}

/* submenu */
.sidebar ul.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  width: 100%;
  display: none;
  opacity: 0;
  /* background-color: rgba(33, 33, 33, 0.9); */
  background-color: #000;
  color: #aaa;
  transition: .4s;
}

.sidebar .side-nav li:hover>ul.sub-menu {
  display: block;
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: submenu-fade-in;
}

@keyframes submenu-fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}


.sidebar .foot-nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 30;
  text-align: center;
}

.nav {
  display: block;
}

.sidebar .foot-nav .nav {
  padding: 0;
}

.sidebar .foot-nav .nav li {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #333;
  text-align: center;
}

.sidebar .foot-nav .nav li a {
  line-height: 26px;
  display: block;
  color: #000;
}

.sidebar .foot-nav .nav li a:hover {
  color: #fff;
}

.footer {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  display: block;
  z-index: 50;
  padding: 90px 0;
  /*padding-left: 300px;*/
  background-color: #1f1f1f;
}

.footer .container {
  display: flex;
  justify-content: space-around;
}

.footer .footer-widget {
  height: 230px;
  color: #fff;
  /*border: 1px solid #4f4f4f;*/
}

.footer .copyright {
  width: 100%;
  position: absolute;
  bottom: 8px;
  font-size: 11px;
  text-align: center;
  color: #4f4f4f;
}

.footer.one .footer-widget {
  width: 100%;
}

.footer.half .footer-widget {
  width: 80%;
  max-width: 460px;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  line-height: 50px;
  text-align: center;
  opacity: .5;
}

.content-wrapper {
  position: relative;
  z-index: 5;
  background-color: #fff;
}

/* breadcrumb */
#breadcrumb {
  padding: 50px 90px;
}

#breadcrumb ul li {
  display: inline-block;
}

#breadcrumb ul li:not(:first-of-type)::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  margin: 0 6px;
}

#breadcrumb ul li a {
  color: #000;
}

#breadcrumb ul li span {
  color: #000;
  font-size: 12px;
  line-height: 2.3;
  letter-spacing: 1px;
}




/*main*/
.section-box {
  position: relative;
  padding: 50px 70px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
}

.main {
  position: relative;
  /* max-width: calc(100% - 264px); */
  padding-left: 264px;
  background-color: #fff;
}

.main .top-wrapper {
  position: relative;
}

.main .top-wrapper .parallax {
  position: relative;
  z-index: 1;
  background-image: url("../images/mainvisual.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  height: 70vh;
}

.main .top-wrapper.page .parallax {
  height: 375px;
}

.main .top-wrapper .header-page-title {
  position: absolute;
  color: #fff;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0;
  line-height: 0;
  text-align: center;
  font-size: 48px;
  letter-spacing: 3px;
}

.main .top-wrapper .inner {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}

.main .top-wrapper h1 {
  margin: 0;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  color: #fff;
}

.main .top-wrapper .top-contact {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  background-color: #000;
  color: #fff;
  width: auto;
  height: 70px;
  text-align: center;
  /* padding: 11px; */
  padding: 11px 0 11px 15px;
}

.main .top-wrapper .top-contact>div:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #333;
}

.main .top-wrapper .top-contact div>.title {
  font-size: 8px;
  letter-spacing: 2px;
  margin-right: -2px;
}

.main .top-wrapper .top-contact .phone {
  position: relative;
  width: auto;
  margin-left: auto;
  margin-right: 15px;
}

.main .top-wrapper .top-contact .phone .number {
  font-size: 16px;
  letter-spacing: 8px;
  margin-right: -8px;
  line-height: 2.4;
}

.main .top-wrapper .top-contact .mail {
  position: relative;
  width: auto;
  padding: 0 15px;
  margin-left: auto;
  /*border-left: 1px solid #333;*/
}

.main .top-wrapper .top-contact .mail a {
  display: block;
  margin-top: 5px;
}

.main .page-content {
  position: relative;
  background: #fff;
  z-index: 10;
  padding: 10px;
}

.main .section {
  position: relative;
  padding: 120px 90px;
  z-index: 4;
}

.main .page .section {
  padding-bottom: 30px;
}

.main .b_post-content .section.gallery {
  padding: 0;
}

.main .section.bg-white {
  background-color: #fff;
}

.main .section.bg-gray {
  background-color: #efefef;
}

.main .section.bg-img {
  /* background-image: url("https://break.b-den.com/wp-content/uploads/2019/02/section-bg.png"); */
  /* background-size: cover;
  background-position: top center;
  background-repeat: no-repeat; */
  /* background-attachment: fixed; */
  z-index: 1;
  color: #fff;
  background-color: #fff;
  overflow-y: hidden;
  /* background-color: rgba(0,0,0,.5); */
}

.main .section.bg-img .parallax {
  background-image: url("https://break.b-den.com/wp-content/uploads/2019/02/section-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 500px;
  width: 100%;
}

.main .section.bg-img .bg-cover {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.main .section.bg-img .parallax {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 170%;
  z-index: -1;
}

.main .section.bg-img .parallax img {
  width: 100%;
}

.main .section.bg-img .container {
  position: relative;
  z-index: 2;
}

.main .section .section-title {
  margin: 0;
  text-align: center;
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 2px;
}

.main .section .section-content {
  margin-top: 60px;
  font-size: 14px;
  line-height: 2;
}

.main .section .section-content p {
  margin: 0;
}

.main .section.half {
  position: relative;
  padding: 0;
}

.main .section.half .section-box {
  right: 20px;
  margin-top: 70px;
}

.main .section.half .section-box .section-title {
  text-align: left;
}

.main .section.half .section-box .section-content {
  margin-top: 40px;
  word-wrap: break-word;
}

.main .section.half .half-right {
  margin-right: 60px;
}

.main .section.half .half-right img {
  margin-right: -60px;
}

.main .section.half .half-left .section-box {
  margin-left: 60px;
  left: 20px;
}

.main .section.one {
  position: relative;
  z-index: 5;
  background-color: #fff;
  padding: 0;
  padding-bottom: 120px;
  padding-top: 120px;
}

.main .section.one .section-box {
  bottom: 30px;
  margin: 0 70px;
}

.main .section.one .section-img {
  display: block;
  width: 100%;
  height: 400px;
  max-height: 60vh;
  margin: auto;
  background-image: url("../images/section-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main .section.one .section-title {
  text-align: left;
}

.main .section.one .section-content {
  margin-top: 40px;
}



/*/*/
.b_contents {
  padding: 0 90px;
}

.b_list-type .b_postitem {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 80px;
}

.b_contents .b_cat {
  display: inline-block;
  padding: 3px 18px;
  color: #fff;
}

.b_contents .b_thumbnail {
  /*width: 240px;*/
}

.b_contents .b_list-type .b_postitem .b_thumbnail {
  width: 240px;
  height: 150px;
}

.b_list-type .b_postinfo {
  padding-left: 50px;
  width: calc(100% - 240px);
  min-width: 300px;
}

.b_list-type .b_postinfo_data {
  font-size: 12px;
  line-height: 2.3;
}

.b_list-type .b_date {
  display: inline-block;
  margin-left: 25px;
}

.b_list-type .b_title {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.b_list-type .b_content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 2;
}

.b_contents .b_postitem:hover {
  text-decoration: none;
}

.b_contents .b_postitem .b_thumbnail {
  overflow: hidden;
  height: 15vw;
  /* height: 240px; */
  /* max-height: 300px; */
  /* max-height: 160px; */
}

.b_contents .b_postitem .b_thumbnail img {
  transition: .6s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b_contents .b_postitem:hover .b_thumbnail img {
  transform: scale(1.5);
}

.b_contents .b_postitem {
  position: relative;
  color: #000;
}


.b_rarrow {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.b_rarrow:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  opacity: 0;
  content: "\f105";
  color: #fff;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 40px;
  font-size: 30px;
}

.b_contents .b_postitem:hover .b_rarrow:before {
  opacity: 1;
}

.b_contents .b_postitem:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .6s;
}

.b_contents .b_postitem:hover::before {
  opacity: .5;
  background-color: #000;
}

.b_contents .b_postitem:hover::after {
  content: 'CLICK';
  width: 100%;
  height: 60px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.b_pagenavi {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.b_pagenavi .page {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 15px 44px;
  background-color: #000;
  color: #999;
  border: 1px solid transparent;
}

.b_pagenavi .page:hover {
  text-decoration: none;
  opacity: 1;
}

.b_pagenavi .page.link {
  color: #fff;
}

.b_pagenavi .page.link:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.b_pagenavi .page::before {
  position: absolute;
  height: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;

}

.b_pagenavi .prev:before {
  left: 10px;
  content: "\f104";
}

.b_pagenavi .next:before {
  right: 10px;
  content: "\f105";
}


.b_post-content {
  margin-bottom: 100px;
}

.b_post-content .b_post_header {
  border-left: 5px solid #000;
  padding-left: 30px;
  margin-bottom: 40px;
}

.b_post-content .b_post_info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 2.3;
}

.b_post-content .b_title {
  font-size: 20px;
  line-height: 1;
}

.b_related-posts .b_heading,
.b_category-list .b_heading {
  font-size: 20px;
  font-weight: normal;
  border-left: 5px solid #000;
  padding-left: 30px;
  line-height: 2;
}

.b_column_type .b_postlist {
  margin: 50px 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.b_column_type .b_postlist:not(:first-of-type) {
  border-top: 1px dashed #999;
  padding-top: 40px;
}

.b_column_type .b_postitem {
  width: 30%;
  margin-bottom: 30px;
}

.b_column_type .b_postlist::after {
  content: '';
  display: block;
  width: 30%;
  margin-bottom: 30px;
}

.b_column_type .b_postitem .b_eyecatch {
  position: relative;
}

.b_column_type .b_postitem .b_eyecatch .b_cat {
  position: absolute;
  top: -10px;
  left: 10px;
}

.b_column_type .b_postitem .b_eyecatch .b_date {
  font-size: 12px;
  text-align: right;
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-left: 0;
}

.b_categories {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.b_categories .b_category {
  background-color: #000;
  color: #fff;
  width: 30%;
  padding: 10px 0 !important;
  text-align: center;
  margin-top: 30px;
}

.b_categories .b_category:hover {
  text-decoration: none;
}

.b_categories::after {
  content: '';
  width: 30%;
  display: block;
}

.b_gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.b_gallery::after {
  content: '';
  width: 30%;
  display: block;
}

.b_gallery .b_element {
  position: relative;
  width: 30%;
  margin-bottom: 30px;
  height: 240px;
  overflow: hidden;
}

.b_gallery .b_element::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .6s;
}

.b_gallery .b_element:hover::before {
  opacity: .5;
  background-color: #000;
}

.b_gallery .b_element:hover::after {
  content: 'CLICK';
  width: 100%;
  height: 60px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-size: 2em;
  line-height: 60px;
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.b_gallery .b_element img {
  transition: all .6s;
  /* min-height: 100%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b_gallery .b_element:hover img {
  transform: scale(1.5);
}

/* added 4 column 200925 */
.b_gallery.four .b_element {
  width: 22%;
  height: auto;
}
/* added 4 column 200925 */


/*/*/






.page-animation-on .page-cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 90;
  background-color: #000;
  transform: translateX(0);
}

.page-animation-on.loaded .page-cover {
  animation: 2s page-cover-slide cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.loading {
  display: none;
}

.page-animation-on .loading {
  display: block;
  /* margin-top: 50vh; */
  opacity: .5;
  visibility: visible;
  width: 100px;
  height: 100px;
  text-align: center;
  vertical-align: middle;
  font-size: 48px;
  color: #fff;
  position: fixed;
  z-index: 99;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 2s;
}

.page-animation-on.loaded .loading {
  opacity: 0;
  visibility: hidden;
}

.page-animation-on .loading .loading-spin,
.page-animation-on .loading>i {
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -ms-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.page-animation-on .page-cover-white {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 88;
  background-color: #fff;
  transform: translateX(0);
}

.page-animation-on.loaded .page-cover-white {
  animation: 2s page-cover-white-slide cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 1.9s;
}

.sidebar {
  z-index: 89;
}

.page-animation-on .sidebar {
  transform: translateX(-100%);
}

.page-animation-on.loaded .sidebar {
  animation: 1.2s sidebar-slide cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: 2s;
}

#pointer {
  height: 20px;
  width: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: normal;
  transform-origin: center center;
  transition: all 0.1s ease-out;
}

#pointer.hover {
  height: 60px;
  width: 60px;
  margin-top: -30px;
  margin-left: -30px;
  mix-blend-mode: normal;
  /*   background: rgba(255, 255, 255, 0.3); */
  color: #fff;
}

#pointer.hover::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: relative;
  width: 100%;
  line-height: 60px;
  text-align: center;
}

#pointer.reduce {
  height: 0px !important;
  width: 0px !important;
  margin-top: 0px !important;
  margin-left: 0px !important;
}


.b_slider {
  position: relative;
}

.b_slider .b_mv-block {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ggmap iframe {
	max-width: 100%;
}



@keyframes page-cover-slide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes page-cover-white-slide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes sidebar-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@media all and (max-width: 1024px) {
  .lum-lightbox-inner img {
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .lg {
    display: none;
  }

  .md {
    display: block;
  }

  img {
    max-width: 100%;
  }

  .wrapper {
    /* padding-top: 70px; */
    padding-top: 0;
  }

  .main .top-wrapper h1 {
    margin-top: 60px;
  }

  .b_slider .b_mv-block {
    margin-top: 50px;
  }

  .half {
    flex-direction: column;
  }

  .half:nth-of-type(2n) {
    flex-direction: column-reverse;
  }

  .sidebar {
    width: 100%;
    height: 70px;
  }

  .sidebar .logo {
    padding: 0;
    margin: auto;
    margin-left: 0;
    width: 100px;
    /* height: 50px; */
    height: auto;
  }

  .sidebar .logo img {
    height: 40px;
    max-height: 100px;
    margin: 15px 20px;
  }

  /* 
  .sidebar .side-nav {
    display: none;
    z-index: -1;
  } */

  #nav-menu {
    position: relative;
    display: none;
  }

  #nav-menu {
    overflow-y: scroll;
  }

  .sidebar .foot-nav {
    position: relative;
    bottom: 150px;
    z-index: 91;
  }

  .sidebar #nav-menu {
/*     top: -120vh; */
  }

  .sidebar #nav-menu.is-open {
/*     top: 0; */
  }

  .sidebar #nav-menu.is-close .foot-nav {
    display: none;
  }

  .sidebar #nav-menu .side-nav {
    padding-bottom: 200px;
    background-color: #000;
    /* overflow-y: scroll; */
    opacity: 0;
    z-index: -5;
  }


  .sidebar #nav-menu.is-open .side-nav {
    display: block;
    z-index: 90;
    opacity: 1;
    animation: menuToggleShow .5s ease 0s 1 normal;
  }


  .sidebar #nav-menu.is-close .side-nav {
    opacity: 0;
    z-index: -5;
    animation: menuToggleHide .5s ease 0s 1 normal;
  }

  .sidebar .side-nav .menu ul {
    padding: 0;
    list-style-type: none;
  }

  .sidebar .menu-item-has-children {
    position: relative;
  }

  .sidebar .menu-item-has-children .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
  }

  .sidebar .menu-item-has-children::after {
    /* content: '>'; */
    position: absolute;
    top: 10px;
    right: 20px;
    color: #ccc;
  }

  .sidebar .side-nav li:hover>ul.sub-menu {
    display: none;
  }

  .sidebar .side-nav .menu-item-has-children.expanded ul.sub-menu {
    display: block;
  }

  .sidebar .side-nav ul.sub-menu {
    /* display: block; */
    position: relative;
    background-color: #ccc;
    left: 0;
    opacity: 1;
  }

  /* .sidebar .side-nav li a:hover + .sidebar .side-nav ul.sub-menu {
    display: block;
  } */
  .sidebar .side-nav li a {
    padding: 15px 25px;
    text-align: left;
    color: #fff;
  }

  .sidebar .side-nav li a.active {
    margin-left: 0;
    background-color: #000;
  }

  .sidebar .side-nav li a.active::before {
    border: 0;
  }

  .sidebar .side-nav li a:hover,
  .sidebar .side-nav li.current-menu-item>a {
    margin-left: 0;
    background-color: transparent;
    color: #666;
  }

  .sidebar .side-nav li a::before {
    content: none;
  }

  .sidebar .menu-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: #fff;
  }

  .sidebar .menu-toggle::before {
    font-family: "Font Awesome 5 Free";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }

  .sidebar .menu-toggle.close::before {
    content: '\f0c9';
  }

  .sidebar .menu-toggle.open::before {
    content: '\f00d';
  }

  .main {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .main img {
    display: block;
    margin: auto !important;
  }

  .main .top-wrapper .top-contact {
    display: none;
  }

  .main .section {
    padding: 60px 10px;
  }

  .main .section.half {
    margin: 30px 0;
    padding: 0 10px;
  }

  .main .section.half .half-left .section-box {
    margin-left: 0;
    left: 0;
  }

  .main .section.half .half-right {
    margin-right: 0;
  }

  .main .section.half .section-box {
    margin-top: 0;
    padding: 50px 10px;
    right: 0;
  }

  .main .section.bg-img .parallax img {
    height: 100%;
  }

  .section.one .container {
    padding: 0 10px;
  }

  .main .section.one .section-box {
    margin: 0;
    padding: 50px 10px;
    box-shadow: none;
  }

  .footer {
    left: 0;
    max-width: 100%;
  }

  .footer .container {
    flex-direction: column;
  }

  .footer.half .footer-widget {
    margin: 30px auto;
  }



  /* contents */
  .b_contents {
    padding: 30px 15px;
  }

  .b_contents .b_thumbnail {
    width: 100%;
    height: 50vw !important;
  }

  .b_contents .b_thumbnail img {
    width: 100%;
    height: auto;
  }

  .b_list-type .b_postinfo {
    margin-top: 15px;
    padding-left: 0;
    width: 100%;
  }

  .b_column_type .b_postlist {
    display: block;
  }

  .b_column_type .b_postitem {
    width: 100%;
    display: block;
  }

  .b_column_type .b_postlist:not(:last-of-type) {
    border-bottom: 0;
  }

  .b_categories .b_category {
    width: 48%;
  }

  .b_gallery .b_element {
    width: 48%;
  }

  /* added 4 column 200925 */
.b_gallery.four .b_element {
  width: 48%;
}
/* added 4 column 200925 */


}

@keyframes menuToggleShow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@keyframes menuToggleHide {
  0% {
    transform: translateY(0%);
    opacity: 1;
/*     z-index: 1; */
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
/*     z-index: -1; */
  }
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* ここからカスタムCSS追加 */


.b_column_type .b_postlist {
  margin-top: 0px;
}

.b_related-posts .b_heading {
  margin-bottom: 50px;
}

.b_column_type .b_postitem .b_eyecatch .b_cat {
  border: 1px #fff solid;
}

.b_pagenavi .page {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 7px 44px;
  background-color: #000;
  color: #999;
  border: 1px solid transparent;
}

.new-posts,
.new-blog,
.new-active {
  list-style: none;
  padding-left: 0px;
}

.new-posts .post-item,
.new-blog .post-item,
.new-active .post-item {
  position: relative;
}

.b_list-type .b_title {
  margin-bottom: 12px;
}

.b_list-type .b_content {
  margin-top: 0px;
}

img {
  height: auto;
}

.section .section-title {
  padding-bottom: 60px;
  position: relative;
}

.section .section-content {
  margin-top: 0 !important;
}

.b_column_type .b_postitem {
  margin-bottom: 80px;
}

.b_column_type .b_postitem .b_eyecatch .b_cat {
  font-size: 12px;
  line-height: 2.3;
}

.b_contents .b_cat {
  display: inline-block;
  padding: 0px 18px;
  background-color: #000;
  color: #fff;
}

.main .section .section-content {
  letter-spacing: 2px;
  margin-right: -2px;
  line-height: 36px;
}

.b_title {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-right: -2px;
}

#bden_blog .b_content p,
#bden_active .b_content p,
#bden_archive .b_content p {
  font-size: 14px;
}

.bden_home .main .top-wrapper .parallax {
  background-image: none;
}

/* カテゴリー表示 */
.b_column_type .b_postitem .b_eyecatch .b_cat {
  z-index: 10;
}

/* 左カラム変更内容 */

@media all and (min-width: 981px) {
  .sidebar .logo {
    padding: 50px 0;
  }
}

@media all and (max-width: 1024px) {
  .burger {
    height: 3em;
    width: 3em;
    top: 18px;
    right: 20px;
    font-size: 10px;
  }

  .sidebar .side-nav li a {
    padding: 25px !important;
  }
  .b_contents .b_list-type .b_postitem .b_thumbnail {
    width: 100%;
    height: auto;
  }

}

@media all and (max-width: 1024px) {

  /* 調整が必要 */
  .new-posts {
    margin-bottom: 0px;
  }

  .main .section.one .section-box {
    padding-bottom: 0px;
  }

  .main .section.one {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .main .section.one .section-box {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media all and (max-width: 767px) {
  .main .top-wrapper .header-page-title {
    font-size: 20px;
  }

  .b_contents .b_postitem .b_thumbnail {
    height: auto;
  }
}

.sidebar .side-nav li a {
  padding: 15px 0;
}

/* Footer変更内容 */
.footer .copyright {
  color: #777;
}

.footer .copyright {
  bottom: 15px;
}

.footer {
  padding: 0 0 45px;
}

.footer .footer-widget {
  height: auto;
}

.custom-html-widget {
  padding-top: 90px;
  padding-bottom: 70px;
}


/* Faq アコーディオン */
.b_accordion-el {
  margin-bottom: 5px;
}

.b_accordion-el button {
  background-color: #fff;
  border: 1px #eee solid;
  transition: 0.6s;
}

.b_accordion-el button:hover {
  background-color: #efefef;
  border-color: #e60012;
}

.b_accordion-el button:hover .fas {
  color: #e60012;
}

.b_accordion-btn {
  width: 100%;
  text-align: left;
  line-height: 24px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

.b_accordion-btn .fas {
  margin-right: 5px;
  transition: 0.6s;
}

.b_accordion-content p {
  line-height: 30px;
  padding: 20px 30px;
  background-color: #efefef;
}

/* table */
.b_repeatttable {
  width: 100%;
}

.b_repeatttable .b_tr {}

.b_repeatttable .b_tr .b_th {
  padding: 5px 20px;
  width: 15%;
  box-sizing: border-box;
  margin: 15px;
}

.b_repeatttable .b_tr .b_td {
  display: inline-block;
  padding: 5px 20px 5px 40px;
  border-left: 1px #ddd dotted;
  margin: 15px;
  position: relative;
}

.b_repeatttable .b_tr .b_td::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #aaa;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -18px;
}

.b_repeatttable .b_tr .b_td p {
  line-height: 2;
}

/* table sp */
@media all and (max-width: 1024px) {
  .b_repeatttable .b_tr {
    display: block;
    margin-top: 20px;
  }

  .b_repeatttable .b_tr:first-child {
    margin-top: 0;
  }

  .b_repeatttable .b_tr .b_th {
    display: block;
    padding: 5px 0px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .b_repeatttable .b_tr .b_td {
    display: block;
    padding: 0px 0px 0px 20px;
    border-left: 1px #ddd dotted;
    margin: 0 0 0 5px;
    position: relative;
  }
}

/* ここまで　*/


.dbs-item {
  margin-bottom: 30px !important;
  }
  
  .dbs-list-wrapper {
  margin-bottom: -30px;
  }
  
  a.dbs-item{
  color: #000;
  position: relative;
  transition: .6s;
  }
  
  a.dbs-item:hover{
  color: #aaa;
  text-decoration: none;
  opacity: 1;
  }
  
  a.dbs-item::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .6s;
  }
  
  a.dbs-item:hover::after{
  background-color: rgba(0,0,0,.4);
  }
  
  a.dbs-item::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: .6s;
  transform: translate(-50%,-50%);
  }
  
  a.dbs-item:hover::before{
  content: "MORE READ";
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  z-index: 10;
  }
  
  h3.dbs-item-name{
  margin-top: 20px !important;
  text-align: center;
  font-size: 18px;
  }
  
  .dbs-item-price{
  text-align: right;
  font-weight: 600;
  font-size: 16px;
  }
  
  .dbs-item-desc{
  line-height: 26px;
  text-align: justify;
  }
  
  @media all and (max-width: 767px) {
  .dbs-list-wrapper .dbs-item {
      width: 100%;
  }	
  }