/* ##############################################################################

    KEYFRAMES

############################################################################## */

  @keyframes eyecatch_slide_in {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  @keyframes balloon {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes bounce {
    from, 20%, 53%, 80%, to {
      -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
      animation-timing-function: cubic-bezier(.215, .61, .355, 1);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    40%, 43% {
      -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
      animation-timing-function: cubic-bezier(.755, .05, .855, .06);
      -webkit-transform: translate3d(0, -30px, 0);
      transform: translate3d(0, -30px, 0);
    }
    70% {
      -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
      animation-timing-function: cubic-bezier(.755, .05, .855, .06);
      -webkit-transform: translate3d(0, -15px, 0);
      transform: translate3d(0, -15px, 0);
    }
    90% {
      -webkit-transform: translate3d(0, -4px, 0);
      transform: translate3d(0, -4px, 0);
    }
  }
  .waypoint.active {
    animation-name: eyecatch_slide_in;
    animation-duration: 1s;
  }
  .waypoint-balloon {
    opacity: 0;
  }
  .waypoint-balloon.active {
    animation-name: balloon;
    animation-duration: .4s;
    animation-fill-mode: forwards;
  }
  .waypoint-human.active {
    animation-name: bounce;
    animation-duration: .6s;
    animation-fill-mode: forwards;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  @media all and (-ms-high-contrast:none) {
    .waypoint,
    .waypoint-balloon,
    .waypoint-human,
    .reason--item .line {
      opacity: 1;
    }
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
  }
  body { height: 100%; }
  a { text-decoration: none; }
  a img { transition: .2s ease-out; }
  a img:hover { opacity: .5; }
  #breadcrumbs { font-size: 82%; }
  .breadcrumb_last { color: #e73c3c; }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-xxs { max-width: 640px; }
  .inner-xs { max-width: 720px; }
  .inner-sm { max-width: 880px; }
  .inner-md { max-width: 960px; }
  .inner-lg { max-width: calc(100% - 112px); }


  /* --- 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,
  .pc-none-flex,
  .pc-none-tb { 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: 1140px) {
    a[ontouchstart=""] { pointer-events: none; }
    .inner { width: 90%; }
    .tb-none { display: none; }
    .pc-none-tb { display: block; }
  }
  @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;
    }

    /* --- section_pdg --- */
    .section_pdg {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    #page_ttl + #wrapper > .section_pdg:first-child {
      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;
  }

  @media screen and (max-width: 1080px) {
    /* --- 縦並び - tablet --- */
    .flex-tb-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 767px) {
    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }

/* txt
**************************************** */
  .txt-lg { font-size: 107%; }
  .txt-sm { font-size: 93%; }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }
  .txt-red { color: #e73c3c; }
  .txt-blue { color: #0a283e; }
  .txt-ora { color: #ff8839; }
  .txt-ora2 { color: #ff6622; }
  .txt-sky { color: #e7ebf3; }
  .txt-bld { font-weight: bold; }
  .txt-dots {
    display: inline-flex;
  }
  .txt-dot::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #e73c3c;
    position: absolute;
    left: calc(50% - 6px / 2);
    top: -.1em;
  }
  .font-jp {
    font-family: ヒラギノ角ゴ W4 JIS2004;
  }
  .font-jp-b,
  .font-jp strong,
  .ttl-01,
  .ttl-02,
  .ttl-03,
  table th {
    font-family: ヒラギノ角ゴ W7 JIS2004;
  }
  .font-en { font-family: flood-std, sans-serif; }
  .font-en-g { font-family: din-2014, sans-serif; }

/* btn
********************************************** */
  .btn { text-align: center; }
  .btn a {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 32px;
    font-size: 106%;
  }
  .btn a[target="_blank"] { padding-right: 56px; }
  .btn a[href$=".pdf"] { padding-left: 56px; }
  .btn svg { transition: all .4s ease-out; }
  .mce-content-body + .btn { margin-top: 40px; }
  .content-button .btn { margin-bottom: 24px; }
  .content-button .btn + .btn { margin-left: 16px; }
  .home .btn .icon-svg,
  .content-section .btn .icon-svg {
    position: absolute;
    top: 50%;
    display: block;
    transform: translateY(-50%);
  }
  .home .btn .icon-new_tab,
  .content-section .btn .icon-new_tab {
    right: 30px;
    width: 14px;
    height: 14px;
  }
  .content-section .btn .icon-pdf {
    left: 15px;
    width: 27px;
    height: 12px;
  }

  /* ボタン小 */
  .btn a {
    color: #083c64;
    border: 2px solid #083c64;
    background-color: #fff;
    border-radius: 50px;
    min-width: 360px;
  }
  .content-column.column-3 .btn a,
  .content-column.column-4 .btn a,
  .content-column.column-5 .btn a {
    min-width: auto;
  }
  .content-section .btn svg {
    fill: #083c64;
  }
  .btn a:hover {
    border-color: #c12828;
  }
  .btn .icon-arrow {
    position: absolute;
    top: 0;
    right: 16px;
    height: 100%;
  }
  .btn .icon-arrow::before {
    width: 8px;
    height: 8px;
    border-width: 2px;
    border-color: #083c64;
  }
  .btn.btn-wh a {
    background-color: #fff;
    color: #083c64;
  }
  .btn.btn-wh .icon-arrow::before {
    border-color: #083c64;
  }
  .btn.btn-org a {
    background-color: #FB8322;
    border-color: #FB8322;
  }
  .btn.btn-org a:hover {
    background-color: #6eaee3 !important;
    border-color: #6eaee3;
  }

  /* ボタン大 */
  .btn-lg a,
  .content-column.column-1 .btn-1 a,
  .content-button .btn-1 a {
    padding: 24px 32px;
    font-size: 133%;
    border-radius: 2px;
    min-width: 530px;
  }
  .contact_area.btn a,
  .btn-lg a,
  .content-column.column-1 .btn-1 a,
  .content-button .btn-1 a {
    color: #fff;
    background-color: #083c64;
  }
  .contact_area.btn svg,
  .btn-lg svg,
  .home .btn svg,
  .content-column.column-1 .btn-1 svg,
  .content-button .btn-1 svg {
    fill: #fff;
  }
  .btn-lg .icon-arrow::before,
  .content-column.column-1 .btn-1 .icon-arrow::before,
  .content-button .btn-1 .icon-arrow::before {
    border-color: #fff;
  }

  /* ボタンhover */
  .contact_area.btn a:hover,
  .btn-lg a:hover,
  .home .btn a:hover,
  .content-section .btn-1 a:hover {
    color: #fff;
    background-color: #c12828;
  }
  .content-section .btn a:hover {
    color: #fff;
    background-color: #e73c3c;
    border-color: #e73c3c;
  }
   .btn_style2 a:hover {
    color: #fff;
    background-color: #e73c3c;
    border-color: #e73c3c;
  }
  .btn a:hover .icon-arrow::before {
    border-color: #fff;
  }
  .btn a:hover svg {
    fill: #fff;
  }
  @media screen and (max-width: 767px) {
    .mce-content-body + .btn { margin-top: 16px; }
  }
  @media screen and (max-width: 767px) {
    .btn a {
      width: 80%;
      min-width: auto;
    }
    .btn a[target="_blank"] { padding-right: 32px; }
    .btn a[target="_blank"]::after { right: 10px; }
    .btn a[href$=".pdf"]::after {
      right: 7px;
      width: 20px;
      height: 9px;
    }
    .content-button { margin-bottom: 8px; }
    .content-button .btn {
      width: calc(50% - 4px);
      margin-bottom: 8px;
    }
    .btn .icon-arrow {
      right: 8px;
    }
    .content-button .btn:nth-child(2n+1) { margin-right: 8px; }
    .content-button .btn + .btn { margin-left: 0; }
    .content-section .btn {
      width: 100%;
      min-width: 100%;
    }
    .btn-lg a,
    .content-column.column-1 .btn-1 a,
    .content-button .btn-1 a {
      width: 90% !important;
      min-width: auto;
      padding: 18px 10px;
      font-size: 110%;
    }
    .content-section .btn a {
      width: 90%;
    }
  }

/* icon
********************************************** */
  .icon-arrow {
    position: relative;
    padding-left: 16px;
  }
  .icon-arrow::before {
    content: '';
    position: absolute;
    top: calc(50% - 5px / 2);
    left: 0;
    display: block;
    width: 5px;
    height: 5px;
    border-color: #e73c3c;
    border-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    transform: rotate(-45deg);
    transition: all .4s ease-out;
  }
  .icon-arrow-wh::before { border-color: #fff; }
  .icon-new_tab::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 11px;
    margin-left: 4px;
    background-image: url(../images/common/icon-new_tab.svg);
  }

/* slick common style
********************************************** */
  .slide_sec { overflow: hidden; }
  .slide_box,
  .slick-full .slick-slide {
    position: relative;
    height: 100%;
  }
  .slide_wrap {
    margin-bottom: 24px;
  }
  .subpage .slide_wrap {
    opacity: 0;
    transition: .2s ease-in-out;
    transform: translateX(32px);
  }
  .subpage .slide_wrap.slick-initialized {
    opacity: 1;
    transform: translateX(0);
  }
  .slick-slide,
  .slick-slide:active,
  .slick-slide:focus,
  .slick-slide:focus-within {
    outline: none !important;
  }
  .slick-slide img {
    margin-left: auto;
    margin-right: auto;
  }
  .slick-full .slick-list {
    overflow: visible;
  }
  .slick-full .slick-slide:not(.slick-active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
  }
  .slick-full .slick-arrow span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e73c3c;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .slide_box .icon-arrow::before {
    top: calc(50% - 16px / 2);
    left: 18px;
    border-color: #fff;
    width: 16px;
    height: 16px;
  }
  .slide_box .icon-arrow::after {
    bottom: calc(50% - 6px);
    transform: rotate(-45deg);
  }

  /* hover */
  @media screen and (min-width: 1141px) {
    .slick-full .slick-arrow span:hover {
      transform: translateX(16px);
    }
  }

  /* --- slick-arrows --- */
  .slick-arrow {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 100%;
  }
  .slick-prev {
    left: -150px;
    transform: scale(-1,1);
  }
  .slick-next {
    right: -100px;
  }

  /* --- slick-dots --- */
  .slick-dots {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #143651;
  }
  .slick-dots li:not(:last-child) { margin-right: 16px; }
  .slick-dots li:not(.slick-active) { opacity: .5; }
  .slick-dots li:only-child { display: none; }
  .slick-dots button {
    color: transparent;
    display: none;
  }
  .dot-wh .slick-dots li { background-color: #fff; }
  .banner--item .icon-arrow::before {
    border-color: #000;
  }

  @media screen and (max-width: 1400px) {
    /* --- slick-arrows --- */
    .slick-prev { left: -56px; }
    .slick-next { right: -56px; }
    .hero--slide_arrows .slick-prev { left: -40px; }
    .hero--slide_arrows .slick-next { right: -40px; }
    .hero--slide_arrows .slick-prev .icon-arrow::before,
    .hero--slide_arrows .slick-next .icon-arrow::before {
      left: 10px;
    }
  }
  @media screen and (max-width: 767px) {
    /* --- slick-arrows --- */
    .slick-arrow .icon-arrow::before,
    .slick-arrow .icon-arrow::after {
      right: 50%;
    }
    .slide_box .icon-arrow::before {
      left: 8px;
    }

    /* --- slick-arrows --- */
    .hero--slide_arrows .slick-prev { left: -40px; }
    .hero--slide_arrows .slick-next { right: -40px; }
    .event--slide_arrows .slick-prev { left: -65px; }
    .event--slide_arrows .slick-next { right: -65px; }
    .banner--item .slick-arrow { width: 60px; }
    .banner--item .slick-prev { left: -30px; }
    .banner--item .slick-next { right: -40px; }

    /* --- slick-dots --- */
    .slick-dots li {
      width: 6px;
      height: 6px;
    }
    .slick-dots li:not(:last-child) { margin-right: 8px; }
  }

/* ##############################################################################

    INDEX

############################################################################## */


/* home_voice
**************************************** */
  .home_voice {
    position: relative;
    padding-top: 250px;
  }
  .home_voice::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -440px;
    z-index: -1;
    display: block;
    width: 840px;
    height: 400px;
    background-color: #d6dae2;
    transform: skewX(-65deg);
  }
  .home_voice .ttl-en {
    top: 160px;
    left: 13%;
    font-size: 6.5rem;
  }
  .voice--count {
    top: 214px;
    left: calc(50% + 230px);
    width: 264px;
    height: 334px;
    background-image: url(../images/voice-balloon-img01.png);
  }
  .voice--count .count_box--txt {
    top: -135px;
    left: 200px;
  }
  .voice--count::before {
    content: '';
    display: block;
    padding-top: 126%;
  }
  .voice--count .count {
    top: -30px;
    right: -170px;
    width: 215px;
    height: 133px;
    padding-top: 5%;
    padding-left: 20px;
    background-image: url(../images/voice-balloon.png);
  }

  @media screen and (max-width: 1400px) {
    .voice--count {
      left: auto;
      right: 20%;
    }
  }
  @media screen and (max-width: 767px) {
    .home_voice {
      padding-top: 150px;
    }
    .home_voice::before {
      left: -580px;
      width: 760px;
      height: 300px;
    }
    .home_voice .ttl-en {
      top: 90px;
      left: 20px;
      font-size: 3rem;
    }
    .home_voice .ttl-01 {
      margin-bottom: 160px;
    }
    .voice--count {
      top: 243px;
      right: 27%;
      width: 190px;
      height: 130px;
    }
    .voice--count .count_box--txt {
      top: -55%;
      left: 100%;
    }
    .voice--count .count {
      top: 10px;
      right: -100px;
      width: 130px;
      height: 80px;
      padding-top: 4px;
      padding-left: 10px;
    }
  }

/* ##############################################################################

    ARCHIVE

############################################################################## */

  .post { position: relative; }



/* posts-main
********************************************** */
  .posts-main .post--bg {
    position: absolute;
    top: 40%;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60%;
    border-radius: 2px;
    transition: .2s ease-in-out;
    background-position: left top;
  }
  .posts-main .post--bg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-position: left top;
    transition: .2s ease-in-out;
  }
  .posts-main .post:hover .post--bg::after {
    opacity: 0;
  }
  .posts-main .date {
    margin-bottom: 16px;
  }
  .posts-main .eyecatch {
    position: relative;
    padding-top: 70%;
  }
  .posts-main .eyecatch-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
  }
  .posts-main .no_image .eyecatch-img {
    background-color: #555;
  }
  .posts-main .eyecatch-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    color: #F57F22;
    overflow: hidden;
  }
  .posts-main .eyecatch-hover::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    transform: rotate(-45deg) translateY(-150%);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: rgba(255, 247, 206, .9);
  }
  .posts-main .eyecatch-hover .icon-search,
  .posts-main .eyecatch-hover span {
    opacity: 0;
  }
  .posts-main .eyecatch-hover .icon-search {
    width: 35px;
    height: 35px;
  }
  .posts-main .eyecatch-hover span {
    display: block;
  }
  .posts-main .post:hover .eyecatch-hover::before {
    transform: rotate(-45deg) translateY(-40%);
  }
  .posts-main .post:hover .eyecatch-hover .icon-search,
  .posts-main .post:hover .eyecatch-hover span {
    animation-name: eyecatch_slide_in;
    animation-duration: .4s;
    animation-fill-mode: forwards;
  }
  .posts-main .post:hover .eyecatch-hover .icon-search {
    animation-delay: .3s;
  }
  .posts-main .post:hover .eyecatch-hover span {
    animation-delay: .4s;
  }
  .bg-shadow {
    position: relative;
    z-index: 0;
  }
  .posts-voice .eyecatch::after,
  .before_after .container::before,
  .bg-shadow::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
  .posts-voice .eyecatch::after,
  .before_after .container::before,
  .bg-shadow::before {
    z-index: -1;
    bottom: -10px;
    right: -10px;
    height: calc(100% - 20px);
    background-color: #FFF;
    border-radius: 2px;
  }
  .bg-shadow-ora::before { background-color: #e7ebf3 !important; }
  .before_after .container::before { width: calc(100% - 20px); }
  .posts-main .post--ttl {
    position: relative;
    z-index: 1;
    margin-left: 8%;
    margin-right: 8%;
    margin-bottom: 8%;
    padding-left: 2em;
    font-size: 106%;
    line-height: 1.7;
  }
  .posts-main .post--ttl::before {
    content: '';
    position: absolute;
    top: .7em;
    right: 0;
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #A1A9B6;
    border-top: 2px solid #A1A9B6;
    transform: rotate(45deg);
  }
  .posts-main .post--inner {
    position: relative;
    z-index: 1;
  }
  .archive .posts-main .post {
    width: 25%;
    margin-bottom: 32px;
  }

  @media screen and (max-width: 1400px) {
    .archive .posts-main::before,
    .archive .posts-main::after,
    .archive .posts-main .post {
      width: 33.33%;
    }
    .before_after .container {
      width: 90%;
      padding-left: 0;
      padding-right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .archive .posts-main::before,
    .archive .posts-main::after {
      display: none;
    }
    .posts-main .eyecatch { margin-bottom: 24px; }
    .archive .posts-main .post { width: 100%; }
    .archive .posts-main .post:last-child { margin-bottom: 0; }
    .before_after .container::before { bottom: 0; }
  }


/* posts-voice
**************************************** */
  .posts-voice .post,
  .posts-voice::after {
    width: 544px;
  }
  .posts-voice .post {
    margin-right: 32px;
    overflow: hidden;
  }
  .posts-voice .date {
    color: #FEBA22;
  }
  .posts-voice .post--ttl::before,
  .posts-staff .post--ttl::before {
    top: .7em;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #FFF;
    transform: none;
    border: none;
  }
  .posts-voice .post--bg {
    position: absolute;
    top: 40%;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60%;
    border-radius: 2px;
    transition: .2s ease-in-out;
    background-position: left top;
    height: 100%;
    background-color: #E47927;
  }
  .posts-voice .post--bg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-position: left top;
    transition: .2s ease-in-out;
    background-color: #F4BA34;
  }
  .posts-voice .post--inner {
    z-index: 1;
    margin-left: 6%;
  }
  .posts-voice .eyecatch {
    width: calc(100% - 6%);
    margin-bottom: 32px;
  }
  .posts-voice .eyecatch::after {
    height: 60%;
  }
  .posts-voice .eyecatch--bg {
    position: absolute;
    bottom: 0;
    left: 0;
    /* background-image: -webkit-linear-gradient( 90deg, rgba(0,0,0,.8) 0%, rgba(255,255,255,.10196) 50%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,0,0,.8) 0%, rgba(255,255,255,.10196) 50%); */
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .posts-voice .post--txt {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 32px;
    font-weight: bold;
    font-size: 120%;
    text-align: left;
    line-height: 1.5;
  }
  .posts-voice .slick-track { display: flex; }
  .posts-voice .slick-slide { height: auto; }
  .posts-voice .slick-slide:not(.slick-active) { opacity: .3; }
  .posts-voice .slick-slide::after { display: none !important; }
  .home .posts-voice .eyecatch-hover { padding-top: 56px; }
  .home .posts-voice .eyecatch-img,
  .home .posts-voice .eyecatch-hover {
    width: 100%;
  }
  .archive .posts-voice {
    width: calc(100% + 16px);
    margin-left: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .archive .posts-voice .post {
    width: calc(25% - 16px);
    margin-right: 16px;
  }

  @media screen and (min-width: 1141px) {
    /* 大きな画面のときだけ屋根型にクリップ */
    .home .posts-voice .eyecatch-img,
    .home .posts-voice .eyecatch-hover {
      -webkit-clip-path: url(#svg_path);
      clip-path: url(#svg_path);
    }
    /* safariには適用しない */
    _::-webkit-full-page-media, _:future,
    :root .home .posts-voice .eyecatch-img,
    _::-webkit-full-page-media, _:future,
    .home .posts-voice .eyecatch-hover {
      -webkit-clip-path: initial;
      clip-path: initial;
    }
  }
  @media screen and (max-width: 1140px) {
    .posts-voice {
      padding-left: 24px;
    }
    .archive .posts-voice .post {
      width: calc(33.33% - 16px);
    }
  }
  @media screen and (max-width: 767px) {
    .posts-voice .post--txt {
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 16px;
      font-size: 100%;
    }
    .posts-voice .post {
      margin-right: 16px;
    }
    .archive .posts-voice .post {
      width: 100%;
    }
  }

/* ##############################################################################

    SINGLE

############################################################################## */

  .link_area {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .post_link,
  .link_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
  }
  .post_link:hover {
    background-color: rgba(255, 255, 255, .5);
  }
  .single_content .post--ttl {
    font-size: 185%;
    line-height: 1.3;
  }
  .post_info .date {
    display: inline-block;
    font-size: 93%;
    color: #aaa;
  }
  .cat_link { margin-right: 16px; }
  .cat_link a {
    position: relative;
    z-index: 100;
    margin-right: 2px;
    padding: 4px 10px;
    color: #fff;
    font-size: 82%;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2px;
    background-color: #e73c3c;
  }
  .cat_link a:hover { opacity: .7; }
  .eyecatch {
    text-align: center;
    margin-bottom: 32px;
  }
  .eyecatch img {
    max-width: 100%;
    height: auto;
  }

/* voice--info
**************************************** */
  .voice--item:not(:last-child) {
    margin-bottom: 40px;
  }
  .result--item {
    width: calc(50% - 24px);
    margin-bottom: 40px;
  }
  .result--item p { line-height: 1.5; }
  .voice--item.voice_img { margin-bottom: 80px; }
  .report--txt p,
  .voice--item p {
    font-size: 113%;
  }
  .voice--item.voice_img img { margin-bottom: 40px; }

  @media screen and (max-width: 767px) {
    .result--item { width: 100%; }
    .btn-relate_link a {
      padding: 16px 24px;
      font-size: 110%;
    }
  }


/* ##############################################################################

    Loops モジュール

############################################################################## */

  #wrapper { overflow: hidden;background-color: #DCF9FF;}
  #wrapper .container + .container { margin-top: 40px; }
  .txt-wh { color:#fff !important; }

@media screen and (min-width: 769px), print {
  #wrapper h2{
    text-align: center;
  }
  #wrapper h2 img {
    width: 441px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper h2{
    text-align: center;
  }
  #wrapper h2 img {
    width: 63.76812vw;
  }
}