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

    KEYFRAMES

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

  /* animation */
  @keyframes pulseMotion {
    0% {
      transform: translate(-50%, -50%) scale(1, 1);
      background-color: rgba(255, 255, 255, .4)
    }
    100% {
      transform: translate(-50%, -50%) scale(6.5, 6.5);
      background-color: rgba(255, 255, 255, 0)
    }
  }
  @keyframes moveY {
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateY(160px);
    }
  }
  @keyframes moveX {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(160px);
    }
  }
  .fadein {
    opacity : 0;
    transform : translate(0, 60px);
    -moz-transition: all 1.2s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition: all 1.2s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: all 1.2s cubic-bezier(.165, .84, .44, 1);
    transition: all 1.2s cubic-bezier(.165, .84, .44, 1);
    -webkit-filter: blur(16px);
    filter: blur(16px);
  }
  .fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }

  @media screen and (max-width: 767px) {
    @keyframes moveY {
      0% {
        opacity: 0;
        transform: translateY(0);
      }
      50% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateY(120px);
      }
    }
  }


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

    LOADING

############################################################################## */
  body {
    opacity: 0;
    visibility: hidden;
    background: #8e9ea8;
  }
  body.is-loading {
    opacity: 1;
    visibility: visible;
  }
  body.is-loaded {
    background: #fff;
  }
  .loading-wrapper,
  .loading-fadeout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: #8e9ea8;
    z-index: 9999;
    transition: all .66s cubic-bezier(.51, .01, 0, .98);
  }
  .is-loading .loading-wrapper {
    transform: translateX(-100vw);
  }
  .loading-fadeout {
    transform: translateX(100vw);
  }
  .is-fadeout .loading-fadeout {
    transform: translateX(0);
  }
  .header {
    opacity: 0;
    transform: translateY(-16px);
    transition: all 2s cubic-bezier(.51, .01, 0, .98);
  }
  .is-loaded .header,
  .is-loading .header {
    opacity: 1;
    transform: translateY(0);
  }
  .hero--ttl-en .text,
  .hero--ttl-jp .text,
  .page_ttl-en-bg .text,
  .page_ttl-jp .text,
  .page_ttl-other {
    display: block;
    transform: translateX(40px);
    opacity: 0;
  }
  .is-loaded .hero--ttl-en .text,
  .is-loaded .hero--ttl-jp .text,
  .is-loaded .page_ttl-en-bg .text,
  .is-loaded .page_ttl-jp .text,
  .is-loaded .page_ttl-other {
    transform: translateX(0);
    opacity: 1;
  }
  .tr { transition: all .5s cubic-bezier(.51, .01, 0, .98); }
  .tr-1-2s { transition-duration: 1.2s; }
  .tr-no-bezier { transition-timing-function: linear; }
  .tr-delay-1s { transition-delay: .1s; }
  .tr-delay-2s { transition-delay: .2s; }
  .tr-delay-3s { transition-delay: .3s; }
  .tr-delay-4s { transition-delay: .4s; }
  .tr-delay-5s { transition-delay: .5s; }
  .tr-delay-6s { transition-delay: .6s; }
  .tr-delay-7s { transition-delay: .7s; }
  .tr-delay-8s { transition-delay: .8s; }
  .tr-delay-9s { transition-delay: .9s; }
  .tr-delay-10s { transition-delay: 1s; }
  .tr-delay-15s { transition-delay: 1.5s; }

  @media screen and (max-width: 767px) {
    .loading-wrapper,
    .loading-fadeout {
      transition: all .5s cubic-bezier(.51, .01, 0, .98);
    }
  }


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

    COMMON

############################################################################## */
  
  html {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    height: 100%;
  }
  body.page-contact {
    padding-top: 0;
  }


/* layout
**************************************** */
  /* --- inner --- */
  .inner {
    width: 86%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-sm { max-width: 890px; }
  .inner-lg { max-width: 1600px; }
  .inner-xl { 
    width: 100%;
    max-width: calc(100% - 160px);
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 160px;
    padding-bottom: 160px;
    background: #fff;
  }
  .section_pdg-top80 {
    padding-top: 80px;
  }

  @media screen and (max-width: 1050px) and (min-width: 768px) {
    .inner-xl { 
      width: 86%;
      max-width: 100%;
    }
  }
  
  @media screen and  (max-width: 767px) {
    .inner { 
      width: 80%;
    }
    .inner-xl {
      width: 90%;
      max-width: 100%;
    }
    .section_pdg {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }

/* flex
**************************************** */
  /* --- ざっくりflexレイアウト --- */
  .flex-col1 {
    display: block;
  }
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 45%;
    margin-right: 10%;
    margin-bottom: 10%;
  }
  .flex-col2:not(.flex-reverse) > *:nth-child(even),
  .flex-col2.flex-reverse > *:nth-child(odd) {
    margin-right: 0;
  }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n) { margin-right: 0; }
  .flex-col4 > * {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n) { margin-right: 0; }

  /* .flex-col2-full */
  .flex-col2-full > * {
    width: 50%;
  }
  .flex-col3-full > * {
    width: calc(100% / 3);
  }
  .flex-col2-full .txtarea,
  .flex-col3-full .txtarea {
    margin: 0 auto;
    padding: 0 80px;
  }
  .flex-col3-full > *:nth-child(1) .txtarea,
  .flex-col2-full > *:nth-child(1) .txtarea {
    padding-right: 40px;
  }
  .flex-col3-full > *:nth-child(2) .txtarea {
    padding-right: 40px;
    padding-left: 40px;
  }
  .flex-col3-full > *:nth-child(3) .txtarea,
  .flex-col2-full > *:nth-child(2) .txtarea {
    padding-left: 40px;
  }

  @media screen and (max-width: 767px) {
    .flex-sp-block.flex-col2 > *,
    .flex-sp-block.flex-col3 > * {
      width: 100%;
      margin-right: 0;
      margin-bottom: 8%;
    }
    .flex-sp-block.flex-col2 > *:last-child,
    .flex-sp-block.flex-col3 > *:last-child {
      margin-bottom: 0;
    }

    /* --- ざっくりflexレイアウト - sp --- */
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n) {
      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) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n) {
      margin-right: 0;
    }
    .flex-col2-full.flex-sp-block > *,
    .flex-col3-full.flex-sp-block > * {
      width: 100%;
    }
    .flex-col3-full > *:nth-child(1) .txtarea,
    .flex-col2-full > *:nth-child(1) .txtarea,
    .flex-col3-full > *:nth-child(2) .txtarea,
    .flex-col3-full > *:nth-child(3) .txtarea,
    .flex-col2-full > *:nth-child(2) .txtarea {
      padding: 0 10% 48px;
    }
  }

/* bg
**************************************** */
  .bg-white {
    background: #fff;
  }


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

  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding-top: 160px;
    background: #fff;
  }
  .page_ttl-jp {
    display: block;
    display: none;
    margin-bottom: 8px;
  }
  .page_ttl-en {;
    display: inline-block;
    text-transform: uppercase;
    font-size: 200%;
  }
  .page_ttl--img {
    width: 100%;
    background: #eee;
    overflow: hidden;
  }
  .page_ttl--img img {
    margin-top: -24px;
    margin-bottom: -24px;
  }
  /* --- section_ttl --- */
  .section_ttl {
    font-size: 230%;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .section_ttl-sm { font-size: 267%; }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }
  
  /* --- heading --- */
  .heading-1 { font-size: 200%; }
  .heading-2 { font-size: 150%; }
  .heading-3 { font-size: 125%; }
  .heading-4 { font-size: 112.5%; }

  @media screen and (max-width: 767px) {

    /* --- page_ttl --- */
    .page_ttl {
      padding-top: 80px;
      text-align: center;
    }
    .page_ttl-en {
      font-size: 175%;
      white-space: nowrap;
    }
  
    /* --- section_ttl --- */
    .section_ttl {
      font-size: 175%;
    }
    .section_catch {
      font-size: 86%;
    }

    /* --- heading --- */
    .heading-1 { font-size: 150%; }
    .heading-2 { font-size: 125%; }
    .heading-3 { font-size: 112.5%; }
    .heading-4 { font-size: 100%; }
  }

/* breadcrumbs
**************************************** */
  .breadcrumbs {
    padding: 0 0 24px;
    text-align: right;
    background: #fff;
    letter-spacing: .1em;
  }
  .breadcrumbs a {
    position: relative;
    display: inline-block;
    margin-right: 24px;
  }
  .breadcrumbs a::after {
    content: "";
    width: 5px;
    height: 0;
    border-style: solid;
    border-width: 2px 0 2px 6px;
    border-color: transparent transparent transparent #8e9ea8;
    display: block;
    position: absolute;
    bottom: 1px;
    top: 0;
    margin: auto;
    right: -18px;
  }
  .breadcrumbs .breadcrumb_last {
    display: table-cell; 
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  @media screen and (max-width: 767px) {
    .breadcrumbs {
      text-align: center;
      font-size: 71% !important;
      padding-bottom: 40px;
    }
    .breadcrumbs a {
      margin-right: 16px;
    }
    .breadcrumbs a::after {
      right: -13px;
    }
  }


/* txt-big
**************************************** */
  .txt-big {
    color: transparent;
    display: block;
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
    height: 96px;
    background-image: url(../images/common/text-common.svg);
    background-size: auto 100%;
    opacity: .1;
  }
  .page-about .txt-big {
    background-image: url(../images/common/text-about.svg);
  }
  .page-porters-paints .txt-big {
    background-image: url(../images/common/text-porters-paints.svg);
  }
  .page-haymespaint .txt-big {
    background-image: url(../images/common/text-haymespaint.svg);
  }
  .page-microverlay .txt-big {
    background-image: url(../images/common/text-microverlay.svg);
  }
  .page-method .txt-big {
    background-image: url(../images/common/text-method.svg);
  }
  .box {
    padding: 40px 48px;
    margin: 0 16px;
    background: #f5f7f9;
  }

  @media screen and (max-width: 767px) {
    .txt-big {
      height: 48px;
    }
    .box {
      padding: 16px 24px;
      margin: 0 0 16px;
    }
  }


/* txt
**************************************** */
  .txt-lg { font-size: 107%; }
  .txt-sm { 
    font-size: 92.8%;
    letter-spacing: .15em;
  }
  .txt-xs {
    font-size: 85.75%;
  }
  .txt-italic {
    font-style: italic;
  }
  .txt-en {
    letter-spacing: .15em;
  }
  .txt-line-wide {
    line-height: 3.75;
  }
  .txt-sm.txt-line-wide {
    line-height: 2.7;
  }
  .txt-wh { color: #fff; }
  .txt-attention {
    font-size: 85.75%;
    letter-spacing: .125em;
    line-height: 1.5;
  }
  .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: 2em;
  }
  .bold {
    font-weight: bold;
  }

  @media screen and (max-width: 767px) {
    .txt-line-wide {
      line-height: 3;
    }
    .txt-sm.txt-line-wide {
      line-height: 2.25;
    }
  }

/* table & list
**************************************** */
  table { width: 100%; }
  
  /* --- table_default --- */
  .table_default th, 
  .table_default td {
    padding: 16px;
  }
  .table_default th {
    border-bottom: 1px solid #e3e7ea;
    min-width: 200px;
    text-align: left;
    
  }
  .table_default td {
    padding: 16px 16px;
    border-bottom: 1px solid #e3e7ea;
    border-left: 8px solid #fff;
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line th {
    background-color: #8E9EA8;
    border: 1px solid #8E9EA8;
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    font-size: 93%;
  }

  /* --- list ---- */
  .list { 
    list-style-type: none;
    line-height: 1.8; 
  }
  .list li:not(:last-child) { margin-bottom: 4px; }
  .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: 8px;
    height: 8px;
    border-radius: 6px;
    background-color: #8E9EA8;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }
  /* 白丸付きリスト */
  .list-circle li::before {
    border: 1px solid #8E9EA8;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #8E9EA8;
  }
  /* 入れ子のスタイル */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 6px;
    height: 6px;
    top: .8em;
  }

  /* --- dlリスト --- */
  .list-dl {
    position: relative;
    border-top: 1px solid #e3e7ea;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #8E9EA8;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e3e7ea;
  }
  .list-dl.txt-sm dt,
  .list-dl.txt-sm dd {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  @media screen and (max-width: 767px) {
    .table_default th,
    .table_default td {
      padding: 14px 0;
      display: block;
      line-height: 1.8;
      border-left: 0;
      letter-spacing: .15em;
    }
    .table_default th {
      min-width: 64px;
      padding-bottom: 0;
      border: none;
      font-size: 84.5%;
    }
    .table_default td {
      padding-top: 8px;
      font-size: 92.8%;
      padding-left: 24px;
    }
    .list-dl dd {
      padding-left: 96px;
    }
  }

/* btn
**************************************** */
  .btn {
    position: relative;
    display: inline-block;
    line-height: 1;
  }
  .btn-line {
    border-top: 1px solid rgba(142, 158, 168, .5);
    border-bottom: 1px solid rgba(142, 158, 168, .5);
    padding: 12px 32px;
    min-width: 148px;
  }
  .btn-line:hover {
    background: #8e9ea8;
    color: #fff;
  }
  .btn-round {
    padding: 12px 0 12px 40px;
    overflow: hidden;
  }
  .btn-round::before,
  .btn-round::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .btn-round::before {
    width: 8px;
    height: 8px;
    border-radius: 5px;
    border: 1px solid;
    left: 8px;
  }
  .btn-round::after {
    width: 25px;
    height: 1px;
    background: #8e9ea8;
    left: 0;
    transform: translateX(-40px);
  }
  .btn-round:hover::before {
    background-color: #8e9ea8;
  }
  .btn-round:hover::after {
    transform: translateX(0);
  }
  .flex .btn + .btn { margin-left: 16px; }
  .btn-lists .btn {
    margin: 0 8px;
  }

  @media screen and (max-width: 767px) {
    .flex .btn,
    .flex .btn + .btn {
      margin-top: 4px;
      margin-left: auto;
      margin-right: auto;
    }
  }

/* cta
**************************************** */
  .cta {
    padding: 40px 0;
    background-color: #eee;
  }
  .cta--txt {
    font-size: 120%;
    margin-bottom: 24px;
  }
  .cta--btn {
    font-size: 160%;
  }
  .cta--btn.btn {
    min-width: 400px;
  }
  .cta--tel .tel_txt {
    font-size: 160%;
  }
  .cta--form {
    background-color: #fff;
  }

  @media screen and  (max-width: 767px) {
    .cta--btn.btn {
      min-width: 0;
    }
  }

/* cta-page
**************************************** */
  .cta-page {
    padding: 80px 0 40px;
    background-color: #eee;
  }
  .cta-page a:hover {
    opacity: .6;
  }
  .cta-page .imgarea {
    margin-bottom: 12px;
  }

  @media screen and  (max-width: 767px) {
    .cta-page {
      padding: 40px 0 24px;
    }
    .cta-page .imgarea {
      margin-bottom: 8px;
    }
  }


/* kazari-round
**************************************** */
  .kazari-round {
    position: relative;
    width: 32px;
    height: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .kazari-round::before,
  .kazari-round::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #bed5e3;
    border: 1px solid #4a4846;
    border-radius: 16px;
  }
  .kazari-round::before {
    width: 32px;
    height: 32px;
    opacity: .5;
    z-index: 2;
  }
  .kazari-round::after {
    width: 22px;
    height: 22px;
  }


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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 48px;
    line-height: 1;
    z-index: 9990;
    transition: all all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .page-contact .header {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
  }
  .path {
    fill: #8E9EA8;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .home .path {
    fill:#fff;
  }
  .header-sm .path {
    fill: #8E9EA8;
  }

  @media print, screen and (min-width: 768px) {
    .header--nav,
    .gnav,
    .gnav .gnav--lists,
    .gnav .gnav--list,
    .gnav .gnav--link {
      height: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .header {
      padding-top: 24px;
    }
    .header .inner {
      width: calc(100% - 48px);
    }
    .header--logo {
      width: 120px;
      z-index: 9999;
    }
    .home .header.active .path {
      fill: #8E9EA8;
    }
    .home .header.active .gnav_btn--lines span {
      background-color: #8E9EA8;
    }
    .home .header.active .gnav .gnav--link,
    .home .header.active .gnav--sub--link {
      color: #8E9EA8;
    }
  }

/* gnav
**************************************** */
  .gnav .gnav--link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex!important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 16px;
    height: 46px;
    text-align: center;
    color: #8E9EA8;
  }
  .home .gnav .gnav--link {
    color: #fff;
  }
  .home .header-sm .gnav--link {
    color: #8E9EA8;
  }
  .gnav .gnav--list:last-child .gnav--link {
    padding-right: 0;
  }
  .gnav .gnav--link:hover {
    opacity: .5;
  }
  .home .gnav--home {
    display: none;
  }
  .gnav .gnav--link::before {
    content: '★';
    opacity: 0;
    font-size: 8px;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
  }
  .gnav .current .gnav--link::before {
    opacity: 1;
  }
  .gnav span {
    padding: 16px 0;
  }
  .gnav--list {
    position: relative;
  }
  .gnav--sub {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 46px;
    padding: 4px 16px;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .gnav--list:hover .gnav--sub {
    opacity: 1;
    pointer-events: auto;
  }
  .gnav--sub--link {
    display: block;
    white-space: nowrap;
    padding: 8px 8px 8px 16px;
    position: relative;
  }
  .home .gnav--sub--link {
    color: #fff;
  }
  .header-sm .gnav--sub--link,
  .home .header-sm .gnav--sub--link {
    color: #8E9EA8;
  }
  .gnav--sub--link:hover {
    opacity: .5;
  }
  .gnav--sub--link::before {
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .5;
    bottom: 0;
    margin: auto;
  }
  @media screen and (max-width: 1180px) and (min-width: 768px) {
    .gnav {
      font-size: 92.8%;
      letter-spacing: .15em;
    }
    .gnav--home {
      display: none;
    }
    .gnav .gnav--link {
      padding: 0 12px;
    }
  }
  
  @media screen and (max-width: 960px) and (min-width: 768px) {
    .gnav .gnav--list:not(:last-child) .gnav--link {
      padding: 0 12px;
    }
    .gnav .gnav--list:last-child .gnav--link {
      padding-left: 12px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      padding: 64px 24px 120px;
      pointer-events: none;
      transition: all 1s cubic-bezier(.35, .04, 0, .99);
      background-color: #fff;
      color: #aaa;
      height: 100vh;
      display: flex;
      align-items: center;
    }
    .gnav--inner {
      width: 100%;
    }
    .header.active .gnav {
      opacity: 1;
      pointer-events: all;
    }
    .gnav .gnav--link {
      display: block!important;
      padding: 12px 24px;
      height: auto;
      text-align: left;
    }
    .gnav .gnav--link::before {
      top: 14px;
      margin: auto;
    }
    .gnav--sub {
      position: relative;
      opacity: 1;
      top: 0;
      margin-bottom: 16px;
      padding: 0 24px;
    }
    /* ---gnav_btn --- */
    .gnav_btn {
      position: fixed;
      top: 0;
      right: 0;
      width: 80px;
      height: 72px;
      z-index: 9999;
      -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    .gnav_btn--lines {
      position: relative;
      width: 32px;
      height: 8px;
    }
    .gnav_btn--lines span {
      transition: all .8s cubic-bezier(.35, .04, 0, .99);
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #8E9EA8;
    }
    .home .gnav_btn--lines span {
      background-color: #fff;
    }
    .header-sm .gnav_btn--lines span,
    .home .header-sm .gnav_btn--lines span {
      background-color: #8E9EA8;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      bottom: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(3px) rotate(-30deg);
      transform: translateY(3px) rotate(-30deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      -webkit-transform: translateY(-3px) rotate(30deg);
      transform: translateY(-3px) rotate(30deg);
    }
    .gnav .gnav--sns-sp {
      margin-top: 40px;
    }
    .gnav .gnav--sns-sp .gnav--link {
      padding: 12px;
    }
  }


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

    FOOTER

############################################################################## */
  .footer-cta .txt-en {
    letter-spacing: .08em;
  }
  .footer {
    background-color: #f5f7f9;
  }
  .footer > .inner {
    padding: 80px 0;
  }
  .footer--nav a {
    display: inline-block;
    margin-right: 24px;
    line-height: 1;
  }
  .footer--nav a:hover {
    opacity: .6;
  }
  .footer--copyright {
    text-align: center;
  }
  .pbl {
    margin-right: 16px;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    .footer-cta {
      padding-bottom: 120px;
    }
    .footer-cta h2 img {
      width: 80px;
    }
    .footer-cta .txtarea {
      margin-bottom: 40px;
    }
    .footer-cta .txt-en {
      letter-spacing: .05em;
    }
    .footer > .inner {
      padding: 40px 0;
      width: 95%;
      max-width: 95%;
    }
    .footer--nav {
      display: none;
    }
    .footer--sub_nav {
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      line-height: 1;
      -webkit-align-items: flex-end;
      -ms-flex-align: flex-end;
      align-items: flex-end;
    }
    .footer--copyright {
      white-space: nowrap;
    }
    .pbl img {
      width: 110px;
    }
  }


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

    INDEX

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

/* hero
*************************************************** */
  .hero {
    position: relative;
    height: 100vh;
    max-height: 1400px;
    overflow: hidden;
  }
  .hero .txtarea {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 100;
  }
  .hero--ttl {
    display: inline-block;
    font-size: 114.5%;
    text-align: center;
    letter-spacing: .895em;
    color: #fff;
  }
  .slide-hero {
    display: block;
    height: 100vh;
    max-height: 1400px;
    width: 100%;
    background: center no-repeat;
    background-size: cover;
  }
  .slide-hero-img01 {
    background-image: url(../images/hero-img01.jpg);
  }
  .slide-hero-img02 {
    background-image: url(../images/hero-img02.jpg);
  }
  .slide-hero-img03 {
    background-image: url(../images/hero-img03.jpg);
  }


/* home_intro
*************************************************** */
  .intro--line {
    position: relative;
    width: 1px;
    height: 160px;
    background: rgba(142, 158, 168, .5);
    margin-left: auto;
    margin-right: auto;
  }
  .intro--ball {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #8E9EA8;
    border-radius: 8px;
    left: -2px;
    animation: moveY 3s ease infinite;
  }
  @media screen and (max-width: 767px) {
    .intro--line {
      height: 120px;
    }
  }


/* home_paint
*************************************************** */
  .home_paint {
    padding-top: 80px;
  }
  .home_paint--list {
    width: 50%;
    position: relative;
    background: #2f3c44;
    overflow: hidden;
    max-width: calc(50% - 32px);
    margin: 0 16px;
  }
  .home_paint--list .bgarea {
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
    margin: -20px 0;
  }
  .home_paint--list .bgarea img {
    width: 100%;
  }
  .home_paint--list .txtarea {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    height: 256px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .home_paint--line {
    position: relative;
    display: block;
    height: 1px;
    width: 50%;
    background: rgba(255, 255, 255, .5);
    margin-left: auto;
    margin-right: auto;
    max-width: 160px;
  }
  .home_paint--ball {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 8px;
    top: -2px;
    animation: moveX 3s ease infinite;
  }
  .home_paint--ball::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: opacity linear .4s;
    background: #fff;
    content: '';
    animation: pulseMotion 3s ease infinite;
  }
  @media screen and (max-width: 1280px) and (min-width: 768px) {
    .home_paint--list .txtarea {
      height: 196px;
    }
    .home_paint--line,
    .home_paint--list--ttl {
      margin-bottom: 24px;
    }
  }  
  @media screen and (min-width: 768px) {
    .home_paint--list:hover .bgarea {
      transform: scale(1.05);
      -webkit-filter: blur(3px);
      filter: blur(3px);
      opacity: .75;
    }
    .home_paint--list:hover .txtarea {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media screen and (max-width: 767px) {
    .home_paint--lists {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .home_paint--list {
      width: 100%;
      margin: 0 0 32px;
    }
    .home_paint--list .bgarea {
      opacity: .75;
    }
    .home_paint--list .txtarea {
      opacity: 1;
      height: 194px;
    }
  }


/* home_message
*************************************************** */
  .home_message {
    padding-bottom: 240px;
  }
  @media screen and (max-width: 767px) {
    .home_message {
      padding-bottom: 160px;
    }
  }


/* home_imgarea
*************************************************** */
  .home_imgarea,
  .bg_imgarea {
    position: relative;
    height: 880px;
    overflow: hidden;
  }
  .home_imgarea-bg,
  .bg_imgarea-bg {
    height: 960px;
    background-color: #eee;
    background-position: center;
    background-size: cover;
  }
  .home_imgarea01-bg {
    background-image: url(../images/imgarea01-bg.jpg);
  }
  .home_imgarea02-bg {
    background-image: url(../images/imgarea02-bg.jpg);
  }

  @media screen and (max-width: 767px) {
    .home_imgarea,
    .bg_imgarea {
      height: 50vh;
    }
    .home_imgarea-bg,
    .bg_imgarea-bg {
      margin-top: -20%;
      height: 150%;
    }
  }


/* home_about
*************************************************** */
  @media screen and (max-width: 767px) {
    .home_about .imgarea {
      width: 150px;
      margin: 0 auto 79px;
    }
  }


/* home_works
*************************************************** */
  .home_works {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 160px;
  }
  .home_works .section_ttl {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 300px;
    pointer-events: none;
  }
  .slide-works {
    background: #000;
  }
  .slide-works img {
    opacity: .9;
  }
  @media screen and (max-width: 1400px) and (min-width: 768px) {
    .slick-next,
    .slick-prev,
    .slick-prev::before,
    .slick-next::before {
      width: 120px;
    }
    .slick-next {
      right: -184px;
    }
    .slick-prev {
      left: -184px;
    }
  }
  @media screen and (max-width: 1280px) and (min-width: 768px) {
    .slick-next,
    .slick-prev,
    .slick-prev::before,
    .slick-next::before {
      width: 64px;
    }
    .slick-next {
      right: -104px;
    }
    .slick-prev {
      left: -104px;
    }
  }
  @media screen and (max-width: 1100px) and (min-width: 768px) {
    .slick-next,
    .slick-prev,
    .slick-prev::before,
    .slick-next::before {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .home_works {
      padding-bottom: 80px;
    }
    .slick-slider {
      width: 125%;
      margin-left: -12.5%;
    }
    .slick-prev,
    .slick-next {
      display: none !important;
    }
    .slick-initialized .slick-slide {
      width: 100%;
      max-width: 400px;
    }
    .slides-works {
      max-height: 296px;
    }
    .home_works .section_ttl {
      top: 125px;
    }
  }


/* home_news
*************************************************** */
  .home_news {
    padding-top: 0;
  }
  .home_news .inner {
    max-width: 986px;
  }
  .posts-home_news .post-news {
    position: relative;
    width: calc(100% / 3);
    padding: 40px 48px;
  }
  .posts-home_news .post-news .post--ttl {
    line-height: 1.7;
  }
  .posts-home_news .post-news::before,
  .posts-home_news .post-news::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    background: #8e9ea8;
    opacity: .25;
  }
  .posts-home_news .post-news::before {
    width: calc(100% - 56px);
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .posts-home_news .post-news::after {
    width: 1px;
    height: calc(100% - 56px);
    right: 0;
    top: 0;
    bottom: 0;
  }
  .posts-home_news .post-news:nth-last-child(-n+3)::before,
  .posts-home_news .post-news:nth-child(3n)::after {
    display: none;
  }
  .home_news .post--img {
    display: none;
  }

  @media screen and (max-width: 767px) {
    .posts-home_news .post-news {
      width: 100%;
      padding: 16px 0;
    }
    .posts-home_news .post-news::after {
      display: none;
    }
    .posts-home_news .post-news::before {
      width: 100%;
    }
    .posts-home_news .post-news:nth-last-child(-n+3)::before {
      display: block;
    }
    .posts-home_news .post-news:last-child::before {
      display: none;
    }
  }


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

    PAGE

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

/* page-paints
*************************************************** */
  .paints--list:not(:last-child) {
    margin-bottom: 160px;
  }
  .paints--list .txtarea {
    max-width: 960px;
    margin: auto;
  }
  .paints--list .txtarea .title {
    max-width: 400px;
  }
  .paints--list .txtarea .contents {
    width: 560px;
    -ms-text-justify: inter-ideograph;
    text-justify: inter-ideograph;
    text-align: justify;
  }
  @media screen and (max-width: 767px) {
    .paints--lists .inner {
      width: 100%;
    }
    .paints--list:not(:last-child) {
      margin-bottom: 40px;
    }
    .paints--list .imgarea {
      margin-bottom: 40px;
    }
    .paints--list .txtarea {
      display: block;
      width: 80%;
    }
    .paints--list .txtarea .contents {
      width: calc(100% - 64px);
      margin-left: auto;
      font-size: 92.3%;
      line-height: 2;
      letter-spacing: .2em;
    }
  }


/* page-porters-paints
*************************************************** */
  .porters-paints_imgarea01-bg {
    background-image: url(../images/porters-paints/porters-paints_imgarea01-bg.jpg);
  }
  .porters-paints_imgarea02-bg {
    background-image: url(../images/porters-paints/porters-paints_imgarea02-bg.jpg);
  }
  @media screen and (max-width: 767px) {
    .porters-paints_feature {
      padding-bottom: 48px;
    }
    .porters-paints_why {
      padding-top: 0;
    }
    .porters-paints_why .imgarea {
      max-width: 160px;
      margin-bottom: 80px;
    }
    .porters-paints_why--content:not(:last-child) {
      margin-bottom: 48px;
    }
  }


/* page-haymespaint
*************************************************** */
  .haymespaint_imgarea01-bg {
    background-image: url(../images/haymespaint/haymespaint_imgarea01-bg.jpg);
  }
  @media screen and (max-width: 767px) {
    .haymespaint_why--content {
      margin-bottom: 48px;
    }
    .haymespaint_why .imgarea, 
    .haymespaint_why .txtarea {
      margin-bottom: 40px;      
    }
  }


/* page-microverlay
*************************************************** */
  .microverlay_imgarea01-bg {
    background-image: url(../images/microverlay/microverlay_imgarea01-bg.jpg);
  }
  @media screen and (max-width: 767px) {
    .microverlay_feature {
      padding-bottom: 48px;
    }
    .microverlay_why {
      padding-top: 0;
    }
    .microverlay_why--content {
      margin-bottom: 48px;
    }
    .microverlay_why .imgarea, 
    .microverlay_why .txtarea {
      margin-bottom: 40px;      
    }
  }


/* page-method
*************************************************** */
  .method_intro .txtarea {
    max-width: 400px;
  }
  .method_imgarea01-bg {
    background-image: url(../images/method/method_imgarea01-bg.jpg);
  }
  @media screen and (max-width: 767px) {
    .method_intro {
      padding-top: 0;
    }
    .method_intro .imgarea {
      margin-bottom: 40px;
    }
    .method_feature {
      padding-bottom: 0;
    }
    .method_gradation {
      padding-top: 40px;
    }
    .method_gradation .imgarea {
      margin-bottom: 64px;
      width: 200px;
    }
  }
  
/* page-about
*************************************************** */
  .flow-lists {
    counter-reset: num 0;
  }
  .flow-list {
    position: relative;
    border: solid 1px #e3e7ea;
    counter-increment: num;
  }
  .flow-list:not(:last-child) {
    margin-bottom: 80px;
  }
  .flow-list:not(:last-child)::before,
  .flow-list:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
  }
  .flow-list:not(:last-child)::before {
    width: 1px;
    height: 24px;
    background-color:  #e3e7ea;
    bottom: -52px;
  }
  .flow-list:not(:last-child)::after {
    width: 17px;
    height: 17px;
    bottom: -50px;
    border-top: 1px solid  #e3e7ea;
    border-right: 1px solid  #e3e7ea;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .flow-list .imgarea {
    width: 320px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
  }
  #flow-01 .imgarea { background-image: url(../images/about/about_flow-img01.jpg); }
  #flow-02 .imgarea { background-image: url(../images/about/about_flow-img02.jpg); }
  #flow-03 .imgarea { background-image: url(../images/about/about_flow-img03.jpg); }
  #flow-04 .imgarea { background-image: url(../images/about/about_flow-img04.jpg); }
  #flow-04 .imgarea {
    min-height: 320px;
  }
  .flow-list .txtarea {
    width: calc(100% - 320px);
    padding: 64px;
  }
  .flow-list .txtarea h3::before {
    content: counter(num, decimal-leading-zero) '. ';
  }

  /* --- fixside --- */
  .fixside li {
    counter-increment: num;
  }
  .fixside a::before {
    content: counter(num, decimal-leading-zero) '. ';
  }
  .fixside a.active {
    color: #DE6800;
    transform: translateX(8px);
    display: inline-block;
  }
  .faq_item {
    position: relative;
    z-index: 10;
    background: #fff;
    padding-bottom: 64px;
    border-bottom: 1px solid #e3e7ea;
    padding-left: 120px;
    padding-right: 40px;
  }
  .faq_item:first-child {
    padding-top: 64px;
    border-top: 1px solid #e3e7ea;
  }
  .faq_item:not(:last-child) {
    margin-bottom: 64px;
  }
  .faq_item .faq--q {
    position: relative;
    margin-bottom: 24px;
    text-align: left;
  }
  .faq_item .faq--a {
    position: relative;
  }
  .faq_item .faq--icon {
    position: absolute;
    top: 0;
    left: -80px;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0;
  }
  .faq_item .faq--q .faq--icon {
    content: 'Q';
    color: #fff;
    background-color: #8e9ea8;
  }
  .faq_item .faq--a .faq--icon {
    content: 'A';
    background-color: #f8f8f8;
    color: #8e9ea8;
  }

  @media screen and  (max-width: 767px) {
    .about_intro {
      padding-top: 0;
    }
    .about_flow--main .inner {
      width: 90%;
    }
    .page-flow .main_column,
    .page-flow .side_column {
      padding-bottom: 40px;
    }
    .flow-list .imgarea {
      width: 100%;
      height: 320px;
      min-height: 0;
    }
    .flow-list .txtarea {
      width: 100%;
      padding: 24px;
    }
    .flow-list .txtarea p {
      font-size: 92.8%;
      letter-spacing: .15em;
      -ms-text-justify: inter-ideograph;
      text-justify: inter-ideograph;
      text-align: justify;
      line-height: 2;
    }
    .about_flow .side_column {
      display: none;
    }
    .about_komuten {
      width: 80%;
      margin: 0 auto;
    }
    .faq_item {
      padding: 20px 16px 20px 56px;
    }
    .faq_item:not(:last-child) {
      margin-bottom: 8px;
    }
    .faq_item .faq--q {
      margin-bottom: 8px;
    }
    .faq_item .faq--icon {
      top: -4px;
      left: -40px;
      width: 32px;
      height: 32px;
      line-height: 32px;
      border-radius: 16px;
      font-size: 86%;
    }
  }


/* page-contact
*************************************************** */
  .page-contact .page_ttl {
    text-align: center;
    background: #f5f7f9;
  }
  .contact_content {
    background: #f5f7f9;
  }
  .contact--txt {
    margin-bottom: 24px;
  }
  .contact--tel {
    margin-bottom: 64px;
  }
  .contact--tel .tel_txt {
    font-size: 200%;
    line-height: 1.5;
  }
  .page-contact .box {
    background: #fff;
  }
  .footer--sub_nav {
    line-height: 1;
  }
  .page-contact .footer--sub_nav {
    width: 100%;
  }
  @media screen and (max-width: 1240px) and (min-width: 768px) {
    .footer--nav {
      width: 440px;
    }
  }
  @media screen and  (max-width: 767px) {
    .contact_content {
      padding-top: 40px;
      padding-bottom: 8px;
    }
    .contact--tel {
      margin-bottom: 40px;
    }
    .contact--txt.txt-ctr {
      text-align: left;
    }
    .contact--form--area {
      width: 90%;
    }
    .page-contact .box {
      padding-top: 8px;
      padding-bottom: 24px;
    }
  }


/* page-thanks
*************************************************** */
  @media screen and  (max-width: 767px) {
    .page-thanks .inner.txt-ctr {
      text-align: left;
    }
  }


/* 404
*************************************************** */
  .page-404 .content-404 p {
    margin-bottom: 80px;
  }
  @media screen and  (max-width: 767px) {
    .page-404 .content-404 p {
      margin-bottom: 24px;
      font-size: 100%;
    }
  }


/* page-sitemap
*************************************************** */
  .sitemap--list { width: 49%; }
  .sitemap--list-page.sitemap--list > li { margin-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-ttl { 
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    .sitemap--list { width: 100%; }
    .sitemap--list-posts.sitemap--list > .sitemap--item-child { margin-bottom: 8px; }
  }


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

    ARCHIVE

############################################################################## */
  
/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    border-radius: 0;
    opacity: 0;
    background: #eee;
    mix-blend-mode: multiply;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .post--link:hover::before {
    opacity: .25;
  }
  .post--date {
    font-size: 85.75%;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 70%;
    line-height: 1;
    padding: 6px 0 6px .1em;
    float: left;
    margin-left: 8px;
    margin-bottom: 4px;
    white-space: nowrap;
    border-bottom: 1px solid;
    letter-spacing: .1em;
  }
  .cat_list a:hover {
    border-color: transparent;
  }
  .no-image {
    background-size: 50% auto!important;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #cbd2d8;
    background-image: url(../images/common/logo-yoko.svg);
    opacity: .25;
  }

  @media print, screen and (max-width: 1280px) {
    .main_column {
      width: 100%;
      margin-right: 0;
    }
  }


/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    font-size: 120%;
    letter-spacing: .2em;
    line-height: 1;
    margin-bottom: 16px;
  }
  .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; }

  /* --- archive --- */
  .side_column .archive_list--ttl {
    margin-bottom: 4px;
    cursor: pointer;
  }
  .side_column .archive_list--ttl::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: translateY(-2px) rotate(135deg);
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .side_column .archive_list--ttl.active::after { transform: translateY(2px) rotate(-45deg); }
  .side_column .archive_month { display: none; }

  @media print, screen and (max-width: 1280px) {
    .side_column { 
      display: none;
    }
  }

  /* --- 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 #eee; }
  .archive-pulldown .archive_list--label { margin-right: 16px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 6px 54px 6px 32px;
    background-color: #fff;
    border: 1px solid #dedede;
    color: #8e9ea8;
    letter-spacing: .2em;
    font-family: 'EB Garamond', 'Ryumin Medium KL', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', sans-serif;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 2px;
    margin: auto;
    right: 16px;
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    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-color: #fff;
    border: 1px solid #dedede;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

  @media screen and (max-width: 767px) {
    .archive-pulldown {
      margin: 0 auto 16px;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .archive-pulldown .archive_list--btn {
      padding-top: 4px;
      padding-bottom: 4px;
      font-size: 100%;
    }
    .archive-pulldown .archive_list--btn::after {
      bottom: 3px;
      width: 5px;
      height: 5px;
    }
    .archive-pulldown .active .archive_list--btn::after {
      top: 4px;
    }
  }


/* archive-works
**************************************** */
  .works--category {
    border-bottom: 1px solid #e3e7ea;
    padding: 16px 0;
    border-top: 1px solid #e3e7ea;
  }
  .works--category li a {
    background: #f5f7f9;
    display: inline-block;
    padding: 0 16px;
  }
  .works--category li:not(:first-child) {
    margin-left: 8px;
  }
  .works--category li a:hover {
    background: #e3e7ea;
  }
  .posts-works .post--txtarea { flex: 1; }
  .posts-works .post--date {
    margin-right: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .posts-works .post--img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .posts-works .post--img::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 75%;
  }
  .posts-works .post--img.no-image,
  .posts-side .post--img.no-image {
    background-color: #eee;
  }

  @media print, screen and (max-width: 1100px) {
    .posts-works { margin-bottom: 56px; }
    .archive-works .container > .inner.flex,
    .single-works .container > .inner.flex {
      display: block;
    }
  }

  @media screen and (max-width: 767px) {
    .works--category {
      font-size: 92.5%;
      padding: 8px 0;
    }
    .works--category .category--ttl {
      display: none;
    }
    .works--category .side--list {
      white-space: nowrap;
    }
    .works--category li:not(:first-child) {
      margin: 0 10px 0 0;
    }
    .posts-works .post {
      display: block;
      margin-bottom: 48px;
    }
    .posts-works .post--img {
      margin-bottom: 16px;
      text-align: center;
    }
  }

/* archive-news
**************************************** */
  
  /* --- 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;
  }

  /* --- news_list --- */
  main .news_list .post {
    padding: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid #dedede;
  }
  main .news_list .post:nth-child(1) {
    border-top: 1px solid #dedede;
  }
  main .news_list .post--date {
    margin-right: 32px;
  }
  main .news_list .post .post--img {
    width: 200px;
    height: 120px;
    background-position: center;
    background-size: cover;
  }
  main .news_list .post .txtarea {
    width: calc(100% - 240px);
  }
  main .news_list a[href="javascript:void(0);"],
  main .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    text-decoration: none;
  }

  .posts-home_news a[target="_blank"]::after,
  main .news_list a[target="_blank"]::after {
    content: '';
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-link.svg);
    background-repeat: no-repeat;
  }

  @media screen and (max-width: 767px) {
    .archive-news--content {
      padding-top: 0;
    }
    main .news_list .post {
      padding: 16px 0;
    }
    main .news_list .post .txtarea {
      width: calc(100% - 100px);
    }
    main .news_list .post .post--img {
      width: 80px;
      height: 80px;
    }
    main .news_list .post--date {
      display: inline-block;
      margin-bottom: 4px;
    }
  }


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

    SINGLE

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

/* pass
**************************************** */
  #pass p {
    margin-bottom: 1em;
  }
  #pass input[name="post_password"] {
    padding: 5px;
    border: solid 1px #aaa;
    outline: none;
  }
  #pass input[type="submit"] {
    padding: 4px 16px;
    letter-spacing: .15em;
    background-color: #ddd;
    border-radius: 4px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all all 1s cubic-bezier(.35, .04, 0, .99);
  }
  #pass input[type="submit"]:hover {
    opacity: .7;
  }

/* wp-pagenavi
**************************************** */
  .wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #e3e7ea;
    border-bottom: 1px solid #e3e7ea;
  }
  .wp-pagenavi .pages {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
  }
  .wp-pagenavi a {
    position: relative;
    padding: .75em 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .wp-pagenavi a:hover {
    background: #f5f7f9;
  }
  .wp-pagenavi > *:not(.pages) {
    max-width: calc(100% / 2.6);
  }
  .archive .wp-pagenavi > *:not(.pages) {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 40px;
    height: 40px;
    letter-spacing: 0;
  }
  .wp-pagenavi-single a[rel="prev"],
  .wp-pagenavi-single a[rel="next"] {
    width: 40px;
  }
  .wp-pagenavi > *:not(.pages):not(:last-child) {
    margin-right: 16px;
  }
  .wp-pagenavi .extend {
    width: 24px !important;
  }
  .wp-pagenavi a[rel="prev"]::before,
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    content: "";
    width: 8px;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #8e9ea8;
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    right: 0;
    left: 0;
  }
  .wp-pagenavi a[rel="next"]::before,
  .wp-pagenavi .last::before,
  .wp-pagenavi .last::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -6px;
  }
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -6px;
  }

  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 24px;
    }
    .wp-pagenavi a {
      padding: .5em;
    }
    .archive .wp-pagenavi > *:not(.pages) {
      width: 32px;
      height: 32px;
    }
    .wp-pagenavi-single a[rel="prev"],
    .wp-pagenavi-single a[rel="next"] {
      width: 32px;
    }
    .wp-pagenavi .first::before,
    .wp-pagenavi .last::before {
      left: -5px;
    }
    .wp-pagenavi .first::after,
    .wp-pagenavi .last::after {
      right: -5px;
    }
  }


/* pass
**************************************** */
  .single .pass {
    width: 100%;
  }
  .single .pass p:first-child {
    margin-bottom: 16px;
  }

  @media screen and (max-width: 767px) {
    .single .pass p:first-child {
      text-align: left;
    }
  }


/* single-news
**************************************** */
  @media screen and (max-width: 767px) {
    .single-news--content {
      padding-top: 0;
    }
  }


/* single-works
**************************************** */
  .works--info--category {
    margin-top: -36px;
  }
  .colorbox-link {
    position: relative;
    overflow: hidden;
  }
  .colorbox-link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 60, 68, .25) url(../images/common/icon-zoom.svg) center no-repeat;
    background-size: 40px auto;
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
    opacity: 0;
    z-index: 10;
  }
  .colorbox-link:hover::before {
    opacity: 1;
  }
  .colorbox-link .imgbox {
    transition: all 1s cubic-bezier(.35, .04, 0, .99);
  }
  .colorbox-link:hover .imgbox {
    transform: scale(1.05);
    -webkit-filter: blur(3px);
    filter: blur(3px);
  }
  .colorbox {
    max-width: 890px; 
  }
  .works--dl {
    width: 100%;
    margin-bottom: 8px;
  }
  .works--dl--dt {
    width: 10em;
  }
  .works--dl--dd {
    width: calc(100% - 10em);
  }
  @media screen and (max-width: 767px) {
    .single-works--content {
      padding-top: 0;
    }
    .single-works--content .inner {
      width: 90%;
    }
    .works--info--category {
      margin-top: 0;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .works--info--category .cat_list a {
      border-bottom: none;
      padding: 0;
      margin-bottom: 0;
    }
    .works--dl {
      font-size: 92.5%;
      letter-spacing: .1em;
      line-height: 1.8;
    }
    .works--dl--dt {
      width: 7.5em;
    }
    .works--dl--dd {
      width: calc(100% - 7.5em);
    }
    .colorbox .txtarea {
      line-height: 1.8;
    }
  }


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

    FORMY

############################################################################## */
  #formy_form table { 
    width:100%;
    font-family: 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', sans-serif;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: 100%;
    vertical-align: middle;

  }
  #formy_form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    padding: 24px 24px 0 24px;
  }
  #formy_form td {
    padding: 8px 24px 24px 24px;
    border-bottom: solid 1px #f8f8f8;
  }
  #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 {
    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 {
    margin: 0;
    padding: 5px 15px;
    border: 1px solid #dedede;
    font: inherit;
    font-size: 100%;
    letter-spacing: .1em;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { 
    height: 40px;
    min-width: 75%;
  }
  #formy_form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #formy_form input:hover { opacity: .7; }
  #formy_form textarea:hover { opacity: .7; }
  #formy_form input:focus { outline: none; }
  #formy_form .parsley-validated {  background-color: #eee; }
  #formy_form .parsley-error {  background-color: #fee; }
  #formy_form .parsley-success {  background-color: #fff; }
  .help_text {
    font-size: 79%;
    letter-spacing: .175em;
  }
  .hidden_help { display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #dedede;
    font-size: 87%;
    padding: 8px 16px;
  }
  .requiredIcon {
    background-color: #cbd2d8;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 0 5px 0 7px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
    margin-top: 3px;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 14px 56px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-weight: normal;
    font-size: 100%;
    letter-spacing: .15em;
    font-family: 'EB Garamond', 'Ryumin Medium KL', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', sans-serif;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"] { display: none !important; }
  #formy_form ul li label {
    position: relative;
    display: inline-block;
    padding: .25em 8px .25em 36px;
    line-height: 1.6;
    vertical-align: top;
    cursor: pointer;
  }
  #formy_form ul li label:hover { opacity: .7; }
  #formy_form ul li label::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    left: 6px;
    top: 9px;
    background: #cbd2d8;
  }
  #formy_form ul li input[type="radio"] + label::before { border-radius: 10px; }
  #formy_form ul li input[type="radio"]:checked + label,
  #formy_form ul li input[type="checkbox"]:checked + 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 {
    border-color: #e75f5f;
  }
  #formy_form ul li input[type="radio"]:checked + label::after,
  #formy_form ul li input[type="checkbox"]:checked + label::after {
    content: "";
    width: 10px;
    height: 18px;
    top: 2px;
    left: 9px;
    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_btn .formy_confirm {
    background-color: #e75f5f;
  }
  #formy_btn .formy_submit_disabled {
    background: transparent;
    color: #8E9EA8;
    border: 1px solid;
    border-radius: 0;
  }
  #formy_btn .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  #formy_btn .autoConfirmBack {
    background-color: #aaa;
  }
  #formy_btn .formy_send {
    background-color: #cf2e2e;
  }
  #total_required {
    padding: 16px;
    color: #cf2e2e;
    text-align: center;
    font-weight: normal;
  }
  ::placeholder {
    color: #bccad3;
  }
  .formy_error {
    font-size: 85%;
    letter-spacing: .2em;
    color: #cf2e2e !important;
    line-height: 1.6;
  }
  .confirm-message {
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    #formy_form th,
    #formy_form td {
      display: block;
      width: auto;
      padding-left: 0;
      padding-right: 0;
    }
    #formy_form th {
      border-bottom:none;
      padding-bottom: 0;
      white-space: normal;
      font-weight: bold;
      padding-top: 16px;
    }
    #formy_form td { 
      padding-top: 0;
      padding-bottom: 16px;
    }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
    .autoConfirmBack { margin-bottom: 8px; }
    #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 {
      font-size: 16px; /* iOSでズーム防止 */
    }
  }