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

    KEYFRAMES

############################################################################## */
  
/* flashing
**************************************** */
  @-webkit-keyframes flashing {
    0% { opacity: 1;}
    50% { opacity: .2;}
    100% { opacity: 1;}
  }
  @keyframes flashing {
    0% { opacity: 1;}
    50% { opacity: .2;}
    100% { opacity: 1;}
  }

/* bgscroll
**************************************** */
  @-webkit-keyframes bgscroll {
    0% { background-position: 0 0; }
    100% { background-position: -3879px 0; }
  }
  @keyframes bgscroll {
    0% { background-position: 0 0; }
    100% { background-position: -3879px 0; }
  }

/* bgscale
**************************************** */
  @-webkit-keyframes bgscale {
    0% { background-size: auto 90%; }
    50% { background-size: auto 100%; }
    100% { background-size: auto 90%; }
  }
  @keyframes bgscale {
    0% { background-size: auto 90%; }
    50% { background-size: auto 100%; }
    100% { background-size: auto 90%; }
  }


  @media screen and (max-width: 767px) {
    @-webkit-keyframes bgscroll {
      0% { background-position: 0 0; }
      100% { background-position: -1939.5px 0; }
    }
    @keyframes bgscroll {
      0% { background-position: 0 0; }
      100% { background-position: -1939.5px 0; }
    }
  }

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

    COMMON

############################################################################## */
  
  html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  body {
    height: 100%;
  }

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

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-xs { max-width: 880px; }
  .inner-sm { max-width: 1000px; }
  .inner-lg { max-width: 1480px; }
  .inner-xl { max-width: 1630px; }

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

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

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

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

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

  @media screen and  (max-width: 767px) {
    .inner { width: 86%; }
    .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-row; }
    .pc-none-flex {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }

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

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

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

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

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

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

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

  /* --- 子要素の複数行設定 --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  
  /* --- ざっくりflexレイアウト --- */
  .flex-col2,
  .flex-col3,
  .flex-col4, 
  .flex-col5 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col4 > * {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }
  .flex-col5 > * {
    width: 18.2%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col5 > *:nth-child(5n+5) { margin-right: 0; }

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

    .flex-col2.flex-sp-block >*, 
    .flex-col3.flex-sp-block >* {
      width: 100%;
      margin-right: 0;
    }

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    
    /* --- ざっくりflexレイアウト - sp --- */
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }
    .flex-sp-col3.flex-col5 > *:nth-child(5n+5) { margin-right: 3%; }

  }

/* bg
**************************************** */
  .bg-wh { background-color: #fff; }
  .bg-gray { background-color: #f6f6f6; }
  .bg-light { background-color: #f8f8f8; }
  .bg-beige { background-image: url(../images/common/bg_beige.jpg); }
  .bg-green { background-image: url(../images/common/bg_green.jpg); }

/* section deco
**************************************** */
  .section_deco, 
  .section_wave {
    position: relative;
  }
  .section_deco::before {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background-position: center;
    content: "";
    pointer-events: none;
    z-index: 1;
  }
  .bg-green.section_deco::before {
    top: -132px;
    height: 132px;
    background-image: url(../images/common/line-green.png);
  }
  .bg-wh.section_deco::before {
    background-image: url(../images/common/line-white.png);
  }
  .bg-light.section_deco::before {
    background-image: url(../images/common/line-light.png);
  }
  .bg-beige.section_deco::before {
    background-image: url(../images/common/line-beige.png);
  }
  .section_wave::before {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    content: "";
    z-index: 1;
  }
  .bg-beige.section_wave::before {
    background-image: url(../images/common/wave-beige.png);
  }
  .bg-gray.section_wave::before {
    background-image: url(../images/common/wave-gray.png);
  }

  @media screen and (max-width: 768px) {
    .section_wave::before {
      top: -8px;
      height: 8px;
      background-size: auto 8px;
    }
  }

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

  /* --- page_ttl --- */
  .page_ttl {
    display: flex;
    align-items: center;
    background-image: url(../images/page_ttl/page_ttl-common.jpg);
    padding-top: calc(100% - 90%);
    padding-bottom: calc(100% - 90%);
    min-height: 520px;
    text-align: center;
  }
  .page-history .page_ttl, 
  .page-access .page_ttl, 
  .page-media .page_ttl, 
  .archive-matsuyama-channel .page_ttl, 
  .archive-news .page_ttl, 
  .single-news .page_ttl, 
  .single-marsuyama-channel .page_ttl {
    min-height: 400px;
  }
  .page-factory .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-factory.jpg);
  }
  .page-gaiyou .page_ttl, 
  .page-history .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-gaiyou.jpg);
  }
  .page-message .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-message.jpg);
    background-position: center right 25%;
  }
  .page-doubuchi .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-doubuchi.jpg);
  }
  .page-general .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-general.jpg);
  }
  .page-solar .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-solar.jpg);
  }
  .page-access .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-access.jpg);
  }
  .page-mikedoubuchi .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-mikedobuchi.jpg);
  }
  .page-access .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-access.jpg);
  }
  .archive-news .page_ttl, 
  .single-news .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-news.jpg);
  }
  .archive-matsuyama-channel .page_ttl, 
  .single-matsuyama-channel .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-matsuyama_channel.jpg);
  }
  .news_category-media .page_ttl, 
  .single-news.news_category_media .page_ttl {
    background-image: url(../images/page_ttl/page_ttl-media.jpg);
  }
  .page-contact .page_ttl {
    align-items: flex-end;
    min-height: 200px;
    padding-bottom: 0;
    background-image: url(../images/common/bg_green.jpg);
  }
  .page-thanks .page_ttl {
    display: none;
  }
  .page_ttl-jp,
  .page_ttl-en {
    display: block;
    color: #fff;
  }
  .page_ttl-jp {
    font-size: 320%;
    font-weight: 600;
    letter-spacing: .05em;
    font-family: 'yokohama', 'Kaimin Sora Heavy', sans-serif;
  }
  .page_ttl-en {
    font-size: 120%;
    text-transform: uppercase;
    font-family: din-2014, sans-serif;
  }

  /* --- section_ttl --- */
  .section_ttl {
    position: relative;
    line-height: 1.6;
    letter-spacing: .1em;
    text-align: center;
  }
  .section_ttl::before {
    content: url(../images/common/section_ttl_img.png);
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    display: inline-block;
    margin: auto;
  }
  .section_ttl > * {
    display: block;
  }
  .section_ttl strong {
    position: relative;
    margin-bottom: 42px;
    font-size: 300%;
    line-height: 1.45;
    color: #01AC4D;
    font-weight: 600;
    letter-spacing: .05em;
    font-family: 'yokohama', 'Kaimin Sora Heavy', sans-serif;
  }
  .section_ttl strong::before, 
  .section_ttl strong::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: 0 auto;
    width: 120px;
    height: 1px;
    background-color: #ccc;
  }
  .section_ttl strong::after {
    bottom: -10px;
  }
  .section_ttl small {
    color: #BBB;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: din-2014, sans-serif;
  }
  .section_ttl-wh::before {
    content: url(../images/common/section_ttl_img-green.png);
  }
  .section_ttl-wh strong {
    color: #fff;
  }
  .section_ttl-gray::before {
    content: url(../images/common/section_ttl_img-gray.png);
  }
  .section_ttl-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 250%;
    letter-spacing: .06em;
  }
  .section_ttl-sm span {
    margin: 0 32px;
    font-weight: bold;
    line-height: 1.25;
    text-align: center;
  }
  .section_ttl-sm span small {
    font-size: 60%;
  }
  .section_ttl-sm::before, 
  .section_ttl-sm::after {
    content: "";
    flex: 1;
    height: 1px;
    border-bottom: 6px double;
  }

  /* --- section_catch --- */
  .section_catch {
    line-height: 1.75;
    letter-spacing: .15em;
    font-size: 200%;
    color: #01AC4D;
    font-family: 'yokohama', 'Kaimin Sora heavy', sans-serif;
  }

  /* --- heading --- */
  .heading-1, 
  .heading-2 {
    color: #01AC4D;
    letter-spacing: .09em;
    font-family: 'yokohama', 'Kaimin Sora Heavy', sans-serif;
  }
  .heading-1 {
    font-size: 250%;
    line-height: 1.35;
  }
  .heading-2 {
    font-size: 200%;
    line-height: 1.6;
  }
  .heading-3 {
    font-size: 140%;
    letter-spacing: .06em;
    line-height: 1.6;
  }
  .heading-4 {
    font-size: 112%;
    letter-spacing: .09em;
    line-height: 1.65;
  }

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

    /* --- page_ttl --- */
    .page_ttl {
      padding: 40px 0;
      margin-top: 56px;
      min-height: 240px;
      background-position: center;
      background-image: url(../images/page_ttl/page_ttl-common_sp.jpg);
    }
    .page-history .page_ttl, 
    .page-access .page_ttl, 
    .page-media .page_ttl, 
    .archive-matsuyama-channel .page_ttl, 
    .archive-news .page_ttl, 
    .single-news .page_ttl, 
    .single-marsuyama-channel .page_ttl {
      min-height: 200px;
    }
    .page-factory .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-factory_sp.jpg);
    }
    .page-gaiyou .page_ttl, 
    .page-history .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-gaiyou_sp.jpg);
    }
    .page-message .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-message_sp.jpg);
      background-position: center;
    }
    .page-doubuchi .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-doubuchi_sp.jpg);
    }
    .page-general .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-general_sp.jpg);
    }
    .page-mikedoubuchi .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-mikedobuchi_sp.jpg);
    }
    .page-contact .page_ttl {
      min-height: 120px;
    }
    .page-access .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-access_sp.jpg);
    }
    .page-solar .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-solar_sp.jpg);
    }
    .archive-news .page_ttl, 
    .single-news .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-news_sp.jpg);
    }
    .archive-matsuyama-channel .page_ttl, 
    .single-matsuyama-channel .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-matsuyama_channel_sp.jpg);
    }
    .news_category-media .page_ttl, 
    .single-news.news_category_media .page_ttl {
      background-image: url(../images/page_ttl/page_ttl-media_sp.jpg);
    }
    .page_ttl-jp {
      margin-bottom: 8px;
      font-size: 8vw;
      line-height: 1.25;
    }

    /* --- section_ttl --- */
    .section_ttl::before {
      content: "";
      top: -12px;
      width: 77px;
      height: 45px;
      background-size: cover;
      background-image: url(../images/common/section_ttl_img.png);
    }
    .section_ttl-wh::before {
      content: "";
      background-image: url(../images/common/section_ttl_img-green.png);
    }
    .section_ttl-gray::before {
      content: "";
      background-image: url(../images/common/section_ttl_img-gray.png);
    }
    .section_ttl strong {
      margin-bottom: 24px;
      font-size: 7.5vw;
      line-height: 1.25;
    }
    .section_ttl strong::before, 
    .section_ttl strong::after {
      width: 90px;
    }
    .section_ttl strong::before { bottom: -8px; }
    .section_ttl strong::after { bottom: -12px; }
    .section_ttl-sm { font-size: 6.4vw; }
    .section_ttl-sm span { margin: 0 .45em; }

    /* --- section_catch --- */
    .section_catch {
      line-height: 1.55;
      letter-spacing: .05em;
      font-size: 171%;
    }

    /* --- heading --- */
    .heading-1 {
      font-size: 7.45vw;
      line-height: 1.35;
      letter-spacing: .05em;
    }
    .heading-2 {
      font-size: 4.85vw;
      line-height: 1.45;
      letter-spacing: .06em;
    }
    .heading-3 { font-size: 128%; }
    .heading-4 {
      font-size: 115%;
      letter-spacing: .06em;
    }

  }

/* txt
**************************************** */
  .txt-lg { font-size: 107%; }
  .txt-sm {
    font-size: 87%;
    line-height: 1.75;
  }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-attention {
    font-size: 81%;
    line-height: 1.65;
    color: #999;
  }
  .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-link {
    text-decoration: underline;
    color: #01AC4D;
  }

  @media screen and (max-width: 768px) {
    .txt-ctr.sp-txt-lft { text-align: left; }
    .sp-txt-ctr { text-align: center; }
  }

/* table & list
**************************************** */
  table { width: 100%; }
  
  /* --- table_default --- */
  .table_default th, 
  .table_default td {
    padding: 16px 8px;
  }
  .table_default th {
    min-width: 40px;
    border-bottom: 2px solid #01AC4D;
    color: #01AC4D;
    line-height: 1.5;
  }
  .table_default td {
    padding: 16px 16px;
    border-bottom: 1px solid #01AC4D;
    border-left: 4px solid rgba(255,255,255,.01);
  }

  /* --- 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: #01AC4D;
    border: 1px solid #01AC4D;
    color: #fff;
    font-size: 107%;
    line-height: 1.5;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    background-color: #fff;
    font-size: 93%;
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 16px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 6px;
    background-color: #01AC4D;
  }
  /* 数字付きリスト */
  .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 #01AC4D;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #01AC4D;
  }
  /* 入れ子のスタイル */
  .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 #BFBFBF;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #01AC4D;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }

  @media screen and (max-width: 768px) {
    .table_default th,
    .table_default td {
      display: block;
    }
    .table_default th {
      border-bottom: 0;
      padding-bottom: 0;
      text-align: left;
    }
    .table_default td {
      padding-top: 4px;
      padding-left: 6px;
      padding-right: 6px;
    }

    .list li:not(:last-child) {
      margin-bottom: 8px;
    }
  }

/* btn
**************************************** */
  .btn {
    position: relative;
    display: inline-block;
    border-radius: 28px;
    background-color: #78A3C6;
    padding: .46em 3.4em .56em 4.4em;
    color: #fff;
    font-size: 112%;
    letter-spacing: .1em;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
  }
  .btn:hover {
    background-color: #4884B5;
  }
  .btn::before, 
  .btn::after {
    position: absolute;
    display: inline-block;
    content: "";
  }
  .btn::before {
    top: 0;
    left: 18px;
    bottom: 0;
    margin: auto;
    display: inline-block;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: rgba(255,255,255,.7);
    font-size: 50%;
  }
  .btn::after {
    top: 0;
    left: 24px;
    bottom: 0;
    margin: auto;
    height: 3px;
    border: 3px solid transparent;
    border-left: 5px solid #01AC4D;
  }
  .btn-sm {
    font-size: 92%;
    padding: .3em 2em .3em 3.4em;
  }
  .btn-lg {
    border-radius: 88px;
    font-size: 134%;
    padding: .46em 3.3em .56em 4.4em;
  }
  .btn-gn {
    background-color: #00ae4b;
  }
  .btn-wh {
    background-color: #fff;
    color: #222;
  }
  .btn-wh:hover {
    background-color: #4884B5;
    color: #fff;
  }
  .btn-wh::before {
    background-color: #01AC4D;
    color: #fff;
  }
  .btn-wh::after {
    border-left-color: #fff;
  }
  .btn + .btn {
    margin-left: 14px;
  }

  @media screen and (max-width: 768px) {
    .btn {
      border-radius: 40px;
      padding: .6em 2em .65em 3.35em;
      font-size: 108%;
      line-height: 1.5;
    }
    .btn-lg {
      border-radius: 88px;
      font-size: 112%;
      padding: .8em 3.2em .85em 4em;
    }
    .btn + .btn {
      margin-left: 0;
      margin-top: 14px;
    }
  }

/* font
**************************************** */
  .font-yokohama { font-family: 'yokohama', sans-serif; }
  .font-sora { font-family: 'Kaimin Sora Medium', sans-serif; }
  .font-shuei { font-family: 'Shuei MaruGo B', sans-serif; }
  .font-en {
    font-family: din-2014, sans-serif;
    font-weight: 600;
    font-style: normal;
  }

/* color
**************************************** */
  .color-wh { color: #fff; }
  .color-gre { color: #01AC4D; }

/* img
**************************************** */
  .img-deco img {
    border: 5px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(3,14,33,.25);
  }
  @media screen and (max-width: 768px) {
    .img-deco img {
      border-width: 4px;
    }
  }

/* box
**************************************** */
  .box {
    padding: 22px 26px 26px;
    border-radius: 4px;
  }
  @media screen and (max-width: 768px) {
    .box {
      padding: 16px 16px 18px;
    }
  }


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

    HEADER

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

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 18px;
    z-index: 10;
    background-color: rgba(255,255,255,0);
    transition: all .4s ease-out;
  }
  .header--logo {
    width: 24vw;
    max-width: 375px;
  }
  .header, 
  .header .header--logo img {
    transition: all .4s ease-out;
  }
  .header .inner {
    position: relative;
    width: 96%;
  }
  .header.scrollon {
    background-color: rgba(255,255,255,1);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.scrollon .header--logo img {
    width: auto;
    height: 40px;
  }

  @media screen and (max-width: 1500px) {
    .header--logo { width: 22vw; }
  }
  @media screen and (max-width: 1400px) {
    .header--logo { width: 20vw; }
  }
  @media screen and (max-width: 768px) {
    .header {
      height: 56px;
      background-color: #fff;
      padding-top: 0;
    }
    .header::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 5px;
      background-image: url(../images/common/wave-wh_sp.png);
    }
    .header .inner {
      width: 100%;
      height: 100%;
      padding-left: 5%;
    }
    .header--logo { width: 47vw; }
    .header--nav { display: flex; }
  }

/* gnav
**************************************** */
  .gnav--list .parent--nav {
    position: relative;
    display: block;
    padding: 0 .85em;
    color: #fff;
    line-height: 1;
    font-size: 113%;
    cursor: pointer;
  }
  .gnav--list .parent--nav::after {
    content: "";
    position: absolute;
    left: .85em;
    bottom: -8px;
    display: inline-block;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all .2s ease-out;
  }
  .gnav--list .parent:hover .parent--nav::after, 
  .gnav--list .parent.current .parent--nav::after {
    width: calc(100% - 1.65em);
  }
  .gnav--list .open_child::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    margin: auto;
    width: 8px;
    border: 8px solid transparent;
    border-bottom: 12px solid #fafafa;
    opacity: 0;
    transition: all .2s ease-out;
  }
  .gnav--list .show .open_child::before {
    opacity: 1;
  }
  .gnav--list li:not(:nth-child(n+6)) {
    border-right: 1px solid #fff;
  }
  .gnav--list .gnav--tel {
    margin: 0 16px 0 8px;
    line-height: 1;
  }
  .gnav--list .gnav--tel a {
    padding: 0;
    font-size: 174%;
    color: #fff;
  }
  .gnav--list .gnav--tel svg {
    vertical-align: top;
  }
  .gnav--list .gnav--contact a {
    background-color: #fff;
    border-radius: 28px;
    padding: 12px 32px;
    color: #333;
    font-size: 100%;
  }
  .gnav--list .gnav--contact a:hover {
    background-color: #01AC4D;
    color: #fff;
  }

  .gnav .child {
    position: absolute;
    left: 33%;
    width: 800px;
    padding-top: 27px;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease-out;
  }
  .gnav .show .child {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .child--nav {
    position: relative;
    border-radius: 8px;
    background-color: #fafafa;
    padding: 28px;
  }
  .child--nav_list {
    flex: 1;
    margin-left: 40px;
  }
  .child--nav_list li:not(:last-child) { margin-bottom: 6px; }
  .child--nav_list li a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg) translateY(-3px);
    margin-right: 5px;
  }
  .child--nav_list li a::after { display: none !important; }
  .child--nav_list li a:hover { color: #01AC4D; }
  .child--nav_img img { border-radius: 8px; }

  .header.scrollon .gnav--list .parent--nav {
    font-size: 100%;
    color: #222;
  }
  .header.scrollon .gnav--list li:not(:nth-child(n+7)) {
    border-right-color: #ddd;
  }
  .header.scrollon .gnav--list .parent .parent--nav::after {
    background-color: #eee;
  }
  .header.scrollon .gnav .gnav--tel a {
    font-size: 174%;
    color: #00ae4b;
  }
  .header.scrollon .gnav--list .gnav--tel .cls-1 {
    fill: #00ae4b !important;
  }
  .header.scrollon .gnav .gnav--contact a {
    padding: 8px 32px;
    background-color: #00ae4b;
    color: #fff;
  }
  .gnav--list .child--nav li:not(:nth-child(n+7)), 
  .header.scrollon .child--nav li:not(:nth-child(n+7)) {
    border-right: none;
  }

  @media screen and (max-width: 1600px) {
    .header .gnav a, 
    .header .gnav--list .parent--nav, 
    .header.scrollon .gnav a, 
    .header.scrollon .gnav--list .parent--nav {
      font-size: 94%;
    }
    .gnav--list .parent--nav { padding: 0 .65em; }
    .gnav--list .gnav--tel { margin: 0 8px 0 0; }
    .gnav--list .gnav--tel a, 
    .header.scrollon .gnav .gnav--tel a {
      font-size: 148%;
    }
    .gnav--list .gnav--tel svg {
      vertical-align: bottom;
    }
    .gnav--list .gnav--contact a, 
    .header.scrollon .gnav .gnav--contact a {
      padding: 8px 20px;
    }
  }
  @media screen and (max-width: 1268px) {
    .gnav--list .gnav--contact { margin-left: 14px; }
    .gnav--list .gnav--tel { display: none; }
  }
  @media screen and (max-width: 1070px) {
    .gnav--list .parent--nav {
      padding: 0 .65em;
    }
    .gnav--list .gnav--tel {
      margin: 0 6px 0 0;
    }
    .gnav--list .gnav--contact a, 
    .header.scrollon .gnav .gnav--contact a {
      padding: 8px 14px;
    }
  }
  @media screen and (max-width: 768px) {
    .gnav {
      position: fixed;
      top: 56px;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      padding-top: 26px;
      pointer-events: none;
      transition: .2s ease-out;
      background-image: url(../images/common/bg_beige.jpg);
    }
    .header.active .gnav {
      opacity: 1;
      padding-bottom: 80px;
      pointer-events: all;
      overflow-y: scroll;
    }
    .gnav_btn, 
    .tel_btn a {
      position: relative;
      width: 56px;
      height: 56px;
      border-left: 1px solid #E7E5E4;
    }
    .gnav_btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: calc(100% + 5px);
      z-index: 1;
      transition: .2s ease-out;
      background-image: url(../images/common/bg_beige.jpg);
      opacity: 0;
    }
    .header.active .gnav_btn::before {
      opacity: 1;
    }
    .gnav_btn--lines {
      position: relative;
      width: 26px;
      height: 16px;
      margin-top: -11px;
      z-index: 2;
    }
    .gnav_btn--lines::after, 
    .tel_btn a::after {
      transform: translate(-2px, 12px);
      display: inline-block;
      line-height: 1;
      font-family: din-2014, sans-serif;
      font-size: 68%;
      letter-spacing: .08em;
      color: #aaa;
    }
    .gnav_btn--lines::after { content: "MENU"; }
    .tel_btn a::after {
      content: "TEL";
      transform: translate(0, 3px);
    }
    .header.active .gnav_btn--lines::after {
      content: "CLOSE";
      color: #01AC4D;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #01AC4D;
    }
    .gnav_btn--lines span:nth-of-type(1) { top: 0; }
    .gnav_btn--lines span:nth-of-type(2) { top: 7px; }
    .gnav_btn--lines span:nth-of-type(3) { bottom: 0; }
    .header.active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(5px) rotate(-35deg);
      transform: translateY(5px) rotate(-35deg);
    }
    .header.active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .header.active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-8px) rotate(35deg);
      transform: translateY(-8px) rotate(35deg);
    }
    .tel_btn img { margin-top: -2px; }
    .gnav--list {
      display: block;
      width: 90%;
      margin: 8px auto 34px;
    }
    .gnav--list li {
      position: relative;
      width: 100%;
    }
    .gnav--list li:not(:nth-child(n+7)) { border-right: 0; }
    .gnav--list .parent--nav {
      background-color: #fff;
      padding: 18px;
      color: #222;
      font-feature-settings: "palt";
      line-height: 1.35;
      border-bottom: 1px solid #ddd;
    }
    .gnav--list li:first-child .parent--nav {
      border-radius: 4px 4px 0 0;
    }
    .gnav--list li.current a.parent--nav { color: #01AC4D; }
    .gnav--list li:not(.gnav--contact) a::after { display: none; }
    .gnav--list li a::before {
      content: "";
      position: absolute;
      top: 20px;
      right: 18px;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 2px solid #d2d2d2;
      border-bottom: 2px solid #d2d2d2;
      transform: rotate(-45deg);
    }
    .open_btn {
      position: absolute;
      top: 6px;
      right: 8px;
      display: inline-block !important;
      width: 42px;
      height: 42px;
      border-radius: 4px;
      background: #f6f6f6;
    }
    .open_btn::before, 
    .open_btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 40%;
      height: 2px;
      background-color: #01AC4D;
      transition: all .2s ease-out;
    }
    .open_btn::after { transform: rotate(90deg); }
    .open_btn.close::after { transform: rotate(0); }
    .gnav .child {
      position: static;
      right: 0;
      width: 100%;
      padding-top: 0;
      opacity: 1;
      display: none;
      pointer-events: auto;
    }
    .child--nav {
      border-radius: 0;
      padding: 0;
      background-color: #f8f8f8;
    }
    .child--nav_list { margin-left: 0; }
    .child--nav_list li {
      margin-right: 0;
      margin-bottom: 0;
    }
    .child--nav_list li a {
      display: block;
      padding: 12px 18px;
      border-bottom: 1px solid #eee;
    }


    .gnav-sp-contact {
      width: 90%;
      margin: 0 auto;
    }
    .gnav-sp-contact_list {
      display: flex;
      font-size: 113%;
      text-align: center;
    }
    .gnav-sp-contact_list a {
      display: flex;
      flex-direction: column;
      padding: 14px 0;
      height: 100%;
      color: #fff;
      font-size: 106%;
    }
    .gnav-sp-contact_list a >* {
      display: block;
      margin: auto;
      line-height: 1.15;
    }
    .gnav-sp-contact strong {
      margin-bottom: 6px;
    }
    .gnav-sp-contact .tel { width: 60%; }
    .gnav-sp-contact .tel a {
      border-radius: 4px 0 0 4px;
      background-color: #018B3E;
    }
    .gnav-sp-contact .tel strong {
      margin-bottom: 0;
      font-size: 165%;
    }
    .gnav-sp-contact .contact { width: 40%; }
    .gnav-sp-contact .contact a {
      border-radius: 0 4px 4px 0;
      background-color: #007A36;
    }
  }


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

    FOOTER

############################################################################## */
  .footer {
    position: relative;
    padding: 48px 0;
  }
  .home .footer {
    padding: 0;
  }
  .home .footer::before {
    content: "";
    position: absolute;
    top: -116px;
    left: 0;
    width: 100%;
    height: 117px;
    background-repeat: no-repeat;
    background-position: top center;
    background-image: url(../images/common/footer_section_deco.png);
  }
  .home .footer .inner {
    transform: translateY(-50px);
  }
  .footer--nav li.sns {
    margin-top: 14px;
  }
  .footer--nav a, 
  .footer--nav span {
    position: relative;
    font-size: 94%;
    color: #fff;
    line-height: 1;
    font-feature-settings: "palt";
  }
  .footer--nav a:hover {
    opacity: .5;
  }
  .footer--nav li a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg) translate(1px, -1px);
    margin-right: 10px;
  }
  .footer--nav li.parent a::before, 
  .footer--nav li.sns a::before {
    display: none;
  }
  .footer--nav li.sns a {
    margin-left: 4px;
    padding: 6px 8px;
    border-radius: 4px;
    background-color: #fff;
    line-height: 1;
  }
  .footer--nav li.sns a img {
    vertical-align: sub;
  }
  .footer--nav li.sns a:nth-of-type(1) img {
    vertical-align: baseline;
    transform: translateY(1px);
  }
  .footer--copyright {
    text-align: center;
  }
  .pbl {
    margin-left: 12px;
    opacity: .5;
  }
  @media screen and (min-width: 768px) {
    .footer--copyright img {
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 768px) {
    .footer::before {
      top: -99px;
    }
    .footer--nav_lft {
      margin-bottom: 12px;
    }
    .footer--nav_lft li, 
    .footer--nav_rgt {
      border-bottom: 1px solid #fff;
    }
    .footer--nav_lft li a {
      display: block;
      padding: 12px 0;
      line-height: 1.5;
    }
    .footer--nav_rgt {
      padding-bottom: 16px;
    }
    .footer--nav_rgt .child {
      margin-top: 4px;
    }
    .footer--copyright img {
      margin-bottom: 16px;
    }
  }


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

    INDEX

############################################################################## */
  .hero {
    position: relative;
    background-position: center;
    margin-bottom: -15px;
    height: 820px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/hero_bg.jpg);
  }
  .hero .inner {
    position: absolute;
    top: 34%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .hero--ttl > * {
    display: block;
    color: #fff;
    letter-spacing: .04em;
    font-family: 'yokohama', 'Kaimin Sora Heavy', sans-serif;
  }
  .hero--ttl strong {
    margin-bottom: 24px;
    font-size: 234%;
    line-height: 1.45;
  }
  .hero--ttl small {
    font-size: 150%;
  }

  #background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  #background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @media screen and (max-width: 768px) {
    .hero {
      position: relative;
      margin-top: 48px;
      height: 410px;
      overflow: hidden;
    }
    .hero #hero--video {
      position: absolute;
      left: -54vw;
      width: auto;
      height: 100%;
    }
    .hero .inner {
      top: 24%;
    }
    .hero--ttl strong {
      margin-bottom: 16px;
      font-size: 6vw;
    }
    .hero--ttl small {
      font-size: 117%;
      line-height: 1.4;
      letter-spacing: .02em;
    }
  }

/* home_message
*************************************************** */
  .home_message .section_pdg {
    padding-top: 140px;
    padding-bottom: 200px;
  }
  .home_message--deco {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .home_message::after, 
  .home_message--deco::after {
    position: absolute;
    pointer-events: none;
  }
  .home_message::after {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 326px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/home_message_bg.png);
  }
  .home_message--deco::after {
    content: "";
    top: 98px;
    left: 0;
    right: 0;
    width: 100%;
    height: 667px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/home_message_photos.png);
  }
  .home_message .inner {
    position: relative;
    z-index: 1;
  }
  .home_message--member {
    position: absolute;
    left: -60px;
    bottom: 0;
    z-index: 1;
    transform: translateY(70%);
    transition: all .4s ease-out;
    transition-delay: .5s;
  }
  .active .home_message--member {
    transform: translateY(0);
  }

  @media screen and (max-width: 1300px) {
    .home_message--deco::after {
      background-size: 109%;
    }
  }
  @media screen and (max-width: 768px) {
    .home_message .section_pdg {
      padding-top: 40px;
      padding-bottom: 80px;
    }
    .home_message--deco::after {
      display: none;
    }
  }

/* home_local
*************************************************** */
  .home_local .section_ttl strong {
    margin-bottom: 34px;
    line-height: 1.2;
  }
  .section_ttl strong::before { bottom: -20px; }
  .section_ttl strong::after { bottom: -14px; }
  .home_local .section_ttl strong span {
    font-size: 83%;
    letter-spacing: .02em;
  }
  .home_local .txt, 
  .home_local .map {
    flex: 1;
  }
  .home_local .txt {
    margin-right: -34px;
  }
  .home_local .list-disc {
    position: relative;
    margin-top: -4px;
    padding-left: 40%;
    font-size: 150%;
  }
  .home_local .list-disc li {
    padding-left: 1em;
    margin-right: 32px;
    line-height: 1.2;
  }
  .home_local .list-disc li::before {
    top: .3em;
    width: 14px;
    height: 14px;
    border-radius: 8px;
    background-color: rgba(145, 199, 45, .5);
  }
  .home_local .list-disc li:first-child { width: 100%; }
  .home_local .list-disc li:not(:last-child) { margin-bottom: 14px; }
  .home_local .list-disc::before {
    content: "";
    position: absolute;
    top: -46px;
    left: 56px;
    display: inline-block;
    width: 28%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/home_local_bubble.png);
  }
  .home_local .txt p { padding-left: 2em; }
  .home_local .txt p small { font-size: 70%; }

  @media screen and (max-width: 768px) {
    .home_local .list-disc, 
    .home_local .txt p {
      padding-left: 0;
    }
    .home_local .txt {
      margin-right: 0;
      margin-bottom: 24px;
    }
    .home_local .txt img {
      width: 100%;
    }
    .home_local .list-disc {
      margin-top: 0;
    }
    .home_local .list-disc::before {
      top: -20px;
      left: auto;
      right: 0;
      width: 32%;
      background-image: url(../images/home_local_bubble_sp.png);
    }
    .home_local .map, 
    .home_local .map img {
      width: 100%;
    }
  }

/* home_factory
*************************************************** */
  .home_factory--kojiro_vs_musashi {
    position: relative;
  }
  .home_factory--kojiro_vs_musashi::before {
    content: url(../images/home_factory_vs.png);
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  .home_factory--kojiro_vs_musashi h3 {
    position: relative;
    display: table;
    margin: 0 auto 26px;
  }
  .home_factory--kojiro_vs_musashi h3::before,
  .home_factory--kojiro_vs_musashi h3::after {
    position: absolute;
    content: url(../images/common/shine.png);
    animation-name: flashing;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .home_factory--kojiro_vs_musashi .kojiro h3::before {
    left: -70px;
    bottom: -10px;
    animation-delay: 1.5s;
  }
  .home_factory--kojiro_vs_musashi .kojiro h3::after {
    top: 10px;
    right: -60px;
  }
  .home_factory--kojiro_vs_musashi .musashi h3::before {
    top: 0;
    left: -70px;
    animation-delay: 1.5s;
  }
  .home_factory--kojiro_vs_musashi .musashi h3::after {
    right: -70px;
    bottom: -24px;
  }
  .home_factory--kojiro_vs_musashi h3 > *, 
  .home_factory--other .ushiwaka_vs_benkei h3 > * {
    display: block;
  }
  .home_factory--kojiro_vs_musashi h3 > * {
    margin: auto;
    text-align: center;
  }
  .home_factory--kojiro_vs_musashi h3 small {
    font-size: 150%;
    letter-spacing: .05em;
  }
  .home_factory--kojiro_vs_musashi .player {
    border: 5px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(3,14,33,.25);
    overflow: hidden;
  }
  .home_factory--kojiro_vs_musashi .player #kojiro_player, 
  .home_factory--kojiro_vs_musashi .player #musashi_player {
    position: relative;
    width: 100%;
    padding-top: 56%;
  }
  .home_factory--kojiro_vs_musashi .player #kojiro_player iframe, 
  .home_factory--kojiro_vs_musashi .player #musashi_player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .home_factory--other {
    padding: 0 3.5%;
  }
  .home_factory--other .ushiwaka_vs_benkei {
    width: 41%;
    max-width: 618px;
    padding-top: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/home_factory_spark.png);
    -webkit-animation: bgscale .8s linear infinite;
    animation: bgscale .8s linear infinite;
  }
  .home_factory--other .robts {
    width: 52%;
  }
  .home_factory--other .ushiwaka_vs_benkei li h3, 
  .home_factory--other .ushiwaka_vs_benkei li .img-deco {
    width: 50%;
  }
  .home_factory--other .ushiwaka_vs_benkei li h3 {
    flex: 1;
  }
  .home_factory--other .ushiwaka_vs_benkei .ushiwaka h3 { padding-left: 34px; }
  .home_factory--other .ushiwaka_vs_benkei .benkei h3 { padding-right: 34px; }
  .home_factory--other .ushiwaka_vs_benkei h3 img { margin-bottom: 4px; }
  .home_factory--other .ushiwaka_vs_benkei .benkei h3 img { margin-left: auto; }
  .home_factory--other .ushiwaka_vs_benkei h3 small { font-size: 112%; }
  .home_factory--other .robts li {
    position: relative;
    width: calc(100%/3 - (50px*2/3));
    margin-right: 40px;
    text-align: center;
  }
  .home_factory--other .robts li:nth-child(3n) { margin-right: 0; }
  .home_factory--other .robts .robts2 { margin-top: 60px; }
  .home_factory--other .robts .robts3 { margin-top: -60px; }
  .home_factory--other .robts .robts4 { margin-right: 110px; }
  .home_factory--other .robts .robts5 { margin-right: -20px; }
  .home_factory--other .robts li h3 {
    position: absolute;
    line-height: 1.5;
    font-size: 112%;
    text-align: left;
  }
  .home_factory--other .robts .robts1::before, 
  .home_factory--other .robts .robts1::after,
  .home_factory--other .robts .robts2::before,
  .home_factory--other .robts .robts3::before, 
  .home_factory--other .robts .robts3::after, 
  .home_factory--other .robts .robts4::before, 
  .home_factory--other .robts .robts4::after, 
  .home_factory--other .robts .robts5::before {
    position: absolute;
    content: url(../images/common/shine.png);
    animation-name: flashing;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .home_factory--other .robts .robts1::before {
    top: -30px;
    left: -50px;
    animation-delay: 1.5s;
  }
  .home_factory--other .robts .robts1::after {
    bottom: -4px;
    animation-delay: .5s;
  }
  .home_factory--other .robts .robts1 h3 {
    top: -12px;
    right: 0;
    transform: translateX(98%);
  }
  .home_factory--other .robts .robts2 h3 {
    right: 0;
    bottom: 30px;
    transform: translateX(104%);
  }
  .home_factory--other .robts .robts2::before {
    left: -32px;
    top: -30px;
  }
  .home_factory--other .robts .robts3 h3 {
    top: 25%;
    left: -62px;
  }
  .home_factory--other .robts .robts3::before {
    top: 166px;
    left: -30px;
    animation-delay: 1.5s;
  }
  .home_factory--other .robts .robts3::after {
    top: -10px;
    right: -40px;
  }
  .home_factory--other .robts .robts4 h3 {
    left: -72px;
    bottom: 20%;
  }
  .home_factory--other .robts .robts4::before {
    left: -50px;
    bottom: -28px;
  }
  .home_factory--other .robts .robts4::after {
    right: -52px;
    bottom: 90px;
    animation-delay: 1.5s;
  }
  .home_factory--other .robts .robts5 h3 {
    left: 0;
    bottom: -2px;
    transform: translateX(-84%);
  }
  .home_factory--other .robts .robts5::before {
    bottom: 0;
    right: -60px;
    animation-delay: 1.5s;
  }
  .home_factory--other .robts .img-deco img {
    border-radius: 50%;
  }
  .home_factory--info {
    padding: 40px;
    background-color: #ECECE6;
    border: 4px solid #fff;
    border-radius: 4px;
  }
  .home_factory--info h3 {
    text-align: center;
    font-size: 150%;
  }
  .home_factory--info li:nth-child(2) p, 
  .home_factory--info li:nth-child(4) p, 
  .home_factory--info li:nth-child(5) p {
    margin-left: 1.5em;
  }
  .home_factory--info strong {
    margin: 0 4px;
    font-size: 4.58vw;
    letter-spacing: .01em;
    line-height: 1;
  }
  .home_factory--info small {
    font-size: 143%;
  }
  .home_factory--info sub {
    font-size: 50%;
  }
  .home_factory--member {
    position: absolute;
    top: -60px;
    left: 0;
    width: 20%;
    text-align: right;
    overflow-x: hidden;
    z-index: 2;
  }
  .home_factory--member img {
    transform: translateX(-278px);
    transition: all .4s ease-out;
  }
  .home_factory--member.active img {
    transform: translateX(0);
  }
  .home_factory--gallery li:not(:last-child) {
    margin-right: 13px;
  }

  @media screen and (max-width: 768px) {
    .home_factory--kojiro_vs_musashi { margin-bottom: 0; }
    .home_factory--kojiro_vs_musashi::before { display: none; }
    .home_factory--kojiro_vs_musashi h3 { margin: 0 auto 18px; }
    .home_factory--kojiro_vs_musashi h3 img { width: 62%; }
    .home_factory--kojiro_vs_musashi h3 small {
      font-size: 129%;
      letter-spacing: .02em;
      margin-bottom: 6px;
    }
    .home_factory--kojiro_vs_musashi .kojiro h3::before { left: 0; }
    .home_factory--kojiro_vs_musashi .kojiro h3::after { right: 0; }
    .home_factory--kojiro_vs_musashi .musashi h3::before {
      top: 20px;
      left: -40px;
    }
    .home_factory--kojiro_vs_musashi .musashi h3::after { right: -30px; }
    .home_factory--other { padding: 0; }
    .home_factory--other .ushiwaka_vs_benkei, 
    .home_factory--other .robts {
      width: 100%;
    }
    .home_factory--other .ushiwaka_vs_benkei { background-image: none; }
    .home_factory--other .ushiwaka_vs_benkei h3 img { width: 52%; }
    .home_factory--other .ushiwaka_vs_benkei { margin-bottom: 80px; }
    .home_factory--other .robts li {
      width: calc(100%/3 - (8px*2/3));
      margin-right: 8px;
    }
    .home_factory--other .robts .robts1 { margin-top: -20px; }
    .home_factory--other .robts .robts2 { margin-top: 70px; }
    .home_factory--other .robts .robts3 { margin-top: -33px; }
    .home_factory--other .robts .robts4 { margin-right: 100px; }
    .home_factory--other .robts .robts1::before { left: -14px; } 
    .home_factory--other .robts .robts4::before { left: -29px; }
    .home_factory--other .robts .robts3::after,
    .home_factory--other .robts .robts5::before {
      display: none;
    }
    .home_factory--other .robts li h3 {
      line-height: 1.35;
      font-size: 104%;
    }
    .home_factory--other .robts .robts3 h3 {
      top: 22%;
      left: -48px;
    }
    .home_factory--other .robts .robts4 h3 {
      top: -33px;
      left: -26px;
      bottom: 0;
    }
    .home_factory--info {
      padding: 16px;
    }
    .home_factory--info li {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      padding-bottom: 4px;
      border-bottom: 1px solid #fff;
    }
    .home_factory--info li:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .home_factory--info h3 {
      font-size: 138%;
    }
    .home_factory--info strong {
      margin: 0 2px;
      font-size: 11vw;
    }
    .home_factory--gallery li {
      width: calc(100%/2 - (13px*1/2));
      margin-bottom: 18px;
    }
    .home_factory--gallery li:nth-child(2n) { margin-right: 0; }
    .home_factory--gallery li .img-deco { margin-bottom: 4px; }
    .home_factory--member { width: 34%; }
  }

/* home_mike
*************************************************** */
  .home_mike .inner {
    max-width: 1180px;
  }
  .home_mike .txt {
    flex: 1;
  }
  .home_mike h3 {
    font-size: 200%;
    letter-spacing: .09em;
    font-family: 'yokohama', 'Kaimin Sora Heavy', sans-serif;
  }
  .home_mike ul li {
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 1px 14px;
    background-color: #fff;
    color: #01AC4D;
    font-size: 150%;
  }
  .home_mike .img {
    width: 58%;
  }
  .home_mike--member {
    position: absolute;
    left: 68%;
    bottom: -8px;
    transform: translateY(70%);
    transition: all .4s ease-out;
    transition-delay: 1.6s;
  }
  .active .home_mike--member {
    transform: translateY(0);
  }

  @media screen and (max-width: 768px) {
    .home_mike h3 {
      font-size: 7vw;
      text-align: center;
      letter-spacing: .05em;
    }
    .home_mike p:not(.txt-ctr) {
      text-align: justify;
      text-justify: inter-ideograph;
      font-feature-settings: "palt";
    }
    .home_mike ul li {
      margin-right: 4px;
      margin-bottom: 6px;
      border-radius: 4px;
      padding: 0 .6em;
      font-size: 106%;
    }
    .home_mike .img {
      width: 100%;
    }
  }

/* news & blog
**************************************** */
  .home_posts {
    padding-bottom: 240px;
  }
  .home_posts .inner {
    position: relative;
  }
  .home_posts .news {
    width: 100%;
  }
  .home_posts .news--ttl {
    display: flex;
    align-items: center;
  }
  .home_posts .news--ttl strong {
    font-size: 250%;
    line-height: 1;
    letter-spacing: .09em;
    font-family: 'Kaimin Sora bold', sans-serif;
  }
  .home_posts .news--ttl::after {
    content: "";
    flex: 1;
    margin: 0 24px 0;
    border-top: 6px double;
    order: 2;
  }
  .home_posts .news--ttl .btn-sm {
    order: 3;
  }
  .home_posts .post:not(:last-child) {
    margin-bottom: 16px;
  }
  .news--bnr { transition: all .2s ease-out; }
  .news--bnr:hover, 
  .blog--list li a:hover {
    opacity: .7;
  }
  .news--bnr, 
  .home_posts .blog {
    box-shadow: 0 0 8px rgba(0,0,0,.2);
  }
  .home_posts .blog {
    width: 48.5%;
    background-color: #fff;
    border-radius: 4px;
    padding-bottom: 34px;
  }
  .blog--list {
    padding: 40px 40px 0;
  }
  .blog--list li {
    border-top: 1px dashed #9ab3aa;
  }
  .blog--list li:last-child {
    border-bottom: 1px dashed #9ab3aa;
  }
  .blog--list li a {
    padding: 8px 0;
  }
  .blog--list .date {
    margin-right: 14px;
    font-size: 88%;
    color: #78a3c6;
    line-height: 1;
  }
  .home_posts--member {
    display: none;
  }
  @media screen and (min-width: 1800px) {
    .home_posts--member {
      position: absolute;
      display: inline-block;
      left: -220px;
      bottom: -193px;
      pointer-events: none;
    }
  }
  @media screen and (max-width: 768px) {
    .home_posts {
      padding-bottom: 180px;
    }
    .home_posts .inner {
      width: 90%;
    }
    .home_posts .news {
      margin-right: 0;
      margin-bottom: 24px;
    }
    .home_posts .news--ttl {
      position: relative;
      display: block;
      margin-bottom: 18px;
      text-align: center;
    }
    .home_posts .news--ttl::after {
      flex: auto;
      margin: 0;
      position: absolute;
      top: 42%;
      left: 0;
      width: 100%;
    }
    .home_posts .news--ttl strong {
      position: relative;
      z-index: 1;
      background-color: #ecebe6;
      padding: 0 .5em;
      font-size: 228%;
      line-height: 1;
      letter-spacing: .09em;
    }
    .home_posts .news--ttl .btn { display: none; }
    .home_posts .news .list_news {
      margin-bottom: 24px;
    }
    .home_posts .blog {
      width: 100%;
      padding-bottom: 24px;
    }
    .home_posts .blog.mimi {
      margin-top: 16px;
    }
    .blog--list {
      padding: 20px 20px 0;
    }
  }


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

    PARTS

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

/* cta
*************************************************** */
  .cta_area--btns {
    padding-top: 80px;
    padding-bottom: 68px;
  }
  .cta_area .tel {
    margin-right: 24px;
    font-size: 250%;
    font-weight: bold;
    letter-spacing: .06em;
  }
  .cta_area .tel strong {
    font-size: 140%;
  }
  .cta_area .contact {
    font-size: 112%;
  }
  .cta_area .contact a {
    padding: 8px 72px 8px 88px;
  }
  .cta_area--gallery {
    height: 555px;
    background-image: url(../images/common/cta_gallary.jpg);
    -webkit-animation: bgscroll 80s linear infinite;
    animation: bgscroll 80s linear infinite;
  }

  @media screen and (max-width: 768px) {
    .cta_area--catch {
      font-size: 7.4vw;
    }
    .cta_area--catch span::before, 
    .cta_area--catch span::after {
      display: none;
    }
    .cta_area .tel {
      margin-right: 0;
      margin-bottom: 12px;
      font-size: 7.4vw;
    }
    .cta_area .contact {
      width: 100%;
    }
    .cta_area .contact a {
      display: block;
      width: 100%;
      padding: 14px 0 14px 20px;
      text-align: center;
    }
    .cta_area--gallery {
      height: 277.5px;
      background-size: auto 100%;
    }
  }


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

    PAGE

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

/* 会社概要 page-gaiyou
*************************************************** */
  .company_idea { position: relative; }
  .company_idea::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 326px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/home_message_bg.png);
  }
  .company_idea .heading-1, 
  .com_policy .heading-1 {
    font-size: 300%;
    text-align: center;
    color: #222;
    letter-spacing: .08em;
    line-height: 1.25;
  }
  .company_idea .heading-1 strong, 
  .com_policy .heading-1 strong {
    font-size: 125%;
  }
  .com_policy li:last-child {
    margin-top: 24px;
    margin-left: 24px;
  }
  .company_idea .video {
    position: relative;
    margin-bottom: 80px;
    border: 4px solid #fff;
    border-radius: 4px;
    padding-top: 56%;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
  }
  .company_idea iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .company_outline .table_default th {
    text-align: left;
    line-height: 1.5;
  }
  .company_outline .table_default dt, 
  .company_outline .table_default dd {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.65;
    color: #222;
    font-size: 88%;
  }
  .company_outline .table_default dd {
    padding-left: 6.5em;
  }
  .company_outline .table_default dd:last-child { border-bottom: none; }

  @media screen and (max-width: 768px) {
    .company_idea .heading-1, 
    .com_policy .heading-1 {
      font-size: 240%;
    }
    .com_policy li:nth-child(1), 
    .com_policy li:nth-child(3) {
      margin-top: 108px;
    }
    .com_policy li::before {
      height: 51px;
    }
    .com_policy li:nth-child(1)::before {
      top: -56px;
      left: 78px;
    }
    .com_policy li:nth-child(2)::before {
      transform: rotate(90deg);
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
    }
    .com_policy li:nth-child(3)::before {
      top: -56px;
      right: 78px;
    }
  }

/* 沿革 page-history
*************************************************** */
  .history_list, 
  .history_list h4 {
    position: relative;
  }
  .history_list::before, 
  .history_list h4::before {
    content: "";
    position: absolute;
    background-color: #01AC4D;
  }
  .history_list::before {
    top: 0;
    left: 322px;
    width: 3px;
    height: 100%;
  }
  .history_list li {
    padding-left: 276px;
    margin-bottom: 22px;
  }
  .history_list li.flex {
    padding-left: 0;
    margin-bottom: 0;
  }
  .history_list li .txt {
    flex: 1;
    padding-left: 48px;
    margin-left: 48px;
  }
  .history_list h4::before {
    top: 10px;
    left: -54px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
  }
  .history_list p {
    line-height: 1.65;
  }

  @media screen and (max-width: 768px) {
    .history_list::before {
      left: 4px;
    }
    .history_list li {
      padding-left: 0;
      margin-bottom: 18px;
    }
    .history_list li.flex {
      flex-direction: column-reverse;
      margin-bottom: 18px;
    }
    .history_list li .img {
      width: 100%;
      text-align: center;
      margin-top: 12px;
    }
    .history_list li .txt {
      width: 100%;
      padding-left: 22px;
      margin-left: 0;
    }
    .history_list h4::before {
      top: 7px;
      left: -22px;
    }
    .history_list .txt p {
      line-height: 1.4;
    }
  }

/* アクセス page-access
*************************************************** */
  .access_honsya h2, 
  .access_other h2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .access_honsya h2::after, 
  .access_other h2::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid rgba(0,0,0,.1);
    order: 2;
    margin: 0 16px;
  }
  .access_honsya h2 span, 
  .access_other h2 span {
    font-size: 280%;
    color: #00ae4b;
  }
  .access_other h2 span {
    font-size: 172%;
  }
  .access_honsya h2 a, 
  .access_other h2 a {
    order: 3;
  }
  .access_honsya .map, 
  .access_other .map {
    position: relative;
  }
  .access_honsya .map .img-deco, 
  .access_other .map .img-deco {
    position: absolute;
    top: -100px;
    right: -32px;
  }
  .access_other .map .img-deco {
    top: -60px;
    right: 0;
  }
  .access_honsya .map iframe, 
  .access_other .map iframe {
    width: 95%;
    border: 5px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(3,14,33,.25);
  }
  .access_honsya .map iframe {
    width: 100%;
  }
  .access_flow li h4 {
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.55;
  }
  .access_flow p span {
    display: block;
    background-color: #ddd;
    margin-bottom: 8px;
    padding: 4px 0;
    text-align: center;
  }
  .access_other--list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .access_other--list p {
    line-height: 1.65;
  }
  .access_other--list p span {
    display: inline-block;
    background-color: #ddd;
    padding: 2px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 88%;
  }

  @media screen and (max-width: 1240px) {
    .access_other--list {
      flex-direction: column;
    }
    .access_other--list li {
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .access_other--list li:not(:last-child) {
      margin-bottom: 52px;
    }
    .access_other--list > *:nth-child(even) {
      margin-right: auto;
    }
  }
  @media screen and (max-width: 768px) {
    .access_honsya h2, 
    .access_other h2 {
      display: block;
    }
    .access_honsya h2 span {
      font-size: 176%;
    }
    .access_other h2 span {
      font-size: 146%;
    }
    .access_honsya h2 .btn, 
    .access_other h2 .btn {
      display: none;
    }
    .access_other--list li:not(:last-child) {
      margin-bottom: 28px;
    }
    .access_honsya .map .img-deco, 
    .access_other .map .img-deco {
      position: static;
    }
    .access_other .map .img-deco {
      margin-bottom: 16px;
    }
    .access_honsya .btn, 
    .access_other .btn {
      width: 100%;
      text-align: center;
    }
  }

/* 工場のご紹介 page-factry
*************************************************** */
  .factory_mike .flex .txt .factory--robots li {
    width: 49%;
  }
  .factory_mike .flex .txt .factory--robots li:nth-child(2) {
    margin-right: 0;
  }
  .factory--robots li, 
  .factory_mike--robot9 {
    width: 23.5%;
    margin-bottom: 0;
  }
  .factory--robots li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 2%;
  }
  .factory_honsha .factory--robots li.robot6, 
  .factory_honsha .factory--robots li.jimusho, 
  .factory_mike .factory--robots li.robot5, 
  .factory_mike .factory--robots li.robot6, 
  .factory_mike .factory--robots li.robot7 {
    justify-content: flex-start;
  }
  .factory--robots li.jimusho {
    width: 323px;
    margin-left: auto;
  }
  .factory_mike .factory--robots li.robot6 {
    margin-left: auto;
  }
  .factory_mike .factory--robots li.robot7 {
    margin-right: 0;
  }
  .factory--robots > *:nth-child(4n+4) {
    margin-right: 0;
  }
  .factory--robots .heading-3 {
    margin-bottom: 12px;
    line-height: 1.35;
    font-size: 120%;
  }
  .factory--robots .heading-3 .num {
    display: inline-block;
    width: 46px;
    height: 46px;
    background-color: #00ac4c;
    border-radius: 50%;
    text-align: center;
    line-height: 46px;
    letter-spacing: 0;
    color: #fff;
    margin-right: 10px;
    font-size: 114%;
  }
  .factory--robots .heading-3 .name {
    display: inline-block;
    line-height: 1.15;
  }
  .factory--robots .heading-3 small {
    font-size: 62%;
    color: #999;
  }
  .factory--robots .table_line {
    font-size: 88%;
    line-height: 1.45;
  }
  .factory--robots .table_line tr {
    border-bottom: 1px solid #aaa;
  }
  .factory--robots .table_line th, 
  .factory--robots .table_line td {
    padding: .8em .4em;
    background-color: transparent;
    border: none;
  }
  .factory--robots .table_line th {
    padding: .8em 0;
    width: 6.8em;
    font-size: 82%;
    color: #222;
  }
  .factory--robots .table_line th span {
    display: block;
    padding: 2px .6em;
    background-color: #c3dcce;
    border-radius: 28px;
    text-align: center;
  }
  .factory_other .heading-3 {
    font-size: 146%;
    color: #00ac4c;
  }
  .factory_other li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  /* .factory_other li.indo {
    width: 65.66%;
    margin-right: 0;
  } */
  .factory_other p span {
    margin-right: 4px;
    display: inline-block;
    font-size: 80%;
    background-color: #c3dcce;
    border-radius: 4px;
    padding: 0 8px;
    transform: translateY(-2px);
  }

  @media screen and (max-width: 768px) {
    .factory--nav .btn { width: 100%; }
    .factory--robots li {
      width: 100%;
      margin-right: 0;
      padding: 8px 8px 0;
      margin-bottom: 8px;
    }
    .factory--robots li.jimusho { width: 100%; }
    .factory--robots.factory_honsha--robots2 li img, 
    .factory--robots.factory_mike--robots2 li img {
      order: 3;
      margin-top: 8px;
    }
    .factory--robots .table_line th, 
    .factory--robots .table_line td {
      padding: .8em .6em;
    }
    .factory--robots .table_line th {
      width: 7.9em;
      font-size: 100%;
      padding-left: 0;
    }
    .factory--robots .table_line td {
      padding-right: 0;
      font-size: 108%;
    }
    .factory_mike--camps li { display: flex; }
    .factory_mike--camps .img-deco { flex: 1; }
    .factory--robots .heading-3 { font-size: 144%; }
    .factory--robots .heading-3 .num { display: none; }
    .factory_mike--camps .txt {
      flex: 2;
      margin-left: 14px;
    }
    .factory_mike--camps .txt .heading-4 {
      margin-bottom: 2px;
      font-size: 4vw;
    }
    .factory_mike .section_ttl-sm + .flex { margin-bottom: 0; }
    .factory_mike .flex .txt .factory--robots li {
      width: 100%;
      margin-bottom: 8px;
    }
    .factory_mike .flex .txt .factory--robots li img {
      order: 3;
      margin-top: 8px;
    }
    .factory_other { width: 100%; }
    .factory_other li { margin-bottom: 22px; }
    .factory_other li.indo { width: 100%; }
    .factory_other li.indo .medan { margin-bottom: 14px; }
    .factory_other .heading-3 { font-size: 132%; }

    .mujina_camp li {
      width: 100%;
      margin-top: 8px;
    }
    .mujina_camp li:not(:last-child) {
      border-bottom: 1px solid #ddd;
      padding-bottom: 8px;
    }
    .mujina_camp li .txt {
      flex: 1;
      margin-left: 12px;
    }
    .mujina_camp li .txt p {
      line-height: 1.6;
      color: #666;
    }
  }

/* page-this-is-matsuyama
*************************************************** */
  .this_is_matsuyama .home_local .btn {
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  @media screen and (max-width: 768px) {
    .this_is_matsuyama .home_local .flex.inner-sm {
      width: 100%;
    }
    .matsuyama_business .section_ttl {
      margin-bottom: 56px;
    }
    .matsuyama_business--list li:not(:last-child) {
      margin-bottom: 24px;
    }
    .matsuyama_business--list li:nth-child(even) {
      flex-direction: column-reverse;
    }
    .matsuyama_business--list li .btn {
      width: 100%;
      padding: 1em 2em 1em 3.35em;
    }
  }

/* 胴縁加工 page-doubuchi
*************************************************** */
  
  /* --- doubuchi_about --- */
  .doubuchi_about .home_factory--kojiro_vs_musashi::before {
    display: none;
  }
  .doubuchi_about--notes {
    margin-top: -110px;
  }
  .doubuchi_about--notes li {
    position: relative;
    display: flex;
    align-items: center;
  }
  .doubuchi_about--notes li:nth-child(2) {
    flex-direction: row-reverse;
  }
  .doubuchi_about--notes li img {
    border-radius: 50%;
  }
  .doubuchi_about--notes li span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 280px;
    height: 247px;
    line-height: 1.5;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/this_is_matsuyama/spark_img2.png);
    margin-right: -50px;
    margin-top: 20px;
    position: relative;
    padding-top: 16px;
  }
  .doubuchi_about--notes li:nth-child(2) span {
    margin-right: auto;
    margin-left: -50px;
  }

  /* --- doubuchi_line --- */
  .doubuchi_line--feature li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 35%;
    height: 306px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/this_is_matsuyama/spark_img1.png);
  }
  .doubuchi_line--feature li:nth-child(2) {
    margin-left: -2.5%;
    margin-right: -2.5%;
  }
  .doubuchi_line--feature li h4 {
    font-size: 148%;
    line-height: 1.5;
  }
  .doubuchi_line--feature li h4 strong {
    font-size: 140%;
    letter-spacing: 0;
    padding: 0 .15em;
  }
  .doubuchi_line--feature li:nth-child(3) h4 { margin-top: auto; }
  .doubuchi_line--feature li p {
    margin-bottom: auto;
    font-size: 94%;
    line-height: 1.65;
  }
  .doubuchi_line--feature li p strong {
    font-size: 108%;
  }

  /* --- doubuchi_sekkei --- */
  .doubuchi_sekkei--attention .txt {
    margin-right: 24px;
    flex: 1;
  }
  .doubuchi_sekkei--attention p {
    text-indent: -1em;
    padding-left: .9em;
    line-height: 1.5;
  }

  @media screen and (max-width: 768px) {
    .doubuchi .home_factory--kojiro_vs_musashi {
      width: 100%;
    }
    .doubuchi_about--notes {
      margin-top: 50px;
    }
    .doubuchi_about--notes li {
      position: relative;
    }
    .doubuchi_about--notes li:first-child {
      margin-bottom: -10px;
    }
    .doubuchi_about--notes li span {
      position: absolute;
      top: -50px;
      right: 0;
      width: 200px;
      height: 174px;
      margin-top: 0;
      margin-right: 0;
      padding: 13px 34px 0;
    }
    .doubuchi_about--notes li:last-child span {
      top: auto;
      left: 0;
      right: auto;
      bottom: -30px;
      margin-left: 0;
    }
    .doubuchi_about--notes li img { margin-left: -2%; }
    .doubuchi_about--notes li:last-child  img {
      margin-left: 0;
      margin-right: -2%;
    }

    .doubuchi_line--feature li {
      width: 100%;
      height: auto;
      margin-left: 0 !important;
      margin-right: 0 !important;
      background-image: none;
      background-color: #f5f5f5;
      margin-bottom: 8px;
      padding: 14px;
    }
    .doubuchi_line--feature li h4 {
      line-height: 1.3;
    }
    .doubuchi_line--imgs li:last-child {
      margin-right: 0 !important;
    }
    .doubuchi_sekkei--attention .txt {
      margin-right: 0;
      margin-bottom: 16px;
    }
  }

/* 一般鋼材加工 page-general
*************************************************** */
  
  /* --- general_fabrigear --- */
  .general_fabrigear h3 span {
    display: inline-block;
    padding: 3px 18px;
    border-radius: 28px;
    background-color: #bad7ef;
  }
  .general_fabrigear table tr {
    border-bottom: 1px solid #aaa;
  }
  .general_fabrigear table th, 
  .general_fabrigear table td {
    padding: 8px;
  }
  .general_fabrigear table td {
    line-height: 1.5;
  }
  .general_fabrigear--example { position: relative; }
  .general_fabrigear--example h3 {
    position: absolute;
    top: -12px;
    left: -10px;
    font-size: 150%;
    line-height: 1.5;
    text-align: center;
    transform: rotate(-4deg);
  }
  .general_fabrigear--example li:nth-child(2) {
    flex: 1;
    margin-left: 40px;
  }
  .general_fabrigear--example li:nth-child(2) img:nth-child(2) {
    margin-right: 14px;
  }

  /* --- general_plasma --- */
  .general_plasma--robots h4 small {
    margin-left: 18px;
  }
  .general_plasma--imgs li { position: relative; }
  .general_plasma--imgs li:nth-child(2) {
    margin-top: 60px;
    margin-left: -12px;
  }
  .general_plasma--imgs li:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -34px;
    margin-left: auto;
    height: 274px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/this_is_matsuyama/spark_img2.png);
  }
  .general_plasma--imgs span {
    position: absolute;
    left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    width: 100px;
    height: 88px;
    background-size: 200px;
    background-repeat: no-repeat;
    background-image: url(../images/common/fukidashi.png);
    color: #fff;
  }
  .general_plasma--imgs li:nth-child(2) span {
    background-position: right;
    left: auto;
    right: 0;
  }
  .general_plasma--imgs img {
    border-radius: 50%;
  }
  .general_plasma--imgs li:nth-child(1) img {
    margin-left: 18px;
  }

  .general_fabrigear .video, 
  .general_laser .video {
    position: relative;
    padding-top: 28%;
  }
  .general_fabrigear .video iframe, 
  .general_laser .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(3,14,33,.25);
  }

  /* --- general_sekkei --- */
  .general_sekkei .video video {
    width: 100%;
    border: 5px solid #fff;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(3,14,33,.25);
  }

  @media screen and (max-width: 768px) {
    .general_fabrigear--example h3 {
      display: none;
    }
    .general_fabrigear--example li:nth-child(1) {
      margin-bottom: 14px;
      text-align: center;
    }
    .general_fabrigear--example li:nth-child(2) { margin-left: 0; }
    .general_fabrigear--example li:nth-child(2) img:nth-child(1) {
      width: 100%;
    }
    .general_fabrigear--example li:nth-child(2) img:nth-child(2), 
    .general_fabrigear--example li:nth-child(2) img:nth-child(3) {
      width: 48.5%;
    }
    .general_fabrigear--example li:nth-child(2) img:nth-child(2) {
      margin-right: 5px;
    }
    .general_plasma--robots li { margin-bottom: 24px; }
    .general_plasma--robots li h4 img { width: 19%; }
    .general_plasma--robots h4 small { margin-left: 12px; }
    .general_plasma--imgs {
      position: relative;
      margin-top: 30px;
    }
    .general_plasma--imgs li:nth-child(2) {
      margin-top: 70px;
      margin-left: 0;
    }
    .general_plasma--imgs li:nth-child(3) {
      position: absolute;
      top: -92px;
      left: 18%;
      right: 0;
      margin: auto !important;
      width: 200px !important;
      height: 175px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .general_plasma--imgs span {
      top: -35px;
      left: -10px;
    }
    .general_plasma--imgs li:nth-child(2) span { right: -10px; }
    .general_plasma--imgs li:nth-child(1) img { margin-left: 0; }

    .general_fabrigear .video, 
    .general_laser .video {
      padding-top: 56.5%;
    }

    .general_weld-paint--img li:last-child { margin-right: 0 !important; }
  }

/* 太陽光架台 page-solar
*************************************************** */
  .solar_map--table {
    width: 50%;
    height: 717px;
  }
  .solar_map--table:first-child {
    margin-right: 8px;
  }
  .solar_map--table tr {
    border-bottom: 1px solid #ddd;
  }
  .solar_map--table th,
  .solar_map--table td {
    vertical-align: middle;
    padding: 2px 4px;
    text-align: center;
  }
  .solar_map--table thead th {
    background-color: #78a3c6;
    color: #fff;
    padding: 6px 8px;
  }
  .solar_map--table tbody tr {
    background-color: #fff;
  }
  .solar_map--table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
  }
  .solar_map--table tbody th {
    padding: 2px 8px 2px 8px;
  }
  .solar_map--table tbody th span {
    background-color: #222;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-block;
    color: #fff;
    letter-spacing: 0;
  }
  .solar_imgs img:nth-child(3) {
    width: 100%;
    margin-right: 0;
  }

  @media screen and (max-width: 768px) {
    .solar_map .flex .solar_map--table:nth-child(2) thead {
      display: none;
    }
    .solar_map .flex .solar_map--table:nth-child(2) tbody tr:nth-child(even) {
      background-color: #fff;
    }
    .solar_map .flex .solar_map--table:nth-child(2) tbody tr:nth-child(odd) {
      background-color: #f5f5f5;
    }
    .solar_map--table {
      width: 100%;
      height: auto;
    }
    .solar_map--table tbody th {
      width: 60px;
      padding: 2px 6px 2px 6px;
    }
    .solar_map--table tbody th span {
      width: 24px;
      height: 24px;
      line-height: 22px;
    }
  }

/* みけどうぶちについて page-mikedoubuchi
*************************************************** */
  .mikedobuchi_about, 
  .mikedobuchi_about .inner {
    position: relative;
  }
  .mikedobuchi_about::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 326px;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/home_message_bg.png);
  }
  .mikedobuchi_about .inner {
    z-index: 1;
  }
  .mikedobuchi_about .txt {
    width: 46%;
  }
  .mikedobuchi_about .img {
    width: 50%;
  }
  .mikedoubuchi_feature--contents .heading-3 {
    font-size: 160%;
  }
  .mikedoubuchi_feature--contents .tag li {
    font-size: 120%;
    margin-right: 1em;
    margin-bottom: .2em;
  }
  .mikedoubuchi_feature--contents .tag li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: baseline;
    background-color: rgba(145, 199, 45, .5);
    margin-right: 6px;
  }
  .mikedoubuchi_feature .section_catch {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 160%;
  }
  .mikedobuchi_ex li p span {
    font-size: 85%;
    background-color: #78a3c6;
    margin-right: 8px;
    border-radius: 18px;
    display: inline-block;
    padding: 0 14px;
    color: #fff;
  }

  @media screen and (max-width: 768px) {
    .mikedobuchi_about .txt, 
    .mikedobuchi_about .img {
      width: 100%;
    }
    .mikedobuchi_about .txt { order: 2; }
    .mikedobuchi_about .img {
      order: 1;
      margin-bottom: 32px;
    }

    .mikedoubuchi_feature--contents {
      display: flex;
      flex-direction: column;
    }
    .mikedoubuchi_feature--contents .col:not(:last-child) {
      margin-bottom: 24px;
    }
    .mikedoubuchi_feature--contents .col:nth-child(1), 
    .mikedoubuchi_feature--contents .col:nth-child(2), 
    .mikedoubuchi_feature--contents .col:nth-child(3) {
      width: 100%;
    }
    .mikedoubuchi_feature--contents .col:nth-child(1) {
      transform: translateY(0);
      margin-left: 0;
    }
    .mikedoubuchi_feature--contents .heading-3 {
      position: static;
      left: 0;
      margin-bottom: 8px;
      text-align: center;
    }
    .mikedoubuchi_feature--contents .tag {
      padding-top: 0;
      background-color: #fff;
      border-radius: 6px;
      padding: 14px 14px 8px;
    }
    .mikedoubuchi_feature .section_catch {
      font-size: 4.6vw;
    }

    .mikedobuchi_ex li p span {
      font-size: 100%;
      margin-right: 0;
      margin-bottom: 6px;
      display: block;
      padding: 4px 14px;
      text-align: center;
    }
    .mikedobuchi_ex .txt-sm {
      font-size: 100%;
    }
  }

  .superdyma_about .section_ttl strong.pc-none { display: none; }
  .superdyma_about .section_ttl strong span {
    font-size: 88%;
  }
  .superdyma_about--table {
    border: 2px solid #ddd;
  }
  .superdyma_about--table tr {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .superdyma_about--table tr:nth-child(odd) {
    background-color: #f8f8f8;
  }
  .superdyma_about--table th, 
  .superdyma_about--table td {
    padding: 6px 14px;
    border-right: 1px solid #ddd;
    vertical-align: middle;
    text-align: center;
  }
  .superdyma_about--table th {
    background-color: #78a3c6;
    color: #fff;
    line-height: 1.35;
    font-weight: normal;
  }
  .superdyma_about--table td[rowspan="3"], 
  .superdyma_about--table td[rowspan="4"] {
    background-color: #f9f9f9;
  }

  @media screen and (max-width: 768px) {
    .superdyma_about .section_ttl strong.pc-none { display: block; }
    .superdyma_about .section_ttl strong.sp-none { display: none; }
    .superdyma_about .flex-col4 li {
      margin-bottom: 24px;
    }
    .superdyma_about .flex-col4 .heading-3 {
      font-size: 108%;
      margin-bottom: 2px;
    }
    .superdyma_about .flex-col3 li {
      background-color: #fff;
      padding: 24px;
    }

    .superdyma_works .flex li:nth-child(6) {
      margin-right: 0;
    }
    .superdyma_works .flex li:nth-child(8), 
    .superdyma_works .flex li:nth-child(9) {
      width: 100%;
      margin-top: 16px;
      margin-right: 0;
    }
  }

/* お問い合わせ page-contact
*************************************************** */
  .page-contact main .section_pdg {
    padding-top: 28px;
  }
  .contact--tel a {
    display: inline-block;
    padding: 2px 3em;
    background-color: #fff;
    border-radius: 38px;
    font-size: 200%;
    font-weight: 800;
    color: #01AC4D;
  }
  @media screen and (max-width: 768px) {
    .page-contact main .section_pdg {
      padding-bottom: 100px;
    }
    .contact--tel a {
      padding: 2px 1.4em;
      font-size: 7vw;
    }
    .page-contact .footer::before {
      display: none;
    }
  }

/* お問い合わせ受け付け page-thanks
*************************************************** */
  .page-thanks main .section_pdg {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .thanks .heading-1 {
    color: #fff;
    font-size: 320%;
  }
  .thanks .heading-1 > * {
    display: block;
  }
  .thanks .heading-1 small {
    font-size: 37%;
    letter-spacing: .06em;
    margin-top: 4px;
    font-weight: 800;
  }
  @media screen and (max-width: 768px) {
    .page-thanks main .section_pdg {
      padding-top: 100px;
      padding-bottom: 120px;
    }
    .thanks .heading-1 { font-size: 8vw; }
    .thanks .heading-1 small {
      font-size: 47%;
      margin-top: 16px;
    }
  }

/* ご挨拶 page-message
*************************************************** */
  .message_trigger img {
    opacity: .9;
  }
  .message_trigger .sign span {
    margin-right: 24px;
  }
  .message_trigger .sign img {
    vertical-align: middle;
  }

/* 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; }
  .sitemap--item:not(.sitemap--item-ttl) { font-size: 85%; }

  /* --- category --- */
  .sitemap--list li.sitemap--item-child a { padding-left: 8px; }
  .sitemap--list li.sitemap--item-child.sitemap--item-page { padding: 6px 0 6px 24px; }
  .sitemap--list li.sitemap--item-taxonomy ul { letter-spacing: -.4em; }
  .sitemap--list li.sitemap--item-taxonomy ul li {
    display: inline-block;
    padding: 0;
    margin-right: 8px;
    letter-spacing: normal;
  }
  
  @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;
    max-width: 856px;
    margin-right: 80px;
  }

  /* --- post --- */
  .post {
    position: relative;
    transition: all .2s ease-out;
  }
  .post:hover { opacity: .7; }
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--date {
    margin-bottom: 6px;
    font-size: 85%;
    line-height: 1;
  }
  .post--img {
    width: 140px;
    height: 140px;
    margin-right: 18px;
    background-image: url(../images/common/bg_green.jpg);
    background-color: #83ba66;
    border-radius: 4px;
    border: 5px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
  }
  .post--img.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post--txtarea {
    flex: 1;
  }
  .post--ttl {
    margin-bottom: 6px;
    font-size: 120%;
    line-height: 1.8;
  }
  .post--txt {
    color: #999;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .post .post--img img {
    overflow: hidden;
    border-radius: 3px;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 87%;
    background: #4cb856;
    color: #f6f6f6;
    line-height: 1;
    padding: 6px 12px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
    border-radius: 24px;
  }

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

    /* --- post --- */
    .post--img {
      width: 96px;
      height: 96px;
      margin-right: 14px;
      border-width: 3px;
    }
    .post--ttl {
      margin-bottom: 0;
      font-size: 114%;
      line-height: 1.65;
      font-feature-settings: "palt";
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    font-size: 134%;
    letter-spacing: .2em;
    line-height: 1;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }
  .side--ttl small {
    font-size: 62%;
    opacity: .5;
    letter-spacing: .15em;
    display: block;
    line-height: 1;
    margin-top: 14px;
  }

  /* --- side--list --- */
  .side--list li {
    border-bottom: 1px solid #ddd;
  }
  .side--list li a {
    display: block;
    padding: 10px 0;
  }
  .side--list li a:hover {
    opacity: .7;
  }
  .side--list li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: rotate(-45deg) translate(1px, -1px);
    margin-right: 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::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }

  @media screen and (max-width: 1100px) {
    .side_column { width: 100%; }
  }

  /* --- 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: 8px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 8px 54px 8px 32px;
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .archive_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pulldown .archive_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

/* 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-bottom: 16px;
    padding-top: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid #dedede;
  }
  main .news_list .post--date {
    margin-right: 32px;
  }
  main .news_list a[href="javascript:void(0);"],
  main .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
  }
  .posts-home_news a,
  main .news_list a {
    display: inline-flex;
    align-items: center;
  }
  .posts-home_news a[target="_blank"]::after,
  main .news_list a[target="_blank"]::after {
    content: '';
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
  }

/* matsuyama-channel
**************************************** */
  .video_list .video_post .video {
    position: relative;
    padding-top: 56%;
    border-radius: 4px;
    border: 4px solid #fff;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
    margin-bottom: 16px;
  }
  .video_list .video_post iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .video_list .video_post .description {
    font-size: 114%;
    line-height: 1.75;
  }
  .video_list .video_post .description a:hover {
    color: #00ae4b;
  }

  @media screen and (max-width: 768px) {
    .video_list .video_post { margin-bottom: 22px; }
    .video_list .video_post .video { margin-bottom: 8px; }
  }


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

    SINGLE

############################################################################## */
  .wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .wp-pagenavi .pages, 
  .wp-pagenavi .last {
    display: none;
  }
  .wp-pagenavi .current,
  .wp-pagenavi a {
    position: relative;
    max-width: 42%;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    background-color: #01AC4D;
    line-height: 1.4;
    padding: 10px 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,.2);
  }
  .wp-pagenavi a:hover {
    background-color: #75c57d;
  }
  .wp-pagenavi .current {
    color: #01AC4D;
    background-color: #fff;
  }
  @media  only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-bottom: 40px;
    }
  }

/* matsuyama-channel
**************************************** */
  .video--info .video {
    position: relative;
    padding-top: 56%;
    margin-bottom: 16px;
  }
  .video--info iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


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

    FORMY

############################################################################## */
  #formy_form {
    background-color: #fff;
    padding: 24px 60px 60px;
    border-radius: 4px;
  }
  #formy_form table { width:100%; }
  #formy_form th,
  #formy_form td {
    padding: 16px;
    vertical-align: middle;
  }
  #formy_form th {
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    width: 34%;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form table textarea {
    width: 100%;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    vertical-align: bottom;
    font-family: 'Lato', 'YuGothic', '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif !important;
  }
  #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 #ccc;
    font: inherit;
    font-size: 100%;
  }
  #formy_form textarea { height: 100px; }
  #formy_form select { height: 40px; }
  #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: 85%;
    color: #999;
  }
  .hidden_help { display: none; }
  .formy_privacy div {
    overflow-y: scroll;
    height: 140px;
    border: solid 1px #ccc;
    font-size: 85%;
    padding: 8px 16px;
  }
  .requiredIcon {
    background: #f55;
    color: #fff;
    margin: 0 0 0 1em;
    font-size: 70%;
    padding: 2px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: right;
  }
  #formy_btn {
    padding-top: 32px;
    text-align: center;
  }
  #formy_btn input {
    min-width: 220px;
    padding: 16px 32px;
    margin-right: 4px;
    margin-left: 4px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  #formy_form ul li input[type="radio"],
  #formy_form ul li input[type="checkbox"] { display: none !important; }
  #formy_form ul li label {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0 8px 0 40px;
    cursor: pointer;
  }
  #formy_form ul li label:hover { opacity: .7; }
  #formy_form ul li label::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #788b93;
    left: 16px;
    top: 12px;
  }
  #formy_form ul li input[type="radio"] + label::before { 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: 4px;
    left: 20px;
    border-right: 2px solid #e75f5f;
    border-bottom: 2px solid #e75f5f;
    display: block;
    position: absolute;
    z-index: 10;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .formy_confirm { background-color: #4dbaff; }
  .formy_submit_disabled { background-color: #ccc; }
  #formy_btn .formy_submit_disabled:hover {
    opacity:1;
    cursor: default;
  }
  .autoConfirmBack { background-color: #aaa; }
  .formy_send { background-color: #ff6600; }
  #total_required {
    padding: 16px;
    color: #f55555;
    text-align: center;
  }
  @media  only screen and (max-width: 767px) {
    #formy_form {
      padding: 14px 16px 40px;
    }
    #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;
    }
    #formy_form td { padding-top: 0; }
    #formy_btn { padding-top: 8px; }
    #formy_btn input {
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      background-size: contain;
      background-position: center;
    }
  }