/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/


/*****************************************/
/* over　write    */
/*****************************************/
h4.right-contets_section-title {
  margin-bottom: 8px;
}

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
<style>
  /* ページング*/
  .pagination {
    margin-top: 40px;
  }

  .pagination .pagination__link--active {
    font-weight: bold;
    border: 0;
  }

  .pagination__link--number {
      border: 1px solid transparent;
      border-radius: 4px;
      padding: 4px 10px;
  }

  .pagination__link--active,
  .pagination__link--number:focus,
  .pagination__link--number:hover {
      border-color: #cccccc;
  }

  .pagination__link-icon {
    display: flex;
    align-items: center;
  }

  .pagination__link--disabled,
  .pagination-link--disabled {
    display: none!important;
  }

  /* パンくず */
  .breadcrumb {
    width: 100%;
    font-size: 14px;
    list-style-type: none;
    margin: 56px 0 0;
    padding: 0;
  }

  .breadcrumb li {
    padding-left: 15px;
    position: relative;
    display: inline-block;
  }

  .breadcrumb li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    transform: rotate(45deg) translateY(-50%);
  }

  .breadcrumb li.home {
    padding-left: 0;
  }

  .breadcrumb li.home::before {
    content: none;
  }

  .breadcrumb a {
    color: #212121;
    text-decoration: none;
  }

  .breadcrumb a:hover {
    color: #212121;
    text-decoration: underline;
  }

  /* 検索枠フォーム */
  form {
    background: none;
    padding: 0;
  }
  
  form input[type=email],
  form input[type=file],
  form input[type=number],
  form input[type=password],
  form input[type=tel],
  form input[type=text],
  form select,
  form textarea {
    border-radius: 4px;
    border: 0;
    padding: 16px;
  }

  input::placeholder {
    color: #666666;
  }

  input:focus-visible {
    outline: 1px solid #DB8449;
  }

  .hs-search-field__input {
    background-image: url("https://8221972.fs1.hubspotusercontent-na1.net/hubfs/8221972/icon-search.svg");
    background-color: #F5F5F5!important;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 44px!important;
  }

  /* 検索枠（候補リスト） */
  .hs-search-field--open .hs-search-field__suggestions {
    border: 1px solid #cccccc;
    margin-top: 4px;
    padding: 16px;
  }

  .hs-search-field__suggestions li + li {
    margin-top: 16px;
  }

  .hs-search-field__suggestions a {
    line-height: 1.6;
    text-decoration: none;
  }

  .hs-search-field__suggestions a:focus,
  .hs-search-field__suggestions a:hover {
    text-decoration: underline;
    background-color: transparent;
  }

  /* 検索結果 */
  .systems-page--search-results {
    padding: 56px 0 80px!important;
  }

  .search_results_title {
    font-size: 16px;
    margin-top: 16px;
  }
  
  .hs-search-results__featured-image {
    width: 100px;
  }

  .hs-search-results__featured-image img {
    width: 100px;
    height: auto!important;
    margin-right: 0!important;
  }

  .hs-search-results__content-body {
    margin-left: 16px;
  }

  .hs-search-results__listing .blog-index__post-title {
    margin-bottom: 4px;
  }

  .hs-search-results__description {
    font-size: 14px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .hs-search-results__description .hs-search-highlight {
    color: #DB8449;
    background: #FCF5F0;
  }

  .custom_search-results .hs-search-results__listing li {
    margin: 0 0 8px -20px;
  }

  .hs-search-results__link {
    display: flex;
  }

  .hs-search-results__link h2 {
    color: #212121!important;
    display: inline-block;
    border-bottom: 1px dotted transparent;
  }

  .hs-search-results__link:hover h2 {
    border-color: #212121;
    color: #212121!important;
  }

  .hs-search-results__link:hover {
    text-decoration: none!important;
  }

  .hs-search__no-results p {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hs-search__no-results p + p {
    margin-top: 16px;
  }

  .hs-search__no-results ul {
    font-size: 16px;
  }

  /* お問い合わせボタン */
  .hs-button {
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF!important;
    background-color: #DB8449;
    padding: 16px 32px;
    border-radius: 100px;
    display: inline-block;
    transition: all .15s linear;
    line-height: 1!important;
  }

  .hs-button:hover {
    background-color: #F08F4F;
    text-decoration: none;
  }

  /* ヘッダー */
  .header__row-1 {
    display: none;
  }

  .menu__item--depth-1 {
    padding: 0!important;
  }

  .menu__link {
    font-size: 14px!important;
    display: inline-block;
    padding: 16px;
    position: relative;
  }

  .menu__link::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #DB8449;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .menu__link:hover::after {
    visibility: visible;
    bottom: -8px;
    opacity: 1;
  }

  .menu__link--active-link,
  .menu__link--active-link:active {
    color: #DB8449;
  }

  .menu__link--active-link::after {
    position: absolute!important;
    left: 0!important;
    content: ''!important;
    width: 100%!important;
    height: 4px!important;
    background: #DB8449!important;
    bottom: -8px!important;
    opacity: 1!important;
    visibility: visible!important;
  }

  /* 記事一覧レイアウト（2カラム） */
  .dnd_area-row-0-max-width-section-centering > .row-fluid {
    display: flex;
  }

  .row-fluid .span4 {
    width: 40%;
    margin-left: 40px;
  }

  .row-fluid .span8 {
    width: 100%;
  }

  .blog-index__post {
    padding: 16px;
    box-shadow: 0 16px 16px rgba(0,0,0,.08);
    border-radius: 8px;
    transition: .3s;
  }

  /* 記事リスト */
  .blog-index__post {
    margin-top: 24px;
  }

  .blog-index {
    justify-content: space-between;
  }

  .blog-index__post-image {
    margin-bottom: 0;
    vertical-align: bottom;
    border-radius: 4px;
  }

  .blog-index__post-title {
    font-size: 20px;
    line-height: 1.6;
  }

  .blog-index__post-image-wrapper {
    flex: 1 1 32%;
  }

  .blog-index__post-content {
    padding-left: 16px;
  }

  .blog-index__post-title-link,
  .blog-index__post-title-link:hover {
    text-decoration: none;
  }

  .blog-index__post-author,
  .blog-index__post-timestamp {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
  }

  .blog-index__post-author + .blog-index__post-timestamp {
    margin-top: 4px;
  }
  
  /* 記事本文 */
  .blog-post {
    margin: 0 auto;
    padding: 56px 0 40px 0;
    max-width: 800px;
  }

  .blog-post__author{
    display: flex;
    align-items: center;
    margin-right: 16px;
  }

  .blog-post__author img{
    display: none;
  }

  .blog-post__author a {
    text-decoration: none;
  }
  .blog-post__author a:hover {
    text-decoration: underline;
  }

  .blog-post__meta {
    margin-bottom: 16px;
  }

  .blog-post__meta a:focus,
  .blog-post__meta a:hover{
    text-decoration: underline;
  }

  .blog-post__featured__image {
    margin-bottom: 40px;
  }

  .blog-post__body {
    font-size: 18px;
    line-height: 1.8;
  }

  .blog-post__body blockquote {
    padding: 16px;
    box-sizing: border-box;
    background: #efefef;
    border-left: 4px solid #dddddd;
  }

  .blog-post__body blockquote::before{
    content: "";
    display: inline-block;
    width: 32px;
    height: 24px;
    background: url(https://8221972.fs1.hubspotusercontent-na1.net/hubfs/8221972/icon_quote-1.svg) no-repeat;
  }

  .blog-post__body h2 {
    font-size: 24px;
    line-height: 1.4;
    border-left: 8px solid #DB8449;
    padding-left: 16px;
  }

  .blog-post__body h3 {
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid #DB8449;
    line-height: 1.4;
  }

  .blog-post__body h4 {
    font-size: 20px;
  }

  .blog-post__body h2,
  .blog-post__body h3,
  .blog-post__body h4 {
    margin-bottom: 12px;
  }

  .blog-post__body blockquote p {
    line-height: 1.7;
  }

  .blog-post__body blockquote cite {
    display: block;
    text-align: right;
    color: #F5F5F5;
    font-size: 0.9em;
  }

  .blog-post__body ul,
  .blog-post__body ol {
    padding: 0;
    margin: 0 0 24px;
    counter-reset: num;
    list-style-type: none;
    list-style: none;
  }

  .blog-post__body ol li {
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
    padding: 8px 0 8px 30px;
  }

  .blog-post__body ol li::before {
    position: absolute;
    counter-increment: num;
    content: counter(num);
    display: inline-block;
    background: #DB8449;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    left: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    top: 10px;
  }

  .blog-post__body ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    line-height: 1.6;
  }

  .blog-post__body ul li::before {
    color: #DB8449;
    content: '\02022';
    font-size: 40px;
    position: absolute;
    top: -10px;
    left: 2px;
  }

  .blog-post__body ul + h2,
  .blog-post__body ol + h2,
  .blog-post__body ul + h3,
  .blog-post__body ol + h3 {
    margin-top: 40px;
  }

  .blog-post__body h2 + h3 {
    margin-top: 40px;
  }

  .blog-post__body p + h2 {
    margin-top: 48px;
  }

  .blog-post__body p + h3 {
    margin-top: 40px;
  }

  .blog-post__body p + p,
  .blog-post__body p + img,
  .blog-post__body p + blockquote {
    margin-top: 24px;
  }

  .blog-post__body p + ul,
  .blog-post__body p + ol {
    margin-top: -16px;
  }

  .blog-post__body blockquote + p {
    margin-top: 56px;
  }

  /* 記事内の入力フォーム */
  .widget-type-form {
    background-color: #F8FAFC;
    padding: 20px;
    margin-top: 40px;
  }

  .widget-type-form .form-title {
    background-color: transparent;
    font-size: 16px;
    border-bottom: 0;
  }

  .widget-type-form .hs-field-desc {
    font-size: 14px;
  }
  
  .widget-type-form .hs-form-booleancheckbox-display span {
    font-weight: normal;
  }

  .widget-type-form .hs-error-msg {
    color: #ef6b51;
    font-weight: 400;
    font-size: 14px;
  }

  .widget-type-form .hs-form-required {
    font-size: 0;
  }

  .widget-type-form .hs-form-required::after {
    content: "必須";
    font-size: 12px;
    font-weight: normal;
    font-family: Yu Gothic;
    color: rgb(255, 255, 255);
    margin-left: 4px;
    background-color: rgb(242, 84, 125);
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1.4;
  }

  .widget-type-form label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 0.35rem;
    padding-top: 0;
    text-align: left;
    width: auto;
  }

  .widget-type-form label .hs-input {
    width: 20px!important;
    height: 20px!important;
  }

  .widget-type-form .hs-input[type=checkbox],
  .widget-type-form .hs-input[type=radio] {
      border: none;
      cursor: pointer;
      height: auto;
      line-height: normal;
      margin-right: 0.35rem;
      padding: 0;
      width: auto;
  }

  .widget-type-form .inputs-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .widget-type-form .inputs-list > li {
    display: block;
    margin: 8px 0;
  }

  .widget-type-form li {
    padding: 0!important;
  }

  .widget-type-form li::before {
    content: none!important;
  }

  .widget-type-form input {
    width: 100%!important;
  }
  
  .widget-type-form input[type=email],
  .widget-type-form input[type=file],
  .widget-type-form input[type=number], 
  .widget-type-form input[type=password],
  .widget-type-form input[type=tel],
  .widget-type-form input[type=text],
  .widget-type-form select,
  .widget-type-form textarea {
    background-color: #fff;
    border: 1px solid #dadada;
    color: #000;
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
  }

  .widget-type-form input[type=submit] {
    font-size: 16px;
    border-radius: 100px;
    background: #DB8449;
    border: 0;
    min-width: 264px;
    padding: 16px 32px;
  }

  .widget-type-form input[type=submit]:focus,
  .widget-type-form input[type=submit]:hover {
    background: #F08F4F;
    transform: none;
    border: 0;
    transition: all 0.15s linear;
    outline: none;
  }

  /* タグ　*/

  .blog-tag-filter__menu-item {
    display: block !important;
  }
  .blog-post__tags {
    margin-top: 0px;
    font-size: 14px;
  }

  .blog-post__tags .blog-post__tag-link + .blog-post__tag-link {
    margin-left: 4px !important;
  }

  /* おすすめ */
  .blog-related-posts {
    padding: 64px 0;
    background-color: #F8FAFC;
  }

  .blog-related-posts__list {
    display: block;
    width: 100%;
  }

  .blog-related-posts__post {
    width: calc((100% - 48px) / 3);
    padding: 16px;
    box-shadow: 0 16px 16px rgba(0,0,0,.08);
    border-radius: 8px;
    transition: .3s;
    background-color: #FFFFFF;
  }
  
  .blog-related-posts h2 {
    font-size: 24px;
    text-align: center;
  }

  .blog-related-posts__content .blog-related-posts__title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .blog-related-posts__image {
    height: auto;
    width: 100%;
  }

  /* SNSシェア */
  .social-sharing {
    display: flex;
    align-items: center;
    margin-top: 24px;
  }

  .social-sharing__link {
    border-radius: 50%;
    background-color: #666666;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin: 0 8px;
    transition: 0.3s;
  }

  .social-sharing__link:hover {
    background-color: #999999;
  }

  .social-sharing__share-text {
    font-size: 14px;
  }

  .footer {
      margin-top: 56px!important;
  }

  /* フッター */
  .footer p + p {
    margin-top: -24px!important;
  }

  /* エラーページ */
  .error-page {
    margin: 0 auto;
    padding: 80px 0;
    width: 1000px;
    text-align: center;
  }

  .error-page h1 {
    margin-bottom: 16px;
  }

  .error-page p {
    font-size: 16px;
    line-height: 1.6;
  }

  .error-page .text-link {
    margin-top: 40px;
    transition: 0.3s;
  }

  @media (max-width: 767px) {
    .dnd_area-row-0-max-width-section-centering > .row-fluid {
      flex-direction: column;
    }
    
    .dnd_area-row-0-padding {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }

    .header__container {
      padding: 0 4px 0 16px!important;
    }
    
    .header__logo {
      max-width: 120px;
    }
    
    .header__logo--main {
      padding-bottom: 12px;
      padding-top: 12px;
    }

    .header__navigation--toggle {
      height: 16px;
      width: 16px;
      margin: 0 16px;
    }
    
    .header__navigation--toggle.open {
      display: none!important;
    }

    .header__close--toggle {
      width: 16px;
      height: 16px;
      margin: 2px 16px 0;
    }
    
    .menu__item--depth-1 {
      border: 0;
    }

    .menu__item--depth-1 {
      border: 0!important;
    }
    
    .menu__link {
      display: block;
    }
    
    .menu__link:hover::after {
      visibility: hidden;
    }
    
    .menu__link--active-link::after {
      opacity: 0!important;
    }

    .breadcrumb {
      margin-top: 24px;
      overflow-x: scroll;
      word-break: keep-all;
      white-space: nowrap;
    }

    /*2カラムにレイアウトするコード↓*/
    .twocols{
      display: grid;
      grid-template-columns: 2fr 1fr;
}
    
    
    .blog-post__featured__image {
      margin-bottom: 16px;
    }
    
    .blog-post {
      padding-top: 24px;
      padding-bottom: 24px;
    }
    
    .blog-post h1 {
      font-size: 24px;
    }
    
    .blog-post h2 {
      font-size: 22px;
    }
    
    .blog-post h3 {
      font-size: 18px;
    }
    
    .blog-post h4 {
      font-size: 18px;
    }
    
    .blog-post p,
    .blog-post blockquote,
    .blog-post ul,
    .blog-post ol {
      font-size: 16px;
      margin-bottom: 16px;
    }
    
    .blog-post__body ul li {
      padding: 4px 0 4px 28px;
    }
    
    .blog-post__body ul li::before {
      font-size: 32px;
    }
    
    .blog-post__body ol li {
      padding: 4px 0 4px 32px;
    }
    
    .blog-post__body ol li::before {
      top: 6px;
    }
    
    .blog-post__body p + blockquote {
      margin-top: 24px;
    }
    
    .blog-post__body blockquote + p {
      margin-top: 32px;
    }
    
    .blog-post__body p + p,
    .blog-post__body p + img {
      margin-top: 16px;
    }
    
    .content-wrapper {
      padding: 0 16px;
    }

    .hs-search-field {
      margin-top: 0;
    }
    
    .blog-index {
      margin-bottom: 80px;
    }
    
    .blog-index__post-content {
      padding: 12px 0 0 0;
    }
    
    .blog-index__post-title {
      font-size: 16px;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    
    .footer-row-0-padding {
      padding: 40px 16px!important;
    }
    
    .footer-row-0-padding p {
      text-align: left!important;
    }
 
    .footer-row-0-padding p br {
      display: none;
    }
 
    .blog-header__inner,
    .blog-post,
    .blog-related-posts {
      padding: 24px 0!important;
    }

    .blog-related-posts__list {
      width: 100%;
      flex-direction: column;
    }
    
    .blog-related-posts h2 {
      font-size: 18px;
    }

    .blog-related-posts__content .blog-related-posts__title {
      font-weight: normal;
      font-size: 16px!important;
      line-height: 1.6!important;
    }
    
    .blog-related-posts__list .blog-related-posts__post {
      display: flex;
      flex-direction: row;
      margin: 0 0 16px 0;
      padding: 16px;
      width: 100%;
    }
    
    .blog-related-posts__list .blog-related-posts__image {
      margin-bottom: 0;
      width: 120px;
      vertical-align: middle;
    }

    .blog-related-posts__list .blog-related-posts__content {
      padding-left: 16px;
    }

    .content-wrapper--vertical-spacing, .dnd-section {
      padding: 40px 16px!important;
    }
    
    .footer h3 {
      font-size: 18px!important;
      margin-bottom: 16px;
    }

    .footer p {
      font-size: 14px!important;
      text-align: left;
    }
 
    .footer p br {
      display: none;
    }

    .row-fluid .span4 {
      width: 100%;
      margin-left: 0;
    }

    .social-sharing {
      margin-top: 8px;
    }

    .blog-post__tags {
      margin-top: 24px;
    }
    
    .error-page {
      padding: 40px 0;
      width: 100%;
    }
    
    .error-page h1 {
      font-size: 24px;
      margin-bottom: 8px;
    }
    
    .error-page p {
      font-size: 14px;
      text-align: left;
    }
    
    .error-page .text-link {
      margin-top: 24px;
    }
    
    .blog-index__post-title-link {
      font-size: 18px;
    }
    
    .systems-page--search-results {
      padding: 40px 0!important;
    }
    
    .blog-author-heading,
    .blog-tag-heading {
      padding: 0;
      font-size: 18px;
    }
    
    .hs-search__no-results p,
    .hs-search__no-results ul {
      font-size: 14px;
    }
    
    .widget-type-form {
      padding: 16px;
    }
    
    .widget-type-form .form-title {
      font-size: 14px;
      line-height: 1.6
    }
    
    .widget-type-form .input {
      margin-right: 0!important;
    }
    
    .widget-type-form .hs-input {
      width: 100%!important;
    }
    
    .widget-type-form input[type=submit] {
      padding: 16px;
      font-size: 16px;
    }
  }
</style>