@charset "UTF-8";
/* CSS Document */
/* addition */
.default-block {
  display: block;
}
.default-inline-block {
  display: inline-block;
}
.responsive-block {
  display: none;
}
.responsive-inline-block {
  display: none;
}
@media only screen and (max-width: 768px) {
  .default-block {
    display: none;
  }
  .default-inline-block {
    display: none;
  }
  .responsive-block {
    display: block;
  }
  .responsive-inline-block {
    display: inline-block;
  }
}
/* */
#global_menu > ul > li > a {
  padding-left: 20px !important;
}
/* footer-banner ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
div.footer-banner {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
div.footer-banner ul {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
div.footer-banner ul li {
  width: calc(25% - 9px);
  margin-right: 12px;
}
div.footer-banner ul li:hover {
  opacity: 0.75;
  transition: 0.25s;
}
div.footer-banner ul li:nth-child(4) {
  width: calc(25% - 9px);
  margin-right: 0;
}
div.footer-banner ul li a {
  display: block;
}
div.footer-banner ul li a img {
  display: block;
  max-width: 100%;
}
@media only screen and (max-width: 1251px) {
  div.footer-banner {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 950px) {
  div.footer-banner {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 750px) {
  div.footer-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  div.footer-banner ul li {
    width: calc(50% - 9px);
    margin-bottom: 12px;
  }
  div.footer-banner ul li:nth-child(2n) {
    margin-right: 0;
  }
  div.footer-banner ul li:nth-child(4) {
    width: calc(50% - 9px);
  }
  div.footer-banner ul li:nth-child(n+3) {
    margin-bottom: 0;
  }
}
/* author-voice ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
section.author-voice {
  background: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
}
section.author-voice div.section-heading {
  margin-bottom: 30px;
  text-align: center;
}
section.addition div.section-heading h3 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
section.addition div.section-heading div.lead {
  font-size: clamp(15px, 1.125vw, 16px);
  line-height: 1.5;
}
section.author-voice div.inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
section.author-voice div.inner div.author-voice-list ul {
  display: flex;
  flex-wrap: wrap;
}
section.author-voice div.inner div.author-voice-list ul li {
  width: 32.0%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  /* border: 1px solid #ddd; */
  background: #fff;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.05);
}
section.author-voice div.inner div.author-voice-list ul li:last-child {
  margin-right: 0;
}
section.author-voice div.inner div.author-voice-list ul li a {
  display: block;
}
section.author-voice div.inner div.author-voice-list ul li a:hover {
  opacity: 0.75;
  transition: 0.25s;
}
section.author-voice div.inner div.author-voice-list ul li div.thumbnail {
  margin-bottom: 10px;
}
section.author-voice div.inner div.author-voice-list ul li div.thumbnail img {
  max-width: 100%;
  display: block;
}
section.author-voice div.inner div.author-voice-list ul li div.description {
  line-height: 1.75;
  padding: 10px 15px;
  letter-spacing: 1px;
}
section.author-voice div.inner div.author-voice-list ul li div.description div.heading {
  font-weight: bold;
  font-size: clamp(15px, 1.125vw, 16px);
  line-height: 1.5;
  margin-bottom: 10px;
  color: #595757;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
section.author-voice div.inner div.author-voice-list ul li div.description div.name {
  font-size: clamp(14px, 1.0vw, 15px);
  line-height: 1.5;
  color: #595757;
  margin-bottom: 5px;
}
section.author-voice div.inner div.author-voice-list ul li div.description div.name span {
  font-size: clamp(12px, 1.0vw, 13px);
}
/*
section.author-voice .slick-list {
  overflow: visible;
}
section.author-voice {
  overflow: hidden;
}
*/
section.author-voice button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  z-index: 10000;
  background: none !important;
  cursor: pointer;
  transition: 0.25s all;
}
section.author-voice button.slick-prev {
  border: none;
  position: absolute;
  right: 0;
}
section.author-voice button.slick-next {
  border: none;
  position: absolute;
  left: 0;
}
section.author-voice button.slick-prev:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  content: '';
  transition: all .2s ease-in-out;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  background: none;
}
section.author-voice button.slick-next:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  content: '';
  transition: all .2s ease-in-out;
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transform: translateY(-50%) rotate(-135deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  background: none;
}
section.author-voice button:hover {
  /*
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
*/
  opacity: 0.1;
}
section.author-voice .slick-track {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1251px) {
  section.author-voice {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 950px) {
  section.author-voice {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 750px) {
  section.author-voice {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.author-voice div.inner div.author-voice-list ul li {
    /*    width: calc(50% - 9px);*/
    width: 100%;
    margin-bottom: 12px;
  }
  section.author-voice div.inner div.author-voice-list ul li:nth-child(2n) {
    /*    margin-right: 0;*/
  }
  section.author-voice div.inner div.author-voice-list ul li:nth-child(4) {
    /*    width: calc(50% - 9px);*/
    width: 100%;
  }
  section.author-voice div.inner div.author-voice-list ul li:nth-child(n+3) {
    margin-bottom: 0;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
/* 文芸書 */
#related_post .category a {
  left: 0;
}
article.item .category.cat_id_22 a {
  background: #ca858f !important;
}
/* 専門書 */
article.item .category.cat_id_23 a {
  background: #8073b2 !important;
}
/* 実用書 */
article.item .category.cat_id_24 a {
  background: #8abc1c !important;
}
/* 芸術書 */
article.item .category.cat_id_25 a {
  background: #95b8b1 !important;
}
/* 絵本 */
article.item .category.cat_id_26 a {
  background: #eccba3 !important;
}
/* コミック */
article.item .category.cat_id_27 a {
  background: ;
}
/* 書籍紹介 */
article.item .category.cat_id_10 a {
  background: #fff;
}
/* addition */
#blog_list .category a, .index_post_slider .category a {
  display: inline-block;
  font-size: 12px;
  padding: 0 20px;
  min-width: inherit;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: inherit;
  left: 5px;
  right: inherit;
  z-index: 10;
  font-weight: bold;
  width: auto;
}
/* */
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
.index_post_slider .post_list_slider_wrap {
  background: none !important;
  border: none !important;
}
.post_list_slider_wrap .slick-slide {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.index_post_slider .title_area {
  border: none !important;
}
.index_post_slider .post_list_slider_wrap:before, .index_post_slider .post_list_slider_wrap:after {
  background: none !important;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
#global_menu > ul > li > a {
  height: 60px;
  line-height: 60px;
  padding-top: 30px;
  display: block;
  color: #000 !important;
}
header, body.home #header {
  background: #fff !important;
  /*  position: relative;*/
  margin-bottom: 0 !important;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  padding-top: 0 !important;
  transition: 0.25s all;
}
header div.header-top {
  position: relative;
  z-index: 10; /* */
  clear: both;
  overflow: hidden;
  padding-right: 37px;
}
header div.header-top {
  color: #757575;
}
header.active div.header-top {
  color: #000;
}
@media only screen and (max-width: 750px) {
  header div.header-top {
    display: none;
  }
  header {
    animation: none;
    transform: none;
    transition: unset;
  }
}
header div.header-top div.tel {
  float: right;
  vertical-align: middle;
  padding-top: 13px;
}
header div.header-top div.tel span.material-symbols-outlined {
  font-size: 18px;
  position: relative;
  top: 1px;
  margin-right: 0;
}
header div.header-top div.tel span.display-label {
  font-size: 12px;
  margin-right: 3px;
}
header div.header-top div.tel span.display-number {
  font-size: 24px;
  font-weight: bold;
}
header div.header-top div.tel span.display-number a {
  color: #757575;
}
header.active div.header-top div.tel span.display-number a {
  color: #000;
}
header div.header-top div.sns-buttons {
  float: right;
}
header div.header-top ul {
  padding-top: 13px;
  padding-bottom: 0;
  /* padding-right: 15px; */
}
header.active div.header-top ul {
  padding-top: 13px;
}
header div.header-top ul li {
  display: inline-block;
  margin-left: 15px;
}
header div.header-top ul li a {
  /*  border: 1px solid #757575;*/
  color: #757575;
  border-radius: 1000px;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
header.active div.header-top ul li a {
  /*  border: 1px solid #000;*/
  color: #000;
}
header div.header-top ul li a:hover {
  opacity: 0.75;
  transition: 0.25s all;
}
header div.header-top ul li img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  /*  opacity: 0.5;*/
}
header div.header-top ul li:nth-child(1) img {
  width: 145%;
}
header div.header-top ul li:nth-child(2) img {
  width: 145%;
}
header div.header-top ul li:nth-child(4) img {
  width: 85%;
}
header.active div.header-top ul li img {
  opacity: 1;
}
header.active div.header-top {
  /* padding-top: 9px; */
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
div#header_slider {
  /*
  background-image: url(http://imaibp.co.jp/op/wp-content/uploads/2025/03/top-1-bg.png);
  background-repeat: repeat-x;
  background-position: center bottom;
*/
  /*
  background-size: 2px 795px;
  max-height: 795px;
*/
  /*  height: auto;*/
}
div#header_slider, div.slick-list, div.slick-track, div.slick-list div.image {
  /* max-height: 700px !important;*/
}
#header_slider .item {}
div#header_slider div.slick-list div.image {
  width: 100%;
  background-position: center center;
  /* background: none !important; */
  /*
  max-width: 1251px;
  max-height: 795px;
*/
  /*
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
*/
  background-size: auto 100% !important;
}
@media only screen and (max-width: 750px) {
  div#header_slider div.slick-list div.image {
    background-position: center center !important;
    background-size: auto 80% !important;
  }
}
@media only screen and (max-width: 1251px) {
  #header a {
    color: #757575;
  }
  header div.header-top {
    padding-top: 8px;
    padding-right: 60px;
  }
  body #header_logo .pc_logo_image.type1 {
    display: block;
  }
}
@media only screen and (max-width: 1050px) {
  body #header_logo .pc_logo_image.type1 {
    display: none;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ div#page_header --*/
div#page_header {
  display: none !important;
}
/* order-made ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
section.order-made {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px; /* */
}
section.order-made div.section-heading {
  margin-bottom: 30px;
  text-align: center;
}
section.addition div.section-heading h3 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.25;
}
section.order-made.addition div.section-heading div.lead {
  font-size: clamp(15px, 1.125vw, 16px);
  line-height: 1.5;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #426c8c;
}
section.order-made div.inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
section.order-made div.inner div.order-made-list ul {
  display: flex;
  flex-wrap: wrap;
}
section.order-made div.inner div.order-made-list ul li {
  width: 32.0%;
  margin-right: 2%;
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  /* border: 1px solid #ddd; */
  background: #fff;
  box-shadow: 0 10px 10px 5px rgba(0, 0, 0, 0.05);
}
section.order-made div.inner div.order-made-list ul li:last-child {
  margin-right: 0;
}
section.order-made div.inner div.order-made-list ul li a {
  display: block;
}
section.order-made div.inner div.order-made-list ul li a:hover {
  opacity: 0.75;
  transition: 0.25s;
}
section.order-made div.inner div.order-made-list ul li div.thumbnail {
  margin-bottom: 10px;
}
section.order-made div.inner div.order-made-list ul li div.thumbnail img {
  max-width: 150%;
  margin-left: -25%;
  display: block;
}
section.order-made div.inner div.order-made-list ul li div.description {
  line-height: 1.75;
  padding: 10px 20px;
  letter-spacing: 1px;
}
section.order-made div.inner div.order-made-list ul li div.description div.heading {
  font-weight: normal;
  font-size: clamp(15px, 1.125vw, 16px);
  line-height: 1.5;
  margin-bottom: 10px;
  color: #595757;
  /*  border-bottom: 1px solid #ddd;*/
  padding-bottom: 10px;
}
section.order-made div.inner div.order-made-list ul li div.description div.name {
  font-size: clamp(14px, 1.0vw, 15px);
  line-height: 1.5;
  color: #595757;
  margin-bottom: 5px;
}
section.order-made div.inner div.order-made-list ul li div.description div.name span {
  font-size: clamp(12px, 1.0vw, 13px);
}
@media only screen and (max-width: 1251px) {
  section.order-made {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 950px) {
  section.order-made {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 750px) {
  section.order-made {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.order-made div.inner div.order-made-list ul li {
    /*    width: calc(50% - 9px);*/
    width: 100%;
    margin-bottom: 12px;
  }
  section.order-made div.inner div.order-made-list ul li:nth-child(2n) {
    margin-right: 0;
  }
  section.order-made div.inner div.order-made-list ul li:nth-child(4) {
    /*    width: calc(50% - 9px);*/
    width: 100%;
  }
  section.order-made div.inner div.order-made-list ul li:nth-child(n+3) {
    margin-bottom: 0;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
@media only screen and (max-width: 750px) {
  div.fixed-menu {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    background: #fff;
    box-shadow: 0 -10px 20px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
  }
  div.fixed-menu + #container {
    display: none;
  }
  div.fixed-menu ul {
    display: flex;
    flex-wrap: nowrap;
  }
  div.fixed-menu ul li {
    width: 25%;
    width: 33.33%;
  }
  div.fixed-menu ul li a {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  div.fixed-menu ul li a span {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #0d6efd;
  }
  div.fixed-menu ul li:nth-child a span {
    color: #0d6efd;
  }
}
@media only screen and (min-width: 751px) {
  div.fixed-menu {
    display: none;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
div.media-list ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
  border-top: 1px solid #ccc;
}
div.media-list ul li.article {
  border-bottom: 1px solid #ccc;
  line-height: 2.4;
  display: flex;
  padding-top: 20px;
  padding-bottom: 40px;
  line-height: 1.5;
}
div.media-list ul li.article div.thumbnail {
  width: calc(20% - 20px);
  /*  border: 2px solid #eee;*/
  margin-right: 20px;
}
div.media-list ul li.article div.thumbnail img {
  display: block;
  border: 2px solid #eee;
}
div.media-list ul li.article div.information-wrapper {
  width: 100%;
}
div.media-list ul li.article div.heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
div.media-list ul li.article div.media-type {
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
  background: #eee;
  color: #555;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 1000px;
}
div.media-list ul li.article div.description {
  font-size: 15px;
  margin-bottom: 10px;
}
div.media-list ul li.article div.update {
  text-align: right;
  font-size: 13px;
  color: #aaa;
}
div.media-list ul li.article div.link a {
  font-size: 13px;
  color: #000;
  border: 1px solid #ccc;
  padding: 10px 20px;
  padding-right: 40px;
  border-radius: 1000px;
  display: inline-block;
  position: relative;
}
div.media-list ul li.article div.link a:hover {
  background: #eee;
}
div.media-list ul li.article div.link a:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 5px;
  height: 5px;
  content: '';
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #426c8c;
  border-right: 2px solid #426c8c;
  background: none;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --*/
div#footer_bottom div.sns-buttons {
  text-align: center;
}
div#footer_bottom div.sns-buttons ul {
  padding-top: 13px;
  padding-bottom: 0;
  /* padding-right: 15px; */
}
div#footer_bottom div.sns-buttons ul li {
  display: inline-block;
  margin-left: 15px;
}
div#footer_bottom div.sns-buttons ul li a {
  /*  border: 1px solid #757575;*/
  color: #757575;
  border-radius: 1000px;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}
div#footer_bottom div.sns-buttons ul li a {
  /*  border: 1px solid #000;*/
  color: #000;
}
div#footer_bottom div.sns-buttons ul li a:hover {
  opacity: 0.75;
  transition: 0.25s all;
}
div#footer_bottom div.sns-buttons ul li img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  /*  opacity: 0.5;*/
}
div#footer_bottom div.sns-buttons ul li:nth-child(1) img {
  width: 145%;
}
div#footer_bottom div.sns-buttons ul li:nth-child(2) img {
  width: 145%;
}
div#footer_bottom div.sns-buttons ul li:nth-child(4) img {
  width: 85%;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Contact Form --*/
div.wpcf7 {
  background: #fff !important;
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #3c3c3c;
  border: none;
  letter-spacing: 0.09em;
}
div.wpcf7 .em-minus {
  width: calc(100% - 2em);
}
div.wpcf7 .em-minus-left {
  width: calc(100% - 2em);
  margin-left: 0.5em;
}
div.wpcf7 p {
  line-height: 2;
}
div.wpcf7 div.heading p {
  border-bottom: 2px solid #3c3c3c;
  font-size: 18px !important;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #3c3c3c;
}
div.wpcf7 div.heading.first p {
  margin-top: 0;
}
div.wpcf7 span.subheading {
  display: block;
  padding-left: 12px;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}
div.wpcf7 span.subheading:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #426c8c;
  left: 0;
  width: 2px;
  height: 70%;
}
div.wpcf7 .wpcf7-not-valid-tip {
  font-size: 14px;
  display: block !important;
  background: #fff0f1;
  border-radius: 2px;
  margin-top: 5px;
  font-weight: bold;
  color: #e60012;
  padding: 5px 10px 5px 35px;
  position: relative;
}
div.wpcf7 .wpcf7-not-valid-tip:before {
  background: url(http://www.imaibp.co.jp/op/wp-content/uploads/2025/03/alert-icon.png);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
div.wpcf7 .wpcf7-form-control-wrap {}
div.wpcf7 input, div.wpcf7 textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  line-height: 1.2;
  border-radius: 2px;
  min-height: 48px;
}
div.wpcf7 textarea {
  display: block;
}
div.wpcf7 select {
  width: 100%;
  max-width: 100%;
  padding: 8px;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 2px;
  min-height: 48px;
  box-sizing: border-box;
}
div.wpcf7 input[type=radio], div.wpcf7 input[type=checkbox] {
  width: auto;
  max-width: 100%;
  padding: 8px;
  line-height: 1.2;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  min-height: inherit;
}
div.wpcf7 span.wpcf7-radio > span {
  display: block;
}
div.wpcf7 input:focus, div.wpcf7 textarea:focus {
  border: 1px solid #0072EF;
  outline: none;
}
div.wpcf7 span.required-label {
  font-weight: bold;
  font-size: 13px;
  color: #dc3232;
}
div.wpcf7 a#zip-button {
  font-size: 12px;
  color: #333;
  padding: 0.25em 1em;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 1000px;
  transition: 0.25s;
}
div.wpcf7 a#zip-button:hover {
  opacity: 0.7;
}
div.wpcf7 .wpcf7-response-output:empty {
  display: none !important;
}
div.wpcf7 .wpcf7-response-output {
  display: block !important;
  background: #fff0f1;
  border-radius: 2px;
  margin-top: 5px;
  font-weight: bold;
  color: #e60012;
  padding: 10px 10px 10px 35px;
  position: relative;
}
div.wpcf7 .wpcf7-response-output:before {
  background: url(http://www.imaibp.co.jp/op/wp-content/uploads/2025/03/alert-icon.png);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
div.wpcf7 div.step-arrow {
  width: 100%;
  margin-top: 20px;
}
div.wpcf7 div.step-arrow ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  list-style: none;
  width: 100%;
  border: 1px solid #ccc;
  overflow: hidden;
}
div.wpcf7 div.step-arrow ul li {
  width: 33.33%;
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-weight: bold;
  position: relative;
}
div.wpcf7 div.step-arrow ul li:nth-child(2) {
  background: #f0f0f0;
}
div.wpcf7 div.step-arrow ul li:nth-child(2):after {
  position: absolute;
  right: -13px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 3em 1em;
  border-left-color: #f0f0f0;
  border-right: 0;
  z-index: 10;
}
div.wpcf7 div.step-arrow ul li:nth-child(2):before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 3em 1em;
  border-left-color: #fff;
  border-right: 0;
}
div.wpcf7 div.step-arrow ul li.active:after {
  position: absolute;
  right: -13px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 3em 1em;
  border-left-color: #0693e3;
  border-right: 0;
  z-index: 10;
}
div.wpcf7 div.step-arrow ul li.active {
  background: #0693e3;
  color: #fff;
}
div.wpcf7 div.step-arrow ul li:nth-child(2).active:before, div.wpcf7 div.step-arrow ul li:nth-child(3).active:before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 3em 1em;
  border-left-color: #fff;
  border-right: 0;
}
div.wpcf7 div.step-arrow ul li div {
  position: relative;
  z-index: 10;
}
div.wpcf7 div.step-arrow ul li:nth-child(2) div, div.wpcf7 div.step-arrow ul li:nth-child(3) div {
  padding-left: 1em;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
div#dp-footer-bar {
  display: none;
}
body.blog {
  /*  background: #e5e5e5;*/
}
#blog_list {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  margin-left: 20px;
}
#blog_list .item {
  /*
  padding-left: 10px;
  padding-right: 10px;
*/
  box-sizing: border-box;
  margin-bottom: 20px;
  height: auto !important;
  background: #fff;
  width: calc((100% - 40px) / 3);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  #blog_list .item {
    width: calc((100% - 40px) / 2);
  }
}
#blog_list .item > a {
  background: #fff;
  /*    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.05);*/
}
#blog_list .category a {
  left: 0;
}
#blog_list .title_area {
  border: none !important;
  height: auto !important;
  padding: 8px 10px;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ contact-links --*/
header div.header-top div.contact-links {
  padding-top: 10px;
  margin-right: 10px;
  float: right;
}
header div.header-top div.contact-links ul {
  text-align: right;
  padding-top: 0;
}
header div.header-top div.contact-links ul li:nth-child(1) {
  margin-right: 5px;
}
header div.header-top div.contact-links ul li {
  display: inline-block;
  margin: 0;
}
header div.header-top div.contact-links ul li a {
  width: auto;
  height: auto;
  display: block;
  border-radius: 1000rem;
  padding: 8px 15px;
  font-size: 13px;
  box-sizing: border-box;
  background: #0d6efd;
  color: #fff !important;
  opacity: 1;
  transition: 0;
  font-weight: bold;
  position: relative;
  padding-left: 25px;
}
header div.header-top div.contact-links ul li a:after {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  width: 5px;
  height: 5px;
  content: '';
  transition: all .2s ease-in-out;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  background: none;
}
header div.header-top div.contact-links ul li:nth-child(2) a {
  background: #fff;
  border: 1px solid #ddd;
  color: #333 !important;
}
header div.header-top div.contact-links ul li:nth-child(2) a:after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
div#news_list {
  display: flex;
  flex-wrap: wrap;
}
#news_list .item {
  width: 100% !important;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
#news_list .image_wrap {
  width: 20%;
}
#news_list .image {
  background-size: contain !important;
}
#news_list .title_area {
  width: 80%;
}
body.archive.post-type-archive #main_col {
  width: 100% !important;
  float: none;
}
#news_list .title_area {
  border: none !important;
}
#news_list .item:last-of-type .title_area {
  border: none !important;
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- twitter */
div.x-post-display {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
div.x-post-display > div {
  width: calc((100% - 40px) / 3) !important;
  margin-right: 20px;
}
div.x-post-display > div:nth-child(3) {
  margin-right: 0;
}
@media only screen and (max-width: 750px) {
  div.x-post-display > div {
    width: calc(100% - 20px) !important;
    margin-right: auto;
    margin-left: auto;
  }
  div.x-post-display > div:nth-child(3) {
    margin-right: auto;
  }
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
.flex {
  display: flex;
  flex-wrap: nowrap;
}
.flex > div {
  column-gap: 40px;
}
@media only screen and (max-width: 750px) {
  .flex {
    display: block;
    flex-wrap: ;
  }
  .flex > div {
    column-gap: 0 40px;
  }
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 追加 */
/* */
div.grecaptcha-badge {
  display: none;
}
/* */
@media screen and (max-width: 1251px) {
  #header_logo .mobile_logo_image {
    width: 180px !important;
    height: auto !important;
  }
}
@media screen and (max-width: 750px) {
  #main_contents {
    padding: 40px 20px 40px;
  }
  #header_logo .mobile_logo_image {
    display: none !important;
    width: 160px !important;
    height: auto !important;
  }
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 制作実績 調整 追加 */
#container {
  height: auto;
}
/* ロゴ - バグ - 調整 */
#header.active #header_logo .pc_logo_image.type2, #header #header_logo .pc_logo_image.type2 {
  display: block !important;
  max-width: 160px;
  /* width: 100% !important; */
  height: auto !important;
}
/* ロゴ - バグ - 調整 */
#header_logo .pc_logo_image.type1 {
  display: none !important;
}
@media screen and (max-width: 750px) {
  /* body.home #header_logo .pc_logo_image.type2 {
    display: none !important;
  } */
  #header_logo .mobile_logo_image {
    display: none !important;
  }
}
@media screen and (max-width: 1251px) {
  #header_logo .mobile_logo_image {
    display: none !important;
  }
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- key-visual をカスタマイズ */
div.custom-slide {
  padding-top: 90px;
  transition: 0.25s all;
}
@media screen and (max-width: 1251px) {
  div.custom-slide {
    padding-top: 60px; /* header */
    box-sizing: border-box;
  }
}
div.custom-slide img {
  display: block;
  width: 100%;
  max-width: 1251px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.25s all;
}
/* スマホ用調整 */
@media screen and (max-width: 480px) {
  div.custom-slide img {
    width: 280%;
    margin-left: -90%;
    margin-top: -80px;
  }
}
/* ログイン時の調整 */
.pc body.admin-bar.header_fix {
  padding-top: 0 !important;
}