/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-x: hidden;
  }
  body {
    height: 100%;
  }
  .txt-link,
  .table_default a {
    color: #235da2;
  }
  .txt-link:hover,
  .table_default a:hover {
    text-decoration: underline;
  }

  a:not(.no-icon)[target="_blank"] {
    display: inline-block;
    align-items: center;
  }
  a:not(.no-icon)[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 11px;
    margin-left: 2px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.svg);
    transition: .4s ease-in-out;
  }
  a.img-link:hover {
    opacity: .5;
  }
  .gnav--menu > li > a:not(.no-icon)[target="_blank"]:hover::after,
  .footer a:not(.no-icon)[target="_blank"]::after,
  .btn a:not(.no-icon)[target="_blank"]::after {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab-wh.svg);
  }
  select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box;
    font-size: 82%;
    outline: none;
    cursor: pointer;
  }
  .select-style {
    overflow: hidden; /* 伸ばした分を隠す */
  }
  .select-style p {
    padding: 4px 26px 4px 16px;
    line-height: 1;
    border: 1px solid #ddd;
  }
  .select-style select {
    width: 180%; /* UI分を伸ばす */
  }
  .select-style { position: relative; }
  .select-style::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    position: absolute;
    right: 8px;
    top: calc(50% - 6px);
    transform: rotate(45deg);
    pointer-events: none;
  }
  button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }
  em { font-style: normal; }

 /*導入事例メニュー用*/
 .sec--menu {
    position: absolute;
    top: 45px;
    z-index: 999;
    width: 100%;
    overflow: hidden;
    display: none;
 }
 .gnav--menu .sec--menu li {
    padding: 0.5rem;
    background: #ffffff;
    border-top: 1px solid #ececec;
    text-align: center;
    cursor: pointer;
 }
 .gnav--menu .sec--menu li a {
    color: #000000 !important;
 }
 .gnav--menu .sec--menu li:hover { background-color: #235da2; }
 .gnav--menu .sec--menu li:hover a { color: #fff !important; }

 .sec--menu--fix {
    text-align: center;
    padding: 0.5rem 0;
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    display: none;
 }
 .gnav--menu .sec--menu--fix li a {
    color: #000000 !important;
    padding: 0.2rem 24px;
 }
 .gnav--menu .sec--menu--fix li:hover a {
    color: #fff !important;
    background-color: #235da2;
    border-radius: 4px;
 }

 .gnav--menu .sec--menu--fix li {
    padding: 0.8rem 0;
    background: #ffffff;
    border-bottom: 1px solid #cccccc;
    text-align: center;
    cursor: pointer;
 }

  @media screen and (max-width: 767px) {
    .fixed--nav .gnav--menu > li > a::after {
      background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab-wh.svg);
    }
  }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .inner-sm { max-width: 900px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
/*  .section_pdg-bottom {
    padding-bottom: 160px;
  }*/
  .hero + .section_pdg,
  body:not(.page-company):not(.page-ir) .container > .section_pdg:first-child {
    padding-top: 40px;
  }

    .section_pdg_rlc {
    padding-top: 80px;
    padding-bottom: 50px;
    }

  /* --- float --- */
  .flt-rgt { float: right; }
  .flt-lft { float: left; }

  /* --- position --- */
  .pos_rel {
    position: relative;
    z-index: 0;
  }

  /* --- margin --- */
  .mgn-btm8 { margin-bottom: 8px; }
  .mgn-btm16 { margin-bottom: 16px; }
  .mgn-btm24 { margin-bottom: 24px; }
  .mgn-btm32 { margin-bottom: 32px; }
  .mgn-btm40 { margin-bottom: 40px; }
  .mgn-btm48 { margin-bottom: 48px; }
  .mgn-btm56 { margin-bottom: 56px; }
  .mgn-btm64 { margin-bottom: 64px; }
  .mgn-btm72 { margin-bottom: 72px; }
  .mgn-btm80 { margin-bottom: 80px; }

  /* --- pc or sp --- */
  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pn-none-flex {
    display: none;
  }
  .sp-none { display: block; }
  .sp-none-inline { display: inline; }
  .sp-none-table { display: table; }
  .sp-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  @media screen and (max-width: 767px) {
    .mgn-btm16 { margin-bottom: 8px; }
    .mgn-btm24 { margin-bottom: 16px; }
    .mgn-btm32 { margin-bottom: 16px; }
    .mgn-btm40 { margin-bottom: 24px; }
    .mgn-btm48 { margin-bottom: 24px; }
    .mgn-btm56 { margin-bottom: 32px; }
    .mgn-btm64 { margin-bottom: 32px; }
    .mgn-btm72 { margin-bottom: 40px; }
    .mgn-btm80 { margin-bottom: 40px; }
    .sp-none,
    .sp-none-inline,
    .sp-none-table,
    .sp-none-flex { display: none; }
    .pc-none { display: block; }
    .pc-none-inline { display: inline; }
    .pc-none-table { display: table; }
    .pc-none-flex {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }

    /* --- inner --- */
    .inner { width: 90%; }

    /* --- section_pdg --- */
    .section_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }


    .hero + .section_pdg,
    .page_ttl + .section_pdg,
    section.section_pdg:first-child,
    .wave-wh + .section_pdg {
      padding-top: 0;
    }
  }

/* flex
**************************************** */

  /* --- ブロック要素 --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- インライン要素 --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- 逆向き --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  /* --- 縦並び --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- 水平方向揃え --- */
  .flex-j-start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-j-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-j-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-j-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-j-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* --- 垂直方向揃え --- */
  .flex-a-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-a-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-a-ctr {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-a-baseline {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .flex-a-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  /* --- 子要素の折り返し設定 --- */
  .flex-c-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-c-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* --- 子要素の複数行設定 --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  
  /* --- ざっくりflexレイアウト --- */
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2.flex-reverse > * {
    margin-left: 3%;
    margin-right: 0;
  }
  .flex-col2-lg .txtarea {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 3%;
    padding-left: 10%;
  }
  .flex-col2-lg.flex-reverse .txtarea {
    margin-left: 5%;
    margin-right: 0;
    padding-left: 0;
    padding-right: 10%;
  }
  .flex-col2-lg .imgarea { flex: 1; }
  .flex-col2-lg .imgarea img { width: 100%; }
  .flex-col2-imgsm .txtarea {
    width: 62%;
    flex: 1;
  }
  .flex-col2-imgsm .imgarea { width: 35%; }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col2.flex-reverse > *:nth-child(even) { margin-left: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col4>* {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }
  .imgarea_caption {
    position: absolute;
    font-size: 72%;
    color: #fff;
    right: 4px;
    bottom: 0;
    font-weight: bold;
    text-shadow: 0 2px 0 #000, 2px 0 0 #000, 0 2px 2px #000, -2px -2px 0 #000;
  }

  @media screen and (max-width: 1080px) {
    /* --- 縦並び - タブレット --- */
    .flex-tb-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }

  @media screen and (max-width: 768px) {
    .imgarea img:not(:last-child) { margin-bottom: 16px; }

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-col2 > *,
    .flex-col2-lg .txtarea,
    .flex-col2-imgsm .txtarea,
    .flex-col2-imgsm .imgarea {
      width: 100%;
    }
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }
    .flex-col2-lg .txtarea,
    .flex-col2-lg.flex-reverse .txtarea {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 0;
      padding-left: 5%;
      padding-right: 5%;
    }
    .flex-col2-lg .imgarea { margin-bottom: 10%; }

  }

/* ttl
**************************************** */

  /* --- page_ttl --- */
  .page_ttl {
    padding-bottom: 0 !important;
    color: #235DA2;
    background-image: url(../images/common/page_ttl-bg.jpg);
    background-position: center bottom;
  }
  .page-company .page_ttl {
    height: 774px;
    background-image: url(../images/company/ttl_company.jpg);
  }
  .page-company.page-history .page_ttl,
  .page-company.page-office .page_ttl {
    height: auto;
    background-image: url(../images/company/ttl_company_lower.jpg);
  }
  .page-cs .page_ttl {
    background-image: url(../images/about/ttl_cs.jpg);
  }
  .page-personal .page_ttl {
    background-image: url(../images/personal/ttl_personal.jpg);
  }
  .page-business .page_ttl {
    background-image: url(../images/business/ttl_business.jpg);
  }
  .page-ir .page_ttl,
  .archive-ir-briefing .page_ttl,
  .archive-ir-denshi .page_ttl {
    background-image: url(../images/ir/ttl_ir.jpg);
    background-size: cover;
  }
  .page-ir-subpage .page_ttl {
    background-image: url(../images/ir/ttl_ir-subpage.jpg);
  }
  .page-ir .page_ttl .page_ttl-jp,
  .archive-ir-briefing .page_ttl .page_ttl-jp,
  .archive-ir-denshi .page_ttl .page_ttl-jp {
    font-size: 350%;
    text-shadow: 0 0 70px #235da2, 0 0 70px #235da2;
  }
  .page-policy .page_ttl {
    background-image: url(../images/policy/ttl_policy.jpg);
  }
  .page-contact .page_ttl {
    background-image: url(../images/contact/ttl_contact.jpg);
  }
  .page-sitemap .page_ttl {
    background-image: url(../images/sitemap/ttl_sitemap.jpg);
  }
  .archive-topics .page_ttl,
  .single-topics .page_ttl {
    background-image: url(../images/topics/ttl_topics.jpg);
  }
  .archive-faq .page_ttl {
    background-image: url(../images/faq/ttl_faq.jpg);
  }
  .archive-voice .page_ttl,
  .voice_category-personal .page_ttl {
    background-image: url(../images/voice/ttl_personal_voice.jpg);
  }
  .voice_category-business .page_ttl {
    background-image: url(../images/voice/ttl_business_voice.jpg);
  }
  /* 督促ページ用背景画像 */
  .page-01-2 .page_ttl,
  .page-02-2 .page_ttl {
    background-image: url(../images/electronic_demand/ttl_electronic_demand.jpg);
  }
  
  /* 流線削除 */
  .page-company .page_ttl.wave::after,
  .page-ir .page_ttl.wave::after,
  .archive-ir-denshi .page_ttl.wave::after {
    display: none;
  }
  .page-ir:not(.page-ir-subpage) .page_ttl > .inner {
    padding: 170px 0;
  }
  .page-ir-subpage .page_ttl > .inner,
  .archive-ir-denshi .page_ttl > .inner {
    padding: 120px 0;
  }
  .page-company .page_ttl > .inner {
    padding: 80px 0 34px;
  }
  .page-company.page-history .page_ttl > .inner, 
  .page-company.page-office .page_ttl > .inner {
    padding: 120px 0;
  }

  .page_ttl-jp,
  .page_ttl-en {
    display: block;
  }
  .page_ttl-jp {
    font-size: 262%;
    line-height: 1.5;
  }
  .page-company .page_ttl-jp,
  .page-ir .page_ttl-jp,
  .archive-ir-briefing .page_ttl-jp,
  .archive-ir-denshi .page_ttl-jp {
    color: #fff;
  }
  .page_ttl > .inner { padding: 80px 0 160px 0; }

  /* --- section_ttl --- */
  .section_ttl_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .section_ttl {
    font-size: 262%;
    font-family: fot-tsukuardgothic-std, sans-serif;
    line-height: 1.3;
    letter-spacing: .1em;
  }
  .section_ttl small {
    display: block;
    margin-top: 8px;
    font-size: 50%;
  }
  .line-dot::before {
    margin-right: 16px;
  }
  .line-dot::after {
    margin-left: 16px;
  }
  .line-dot::before,
  .line-dot::after {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    border-bottom-style: dotted;
    border-bottom-width: 4px;
    border-bottom-color: #4c88b6;
    margin-bottom: 16px;
  }
  .ir.line-dot::before,
  .ir.line-dot::after {
    display: none;
  }
  .line-dot.txt-blue::before,
  .line-dot.txt-blue::after {
    border-bottom-color: #235da2;
  }
  .line-dot::before {
    transform: rotate(45deg);
  }
  .line-dot::after {
    transform: rotate(-45deg);
  }
  .section_ttl-sm { font-size: 225%; }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 225%;
    line-height: 1.3;
  }
  .heading-2 {
    font-size: 175%;
    line-height: 1.5;
  }
  .heading-3 {
    font-size: 137%;
    line-height: 1.3;
  }
  .heading-4 { font-size: 106%; }

  @media screen and (max-width: 1080px) {
    /* --- section_ttl --- */
    .section_ttl { font-size: 220%; }
    .line-dot::before,
    .line-dot::after {
      width: 60px;
      margin-left: 0;
      margin-right: 0;
    }

    /* --- page_ttl --- */
    .page_ttl {
      background-position: right bottom;
    }

    /* --- heading --- */
    .heading-1 { font-size: 170%; }
    .heading-2 { font-size: 150%; }
    .heading-3 { font-size: 130%; }

    /* --- page_ttl --- */
    .page-personal .page_ttl {
      background-position: right -100px bottom;
    }
    .page-business .page_ttl {
      background-position: right -220px bottom;
    }
    .page-policy .page_ttl {
      background-position: right -330px bottom;
    }
    .page-company .page_ttl {
      height: auto;
    }
    .page-ir .page_ttl,
    .archive-ir-briefing .page_ttl,
    .archive-ir-denshi .page_ttl {
      background-position: right -300px bottom;
    }
    .archive-topics .page_ttl,
    .single-topics .page_ttl {
      background-position: right -330px bottom;
    }
    .page-ir:not(.page-ir-subpage) .page_ttl > .inner {
      padding: 170px 0px 80px 0px;
      /* padding: 80px 0; */
    }
  }

  @media screen and (max-width: 767px) {
    /* --- section_ttl --- */
    .section_ttl_box {
      width: 95%;
      margin-left: auto;
      margin-right: auto;
    }
    .section_ttl {
      font-size: 178%;
      padding: 0 10px;
    }
    .line-dot::before,
    .line-dot::after {
      width: 28px;
      border-bottom-width: 3px;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 4px;
    }
    .line-dot::before { transform: rotate(60deg);}
    .line-dot::after { transform: rotate(-60deg);}

    /* --- page_ttl --- */
    .page_ttl {
      top: 58px;
      height: auto;
      margin-bottom: 56px;
      padding-bottom: 16px !important;
      background-size: cover;
    }
    .page-cs .page_ttl {
      background-position: right -190px bottom;
    }
    .page-personal .page_ttl {
      background-position: right -220px bottom;
    }
    .page-sitemap .page_ttl {
      background-position: right -220px bottom;
    }
    .page-ir .page_ttl,
    .archive-ir-briefing .page_ttl,
    .archive-ir-denshi .page_ttl {
      background-position: right -130px bottom;
    }
    .archive-voice .page_ttl,
    .voice_category-personal .page_ttl {
      background-position: right -150px bottom;
    }
    .voice_category-business .page_ttl {
      background-position: right -130px bottom;
    }
    .page_ttl > .inner {
      padding: 140px 0 100px 0;
      text-shadow: 0 0 50px #fff, 0 0 50px #fff, 0 0 50px #fff, 0 0 50px #fff;
    }
    .page_ttl-jp { font-size: 190%; }

    /* --- heading --- */
    .heading-1 { font-size: 160%; }
    .heading-2 { font-size: 140%; }
    .heading-3 { font-size: 120%; }

    /* 流線削除 */
    .page-company .page_ttl,
    .page-ir .page_ttl,
    .archive-ir-denshi .page_ttl {
      position: relative;
      margin-bottom: 80px;
    }
    .page-company .page_ttl > .inner,
    .page-ir .page_ttl > .inner,
    .archive-ir-denshi .page_ttl > .inner {
      padding: 140px 0 50px 0;
    }
    .page-ir .page_ttl .page_ttl-jp,
    .archive-ir-briefing .page_ttl .page_ttl-jp,
    .archive-ir-denshi .page_ttl .page_ttl-jp { font-size: 200%;}
  }

/* font
**************************************** */
  .font-en { font-family: roboto, sans-serif; }
  .font-jp { font-family: fot-tsukuardgothic-std, sans-serif; }
  .font-jp-ir { font-family: dnp-shuei-gothic-kin-std, sans-serif; }
  .font-jp-shingoBold {  font-family: Shin Go Bold, sans-serif; }
  .font-jp-shingoMim {  font-family: Shin Go Regular, sans-serif; }
  _:-ms-lang(x)::-ms-backdrop, em.font-jp,
  _:-ms-lang(x)::-ms-backdrop, em.font-jp-ir {
    display: inline-block;
    margin-bottom: -.5em;
  }

/* bg
**************************************** */
  .bg-blue { background-color: #f4f9ff; }
  .bg-wh { background-color: #fff; }
  .wave {
    position: relative;
    padding-bottom: 200px;
  }
  .wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    background-position: top center;
  }
  .wave-wh::after {
    height: 81px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/wave-wh.png);
  }
  .wave-blue::after {
    height: 72px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/wave-blue.png);
  }
  .wave-blue02::after {
    height: 91px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/wave-blue02.png);
  }

  @media screen and (max-width: 767px) {
    .wave { padding-bottom: 100px; }
    .wave-blue::after {
      height: 30px;
      background-size: auto 30px;
    }
    .wave-wh::after,
    .wave-blue02::after {
      height: 50px;
    }
  }

/* txt
**************************************** */
  .txt-bld { font-weight: bold; }
  .txt-blue { color: #235da2; }
  .txt-green { color: #36bbad; }
  .txt-gray { color: #6f6f6f; }
  .txt-orange { color: #ffa525; }
  .txt-gold { color: #b3a073; }
  .txt-wh { color: #fff; }
  .txt-lg { font-size: 120%; }
  .txt-sm { font-size: 82%; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attention {
    font-size: 88%;
    color: #999;
  }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    display: inline-block;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }
  .note { padding: 24px; }
  .note img { margin-right: 16px; }

  .f-sm{ font-size: 95%; }

  @media screen and (max-width: 767px) {
    .txt-sp-lft { text-align: left; }
    .note { padding: 16px; }
    .note img {
      margin-right: 0;
      margin-bottom: 8px;
    }
  }

/* table & list
**************************************** */
  table { width: 100% !important; }

  /* --- table_default --- */
  .table_default,
  .table_default tr,
  .table_default th,
  .table_default td {
    width: auto !important;
    height: auto !important;
  }
  .table_default th {
    width: 190px !important;
    padding: 16px 20px;
    color: #235DA2;
    font-size: 120%;
    font-family: fot-tsukuardgothic-std, sans-serif;
    border-bottom: 2px solid #235DA2;
  }
  .table_default td {
    padding: 16px 56px;
    font-size: 93%;
    border-bottom: 1px solid #cdcdcd;
    border-left: 4px solid #fff;
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line tr:first-child th {
    background-color: #36bbad;
  }
  .table_line th {
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #ddd;
    font-size: 93%;
  }
  .table_cross tr:nth-child(2) th {
    background-color: rgba(54, 187, 173, .8);
  }
  .table_cross tbody tr:nth-child(2n) {
    background-color: rgba(54, 187, 173, .05);
  }
  .table_cross td:first-child {
    font-size: 107%;
    background-color: rgba(54, 187, 173, .05);
  }
  .policy_table th {
    width: 130px;
  }

  @media screen and (max-width: 767px) {
    .table_scroll table { width: 856px; }
    .table_scroll { overflow: auto; }

    /* --- table_default --- */
    .table_default tbody,
    .table_default tr,
    .table_default th,
    .table_default td {
      display: block;
    }
    .table_default th {
      width: 100% !important;
      padding: 8px 16px;
      text-align: left;
    }
    .table_default td {
      padding: 16px;
      border-bottom: none;
    }
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 16px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #1d7fb7;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num > li { padding-left: 0; }
  .list-num > li::before { display: none; }
  .list-num-child {
    list-style-type: none;
    margin-left: 1em;
  }
  .list-num-child li {
    counter-increment: cnt;
  }
  .list-num-child li:before {
    content: "(" counter(cnt) ") ";
    display: inline-block;
    width: 1.7em;
    margin-left: -2em;
  }
  /* 白丸付きリスト */
  .list-circle li::before {
    border: 1px solid #36bbad;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #36bbad;
  }
  /* 入れ子のスタイル */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 8px;
    height: 8px;
    top: .8em;
  }

  /* --- dlリスト --- */
  .list-dl {
    position: relative;
    border-top: 1px solid #ddd;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #1d7fb7;
    font-size: 112%;
    font-weight: 700;
    font-family: fot-tsukuardgothic-std, sans-serif;
  }
  .list-dl dd {
    padding-left: 250px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }
  .list-dl dd dt {
    position: relative;
    padding-top: 0;
    color: #36bbad;
  }
  .list-dl dd dd {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 8px;
    border-bottom: none;
  }

  @media screen and (max-width: 767px) {
    .list-dl dt {
      position: relative;
    }
    .list-dl dd {
      padding-left: 0;
      padding-top: 8px;
    }
  }

/* btn
**************************************** */
  .btn a {
    position: relative;
    max-width: 100%;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    min-width: 260px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #fff !important;
    font-size: 112%;
    text-align: center;
    background-color: #ffa525;
    border-radius: 3px;
    transition: .5s ease-out;
  }
  .btn a span { flex: 1; }
  .btn-arrow a::after {
    content: '';
    position: absolute;
    top: calc(50% - 7px / 2);
    right: 16px;
    display: block;
    width: 7px;
    height: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/btn-arrow.svg);
    background-size: 100%;
  }
  .btn-arrow.btn-white a::after {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/btn-arrow-green.svg);
  }
  .btn:not(.btn-white):not(.btn-green) a:hover { background-color: #FE8900; }
  .btn-green a,
  .btn-white a {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #36bbad;
    border: 1px solid #36bbad;
  }
  .btn-white a {
    color: #36bbad !important;
    background-color: transparent;
    border: 1px solid #36bbad;
  }
  .btn-green a:hover { background-color: #159285; }
  .btn-white a:hover { background-color: #dbf3f0; }
  .btns .btn:not(:last-child) { margin-right: 80px; }
  .ankers .btn:not(:last-child) { margin-right: 20px; }

  @media screen and (max-width: 767px) {
    .btn a {
      width: 80%;
      min-width: auto;
      padding-left: 24px;
      padding-right: 24px;
      line-height: 1.5;
    }
    .btn-arrow a::after { right: 8px; }
    .btns { padding: 0 24px; }
    .btns .btn a { width: auto; }
    .btns .btn:not(:last-child) {
      margin-right: 0;
      margin-bottom: 16px;
    }
    .ankers .btn { width: 90%; }
    .ankers .btn a { width: 100%; }
  }

/* contact_box
**************************************** */
  .contact_box a:not(:last-child) { margin-right: 24px; }
  .contact_box .ttl { font-size: 87%; }
  .contact_box .tel-num {
    font-size: 162%;
    letter-spacing: 0;
    line-height: 1;
  }
  .contact_box .tel-num::before,
  .contact_panel .tel-num::before {
    width: 23px;
    height: 24px;
  }
  .header .contact_box .tel-num::before,
  .footer .contact_box .tel-num::before,
  .contact_panel .tel-num::before {
    opacity: .5;
  }
  .flow_list .contact_box,
  .personal--info .contact_box {
    padding: 16px;
  }
  @media screen and (max-width: 1600px) {
    *::-ms-backdrop, .tel_box{ width:11rem; }
  }
  @media screen and (max-width: 1400px) {
    *::-ms-backdrop, .tel_box{ width:8rem; }
    *::-ms-backdrop, .contact_box a { font-size: 90%; }
    *::-ms-backdrop, .contact_box a:not(:last-child) { margin-right: 16px; }
    *::-ms-backdrop, .contact_box .tel-num::before,
    *::-ms-backdrop, .contact_panel .tel-num::before {
      width: 18px;
      height: 19px;
    }
  }
  @media screen and (max-width: 1300px) {
    .contact_box a { font-size: 90%; }
    .contact_box a:not(:last-child) { margin-right: 16px; }
    .contact_box .tel-num::before,
    .contact_panel .tel-num::before {
      width: 18px;
      height: 19px;
    }
    *::-ms-backdrop, .tel_box{ width:6rem; }
    *::-ms-backdrop, .w8r{ width:8rem !important; }
  }
  @media screen and (max-width: 1240px) {
    .contact_box .tel_box { display: none !important; }
  }
  @media screen and (max-width: 767px) {
    .contact_box > a { margin-bottom: 16px; }
    .contact_box a:not(:last-child) { margin-right: 0; }
    .contact_box .btn a { width: 100%; }
    .flow_list .contact_box,
    .personal--info .contact_box {
      justify-content: center;
      align-items: center;
      padding: 8px;
    }
  }

  .anker {
    margin-top: -80px;
    padding-top: 80px;
  }


/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header {
    border-top: 6px solid #235da2;
    background-color: #fff;
  }
  .header--top { padding: 18px; }
  .header--logo a{
    color: #235da2;
  }
  .header--logo small {
    margin-left: 16px;
    color: #878787;
    font-size: 75%;
    line-height: 1.3;
    font-weight: normal;
  }
  .header--btm { background-color: #eaf4ff; }
  .header--btn .btn:not(:last-child) { margin-right: 8px; }
  .header--btn .btn a {
    min-width: auto;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 95%;
  }
  .header--contact .tel-num::before { opacity: .5; }
/* オレンジ
  .info-cov { 
    border: 5px solid #ffd6a8;
    margin: 10px;
    padding: 5px;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
  }
  .info-cov a { color: #ed7d31 !important; }
*/
/* 赤 */
  .info-cov { 
    border: 5px solid #ff8a8a;
    margin: 10px;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
  }
  .info-cov a { color: #ff9999 !important; display: block; padding: 5px}
  .info-cov :hover{ 
    background:  #ff8a8a;
    color: white !important;
  }

  @media screen and (max-width: 767px) {
    .header--logo small,
    .header--btm,
    .header--nav {
      display: none;
    }
    .header--logo,
    .header--logo h1 {
      width: 100%;
    }
    .header--logo img { max-width: 110px; }
    .header--top {
      position: relative;
      z-index: 1000;
      height: 58px;
      padding: 12px 8px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
    }
  }

/* gnav
**************************************** */
  .gnav {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sub-link > a::before {
    content: '';
    position: absolute;
    left: calc(50% - 7.5px / 2);
    bottom: -16px;
    z-index: 1;
    border-style: solid;
    border-width: 0 7.5px 8px 7.5px;
    border-color: transparent transparent #235ca2 transparent;
    opacity: 0;
    transition: all .1s ease;
  }
  .sub-link:hover > a::before {
    opacity: 1;
  }
  .gnav--menu > li {
    position: relative;
    background-color: #fff;
    transition: .2s ease-out;
  }
  .gnav--menu > li:not(:last-child) { margin-right: 6px; }
  .gnav--menu > li:hover { background-color: #235da2; }
  .gnav--menu > li:hover a { color: #fff; }
  .gnav--menu > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-size: 100%;
    text-align: center;
    border-radius: 3px;
    min-width: 200px;
  }
  .gnav--sub {
    position: absolute;
    z-index: 5;
    padding-top: 16px;
    transition: all .1s ease;
    visibility: hidden;
    opacity: 0;
  }
  .gnav--sub > ul {
    background-color: #235da2;
    box-shadow: 0 9px 13px 0 rgba(0, 0, 0, .16);
  }
  .gnav--sub a:hover {
    opacity: 1;
    background-color: #205492;
  }
  .sub-link:hover .gnav--sub {
    visibility: visible;
    opacity: 1;
  }
  .nav-thumb a {
    display: block;
    padding: 12px 16px;
  }
  .nav-thumb span {
    display: block;
    color: #fff;
    text-align: center;
  }
  .gnav--cs .gnav--sub { left: -50%; }
  .gnav--cs .nav-thumb li { width: 278px; }
  .gnav--cs .nav-thumb a { padding: 32px 24px 16px 24px; }
  .gnav--cs .nav-thumb span { margin-top: 8px; }
  .gnav--company .gnav--sub { width: 100%; }

  @media screen and (max-width: 1300px) {
    .gnav--cs .nav-thumb li { width: 240px; }
  }

  @media screen and (max-width: 1081px) and (min-width: 768px) {
    .sub-link > a { pointer-events: none;}
  }
  @media screen and (max-width: 1081px) {
    .gnav--cs .nav-thumb a { padding: 24px 16px 8px 16px; }
  }

  @media screen and (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-out;
      transform: translateY(-100%);
    }
    .header {
      position: fixed;
      z-index: 999;
      width: 100%;
      border-top: 4px solid #235da2;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }
    .gnav_btn {
      top: 6px;
      right: 0;
      width: 58px;
      z-index: 9999;
    }
    .gnav_btn p {
      color: #235DA2;
      font-size: 80%;
      font-weight: bold;
      line-height: 1;
    }
    .gnav_btn--lines {
      position: relative;
      width: 34px;
      height: 20px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 4px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #235DA2;
    }
    .gnav_btn--lines span:nth-of-type(1) { top: 0; }
    .gnav_btn--lines span:nth-of-type(2) { top: 9px; }
    .gnav_btn--lines span:nth-of-type(3) { bottom: 0; }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(9px) rotate(-35deg);
      transform: translateY(9px) rotate(-35deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-9px) rotate(35deg);
      transform: translateY(-9px) rotate(35deg);
    }
    .gnav--menu > li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 8px;
    }
    .gnav--menu-btm a {
      width: 100%;
      font-size: 114%;
    }
    .gnav--menu-btm li:not(:last-child) { margin-bottom: 16px; }
  }

/* fixed--nav
**************************************** */
  .fixed--nav {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 16px;
    font-size: 92%;
    border-bottom: 1px solid #eaf4ff;
    transition: 1s ease-in-out;
  }
  .fixed--nav.active { top: 0; }
  .fixed--nav .header--logo img {
    max-width: 160px;
    height: 100%;
  }
  .fixed--nav .gnav--menu > li { border-radius: 4px; }
  .fixed--nav .gnav--menu > li > a {
    padding: 0 24px;
    min-width: auto;
  }
  .fixed--nav .gnav--cs .gnav--sub {
    left: 50%;
    transform: translateX(-50%);
  }

  @media screen and (max-width: 767px) {
    .fixed--nav .inner,
    .gnav--menu,
    .fixed--nav .gnav--menu > li,
    .gnav--cs .nav-thumb li {
      width: 100%;
    }
    .fixed--nav {
      top: 0;
      height: 100%;
      padding-bottom: 40px;
      opacity: 0;
      visibility: hidden;
      overflow: auto;
      background-color: #f4f9ff;
      transition: .4s ease-in-out;
      border-top: 4px solid #235da2;
    }
    .fixed--nav .inner { margin: 0; }
    .active .fixed--nav,
    .active .gnav--sub {
      opacity: 1;
      visibility: visible;
    }
    .gnav--menu {
      margin-bottom: 24px;
      padding-top: 64px;
    }
    .fixed--nav .gnav--menu > li > a {
      display: block;
      padding-top: 8px;
      padding-bottom: 8px;
      color: #fff;
      font-size: 130%;
    }
    .gnav--sub {
      position: relative;
      padding-top: 0;
    }
    .gnav--sub > ul {
      box-shadow: none;
      background-color: transparent;
      padding-bottom: 8px;
    }
    .gnav--menu > li { background-color: #235DA2; }
    .gnav--company .nav-thumb {
      display: flex;
      flex-wrap: wrap;
    }
    .gnav--company .nav-thumb li {
      width: 50%;
    }
    .gnav--cs .nav-thumb a,
    .gnav--company .nav-thumb a {
      display: flex;
      align-items: center;
      padding: 8px 16px;
    }
    .nav-thumb a img { width: 100px; }
    .nav-thumb span {
      font-size: 110%;
    }
    .gnav--cs .nav-thumb span {
      flex: 1;
      margin-left: 16px;
      text-align: left;
    }
  }

/* contact_panel
**************************************** */
  .contact_panel .link_area {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
  }
  .contact_panel.fixed { position: fixed; }
  .contact_panel.hide {
    right: -350px;
    transition: .4s ease-in-out;
  }
  .contact_panel.active {
    right: 0;
    transition: .4s ease-in-out;
  }
  /*.contact_panel.active:not(.fixed) { pointer-events: none; }*/
  .contact_panel.hide .contact_panel-ttl span {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact_panel-ttl-wh.png);
    transition: .4s ease-in-out;
  }
  .contact_panel.hide .contact_panel-ttl,
  .contact_panel.hide .contact_panel-ttl::before,
  .contact_panel.hide .contact_panel-ttl::after {
    color: #fff;
    background-color: #36bbad;
    transition: .4s ease-in-out;
  }
  .contact_panel.active .contact_panel-ttl,
  .contact_panel.active .contact_panel-ttl::before,
  .contact_panel.active .contact_panel-ttl::after,
  .contact_panel.hide:hover .contact_panel-ttl,
  .contact_panel.hide:hover .contact_panel-ttl::before,
  .contact_panel.hide:hover .contact_panel-ttl::after {
    color: #235da2;
    background-color: #fff;
    transition: .4s ease-out;
  }
  .contact_panel.active .contact_panel-ttl span::before,
  .contact_panel.hide:hover .contact_panel-ttl span::before {
    border-color: transparent #1952a7 transparent transparent;
    transition: .4s ease-out;
  }
  .contact_panel.hide .contact_panel-ttl span::before {
    border-color: transparent #fff transparent transparent;
    transition: .4s ease-out;
  }
  .home .contact_panel.active:not(.fixed) { top: 70vw; }
  .contact_panel {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 50;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .11);
  }
  .contact_panel-ttl {
    position: relative;
    padding: 16px;
    font-size: 112%;
  }
  .contact_panel-ttl::before,
  .contact_panel-ttl::after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
  }
  .contact_panel-ttl::before {
    left: 0;
    z-index: 1;
    width: 44px;
    height: 100px;
  }
  .contact_panel-ttl::after {
    left: -30px;
    top: calc(50% - 72px / 2);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .11);
  }
  .contact_panel-ttl span {
    display: block;
    position: relative;
    z-index: 2;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact_panel-ttl.png);
    width: 17px;
    height: 107px;
  }
  .page-ir .contact_panel:hover .contact_panel-ttl span,
  .archive-ir-denshi .contact_panel:hover .contact_panel-ttl span,
  .page-business .contact_panel:hover .contact_panel-ttl span {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/contact_panel-ttl.png);
  }
  .contact_panel-ttl span::before {
    content: '';
    position: absolute;
    top: calc(50% - 7px / 2);
    left: -24px;
    display: block;
    border-style: solid;
    border-width: 3.5px 6px 3.5px 0;
    border-color: transparent #1952a7 transparent transparent;
  }
  .contact_panel--content {
    width: 350px;
    padding: 24px 32px;
    background-color: #f4f9ff;
  }
  .contact_panel--tel .ttl { color: #666666; }
  .contact_panel--tel a { display: block !important; }
  .contact_panel--tel .tel-num {
    font-size: 181%;
    letter-spacing: 0;
    line-height: 1;
    padding-bottom: 8px;
  }
  .contact_panel--tel .tel-num img {
    margin-right: 8px;
    opacity: .5;
  }
  .contact_panel--btn .btn a {
    justify-content: flex-start;
    width: 100%;
    padding-right: 30px;
  }
  .contact_panel--btn .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .icon::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 14px;
    margin-right: 8px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .icon-mail::before {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-mail.svg);
  }
  .icon-faq::before {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-faq.svg);
  }
  .icon-tel::before {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-tel.svg);
  }
  .icon-tel-wh::before {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-tel-wh.svg);
  }


  @media screen and (max-width: 1440px) {
    .contact_panel {
      position: fixed;
    }
    .contact_panel.active:not(.fixed) {
      top: 50% !important;
      right: -350px;
    }
    .contact_panel.active:not(.fixed):hover {
      right: 0;
    }
    .contact_panel.active:not(.fixed) .contact_panel-ttl,
    .contact_panel.active:not(.fixed) .contact_panel-ttl::before,
    .contact_panel.active:not(.fixed) .contact_panel-ttl::after {
      color: #fff;
      background-color: #36bbad;
    }
    .contact_panel.active:not(.fixed) .contact_panel-ttl span {
      background-image: url(/wp/wp-content/themes/original_theme/images/common/contact_panel-ttl-wh.png);
    }
    .contact_panel.active:not(.fixed) .contact_panel-ttl span::before {
      border-color: transparent #fff transparent transparent;
    }
    .contact_panel.active:not(.fixed):hover .contact_panel-ttl,
    .contact_panel.active:not(.fixed):hover .contact_panel-ttl::before,
    .contact_panel.active:not(.fixed):hover .contact_panel-ttl::after {
      color: #235da2;
      background-color: #fff;
    }
    .contact_panel.active:not(.fixed):hover .contact_panel-ttl span {
      background-image: url(/wp/wp-content/themes/original_theme/images/common/contact_panel-ttl.png);
    }
    .contact_panel.active:not(.fixed):hover .contact_panel-ttl span::before {
      border-color: transparent #235da2 transparent transparent;
    }
  }
  @media screen and (max-width: 1200px) {
    .contact_panel { display: none; }
  }

  @media screen and (max-width: 767px) {
    .contact_panel {
      top: auto;
      bottom: 0;
      right: auto;
      width: 100%;
      text-align: center;
    }
    .contact_panel a {
      width: 96%;
      padding-top: 13px;
      padding-bottom: 13px;
      border-radius: 5px 5px 0 0;
    }
  }

/* breadcrumbs
**************************************** */
  #breadcrumbs {
    position: absolute;
    width: 100%;
    padding: 8px 0;
    font-size: 100%;
  }
  #breadcrumbs a {
    color: #235da2;
  }
  .page-company #breadcrumbs, 
  .page-company #breadcrumbs a {
    color: #b4cfed;
  }
  .page-ir:not(.page-ir-subpage) #breadcrumbs,
  .page-ir:not(.page-ir-subpage) #breadcrumbs a {
    color: #fff;
  }


/* ##############################################################################

    FOOTER

############################################################################## */
  /*.contact { padding-bottom: 160px; }*/
  .contact .contact-tel {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    color: #fff;
    font-size: 180%;
    line-height: 1;
    background-color: #235da2;
  }
  .contact .contact-tel.icon::before {
    width: 29px;
    height: 30px;
    margin-right: 16px;
  }
  .pagetop {
    position: absolute;
    z-index: 999;
    right: 5%;
    bottom: 80px;
    display: block;
    width: 48px;
    height: 48px;
    background: #235da2 url(/wp/wp-content/themes/original_theme/images/common/pagetop.png) center no-repeat;
    border-radius: 50%;
  }
  .footer {
    position: relative;
    z-index: 1;
    /*margin-top: -100px;*/
    padding-top: 100px;
    padding-bottom: 24px;
    background: #336aab url(/wp/wp-content/themes/original_theme/images/common/footer--bg.jpg) top center repeat-x;
  }
/*  .home .footer {
    padding-top: 50px;
  }*/
/*  .home .footer, 
  .page-cs .footer {
    background: #366cab;
    background: -moz-linear-gradient(top, #366cab 0%, #c8daef 110%);
    background: -webkit-linear-gradient(top, #366cab 0%,#c8daef 110%);
    background: linear-gradient(to bottom, #c8daef 0%,#366cab 110%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#366cab', endColorstr='#c8daef',GradientType=0 );
  }*/

  .footer--logo .elan-logo {
    float: left;
    margin-bottom: 0.5rem;
  }

  .footer--logo .op-log-box {
    float: right;
  }

  .footer--logo .op-logo {
    display: inline-block;
  }

  .footer-log-img { width: 117px; }

  @media screen and (max-width: 767px) {
    .footer--logo .elan-logo {
      float: none;
    }

  .footer--logo .op-log-box {
    float: none;
  }

    .footer--logo .oplogo {
      width: 80%;
      margin: auto;
      overflow: hidden;
    }

    .footer--logo .op-logo img {
      max-width: 80%;
      height: auto;
    }

  }

  .footer--logo small {
    display: block;
    margin-bottom: 16px;
  }
  .footer--copyright { font-size: 75%; }

  @media screen and (max-width: 1080px) {
    .footer--logo { text-align: center; }
    .pagetop { display: none; }
  }

  @media screen and (max-width: 767px) {
    .contact { padding-bottom: 100px; }
    .section_pdg.contact { padding-bottom: 40px;}
    .contact .contact-tel {
      font-size: 164%;
    }
    .home .footer {
      margin-top: -102px;
    }
    .footer--copyright { margin-top: 16px; }
  }

/* footer--nav
**************************************** */
  .footer--nav { flex: 1; }
  .footer--nav_child:not(:last-child) { width: calc(33.33% - 10px); }
  .footer--nav a,
  .footer--nav p {
    color: #fff;
    padding: 4px 12px;
    margin-bottom: 4px;
    font-size: 114%;
  }
  .footer--nav a {
    position: relative;
    display: flex;
    border-radius: 3px;
  }
  .footer--nav .privacy_mark {
    display: inline-block;
    width: 118px;
    height: 118px;
/*    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
*/
  }
  .footer--nav .privacy_mark::after { display: none !important; }
  .footer--nav .sub_menu ul {
    padding-left: 16px;
    line-height: 1;
    opacity: .8;
  }
  .footer--nav .sub_menu li {
    position: relative;
    display: flex;
    align-content: center;
  }
  .footer--nav .sub_menu li::before {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 7px / 2);

  }
  .footer--nav .sub_menu a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .footer .line-log-link { display: inline-block; }

  @media screen and (max-width: 1080px) {
    .footer--nav { margin-right: 0; }
  }

  @media screen and (max-width: 767px) {
    .footer--nav_child:not(:last-child) { width: 100%; }
    .footer--nav a,
    .footer--nav p {
      padding: 4px 0;
    }
    .footer--nav .privacy_mark {
      display: block !important;
      margin-left: auto !important;
      margin-right: auto !important;
      margin-bottom: 16px;
    }
   .footer--nav .sub_menu ul { padding-left: 0; }
   .footer--nav .sub_menu li { padding-left: 16px; }

  }


/* ##############################################################################

    INDEX

############################################################################## */

  .balloon {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 50px;
  }
  .balloon::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: calc(50% - 14px / 2);
    display: block;
    border-style: solid;
    border-width: 12px 7px 0 7px;
  }

/* hero
*************************************************** */
  .hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    background-color: #f5f8fd;
  }
  .hero video { width: 100%; }
  .hero--catch {
    position: absolute;
    bottom: 40%;
    left: 60px;
    z-index: 1;
    color: #235da2;
    font-size: 237%;
    line-height: 1.5;
    letter-spacing: .1em;
    text-shadow: 0 0 80px #fff, 0 0 80px #fff, 0 0 80px #fff;
  }
  .hero--catch span { display: block;}

  @media screen and (max-width: 1280px) and (min-width: 1081px) {
    .hero video {
      padding-left: 10%;
      padding-right: 10%;
    }
    .hero--catch {
      bottom: 20%;
      left: 14%;
      font-size: 200%;
    }
  }

  @media screen and (max-width: 767px) {
    .hero {
      height: auto;
      max-height: none;
    }
    .hero--catch {
      bottom: 20%;
      left: 50%;
      width: 100%;
      font-size: 150%;
      text-align: center;
      transform: translateX(-50%) translateY(50%);
    }
    .hero--catch span:first-child { margin-bottom: 8px; }
    .hero--slide { margin-top: 58px; }
  }

/* about
*************************************************** */
  .about--content .section_ttl .balloon {
    display: inline-block;
    margin-bottom: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 50%;
    letter-spacing: 0;
    background-color: #ebf2f9;
  }
  .about--content .section_ttl .balloon::after {
    border-color: #ebf2f9 transparent transparent transparent;
  }
  .about--content .section_ttl span:not(.balloon) { display: block; }
  .about--content .txtarea { flex: 1; }
  .home_about .section_ttl_box::before,
  .home_about .section_ttl_box::after {
    border-bottom-color: #36bbad;
  }
  .home_about .lead {
    color: #666666;
    font-size: 200%;
  }
  .home_about .lead span {
    display: inline-block;
    border-bottom: 2px solid #e9eef6;
  }
  .home_about .imgarea img {
    width: calc(33.33% - 32px);
    height: auto;
  }
  .home_about .example {
    padding: 16px 40px;
    background-color: #f1f9f8;
    font-size: 110%;
  }
  .home_about .example li {
    padding: 8px 16px;
    font-size: 125%;
    font-weight: bold;
  }
  .home_about .example li:not(:last-child) {
    border-bottom: 1px solid #dce9ef;
  }
  .example li {
    padding: 4px 0;
  }
  .example li.bg-wh {
    padding: 8px 16px;
  }
  .example li span {
    flex: 1;
    line-height: 1.5;
  }
  .example li::before {
    content: '';
    display: inline-block;
    width: 23px;
    height: 19px;
    margin-right: 16px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-check.svg);
    vertical-align: middle;
  }

  @media screen and (max-width: 767px) {
    .home_about .lead {
      font-size: 150%;
      line-height: 1.85;
      text-align: justify;
      text-justify: inter-ideograph;
    }
    .home_about .lead span {
      display: inline;
    }
    .home_about .example {
      width: 100%;
      padding: 0;
      font-size: 100%;
      line-height: 1.5;
    }
    .home_about .example li {
      font-size: 110%;
    }
    .example li::before {
      width: 15px;
      height: 13px;
      margin-right: 8px;
      background-size: cover;
    }
    .home_about .imgarea img {
      width: 100%;
    }
  }

/* message
*************************************************** */
  .home_message {
    background-size: cover;
  }
  .home_message .line-dot::before,
  .home_message .line-dot::after {
    border-bottom-color: #777777;
  }
  .message--content {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 64px;
    background-color: #fff;
    font-size: 120%;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .11);
    border-radius: 40px;
  }
  .message--content .lead {
    color: #b3a073;
    font-size: 200%;
    line-height: 1.5;
  }
  .message--item .message--txt { padding-left: 2em; }
  .message--content .btn a { background-color: #d0ba86; }
  .message--content .btn a:hover { background-color: #AA9053 !important; }

  @media screen and (max-width: 1080px) {
    .message--content { padding: 48px; }
  }

  @media screen and (max-width: 767px) {
    .message--content {
      padding: 24px 18px 42px;
      border-radius: 10px;
    }
    .message--content .lead {
      font-size: 127%;
    }
  }

/* point
*************************************************** */
  .point--content .txtarea {
    padding-left: 48px;
    padding-top: 48px;
    padding-bottom: 48px;
    flex: 1;
  }
  .point--content .txtarea p {
    color: #787a7c;
    font-size: 125%;
    font-weight: bold;
    line-height: 1.7;
  }
  .point--content .heading-1 {
    margin-bottom: 16px;
    padding-bottom: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #c0d2e8;
  }

  @media screen and (max-width: 1080px) {
    .point--content .txtarea {
      padding-top: 16px;
      padding-bottom: 16px;
    }
    .point--content .txtarea p {
      font-size: 110%;
    }
  }
  @media screen and (max-width: 767px) {
    .point--content:not(:last-child) { margin-bottom: 24px; }
    .point--content:last-child { margin-bottom: 34px;}
    .point--content .txtarea {
      margin-top: 16px;
      padding: 0;
    }
  }

/* double_link
*************************************************** */
  .home_double_link { background-color: #000;
    border-radius: 4px; }
  .double_link-item {
    position: relative;
    width: 50%;
    height: 320px;
    background-position: center;
    background-size: cover;
  }
  .double_link-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    transition: .4s ease-out;
  }
  .double_link-item:hover::after { background-color: rgba(0, 0, 0, 0); }
  .double_link-item a {
    z-index: 1;
    display: block;
    color: #fff;
  }
  .double_link-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .double_link-item .balloon {
    display: inline-block;
    margin-bottom: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 131%;
  }
  .double_link-item strong {
    display: block;
    font-size: 225%;
  }
  .page-cs #double_link {
    padding-bottom: 100px;
  }
  .double_link-item.personal {
    background-image: url(/wp/wp-content/themes/original_theme/images/link--bg-personal.jpg);
  }
  .double_link-item.personal .balloon {
    background-color: #36bbad;
  }
  .double_link-item.personal .balloon::after {
    border-color: #36bbad transparent transparent transparent;
  }
  .double_link-item.business {
    background-image: url(/wp/wp-content/themes/original_theme/images/link--bg-business.jpg);
  }
  .double_link-item.business .balloon {
    background-color: #235da2;
  }
  .double_link-item.business .balloon::after {
    border-color: #235da2 transparent transparent transparent;
  }

  @media screen and (max-width: 1080px) {
    .double_link-item {
      height: 320px;
    }
  }

  @media screen and (max-width: 767px) {
    .page-cs #double_link { padding-bottom: 40px;}
    .double_link-item {
      width: 100%;
      height: 200px;
    }
    .double_link-item .balloon {
      font-size: 110%;
    }
    .double_link-item strong {
      font-size: 180%;
    }
  }

/* voice
*************************************************** */
  .voice--content {
    background-position: center;
    background-size: cover;
  }
  .voice--content .post::after {
    content: '';
    position: absolute;
    bottom: -32px;
    display: block;
    border-style: solid;
    left: calc(50% - 64px / 2);
    border-width: 32px 32px 0 32px;
    border-color: #ffffff transparent transparent transparent;
  }
  .voice--content .posts-voice::after,
  .voice--content .posts-voice .post--wrap {
    width: calc(33.33% - 16px);
  }
  .double--content strong,
  .voice--content .post strong {
    color: #235da2;
  }

  /* --- voice--enquete --- */
  .voice--enquete {
    background-image: url(/wp/wp-content/themes/original_theme/images/voice--bg-enquete.jpg);
  }
  .voice--enquete-box li { width: 50%; }
  .voice--enquete-box .heading-2 .balloon {
    display: inline-block;
    min-width: 134px;
    margin-bottom: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #fff;
    font-size: 74%;
    background-color: #36bbad;
  }
  .voice--enquete-box .heading-2 .balloon::after {
    border-color: #36bbad transparent transparent transparent;
  }
  .voice--enquete-box .heading-2 span:not(.balloon) {
    display: block;
  }

  /* --- voice--voice_list --- */
  .voice--voice_list {
    background-image: url(/wp/wp-content/themes/original_theme/images/voice--bg-business.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  @media screen and (max-width: 767px) {
    .voice--content .posts-voice::after,
    .voice--content .posts-voice .post--wrap {
      width: 100%;
    }
    .voice--content .posts-voice .post--wrap {
      margin-bottom: 16px;
    }

    /* --- voice--voice_list --- */
    .voice--voice_list .post:not(:last-child) { margin-bottom: 24px; }
    .voice--voice_list .post::after { display: none; }

    /* --- voice--enquete --- */
    .voice--enquete-box li { width: 100%; }
    .voice--enquete-box li:not(:last-child) { margin-bottom: 40px; }
  }

/* record
*************************************************** */
 #record-bt1,#record-bt2,#record-bt3,#record-bt4,
 #record-bt5,#record-bt6,#record-bt7,#record-bt8{
    cursor: pointer;
 }

 #record-con1,#record-con2,#record-con3,#record-con4,
 #record-con5,#record-con6,#record-con7,#record-con8{
    display: none;
 }

/* news
*************************************************** */
  .home_news > section { width: 100%; }
  .home_ir_news .section_ttl { margin-top: 1.25em; }

  @media screen and (max-width: 767px) {
    .home_news > section { width: 100%; }
    .home_news > section:not(:last-child) { margin-bottom: 32px; }
  }

/* movie
*************************************************** */
  .movie {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .movie .section_ttl_box {
    position: relative;
    z-index: 1;
  }
  .movie .section_ttl {
    position: absolute;
/*    top: -11px; */
    top: 14px;
    left: 50%;
    width: 100%;
    padding-bottom: 140px;
    background: url(/wp/wp-content/themes/original_theme/images/movie--ttl-bg.png) center no-repeat;
    transform: translateX(-50%);
  }
  .movie--contens {
    position: relative;
  }
  .movie--contens::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .movie--contens::before {
    left: 0;
    background-image: linear-gradient( rgb(226,238,251) 0%, rgb(244,249,255) 100%);
  }
  .movie--content {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    padding-right: 32px;
  }
  .movie--content li { width: 100%; }
  .movie--content li:first-child { padding-right: 56px; }
  .movie--content li:last-child { padding-left: 56px; }
  .movie--content .heading-2 span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: auto;
    background-color: #fff;
    border-radius: 50%;
  }
  .movie--content .heading-2 span::after {
    content: '';
    display: block;
  }
  .movie--content .heading-2.personal span::after {
    width: 28px;
    height: 28px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-personal.svg);
  }
  .movie--content .heading-2.business span::after {
    width: 25px;
    height: 23px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-business.svg);
  }
  .movie-thumb {
    position: relative;
    width: 184px;
    height: 184px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
  }
  .movie-thumb::before,
  .movie-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transition: .5s ease-in-out;
    border-radius: 50%;
    border-width: 100px;
    border-style: solid;
    transform: translateX(-50%) translateY(-50%);
  }
  .movie-thumb::before {
    border-color: rgba(125, 102, 41, .2);
    mix-blend-mode: exclusion;
  }
  .movie-thumb::after {
    border-color: rgba(0, 0, 0, .4);
  }
  .movie-thumb span {
    display: block;
    position: absolute;
    z-index: 1;
    width: 63px;
    height: 63px;
    top: calc(50% - 63px / 2);
    left: calc(50% - 63px / 2);
    background: url(/wp/wp-content/themes/original_theme/images/movie--play_btn.png) center no-repeat;
  }
  .movie_box:hover .movie-thumb::before,
  .movie_box:hover .movie-thumb::after {
    border-width: 0;
  }
  .movie-thumb span {
    transition: .5s  ease-in-out;
  }
  .movie_box:hover .movie-thumb span { opacity: 0; }
  .movie_box {
    width: 50%;
    text-align: center;
  }
  .movie_box h4 {
    color: #666;
    font-size: 130%;
    line-height: 1.5;
  }
  .movie_box span { color: #b4b7ba; }

  @media screen and (max-width: 767px) {
    .movie--contens { padding-top: 90px; }
    .movie--contens::before,
    .movie--contens::after {
      width: 100%;
      height: 50%;
    }
    .movie--contens::after {
      top: auto;
      bottom: 0;
      left: 0;
    }
    .movie--content {
      padding-left: 0;
      padding-right: 0;
    }
    .movie .section_ttl {
      padding-bottom: 87px;
      background-size: 310px;
    }
    .movie--content li { width: 100%; }
    .movie--content li:first-child {
      margin-bottom: 40px;
      padding-right: 0;
    }
    .movie_list { justify-content: space-between; }
    .movie--content li:last-child { padding-left: 0; }
    .movie_box { width: calc(50% - 16px); }
    .movie_box:not(:last-child) { margin-bottom: 24px; }
    .movie_box h4 { text-align: left; }
    .movie-thumb {
      width: 100%;
      height: 40vw;
    }
  }


/* ##############################################################################

    PAGE

############################################################################## */

  .img_line-gray { border: 3px solid #d2d2d2; }

/* cs
*************************************************** */
  /* --- cs--content  --- */
  .cs--content .example li:not(:last-child) { margin-bottom: 1px; }
  .cs--content {
    position: relative;
    background-image: url(/wp/wp-content/themes/original_theme/images/voice--bg-enquete.jpg);
    background-size: cover;
  }
  .cs--content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  }
  .cs--content .lead {
    font-size: 117%;
  }

  /* --- intro02--content  --- */
  .intro02--content .imgarea {
    width: 100%;
  }
  .intro02--content .imgarea > div {
    display: inline-block;
    max-width: 50%;
    text-align: center;
  }
  .intro02--content .imgarea > div:not(:last-child) { margin-right: 40px; }
  .intro02--content .imgarea img { flex: 1; }

  /* --- cs-point--content --- */
  .cs-point--content img { margin-right: 80px; }
  .cs-point--content.flex-reverse img {
    margin-left: 80px;
    margin-right: 0;
  }
  .cs-point--content .txtarea { flex: 1; }

  /* --- merit--content --- */
  .merit--content .flex-col2-lg:not(:last-child) { margin-bottom: 100px; }
  .merit--voice { background-color: #dff2f0; }
  .merit--voice h4 {
    display: inline-block;
    padding: 2px 32px;
    color: #fff;
    font-size: 131%;
    background-color: #36bbad;
    border-radius: 0 50px 50px 0;
    transform: translateY(-16px);
  }
  .merit--voice ul {
    counter-reset: cnt;
    padding: 8px 32px 40px 32px;
  }
  .merit--voice li {
    background-repeat: no-repeat;
    background-position: right 32px center;
  }
  .merit--voice li:nth-child(1) {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/no01.png);
    background-position: right 50px center;
  }
  .merit--voice li:nth-child(2) {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/no02.png);
  }
  .merit--voice li:nth-child(3) {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/no03.png);
  }
  .merit--voice li:not(:first-child) {
    padding-top: 24px;
  }
  .merit--voice li:not(:last-child) {
    border-bottom: 1px solid #c0d2e8;
    padding-bottom: 24px;
  }

  /* --- about_business--content --- */
  .about_business--content .about_business--main {
    padding: 72px 44px;
  }
  .about_business--content .about_business--main-btm {
    padding-top: 80px;
    background: url(/wp/wp-content/themes/original_theme/images/about/about--business-arrow_orange.png) top center no-repeat;
  }
  .double--item {
    width: calc(50% - 16px);
    padding: 64px 80px;
  }
  .double--item:not(:last-child):not(:nth-last-child(2)) {
    margin-bottom: 32px;
  }
  .double--item h4 {
    font-size: 200%;
    line-height: 1.3;
  }
  .double--item-img {
    width: 130px;
    height: 130px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: #f3f7fc;
  }
  .about_business--content .example li {
    padding: 8px 24px;
    background-color: #f7f7f7;
  }

  /* --- contact--belt --- */
  .contact--belt { position: relative; }
  .contact--belt .inner {
    background: url(/wp/wp-content/themes/original_theme/images/about/contact--belt-bg.jpg) center no-repeat;
    background-size: cover;
  }
  .contact--belt::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 100px / 2);
    display: block;
    border-style: solid;
    border-width: 33px 50px 0 50px;
    border-color: #f4f9ff transparent transparent transparent;
  }
  .contact--belt .contact_box > a {
    border-right: 1px solid #fff;
    padding: 0 40px;
    margin-right: 0;
  }
  .contact--belt .contact_box .ttl { font-size: 112% }
  .contact--belt .contact_box .tel-num { font-size: 250% }
  .contact--belt .contact_box .btn { margin-left: 40px; }

  /* CSセット導入のメリット */
  .personal--info .double--content, 
  .business--info .double--content {
    counter-reset:cnt;
  }
  .personal--info .double--item h4, 
  .business--info .double--item h4 {
    padding-left: 30px;
  }
  .personal--info .double--item, 
  .business--info .double--item {
    position: relative;
    width: calc(33.33% - 16px);
    margin-bottom: 32px;
    padding: 32px;
    border-radius: 40px;
  }
  .personal--info .double--item::before, 
  .business--info .double--item::before {
    counter-increment: cnt;
    content: counter(cnt);
    position: absolute;
    top: -30px;
    left: 10px;
    display: block;
    color: #1d519a;
    font-size: 530%;
    font-family: fot-tsukuardgothic-std, sans-serif;
    line-height: 1;
    opacity: .3;
  }

  @media screen and (max-width: 1080px) {
    /* --- cs-point--content --- */
    .cs-point--content img { margin-right: 40px; }
    .cs-point--content.flex-reverse img {
      margin-left: 40px;
    }

    /* --- contact--belt --- */
    .contact--belt .inner { width: 100%; }
  }

  @media screen and (max-width: 767px) {
    /* --- intro02--content  --- */
    .intro02--content .txtarea { margin-right: 0; }

    /* --- cs-point--content --- */
    .cs-point--content img {
      margin-right: 0;
      margin-bottom: 16px;
    }
    .cs-point--content.flex-reverse img {
      margin-left: 0;
    }

    /* --- intro02--content  --- */
    .intro02--content .imgarea > div {
      max-width: 100%;
    }

    /* --- merit--content  --- */
    .merit--content .flex-col2-lg {
      flex-direction: column-reverse;
    }
    .merit--content .flex-col2-lg:not(:last-child) { margin-bottom: 48px; }
    .merit--voice ul { padding: 0 24px 24px 24px; }

    /* --- about_business--content --- */
    .about_business--content .about_business--main { padding: 24px; }
    .about_business--content .example li { padding: 8px 16px; }

    /* --- double--item --- */
    .double--item {
      width: 100%;
      padding: 24px;
    }
    .double--item:not(:last-child) { margin-bottom: 32px !important; }
    .double--item h4 { font-size: 180%; }
    .double--item-img {
      width: 100px;
      height: 100px;
      padding: 24px;
    }
    .double--item-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* --- contact--belt --- */
    .contact--belt .contact_box > a:not(:first-child) { padding-top: 16px; }
    .contact--belt .contact_box > a {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 16px;
      border-bottom: 1px solid #fff;
      border-right: none;
    }
    .contact--belt .contact_box .btn {
      margin-left: 0;
      margin-top: 16px;
    }
  }

/* personal
*************************************************** */
  .personal--info .double--content { counter-reset:cnt; }
  .personal--info .double--item h4 { padding-left: 30px; }
  .personal--info .double--item {
    position: relative;
    width: calc(33.33% - 16px);
    margin-bottom: 32px;
    padding: 32px;
    border-radius: 40px;
  }

  /* --- intro02--content --- */
  .personal--info .intro02--content .imgarea { width: auto; }

  /* --- plan_list --- */
  .plan_list li {
    width: calc(33.33% - 16px);
    border-radius: 7px;
    border: 1px solid;
  }
  .plan_list .heading-4 {
    padding: 8px;
    font-size: 187%;
    border-radius: 5px 5px 0 0;
    line-height: 1.5;
  }
  .plan_list .plan_list--price {
    color: #fff;
    font-size: 112%;
    font-weight: bold;
  }
  .plan_list dl { padding: 16px 32px; }
  .plan_list dt { font-weight: bold; }
  .plan_list dd:not(:last-child) { margin-bottom: 16px; }
  .plan_list li:nth-child(1) { border-color: #235da2; }
  .plan_list li:nth-child(2) { border-color: #36bbad; }
  .plan_list li:nth-child(3) { border-color: #f3852f; }
  .plan_list li:nth-child(1) .heading-4 { background-color: #235da2; }
  .plan_list li:nth-child(2) .heading-4 { background-color: #36bbad; }
  .plan_list li:nth-child(3) .heading-4 { background-color: #f3852f; }
  .plan_list li:nth-child(1) .plan_list--price { background-color: rgba(35, 93, 162, .7); }
  .plan_list li:nth-child(2) .plan_list--price { background-color: rgba(54, 187, 173, .7); }
  .plan_list li:nth-child(3) .plan_list--price { background-color: rgba(243, 133, 47, .7); }

  /* サービス品 */
  .plan_list li.service {
    width: 100%;
    border-color: #888888;
    margin-top: 28px;
  }
  .plan_list li.service .heading-4 {
    background-color: #888888;
  }

  /* おむつセット提案 */
  .plan_list li.omutsu {
    width: 100%;
    border-color: #f5afad;
    margin-top: 28px;
  }
  .plan_list li.omutsu .heading-4 {
    background-color: #f5afad;
  }
  .omutsu--kadai {
    padding: 0 40px 28px;
  }
  .omutsu--kadai li {
    width: calc(33.33% - 8px);
    border: none;
    padding: 16px 24px;
    background-color: #fdeceb;
    line-height: 1.5;
  }
  .omutsu--kadai li::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 19px;
    margin-right: 16px;
    background-image: url(../images/common/icon-check_pink.svg);
  }

  #business .mr-2,
  #personal .mr-2 { margin-right: 0.8rem !important; }
  #business .mb-2,
  #personal .mb-2 { margin-bottom: 0.5rem !important; }
  #business .mb40,
  #personal .mb40 { margin-bottom: 40px !important; }


  @media screen and (max-width: 1080px) {
    .personal--info .double--item {
      width: calc(50% - 16px);
    }
  }
  @media screen and (max-width: 767px) {
    .personal--info .double--item,
    .business--info .double--item {
      border-radius: 10px;
    }
    .personal--info .double--item::before, 
    .business--info .double--item::before {
      top: -10px;
      font-size: 326%;
    }
    .personal--info .voice-personal .posts-voice::after,
    .personal--info .voice-personal .posts-voice .post,
    .personal--info .double--item, 
    .business--info .double--item, 
    .plan_list li {
      width: 100%;
    }
    .personal--info .double--item, 
    .business--info .double--item {
      padding: 24px;
    }
    /* --- plan_list --- */
    .plan_list li:not(:last-child) { margin-bottom: 16px; }
    .plan_list dl { padding: 16px 24px; }
    .plan_list li.omutsu {
      margin-top: 0;
    }
    .omutsu--kadai {
      padding: 0 5% 24px;
    }
    .omutsu--kadai li {
      padding: 12px 8px;
      margin-bottom: 8px !important;
    }
  }

    /* ---rlc_list --- */
  .rlc_list li {
    width: calc(50% - 13px);
  }

  .rlc_list .waku-r {
    /* padding: 6px; */
    border: 1px solid;
    border-radius: 7px;
    border-color: #36bbad;
    min-height: 600px;
  }

    .rlc_list .waku-lc {
    /* padding: 6px; */
    border: 1px solid;
    border-radius: 7px;
    border-color: #18adef;
    min-height: 600px;
  }


  .rlc_list .box1 {
    width: 80%;
    padding: 0.5em 0.5em;
    margin: 20px auto;
    background: #36bbad;/*背景色*/
    text-align: center;
}

  .rlc_list .box2 {
    width: 80%;
    padding: 0.5em 0.5em;
    margin: 20px auto;
    background: #18adef;/*背景色*/
    text-align: center;
}

  .rlc_list .waku2 {
    margin: 8px;
    width: 47%;
    float: left;
    border: 1px solid;
    border-radius: 7px;
    border-color: rgba(243, 133, 47, .7);
  }
  
    .rlc_list li2 {
    width: calc(47% - 1px);
    border-radius: 7px;
    border: 1px solid;
    margin: 10px 9px 20px 9px;
  }
  
  .rlc_list .midashi {
    padding: 6px;
    font-size: 142%;
    border-radius: 5px 5px 0 0;
    line-height: 1.2;
  }

    .rlc_list .komidashi {
    padding: 6px;
    font-size: 142%;
    border-radius: 5px 5px 0 0;
    line-height: 1.2;
  }
  
  .rlc_list .heading-4 {
    padding: 0 0 9px 0;
    font-size: 187%;
    /* border-radius: 5px 5px 0 0; */
    line-height: 1.0;
  }

  .rlc_list .rlc_list--price {
    color: #fff;
    font-size: 61%;
  }

  .rlc_list .setsumei {
    padding-top: 17px;
    border-left-width: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom-width: 10px;
    padding-bottom: 6px;
  }

  .rlc_list .setsumei2 {
    margin: 1rem 0 1rem 0;
    padding: 0 15px;
    /* margin-bottom: 55px; */
    /* margin-top: 40px; */
    /* border-left-width: 15px; */
    padding-left: 15px;
    padding-right: 15px;
    /* border-bottom-width: 10px; */
    /* padding-bottom: 42px; */
  }

    .rlc_list .setsumei3 {
    /* padding-top: 0px; */
    /* border-left-width: 15px; */
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    /* border-bottom-width: 10px; */
    padding-bottom: -3px;
    padding: 15px;
  }

    .rlc_list .setsumei4 {
    font-size: x-small;
    padding-top: 2px;
    border-left-width: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom-width: 10px;
    padding-bottom: 14px;
  }

    .rlc_list .yoko {
    overflow:hidden;
  }

  .rlc_list dl {padding: 10px 5px;}
  .rlc_list dt {
  margin: 3px 3px 3px 1px;
  padding: 5px 0px 0px 30px;
  background-image: url(../images/common/icon-check_pink.svg);
  background-repeat: no-repeat;
  background-position: 0px 8px;
  font-weight: bold;
  font-size: 88%;
}
  .rlc_list dd:not(:last-child) { margin-bottom: 16px; }
  .rlc_list li:nth-child(1) { border-color: #36bbad; }
  .rlc_list li:nth-child(2) { border-color: #18adef; }
  .rlc_list li:nth-child(1) .heading-4 { background-color: #36bbad; }
  .rlc_list li:nth-child(2) .heading-4 { background-color: #18adef; }
  .rlc_list li:nth-child(1) .midashi { background-color: #36bbad; }
  .rlc_list li:nth-child(2) .midashi { background-color: #18adef; }
  .rlc_list li:nth-child(1) .komidashi { background-color: rgba(243, 133, 47, .7) }
  .rlc_list li:nth-child(2) .komidashi { background-color: rgba(243, 133, 47, .7) }


  @media screen and (max-width: 1080px) {
    .personal--info .double--item {
      width: calc(50% - 16px);
    }
  }
  @media screen and (max-width: 767px) {
    .personal--info .double--item,
    .business--info .double--item {
      border-radius: 10px;
    }
    .personal--info .double--item::before, 
    .business--info .double--item::before {
      top: -10px;
      font-size: 326%;
    }
    .personal--info .voice-personal .posts-voice::after,
    .personal--info .voice-personal .posts-voice .post,
    .personal--info .double--item, 
    .business--info .double--item, 
    .rlc_list li {
      width: 100%;
    }
    .personal--info .double--item, 
    .business--info .double--item {
      padding: 24px;
    }


    @media screen and (max-width: 1154px) {
	.waku2 {
		width: 95%!important;
	} 
}


    /* --- rlc_list --- */
    .rlc_list li:not(:last-child) { margin-bottom: 16px; }
    .rlc_list dl { padding: 16px 24px; }
    .rlc_list li.omutsu {
      margin-top: 0;
    }
    .omutsu--kadai {
      padding: 0 5% 24px;
    }
    .omutsu--kadai li {
      padding: 12px 8px;
      margin-bottom: 8px !important;
    }
  }

/* business
*************************************************** */

  /* --- intro02--content --- */
  .business--info .intro02--content .imgarea {
    width: auto;
  }

  /* --- flow_list --- */
  .flow_list { position: relative; }
  .flow_list::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - .5px);
    display: block;
    width: 1px;
    height: 100%;
    border-left: 4px dotted #235da2;
  }
  .flow_list > li {
    position: relative;
    z-index: 1;
    padding: 30px 50px;
    border-radius: 10px;
    counter-increment: flow_cnt;
  }
  .flow_list > li:not(:last-child) {
    margin-bottom: 40px;
  }
  .flow_list > li .txtarea {
    flex: 1;
    margin-right: 24px;
  }
  .flow_list > li::before {
    content: '';
    content: counter(flow_cnt);
  }
  .apply--content .flow_list > li::before,
  .payment--content .flow_list> li::before {
    display: none;
  }
  .flow_list > li::before,
  .apply--content .flow_list > li span,
  .payment--content .flow_list > li span {
    position: absolute;
    top: -40px;
    left: 20px;
    opacity: .2;
    color: #235da2;
    font-size: 300%;
    font-weight: bold;
    font-family: fot-tsukuardgothic-std, sans-serif;
  }
  .apply--content .flow_list > li,
  .payment--content .flow_list > li {
    padding: 0;
  }
  .apply--content .flow_list .txtarea,
  .payment--content .flow_list .txtarea {
    padding: 40px;
  }
  .apply--content .flow_list .imgarea img,
  .payment--content .flow_list .imgarea img {
    border-radius: 0 10px 10px 0;
  }
  .resolution_content {
    width: calc(100%/3 - (16px*2/3));
  }
  .resolution_content .txtarea {
    padding: 0;
  }
  .resolution_content.flex-reverse .txtarea {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .resolution_content .example li {
    padding: 0;
    background-color: transparent;
  }
  .resolution_content .example li:not(:last-child) {
    margin-bottom: 4px;
  }
  .resolution_content .example li::before {
    margin-right: 8px;
  }
  .about_business--main-btm .resolution_content .example li::before {
    background-image: none;
    border: 4px solid;
    border-radius: 50%;
    width: 19px;
    color: #ffa525;
  }

  .business--info .case_contents--col {
    width: calc(100%/3 - (38px*2/3));
  }
  .business--info .case_contents--col:not(:last-child) {
    margin-right: 32px;
  }
  .business--info .case_contents--col .img {
    width: 100%;
    height: 200px;
    background-size: cover;
    margin-bottom: 8px;
  }
/*--- page-business dm part ---*/
.page-business .dm-mess-box .clearfix { overflow: hidden; }

.page-business .dm-mess-box {
	max-width: 1100px;
	margin-bottom: 4rem;
}

.page-business .dm-mess-title .mess-title-img {
	margin-bottom: 0.5rem;
}
.page-business .dm-mess-title .mess-title-tex {
	font-size: 190%;
	font-weight: bold;
}
.page-business .dm-sec-box {
    border-bottom: 2px solid #ededed;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}
.page-business .dm-sec-box .dm-sec-num {
	margin-bottom: 2.5rem;
}
.page-business .dm-sec-box .num-img { 
	float: left;
	margin-right: 1.5rem;
}
.page-business .dm-sec-box .num-text {
	float: left;
}
.page-business .dm-sec-box .num-title {
	padding: 0;
	font-size: 220%;
	font-weight: bold;
}
.page-business .dm-sec-box .num-title-text {
	font-size: 170%;
}
.page-business .dm-sec-fbox-cont .dm-sec-cont-img,
.page-business .dm-sec-box .dm-sec-cont-img {
	float: left;
	margin-right: 2.5rem;
}
.page-business .dm-sec-box .dm-sec-cont-text {
	float: left;
}
.page-business .dm-sec-box .dm-sec-list01 {
	margin-bottom: 0.5rem;
}
.page-business .dm-sec-box .dm-sec-list01 li {
	background: url("../images/personal/personal-dm-list-bg01.png") no-repeat 0rem 0.7rem;
	padding-left: 1.3rem;
	font-size: 120%;
}
.page-business .dm-sec-box .dm-sec-list02 {
	border: 3px solid #EC6D01;
	padding: 0.5rem;
	border-radius: 0.5rem;
	max-width: 300px;
}
.page-business .dm-sec-box .dm-sec-list02 li {
	background: url("../images/personal/personal-dm-img07.png") no-repeat 0rem 0.4rem;
	padding-left: 3rem;
	color: #4BB9A0;
	font-size: 150%;
	font-weight: bold;
}
.page-business .dm-sec-box .dm-sec-list03 {
	margin-bottom: 2rem;
}
.page-business .dm-sec-box .dm-sec-list03 li {
	background: url("../images/personal/personal-dm-img06.png") no-repeat 0rem 0.3rem;
	padding-left: 2rem;
	font-size: 120%;
}
.page-business .dm-sec-box .btn-green {
	max-width: 260px;
	float: right;
}
.page-business .dm-sec-box .dm-bg-orange {
    background-color: #ed6c00;
    font-size: 140%;
    padding: 0.5rem;
    font-weight: bold;
    color: #ffffff;
    border-radius: 0.3rem 0.3rem 0 0;
}
.page-business .dm-sec-box .dm-bg-orange-inner {
    border: 1px solid #ed6c00;
    border-radius: 0 0 0.3rem 0.3rem;
    padding: 1rem;
}
.page-business .dm-sec-box .dm-sec-sb-img {
    width: 60%;
    margin-bottom: 2rem;
}
.page-business .dm-sec-box .dm-sec-list04 li {
	background: url("../images/personal/personal-dm-list-bg02.png") no-repeat 0rem 0.7rem;
	padding-left: 1.3rem;
	font-size: 120%;
}
.page-business .dm-sec-fbox .dm-sec-fbox-title {
    text-align: center;
    font-size: 150%;
    margin-bottom: 2rem;
    background: #62B62F;
    border-radius: 0.4rem;
    font-weight: bold;
    color: #ffffff;
}
.page-business .dm-sec-fbox-cont .dm-sec-list05 {
	margin-bottom: 0.5rem;
}
.page-business .dm-sec-fbox-cont .dm-sec-list05 li {
	background: url("../images/personal/personal-dm-list-bg01.png") no-repeat 0rem 0.7rem;
	padding-left: 1.3rem;
	padding-bottom: 1.5rem;
	font-size: 120%;
}

.page-business .dm-sec-fbox .dm-sbox-img {
	float: left;
	margin-right: 2.5rem;
}
.page-business .dm-sec-fbox .sb-sbox-text {
	float: left;
	width: 55%;
}
.page-business .dm-sec-fbox .dm-sec-fbox-text {
    color: #62B62F;
    font-size: 130%;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.page-business .dm-sec-fbox .dm-sec-fbox-footer {
    border: 2px solid #C2DEA1;
    border-radius: 0.5rem;
    padding: 0.8rem;
}
.page-business .dm-sec-fbox .dm-sec-ft-img {
	float: left;
	margin-right: 2.5rem;
}
.page-business .dm-sec-fbox .dm-sec-ft-text {
	float: left;
}
.page-business .dm-sec-fbox .dm-sec-ft-title {
	font-size: 170%;
	font-weight: bold;
	color: #62B62F;
}
.page-business .dm-sec-fbox .dm-sec-list06 li {
	background: url("../images/personal/personal-dm-img06.png") no-repeat 0rem 0.3rem;
	padding-left: 2rem;
	font-size: 120%;
}

.page-business .dm-mess-box .dm-f-green {
	color: #62B62F;
	font-weight: bold;
	font-size: 110%;
 }

.page-business .dm-mess-box .dm-f-underline {
	font-weight: bold;
	background: url("../images/personal/personal-dm-under01.png") repeat-x 0 0;
	background-position: bottom;
}
.page-business .dm-sec-box .dm-sec-sb-img {
    text-align: center;
    width: 100%;
}
.page-business .dm-sec-list06 .dm-f-green {
	background: url("../images/personal/personal-dm-under01.png") repeat-x 0 0;
	background-position: bottom;
}

.page-business .dm-mess-box .f-right { float: right !important; }
.page-business .dm-mess-box .w38p { width: 38%; }
.page-business .dm-mess-box .w56p { width: 56%; }
.page-business .dm-mess-box .w60p { width: 60%; }
.page-business .dm-mess-box .m-0 { margin: 0; }
.page-business .dm-mess-box .mb-1 { margin-bottom: 0.2rem; }
.page-business .dm-mess-box .mb-2 { margin-bottom: 0.6rem; }
.page-business .dm-mess-box .mb-3 { margin-bottom: 1.5rem; }
.page-business .dm-mess-box .mb-4 { margin-bottom: 2rem; }
.page-business .dm-mess-box .mr-3 { margin-right: 1.3rem; }
.page-business .dm-mess-box .mt-2 { margin-top: 0.6rem; }


.page-business .alert-txt {
	font-size: 90%;
	color: #ff0000;
}
.page-business .al-icon {
	font-size: 60%;
	color: #ff0000;
	vertical-align: super;
}

.page-business .business--info .mess-title-img {
	color: #EC6D01;
}
.page-business .business--info .mess-title-img .title-p1 {
	font-size: 700%;
}
.page-business .business--info .mess-title-img .title-p2 {
	font-size: 350%;
}
.page-business .business--info .mess-title-img .title-p3 {
	font-size: 450%;
}
.page-business .business--info .dm-sec-box .dm-sec-info-txt {
	font-size: 80%;
}
.page-business .business--info .dm-sec-box .dm-sec-subbox01 {
	float: left;
	margin-right: 0.5rem;
}
.page-business .business--info .dm-sec-box .dm-sec-subbox02 {
	float: left;
	width: 75%;
}
.page-business .w50p { width: 50%; }
.page-business .mb-5 { margin-bottom: 5rem; }


  @media screen and (max-width: 767px) {
    .flow_list > li { padding: 16px 24px; }
    .apply--content .flow_list .txtarea,
    .payment--content .flow_list .txtarea {
      padding: 24px;
    }
    .apply--content .flow_list .imgarea img,
    .payment--content .flow_list .imgarea img {
      width: 100%;
      border-radius: 0 0 10px 10px;
    }

	/* dm pert */
	.page-business .dm-sec-fbox .sb-sbox-text {
		width: 100%;
	}

	.page-business .dm-mess-box .w60p {
		width: 100%;
	}
	.page-business .dm-mess-box .w56p {
		width: 100%;
	}
	.page-business .dm-mess-box .w38p {
		width: 100%;
	}
	.page-business .dm-sec-fbox .sb-sbox-text {
		width: 100%;
	}
	.page-business .dm-sec-fbox .dm-sec-ft-img {
	    float: none;
	    text-align: center;
	    margin-right: none;
	}
	.page-business .dm-sec-box .btn-green {
		max-width: none;
		float: none;
		text-align: center;
	}

	.page-business .w50p { width: 100%; }
	.page-business .business--info .dm-sec-box .dm-sec-subbox01 {
		float: none;
		margin-bottom: 0.5rem;
		text-align:center;
	}
	.page-business .business--info .dm-sec-box .dm-sec-subbox02 {
		float: none;
		width: 100%;
	}

    /* business SP
    *************************************************** */
    .business--info .intro02--content .example li.bg-wh {
      padding: 8px 0;
    }
    .business--info .intro02--content .imgarea {
      margin-top: 24px;
    }
    .about_business--main-btm .resolution_content { padding-top: 0px;}
    .about_business--main-btm .resolution_content:first-of-type { padding-top: 30px;}
    .resolution_content {
      width: 100%;
      margin-bottom: 20px;
    }
    .about_business--main-btm .resolution_content .example li::before {
      width: 13px;
      border: 2px solid;
    }
    .business--info .case_contents--col {
      width: 100%;
    }
    .business--info .case_contents--col:not(:last-child) {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .business--info .case_contents--col .img {
      background-position: center;
    }
  }

/* company
*************************************************** */
  .company_message--content {
    padding-top: 80px !important;
  }
  .company_message--txt img {
    float: left;
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .company_message--txt p:not(:last-child) {
    margin-bottom: 24px;
  }
  .company_message--txt p:not(.txt-rgt) {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .company_office--content a:hover {
    opacity: 0.7;
  }
  .company_date--content {
    position: relative;
    padding: 0 !important;
    color: #fff;
  }
  .company_date--content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  .company_date--content li {
    width: calc(100%/3);
    padding: 28px 20px;
    border-right: 1px solid #fff;
    text-align: center;
  }
  .company_date--content li:nth-child(1), 
  .company_date--content li:nth-child(2) {
    width: 50%;
    margin-bottom: 54px;
  }
  .company_date--content li:nth-child(2), 
  .company_date--content li:nth-child(5) {
    border-right: none;
  }
  .company_date--content h3 {
    font-size: 114%;
  }
  .company_date--content small {
    font-size: 66%;
  }
  .company_date--content span {
    display: block;
    font-size: 213%;
  }
  .company_date--content span strong {
    font-size: 188%;
    line-height: 1.2;
    font-weight: normal;
  }
  .company_date--content span small {
    font-size: 100%;
  }
  .company_idea--content .flex-col2:not(:last-child) {
    margin-bottom: 80px;
  }
  .company_idea--content .flex-col2:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .company_idea--content .flex-col2:nth-child(2n) > * {
    margin-left: 3%;
    margin-right: 0;
  }
  .company_idea--content .flex-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .company_idea--content .flex-col2:nth-child(2n) > *:nth-child(even) {
    margin-left: 0;
  }
  .company_otherinfo--content .otherinfo {
    width: calc(100%/2 - (64px*1/2));
  }
  .company_media--content .list-dl dd, 
  .company_award--content .list-dl dd {
    padding-left: 190px;
  }
  @media only screen and (max-width: 1180px) {
    .company_date--content .heading-1 small:last-of-type {
      font-size: 42%;
    }
    .company_date--content {
      background-attachment: unset;
    }
  }

/* company SP
*************************************************** */
  @media only screen and (max-width: 768px) {
    .company_message--content {
      padding-top: 40px !important;
    }
    .company_message--txt img {
      float: none;
      margin-right: 0;
      margin-bottom: 24px;
    }
    .company_date--content::after {
      display: none;
    }
    .company_date--content li {
      width: 100%;
      padding: 20px 20px;
      border-right: none;
    }
    .company_date--content li:nth-child(1), 
    .company_date--content li:nth-child(2) {
      width: 100%;
      margin-bottom: 0;
    }
    .company_date--content li:not(:last-child) {
      border-bottom: 1px solid #fff;
    }
    .company_date--content h3 {
      text-shadow: none;
      line-height: 1.4;
    }
    .company_date--content span {
      font-size: 170%;
    }
    .company_date--content small {
      display: inline-block;
      line-height: 1.6;
    }
    .company_media--content .list-dl dt, 
    .company_award--content .list-dl dt {
      position: static;
    }
    .company_media--content .list-dl dd, 
    .company_award--content .list-dl dd {
      padding-left: 0;
      padding-top: 8px;
    }
    .company_otherinfo--content .otherinfo {
      width: 100%;
    }
    .company_media--content {
      padding-top: 20px;
      margin-bottom: 56px;
    }
  }

/* company office
*************************************************** */
  .office_list-item:not(:last-child) { margin-bottom: 80px; }
  .office_info {
    position: relative;
    border-top: 1px solid #bfbfbf;
  }
  .office_info dt {
    position: absolute;
    left: 2em;
    padding-top: .5em;
    color: #235da2;
    font-family: fot-tsukuardgothic-std, sans-serif;
  }
  .office_info dd {
    padding-left: 160px;
    border-bottom: 1px solid #bfbfbf;
    padding-top: 8px;
    padding-bottom: 8px;
  }

/* ir
*************************************************** */
  .section_ttl-ir {
    margin-bottom: 16px;
    padding: 4px 16px;
    font-size: 120%;
    color: #fff;
    background-color: #235DA2;
  }
  .page-ir .post--date,
  .archive-ir-denshi .post--date,
  .archive-ir-briefing .post--date,
  .single-ir-briefing .post--date {
    color: #333;
  }
  .page-ir .posts-news .post--ttl a,
  .archive-ir-denshi .posts-news .post--ttl a,
  .archive-ir-briefing .posts-news .post--ttl a {
    color: #235da2;
  }
  .page-ir .posts-news .post--ttl a:hover,
  .archive-ir-denshi .posts-news .post--ttl a:hover,
  .archive-ir-briefing .posts-news .post--ttl a:hover {
    text-decoration: underline;
  }
  .page-ir .posts-news .post--date { margin-right: 16px; }

  /* --- ir--nav --- */
  .ir--nav a { display: block; }
  .ir--top .ir--nav a { color: #fff; }
  .ir--top .ir--nav a::after {
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab-wh.svg);
  }
  .ir--top .ir--nav::after {
    content: '';
    display: block;
    width: calc(33.33% - 8px);
  }
  .ir--top .ir--nav > li {
    width: calc(33.33% - 8px);
    margin-bottom: 16px;
    padding: 24px;
    background-color: #235DA2;
  }
  .ir--top .ir--nav_footer > li:not(:last-child) { margin-right: 24px; }

  /* --- ir--nav --- */
  .side_column .ir--nav_list--ttl {
    padding: 2px 16px;
    color: #fff;
    background-color: #235DA2;
  }
  .side_column .ir--nav > li {
    padding-bottom: 24px;
    transition: .4s ease-out;
  }
  .side_column .ir--nav > li:not(:last-child) { border-bottom: 1px solid #eee; }
  .side_column .ir--nav a,
  .side_column .ir--nav_footer a {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .side_column .active .ir--nav_list--ttl::after { transform: rotate(315deg); }
  .side_column .ir--nav_list--ttl::after { transform: rotate(135deg); }
  .side_column .active .ir--nav_list--ttl { margin-bottom: 8px; }
  .side_column .ir--nav_list-sub { transition: .4s ease-out; }

  /* --- ir--nav_footer --- */
  .side_column .ir--nav_footer {
    padding: 8px 24px;
    font-size: 82%;
  }
  .side_column .ir--nav_footer li:not(:last-child) { border-bottom: 1px solid #c0d2e8; }
  .side_column .ir--nav_footer a { display: flex; }

  @media screen and (max-width: 767px) {
    .page-ir .container .inner.flex {
      width: 100%;
      padding-bottom: 0;
    }
    .page-ir .container .main_column {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }
    .page-ir .container .side_column {
      padding: 30px 5%;
      background-color: #eaf4ff;
    }

    /* --- ir--nav --- */
    .ir--top .ir--nav > li {
      width: 100%;
      padding: 16px;
    }
    .ir--nav_footer { margin-bottom: 24px; }
    .ir--footer { flex-direction: column-reverse; }
  }

/* ir-greeting
*************************************************** */
  .ir-greeting--content img {
    width: 320px;
    margin-right: 48px;
  }
  .ir-greeting--content .txtarea { flex: 1; }

  @media screen and (max-width: 767px) {
    .ir-greeting--content > * {
      width: 100%;
    }
    .ir-greeting--content img {
      margin-bottom: 16px;
      margin-right: 0;
    }
  }

/* ir-highlight
*************************************************** */
  .graph--legend span:not(:last-child) { margin-right: 16px; }
  .graph--legend span::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .graph--legend span:nth-child(1)::before { background-color: #91d2fa; }
  .graph--legend span:nth-child(2)::before { background-color: #7097ff; }
  .graph--legend span:nth-child(3)::before { background-color: #0d66c3; }
  .graph--legend span:nth-child(4)::before { background-color: #003673; }
  .graph_list li {
    width: calc(50% - 16px);
    padding: 24px 32px;
    border: 1px solid #ddd;
    margin-bottom: 32px;
  }
  .graph_list .qir_table {
    font-size: 75%;
    border: 1px solid #ddd;
  }
  .graph_list .qir_table th,
  .graph_list .qir_table td {
    padding: 4px;
    border: 1px solid #ddd;
  }
  .graph_list .qir_table th {
    background-color: #eee;
    text-align: center;
  }
  .graph_list .qir_table th:first-child { width: 50px; }
  .graph_list .qir_table td { text-align: right; }
  .graph_list .chart {
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  @media screen and (max-width: 767px) {
    .graph--legend { align-items: flex-start; }
    .graph_list li {
      width: 100%;
      padding: 0;
    }
    .graph_ttl { padding-top: 16px; }
    .graph_table { padding-bottom: 16px; }
    .graph_ttl,
    .graph_table {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

/* ir-stock
*************************************************** */
  .ir-stock--content {
    display: flex;
    flex-wrap: wrap;
    font-size: 92%;
    border-style: none solid solid;
  }
  .ir-stock--content,
  .ir-stock--content dt,
  .ir-stock--content dd {
    box-sizing: border-box;
    border: 1px none #e1e8f1;
  }
  .ir-stock--content dt,
  .ir-stock--content dd {
    padding: 8px 16px;
    border-top-style: solid;
  }
  .ir-stock--content dt:last-of-type,
  .ir-stock--content dd:last-of-type {
    border-bottom-style: solid;
  }
  .ir-stock--content dd {
    width: 75%;
  }
  .ir-stock--content dt {
    width: 25%;
    background-color: #f4f9ff;
  }

  @media screen and (max-width: 767px) {
    .ir-stock--content dt,
    .ir-stock--content dd {
      width: 100%;
    }
  }

/* ir-csr
*************************************************** */
  .ir-csr--content a:not(.no-icon)[target="_blank"]::after {
    display: none;
  }
  .ir-csr--item + .ir-csr--item {
    padding-top: 48px;
    border-top: 1px solid #ddd;
  }

/* ir-activity
*************************************************** */
.ir-activity--content img {
  width: 90px;
  margin: 0px 40px 0px 20px;
}

.workstyle {
  margin-top: 30px;
}

.workstyle img {
  width: 85px;
  margin: 0px 39px 0px 25px;
}

.ir-activity--content .txtarea { flex: 1; }

.ir-activity--content ul{
list-style-type: disc;
margin: 5px 0px 0px 17px;
}

@media screen and (max-width: 767px) {
  .ir-activity--content > * {
    width: 100%;
  }
  .ir-activity--content img {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .workstyle img {
    margin: 0;
  }
}

/* ir-faq
*************************************************** */
  .ir-faq--content dt {
    margin-bottom: 8px;
    color: #235DA2;
    font-size: 112%;
    font-weight: bold;
  }
  .ir-faq--content dt::before {
    content: 'Q.';
    margin-right: 8px;
  }
  .ir-faq--content dd {
    margin-bottom: 40px;
    padding: 14px 30px;
    background-color: #f7f7f7;
  }

/* policy
*************************************************** */
  .policy--info p:not(:last-child) {
    margin-bottom: 8px;
  }
  .policy--info .list li:not(:last-child) {
    margin-bottom: 16px;
  }
  .policy--info p:not(:first-child),
  .policy--info .list li ul {
    margin-top: 8px;
  }
  .policy--content:not(:last-child) {
    margin-bottom: 80px;
  }
  .ir-contact--content address,
  .policy--content address {
    padding: 24px 40px;
    line-height: 1.5;
    background-color: #eee;
  }

  @media screen and (max-width: 767px) {
    .policy--info .btn a { width: 100%; }
    .policy--info .list li:not(:last-child) {
      margin-bottom: 8px;
    }
    .ir-contact--content address,
    .policy--content address {
      padding: 16px 24px;
    }
    .policy--content .table_line th { display: none; }
    .policy--content .table_line tr,
    .policy--content .table_line td {
      display: block;
      padding: 0;
    }
    .policy--content .table_line tr:not(:last-child) { margin-bottom: 24px; }
    .policy--content .table_line td::before {
      content: attr(data-label);
      display: block;
      background-color: #36bbad;
      color: #fff;
      font-weight: bold;
      padding: 8px 16px;
    }
    .policy--content .table_line td div {
      display: block;
      padding: 8px 16px;
    }
  }

/* elan_wifi
*************************************************** */

  .elan_wifi H5 {
    margin: 20px 0px;
  }
  .elan_wifi p:not(:last-child) {
    margin-bottom: 8px;
  }

/* leaving-hospitalset
*************************************************** */
  .lh-list{
    list-style: disc;
    padding-left: 2.4rem;
  }
  .mess-box {
    height: 30rem;
    overflow-x: auto;
    border: 1px solid #cfcfcf;
    padding: 1.5rem;
  }
  .lh-title {
    font-size: 120%;
  }

/* sitemap
*************************************************** */
  .sitemap--list { width: 49%; }
  .sitemap--list > li:not(.sitemap--item-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) { margin-top: 10px; }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 16px; }
  .sitemap--list li a {
    display: block;
    text-decoration: none;
  }
  .sitemap--list li a:hover {
    color: #4267b2;
    text-decoration: underline;
  }
  .sitemap--item-child:not(.sitemap--item-ttl) { font-size: 85%; }

  /* --- category --- */
  .sitemap--list li.sitemap--item-child a { padding-left: 8px; }
  .sitemap--list li.sitemap--item-child.sitemap--item-child {
    padding: 3px 0 3px 24px;
  }
  .sitemap--list li.sitemap--item-child.sitemap--item-child + .sitemap--item-page:not(.sitemap--item-child) {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #ddd;
  }
  .sitemap--list li.sitemap--item-child.sitemap--item-page:last-child { padding-bottom: 10px; }
  .sitemap--list li.sitemap--item-taxonomy ul { letter-spacing: -.4em; }
  .sitemap--list li.sitemap--item-taxonomy ul li {
    padding: 0;
    margin-right: 8px;
    letter-spacing: normal;
  }
  .sitemap--list li.sitemap--item-child a::before {
    content: '-';
    display: inline-block;
    margin-right: 4px;
  }
  .sitemap--item.sitemap--item-ttl,
  .sitemap--item-page:not(.sitemap--item-child),
  .sitemap--item-page.sitemap--item-child:last-child {
    border-bottom: 1px solid #ddd;
  }
  .sitemap--item-page.sitemap--item-child:last-child {
    padding-bottom: 8px;
  }
  @media screen and (max-width: 767px) {
    .sitemap--list { width: 100%; }
    .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 8px; }
    .sitemap--list-posts.sitemap--list .sitemap--item-ttl:first-child { margin-top: 10px; }
    .sitemap--item.sitemap--item-ttl:not(:first-child) {
      padding-top: 10px;
      border-top: 1px solid #ddd;
    }
    .sitemap--item-ttl + .sitemap--item-ttl {
      border-top: none !important;
      padding-top: 0 !important;
    }
  }

/* contact
*************************************************** */
  .contact .page_links {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .contact .page_links li {
    width: calc(100%/3 - (18px*2/3));
    margin-right: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .contact .page_links li:nth-child(3), 
  .contact .page_links li:last-child {
    margin-right: 0;
  }
  .contact .page_links li a {
    width: 100%;
    min-height: 78px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .contact_personal--attention li {
    background-color: #fff;
    padding: 24px;
    border-radius: 3px;
  }
  .contact_personal--attention li strong {
    color: #235da2;
    font-size: 114%;
  }
  .contact .contact_box {
    padding: 24px 0;
  }
  .contact .contact_box .btn a {
    padding: 36px 24px 34px 34px;
  }
  .contact .contact_box .tel_btn {
    border: 2px solid #235da2;
    border-radius: 3px;
    padding: 13px 50px 12px;
    margin-left: 24px;
    line-height: 1.4;
  }

  /* contact SP
  *************************************************** */
  @media only screen and (max-width: 768px) {
    .contact .page_links {
      flex-wrap: wrap;
      padding: 0 5% 0;
    }
    .contact .page_links li {
      width: 100%;
      margin-right: 0;
      margin-bottom: 16px;
    }
    .contact .contact_box .tel_btn {
      padding: 12px 39px 8px;
      margin-left: 0;
      margin-top: 15px;
      line-height: 1.5;
    }

  }


/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
  .main_column { flex: 1; }

  /* --- post --- */
  .post { position: relative; }
  .post--ttl { font-weight: normal; }
  .post--link:hover,
  .posts-news .post--ttl a:hover {
    color: #235DA2;
  }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .4s ease-out;
    border-radius: 8px;
  }
  .posts:not(.posts-side):not(.posts-news):not(.posts-ir_news) .post {
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .11);
    border-radius: 8px;
    background-color: #fff;
  }
  .posts:not(.posts-side):not(.posts-news):not(.posts-ir_news) .post--link:hover::before { background-color: rgba(35, 93, 162, .3); }
  .post--date { color: #777; }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  .cat_list a,
  .cat-ir {
    display: inline-block;
    vertical-align: middle;
    font-size: 79%;
    color: #333;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 20px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
    background-color: #B4C7E7;
  }
  .catfm {
    background-color: #FFF2CC !important;
  }
  .catcl {
    background-color: #FBE5D6 !important;
  }
  .catcov {
    background-color: #FFCCCC !important;
  }
  .catot {
    background-color: #E2F0D9 !important;
  }

  .cat_list a:hover { opacity: .5; }
  .cat-ir.press { background-color: #CECDFA; }
  .cat-ir.yuho { background-color: #F8E2B1; }
  .cat-ir.pr { background-color: #FAD7D6; }
  .cat-ir.tanshin { background-color: #C6DEF2; }
  .cat-ir.ir_material_for_fiscal_ym { background-color: #E0F7AE; }
  .cat-ir.ir_material2 { background-color: #B7F9CC; }

  @media screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-right: 0;
      margin-bottom: 40px;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .main_column + .side_column { margin-left: 80px; }
  .side_column a:not([target="_blank"]) { display: block; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 120%;
    letter-spacing: .2em;
    line-height: 1;
    border-bottom: 4px dotted #777;
  }
  .side--ttl small {
    font-size: 62%;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 8px;
  }

  /* --- post --- */
  .posts-side .post:not(:last-child) { margin-bottom: 16px; }
  .posts-side .post--img {
    margin-right: 16px;
    border-radius: 3px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--date { margin-bottom: 0; }
  .posts-side .post--ttl {
    line-height: 1.4;
    font-weight: normal;
  }

  /* --- archive --- */
  .side_column .archive_list--ttl:hover {
    cursor: pointer;
  }
  .side_column .archive_list--ttl::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month {
    display: none;
    padding-top: 4px;
    padding-bottom: 8px;
  }
  .side_column .archive_list--ttl {
    padding: 4px 0;
  }
  .side_column .archive_month li a {
    display: block;
  }

  /* --- wp-calendar --- */
  #wp-calendar {
    width: 100%;
    text-align: center;
  }
  #wp-calendar td {
    padding: 2px 0;
  }
  #wp-calendar tbody td a {
    background-color: #cdcdcd;
    display: inline-block;
    width: 25px;
    height: 25px;
    text-decoration: none;
    border-radius: 15px;
  }
  #wp-calendar #prev a,
  #wp-calendar #next a {
    background: #56a0b9;
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-top: 16px;
  }
  @media screen and (max-width: 1100px) {
    .side_column { width: 100%; }
    .main_column + .side_column { margin-left: 0; }
  }

  /* --- archive-pulldown --- */
  .archive-pulldown {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pulldown .archive_list {
    position: relative;
    font-size: 92%;
  }
  .archive-pulldown .archive_list:not(:last-child) { margin-right: 24px; }
  .archive-pulldown .archive_list a {
    display: block;
    padding: 2px 16px;
    text-align: left;
  }
  .archive-pulldown .archive_list a:not(:last-child) { border-bottom: 1px solid #cdcdcd; }
  .archive-pulldown .archive_list--label { margin-right: 8px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 8px 54px 8px 32px;
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .archive_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pulldown .archive_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

/* voice
**************************************** */
  .posts-voice .post {
    padding: 32px;
    font-size: 110%;
  }
  .posts-voice .post--txtarea { flex: 1;}
  .posts-voice .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .posts-voice .post--img {
    padding-top: 56px;
    text-align: center;
  }
  .main_column .posts-voice .post:not(:last-child) { margin-bottom: 32px; }

  /* --- voice-business --- */
  .voice-business {
    padding-bottom: 260px;
    background-image:
      url(/wp/wp-content/themes/original_theme/images/voice--business-bg.png),
      url(/wp/wp-content/themes/original_theme/images/voice--bg-business.jpg);
    background-size:
      auto,
      cover;
    background-position:
      center bottom,
      center;
    background-repeat:
      no-repeat,
      no-repeat;
  }
  .voice-business .posts-voice .post { height: 100%; }
  .voice-business .post--wrap:nth-child(1) .post::after {
    right: 40px;
    border-width: 0 32px 32px 0;
    border-color: transparent #ffffff transparent transparent;
  }
  .voice-business .post--wrap:nth-child(2) .post::after {
    left: calc(50% - 14px / 2);
    border-width: 32px 18px 0 18px;
    border-color: #ffffff transparent transparent transparent;
  }
  .voice-business .post--wrap:nth-child(3) .post::after {
    left: 40px;
    border-width: 32px 32px 0 0;
    border-color: #ffffff transparent transparent transparent;
  }

  @media screen and (max-width: 1100px) {
    .posts-voice { margin-bottom: 56px; }
    .archive-voice .container > .flex,
    .single-voice .container > .flex,
    .archive-ir-denshi .container > .flex,
    .page-ir .container > .flex {
      display: block;
    }
    .voice-personal .posts-voice::after,
    .voice-personal .posts-voice .post--wrap {
      width: calc(50% - 16px);
    }
    .posts-voice .post {
      padding: 32px;
    }
  }

  @media screen and (max-width: 768px) {
    .posts-voice { margin-bottom: 32px; }
    .posts-voice .post {
      display: block;
      padding: 24px 32px;
    }
    .posts-voice .post--img {
      padding-left: 0;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 16px;
      text-align: center;
    }
    .posts-voice .post--img img {
      width: auto;
      max-width: 100%;
    }
    .voice-business {
      padding-bottom: 40%;
      background-size: 70%, cover;
    }
    .voice-business .post--wrap .post::after {
      display: none;
    }
  }

/* news
**************************************** */
  .posts-news .post:not(:first-child) { padding-top: 16px; }
  .posts-news .post:not(:last-child) {
    border-bottom: 1px solid #e0e5ec;
    padding-bottom: 16px;
  }
  .posts-news .post--ttl a {
    color: #57a4c8;
    font-weight: normal;
  }
  .posts-news .post--date { margin-right: 8px; }

  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a { color: #fff; }

  @media screen and (max-width: 768px) {
    .posts-news .post { display: block; }
    .posts-news .post .eirItem_head { display: block; }
  }

/* faq
**************************************** */
  .faq_anker .btn {
    display: inline-block;
    margin-bottom: 8px;
  }
  .faq_anker .btn a {
    padding-left: 24px;
    padding-right: 24px;
  }
  .faq_list > .faq_list--content { padding-bottom: 80px; }
  .faq_list > .faq_list--content:not(:first-child) { padding-top: 80px; }
  .faq_list > .faq_list--content:nth-child(2n) { background-color: #eaf4ff; }
  .faq--item:not(:last-child) { margin-bottom: 80px; }
  .faq--content .heading-3 {
    border-bottom: 2px dotted #235DA2;
    padding-bottom: 8px;
    line-height: 1.5;
  }
  .faq--content .heading-3::before {
    content: 'Q.';
    margin-right: 8px;
  }
  .faq--content:not(:last-child) {
    margin-bottom: 40px;
  }

  @media screen and (max-width: 1080px) {}
  @media screen and (max-width: 767px) {
    .faq_anker .btn { display: block; }
    .faq_anker .btn a {
      padding-left: 8px;
      padding-right: 8px;
    }
    .faq--info .heading-1,
    .faq--info .heading-2 {
      text-align: center;
    }
    .faq_list > .faq_list--content { padding-bottom: 40px; }
    .faq_list > .faq_list--content:not(:first-child) { padding-top: 40px; }
    .faq--item:not(:last-child) { margin-bottom: 40px; }
  }


/* ##############################################################################

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
  .wp-pagenavi .current,
  .wp-pagenavi a {
    position: relative;
    max-width: 42%;
    display: inline-block;
    vertical-align: top;
    background: #fff;
    color: #235da2;
    border: 1px solid #235da2;
    line-height: 1.4;
    padding: 8px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wp-pagenavi a:hover,
  .wp-pagenavi .current {
    color: #fff;
    background-color: #235DA2;
  }
  .wp-pagenavi .pages {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .wp-pagenavi a:not(:last-child),
  .wp-pagenavi .current {
    margin-right: 8px;
  }
  @media  only screen and (max-width: 767px) {
    .wp-pagenavi .current,
    .wp-pagenavi a {
      max-width: 100%;
      margin-bottom: 8px;
    }
  }


/* ##############################################################################

    FORMY

############################################################################## */
  #formy_form table,
  .wpcf7-form table {
    width:100%;
  }
  #formy_form th,
  #formy_form td,
  .wpcf7-form th,
  .wpcf7-form td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: solid 1px #ddd;
  }
  #formy_form th,
  .wpcf7-form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 34%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea,
  .wpcf7-form table input[type="text"],
  .wpcf7-form table input[type="email"],
  .wpcf7-form table input[type="tel"],
  .wpcf7-form table input[type="date"],
  .wpcf7-form table input[type="password"],
  .wpcf7-form table textarea {
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    vertical-align: bottom;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea,
  .wpcf7-form table input[type="text"],
  .wpcf7-form table input[type="email"],
  .wpcf7-form table input[type="tel"],
  .wpcf7-form table input[type="date"],
  .wpcf7-form table input[type="password"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 100%;
  }
  #formy_form textarea,
  .wpcf7-form textarea {
    height: 100px;
  }
  #formy_form select,
  .wpcf7-form select {
    height: 40px;
  }
  #formy_form ul,
  .wpcf7-form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover,
  .wpcf7-form input:hover {
    opacity: .7;
  }
  #formy_form textarea:hover,
  .wpcf7-form textarea:hover {
    opacity: .7;
  }
  #formy_form input:focus,
  .wpcf7-form input:focus {
    outline: none;
  }
  #formy_form .parsley-validated,
  .wpcf7-form .parsley-validated {
    background-color: #cdcdcd;
  }
  #formy_form .parsley-error,
  .wpcf7-form .parsley-error {
    background-color: #fee;
  }
  #formy_form .parsley-success,
  .wpcf7-form .parsley-success {
    background-color: #fff;
  }
  .help_text {
    font-size: 85%;
    color: #999;
  }
  .hidden_help { display: none; }
  .form_privacy  {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }
  .form_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
  }

  .form_ank {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }
  .form_ank div {
    overflow-y: scroll;
    height: 260px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
  }

  .requiredIcon {
    background: #f55;
    color: #fff;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #wpcf7-submit_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 16px 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  #wpcf7-submit_btn input {
    font-size: inherit;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    -webkit-appearance: none;
    appearance: none;
  }
  #wpcf7-submit_btn input[disabled] {
    background-color: #ccc;
    pointer-events: none;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"],
  .wpcf7-form ul li input[type="radio"],
  .wpcf7-form ul li input[type="checkbox"] {
    display: none !important;
  }
  #formy_form ul li label,
  .wpcf7-form ul li .wpcf7-list-item-label {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 8px 0 40px;
    cursor: pointer;
  }
  #formy_form ul li label:hover,
  .wpcf7-form ul li .wpcf7-list-item-label:hover {
    opacity: .7;
  }
  #formy_form ul li label::before,
  .wpcf7-form ul li .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #788b93;
    left: 16px;
    top: 12px;
  }
  #formy_form ul li input[type="radio"] + label::before,
  .wpcf7-form ul li input[type="radio"] + .wpcf7-list-item-label::before {
    border-radius: 10px;
  }
  #formy_form ul li input[type="radio"]:checked + label,
  #formy_form ul li input[type="checkbox"]:checked + label,
  .wpcf7-form ul li input[type="radio"]:checked + label,
  .wpcf7-form ul li input[type="checkbox"]:checked + .wpcf7-list-item-label,
  .wpcf7-form ul li input[type="checkbox"]:checked + input + .wpcf7-list-item-label {
    color: #e75f5f;
    font-weight: bold;
  }
  #formy_form ul li input[type="radio"]:checked + label::before,
  #formy_form ul li input[type="checkbox"]:checked + label::before,
  .wpcf7-form ul li input[type="radio"]:checked + label::before,
  .wpcf7-form ul li input[type="checkbox"]:checked + .wpcf7-list-item-label::before,
  .wpcf7-form ul li input[type="checkbox"]:checked + input + .wpcf7-list-item-label::before {
    border-color: #e75f5f;
  }
  #formy_form ul li input[type="radio"]:checked + label::after,
  #formy_form ul li input[type="checkbox"]:checked + label::after,
  .wpcf7-form ul li input[type="radio"]:checked + label::after,
  .wpcf7-form ul li input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
  .wpcf7-form ul li input[type="checkbox"]:checked + input + .wpcf7-list-item-label::after {
    content: "";
    width: 10px;
    height: 18px;
    top: 4px;
    left: 20px;
    border-right: 2px solid #e75f5f;
    border-bottom: 2px solid #e75f5f;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover,
  .wpcf7-form .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #ff6600; }
  #total_required {
    padding: 16px;
    color: #f55555;
    text-align: center;
  }
  .wpcf7-list-item { margin: 0 !important; }
  .wpcf7-confirm,
  .wpcf7-submit { /* OKボタンのスタイル */
    background-color: #659ccc;
  }
  .wpcf7-back { /* 戻るボタンのスタイル */
    background-color: #ccc;
    margin-right: 16px;
  }
  span.wpcf7-list-item { /* ラジオボタンを縦並び */
    display: block;
  }
  .first.wpcf7-list-item { /* ラジオボタンの変なパディング消す */
    padding-top: 0;
  }
  .wpcf7c-conf { /* 確認画面をシンプルに */
    background-color: #fff;
    border: none !important;
  }
  div.wpcf7-mail-sent-ok {
    border: 2px solid #24b3a4;
  }

  @media screen and (max-width: 767px) {
    .wpcf7-submit_btn input {
      width: 100%;
      margin-bottom: 8px;
    }
  }
  @media  only screen and (max-width: 767px) {
    #formy_form th,
    #formy_form td,
    .wpcf7-form th,
    .wpcf7-form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th,
    .wpcf7-form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
    }
    #formy_form td,
    .wpcf7-form td {
      padding-top: 0;
    }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
  }

.s_eirList_item_new{  
display: inline-block;  
background-color:#F90;  
vertical-align: middle; 
padding: 0px 10px;  
line-height: 15px;  
color:#FFF; 
font: 0.6rem 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', arial, helvetica, clean, sans-serif;  
}

/* ##############################################################################

    QUESTIONNAIRE

############################################################################## */

 .page-questionnaire .cont-hed dt,
 .page-questionnaire .cont-hed dd { display: inline-block; }
 .page-questionnaire .cont-hed dt { margin-right: 1.5rem; }

 .page-questionnaire .clearfix { overflow: hidden; }
 .page-questionnaire .f-left { float: left; width: 49%; }
 .page-questionnaire .f-right { float: right; width: 49%; }
 .page-questionnaire .ans-img { width: 500px; }
 .page-questionnaire .font-b { font-weight: bold; }


 .page-questionnaire .voice-cont {
    display:table;
    margin-bottom: 1rem;
 }
 .page-questionnaire .voice-box {
    display:table-cell;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 1rem;
    background-color:#fff8ed;
    width: 49%;
 }
 .page-questionnaire .space-box {
    display:table-cell;
    width:1%;
 }
 .page-questionnaire .cont-title {
    margin-bottom: 1.5rem;
    font-size: 140%;
    text-align: center;
 }
 .page-questionnaire .vf-r-text {
    text-align: right;
 }

 .page-questionnaire .mb-1 { margin-bottom: 1rem; }
 .page-questionnaire .mb-2 { margin-bottom: 2rem; }
 .page-questionnaire .mb-3 { margin-bottom: 3rem; }
 .page-questionnaire .mb-4 { margin-bottom: 4rem; }
 .page-questionnaire .mb-5 { margin-bottom: 5rem; }

 .page-questionnaire .mr-1 { margin-right: 1rem; }
 .page-questionnaire .mr-2 { margin-right: 2rem; }
 .page-questionnaire .mr-3 { margin-right: 3rem; }
 .page-questionnaire .mr-4 { margin-right: 4rem; }
 .page-questionnaire .mr-5 { margin-right: 5rem; }

 .page-questionnaire .w580 { width: 580px; }


/* ##############################################################################

    dounyu jirei

############################################################################## */
 .archive-case-study .w19r { width: 19rem; }
 .archive-case-study .w25r { width: 25rem; }
 .archive-case-study .mb-1 { margin-bottom: 1rem; }

 .page-business .case-study-box { margin-top: 56px; }
 .page-business .mb-5r { margin-bottom: 5rem; }


/*2022 お客様アンケート */
#questionnaire .que-title {
	font-size: 120%;
	margin-bottom: 0.6rem;
	text-align:center;
}

#questionnaire .que-hd{
	margin-bottom: 2rem;
}
#questionnaire .que-hd {
	text-align: center;
	padding: 0 1rem;
}

#questionnaire .pltext-box {
    padding: 1.5rem;
    height: 40rem;
    border: 1px solid #cccccc;
    overflow-y: auto;
}

#questionnaire .que-cont{
    padding: 0 1rem;
}
#questionnaire .chk-box {
    text-align: center;
    margin-bottom: 1.5rem;
}
#questionnaire .chk-box label {
    background-color: #f1f5ff;
    padding: 0.6rem;
    border-radius: 0.2rem;
}

#questionnaire .ques-link-box {
	text-align: center;
}
#questionnaire .ques-link-btn {
    padding: 12px 40px;
    font-weight: bold;
    border-radius: 0.2rem;
    font-size: 115%;
    color: #ffffff;
    background-color: #36bbad;
    border: 1px solid #36bbad;
    transition: .5s ease-out;
}
#questionnaire .ques-link-btn:hover {
    background-color: #159285;
}
#questionnaire .ques-link-btn:disabled {
    background-color: #cccccc;
    border: 1px solid #bbbbbb;
}

/* electronic-demand
**************************************** */
.electronic-demand-anker .btn {
  display: inline-block;
  margin-bottom: 8px;
}
.electronic-demand-anker .btn a {
  padding-left: 24px;
  padding-right: 24px;
}
.electronic-demand-list > .electronic-demand-list--content { padding-bottom: 80px; }
.electronic-demand-list > .electronic-demand-list--content:not(:first-child) { padding-top: 80px; }
.electronic-demand-list > .electronic-demand-list--content:nth-child(2n) { background-color: #eaf4ff; }
.electronic-demand--item:not(:last-child) { margin-bottom: 80px; }
.electronic-demand--content .heading-3 {
  border-bottom: 2px dotted #235DA2;
  padding-bottom: 8px;
  line-height: 1.5;
}
.electronic-demand--content .heading-3::before {
  content: 'Q.';
  margin-right: 8px;
}
.electronic-demand--content:not(:last-child) {
  margin-bottom: 40px;
}

.electronic-demand-blue {
  color:#0000ff;
}

.electronic-demand-red {
  color:#ff0000;
}

.page-01-2 .page_ttl .txt-ctr .page_ttl-jp,
.page-02-2 .page_ttl .txt-ctr .page_ttl-jp,
.page-01-2 .page_ttl .txt-ctr .page_ttl-en,
.page-02-2 .page_ttl .txt-ctr .page_ttl-en {
  display: none;
}

.page-01-2 .electronic-demand-line-blue {
  border: 1px solid #0000ff;
}

.page-02-2 .electronic-demand-line-red {
  border: 1px solid #ff0000;
}

@media screen and (max-width: 1080px) {
  .electronic-demand-logo { text-align: center; }
}

@media screen and (max-width: 767px) {
  .electronic-demand-anker .btn { display: block; }
  .electronic-demand-anker .btn a {
    padding-left: 8px;
    padding-right: 8px;
  }
  .electronic-demand--info .heading-1,
  .electronic-demand--info .heading-2 {
    text-align: center;
  }
  .electronic-demand-list > .electronic-demand-list--content { padding-bottom: 40px; }
  .electronic-demand-list > .electronic-demand-list--content:not(:first-child) { padding-top: 40px; }
  .electronic-demand--item:not(:last-child) { margin-bottom: 40px; }

  .electronic-demand-logo .elan-logo {
    float: none;
  }
}

.electronic-demand-logo {
  overflow: hidden;
  float: right;
}

.electronic-demand-logo .elan-logo {
  float: left;
  margin-bottom: 0.5rem;
}

.electronic-demand-logo small {
  display: block;
  margin-bottom: 16px;
}

.electronic-demand-language-div {
  display: flex;
  justify-content: right;
}

.electronic-demand-language {
  text-align: center;
  font-size: 1rem;
  min-width: 10%;
  color: #ff0000;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  border-color: #ff0000;
}

.radio-item {
    margin-bottom: 5px;
}


/* address-unknown 宛所不明
**************************************** */
.address-unknown-anker .btn {
  display: inline-block;
  margin-bottom: 8px;
}
.address-unknown-anker .btn a {
  padding-left: 24px;
  padding-right: 24px;
}
.address-unknown-list > .address-unknown-list--content { padding-bottom: 80px; }
.address-unknown-list > .address-unknown-list--content:not(:first-child) { padding-top: 80px; }
.address-unknown-list > .address-unknown-list--content:nth-child(2n) { background-color: #eaf4ff; }
.address-unknown--item:not(:last-child) { margin-bottom: 80px; }
.address-unknown--content .heading-3 {
  border-bottom: 2px dotted #235DA2;
  padding-bottom: 8px;
  line-height: 1.5;
}
.address-unknown--content .heading-3::before {
  content: 'Q.';
  margin-right: 8px;
}
.address-unknown--content:not(:last-child) {
  margin-bottom: 40px;
}

.address-unknown-blue {
  color:#0000ff;
}

.address-unknown-red {
  color:#ff0000;
}

.page-03-2 .page_ttl .txt-ctr .page_ttl-jp {
  display: none;
}

.page-03-2 .address-unknown-line-blue {
  border: 1px solid #0000ff;
}

.page-03-2 .address-unknown-text {
  margin-bottom: 3rem;
}

.page-03-2 .mb-3r {
  margin-bottom: 3rem;
}

.page-03-2 .info-list {
  overflow: hidden;
}
.page-03-2 .info-list dt{
  float: left;
  width: 30%;
}

.page-03-2 .txt-center {
  text-align: center;
}


@media screen and (max-width: 1080px) {
  .address-unknown-logo { text-align: center; }
}

@media screen and (max-width: 767px) {
  .address-unknown-anker .btn { display: block; }
  .address-unknown-anker .btn a {
    padding-left: 8px;
    padding-right: 8px;
  }
  .address-unknown--info .heading-1,
  .address-unknown--info .heading-2 {
    text-align: center;
  }
  .address-unknown-list > .address-unknown-list--content { padding-bottom: 40px; }
  .address-unknown-list > .address-unknown-list--content:not(:first-child) { padding-top: 40px; }
  .address-unknown--item:not(:last-child) { margin-bottom: 40px; }

  .address-unknown-logo .elan-logo {
    float: none;
  }
}

.address-unknown-logo {
  overflow: hidden;
  float: right;
}

.address-unknown-logo .elan-logo {
  float: left;
  margin-bottom: 0.5rem;
}

.address-unknown-logo small {
  display: block;
  margin-bottom: 16px;
}

.address-unknown-language-div {
  display: flex;
  justify-content: right;
}

.address-unknown-language {
  text-align: center;
  font-size: 1rem;
  min-width: 10%;
  color: #ff0000;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  border-color: #ff0000;
}

/* ヘルスレンズ
**************************************** */

.helthlens-list > .helthlens-list--content { padding-bottom: 80px; }
.helthlens-list > .helthlens-list--content:not(:first-child) { padding-top: 80px; }
.helthlens-list > .helthlens-list--content:nth-child(2n) { background-color: #eaf4ff; }
.helthlens--item:not(:last-child) { margin-bottom: 80px; }
.helthlens--content .heading-3 {
  border-bottom: 2px dotted #235DA2;
  padding-bottom: 8px;
  line-height: 1.5;
}

.helthlens--content:not(:last-child) {
  margin-bottom: 40px;
}

.helthlens-blue {
  color:#0000ff;
}

.helthlens-red {
  color:#ff0000;
}

.page-helthlens .page_ttl .txt-ctr .page_ttl-jp {
  display: none;
}

.page-helthlens .helthlens-line-blue {
  border: 1px solid #0000ff;
}

.page-helthlens .he-cont {
	margin-bottom: 3rem;
}

.page-helthlens .he-title {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 0.5rem;

}

.page-helthlens .he-sbtitle {
	font-weight: bold;
	font-size: 120%;
	margin-bottom: 0.2rem;
}

.page-helthlens .he-list {
	list-style: auto;
	padding-left: 2.5rem;
	margin-bottom: 2rem;
}

.page-helthlens .he-list li {
	padding: 0 0 0.2rem 0;
}

.page-helthlens .he-cont p {
	margin-bottom: 1rem;
}

.page-helthlens ol.he-list-type2 {
	list-style: none;
	counter-reset: mylist;
	padding-left: 0;
	margin-bottom: 2rem;
}
.page-helthlens ol.he-list-type2 li {
	counter-increment: mylist;
	margin: 5px 0;
}
.page-helthlens ol.he-list-type2 li::before {
	content: counter(mylist) "） ";
	font-weight: bold;
}

.page-helthlens .he-table {
	width: 100% !important;
	border: 1px solid #cccccc;
}
.page-helthlens .he-table th {
	text-align: left;
	font-size: 110%;
	font-weight: bold;
	background: #c2dfff;
	padding: 0.5rem;
	border: 1px solid #cccccc;
}
.page-helthlens .he-table td {
	text-align: left;
	padding: 0.5rem;
	border: 1px solid #cccccc;
}

.page-helthlens .he-list-type3 {
	list-style: disc;
	padding-left: 2.5rem;
}

.page-helthlens .he-list-type3 li {
	padding: 0 0 0.2rem 0;
}




.page-helthlens {
	.h1re { height: 1rem; }

	.mb2rem { margin-bottom: 2rem; }
	.mb3rem { margin-bottom: 3rem; }

	.mt3rem { margin-top: 3rem; }

	.w30p { width: 30%; }
	.w70p { width: 70%; }

}


@media screen and (max-width: 1080px) {
  .helthlens-logo { text-align: center; }
}

@media screen and (max-width: 767px) {
  .helthlens--info .heading-1,
  .helthlens--info .heading-2 {
    text-align: center;
  }
  .helthlens-list > .helthlens-list--content { padding-bottom: 40px; }
  .helthlens-list > .helthlens-list--content:not(:first-child) { padding-top: 40px; }
  .helthlens--item:not(:last-child) { margin-bottom: 40px; }

  .helthlens-logo .elan-logo {
    float: none;
  }

}

.helthlens-logo {
  overflow: hidden;
  float: right;
}

.helthlens-logo .elan-logo {
  float: left;
  margin-bottom: 0.5rem;
}

.helthlens-logo small {
  display: block;
  margin-bottom: 16px;
}


